aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorJoão Valverde <joao.valverde@tecnico.ulisboa.pt>2017-06-24 14:25:41 +0100
committerJoão Valverde <j@v6e.pt>2017-06-26 22:40:50 +0000
commit7466880e8a09aa7a9bb797b70fa44bca397881d9 (patch)
tree1634c5d6e433a4803ecd5543a4cb6420e7c886d7 /epan
parent3071f9dd7409bd5b0432dd8f1bebbeeee1b6c755 (diff)
Parse enterprise-numbers at run time
"enterprise-numbers" is converted to tab-separated values and renamed "enterprises". Unused fields are stripped. PENs are stored in a hash table loaded at run-time. User "enterprises" file is loaded from the personal config dir. Misc make-sminmpec.pl improvements and fixes. Note: names of type "Entity (formerly ...)" have the formerly part commented out for a cleaner output. Change-Id: I60c533afbe3e399077fbf432088064471ad3e1e2 Reviewed-on: https://code.wireshark.org/review/22246 Petri-Dish: João Valverde <j@v6e.pt> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Peter Wu <peter@lekensteyn.nl> Reviewed-by: João Valverde <j@v6e.pt>
Diffstat (limited to 'epan')
-rw-r--r--epan/CMakeLists.txt11
-rw-r--r--epan/Makefile.am4
-rw-r--r--epan/addr_resolv.c128
-rw-r--r--epan/addr_resolv.h26
-rw-r--r--epan/dissectors/asn1/snmp/packet-snmp-template.c6
-rw-r--r--epan/dissectors/packet-3g-a11.c3
-rw-r--r--epan/dissectors/packet-asf.c4
-rw-r--r--epan/dissectors/packet-bootp.c10
-rw-r--r--epan/dissectors/packet-capwap.c13
-rw-r--r--epan/dissectors/packet-dhcpv6.c10
-rw-r--r--epan/dissectors/packet-diameter.c13
-rw-r--r--epan/dissectors/packet-gtp.c5
-rw-r--r--epan/dissectors/packet-gtpv2.c6
-rw-r--r--epan/dissectors/packet-l2tp.c13
-rw-r--r--epan/dissectors/packet-mip.c5
-rw-r--r--epan/dissectors/packet-mip6.c5
-rw-r--r--epan/dissectors/packet-mpls-echo.c4
-rw-r--r--epan/dissectors/packet-netflow.c2
-rw-r--r--epan/dissectors/packet-pcep.c6
-rw-r--r--epan/dissectors/packet-radius.c6
-rw-r--r--epan/dissectors/packet-rsvp.c4
-rw-r--r--epan/dissectors/packet-snmp.c6
-rw-r--r--epan/enterprise-numbers200468
-rw-r--r--epan/proto.h2
-rw-r--r--epan/sminmpec.c50250
-rw-r--r--epan/sminmpec.h4
26 files changed, 219 insertions, 250795 deletions
diff --git a/epan/CMakeLists.txt b/epan/CMakeLists.txt
index 1d3c7ac150..0dcbc4b55a 100644
--- a/epan/CMakeLists.txt
+++ b/epan/CMakeLists.txt
@@ -61,16 +61,6 @@ set(LIBWIRESHARK_ASM_FILES
# !ENDIF
)
-add_custom_target(
- update-sminmpec
- COMMAND ${PERL_EXECUTABLE}
- ${CMAKE_SOURCE_DIR}/tools/make-sminmpec.pl
- DEPENDS
- enterprise-numbers
- ${CMAKE_SOURCE_DIR}/tools/make-sminmpec.pl
-)
-set_target_properties(update-sminmpec PROPERTIES FOLDER "tools")
-
add_custom_command(
OUTPUT ps.c
COMMAND ${PYTHON_EXECUTABLE}
@@ -145,7 +135,6 @@ set(LIBWIRESHARK_FILES
req_resp_hdrs.c
rtd_table.c
show_exception.c
- sminmpec.c
srt_table.c
stat_tap_ui.c
stats_tree.c
diff --git a/epan/Makefile.am b/epan/Makefile.am
index 2ec26f24a1..0bf74994b7 100644
--- a/epan/Makefile.am
+++ b/epan/Makefile.am
@@ -107,7 +107,6 @@ LIBWIRESHARK_SRC = \
req_resp_hdrs.c \
rtd_table.c \
show_exception.c \
- sminmpec.c \
srt_table.c \
stat_tap_ui.c \
stats_tree.c \
@@ -451,9 +450,6 @@ ws_version_info.c: $(top_srcdir)/ws_version_info.c
tvbtest.o exntest.o oids_test.o: exceptions.h
-update-sminmpec:
- $(PERL) $(srcdir)/../tools/make-sminmpec.pl
-
ps.c: print.ps $(top_srcdir)/tools/rdps.py
$(AM_V_python)$(PYTHON) $(top_srcdir)/tools/rdps.py $(srcdir)/print.ps ps.c
diff --git a/epan/addr_resolv.c b/epan/addr_resolv.c
index 97c5ef6412..e103653ca2 100644
--- a/epan/addr_resolv.c
+++ b/epan/addr_resolv.c
@@ -118,6 +118,7 @@
#define ENAME_SERVICES "services"
#define ENAME_VLANS "vlans"
#define ENAME_SS7PCS "ss7pcs"
+#define ENAME_ENTERPRISES "enterprises"
#define HASHETHSIZE 2048
#define HASHHOSTSIZE 2048
@@ -240,6 +241,7 @@ static wmem_map_t *manuf_hashtable = NULL;
static wmem_map_t *wka_hashtable = NULL;
static wmem_map_t *eth_hashtable = NULL;
static wmem_map_t *serv_port_hashtable = NULL;
+static GHashTable *enterprises_hashtable = NULL;
static subnet_length_entry_t subnet_length_entries[SUBNETLENGTHSIZE]; /* Ordered array of entries */
static gboolean have_subnet_entry = FALSE;
@@ -318,6 +320,8 @@ gchar *g_services_path = NULL; /* global services file */
gchar *g_pservices_path = NULL; /* personal services file */
gchar *g_pvlan_path = NULL; /* personal vlans file */
gchar *g_ss7pcs_path = NULL; /* personal ss7pcs file */
+gchar *g_enterprises_path = NULL; /* global enterprises file */
+gchar *g_penterprises_path = NULL; /* personal enterprises file */
/* first resolving call */
/* c-ares */
@@ -381,6 +385,16 @@ typedef struct {
* Miscellaneous functions
*/
+static char *
+remove_comment_and_strip_line(char *buf)
+{
+ char *tok;
+
+ if ((tok = strchr(buf, '#')))
+ *tok = '\0';
+ return g_strstrip(buf);
+}
+
static int
fgetline(char **buf, int *size, FILE *fp)
{
@@ -681,6 +695,118 @@ service_name_lookup_cleanup(void)
g_pservices_path = NULL;
}
+static void
+parse_enterprises_line (char *line)
+{
+ char *str, *dec_str, *org_str;
+ guint32 dec;
+
+ str = remove_comment_and_strip_line(line);
+ dec_str = strtok(str, "\t");
+ if (!dec_str)
+ return;
+ org_str = strtok(NULL, "\t");
+ if (!org_str)
+ return;
+ if (!ws_strtou32(dec_str, NULL, &dec))
+ return;
+ g_hash_table_replace(enterprises_hashtable, GUINT_TO_POINTER(dec), g_strdup(org_str));
+}
+
+
+static gboolean
+parse_enterprises_file(const char * path)
+{
+ FILE *fp;
+ static int size = 0;
+ static char *buf = NULL;
+
+ fp = ws_fopen(path, "r");
+ if (fp == NULL)
+ return FALSE;
+
+ while (fgetline(&buf, &size, fp) >= 0) {
+ parse_enterprises_line(buf);
+ }
+
+ fclose(fp);
+ return TRUE;
+}
+
+static void
+initialize_enterprises(void)
+{
+ g_assert(enterprises_hashtable == NULL);
+ enterprises_hashtable = g_hash_table_new_full(NULL, NULL, NULL, g_free);
+
+ if (g_enterprises_path == NULL) {
+ g_enterprises_path = get_datafile_path(ENAME_ENTERPRISES);
+ }
+ parse_enterprises_file(g_enterprises_path);
+
+ if (g_penterprises_path == NULL) {
+ g_penterprises_path = get_persconffile_path(ENAME_ENTERPRISES, FALSE);
+ }
+ parse_enterprises_file(g_penterprises_path);
+}
+
+const gchar *
+try_enterprises_lookup(guint32 value)
+{
+ return (const gchar *)g_hash_table_lookup(enterprises_hashtable, GUINT_TO_POINTER(value));
+}
+
+const gchar *
+enterprises_lookup(guint32 value, const char *unknown_str)
+{
+ const gchar *s;
+
+ s = try_enterprises_lookup(value);
+ if (s != NULL)
+ return s;
+ if (unknown_str != NULL)
+ return unknown_str;
+ return "<Unknown>";
+}
+
+void
+enterprises_base_custom(char *buf, guint32 value)
+{
+ const gchar *s;
+
+ if ((s = try_enterprises_lookup(value)) == NULL)
+ s = ITEM_LABEL_UNKNOWN_STR;
+ g_snprintf(buf, ITEM_LABEL_LENGTH, "%s (%u)", s, value);
+}
+
+gchar *
+enterprises_lookup_format(wmem_allocator_t *allocator, guint32 value, const char *fmt)
+{
+ const gchar *s;
+
+ s = try_enterprises_lookup(value);
+ if (s != NULL)
+ return wmem_strdup(allocator, s);
+ if (fmt != NULL)
+ return wmem_strdup_printf(allocator, fmt, value);
+ return wmem_strdup(allocator, "<Unknown>");
+}
+
+static void
+enterprises_cleanup(void)
+{
+ g_assert(enterprises_hashtable);
+ g_hash_table_destroy(enterprises_hashtable);
+ enterprises_hashtable = NULL;
+ g_assert(g_enterprises_path);
+ g_free(g_enterprises_path);
+ g_enterprises_path = NULL;
+ if (g_pservices_path) {
+ g_free(g_pservices_path);
+ g_pservices_path = NULL;
+ }
+}
+
/* Fill in an IP4 structure with info from subnets file or just with the
* string form of the address.
*/
@@ -3391,6 +3517,7 @@ addr_resolv_init(void)
initialize_ethers();
initialize_ipxnets();
initialize_vlans();
+ initialize_enterprises();
/* host name initialization is done on a per-capture-file basis */
/*host_name_lookup_init();*/
}
@@ -3403,6 +3530,7 @@ addr_resolv_cleanup(void)
service_name_lookup_cleanup();
ethers_cleanup();
ipx_name_lookup_cleanup();
+ enterprises_cleanup();
/* host name initialization is done on a per-capture-file basis */
/*host_name_lookup_cleanup();*/
}
diff --git a/epan/addr_resolv.h b/epan/addr_resolv.h
index 20445379b4..18a9440fd0 100644
--- a/epan/addr_resolv.h
+++ b/epan/addr_resolv.h
@@ -51,6 +51,9 @@ extern "C" {
#define MAXVLANNAMELEN 128 /* max vlan name length */
#endif
+#define BASE_ENTERPRISES BASE_CUSTOM
+#define STRINGS_ENTERPRISES CF_FUNC(enterprises_base_custom)
+
/**
* @brief Flags to control name resolution.
*/
@@ -140,6 +143,29 @@ WS_DLL_PUBLIC gchar *sctp_port_to_display(wmem_allocator_t *allocator, guint por
WS_DLL_PUBLIC const gchar *serv_name_lookup(port_type proto, guint port);
/*
+ * enterprises_lookup() returns the private enterprise code string, or 'unknown_str'
+ * if one doesn't exist, or "<Unknown>" if that is NULL.
+ */
+WS_DLL_PUBLIC const gchar *enterprises_lookup(guint32 value, const char *unknown_str);
+
+/*
+ * enterprises_lookup_format() returns the wmem-allocated private enterprise code
+ * string, or a formatted string if one doesn't exist, or "<Unknown>" if 'fmt' is NULL.
+ */
+WS_DLL_PUBLIC gchar *enterprises_lookup_format(wmem_allocator_t *allocator, guint32 value, const char *fmt);
+
+/*
+ * try_enterprises_lookup() returns the private enterprise code string, or NULL if not found.
+ */
+WS_DLL_PUBLIC const gchar *try_enterprises_lookup(guint32 value);
+
+/*
+ * enterprises_base_custom() prints the "name (decimal)" string to 'buf'.
+ * (Used with BASE_CUSTOM field display).
+ */
+WS_DLL_PUBLIC void enterprises_base_custom(char *buf, guint32 value);
+
+/*
* try_serv_name_lookup() returns the well known service name string, or NULL if
* one doesn't exist.
*/
diff --git a/epan/dissectors/asn1/snmp/packet-snmp-template.c b/epan/dissectors/asn1/snmp/packet-snmp-template.c
index 7343744e1d..95f8e53066 100644
--- a/epan/dissectors/asn1/snmp/packet-snmp-template.c
+++ b/epan/dissectors/asn1/snmp/packet-snmp-template.c
@@ -54,7 +54,7 @@
#include <epan/conversation.h>
#include <epan/etypes.h>
#include <epan/prefs.h>
-#include <epan/sminmpec.h>
+#include <epan/addr_resolv.h>
#include <epan/next_tvb.h>
#include <epan/uat.h>
#include <epan/asn1.h>
@@ -2298,8 +2298,8 @@ void proto_register_snmp(void) {
"Engine ID Conformance", "snmp.engineid.conform", FT_BOOLEAN, 8,
TFS(&tfs_snmp_engineid_conform), F_SNMP_ENGINEID_CONFORM, "Engine ID RFC3411 Conformance", HFILL }},
{ &hf_snmp_engineid_enterprise, {
- "Engine Enterprise ID", "snmp.engineid.enterprise", FT_UINT32, BASE_DEC|BASE_EXT_STRING,
- &sminmpec_values_ext, 0, NULL, HFILL }},
+ "Engine Enterprise ID", "snmp.engineid.enterprise", FT_UINT32, BASE_ENTERPRISES,
+ STRINGS_ENTERPRISES, 0, NULL, HFILL }},
{ &hf_snmp_engineid_format, {
"Engine ID Format", "snmp.engineid.format", FT_UINT8, BASE_DEC,
VALS(snmp_engineid_format_vals), 0, NULL, HFILL }},
diff --git a/epan/dissectors/packet-3g-a11.c b/epan/dissectors/packet-3g-a11.c
index 25460e0eb3..47c9625f47 100644
--- a/epan/dissectors/packet-3g-a11.c
+++ b/epan/dissectors/packet-3g-a11.c
@@ -44,6 +44,7 @@
#include <epan/expert.h>
/* Include vendor id translation */
#include <epan/sminmpec.h>
+#include <epan/addr_resolv.h>
#include <epan/to_str.h>
#include "packet-radius.h"
@@ -2209,7 +2210,7 @@ proto_register_a11(void)
},
{ &hf_a11_vse_vid,
{ "Vendor ID", "a11.ext.vid",
- FT_UINT32, BASE_HEX|BASE_EXT_STRING, &sminmpec_values_ext, 0,
+ FT_UINT32, BASE_ENTERPRISES, STRINGS_ENTERPRISES, 0,
NULL, HFILL }
},
{ &hf_a11_vse_apptype,
diff --git a/epan/dissectors/packet-asf.c b/epan/dissectors/packet-asf.c
index a94282369f..05c6c656af 100644
--- a/epan/dissectors/packet-asf.c
+++ b/epan/dissectors/packet-asf.c
@@ -28,7 +28,7 @@
#include <epan/packet.h>
#include <epan/expert.h>
-#include <epan/sminmpec.h>
+#include <epan/addr_resolv.h>
/*
* See
@@ -305,7 +305,7 @@ proto_register_asf(void)
static hf_register_info hf[] = {
{ &hf_asf_iana, {
"IANA Enterprise Number", "asf.iana",
- FT_UINT32, BASE_DEC|BASE_EXT_STRING, &sminmpec_values_ext, 0,
+ FT_UINT32, BASE_ENTERPRISES, STRINGS_ENTERPRISES, 0,
NULL, HFILL }},
{ &hf_asf_type, {
"Message Type", "asf.type",
diff --git a/epan/dissectors/packet-bootp.c b/epan/dissectors/packet-bootp.c
index 1b9e48859f..bc017c734d 100644
--- a/epan/dissectors/packet-bootp.c
+++ b/epan/dissectors/packet-bootp.c
@@ -121,7 +121,7 @@
#include <epan/tap.h>
#include <epan/stat_tap_ui.h>
#include <epan/arptypes.h>
-#include <epan/sminmpec.h>
+#include <epan/addr_resolv.h>
#include <epan/expert.h>
#include <epan/uat.h>
#include <epan/oui.h>
@@ -6924,7 +6924,7 @@ proto_register_bootp(void)
{ &hf_bootp_client_identifier_enterprise_num,
{ "Enterprise-number", "bootp.client_id.enterprise_num",
- FT_UINT32, BASE_DEC|BASE_EXT_STRING, &sminmpec_values_ext, 0x0,
+ FT_UINT32, BASE_ENTERPRISES, STRINGS_ENTERPRISES, 0x0,
NULL, HFILL }},
{ &hf_bootp_client_identifier,
@@ -7972,7 +7972,7 @@ proto_register_bootp(void)
{ &hf_bootp_option82_vi_enterprise,
{ "Enterprise", "bootp.option.agent_information_option.vi.enterprise",
- FT_UINT32, BASE_DEC|BASE_EXT_STRING, &sminmpec_values_ext, 0x0,
+ FT_UINT32, BASE_ENTERPRISES, STRINGS_ENTERPRISES, 0x0,
"Option 82:9 VI Enterprise", HFILL }},
{ &hf_bootp_option82_vi_data_length,
@@ -8469,7 +8469,7 @@ proto_register_bootp(void)
{ &hf_bootp_option_vi_class_enterprise,
{ "Enterprise", "bootp.option.vi_class.enterprise",
- FT_UINT32, BASE_DEC|BASE_EXT_STRING, &sminmpec_values_ext, 0x00,
+ FT_UINT32, BASE_ENTERPRISES, STRINGS_ENTERPRISES, 0x00,
"Option 124: Enterprise", HFILL }},
{ &hf_bootp_option_vi_class_data_length,
@@ -8484,7 +8484,7 @@ proto_register_bootp(void)
{ &hf_bootp_option125_enterprise,
{ "Enterprise", "bootp.option.vi.enterprise",
- FT_UINT32, BASE_DEC|BASE_EXT_STRING, &sminmpec_values_ext, 0x00,
+ FT_UINT32, BASE_ENTERPRISES, STRINGS_ENTERPRISES, 0x00,
"Option 125: Enterprise", HFILL }},
{ &hf_bootp_option125_length,
diff --git a/epan/dissectors/packet-capwap.c b/epan/dissectors/packet-capwap.c
index bc6d70e24c..5500373992 100644
--- a/epan/dissectors/packet-capwap.c
+++ b/epan/dissectors/packet-capwap.c
@@ -27,8 +27,9 @@
#include <epan/prefs.h>
#include <epan/reassemble.h>
#include <epan/expert.h>
-
#include <epan/sminmpec.h>
+#include <epan/addr_resolv.h>
+
#include "packet-ieee80211.h"
void proto_register_capwap_control(void);
@@ -3576,7 +3577,7 @@ proto_register_capwap_control(void)
},
{ &hf_capwap_control_header_msg_type_enterprise_nbr,
{ "Message Type (Enterprise Number)", "capwap.control.header.message_type.enterprise_number",
- FT_UINT32, BASE_DEC|BASE_EXT_STRING, &sminmpec_values_ext, 0x0,
+ FT_UINT32, BASE_ENTERPRISES, STRINGS_ENTERPRISES, 0x0,
NULL, HFILL }
},
{ &hf_capwap_control_header_msg_type_enterprise_specific,
@@ -3714,7 +3715,7 @@ proto_register_capwap_control(void)
{ &hf_capwap_msg_element_type_ac_information_vendor,
{ "AC Information Vendor", "capwap.control.message_element.ac_information.vendor",
- FT_UINT32, BASE_DEC|BASE_EXT_STRING, &sminmpec_values_ext, 0x0,
+ FT_UINT32, BASE_ENTERPRISES, STRINGS_ENTERPRISES, 0x0,
NULL, HFILL }
},
{ &hf_capwap_msg_element_type_ac_information_type,
@@ -3933,7 +3934,7 @@ proto_register_capwap_control(void)
},
{ &hf_capwap_msg_element_type_vsp_vendor_identifier,
{ "Vendor Identifier", "capwap.control.message_element.vsp.vendor_identifier",
- FT_UINT32, BASE_DEC|BASE_EXT_STRING, &sminmpec_values_ext, 0x0,
+ FT_UINT32, BASE_ENTERPRISES, STRINGS_ENTERPRISES, 0x0,
NULL, HFILL }
},
{ &hf_capwap_msg_element_type_vsp_vendor_element_id,
@@ -3954,7 +3955,7 @@ proto_register_capwap_control(void)
},
{ &hf_capwap_msg_element_type_wtp_board_data_vendor,
{ "WTP Board Data Vendor", "capwap.control.message_element.wtp_board_data.vendor",
- FT_UINT32, BASE_DEC|BASE_EXT_STRING, &sminmpec_values_ext, 0x0,
+ FT_UINT32, BASE_ENTERPRISES, STRINGS_ENTERPRISES, 0x0,
NULL, HFILL }
},
{ &hf_capwap_msg_element_type_wtp_board_data_type,
@@ -4042,7 +4043,7 @@ proto_register_capwap_control(void)
},
{ &hf_capwap_msg_element_type_wtp_descriptor_vendor,
{ "WTP Descriptor Vendor", "capwap.control.message_element.wtp_descriptor.vendor",
- FT_UINT32, BASE_DEC|BASE_EXT_STRING, &sminmpec_values_ext, 0x0,
+ FT_UINT32, BASE_ENTERPRISES, STRINGS_ENTERPRISES, 0x0,
NULL, HFILL }
},
{ &hf_capwap_msg_element_type_wtp_descriptor_type,
diff --git a/epan/dissectors/packet-dhcpv6.c b/epan/dissectors/packet-dhcpv6.c
index 0ce53698cb..be669d81c2 100644
--- a/epan/dissectors/packet-dhcpv6.c
+++ b/epan/dissectors/packet-dhcpv6.c
@@ -55,7 +55,7 @@
#include "config.h"
#include <epan/packet.h>
-#include <epan/sminmpec.h>
+#include <epan/addr_resolv.h>
#include <epan/expert.h>
#include <epan/prefs.h>
#include <epan/to_str.h>
@@ -2378,7 +2378,7 @@ proto_register_dhcpv6(void)
{ &hf_clientfqdn_s,
{ "S bit", "dhcpv6.clientfqdn.s", FT_BOOLEAN, 8, TFS(&fqdn_s), 0x1, "Whether the server SHOULD or SHOULD NOT perform the AAAA RR (FQDN-to-address) DNS updates", HFILL}},
{ &hf_remoteid_enterprise,
- { "Enterprise ID", "dhcpv6.remoteid.enterprise", FT_UINT32, BASE_DEC|BASE_EXT_STRING, &sminmpec_values_ext, 0, "RemoteID Enterprise Number", HFILL }},
+ { "Enterprise ID", "dhcpv6.remoteid.enterprise", FT_UINT32, BASE_ENTERPRISES, STRINGS_ENTERPRISES, 0, "RemoteID Enterprise Number", HFILL }},
{ &hf_duid_bytes,
{ "DUID", "dhcpv6.duid.bytes", FT_BYTES, BASE_NONE, NULL, 0x0, NULL, HFILL}},
{ &hf_duid_type,
@@ -2392,7 +2392,7 @@ proto_register_dhcpv6(void)
{ &hf_duidll_hwtype,
{ "Hardware type", "dhcpv6.duidll.hwtype", FT_UINT16, BASE_DEC, VALS(arp_hrd_vals), 0, "DUID LL Hardware Type", HFILL }},
{ &hf_duiden_enterprise,
- { "Enterprise ID", "dhcpv6.duiden.enterprise", FT_UINT32, BASE_DEC|BASE_EXT_STRING, &sminmpec_values_ext, 0, "DUID EN Enterprise Number", HFILL }},
+ { "Enterprise ID", "dhcpv6.duiden.enterprise", FT_UINT32, BASE_ENTERPRISES, STRINGS_ENTERPRISES, 0, "DUID EN Enterprise Number", HFILL }},
{ &hf_duiden_identifier,
{ "Identifier", "dhcpv6.duiden.identifier", FT_BYTES, BASE_NONE, NULL, 0x0, NULL, HFILL}},
{ &hf_duidll_link_layer_addr,
@@ -2436,11 +2436,11 @@ proto_register_dhcpv6(void)
{ &hf_opt_status_msg,
{ "Status Message", "dhcpv6.status_msg", FT_STRING, BASE_NONE, NULL, 0, NULL, HFILL }},
{ &hf_vendorclass_enterprise,
- { "Enterprise ID", "dhcpv6.vendorclass.enterprise", FT_UINT32, BASE_DEC|BASE_EXT_STRING, &sminmpec_values_ext, 0, "Vendor Class Enterprise Number", HFILL }},
+ { "Enterprise ID", "dhcpv6.vendorclass.enterprise", FT_UINT32, BASE_ENTERPRISES, STRINGS_ENTERPRISES, 0, "Vendor Class Enterprise Number", HFILL }},
{ &hf_vendorclass_data,
{ "vendor-class-data", "dhcpv6.vendorclass.data", FT_STRINGZ, BASE_NONE, NULL, 0, NULL, HFILL }},
{ &hf_vendoropts_enterprise,
- { "Enterprise ID", "dhcpv6.vendoropts.enterprise", FT_UINT32, BASE_DEC|BASE_EXT_STRING, &sminmpec_values_ext, 0, "Vendor opts Enterprise Number", HFILL }},
+ { "Enterprise ID", "dhcpv6.vendoropts.enterprise", FT_UINT32, BASE_ENTERPRISES, STRINGS_ENTERPRISES, 0, "Vendor opts Enterprise Number", HFILL }},
{ &hf_vendoropts_enterprise_option_code,
{ "Option code", "dhcpv6.vendoropts.enterprise.option_code", FT_UINT16, BASE_DEC, NULL, 0, NULL, HFILL }},
{ &hf_vendoropts_enterprise_option_length,
diff --git a/epan/dissectors/packet-diameter.c b/epan/dissectors/packet-diameter.c
index 75c216b04c..da8901e576 100644
--- a/epan/dissectors/packet-diameter.c
+++ b/epan/dissectors/packet-diameter.c
@@ -46,6 +46,7 @@
#include <epan/exceptions.h>
#include <epan/prefs.h>
#include <epan/sminmpec.h>
+#include <epan/addr_resolv.h>
#include <epan/expert.h>
#include <epan/tap.h>
#include <epan/srt_table.h>
@@ -684,9 +685,7 @@ dissect_diameter_avp(diam_ctx_t *c, tvbuff_t *tvb, int offset, diam_sub_dis_t *d
vendor->vs_avps_ext = value_string_ext_new(VND_AVP_VS(vendor),
VND_AVP_VS_LEN(vendor)+1,
wmem_strdup_printf(wmem_epan_scope(), "diameter_vendor_%s",
- val_to_str_ext_const(vendorid,
- &sminmpec_values_ext,
- "Unknown")));
+ enterprises_lookup(vendorid, "Unknown")));
#if 0
{ /* Debug code */
value_string *vendor_avp_vs = VALUE_STRING_EXT_VS_P(vendor->vs_avps_ext);
@@ -720,7 +719,7 @@ dissect_diameter_avp(diam_ctx_t *c, tvbuff_t *tvb, int offset, diam_sub_dis_t *d
proto_tree *tu = proto_item_add_subtree(pi,ett_unknown);
proto_tree_add_expert_format(tu, c->pinfo, &ei_diameter_avp_code, tvb, offset, 4,
"Unknown AVP %u (vendor=%s), if you know what this is you can add it to dictionary.xml", code,
- val_to_str_ext_const(vendorid, &sminmpec_values_ext, "Unknown"));
+ enterprises_lookup(vendorid, "Unknown"));
}
offset += 4;
@@ -2174,7 +2173,7 @@ real_register_diameter_fields(void)
{ "Reserved","diameter.flags.reserved7", FT_BOOLEAN, 8, TFS(&tfs_set_notset),
DIAM_FLAGS_RESERVED7, NULL, HFILL }},
{ &hf_diameter_vendor_id,
- { "VendorId", "diameter.vendorId", FT_UINT32, BASE_DEC|BASE_EXT_STRING, &sminmpec_values_ext,
+ { "VendorId", "diameter.vendorId", FT_UINT32, BASE_ENTERPRISES, STRINGS_ENTERPRISES,
0x0, NULL, HFILL }},
{ &hf_diameter_application_id,
{ "ApplicationId", "diameter.applicationId", FT_UINT32, BASE_DEC|BASE_EXT_STRING, VALS_EXT_PTR(dictionary.applications),
@@ -2221,8 +2220,8 @@ real_register_diameter_fields(void)
{ "Reserved","diameter.avp.flags.reserved7", FT_BOOLEAN, 8, TFS(&tfs_set_notset),
AVP_FLAGS_RESERVED7, NULL, HFILL }},
{ &hf_diameter_avp_vendor_id,
- { "AVP Vendor Id","diameter.avp.vendorId", FT_UINT32, BASE_DEC|BASE_EXT_STRING,
- &sminmpec_values_ext, 0x0, NULL, HFILL }},
+ { "AVP Vendor Id","diameter.avp.vendorId", FT_UINT32, BASE_ENTERPRISES, STRINGS_ENTERPRISES,
+ 0x0, NULL, HFILL }},
{ &(unknown_avp.hf_value),
{ "Value","diameter.avp.unknown", FT_BYTES, BASE_NONE, NULL, 0x0, NULL, HFILL }},
{ &hf_diameter_avp_data_wrong_length,
diff --git a/epan/dissectors/packet-gtp.c b/epan/dissectors/packet-gtp.c
index 37058c1cf4..a639931752 100644
--- a/epan/dissectors/packet-gtp.c
+++ b/epan/dissectors/packet-gtp.c
@@ -57,6 +57,7 @@
#include <epan/prefs.h>
#include <epan/expert.h>
#include <epan/sminmpec.h>
+#include <epan/addr_resolv.h>
#include <epan/asn1.h>
#include <epan/tap.h>
#include <epan/srt_table.h>
@@ -8339,7 +8340,7 @@ decode_gtp_priv_ext(tvbuff_t * tvb, int offset, packet_info * pinfo, proto_tree
if (length >= 2) {
ext_id = tvb_get_ntohs(tvb, offset);
proto_tree_add_uint(ext_tree_priv_ext, hf_gtp_ext_id, tvb, offset, 2, ext_id);
- proto_item_append_text(te, "%s (%u)", val_to_str_ext_const(ext_id, &sminmpec_values_ext, "Unknown"), ext_id);
+ proto_item_append_text(te, "%s (%u)", enterprises_lookup(ext_id, "Unknown"), ext_id);
offset = offset + 2;
if (length > 2) {
@@ -9062,7 +9063,7 @@ proto_register_gtp(void)
},
{&hf_gtp_ext_id,
{ "Extension identifier", "gtp.ext_id",
- FT_UINT16, BASE_DEC|BASE_EXT_STRING, &sminmpec_values_ext, 0,
+ FT_UINT16, BASE_ENTERPRISES, STRINGS_ENTERPRISES, 0,
"Private Enterprise number", HFILL}
},
{&hf_gtp_ext_val,
diff --git a/epan/dissectors/packet-gtpv2.c b/epan/dissectors/packet-gtpv2.c
index f0ec9113f1..f0bd0fa136 100644
--- a/epan/dissectors/packet-gtpv2.c
+++ b/epan/dissectors/packet-gtpv2.c
@@ -30,7 +30,7 @@
#include <epan/to_str.h>
#include <epan/asn1.h>
#include <epan/expert.h>
-#include <epan/sminmpec.h>
+#include <epan/addr_resolv.h>
#include "packet-gsm_a_common.h"
#include "packet-gsm_map.h"
@@ -5210,7 +5210,7 @@ dissect_gtpv2_private_ext(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tre
proto_tree_add_item(tree, hf_gtpv2_enterprise_id, tvb, offset, 2, ENC_BIG_ENDIAN);
offset += 2;
- proto_item_append_text(item, "%s (%u)", val_to_str_ext_const(ext_id, &sminmpec_values_ext, "Unknown"), ext_id);
+ proto_item_append_text(item, "%s (%u)", enterprises_lookup(ext_id, "Unknown"), ext_id);
next_tvb = tvb_new_subset_length(tvb, offset, length-2);
if (dissector_try_uint_new(gtpv2_priv_ext_dissector_table, ext_id, next_tvb, pinfo, tree, FALSE, GUINT_TO_POINTER((guint32)instance))){
@@ -8791,7 +8791,7 @@ void proto_register_gtpv2(void)
},
{ &hf_gtpv2_enterprise_id,
{"Enterprise ID", "gtpv2.enterprise_id",
- FT_UINT16, BASE_DEC|BASE_EXT_STRING, &sminmpec_values_ext, 0x0,
+ FT_UINT16, BASE_ENTERPRISES, STRINGS_ENTERPRISES, 0x0,
NULL, HFILL}
},
{ &hf_gtpv2_ti,
diff --git a/epan/dissectors/packet-l2tp.c b/epan/dissectors/packet-l2tp.c
index 5268728f83..ce80b97dcf 100644
--- a/epan/dissectors/packet-l2tp.c
+++ b/epan/dissectors/packet-l2tp.c
@@ -61,6 +61,7 @@
#include <epan/packet.h>
#include <epan/ipproto.h>
#include <epan/sminmpec.h>
+#include <epan/addr_resolv.h>
#include <epan/prefs.h>
#include <epan/conversation.h>
#include <epan/expert.h>
@@ -1526,7 +1527,7 @@ static int dissect_l2tp_cisco_avps(tvbuff_t *tvb, packet_info *pinfo _U_, proto_
l2tp_avp_tree = proto_tree_add_subtree_format(tree, tvb, offset,
avp_len, ett_l2tp_avp, NULL, "Vendor %s: %s AVP",
- val_to_str_ext(avp_vendor_id, &sminmpec_values_ext, "Unknown (%u)"),
+ enterprises_lookup_format(wmem_packet_scope(), avp_vendor_id, "Unknown (%u)"),
val_to_str(avp_type, cisco_avp_type_vals, "Unknown (%u)"));
proto_tree_add_item(l2tp_avp_tree, hf_l2tp_avp_mandatory, tvb, offset, 2, ENC_BIG_ENDIAN);
@@ -1634,7 +1635,7 @@ static int dissect_l2tp_broadband_avps(tvbuff_t *tvb, packet_info *pinfo _U_, pr
l2tp_avp_tree = proto_tree_add_subtree_format(tree, tvb, offset,
avp_len, ett_l2tp_avp, NULL, "Vendor %s: %s AVP",
- val_to_str_ext(avp_vendor_id, &sminmpec_values_ext, "Unknown (%u)"),
+ enterprises_lookup_format(wmem_packet_scope(), avp_vendor_id, "Unknown (%u)"),
val_to_str(avp_type, broadband_avp_type_vals, "Unknown (%u)"));
proto_tree_add_item(l2tp_avp_tree, hf_l2tp_avp_mandatory, tvb, offset, 2, ENC_BIG_ENDIAN);
@@ -1816,7 +1817,7 @@ static int dissect_l2tp_ericsson_avps(tvbuff_t *tvb, packet_info *pinfo _U_, pro
l2tp_avp_tree = proto_tree_add_subtree_format(tree, tvb, offset,
avp_len, ett_l2tp_avp, NULL, "Vendor %s: %s AVP",
- val_to_str_ext(avp_vendor_id, &sminmpec_values_ext, "Unknown (%u)"),
+ enterprises_lookup_format(wmem_packet_scope(), avp_vendor_id, "Unknown (%u)"),
val_to_str(avp_type, ericsson_avp_type_vals, "Unknown (%u)"));
proto_tree_add_item(l2tp_avp_tree, hf_l2tp_avp_mandatory, tvb, offset, 2, ENC_BIG_ENDIAN);
@@ -1905,7 +1906,7 @@ dissect_l2tp_vnd_cablelabs_avps(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tre
l2tp_avp_tree = proto_tree_add_subtree_format(tree, tvb, offset,
avp_len, ett_l2tp_avp, NULL, "Vendor %s: %s AVP",
- val_to_str_ext(avp_vendor_id, &sminmpec_values_ext, "Unknown (%u)"),
+ enterprises_lookup_format(wmem_packet_scope(), avp_vendor_id, "Unknown (%u)"),
val_to_str(avp_type, cablelabs_avp_type_vals, "Unknown (%u)"));
proto_tree_add_item(l2tp_avp_tree, hf_l2tp_avp_mandatory, tvb, offset, 2, ENC_BIG_ENDIAN);
@@ -2037,7 +2038,7 @@ static void process_control_avps(tvbuff_t *tvb,
if (!dissector_try_uint_new(l2tp_vendor_avp_dissector_table, avp_vendor_id, avp_tvb, pinfo, l2tp_tree, FALSE, l2tp_cntrl_data)){
l2tp_avp_tree = proto_tree_add_subtree_format(l2tp_tree, tvb, idx,
avp_len, ett_l2tp_avp, NULL, "Vendor %s AVP Type %u",
- val_to_str_ext(avp_vendor_id, &sminmpec_values_ext, "Unknown (%u)"),
+ enterprises_lookup_format(wmem_packet_scope(), avp_vendor_id, "Unknown (%u)"),
avp_type);
proto_tree_add_item(l2tp_avp_tree, hf_l2tp_avp_mandatory, tvb, idx, 2, ENC_BIG_ENDIAN);
@@ -3274,7 +3275,7 @@ proto_register_l2tp(void)
NULL, HFILL }},
{ &hf_l2tp_avp_vendor_id,
- { "Vendor ID", "l2tp.avp.vendor_id", FT_UINT16, BASE_DEC|BASE_EXT_STRING, &sminmpec_values_ext, 0,
+ { "Vendor ID", "l2tp.avp.vendor_id", FT_UINT16, BASE_ENTERPRISES, STRINGS_ENTERPRISES, 0,
"AVP Vendor ID", HFILL }},
{ &hf_l2tp_avp_type,
diff --git a/epan/dissectors/packet-mip.c b/epan/dissectors/packet-mip.c
index 206d07a0ea..4f7c662242 100644
--- a/epan/dissectors/packet-mip.c
+++ b/epan/dissectors/packet-mip.c
@@ -30,6 +30,7 @@
#include <epan/expert.h>
#include <epan/to_str.h>
#include <epan/sminmpec.h>
+#include <epan/addr_resolv.h>
void proto_register_mip(void);
void proto_reg_handoff_mip(void);
@@ -1406,7 +1407,7 @@ void proto_register_mip(void)
},
{ &hf_mip_cvse_vendor_org_id,
{ "CVSE Vendor/org ID", "mip.ext.cvse.vendor_id",
- FT_UINT32, BASE_DEC|BASE_EXT_STRING, &sminmpec_values_ext, 0,
+ FT_UINT32, BASE_ENTERPRISES, STRINGS_ENTERPRISES, 0,
NULL, HFILL }
},
{ &hf_mip_cvse_verizon_cvse_type ,
@@ -1441,7 +1442,7 @@ void proto_register_mip(void)
},
{ &hf_mip_nvse_vendor_org_id,
{ "Vendor ID", "mip.ext.nvse.vendor_id",
- FT_UINT32, BASE_DEC|BASE_EXT_STRING, &sminmpec_values_ext, 0,
+ FT_UINT32, BASE_ENTERPRISES, STRINGS_ENTERPRISES, 0,
NULL, HFILL }
},
{ &hf_mip_nvse_vendor_nvse_type ,
diff --git a/epan/dissectors/packet-mip6.c b/epan/dissectors/packet-mip6.c
index 9dcb633c55..7340d8b916 100644
--- a/epan/dissectors/packet-mip6.c
+++ b/epan/dissectors/packet-mip6.c
@@ -57,6 +57,7 @@
#include <epan/expert.h>
#include <epan/ip_opts.h>
#include <epan/sminmpec.h>
+#include <epan/addr_resolv.h>
#include <wsutil/str_util.h>
@@ -2510,7 +2511,7 @@ dissect_mip6_opt_vsm(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void*
proto_tree_add_item_ret_uint(opt_tree, hf_mip6_vsm_vid, tvb,
offset, MIP6_VSM_VID_LEN, ENC_BIG_ENDIAN, &vendorid);
- proto_item_append_text(ti, ": %s", val_to_str_ext_const(vendorid, &sminmpec_values_ext, "<unknown>"));
+ proto_item_append_text(ti, ": %s", enterprises_lookup(vendorid, "<unknown>"));
offset += 4;
next_tvb = tvb_new_subset_remaining(tvb, offset);
@@ -4479,7 +4480,7 @@ proto_register_mip6(void)
},
{ &hf_mip6_vsm_vid,
{ "Vendor Id", "mip6.vsm.vendorId",
- FT_UINT32, BASE_DEC|BASE_EXT_STRING, &sminmpec_values_ext, 0x0,
+ FT_UINT32, BASE_ENTERPRISES, STRINGS_ENTERPRISES, 0x0,
NULL, HFILL }
},
{ &hf_mip6_vsm_subtype,
diff --git a/epan/dissectors/packet-mpls-echo.c b/epan/dissectors/packet-mpls-echo.c
index 1acdd0a2df..fa203a1922 100644
--- a/epan/dissectors/packet-mpls-echo.c
+++ b/epan/dissectors/packet-mpls-echo.c
@@ -33,7 +33,7 @@
#include "config.h"
#include <epan/packet.h>
-#include <epan/sminmpec.h>
+#include <epan/addr_resolv.h>
#include <epan/expert.h>
#include <epan/to_str.h>
@@ -2121,7 +2121,7 @@ proto_register_mpls_echo(void)
},
{ &hf_mpls_echo_tlv_vendor,
{ "Vendor Id", "mpls_echo.tlv.vendor_id",
- FT_UINT32, BASE_DEC|BASE_EXT_STRING, &sminmpec_values_ext, 0x0, "MPLS ECHO Vendor Id", HFILL}
+ FT_UINT32, BASE_ENTERPRISES, STRINGS_ENTERPRISES, 0x0, "MPLS ECHO Vendor Id", HFILL}
},
{ &hf_mpls_echo_tlv_ilso_addr_type,
{ "Address Type", "mpls_echo.tlv.ilso.addr_type",
diff --git a/epan/dissectors/packet-netflow.c b/epan/dissectors/packet-netflow.c
index b021383562..9ac96fab06 100644
--- a/epan/dissectors/packet-netflow.c
+++ b/epan/dissectors/packet-netflow.c
@@ -9960,7 +9960,7 @@ dissect_v9_v10_template_fields(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree
length = tvb_get_ntohs(tvb, offset+2); /* XXX: 0 length should not be allowed ? exception: "ScopeSystem" */
if ((ver == 10) && (type & 0x8000)) { /* IPFIX only */
pen = tvb_get_ntohl(tvb, offset+4);
- pen_str = val_to_str_ext_const(pen, &sminmpec_values_ext, "(Unknown)");
+ pen_str = enterprises_lookup(pen, "(Unknown)");
}
if (tmplt_p->fields_p[fields_type] != NULL) {
diff --git a/epan/dissectors/packet-pcep.c b/epan/dissectors/packet-pcep.c
index c04e717489..e7850a7740 100644
--- a/epan/dissectors/packet-pcep.c
+++ b/epan/dissectors/packet-pcep.c
@@ -71,7 +71,7 @@
#include <epan/packet.h>
#include <epan/to_str.h>
#include <epan/expert.h>
-#include <epan/sminmpec.h>
+#include <epan/addr_resolv.h>
#include "packet-tcp.h"
void proto_register_pcep(void);
@@ -5575,7 +5575,7 @@ proto_register_pcep(void)
},
{ &hf_pcep_enterprise_number,
{ "Enterprise Number", "pcep.vendor-information.enterprise-number",
- FT_UINT32, BASE_DEC|BASE_EXT_STRING, &sminmpec_values_ext, 0x0,
+ FT_UINT32, BASE_ENTERPRISES, STRINGS_ENTERPRISES, 0x0,
"IANA Private Enterprise Number", HFILL }
},
{ &hf_pcep_enterprise_specific_info,
@@ -5585,7 +5585,7 @@ proto_register_pcep(void)
},
{ &hf_pcep_tlv_enterprise_number,
{ "Enterprise Number", "pcep.tlv.enterprise-number",
- FT_UINT32, BASE_DEC|BASE_EXT_STRING, &sminmpec_values_ext, 0x0,
+ FT_UINT32, BASE_ENTERPRISES, STRINGS_ENTERPRISES, 0x0,
"IANA Private Enterprise Number", HFILL }
},
{ &hf_pcep_tlv_enterprise_specific_info,
diff --git a/epan/dissectors/packet-radius.c b/epan/dissectors/packet-radius.c
index 5b61783810..8c41019246 100644
--- a/epan/dissectors/packet-radius.c
+++ b/epan/dissectors/packet-radius.c
@@ -1493,7 +1493,7 @@ dissect_attribute_value_pairs(proto_tree *tree, packet_info *pinfo, tvbuff_t *tv
offset += 4;
vendor = (radius_vendor_info_t *)g_hash_table_lookup(dict->vendors_by_id, GUINT_TO_POINTER(vendor_id));
- vendor_str = val_to_str_ext_const(vendor_id, &sminmpec_values_ext, "Unknown");
+ vendor_str = enterprises_lookup(vendor_id, "Unknown");
if (!vendor) {
vendor = &no_vendor;
}
@@ -2466,7 +2466,7 @@ radius_register_avp_dissector(guint32 vendor_id, guint32 _attribute_id, radius_a
vendor = (radius_vendor_info_t *)g_malloc(sizeof(radius_vendor_info_t));
vendor->name = g_strdup_printf("%s-%u",
- val_to_str_ext_const(vendor_id, &sminmpec_values_ext, "Unknown"),
+ enterprises_lookup(vendor_id, "Unknown"),
vendor_id);
vendor->code = vendor_id;
vendor->attrs_by_id = g_hash_table_new_full(g_direct_hash, g_direct_equal, NULL, free_radius_attr_info);
@@ -2684,7 +2684,7 @@ register_radius_fields(const char *unused _U_)
{ "Type", "radius.avp.type", FT_UINT8, BASE_DEC, NULL, 0x0,
NULL, HFILL }},
{ &hf_radius_avp_vendor_id,
- { "Vendor ID", "radius.avp.vendor_id", FT_UINT32, BASE_DEC, NULL, 0x0,
+ { "Vendor ID", "radius.avp.vendor_id", FT_UINT32, BASE_ENTERPRISES, STRINGS_ENTERPRISES, 0x0,
NULL, HFILL }},
{ &hf_radius_avp_vendor_type,
{ "Type", "radius.avp.vendor_type", FT_UINT8, BASE_DEC, NULL, 0x0,
diff --git a/epan/dissectors/packet-rsvp.c b/epan/dissectors/packet-rsvp.c
index 395f2daeb8..f13ac1653b 100644
--- a/epan/dissectors/packet-rsvp.c
+++ b/epan/dissectors/packet-rsvp.c
@@ -105,7 +105,7 @@
#include <epan/conversation.h>
#include <epan/conversation_table.h>
#include <epan/tap.h>
-#include <epan/sminmpec.h>
+#include <epan/addr_resolv.h>
#include "packet-rsvp.h"
#include "packet-ip.h"
#include "packet-diffserv-mpls-common.h"
@@ -8211,7 +8211,7 @@ proto_register_rsvp(void)
*/
{&hf_rsvp_filter[RSVPF_ENT_CODE],
{ "Enterprise Code", "rsvp.obj_private.enterprise",
- FT_UINT32, BASE_DEC|BASE_EXT_STRING, &sminmpec_values_ext, 0x0,
+ FT_UINT32, BASE_ENTERPRISES, STRINGS_ENTERPRISES, 0x0,
"IANA Network Management Private Enterprise Code", HFILL }
},
diff --git a/epan/dissectors/packet-snmp.c b/epan/dissectors/packet-snmp.c
index 1fad9344b2..d28392b179 100644
--- a/epan/dissectors/packet-snmp.c
+++ b/epan/dissectors/packet-snmp.c
@@ -62,7 +62,7 @@
#include <epan/conversation.h>
#include <epan/etypes.h>
#include <epan/prefs.h>
-#include <epan/sminmpec.h>
+#include <epan/addr_resolv.h>
#include <epan/next_tvb.h>
#include <epan/uat.h>
#include <epan/asn1.h>
@@ -3507,8 +3507,8 @@ void proto_register_snmp(void) {
"Engine ID Conformance", "snmp.engineid.conform", FT_BOOLEAN, 8,
TFS(&tfs_snmp_engineid_conform), F_SNMP_ENGINEID_CONFORM, "Engine ID RFC3411 Conformance", HFILL }},
{ &hf_snmp_engineid_enterprise, {
- "Engine Enterprise ID", "snmp.engineid.enterprise", FT_UINT32, BASE_DEC|BASE_EXT_STRING,
- &sminmpec_values_ext, 0, NULL, HFILL }},
+ "Engine Enterprise ID", "snmp.engineid.enterprise", FT_UINT32, BASE_ENTERPRISES,
+ STRINGS_ENTERPRISES, 0, NULL, HFILL }},
{ &hf_snmp_engineid_format, {
"Engine ID Format", "snmp.engineid.format", FT_UINT8, BASE_DEC,
VALS(snmp_engineid_format_vals), 0, NULL, HFILL }},
diff --git a/epan/enterprise-numbers b/epan/enterprise-numbers
deleted file mode 100644
index 42715470a8..0000000000
--- a/epan/enterprise-numbers
+++ /dev/null
@@ -1,200468 +0,0 @@
-PRIVATE ENTERPRISE NUMBERS
-
-(last updated 2017-06-23)
-
-SMI Network Management Private Enterprise Codes:
-
-Prefix: iso.org.dod.internet.private.enterprise (1.3.6.1.4.1)
-
-This file is http://www.iana.org/assignments/enterprise-numbers
-
-Decimal
-| Organization
-| | Contact
-| | | Email
-| | | |
-0
- Reserved
- Internet Assigned Numbers Authority
- iana&iana.org
-1
- NxNetworks
- Michael Kellen
- OID.Admin&NxNetworks.com
-2
- IBM (https://w3.ibm.com/standards)
- Glenn Daly
- gdaly&us.ibm.com
-3
- Carnegie Mellon
- Mark Poepping
- host-master&andrew.cmu.edu
-4
- Unix
- Keith Sklower
- sklower&okeeffe.berkeley.edu
-5
- ACC
- Art Berggreen
- art&SALT.ACC.COM
-6
- TWG
- John Lunny
- jlunny&eco.twg.com
-7
- CAYMAN
- Beth Miaoulis
- beth&cayman.com
-8
- PSI
- Marty Schoffstahl
- schoff&NISC.NYSER.NET
-9
- ciscoSystems
- Dave Jones
- davej&cisco.com
-10
- NSC
- John Lyman
- lyman&network.com
-11
- Hewlett-Packard
- Harry Lynch
- harry.lynch&hp.com
-12
- Epilogue
- Karl Auerbach
- karl&cavebear.com
-13
- U of Tennessee
- Jeffrey Case
- case&CS.UTK.EDU
-14
- BBN Technologies
- Stephen Milligan
- bbn-mibs&bbn.com, milligan&bbn.com
-15
- Xylogics, Inc.
- Jim Barnes
- barnes&xylogics.com
-16
- Timeplex
- Laura Bridge
- laura&uunet.UU.NET
-17
- Canstar
- Sanand Patel
- sanand&HUB.TORONTO.EDU
-18
- Wellfleet
- Sharon Chisholm
- schishol&nortelnetworks.com
-19
- TRW
- Eric Jung
- eric.jung&trw.com
-20
- MIT
- Jeffrey I. Shiller
- jis&mit.edu
-21
- EON
- Michael Waters
- ---none---
-22
- Fibronics
- Jakob Apelblat
- jakob&fibronics.co.il
-23
- Novell
- Steve Bostock
- steveb&novell.com
-24
- Spider Systems
- Peter Reid
- peter&spider.co.uk
-25
- NSFNET
- Hans-Werner Braun
- HWB&MCR.UMICH.EDU
-26
- Hughes LAN Systems
- Keith McCloghrie
- KZM&HLS.COM
-27
- Intergraph
- Guy Streeter
- guy&guy.bll.ingr.com
-28
- Interlan
- Bruce Taber
- taber&europa.InterLan.COM
-29
- Vitalink Communications
- Bill Anderson
- ---none---
-30
- Ulana
- Bill Anderson
- wda&MITRE-BEDFORD.ORG
-31
- NSWC
- Matthew J. Curry
- currymj&nswccd.navy.mil
-32
- Santa Cruz Operation
- Keith Reynolds
- keithr&SCO.COM
-33
- MRV Communications, In-Reach Product Division
- Faith Szydlo
- fszydlo&itouchcom.com
-34
- Cray
- Hunaid Engineer
- hunaid&OPUS.CRAY.COM
-35
- Nortel Networks
- Glenn Waters
- gww&nortelnetworks.com
-36
- DEC
- Ron Bhanukitsiri
- rbhank&DECVAX.DEC.COM
-37
- Touch
- Brad Benson
- ---none---
-38
- Network Research Corp.
- Bill Versteeg
- bvs&NCR.COM
-39
- Baylor College of Medicine
- Stan Barber
- SOB&BCM.TMC.EDU
-40
- NMFECC-LLNL
- Steven Hunter
- hunter&CCC.MFECC.LLNL.GOV
-41
- SRI
- David Wolfe
- ctabka&TSCA.ISTC.SRI.COM
-42
- Sun Microsystems
- Dennis Yaro
- yaro&SUN.COM
-43
- 3Com
- Jeremy Siegel
- jzs&NSD.3Com.COM
-44
- CMC
- Dave Preston
- ---none---
-45
- SynOptics
- Sharon Chisholm
- schishol&nortelnetworks.com
-46
- Cheyenne Software
- Reijane Huai
- sibal&CSD2.NYU.EDU
-47
- Prime Computer
- Mike Spina
- WIZARD%enr.prime.com&RELAY.CS.NET
-48
- MCNC/North Carolina
- Data Network Ken Whitfield
- ken&MCNC.ORG
-49
- Chippcom
- John Cook
- cook&chipcom.com
-50
- Optical Data Systems
- Josh Fielk
- ---none---
-51
- gated
- Sue Hares
- snmp&nexthop.com
-52
- Enterasys Networks Inc.
- Charles N. McTague
- cmctague&enterasys.com
-53
- Apollo Computers
- Jeffrey Buffun
- jbuffum&APOLLO.COM
-54
- DeskTalk Systems, Inc.
- David Kaufman
- ---none---
-55
- SSDS
- Ron Strich
- ---none---
-56
- Castle Rock Computing
- John Sancho
- ---none---
-57
- MIPS Computer Systems
- Charles Marker II
- marker&MIPS.COM
-58
- TGV, Inc.
- Ken Adelman
- Adelman&TGV.COM
-59
- Silicon Graphics, Inc.
- Michel Bourget
- snmp_admin&sgi.com
-60
- University of British Columbia
- Don McWilliam
- mcwillm&CC.UBC.CA
-61
- Merit
- Bill Norton
- wbn&MERIT.EDU
-62
- NetEdge
- Dave Minnich
- dave_minnich&netedge.com
-63
- Apple Computer, Inc.
- Gary LaVoy
- ianaoid&apple.com
-64
- Gandalf
- Henry Kaijak
- ---none---
-65
- Dartmouth College
- Scott Rea
- Scott.Rea&dartmouth.edu
-66
- David Systems
- Kathryn de Graaf
- degraaf&davidsys.com
-67
- Reuter
- Bob Zaniolo
- ---none---
-68
- Cornell
- Laurie Collinsworth
- ljc1&cornell.edu
-69
- Michael Sabo
- L. Michael Sabo
- michael.sabo&dbnetworks.com
-70
- Locus Computing Corp.
- Arthur Salazar
- lcc.arthur&SEAS.UCLA.EDU
-71
- NASA
- Philip Posey
- Philip.E.Posey&nasa.gov
-72
- Retix
- Alex Martin
- ---none---
-73
- Boeing
- John O'Meara
- mib_contact&bandit.ns.cs.boeing.com
-74
- AT&T
- Domain Administrator
- att-domains&att.com
-75
- Ungermann-Bass
- Didier Moretti
- ---none---
-76
- Digital Analysis Corporation
- Skip Koppenhaver
- stubby!skip&uunet.UU.NET
-77
- LAN Manager
- Doug Karl
- KARL-D&OSU-20.IRCC.OHIO-STATE.EDU
-78
- LogMatrix Inc (formerly 'OpenService Inc.')
- Greg Moberg
- techsupport&logmatrix.com
-79
- Fujitsu Services
- Steve Atherton
- steve.atherton&uk.fujitsu.com
-80
- Auspex Systems, Inc
- Marc D. Behr
- mbehr&auspex.com
-81
- Lannet Company
- Efrat Ramati
- ---none---
-82
- Network Computing Devices
- Dave Mackie
- lupine!djm&UUNET.UU.NET
-83
- Raycom Systems
- Bruce Willins
- ---none---
-84
- Pirelli Focom Ltd.
- Sam Lau
- ---none---
-85
- Datability Software Systems
- Larry Fischer
- lfischer&dss.com
-86
- Network Application Technology
- Jim Kinder
- jkinder&nat.com
-87
- Institute of Telematics, Karlsruhe Institute of Technology (KIT)
- Roland Bless
- roland.bless&kit.edu
-88
- New York University
- Jimmy Kyriannis
- jimmy.kyriannis&nyu.edu
-89
- RND
- Rina Nethaniel
- ---none---
-90
- InterCon Systems Corporation
- Amanda Walker
- AMANDA&INTERCON.COM
-91
- Coral Network Corporation
- Jason Perreault
- jason&coral.com
-92
- Webster Computer Corporation
- Robert R. Elz
- kre&munnari.oz.au
-93
- Frontier Technologies Corporation
- Prakash Ambegaonkar
- ---none---
-94
- Nokia
- Teemu Savolainen
- teemu.savolainen&nokia.com
-95
- Allen-Bradely Company
- Bill King
- abvax!calvin.icd.ab.com!wrk&uunet.UU.NET
-96
- CERN
- Frédéric Hemmer
- Frederic.Hemmer&cern.ch
-97
- Sigma Network Systems, Inc.
- Ken Virgile
- signet!ken&xylogics.COM
-98
- Emerging Technologies, Inc.
- Dennis E. Baasch
- etinc!dennis&uu.psi.com
-99
- SNMP Research
- Jeffrey Case
- case&SNMP.COM
-100
- Ohio State University
- Shamim Ahmed
- ahmed&nisca.ircc.ohio-state.edu
-101
- Ultra Network Technologies Julie
- Dmytryk
- Julie_Dmytryk.MKT&usun.ultra.com
-102
- Microcom
- Josh Kitchens
- jkitchens&microcom.tv
-103
- Lockheed Martin
- David Rageth
- david.a.rageth&lmco.com
-104
- Micro Technology
- Mike Erlinger
- mike&lexcel.com
-105
- Process Software Corporation
- Bernie Volz
- VOLZ&PROCESS.COM
-106
- EMC Data General Division
- Rene Fontaine
- fontaine_rene&emc.com
-107
- Bull Company
- Alain BOUCHET
- alain.bouchet&bull.net
-108
- Emulex Corporation
- Jeff Freeman
- ---none---
-109
- Warwick University Computing Services
- Israel Drori
- raanan&techunix.technion.ac.il
-110
- NetScout Systems, Inc. (formerly 'Network General Corporation')
- Ashwani Singhal
- ashwani.Singhal&netscout.com
-111
- Oracle
- John Priest
- john.priest&oracle.com
-112
- Control Data Corporation
- Nelluri L. Reddy
- reddy&uc.msc.umn.edu
-113
- Hughes Aircraft Company
- Keith McCloghrie
- KZM&HLS.COM
-114
- Synernetics, Inc.
- Jas Parmar
- jas&synnet.com
-115
- Mitre
- Bede McCall
- bede&mitre.org
-116
- Hitachi, Ltd.
- Hirotaka Usuda
- ---none---
-117
- Telebit
- Mark S. Lewis
- mlewis&telebit.com
-118
- Salomon Technology Services
- Paul Maurer II
- ---none---
-119
- NEC Corporation
- Yoshiyuki Akiyama
- kddlab!ccs.mt.nec.co.jp!y-akiyam&uunet.uu.net
-120
- Fibermux
- Michael Sung
- msung&ccrelay.fibermux.com
-121
- FTP Software Inc.
- Stev Knowles
- stev&vax.ftp.com
-122
- Sony
- Takashi Hagiwara
- Hagiwara&Sm.Sony.Co.Jp
-123
- Newbridge Networks Corporation
- James Watt
- james&newbridge.com
-124
- Racal-Datacom
- Frank DaCosta
- frank_dacosta&usa.racal.com
-125
- CR SYSTEMS
- Soren H. Sorensen
- ---none---
-126
- DSET Corporation
- Dan Shia
- dset!shia&uunet.UU.NET
-127
- Computone
- Nick Hennenfent
- nick&computone.com
-128
- Tektronix, Inc.
- Dennis Thomas
- dennist&tektronix.TEK.COM
-129
- Interactive Systems Corporation
- Steve Alexander
- stevea&i88.isc.com
-130
- Banyan Systems Inc.
- Deepak Taneja
- eepak=Taneja%Eng%Banyan&Thing.banyan.com
-131
- Sintrom Datanet Limited
-
- ---none---
-132
- Bell Canada
- Mark Fabbi
- markf&gpu.utcs.utoronto.ca
-133
- Olicom Enterprise Products Inc.
- Claus Tondering
- cto&olicom.dk
-134
- Rice University
- Catherine Foulston
- cathyf&rice.edu
-135
- OnStream Networks
- Annie Dang
- annie&onstream.com
-136
- Concurrent Computer Corporation
- Pablo Ongini
- pablo.ongini&ccur.com
-137
- Basser
- Paul O'Donnell
- paulod&cs.su.oz.au
-138
- Luxcom
-
- ---none---
-139
- Artel
- Jon Ziegler
- Ziegler&Artel.com
-140
- Independence Technologies, Inc.(ITI)
- Gerard Berthet
- gerard&indetech.com
-141
- NetScout Systems, Inc. (formerly 'Frontier Software Development')
- Ashwani Singhal
- Ashwani.Singhal&netscout.com
-142
- Digital Computer Limited
- Osamu Fujiki
- ---none---
-143
- Eyring, Inc.
- Ron Holt
- ron&Eyring.COM
-144
- Case Communications
- Andrew Saoulis
- andys&casecomms.com
-145
- Penril DataComm, Inc.
- Keith Hogan
- keith%penril&uunet.uu.net
-146
- American Airlines, Inc.
- Dan Glass
- dan.glass&aa.com
-147
- Sequent Computer Systems
- Louis Fernandez
- lfernandez&sequent.com
-148
- Bellcore
- Kaj Tesink
- kaj&nvuxr.cc.bellcore.com
-149
- Concord Communications
- Terry Stader
- tstader&concord.com
-150
- University of Washington
- Richard J. Letts
- netops&uw.edu
-151
- Develcon
- Sheri Mayhew
- zaphod!sherim&herald.usask.ca
-152
- Solarix Systems
- Paul Afshar
- paul&solar1.portal.com
-153
- Unifi Communications Corp.
- Yigal Hochberg
- yigal&unifi.com
-154
- Roadnet
- Dale Shelton
- ---none---
-155
- Network Systems Corp.
- Nadya K. El-Afandi
- nadya&khara.network.com
-156
- ENE (European Network Engineering)
- Peter Cox
- ---none---
-157
- Dansk Data Elektronik A/S
- Per Bech Hansen
- pbh&dde.dk
-158
- Morningstar, Inc.
- Ryan Johnson
- ryan.johnson&morningstar.com
-159
- Dupont EOP
- Oscar Rodriguez
- ---none---
-160
- Legato Systems, Inc.
- Jon Kepecs
- kepecs&Legato.COM
-161
- Motorola
- Joe Schaeffer
- internic&motorola.com
-162
- European Space Agency (ESA)
- ESANIC
- esanic&esa.int
-163
- Aethis sa/nv
- Thomas Grootaers
- Thomas.Grootaers&aethis.be
-164
- Rad Data Communications Ltd.
- Raphael Drai
- raphael_d&rad.com
-165
- OfficeNet, Inc.
- Paul Singh
- psingh&OfficeNetInc.com
-166
- Shiva Corporation
- John Shriver
- jas&shiva.com
-167
- Fujikura America
- Debbie Reed
- ---none---
-168
- Xlnt Designs INC (XDI)
- Mike Anello
- mike&xlnt.com
-169
- Tandem Computers
- Rex Davis
- ---none---
-170
- BICC
- David A. Brown
- fzbicdb&uk.ac.ucl
-171
- D-Link Systems, Inc.
- Henry P. Nagai
- ---none---
-172
- AMP, Inc.
- Rick Downs
- ---none---
-173
- Netlink
- Mauro Zallocco
- ---none---
-174
- C. Itoh Electronics
- Larry Davis
- ---none---
-175
- Sumitomo Electric Industries (SEI)
- Kent Tsuno
- tsuno&sumitomo.com
-176
- DHL Systems, Inc.
- Veselin Terzic
- vterzic&systems.dhl.com
-177
- Network Equipment Technologies
- John Hartsell
- hartsell&net.com
-178
- APTEC Computer Systems
- Larry Burton
- ssds!larryb&uunet.UU.NET
-179
- Schneider & Koch & Co, Datensysteme GmbH
- Thomas Ruf
- tom&rsp.de
-180
- Hill Air Force Base
- Russell G. Wilson
- rwilson&oodis01.af.mil
-181
- Kentrox
- Engineering MIB Administrator
- snmp&kentrox.com
-182
- Japan Radio Co.
- Nagayuki Kojima
- nkojima&lab.nihonmusen.co.jp
-183
- Versitron
- Matt Harris
- ---none---
-184
- Telecommunication Systems
- Hugh Lockhart
- ---none---
-185
- Interphase
- Peter S. Wang
- pwang&iphase.com
-186
- Toshiba Corporation
- Mike Asagami
- toshiba&mothra.nts.uci.edu
-187
- Clearpoint Research Corp.
- Frank Kastenholz
- kasten&asherah.clearpoint.com
-188
- Ascom
- Hector Davie
- oid-admin&ascom.ch
-189
- Fujitsu America
- Deryk Bukowski
- dbukowski&fujitsu.com
-190
- NovaQuest InfoSystems
- Dale Cabell
- dalec&novaquest.com
-191
- NCR
- Tracye Lord
- tracye.lord&ncr.com
-192
- Dr. Materna GmbH
- Torsten Beyer
- tb&Materna.de
-193
- Ericsson AB
- David Partain
- david.partain&ericsson.com
-194
- Metaphor Computer Systems
- Paul Rodwick
- ---none---
-195
- Patriot Partners
- Paul Rodwick
- ---none---
-196
- The Software Group Limited (TSG)
- Ragnar Paulson
- tsgfred!ragnar&uunet.UU.NET
-197
- Kalpana, Inc.
- Anil Bhavnani
- ---none---
-198
- University of Waterloo
- Network Services
- ns-tech&ist.uwaterloo.ca
-199
- CCL/ITRI
- Ming-Perng Chen
- N100CMP0%TWNITRI1.BITNET&CUNYVM.CUNY.EDU
-200
- Coeur Postel
- Professor Kynikos
- Special Consultant
-201
- Mitsubish Cable Industries, Ltd.
- Masahiko Hori
- hori&mitsubishi-cable.co.jp
-202
- SMC
- Lance Sprung
- ---none---
-203
- Crescendo Communication, Inc.
- Prem Jain
- prem&cres.com
-204
- Goodall Software Engineering
- Doug Goodall
- goodall&crl.com
-205
- Intecom
- Patrick Deloulay
- pdelou&intecom.com
-206
- Victoria University of Wellington
- Laurie Ellims
- laurie.ellims&vuw.ac.nz
-207
- Allied Telesis, Inc.
- Scott Holley
- SCOTT_CLINTON_HOLLEY&cup.portal.com
-208
- Cray Communications A/S
- Hartvig Ekner
- hj&craycom.dk
-209
- Protools
- Glen Arp
- ---none---
-210
- NIPPON TELEGRAPH AND TELEPHONE CORPORATION
- Tatsuya Miyagi
- netadmin&ml.hco.ntt.co.jp
-211
- Fujitsu Limited
- Aki Yuuko
- aki.yuko&jp.fujitsu.com
-212
- Network Peripherals Inc.
- Creighton Chong
- cchong&fastnet.com
-213
- Netronix, Inc.
- Jacques Roth
- ---none---
-214
- University of Wisconsin Madison
- Keith Hazelton
- hazelton&doit.wisc.edu
-215
- NetWorth, Inc.
- Craig Scott
- ---none---
-216
- Tandberg Data A/S
- Harald Hoeg
- haho%huldra.uucp&nac.no
-217
- Technically Elite Concepts, Inc.
- Russell S. Dietz
- Russell_Dietz&Mcimail.com
-218
- Labtam Australia Pty. Ltd.
- Michael Podhorodecki
- michael&labtam.oz.au
-219
- Republic Telcom Systems, Inc.
- Steve Harris
- rtsc!harris&boulder.Colorado.edu
-220
- ADI Systems, Inc.
- Paul Liu
- ---none---
-221
- Microwave Bypass Systems, Inc.
- Tad Artis
- ---none---
-222
- Pyramid Technology Corp.
- Richard Rein
- rein&pyramid.com
-223
- Unisys_Corp
- Grae Crofoot
- grae.crofoot&unisys.com
-224
- LANOPTICS LTD., Israel
- Israel Drori
- raanan&techunix.technion.ac.il
-225
- NKK Corporation
- J. Yoshida
- ---none---
-226
- CODIMA Technologies Ltd
- Dave Barratt
- dbarratt&codimatech.com
-227
- Acals
- Patrick Cheng
- pcheng&dill.ind.trw.com
-228
- ASTEC, Inc.
- Hiroshi Fujii
- fujii&astec.co.jp
-229
- Delmarva Power
- John K. Scoggin, Jr.
- scoggin&delmarva.com
-230
- Telematics International, Inc.
- Kevin Smith
- ---none---
-231
- Fujitsu Technology Solutions GmbH (formerly 'Fujitsu Siemens Computers')
- Detlef Rothe
- detlef.rothe&ts.fujitsu.com
-232
- Compaq
-
- ---none---
-233
- NetManage, Inc.
- William Dunn
- netmanage&cup.portal.com
-234
- NC State University
- NC State Information Technology Division
- admin&ncsu.edu
-235
- Empirical Tools and Technologies
- Karl Auerbach
- karl&empirical.com
-236
- Samsung Electronics Co., LTD.
- Won Jong, Yang
- wjyang&samsung.com
-237
- Takaoka Electric Mfg. Co., Ltd.
- Hidekazu Hagiwara
- hagiwara&takaoka.takaoka-electric.co.jp
-238
- NxNetworks
- Michael Kellen
- OID.Admin&NxNetworks.com
-239
- WINDATA
- Bob Rosenbaum
- ---none---
-240
- RC International A/S
- Carl H. Dreyer
- chd&rci.dk
-241
- Netexp Research
- Henk Boetzkes
- into henk&boetzkes.org
-242
- Internode Systems Pty Ltd
- Simon Hackett
- simon&ucs.adelaide.edu.au
-243
- netCS Informationstechnik GmbH
- Oliver Korfmacher
- okorf&bunt.netcs.com
-244
- Lantronix
- Greg Wheeler
- gregw&lantronix.com
-245
- Avatar Consultants
- Kory Hamzeh
- ames!avatar.com!kory&harvard.harvard.edu
-246
- Furukawa Electoric Co. Ltd.
- Shoji Fukutomi
- kddlab!polo.furukawa.co.jp!fuku&uunet.UU.NET
-247
- ND SatCom - Gesellschaft für SatellitenkommunikationssystemembH
- Rüdiger Osten
- ruediger.osten&ndsatcom.de
-248
- Richard Hirschmann GmbH & Co.
- Heinz Nisi
- mia&intsun.rus.uni-stuttgart.de
-249
- G2R Inc.
- Khalid Hireche
- ---none---
-250
- University of Michigan
- Robert Klingsten
- robkli&umich.edu
-251
- Netcomm, Ltd.
- W.R. Maynard-Smith
- ---none---
-252
- Sable Technology Corporation
- Rodney Thayer
- rodney&sabletech.com
-253
- Xerox
- Fonda Lix Pallone
- Fonda_Lix_Pallone.PARC&Xerox.Com
-254
- Conware Computer Consulting GmbH
- Michael Sapich
- sapich&conware.de
-255
- Compatible Systems Corp.
- John Gawf
- gawf&compatible.com
-256
- Scitec Communications Systems Ltd.
- Stephen Lewis
- ---none---
-257
- Transarc Corporation
- Pat Barron
- Pat_Barron&TRANSARC.COM
-258
- Matsushita Electric Industrial Co., Ltd.
- Nob Mizuno
- mizuno&isl.mei.co.jp
-259
- ACCTON Technology
- Don Rooney
- ---none---
-260
- Star-Tek, Inc.
- Carl Madison
- carl&startek.com
-261
- ADC Codenoll Technology Corporation
- Dutt Bulusu and Michael Coden
- bulusud&worldnet.att.net
-262
- Formation, Inc.
- Carl Marcinik
- ---none---
-263
- Seiko Instruments, Inc.
- (SII)
- Yasuyoshi Watanabe ---none---
-264
- RCE (Reseaux de Communication d'Entreprise S.A.)
- Etienne Baudras-Chardigny
- ---none---
-265
- Xenocom, Inc.
- Sean Welch
- welch&raven.ulowell.edu
-266
- Nexans Deutschland Industries
- Hubert Theissen
- hubert.theissen&nexans.com
-267
- Systech Computer Corporation
- Eric Lighthart
- eric&systech.com
-268
- Visual
- Brian O'Shea
- bos&visual.com
-269
- CSC Airline Solutions Denmark A/S
- Kasper Ibsen
- kibsen&csc.com
-270
- Zenith Electronics Corporation
- David Lin
- ---none---
-271
- TELECOM FINLAND
- Petri Jokela
- ---none---
-272
- BinTec Communications GmbH
- Elisabeth Hertlein
- lies&BinTec.DE
-273
- EUnet Germany
- Marc Sheldon
- ms&Germany.EU.net
-274
- PictureTel Corporation
- Oliver Jones
- oj&pictel.com
-275
- Michigan State University
- DNS Technical Support
- dnstech&msu.edu
-276
- GTE Government Systems - Network Management Organization
- Grant Gifford
- gifford_grant&nmo.gtegsc.com
-277
- Cascade Communications Corp.
- Chikong Shue
- alpo!chi&uunet.uu.net
-278
- APRESIA Systems, Ltd. (formerly 'Hitachi Cable, Ltd.')
- SUGAWARA, Shingo
- shingo.sugawara.gm&hitachi-metals.com
-279
- Olivetti
- Marco Framba
- framba&orc.olivetti.com
-280
- Vitacom Corporation
- Parag Rastogi
- parag&cup.portal.com
-281
- INMOS
- Graham Hudspith
- gwh&inmos.co.uk
-282
- AIC Systems Laboratories Ltd.
- Glenn Mansfield
- glenn&aic.co.jp
-283
- Cameo Communications, Inc.
- Alan Brind
- ---none---
-284
- Diab Data AB
- Mats Lindstrom
- mli&diab.se
-285
- Olicom A/S
- Lars Povlsen
- krus&olicom.dk
-286
- Digital-Kienzle Computersystems
- Hans Jurgen Dorr
- ---none---
-287
- CSELT(Centro Studi E Laboratori Telecomunicazioni)
- Paolo Coppo
- coppo&cz8700.cselt.stet.it
-288
- Electronic Data Systems
- EDS NNAM
- hostmaster&eds.com
-289
- Brocade Communications Systems, Inc. (formerly 'McData Corporation')
- Scott Kipp
- skipp&brocade.com
-290
- Harris Corporation
- Matthew Porath
- mporath&harris.com
-291
- Technology Dynamics, Inc.
- Chip Standifer
- TDYNAMICS&MCIMAIL.COM
-292
- DATAHOUSE Information Systems Ltd.
- Kim Le
- ---none---
-293
- Teltrend (NZ) Limited
- Tony van der Peet
- Tony.vanderPeet&teltrend.co.nz
-294
- Texas Instruments
- Blair Sanders
- Blair_Sanders&mcimail.com
-295
- PlainTree Systems Inc.
- Paul Chefurka
- chefurka&plntree.UUCP
-296
- Hedemann Software Development
- Stefan Hedemann
- 100015.2504&compuserve.com
-297
- Fuji Xerox Co., Ltd.
- Hitoshi Kamata
- hitoshi.kamata&fujixerox.co.jp
-298
- Asante Technology
- Hsiang Ming Ma
- ---none---
-299
- Stanford University
- Bruce Vincent
- bvincent&stanford.edu
-300
- Digital Link
- Thinh Nguyen
- thinh_nguyen&dl.com
-301
- Raylan Corporation
- Mark S. Lewis
- mlewis&telebit.com
-302
- Commscraft
- Len Rochford
- len.rochford&commscraft.com
-303
- Hughes Communications, Inc.
- David Whitefield
- David.Whitefield&hughes.com
-304
- Farallon Computing, Inc.
- Sam Roberts
- sroberts&farallon.com
-305
- GE Information Services
- Steve Bush
- sfb&ncoast.org
-306
- Gambit Computer Communications
- Zohar Seigal
- ---none---
-307
- Livingston Enterprises, Inc.
- Steve Willens
- steve&livingston.com
-308
- Star Technologies
- Jim Miner
- miner&star.com
-309
- Micronics Computers Inc.
- Darren Croke
- dc&micronics.com
-310
- Basis, Inc.
- Heidi Stettner
- heidi&mtxinu.COM
-311
- Microsoft
- Paul Russell
- paulr&microsoft.com
-312
- US West Advance Technologies
- Donna Hopkins
- dmhopki&uswat.uswest.com
-313
- University College London
- Tom Lodge
- t.lodge&cs.ucl.ac.uk
-314
- Eastman Kodak Company
- W. James Colosky
- w.colosky&kodak.com
-315
- Network Resources Corporation
- Kathy Weninger
- ---none---
-316
- Atlas Telecom
- Bruce Kropp
- ktxc8!bruce&uunet.UU.NET
-317
- Bridgeway
- Umberto Vizcaino
- ---none---
-318
- American Power Conversion Corp.
- Peter C. Yoest
- apc!yoest&uunet.uu.net
-319
- DOE Atmospheric Radiation Measurement Project
- Matt Macduff
- matt.macduff&pnl.gov
-320
- VerSteeg CodeWorks
- Bill Versteeg
- bvs&NCR.COM
-321
- Verilink Corp
- Bill Versteeg
- bvs&NCR.COM
-322
- Sybus Corportation
- Mark T. Dauscher
- mdauscher&sybus.com
-323
- Tekelec
- Sidney Antommarchi
- santomm2&tekelec.com
-324
- NASA Ames Research Center
- Andrew Kjell Nielsen
- andrew.nielsen&arc.nasa.gov
-325
- Simon Fraser University
- Robert Urquhart
- quipu&sfu.ca
-326
- Fore Systems, Inc.
- Eric Cooper
- ecc&fore.com
-327
- Centrum Communications, Inc.
- Vince Liu
- ---none---
-328
- NeXT Computer, Inc.
- Lennart Lovstrand
- Lennart_Lovstrand&NeXT.COM
-329
- Netcore, Inc.
- Skip Morton
- ---none---
-330
- Northwest Digital Systems
- Brian Dockter
- ---none---
-331
- Andrew Corporation
- Ted Tran
- ---none---
-332
- Digi International
- Aaron Kurland
- aaronk&digi.com
-333
- Computer Network Technology
- Mike Morandi
- mike_morandi&cnt.com
-334
- Lotus Development Corp.
- Bill
- Flanagan bflanagan&lotus.com
-335
- MICOM Communication Corporation
- Donna Beatty
- SYSAD&prime.micom.com
-336
- ASCII Corporation
- Toshiharu Ohno
- tony-o&ascii.co.jp
-337
- PUREDATA Research
- Tony Baxter
- tony&puredata.com
-338
- NTT DATA
- Yasuhiro Kohata
- kohata&rd.nttdata.jp
-339
- Siemens Industry Inc.
- Bala Marimuthu
- marimuthu.bala&siemens.com
-340
- Kendall Square Research (KSR)
- Dave Hudson
- tdh&uunet.UU.NET
-341
- ORNL
- Gary Haney
- hny&ornl.gov
-342
- Network Innovations, Inc.
- Pete Grillo
- pete&ni2.com
-343
- Intel Corporation
- Adam Kaminski
- adam.kaminski&intel.com
-344
- Compuware Corporation
- Ling Thio
- ling_thio&compuware.com
-345
- Epson Research Center
- Richard Schneider
- rschneid&epson.com
-346
- Fibernet
- George Sandoval
- ---none---
-347
- Dot Hill Systems
- Gary Dunlap
- gdunlap&dothill.com
-348
- American Express Company
- Fred Gibbins
- oidadmin&aexp.com
-349
- Compu-Shack
- Tomas Vocetka
- OPLER%CSEARN.bitnet&CUNYVM.CUNY.EDU
-350
- Parallan Computer, Inc.
- Charles Dulin
- ---none---
-351
- Stratacom
- Clyde Iwamoto
- cki&strata.com
-352
- Open Networks Engineering, Inc.
- Russ Blaesing
- rrb&one.com
-353
- ATM Forum
- Keith McCloghrie
- KZM&HLS.COM
-354
- SSD Management, Inc.
- Bill Rose
- ---none---
-355
- Automated Network Management, Inc.
- Carl Vanderbeek
- ---none---
-356
- Magnalink Communications Corporation
- David E. Kaufman
- --none
-357
- Kasten Chase Applied Research
- Garry McCracken
- pdxgmcc&rvax.kasten.on.ca
-358
- Skyline Technology, Inc.
- Don Weir
- ---none---
-359
- Nu-Mega Technologies, Inc.
- Patrick Klos
- patrickk&numega.com
-360
- Morgan Stanley & Co. International PLC
- Jake Scott (PEN Managers)
- oids&morganstanley.com
-361
- Integrated Business Network
- Michael Bell
- ---none---
-362
- L & N Technologies, Ltd.
- Steve Loring
- ---none---
-363
- Cincinnati Bell Information Systems, Inc.
- Deron Meranda
- dmeranda&cbis.COM
-364
- RAMA Technologies
- Chris Avis
- c.avis&oscomwa.com.au
-365
- MICROGNOSIS
- Paul Andon
- pandon&micrognosis.co.uk
-366
- Datapoint Corporation
- Lee Ziegenhals
- lcz&sat.datapoint.com
-367
- RICOH Co. Ltd.
- Toshio Watanbe
- watanabe&godzilla.rsc.spdd.ricoh.co.jp
-368
- Axis Communications AB
- Martin Gren
- martin&axis.se
-369
- Pacer Software
- Wayne Tackabury
- wft&pacersoft.com
-370
- 3COM/Axon
- Robin Iddon
- Robin_Iddon&3mail.3com.com
-371
- Alebra Technologies, Inc.
- Harold Stevenson
- harold.stevenson&alebra.com
-372
- GSI
- Etienne Demailly
- etienne.demailly&gsi.fr
-373
- Tatung Co., Ltd.
- Chih-Yi Chen
- TCCISM1%TWNTTIT.BITNET&pucc.Princeton.EDU
-374
- DIS Research Ltd.
- Ray Compton
- rayc&command.com
-375
- Quotron Systems, Inc.
- Richard P. Stubbs
- richard&atd.quotron.com
-376
- Dassault Electronique
- Olivier J. Caleff
- caleff&dassault-elec.fr
-377
- Corollary, Inc.
- James L. Gula
- gula&corollary.com
-378
- SEEL, Ltd.
- Ken Ritchie
- ---none---
-379
- Lexcel
- Mike Erlinger
- mike&lexcel.com
-380
- pier64
- Bill Parducci
- bill&pier64.com
-381
- OST
- A. Pele
- ---none---
-382
- Megadata Pty Ltd.
- Andrew McRae
- andrew&megadata.mega.oz.au
-383
- LLNL Livermore Computer Center
- Dan Nessett
- nessett&ocfmail.ocf.llnl.gov
-384
- Dynatech Communications
- Graham Welling
- s8000!gcw&uunet.uu.net
-385
- Symplex Communications Corp.
- Cyrus Azar
- ---none---
-386
- Tribe Computer Works
- Ken Fujimoto
- fuji&tribe.com
-387
- Taligent, Inc.
- Lorenzo Aguilar
- lorenzo&taligent.com
-388
- Symbol Technologies, Inc.
- Carl Mower
- cmower&symbol.com
-389
- Lancert
- Mark Hankin
- ---none---
-390
- Alantec
- Paul V. Fries
- pvf&alantec.com
-391
- Ridgeback Solutions
- Errol Ginsberg
- bacchus!zulu!errol&uu2.psi.com
-392
- Metrix, Inc.
- D. Venkatrangan
- venkat&metrix.com
-393
- Symantec Corporation
- Paul Sangster
- Paul_Sangster&Symantec.com
-394
- NRL Communication Systems Branch
- R.K. Nair
- nair&itd.nrl.navy.mil
-395
- I.D.E. Corporation
- Rob Spade
- ---none---
-396
- Panasonic Electric Works Co., Ltd.
- Tetsuya Shimomura
- shimomura.tetsuya&panasonic-denko.co.jp
-397
- MegaPAC
- Ian George
- ---none---
-398
- Tyco Electronics
- Dave Atkinson
- dave.atkinson&tycoelectronics.com
-399
- Hitachi Computer Products (America), Inc.
- Masha Golosovker
- masha&hicomb.hi.com
-400
- METEO FRANCE
- Remy Giraud
- Remy.Giraud&meteo.fr
-401
- PRC Inc.
- Jim Noble
- noble_jim&prc.com
-402
- Wal-Mart Stores, Inc.
- Wal-Mart Webmaster
- webmaster&wal-mart.com
-403
- Nissin Electric Company, Ltd.
- Aki Komatsuzaki
- (408) 737-0274
-404
- Distributed Support Information Standard
- Mike Migliano
- mike&uwm.edu
-405
- SMDS Interest Group (SIG)
- Elysia C. Tan
- ecmt1&sword.bellcore.com
-406
- SolCom Systems Ltd.
- Hugh Evans
- 0506 873855
-407
- Bell Atlantic
- Colin deSa
- socrates!bm5ld15&bagout.BELL-ATL.COM
-408
- Advanced Multiuser Technologies Corporation
-
- ---none---
-409
- Mitsubishi Electric Corporation
- Yoshitaka Ogawa
- ogawa&nkai.cow.melco.co.jp
-410
- C.O.L. Systems, Inc.
- Frank Castellucci
- (914) 277-4312
-411
- University of Auckland
- Nevil Brownlee
- n.brownlee&aukuni.ac.nz
-412
- Distributed Management Task Force (DMTF)
- Raymond C. Williams
- Raymond_Williams&tivoli.com
-413
- Klever Computers, Inc.Tom Su
-
- kci&netcom.com
-414
- Amdahl Corporation
- Steve Young
- sy&uts.admahl.com
-415
- JTEC Pty, Ltd.
- Edward Groenendaal
- eddyg&jtec.com.au
-416
- Matra Communcation
- Hong-Loc Nguyen
- (33.1) 34.60.85.25
-417
- HAL Computer Systems
- Michael A. Petonic
- petonic&hal.com
-418
- Lawrence Berkeley Laboratory
- Russ Wright
- wright&lbl.gov
-419
- Dale Computer Corporation
- Dean Craven
- 1-800-336-7483
-420
- University of Tuebingen
- Heinrich Abele
- heinrich.abele&uni-tuebingen.de
-421
- Bytex Corporation
- Mary Ann Burt
- bytex!ws054!maryann&uunet.UU.NET
-422
- Cogwheel, Inc.
- Brian Ellis
- bri&Cogwheel.COM
-423
- Lanwan Technologies
- Thomas Liu
- (408) 986-8899
-424
- Thomas-Conrad Corporation
- Karen Boyd
- (512)-836-1935
-425
- TxPort
- Bill VerSteeg
- bvs&ver.com
-426
- Compex, Inc.
- Andrew Corlett
- BDA&ORION.OAC.UCI.EDU
-427
- Evergreen Systems, Inc.
- Bill Grace
- (415) 897-8888
-428
- HNV, Inc.
- James R. Simons
- jrs&denver.ssds.COM
-429
- UTStarcom Incorporated
- Bill Vroman
- bill.vroman&utstar.com
-430
- Canada Post Corporation
- Walter Brown
- +1 613 722-8843
-431
- Open Systems Solutions, Inc.
- David Ko
- davidk&ossi.com
-432
- Toronto Stock Exchange
- Paul Kwan
- (416) 947-4284
-433
- Mamakos\TransSys Consulting
- Louis A. Mamakos
- louie&transsys.com
-434
- EICON
- Vartan Narikian
- vartan&eicon.qc.ca
-435
- Jupiter Systems
- Russell Leefer
- rml&jupiter.com
-436
- SSTI
- Philip Calas
- (33) 61 44 19 51
-437
- Grand Junction Networks
- Randy Ryals
- randyr&grandjunction.com
-438
- Pegasus Solutions, Inc.
- John Beckner
- sysadm&pegs.com
-439
- Edward D. Jones and Company
- John Caruso
- (314) 851-3422
-440
- Amnet, Inc.
- Richard Mak
- mak&amnet.COM
-441
- Chase Research
- Kevin Gage
- ---none---
-442
- BMC Software
- Eugene Golovinsky
- egolovin&bmc.com
-443
- Gateway Communications, Inc.
- Ed Fudurich
- ---none---
-444
- Peregrine Systems
- Eric Olinger
- eric&peregrine.com
-445
- Daewoo Telecom
- SeeYoung Oh
- oco&scorpio.dwt.co.kr
-446
- Norwegian Telecom Research
- Paul Hoff
- paalh&brage.nta.no
-447
- WilTel
- David Oldham
- david.oldham&wiltel.com
-448
- Ericsson-Camtec
- Satish Popat
- ---none---
-449
- Codex
- Thomas McGinty
- ---none---
-450
- Basis
- Heidi Stettner
- heidi&mtxinu.COM
-451
- AGE Logic
- Syd Logan
- syd&age.com
-452
- INDE Electronics
- Gordon Day
- gday&inde.ubc.ca
-453
- Isode Limited
- Steve Kille
- Steve.Kille&isode.com
-454
- J.I. Case
- Mike Oswald
- mike&helios.uwsp.edu
-455
- Trillium
- Jeff Lawrence
- j_lawrence&trillium.com
-456
- Bacchus Inc.
- Errol Ginsberg
- bacchus!zulu!errol&uu2.psi.com
-457
- MCC
- Doug Rosenthal
- rosenthal&mcc.com
-458
- Stratus Computer
-
- ---none---
-459
- Quotron
- Richard P. Stubbs
- richard&atd.quotron.com
-460
- Beame & Whiteside
- Carl Beame
- beame&ns.bws.com
-461
- Cellular Technical Services
- Keith Gregoire
- keith&celtech.com
-462
- Shore Microsystems, Inc.
- Gordon Elam
- (309) 229-3009
-463
- Telecommunications Techniques Corp.
- Brenda Hawkins
- hawkinb&ttc.com
-464
- DNPAP (Technical University Delft)
- Jan van Oorschot
- bJan.vOorschot&dnpap.et.tudelft.nl
-465
- Plexcom, Inc.
- Bruce Miller
- (805) 522-3333
-466
- Tylink
- Stavros Mohlulis
- (508) 285-0033
-467
- Brookhaven Laboratory
- John Bigrow
- big&bnl.gov
-468
- Computer Communication Systems
- Gerard Laborde
- Gerard.Laborde&sp1.y-net.fr
-469
- Norand Corporation
- Joseph Dusio
- dusioj&norand.com
-470
- MUX-LAP
- Philippe Labrosse
- 514-735-2741
-471
- Premisys Communications, Inc
- Harley Frazee
- harley&premisys.com
-472
- Bell South Telecommunications
- Johnny Walker
- 205-988-7105
-473
- J. Stainsbury PLC
- Steve Parker
- 44-71-921-7550
-474
- Manage Operations
- Jim Corrigan
- corrigan&ManageOperations.net
-475
- Wandel and Goltermann Technologies
-
- walter&wg.com
-476
- Vertiv (formerly 'Emerson Computer Power')
- Phil Ulrich
- Phil.Ulrich&vertivco.com
-477
- Network Software Associates
- Leslie Santiago
- SANTIAGL&netsoft.com
-478
- Procter and Gamble
- Peter Marshall
- 513-983-1100x5988
-479
- Meridian Technology Corporation
- Kenneth B. Denson
- kdenson&magic.meridiantc.com
-480
- QMS, Inc.
- Bill Lott
- lott&imagen.com
-481
- Network ExpressTom Jarema
-
- ITOH&MSEN.COM
-482
- LANcity Corporation
- Pam Yassini
- pam&lancity.com
-483
- Dayna Communications, Inc.
- Sanchaita Datta
- datta&signus.utah.edu
-484
- kn-X Ltd.
- Sam Lau
- 44 943 467007
-485
- Sync Research, Inc.
- Alan Bartky
- (714) 588-2070
-486
- PremNet
- Ken Huang
- HuangK&rimail.interlan.com
-487
- SIAC
- Peter Ripp
- (212) 383-9061
-488
- New York Stock Exchange
- Peter Ripp
- (212) 383-9061
-489
- American Stock Exchange
- Peter Ripp
- (212) 383-9061
-490
- FCR Software, Inc.
- Brad Parker
- brad&fcr.com
-491
- National Medical Care, Inc.
- Robert Phelan
- (617) 466-9850
-492
- DCS Dialog Communication Systems Aktiengesellschaft Berlin
- Frank Rogall
- fr&dcs.de
-493
- NorTele
- Bjorn Kvile
- +47 2 48 89 90
-494
- Madge Networks, Inc.
- Duncan Greatwood
- dgreatwo&madge.mhs.compuserve.com
-495
- Memotec Communications
- Michel Turcott
- turcotm&memotec.com
-496
- ON
- Nick Hennenfent
- nicholas&cton.com
-497
- Leap Technology, Inc.
- George Economou
- ---none---
-498
- General DataComm, Inc.
- William Meltzer
- meltzer&gdc.com
-499
- ACE Communications, Ltd.
- Danny On
- 972-3-570-1423
-500
- ADP
- Barry Miracle
- barry_miracle&adp.com
-501
- European Agency of Digital Trust (formerly 'Programa SPRITEL')
- Julian Inza
- julian.inza&eadtrust.eu
-502
- Adacom
- Aial Haorch
- 972-4-899-899
-503
- Metrodata Ltd
- Nick Brown
- 100022.767&compuserve.com
-504
- Ellemtel Telecommunication Systems Laboratories
- Richard G Bruvik
- Richard.Bruvik&eua.ericsson.se
-505
- Arizona Public Service
- Duane Booher
- DBOOHER&APSC.COM
-506
- NETWIZ, Ltd.,
- Emanuel Wind
- eumzvir&techunix.technion.ac.il
-507
- Science and Engineering Research Council (SERC)
- Paul Kummer
- P.Kummer&daresbury.ac.uk
-508
- 508 Credit Suisse First Boston - Watcher
- Thomas P Wood
- thomas.wood&csfb.com
-509
- Hadax Electronics Inc.
- Marian Kramarczyk
- 73477.2731&compuserve.com
-510
- VTKK
- Markku Lamminluoto
- lamminluoto&vtkes1.vtkk.fi
-511
- North Hills Israel Ltd.
- Carmi Cohen
- carmi&north.hellnet.org
-512
- TECSIEL
- R. Burlon
- sr&teculx.tecsiel.it
-513
- Bayerische Motoren Werke (BMW) AG
- Josef Albrecht
- Josef.Albrecht&bmw.de
-514
- CNET Technologies
- Nelson Su
- 408-954-8000
-515
- MCI
- Jim Potter
- jim.potter&mci.com
-516
- Human Engineering AG (HEAG)
- Urs Brunner
- ubrunner&clients.switch.ch
-517
- FileNet Corporation
- Joe Raby
- raby&filenet.com
-518
- Kongsberg Gruppen ASA (formerly 'NFT-Ericsson')
- Helge Andre Sundt
- helge.sundt&kongsberg.com
-519
- Dun & Bradstreet
- Mark Sugarman
- sugarmanm&dnb.com
-520
- Intercomputer Communications
- Brian Kean
- 513-745-0500x244
-521
- Defense Intelligence Agency
- Barry Atkinson
- DIA-DMS&DDN-CONUS.DDN.MIL
-522
- Telesystems SLW Inc.
- Joe Magony
- 416-441-9966
-523
- APT Communications
- David Kloper
- 301-831-1182
-524
- Delta Airlines
- Jim Guy
- 404-715-2948
-525
- California Microwave
- Kevin Braun
- 408-720-6520
-526
- Avid Technology Inc
- Bob Craig
- bob.craig&avid.com
-527
- Integro Advanced Computer Systems
- Pascal Turbiez
- +33-20-08-00-40
-528
- RPTI
- Chris Shin
- 886-2-918-3006
-529
- Ascend Communications Inc.
- Matthias Bannach
- mbannach&ascend.com
-530
- Eden Computer Systems Inc.
- Louis Brando
- 305-591-7752
-531
- Kawasaki-Steel Corp
- Tomoo Watanabe
- nrd&info.kawasaki-steel.co.jp
-532
- Systems Management Infrasture, Barclays Bank PLC
- Colin Walls
- colin.walls&barclays.co.uk
-533
- B.U.G., Inc.
- Isao Tateishi
- tateishi&bug.co.jp
-534
- Eaton Corporation
- Tom Brennan
- ThomasJBrennan&eaton.com
-535
- Superconducting Supercollider Lab.
- Carl W. Kalbfleisch
- cwk&irrational.ssc.gov
-536
- Triticom
- Barry Trent
- btrent&triticom.com
-537
- Universal Instruments Corp.
- Tom Dinnel
- BA06791%BINGVAXA.bitnet&CUNYVM.CUNY.EDU
-538
- Information Resources, Inc.
- Jeff Gear
- jjg&infores.com
-539
- Kentrox
- Ken Huffman
- snmp&kentrox.com
-540
- Crypto AG
- Roland Luthi
- luthi&iis.ethz.ch
-541
- Infinite Networks, Ltd.
- Sean Harding
- +44 923 710 277
-542
- Tangram Enterprise Solutions, Inc.
- Steve Kuekes
- skuekes&tangram.com
-543
- Alebra Technologies, Inc.
- Harold Stevenson
- harold.stevenson&alebra.com
-544
- Equinox Systems, Inc.
- Monty Norwood
- 1-800-275-3500 x293
-545
- Hayes Microcomputer Products
- Joe Pendergrass
- jpendergrass&hayes.com
-546
- Empire Technologies Inc.
- Cheryl Krupczak
- cheryl&cc.gatech.edu
-547
- Glaxochem, Ltd.
- Andy Wilson
- 0229 52261547
-548
- Software Professionals, Inc
- Gordon Vickers
- gordon&netpartners.com
-549
- Agent Technology, Inc.
- Ibi Dhilla
- idhilla&genesis.nred.ma.us
-550
- Dornier GMBH
- Arens Heinrech
- 49-7545-8 ext 9337
-551
- Telxon Corporation
- Frank Ciotti
- frankc&teleng.telxon.com
-552
- Entergy Corporation
- Louis Cureau
- 504-364-7630
-553
- GarrettCom, Inc (formerly 'Garrett Communications')
- Rajesh Kukreja
- rajesh&garrettcom.com
-554
- Agile Networks, Inc.
- Dave Donegan
- ddonegan&agile.com
-555
- Larscom
- Sameer Jayakar
- 415-969-7572
-556
- Stock Equipment
- Karl Klebenow
- 216-543-6000
-557
- ITT Corporation
- Kevin M. McCauley
- kmm&vaxf.acdnj.itt.com
-558
- Universal Data Systems, Inc.
- Howard Cunningham
- 70400.3671&compuserve.com
-559
- Sonix Communications, Ltd.
- David Webster
- +44 285 641 651
-560
- Paul Freeman Associates, Inc.
- Pete Wilson
- pwilson&world.std.com
-561
- John S. Barnes, Corp.
- Michael Lynch
- 704-878-4107
-562
- Northern Telecom, Ltd.
- Sharon Chisholm
- schishol&notelnetworks.com
-563
- CAP Debris
- Patrick Preuss
- ppr&lfs.hamburg.cap-debris.de
-564
- Telco Systems NAC
- Harry Hirani
- Harry&telco-nac.com
-565
- Tosco Refining Co
- Fred Sanderson
- 510-602-4358
-566
- Russell Info Sys
- Atul Desai
- 714-362-4040
-567
- University of Salford
- Richard Letts
- R.J.Letts&salford.ac.uk
-568
- NetQuest Corp.
- Jerry Jacobus
- netquest&tigger.jvnc.net
-569
- Armon Networking Ltd.
- Yigal Jacoby
- yigal&armon.hellnet.org
-570
- IA Corporation
- Didier Fort
- Didier.Fort&lia.com
-571
- AU-System Communicaton AB
- Torbjorn Ryding
- 8-7267572
-572
- GoldStar Information & Communications, Ltd.
- Soo N. Kim
- ksn&giconet.gsic.co.kr
-573
- SECTRA AB
- Tommy Pedersen
- tcp&sectra.se
-574
- ONEAC Corporation
- Bill Elliot
- ONEACWRE&AOL.COM
-575
- Tree Technologies
- Michael Demjanenko
- (716) 688-4640
-576
- General Dynamics C4 Systems
- Charlie Limoges
- charlie.limoges&gdc4s.com
-577
- Geneva Software, Inc.
- Andy Denenberg
- andyd&genevasoft.com
-578
- Interlink Computer Sciences, Inc.
- Fred Bohle
- fab&md.interlink.com
-579
- Bridge Information Systems, Inc.
- Stephen Harvey
- (314) 567-8482
-580
- Leeds and Northrup Australia (LNA) Nigel Cook
- nigelc&lna.oz.au
- ---none---
-581
- CSG Systems International (formerly 'Intec Telecom Systems')
- Michael Harvey
- MIchael.Harvey&csgi.com
-582
- Newport Systems Solutions, Inc.
- Pauline Chen
- paulinec&cisco.com
-583
- azel Corporation
- Narender Reddy Vangati
- vnr&atrium.com
-584
- ROBOTIKER
- Maribel Narganes
- maribel&teletek.es
-585
- PeerLogic Inc.
- Keith Richardson
- registrar&peerlogic.com
-586
- Digital Transmittion Systems
- Bill VerSteeg
- bvs&ver.com
-587
- Far Point Communications
- Bill VerSteeg
- bvs&ver.com
-588
- Xircom
- Bill VerSteeg
- bvs&ver.com
-589
- Mead Data Central
- Stephanie Bowman
- steph&meaddata.com
-590
- Royal Bank of Canada
- N. Lim
- (416) 348-5197
-591
- Advantis, Inc.
- Janet Brehm
- 813 878-4298
-592
- Chemical Banking Corp.
- Paul McDonnell
- pmcdonnl&world.std.com
-593
- Eagle Technology
- Ted Haynes
- (408) 441-4043
-594
- BT
- Tim Oldham
- tim.oldham&bt.com
-595
- Radix BV
- P. Groenendaal
- project2&radix.nl
-596
- TAINET Communication System Corp.
- Joseph Chen
- +886-2-6583000 (R.O.C.)
-597
- Comtek Services Inc.
- Steve Harris
- (703) 506-9556
-598
- Fair Isaac Corporation
- Cert Admin
- certadmin&fairisaac.com
-599
- AST Research Inc.
- Bob Beard
- bobb&ast.com
-600
- Soft*Star s.r.l. Ing. Enrico Badella
- softstar&pol88a.polito.it
- ---none---
-601
- Bancomm
- Joe Fontes
- jwf&bancomm.com
-602
- Trusted Information Systems, Inc.
- James M. Galvin
- galvin&tis.com
-603
- Harris & Jeffries, Inc.
- Deepak Shahane
- deepak&hjinc.com
-604
- Axel Technology Corp.
- Henry Ngai
- (714) 455-1688
-605
- NetTest Inc.
- David Hardy
- dave.hardy&nettest.com
-606
- CAP debis
- Patrick Preuss
- +49 40 527 28 366
-607
- Lachman Technology, Inc.
- Steve Alexander
- stevea&lachman.com
-608
- Galcom Networking Ltd.
- Zeev Greenblatt
- galnet&vax.trendline.co.il
-609
- BAZIS
- M. van Luijt
- martin&bazis.nl
-610
- SYNAPTEL
- Eric Remond
- remond&synaptel.fr
-611
- Investment Management Services, Inc.
- J. Laurens Troost
- rens&stimpys.imsi.com
-612
- Taiwan Telecommunication Lab
- Dennis Tseng
- LOUIS%TWNMOCTL.BITNET&pucc.Princeton.EDU
-613
- Anagram Corporation
- Michael Demjanenko
- (716) 688-4640
-614
- Univel
- John Nunneley
- jnunnele&univel.com
-615
- University of California, San Diego
- Arthur Bierer
- abierer&ucsd.edu
-616
- CompuServe
- Ed Isaacs, Brian Biggs
- SYSADM&csi.compuserve.com
-617
- Telstra - OTC Australia
- Peter Hanselmann
- peterhan&turin.research.otc.com.au
-618
- Westinghouse Electric Corp.
- Ananth Kupanna
- ananth&access.digex.com
-619
- DGA Ltd.
- Tom L. Willis
- twillis&pintu.demon.co.uk
-620
- Elegant Communications Inc.
- Robert Story
- Robert.Story&Elegant.COM
-621
- Experdata
- Claude Lubin
- +33 1 41 28 70 00
-622
- Unisource Business Networks Sweden AB
- Goran Sterner
- gsr&tip.net
-623
- Molex, Inc.
- Steven Joffe
- molex&mcimail.com
-624
- Quay Financial Software
- Mick Fleming
- mickf&quay.ie
-625
- VMX Inc.
- Joga Ryali
- joga&vmxi.cerfnet.com
-626
- Hypercom, Inc.
- Noor Chowdhury
- (602) 548-2113
-627
- University of Guelph
- Kent Percival
- Percival&CCS.UoGuelph.CA
-628
- DIaLOGIKa
- Juergen Jungfleisch
- 0 68 97 9 35-0
-629
- NBASE Switch Communication
- Sergiu Rotenstein
- 75250.1477&compuserve.com
-630
- Anchor Datacomm B.V.
- Erik Snoek
- sdrierik&diamond.sara.nl
-631
- PACDATA
- John Reed
- johnr&hagar.pacdata.com
-632
- University of Colorado
- Evi Nemeth
- evi&cs.colorado.edu
-633
- Tricom Communications Limited
- Robert Barrett
- 0005114429&mcimail.com
-634
- Santix Software GmbH
- Michael Santifaller
- santi%mozart&santix.guug.de
-635
- Encore Networks, Inc.
- Colin P. Roper
- croper&encorenetworks.com
-636
- Georgia Institute of Technology
- George P. Burdell
- gpb&oit.gatech.edu
-637
- Alcatel-Lucent (formerly 'Alcatel Data Network')
- Jean Rojnic
- Jean.Rojnic&alcatel-lucent.fr
-638
- GTECH
- Brian Ruptash
- bar&gtech.com
-639
- UNOCAL Corporation
- Peter Ho
- ho&unocal.com
-640
- First Pacific Network
- Randy Hamilton
- 408-703-2763
-641
- Lexmark International
- Don Wright
- don&lexmark.com
-642
- Qnix Computer
- Sang Weon, Yoo
- swyoo&qns.qnix.co.kr
-643
- Jigsaw Software Concepts (Pty) Ltd.
- Willem van Biljon
- wvb&itu2.sun.ac.za
-644
- Eastern Research Inc.
- Nevio Poljak
- npoljak&erinc.com
-645
- nsgdata.com Inc
- Graham C. Welling
- gwelling&nsgdata.com
-646
- SEIKO Communication Systems, Inc.
- Lyn T. Robertson
- ltr&seikotsi.com
-647
- Unified Management
- Andy Barnhouse
- (612) 561-4944
-648
- RADLINX Ltd.
- Ady Lifshes
- ady%rndi&uunet.uu.net
-649
- Microplex Systems Ltd.
- Fred Fierling
- fff&microplex.com
-650
- Trio Information Systems AB
- Marten Karlsson
- snmp&trio.se
-651
- Phoenix Microsystems
- Bill VerSteeg
- bvs&ver.com
-652
- Distributed Systems International, Inc.
- Ron Mackey
- rem&dsiinc.com
-653
- Evolving Systems, Inc.
- Matt Weller
- iana&evolving.com
-654
- SAT GmbH
- Walter Eichelburg
- 100063.74&compuserve.com
-655
- CeLAN Technology, Inc.
- Mark Liu
- 886--35-772780
-656
- Landmark Systems Corp.
- Steve Sonnenberg
- steves&socrates.umd.edu
-657
- Netone Systems Co., Ltd.
- YongKui Shao
- syk&new-news.netone.co.jp
-658
- Loral Data Systems
- Jeff Price
- jprice&cps070.lds.loral.com
-659
- Cellware Broadband Technology
- Michael Roth
- mike&cellware.de
-660
- MuSys Corporation
- Gaylord Miyata
- miyata&musys.com
-661
- IMC Networks Corp.
- Jerry Roby
- (714) 724-1070
-662
- Octel Communications Corp.
- Alan Newman
- (408) 321-5182
-663
- RIT Technologies Ltd.
- Ghiora Drori
- drori&dcl.hellnet.org
-664
- Adtran
- Jeff Wells
- 205-971-8000
-665
- Netvion, Inc.
- Ray Caruso
- ray.caruso&netvion.com
-666
- Oki Electric Industry Co., Ltd.
- Naoki Hayashi
- hayashi753&oki.com
-667
- Specialix International
- Jeremy Rolls
- jeremyr&specialix.co.uk
-668
- INESC (Instituto de Engenharia de Sistemas e Computadores)
- Pedro Ramalho Carlos
- prc&inesc.pt
-669
- Globalnet Communications
- Real Barriere
- (514) 651-6164
-670
- Product Line Engineer SVEC Computer Corp.
- Rich Huang
- msumgr&enya.cc.fcu.edu.tw
-671
- Printer Systems Corp.
- Bill Babson
- bill&prsys.com
-672
- Contec Micro Electronics USA
- David Sheih
- (408) 434-6767
-673
- Unix Integration Services
- Chris Howard
- chris&uis.com
-674
- Dell Inc.
- David L. Douglas
- david_l_douglas&dell.com
-675
- Whittaker Electronic Systems
- Michael McCune
- mccune&cerf.net
-676
- QPSX Communications
- David Pascoe
- davidp&qpsx.oz.au
-677
- Loral WDl
- Mike Aronson
- Mike_Aronson&msgate.wdl.loral.com
-678
- Federal Express Corp.
- Randy Hale
- (901) 369-2152
-679
- E-COMMS Inc.
- Harvey Teale
- (206) 857-3399
-680
- Software Clearing House
- Tom Caris
- ca&sch.com
-681
- Antlow Computers Ltd.
- C. R. Bates
- 44-635-871829
-682
- Emcom Corp.
- Mike Swartz
- emcom&cerf.net
-683
- Extended Systems, Inc.
- Al Youngwerth
- alberty&tommy.extendsys.com
-684
- Sola Electric
- Mike Paulsen
- (708) 439-2800
-685
- Esix Systems, Inc.
- Anthony Chung
- esix&esix.tony.com
-686
- 3M/MMM
- Tony Grosso
- agrosso&mmm.com
-687
- Cylink Corp.
- Ed Chou
- ed&cylink.com
-688
- Znyx Advanced Systems Division, Inc.
- Alan Deikman
- aland&netcom.com
-689
- Texaco, Inc.
- Jeff Lin
- linj&Texaco.com
-690
- McCaw Cellular Communication Corp.
- Tri Phan
- tri.phan&mccaw.com
-691
- ASP Computer Product Inc.
- Elise Moss
- 71053.1066&compuserve.com
-692
- HiPerformance Systems
- Mike Brien
- +27-11-806-1000
-693
- Regionales Rechenzentrum Erlangen
- Frank Tröger
- verzeichnisdienst&rrze.uni-erlangen.de
-694
- SAP AG
- Dr. Uwe Hommel
- +49 62 27 34 0
-695
- ElectroSpace System Inc.
- Dr. Joseph Cleveland
- e03353&esitx.esi.org
-696
- ( Unassigned )
-
- ---none---
-697
- MultiPort Corporation
- Reuben Sivan
- rsivan&multiport.com
-698
- Combinet, Inc.
- Samir Sawhney
- samir&combinet.com
-699
- TSCC
- Carl Wist
- carlw&tscc.com
-700
- Teleos Communications Inc.
- Bill Nayavich
- wln&teleoscom.com
-701
- Alta Research
- Jack Moyer
- ian&altarsrch.com
-702
- Independence Blue Cross
- Bill Eshbach
- esh&ibx.com
-703
- ADACOM Station Interconnectivity Ltd.
- Itay Kariv
- +9 72 48 99 89 9
-704
- MIROR Systems
- Frank Kloes
- +27 12 911 0003
-705
- Merlin Gerin
- Adam Stolinski
- (714) 557-1637 x249
-706
- Owen-Corning Fiberglas
- Tom Mann
- mann.td&ocf.compuserve.com
-707
- Talking Networks Inc.
- Terry Braun
- tab&lwt.mtxinu.com
-708
- Cubix Corporation
- Rebekah Marshall
- (702) 883-7611
-709
- Formation Inc.
- Bob Millis
- bobm&formail.formation.com
-710
- Lannair Ltd.
- Pablo Brenner
- pablo&lannet.com
-711
- LightStream Corp.
- Chris Chiotasso
- chris&lightstream.com
-712
- LANart Corp.
- Doron I. Gartner
- doron&lanart.com
-713
- University of Stellenbosch
- Andries Nieuwoudt
- apcn&sun.ac.za
-714
- Wyse Technology
- Bill Rainey
- bill&wyse.com
-715
- DSC Communications Corp.
- Colm Bergin
- cbergin&cpdsc.com
-716
- NetEc
- Thomas Krichel
- NetEc&netec.mcc.ac.uk
-717
- Breltenbach Software Engineering GmbH
- Hilmar Tuneke
- tuneke&namu01.gwdg.de
-718
- Victor Company of Japan,Limited
- Atsushi Sakamoto
- 101176.2703&compuserve.com
-719
- Japan Direx Corporation
- Teruo Tomiyama
- +81 3 3498 5050
-720
- NECSY Network Control Systems S.p.A. Piero Fiozzo
- fip&necsy.it
- ---none---
-721
- ISDN Systems Corp.
- Jeff Milloy
- p00633&psilink.com
-722
- Zero-One Technologies, Ltd.
- Curt Chen
- + 88 62 56 52 32 33
-723
- Radix Technologies, Inc.
- Steve Giles
- giless&delphi.com
-724
- National Institute of Standards and Technology
- Jim West
- west&mgmt3.ncsl.nist.gov
-725
- Digital Technology Inc.
- Chris Gianattasio
- gto&lanhawk.com
-726
- Castelle Corp.
- Waiming Mok
- wmm&castelle.com
-727
- Memotec Inc.
- Aster Fleury
- Aster.Fleury&memotec.com
-728
- Showa Electric Wire & Cable Co., Ltd.
- Robert O'Grady
- kfn&tanuki.twics.co.jp
-729
- SpectraGraphics
- Jack Hinkle
- hinkle&spectra.com
-730
- Connectware Inc.
- Rick Downs
- rxd4&acsysinc.com
-731
- Wind River Systems
- Emily Hipp
- hipp&wrs.com
-732
- RADWAY International Ltd.
- Doron Kolton
- 0005367977&mcimail.com
-733
- System Management ARTS, Inc.
- Yuri Rabover
- yuri&smarts.com
-734
- Persoft, Inc.
- Steven M. Entine
- entine&pervax.persoft.com
-735
- Xnet Technology Inc.
- Esther Chung
- estchung&xnet-tech.com
-736
- Unison-Tymlabs
- Dean Andrews
- ada&unison.com
-737
- Micro-Matic Research
- Patrick Lemli
- 73677.2373&compuserve.com
-738
- B.A.T.M. Advance Technologies
- Nahum Killim
- bcrystal&actcom.co.il
-739
- University of Copenhagen
- Kim H|glund
- shotokan&diku.dk
-740
- Network Security Systems, Inc.
- Carleton Smith
- rpitt&nic.cerf.net
-741
- JNA Telecommunications
- Sean Cody
- seanc&jna.com.au
-742
- Encore Computer Corporation
- Tony Shafer
- tshafer&encore.com
-743
- Central Intelligence Agency
- David Wheelock
- davidw&ucia.gov
-744
- ISC (GB) Limited
- Mike Townsend
- miket&cix.compulink.co.uk
-745
- Digital Communication Associates
- Ravi Shankar
- shankarr&dca.com
-746
- CyberMedia Inc.
- Unni Warrier
- unni&cs.ucla.edu
-747
- Distributed Systems International, Inc.
- Ron Mackey
- rem&dsiinc.com
-748
- Peter Radig EDP-Consulting
- Peter Radig
- peter&radig.de
-749
- Vicorp Interactive Systems
- Phil Romine
- phil&vis.com
-750
- Inet Inc.
- Bennie Lopez
- brl&inetinc.com
-751
- Argonne National Lab
- Linda Winkler
- winkler&mcs.anl.gov
-752
- Teklogix
- Lee Fryer-Davis
- lfryerda&teklogix.com
-753
- North Western University
- Phil Draughon
- jpd&nwu.edu
-754
- Astarte Fiber Networks
- James Garnett
- garnett&catbelly.com
-755
- Diederich & Associates, Inc.
- Douglas Capitano
- dlcapitano&delphi.com
-756
- Florida Power Corporation
- Bob England
- rengland&fpc.com
-757
- Ingres Corporation
- Raymond Fan
- ray.fan&ingres.com
-758
- Open Network Enterprise
- Spada Stefano
- +39 39 245-8101
-759
- The Home Depot
- Allen Thomas
- art01&homedepot.com
-760
- Pan Dacom Telekommunikations
- Jens Andresen
- +49 40 644 09 71
-761
- NetTek
- Steve Kennedy
- steve&gbnet.com
-762
- Karlnet Corp.
- Doug Kall
- kbridge&osu.edu
-763
- Efficient Networks, Inc.
- Stephen Egbert
- egbert&efficient.com
-764
- Fiberdata
- Jan Fernquist
- +46 828 8383
-765
- Lanser
- Emil Smilovici
- (514) 485-7104
-766
- Ericsson Denmark A/S, Telebit Division
- Peder Chr. Nørgaard
- Peder.Chr.Norgaard&ericsson.com
-767
- QoSCom
- Hans Lackner
- Hans.Lackner&qoscom.de
-768
- Network Computing Inc.
- Fredrik Noon
- fnoon&ncimail.mhs.compuserve.com
-769
- Walgreens Company
- Denis Renaud
- (708) 317-5054 (708) 818-4662
-770
- Internet Initiative Japan Inc.
- Toshiharu Ohno
- tony-o&iij.ad.jp
-771
- GP van Niekerk Ondernemings
- Gerrit van Niekerk
- gvanniek&dos-lan.cs.up.ac.za
-772
- Queen's University Belfast
- Patrick McGleenon
- p.mcgleenon&ee.queens-belfast.ac.uk
-773
- Securities Industry Automation Corporation
- Chiu Szeto
- cszeto&prism.poly.edu
-774
- SYNaPTICS
- David Gray
- david&synaptics.ie
-775
- Data Switch Corporation
- Joe Welfeld
- jwelfeld&dasw.com
-776
- Telindus Distribution
- Karel Van den Bogaert
- kava&telindus.be
-777
- MAXM Systems Corporation
- Gary Greathouse
- ggreathouse&maxm.com
-778
- Fraunhofer Gesellschaft
- FRBB-Support
- support&berlin.fhg.de
-779
- EQS Business Services
- Ken Roberts
- kroberts&esq.com
-780
- CNet Technology Inc.
- Repus Hsiung
- idps17&shts.seed.net.tw
-781
- Datentechnik GmbH
- Harald Jicha
- +43 1 50100 1264
-782
- Network Solutions, LLC
- Donald E. Bynum
- dbynum&networksolutions.com
-783
- Viaman Software
- Vikram Duvvoori
- info&viman.com
-784
- Schweizerische Bankgesellschaft Zuerich
- Roland Bernet
- Roland.Bernet&zh014.ubs.ubs.ch
-785
- University of Twente - TIOS
- Aiko Pras
- pras&cs.utwente.nl
-786
- Simplesoft Inc.
- Sudhir Pendse
- sudhir&netcom.com
-787
- Stony Brook, Inc.
- Ken Packert
- p01006&psilink.com
-788
- Unified Systems Solutions, Inc.
- Steven Morgenthal
- smorgenthal&attmail.com
-789
- Network Appliance Corporation
- Brian Pawlowski
- xdl-iana&netapp.com
-790
- Ornet Data Communication Technologies Ltd.
- Haim Kurz
- haim&ornet.co.il
-791
- Computer Associates International
- Glenn Gianino
- giagl01&usildaca.cai.com
-792
- Wireless Incorporated
- James Kahkoska
- jkahkoska&wire-less-inc.com
-793
- NYNEX Science & Technology
- Lily Lau
- llau&nynexst.com
-794
- Commercial Link Systems
- Wiljo Heinen
- wiljo&freeside.cls.de
-795
- Adaptec Inc.
- Tom Battle
- tab&lwt.mtxinu.com
-796
- Softswitch
- Charles Springer
- cjs&ssw.com
-797
- Link Technologies, Inc.
- Roy Chu
- royc&wyse.com
-798
- IIS
- Olry Rappaport
- iishaifa&attmail.com
-799
- Mobile Solutions Inc.
- Dale Shelton
- dshelton&srg.srg.af.mil
-800
- Xylan Corp.
- Burt Cyr
- burt&xylan.com
-801
- Airtech Software Forge Limited
- Callum Paterson
- tsf&cix.compulink.co.uk
-802
- National Semiconductor
- Brian Marley
- brian.marley&nsc.com
-803
- Video Lottery Technologies
- Angelo Lovisa
- ange&awd.cdc.com
-804
- National Semiconductor Corp
- Waychi Doo
- wcd&berlioz.nsc.com
-805
- Applications Management Corp
- Terril (Terry) Steichen
- Steichen tjs&washington.ssds.com
-806
- Travelers Insurance Company
- Eric Miner
- ustrv67v&ibmmail.com
-807
- Taiwan International Standard Electronics Ltd.
- B. J. Chen
- bjchen&taisel.com.tw
-808
- US Patent and Trademark Office Rick
- Randall
- randall&uspto.gov
-809
- Hynet, Ltd.
- Amir Fuhrmann
- amf&teleop.co.il
-810
- Aydin, Corp.
- Rick Veher
- (215) 657-8600
-811
- ADDTRON Technology Co., Ltd.
- Tommy Tasi
- +8 86-2-4514507
-812
- Fannie Mae
- David King
- s4ujdk&fnma.com
-813
- MultiNET Services
- Hubert Martens
- martens&multinet.de
-814
- GECKO mbH
- Holger Dopp
- hdo&gecko.de
-815
- Memorex Telex
- Mike Hill
- hill&raleng.mtc.com
-816
- Advanced Communications Networks (ACN) SA
- Antoine Boss +41 38 247434
- ---none---
-817
- Telekurs AG
- Thomas Blunschi
- thomas.blunschi&payserv.telekurs.com
-818
- IMV Victron bv
- Theo Versteeg
- theo&victron.nl
-819
- CF6 Company
- Francois Caron
- +331 4696 0060
-820
- Walker Richer and Quinn Inc.
- Rebecca Higgins
- rebecca&elmer.wrq.com
-821
- Saturn Systems
- Paul Parker
- paul_parker&parker.fac.cs.cmu.edu
-822
- Mitsui Marine and Fire Insurance Co. Ltd.
- Kijuro Ikeda +813 5389 8111
- ---none---
-823
- Loop Telecommunication International, Inc.
- Charng-Show Li +886 35 787 696
- ---none---
-824
- Telenex Corporation
- James Krug
- (609) 866-1100
-825
- Bus-Tech, Inc.
- Tyler Dunlap
- dunlap&bustech.com
-826
- ATRIE
- Fred B.R. Tuang
- cmp&fddi3.ccl.itri.org.tw
-827
- Gallagher & Robertson A/S
- Arild Braathen
- arild&gar.no
-828
- Networks Northwest, Inc.
- John J. Hansen
- jhansen&networksnw.com
-829
- Conner Peripherials
- Richard Boyd
- rboyd&mailserver.conner.com
-830
- Elf Antar France
- P. Noblanc
- +33 1 47 44 45 46
-831
- Lloyd Internetworking
- Glenn McGregor
- glenn&lloyd.com
-832
- Datatec Industries, Inc.
- Chris Wiener
- cwiener&datatec.com
-833
- TAICOM
- Scott Tseng
- cmp&fddi3.ccl.itri.org.tw
-834
- Brown's Operating System Services Ltd.
- Alistair Bell
- alistair&browns.co.uk
-835
- MiLAN Technology Corp.
- Gopal Hegde
- gopal&milan.com
-836
- NetEdge Systems, Inc.
- Dave Minnich
- Dave_Minnich&netedge.com
-837
- NetFrame Systems
- George Mathew
- george_mathew&netframe.com
-838
- Xedia Corporation
- Colin Kincaid
- colin%madway.uucp&dmc.com
-839
- Pepsi
- Niraj Katwala
- niraj&netcom.com
-840
- Tricord Systems, Inc.
- Mark Dillon
- mdillon&tricord.mn.org
-841
- Proxim Wireless, Inc
- Cor van de Water
- IANA&proxim.com
-842
- Applications Plus, Inc.
- ----- no contact
- ---none---
-843
- Pacific Bell
- Aijaz Asif
- saasif&srv.PacBell.COM
-844
- Scorpio Communications
- Sharon Barkai
- sharon&supernet.com
-845
- TPS-Teleprocessing Systems
- Manfred Gorr
- gorr&tpscad.tps.de
-846
- Technology Solutions Company
- Niraj Katwala
- niraj&netcom.com
-847
- Computer Site Technologies
- Tim Hayes
- (805) 967-3494
-848
- NetPort Software
- John Bartas
- jbartas&sunlight.com
-849
- Alon Systems
- Menachem Szus
- 70571.1350&compuserve.com
-850
- Tripp Lite
- Lawren Markle
- 72170.460&compuserve.com
-851
- NetComm Limited
- Paul Ripamonti
- paulri&msmail.netcomm.pronet.com
-852
- Precision Systems, Inc.(PSI)
- Fred Griffin
- cheryl&empiretech.com
-853
- Objective Systems Integrators
- Ed Reeder
- Ed.Reeder&osi.com
-854
- Simpact, Inc.
- Ron Tabor
- rtabor&simpact.com
-855
- Systems Enhancement Corporation
- Steve Held
- 71165.2156&compuserve.com
-856
- Information Integration, Inc.
- Gina Sun
- iiii&netcom.com
-857
- CETREL S.C.
- Jacques Flesch
- flesch&cetrel.lu
-858
- Platinum Technology, Inc.
- Theodore J. Collins III
- ted.collins&vtdev.mn.org
-859
- Olivetti North America
- Tom Purcell
- tomp&mail.spk.olivetti.com
-860
- WILMA
- Nikolaus Schaller
- hns&ldv.e-technik.tu-muenchen.de
-861
- Thomson Financial
- Sam Narang
- sam.narang&thomson.com
-862
- Total Peripherals Inc.
- Mark Ustik
- (508) 393-1777
-863
- SunNetworks Consultant
- John Brady
- jbrady&fedeast.east.sun.com
-864
- Arkhon Technologies, Inc.
- Joe Wang
- rkhon&nic.cerf.net
-865
- Computer Sciences Corporation
- Dorian Smith
- dsmith33&csc.com
-866
- Philips Communication d'Entreprise Claude Lubin
- +331412870 00
- ---none---
-867
- Katron Technologies Inc.
- Robert Kao
- +88 627 991 064
-868
- Transition Engineering Inc.
- Hemant Trivedi
- hemant&transition.com
-869
- Altos Engineering Applications, Inc.
- Wes Weber or Dave Erhart
- altoseng&netcom.com
-870
- Nicecom Ltd.
- Arik Ramon
- arik&nicecom.nice.com
-871
- Fiskars/Deltec
- Carl Smith
- (619) 291-2973
-872
- AVM GmbH
- Andreas Stockmeier
- stocki&avm-berlin.de
-873
- Comm Vision
- Richard Havens
- (408) 923 0301 x22
-874
- Institute for Information Industry
- Peter Pan
- peterpan&pdd.iii.org.tw
-875
- Legent Corporation
- Gary Strohm
- gstrohm&legent.com
-876
- Network Automation
- Doug Jackson
- +64 6 285 1711
-877
- EView Technology
- Mike Davidson
- mdavidson&eview-tech.com
-878
- Coman Data Communications Ltd.
- Zvi Sasson
- coman&nms.cc.huji.ac.il
-879
- Skattedirektoratet
- Karl Olav Wroldsen
- +47 2207 7162
-880
- Client-Server Technologies
- Timo Metsaportti
- timo&itf.fi
-881
- Societe Internationale de Telecommunications Aeronautiques
- Chuck Noren
- chuck.noren&es.atl.sita.int
-882
- Maximum Strategy Inc.
- Paul Stolle
- pstolle&maxstrat.com
-883
- Integrated Systems, Inc.
- SysAdmin
- psos-net&isi.com
-884
- E-Systems
- Hai H. Nguyen
- hai_nguyen_sy&fallschurch.esys.com
-885
- RELTEC Corporation
- Hung Ma
- mah&reu.relteccorp.com
-886
- Summa Four Inc.
- Paul Nelson
- (603) 625-4050
-887
- J & L Information Systems
- Rex Jackson
- (818) 709-1778
-888
- Forest Computer Inc.
- Dave Black
- dave&forest.com
-889
- Palindrome Corp.
- Jim Gast
- jgast&palindro.mhs.compuserve.com
-890
- ZyXEL Communications Corp.
- Harry Chou
- howie&csie.nctu.edu.tw
-891
- Network Managers (UK) Ltd,
- Mark D Dooley
- mark&netmgrs.co.uk
-892
- Sensible Office Systems Inc.
- Pat Townsend
- (712) 276-0034
-893
- Informix Software
- Anthony Daniel
- anthony&informix.com
-894
- Dynatek Communications
- Howard Linton
- (703) 490-7205
-895
- Versalynx Corp.
- Dave Fisler
- (619) 536-8023
-896
- Potomac Scheduling Communications Company
- David Labovitz
- del&access.digex.net
-897
- Sybase, Inc
- David Clegg
- davec&sybase.com
-898
- DiviCom Inc.
- Eyal Opher
- eyal&divi.com
-899
- Datus elektronische Informationssysteme GmbH
- Hubert Mertens
- marcus&datus.uucp
-900
- Matrox Electronic Systems Limited
- Peter Michelakis
- licenseadm&matrox.com
-901
- Digital Products, Inc.
- Ross Dreyer
- rdreyer&digprod.com
-902
- Scitex Corp.Ltd.
- Yoav Chalfon
- yoav_h&ird.scitex.com
-903
- RAD Vision
- Oleg Pogorelik
- radvis&vax.trendline.co.il
-904
- Tran Network Systems
- Bill Hamlin
- billh&revco.com
-905
- Scorpion Logic
- Sean Harding
- +09 2324 5672
-906
- Inotech Inc.Eric Jacobs
-
- ejacobs&inotech.com
-907
- Controlled Power Co.
- Yu Chin
- 76500,3160&compuserve.com
-908
- ABB Inc. (formerly 'Elsag Bailey Incorporated')
- Matthew Miller
- Matthew.Miller&us.abb.com
-909
- J.P. Morgan
- Chung Szeto
- szeto_chung&jpmorgan.com
-910
- Clear Communications Corp.
- Kurt Hall
- khall&clear.com
-911
- General Technology Inc.
- Perry Rockwell
- (407) 242-2733
-912
- Adax Inc.
- Jory Gessow
- jory&adax.com
-913
- Mtel Technologies, Inc.
- Jon Robinson
- 552-3355&mcimail.com
-914
- Underscore, Inc.
- Joseph K. Martin
- jkm&underscore.com
-915
- SerComm Corp.
- Ben Lin
- +8 862-577-5400
-916
- Allegiance Corporation
- Ray Klemmer
- klemmerr&allegiance.net
-917
- Tellus Technology
- Ron Cimorelli
- (510) 498-8500
-918
- Continuous Electron Beam Accelerator Facility
- Paul Banta
- banta&cebaf.gov
-919
- Canoga Perkins
- Margret Siska
- (818) 718-6300
-920
- R.I.S Technologies
- Fabrice Lacroix
- +33 7884 6400
-921
- INFONEX Corp.
- Kazuhiro Watanabe
- kazu&infonex.co.jp
-922
- WordPerfect Corp.
- Douglas Eddy
- eddy&wordperfect.com
-923
- NRaD
- Russ Carleton
- roccor&netcom.com
-924
- Hong Kong Telecommunications Ltd.
- K. S. Luk +8 52 883 3183
- ---none---
-925
- Signature Systems
- Doug Goodall
- goodall&crl.com
-926
- Alpha Technologies, Inc.
- Bill Crawford
- engineering&alpha.com
-927
- PairGain Technologies, Inc.
- Ken Huang
- kenh&pairgain.com
-928
- Sonic Systems
- Sudhakar Ravi
- sudhakar&sonicsys.com
-929
- Steinbrecher Corp.
- Kary Robertson
- krobertson&delphi.com
-930
- Centillion Networks, Inc.
- Derek Pitcher
- derek&lanspd.com
-931
- Network Communication Corp.
- Tracy Clark
- ncc!central!tracyc&netcomm.attmail.com
-932
- Sysnet A.S.
- Carstein Seeberg
- case&sysnet.no
-933
- Telecommunication Systems Lab
- Gerald Maguire
- maguire&it.kth.se
-934
- QMI
- Scott Brickner
- Scott_Brickner.QMI-DEV&FIDO.qmi.mei.com
-935
- Phoenixtec Power Co., Ltd.
- An-Hsiang Tu
- +8 862 646 3311
-936
- Hirakawa Hewtech Corp.
- H. Ukaji
- lde02513&niftyserve.or.jp
-937
- No Wires Needed B.V.
- Arnoud Zwemmer
- arnoud&nwn.nl
-938
- Primary Access
- Kerstin Lodman
- lodman&priacc.com
-939
- FD Software AS
- Dag Framstad
- dag.framstad&fdsw.no
-940
- g.a.m.s. edv-dienstleistungen
- Vinzenz Grabner
- zen&gams.net
-941
- Nemesys Research Ltd.
- Michael Dixon
- mjd&nemesys.co.uk
-942
- Pacific Communication Sciences, Inc.
- (PSCI)
- Yvonne Kammer mib-contact&pcsi.com
-943
- Level One Communications, Inc.
- Moshe Kochinski
- moshek&level1.com
-944
- Intellimon Software, LLC.
- Andrew Dimmick
- adimmick&home.com
-945
- Accenture (formerly 'Andersen Consulting')
- Greg Tilford
- greg.a.tilford&accenture.com
-946
- Bay Technologies Pty Ltd.
- Paul Simpson
- pauls&baytech.com.au
-947
- Integrated Network Corp.
- Daniel Joffe
- wandan&integnet.com
-948
- CyberPro International
- Jeff Davison
- jdavison&digital.net
-949
- Wang Laboratories Inc.
- Pete Reilley
- pvr&wiis.wang.com
-950
- Polaroid Corp.
- Sari Germanos
- sari&temerity.polaroid.com
-951
- Sunrise Sierra
- Gerald Olson
- (510) 443-1133
-952
- Silcon Group
- Bjarne Bonvang
- +45 75 54 22 55
-953
- Coastcom
- Peter Doleman
- pdoleman&coastcom.com
-954
- 4th DIMENSION SOFTWARE Ltd.
- Thomas Segev/Ely Hofner
- autumn&zeus.datasrv.co.il
-955
- SEIKO SYSTEMS Inc.
- Kiyoshi Ishida
- ishi&ssi.co.jp
-956
- PERFORM
- Pierre Germain
- pgermain&perform.fr
-957
- TV/COM International
- Jean Tellier
- (619) 675-1376
-958
- Network Integration, Inc.
- Scott C. Lemon
- slemon&nii.mhs.compuserve.com
-959
- Sola Electric, A Unit of General Signal
- Bruce Rhodes
- 72360,2436&compuserve.com
-960
- Gradient Technologies, Inc.
- Geoff Charron
- geoff&gradient.com
-961
- Tokyo Electric Co., Ltd.
- A. Akiyama
- +81 558 76 9606
-962
- Codonics, Inc.
- Joe Kulig
- jjk&codonics.com
-963
- Delft Technical University
- Mark Schenk
- m.schenk&ced.tudelft.nl
-964
- Carrier Access Corp.
- Technical Support
- tech-support&carrieraccess.com
-965
- eoncorp
- Barb Wilson
- wilsonb&eon.com
-966
- Naval Undersea Warfare Center
- Thomas L. Eilert
- eilerttl&npt.nuwc.navy.mil
-967
- AWA Limited
- Mike Williams
- +61 28 87 71 11
-968
- Distinct Corp.
- Tarcisio Pedrotti
- tarci&distinct.com
-969
- National Technical University of Athens
- Theodoros Karounos
- karounos&phgasos.ntua.gr
-970
- BGS Systems, Inc.
- Amr Hafez
- amr&bgs.com
-971
- AT&T Wireless (McCaw Wireless Data)
- Paul Martin
- paul.martin&attws.com
-972
- Bekaert
- Koen De Vleeschauwer
- kdv&bekaert.com
-973
- Epic Data Inc.
- Russ Beinder
- russ.beinder&epicdata.com
-974
- Prodigy Services Co.
- Ed Ravin
- elr&wp.prodigy.com
-975
- First Pacific Networks (FPN)
- Randy Hamilton
- randy&fpn.com
-976
- Xylink Ltd.
- Bahman Rafatjoo
- 100117.665&compuserve.com
-977
- Relia Technologies Corp.
- Fred Chen
- fredc&relia1.relia.com.tw
-978
- Legacy Storage Systems Inc.
- James Hayes
- james&lss-chq.mhs.compuserve.com
-979
- Digicom, SPA
- Claudio Biotti
- +39 3312 0 0122
-980
- Ark Telecom
- Alan DeMars
- alan&arktel.com
-981
- National Security Agency (NSA)
- Cynthia Beighley
- maedeen&romulus.ncsc.mil
-982
- Southwestern Bell Corporation (AT&T) (formerly 'Southwestern Bell Corporation')
- Jeremy Monroe
- att-domains&att.com
-983
- Virtual Design Group, Inc.
- Chip Standifer
- 70650.3316&compuserve.com
-984
- Rhone Poulenc
- Olivier Pignault
- +33 1348 2 4053
-985
- Swiss Bank Corporation
- Neil Todd
- toddn&gb.swissbank.com
-986
- ATEA N.V.
- Walter van Brussel
- p81710&banyan.atea.be
-987
- Computer Communications Specialists, Inc.
- Carolyn Zimmer
- cczimmer&crl.com
-988
- Object Quest, Inc.
- Michael L. Kornegay
- mlk&bir.com
-989
- DCL System International, Ltd.
- Gady Amit
- gady-a&dcl-see.co.il
-990
- SOLITON SYSTEMS K.K.
- Masayuki Yamai
- +81 33356 6091
-991
- U S Software
- Richard Ames
- richard&ussw.com
-992
- Systems Research and Applications Corporation
- Todd Herr
- herrt&smtplink.sra.com
-993
- University of Florida
- Daniel Crisman
- namsirc&ufl.edu
-994
- Dantel, Inc.
- John Litster
- (209) 292-1111
-995
- Multi-Tech Systems, Inc.
- Dale Martenson
- (612) 785-3500 x519
-996
- Softlink Ltd.
- Moshe Leibovitch
- moshe&softlink.com
-997
- ProSum
- Christian Bucari
- +33.1.4590.6231
-998
- March Systems Consultancy, Ltd.
- Ross Wakelin
- r.wakelin&march.co.uk
-999
- Hong Technology, Inc.
- Walt Milnor
- brent&oceania.com
-1000
- Internet Assigned Numbers Authority
- Authority
- iana&iana.org
-1001
- PECO Energy Co.
- Rick Rioboli
- u002rdr&peco.com
-1002
- United Parcel Service
- Steve Pollini
- spollini&ups.com
-1003
- Storage Dimensions, Inc.
- Michael Torhan
- miketorh&xstor.com
-1004
- ITV Technologies, Inc.
- Jacob Chen
- itv&netcom.com
-1005
- TCPSI
- Victor San Jose
- Victor.Sanjose&sp1.y-net.es
-1006
- Promptus Communications, Inc.
- Paul Fredette
- (401) 683-6100
-1007
- Norman Data Defense Systems
- Kristian A. Bognaes
- norman&norman.no
-1008
- Pilot Network Services, Inc.
- Rob Carrade
- carrade&pilot.net
-1009
- Integrated Systems Solutions Corporation
- Chris Cowan
- cc&austin.ibm.com
-1010
- SISRO
- Kamp Alexandre
- 100074.344&compuserve.com
-1011
- NetVantage
- Kevin Bailey
- speed&kaiwan.com
-1012
- Marconi
- Scott Mansfield
- scott.mansfield&marconi.com
-1013
- SURECOM
- Mike S. T. Hsieh
- +886.25.92232
-1014
- Royal Hong Kong Jockey Club
- Edmond Lee
- 100267.3660&compuserve.com
-1015
- Gupta
- Howard Cohen
- hcohen&gupta.com
-1016
- Tone Software Corporation
- Neil P. Harkins
- (714) 991-9460
-1017
- Opus Telecom
- Pace Willisson
- pace&blitz.com
-1018
- Cogsys Ltd.
- Ryllan Kraft
- ryllan&ryllan.demon.co.uk
-1019
- Komatsu, Ltd.
- Akifumi Katsushima
- +81 463.22.84.30
-1020
- ROI Systems, Inc
- Michael Wong
- (801) 942-1752
-1021
- Lightning Instrumentation SA
- Mike O'Dowd
- odowd&lightning.ch
-1022
- TimeStep Corp.
- Stephane Lacelle
- slacelle&newbridge.com
-1023
- INTELSAT
- Jason Winans
- janon.winans&intelsat.com
-1024
- Network Research Corporation Japan, Ltd.
- Tsukasa Ueda
- 100156.2712&compuserve.com
-1025
- Relational Development, Inc.
- Steven Smith
- rdi&ins.infonet.net
-1026
- Emerald Systems, Corp.
- Robert A. Evans Jr.
- (619) 673-2161 x5120
-1027
- Mitel, Corp.
- Tom Quan
- tq&software.mitel.com
-1028
- Software AG
- Peter Cohen
- sagpc&sagus.com
-1029
- MillenNet, Inc.
- Manh Do
- (510) 770-9390
-1030
- NK-EXA Corp.
- Ken'ichi Hayami
- hayami&dst.nk-exa.co.jp
-1031
- BMC Software
- Eugene Golovinsky
- egolovin&bmc.com
-1032
- StarFire Enterprises, Inc.
- Kelsi Compton
- kelsi&StarFire.com
-1033
- Hybrid Networks, Inc.
- Doug Muirhead
- dougm&hybrid.com
-1034
- Quantum Software GmbH
- Thomas Omerzu
- omerzu&quantum.de
-1035
- Openvision Technologies Limited
- Andrew Lockhart
- alockhart&openvision.co.uk
-1036
- Healthcare Communications, Inc.(HCI)
- Larry Streepy
- streepy&healthcare.com
-1037
- SAIT Systems
- Hai Dotu
- +3223.7053.11
-1038
- SAGEMCOM SAS
- COZZI Didier
- didier.cozzi&sagemcom.com
-1039
- CompuSci Inc.
- John M. McNally
- jmcnally&sechq.com
-1040
- Aim Technology
- Ganesh Rajappan
- ganeshr&aim.com
-1041
- CIESIN
- Kalpesh Unadkat
- kalpesh&ciesin.org
-1042
- Systems & Technologies International
- Howard Smith
- ghamex&aol.com
-1043
- Israeli Electric Company (IEC) Yoram Harlev
- yoram&yor.iec.co.il
- ---none---
-1044
- Phoenix Wireless Group, Inc.
- Gregory M Buchanan
- buchanan&pwgi.com
-1045
- SWL
- Bill Kight
- wkightgrci.com
-1046
- nCUBE
- Greg Thompson
- gregt&ncube.com
-1047
- Cerner, Corp.
- Dennis Avondet
- (816) 221.1024
-1048
- Andersen Consulting
- Mark Lindberg
- mlindber&andersen.com
-1049
- Windstream Communications
- Rick Frey
- snmp-admin&windstream.net
-1050
- Acer
- Jay Tao
- jtao&Altos.COM
-1051
- Cedros
- Juergen Haakert
- +49.2241.9701.80
-1052
- AirAccess
- Ido Ophir
- 100274.365&compuserve.com
-1053
- Expersoft Corporation
- David Curtis
- curtis&expersoft.com
-1054
- Eskom
- Sanjay Lakhani
- h00161&duvi.eskom.co.za
-1055
- SBE, Inc.
- Vimal Vaidya
- vimal&sbei.com
-1056
- SS8
- Peter Baak
- peter.baak&ss8.com
-1057
- American Computer and Electronics, Corp.
- Tom Abraham
- tha&acec.com
-1058
- Syndesis Limited
- Wil Macaulay
- wil&syndesis.com
-1059
- Isis Distributed Systems, Inc.
-
- ---none---
-1060
- Priority Call Management
- Greg Schumacher
- gregs&world.std.com
-1061
- Koelsch & Altmann GmbH
- Christian Schreyer
- 100142.154&compuserve.com
-1062
- WIPRO INFOTECH Ltd.
- Chandrashekar Kapse
- kapse&wipinfo.soft.net
-1063
- Controlware
- Uli Blatz
- ublatz&cware.de
-1064
- Mosaic Software
- W.van Biljon
- willem&mosaic.co.za
-1065
- Canon Information Systems
- Victor Villalpando
- vvillalp&cisoc.canon.com
-1066
- AOL Inc.
- Bill Burns
- oid-admin&aol.net
-1067
- Whitetree Network Technologies, Inc.
- Carl Yang
- cyang&whitetree.com
-1068
- Northrop Grumman / Xetron
- Dave Alverson
- dave.alverson&ngc.com
-1069
- Target Concepts, Inc.
- Bill Price
- bprice&tamu.edu
-1070
- DMH Software
- Yigal Hochberg
- 72144.3704&compuserve.com
-1071
- Innosoft International, Inc.
- Jeff Allison
- jeff&innosoft.com
-1072
- Controlware GmbH
- Adolfo Lucha
- adolfo.lucha&controlware.de
-1073
- Telecommunications Industry Association (TIA) Mike
- Youngberg
- mikey&synacom.com
-1074
- Boole & Babbage
- Rami Rubin
- rami&boole.com
-1075
- System Engineering Support, Ltd.
- Vince Taylor
- +44 454.614.638
-1076
- SURFnet
- Ton Verschuren
- Ton.Verschuren&surfnet.nl
-1077
- OpenConnect Systems, Inc.
- Mark Rensmeyer
- mrensme&oc.com
-1078
- PDTS (Process Data Technology and Systems)
- Martin Gutenbrunner
- admin-snmp-oid&NOSPAMpdts.at
-1079
- Cornet, Inc.
- Nat Kumar
- (703) 658-3400
-1080
- NetStar, Inc.
- John K. Renwick
- jkr&netstar.com
-1081
- Semaphore Communications, Corp.
- Jimmy Soetarman
- (408) 980-7766
-1082
- Casio Computer Co., Ltd.
- Shouzo Ohdate
- ohdate&casio.co.jp
-1083
- CSIR
- Frikkie Strecker
- fstreck&marge.mikom.csir.co.za
-1084
- APOGEE Communications
- Olivier Caleff
- caleff&apogee-com.fr
-1085
- Information Management Company
- Michael D. Liss
- mliss&imc.com
-1086
- Wordlink, Inc.
- Mike Aleckson
- (314) 878-1422
-1087
- PEER
- Avinash S. Rao
- arao&cranel.com
-1088
- Telstra Corp
- Jessica Gear
- jessica.gear&team.telstra.com
-1089
- Net X, Inc.
- Sridhar Kodela
- techsupp&netx.unicomp.net
-1090
- PNC PLC
- Gordon Tees
- +44 716.061.200
-1091
- DanaSoft, Inc.
- Michael Pierce
- mpierce&danasoft.com
-1092
- Yokogawa-Hewlett-Packard
- Hisao Ogane
- hisao&yhp.hp.com
-1093
- Citem
- Manfred R. Siegl
- m.siegl&citem.at
-1094
- Link Telecom, Ltd.
- Michael Smith
- michael&ska.com
-1095
- Xirion bv
- Frans Schippers
- frans&xirion.nl
-1096
- Centigram Communications, Corp.
- Mike Nguyen
- michael.nguyen&centigram.com
-1097
- Gensym Corp.
- Greg Stanley
- gms&gensym.com
-1098
- Apricot Computers, Ltd.
- Paul Bostock
- paulb&apricot.co.uk
-1099
- CANAL+
- Clément Calvier
- clement.calvier&canal-plus.com
-1100
- Cambridge Technology Partners
- Peter Wong
- pwong&ctp.com
-1101
- MoNet Systems, Inc.
- Frank Jiang
- fjiang&irvine.dlink.com
-1102
- Metricom, Inc.
- Harold E. Austin
- austin&metricom.com
-1103
- Xact, Inc
- Keith Wiles
- keith&iphase.com
-1104
- Brave Software, Inc.
- Marshall T. Rose
- mrose&brave.com
-1105
- NetCell Systems, Inc.
- Frank Jiang
- fjiang&irvine.dlink.com
-1106
- Uni-QLennart Norlanderlennart.norlander&uniq.se
- or
- mib&uniq.se
-1107
- DISA Space Systems Development Division
- William Reed
- reedw&cc.ims.disa.mil
-1108
- INTERSOLV
- Gary Greenfield
- Gary_Greenfield&intersolv.com
-1109
- Vela Research, Inc.
- Ajoy Jain
- cheryl&empiretech.com
-1110
- Tetherless Access, Inc.
- Richard Fox
- kck&netcom.com
-1111
- Magistrat Wien, AT
- Michael Gsandtner
- gsa&adv.magwien.gv.at
-1112
- Franklin Telecom, Inc.
- Mike Parkhurst
- mikes&fdihq.com
-1113
- EDA Instruments, Inc.
- Alex Chow
- alexc&eda.com
-1114
- EFI Electronics, Corporation
- Tim Bailey
- efiups&ix.netcom.com
-1115
- GMD
- Ferdinand Hommes
- Ferdinand.Hommes&gmd.de
-1116
- Voicetek, Corp
- Joe Micozzi
- jam&voicetek.com
-1117
- Avanti Technology, Inc.
- Steve Meyer, Sr.
- stevem&avanti-tech.com
-1118
- ATLan LTD
- Emanuel Wind
- ew&actcom.co.il
-1119
- Lehman Brothers
- Information Security
- internic&lehman.com
-1120
- LAN-hopper Systems, Inc.
- Jim Baugh
- 76227.307&compuserve.com
-1121
- Web-Systems
- Cecile Mulder
- web&aztec.co.za
-1122
- Piller GmbH
- Stephan Leschke
- 100063.3642&compuserve.com
-1123
- Engenio Information Technologies, Inc.
- MSW Architecture team (Sean Olson)
- mswarch&netapp.com
-1124
- NetSpan, Corp.
- Lawrence Halcomb
- 214-690-8844
-1125
- Nielsen Media Research
- Andrew R. Reese
- reesear&msmail.dun.nielsen.com
-1126
- Sterling Software
- Greg Rose
- Greg_Rose&sydney.sterling.com
-1127
- Applied Network Technology, Inc.
- Abbot Gilman
- gilman&antech.com
-1128
- Union Pacific Railroad
- Ed Hoppe
- emhoppe&notes.up.com
-1129
- Tec Corporation
- Tomoaki Suzuki
- nab00570&niftyserve.or.jp
-1130
- Datametrics Systems, Corporation Karl S.
- Friedrich
- friedrich&datametrics.com
-1131
- Intersection Development Corporation Michael
- McCrary
- mikem43190&aol.com
-1132
- BACS Limited, GB
- Eric Bishop
- eric.bishop&bacs.co.uk
-1133
- Engage Communication
- Peter Gibson
- peterg&cruzio.com
-1134
- Fastware, S.A.
- Christian Berge
- +33 4748 0616
-1135
- LONGSHINE Electronics Corp.
- C.T. Tseng
- via&tpts1.seed.net.tw
-1136
- BOW Networks, Inc.
- David Eastcott
- david.eastcott&bownetworks.com
-1137
- emotion, Inc.
- Jesus Ortiz
- jesus_ortiz&emotion.com
-1138
- Rautaruukki steel factory, Information systems
- Raine Haapasaari
- rhaapasa&ratol.fi
-1139
- EMC Corp
- Rene Fontaine
- rene.fontaine&emc.com
-1140
- University of West England
- Tom Johnson
- tom-x&csd.uwe.ac.uk
-1141
- Com21
- Randy Miyazaki
- randy&com21.com
-1142
- Compression Tehnologies Inc.
- Paul Wilson
- paul&compression.com
-1143
- Buslogic Inc.
- Janakiraman Gopalan
- janaki&buslogic.com
-1144
- Firefox Corporation
- John Severs
- johns&firefox.co.uk
-1145
- Mercury Communications Ltd
- David Renshaw
- ag13&cityscape.co.uk
-1146
- COMPUTER PROTOCOL MALAYSIA SDN. BHD.
- Ronald Khoo
- ronald&cpm.com.my
-1147
- Institute for Information Industry
- Shein-Tung Wu
- hunter&netrd.net.tw
-1148
- Pacific Electric Wire & Cable Co. Ltd.
- Cheng Chen
- tony&tpts1.seed.net.tw
-1149
- MPR Teltech Ltd
- Chris Sullivan
- sullivan&mprott.ott.mpr.ca
-1150
- P-COM, Inc
- Joe Shiran
- joesh&netcom.com
-1151
- Anritsu Corporation
- Manabu Usami
- usami&accpd1.anritsu.co.jp
-1152
- SPYRUS
- Russ Housley
- housley&spyrus.com
-1153
- NeTpower, Inc.
- Mark Davoren
- markd&netpower.com
-1154
- Diehl ISDN GmbH
- Larry Butler
- lrb&diehl.de
-1155
- CARNet
- Nevenko Bartolincic
- Nevenko.Bartolincic&CARNet.hr
-1156
- AS-TECH
- Jean Pierre Joerg
- +33 6770 8926
-1157
- SG2 Innovation et Produits
- Pascal Donnart
- bcouderc&altern.com
-1158
- CellAccess Technology, Inc.
- Steve Krichman
- cati&netcom.com
-1159
- Bureau of Meteorology
- Paul Hambleton
- paul.hambleton&bom.gov.au
-1160
- ELTRAX
- T. Max Devlin
- mdevlin&eltrax.com
-1161
- Thames Water Utilities Limited
- Derek Manning
- +44 1734 591159
-1162
- Micropolis, Corp.
- Jerry Sorcsek
- jerome_sorcsek&microp.com
-1163
- Integrated Systems Technology
- William Marshall
- marshall&kingcrab.nrl.navy.mil
-1164
- Brite Voice Systems, Inc.
- John Morrison
- john.morrison&brite.com
-1165
- Associated Grocer
- Michael Zwarts
- (206) 764-7506
-1166
- General Instrument
- Fred Gotwald
- fgotwald&gi.com
-1167
- Stanford Telecom
- Luther Edwards
- ledwards&fuji.sed.stel.com
-1168
- ICOM Informatique
- Jean-Luc Collet
- 100074,36&compuserve.com
-1169
- MPX Data Systems Inc.
- Bill Hayes
- bhayes&mpx.com
-1170
- Syntellect
- Kevin Newsom
- kevin&syntellect.com
-1171
- Polyhedra Ltd (formerly 'Perihelion Technology Ltd')
- Nigel Day
- nigel.day&polyhedra.com
-1172
- Shoppers Drug Mart
- Ian McMaster
- imcmaster&shoppersdrugmart.ca
-1173
- Apollo Travel Services Judith Williams-Murphy
- judyats&cscns.com
- ---none---
-1174
- Time Warner Cable, Inc.
- George Sarosi
- george.sarosi&twcable.com
-1175
- American Technology Labs Inc.
- Laura Payton
- (301) 695-1547
-1176
- Dow Jones & Company, Inc.
- John Ruccolo
- (609) 520 5505
-1177
- FRA
- Per Hansson
- Per.Hansson&fra.se
-1178
- Equitable Life Assurance Society
- Barry Rubin
- 75141,1531&compuserve.com
-1179
- Smith Barney Inc.
- James A. LaFleur
- (212) 723-3919
-1180
- Compact Data Ltd
- Stephen Ades
- sa&compactdata.co.uk
-1181
- I.Net Communications
- Stephane Appleton
- +33 1607 20205
-1182
- Yamaha Corporation
- Ryota Hirose
- hirose&soundnet.yamaha.co.jp
-1183
- Illinois State University
- Scott Genung
- sagenung&ilstu.edu
-1184
- RADGuard Ltd.
- omer karp
- omer&radguard.co.il
-1185
- Calypso Software Systems, Inc.
- Paul J. LaFrance
- lafrance&calsof.com
-1186
- ACT Networks Inc.
- Joseph P. Tokarski
- joet&acti-ct.com
-1187
- Kingston Communications
- Nick Langford
- +49 0127 9600016
-1188
- Incite
- Susan M. Sauter
- ssauter&intecom.com
-1189
- VVNET, Inc.
- C. M. Heard
- heard&pobox.com
-1190
- Ontario Hydro
- Bruce A Nuclear
- robc&flute.candu.aecl.ca
-1191
- CS-Telecom
- Bertrand Velle
- bertrand.velle&csee-com.fr
-1192
- ICTV
- Ellen Fratzke
- efratzke&ictv.com
-1193
- CORE International Inc.
- Bill Cloud
- (407) 997-6033
-1194
- Mibs4You
- David T. Perkins
- dperkins&scruznet.com
-1195
- ITK
- Jan Elliger
- jan.elliger&itk.de
-1196
- Network Integrity, Inc.
- Mark Fox
- mfox&netint.com
-1197
- BlueLine Software, Inc.
- Paul K. Moyer
- moyer002&gold.tc.umn.edu
-1198
- Migrant Computing Services,Inc.
- Gil Nardo
- gil&netcom.com
-1199
- Linklaters & Paines
- Suheil Shahryar
- sshahrya&landp.co.uk
-1200
- EJV Partners, L.P.
- Shean-Guang Chang
- schang&ejv.com
-1201
- Guardeonic Solutions Ltd.
- Pearse Kennedy
- pearse.kennedy&guardeonic.com
-1202
- VARCOM Corporation
- Prathibha Boregowda or Judy Smith
- pboregowda&varcom.com or jsmith&varcom.com
-1203
- Equitel
- Marcelo Raseira
- m.raseira.sulbbs%ttbbs&ibase.org.br
-1204
- The Southern Company
- George Ellenburg
- gellenbr&southernco.com
-1205
- Dataproducts Corporation
- Ron Bergman
- rbergma&dpc.com
-1206
- National Electrical Manufacturers Association (NEMA)
- Bruce J. Schopp
- bru_schopp&nema.org
-1207
- RISCmanagement, Inc.
- Roger Hale
- roger&riscman.com
-1208
- GVC Corporation
- Timon Sloane
- timon&timonWare.com
-1209
- timonWare Inc.
- Timon Sloane
- timon&timonWare.com
-1210
- Capital Resources Computer Corporation
- Jeff Lee
- jeff&capres.com
-1211
- Storage Technology Corporation
- Dominique Ambach
- Dominique_Ambach&stortek.com
-1212
- Tadiran Telecom TTL.
- Gal Ben-Yair
- Gal.ben-yair&tadirantele.com
-1213
- NCP
- Reiner Walter
- rwa&ncp.de
-1214
- Operations Control Systems (OCS)
- Christine Young
- cyoung&ocsinc.com
-1215
- The NASDAQ Stock Market Inc.
- Hibbard Smith
- (203) 385-4580
-1216
- Tiernan Communications, Inc.
- Girish Chandran
- girish&tiernan.com
-1217
- Goldman, Sachs Company
- Steven Polinsky
- polins&gsco.com
-1218
- Advanced Telecommunications Modules Ltd
- William Stoye
- wrs&atml.co.uk
-1219
- Phoenix Data Communications
- Michel Robidoux
- phoenix&cam.org
-1220
- Quality Consulting Services
- Alan Boutelle
- alanb&quality.com
-1221
- MILAN
- Deh-Min Wu
- wu&fokus.gmd.de
-1222
- Instrumental Inc.
- Henry Newman
- hsn&instrumental.com
-1223
- Yellow Technology Services Inc.
- Martin Kline
- (913)344-5341
-1224
- Mier Communications Inc.
- Edwin E. Mier
- ed&mier.com
-1225
- Cable Services Group Inc.
- Jack Zhi
- j.zhi&gonix.gonix.com
-1226
- Forte Networks Inc.
- Mark Copley
- mhc&fortenet.com
-1227
- American Management Systems, Inc.
- Robert Lindsay
- robert_lindsay&mail.amsinc.com
-1228
- Choice Hotels Intl.
- Robert Peters
- robert&sunnet.chotel.com
-1229
- SEH Computertechnik Gm Rainer Ellerbrake
- re&sehgmbh.bi.eunet.de
- ---none---
-1230
- McAFee Associates Inc.
- Perry Smith
- pcs&cc.mcafee.com
-1231
- Network Intelligent Inc.
- Bob Bessin
- (415) 494-6473
-1232
- Luxcom Technologies, Inc.
- Tony Szanto
- (631) 825-3788
-1233
- ITRON Inc.
- Roger Cole
- rogersc&itron-ca.com
-1234
- Linkage Software Inc.
- Brian Kress
- briank&linkage.com
-1235
- Spardat AG
- Wolfgang Mader
- mader&telecom.at
-1236
- VeriFone Inc.
- Alejandro Chirife
- alejandro_c1&verifone.com
-1237
- Revco D.S., Inc.
- Paul Winkeler
- paulw&revco.com
-1238
- HRB Systems, Inc.
- Craig R. Watkins
- crw&icf.hrb.com
-1239
- Litton Fibercom
- Mark Robison
- robison&fibercom.com
-1240
- Silex Technology America, Inc. (formerly 'XCD, Incorporated')
- Lee Aydelotte
- laydelotte&silexamerica.com
-1241
- ProsjektLeveranser AS
- Rolf Frydenberg
- rolff&kinfix.no
-1242
- Halcyon Inc.
- Mark Notten
- mnotten&swi.com
-1243
- SBB
- Michel Buetschi
- michel.buetschi&sbb.ch
-1244
- LeuTek
- W. Kruck
- (0711) 790067
-1245
- Zeitnet, Inc
- Mario Garakani
- mario.garakani&zeitnet.com
-1246
- Visual Networks, Inc.
- Tom Nisbet
- nisbet&po.mctec.com
-1247
- Coronet Systems
- Ling Thio
- ling_thio&compuware.com
-1248
- SEIKO EPSON CORPORATION
- Nagahashi Toshinori
- nagahasi&hd.epson.co.jp
-1249
- DnH Technologies
- Aleksandar Simic
- aasimic&mobility.com
-1250
- Deluxe Data
- Mike Clemens
- mclemens&execpc.com
-1251
- Michael A. Okulski Inc.
- Mike Okulski
- mike&okulski.com
-1252
- Saber Software Corporation
- David Jackson
- (214) 361-8086
-1253
- Mission Systems, Inc.
- Mark Lo Chiano
- p00231&psilink.com
-1254
- Siemens Plessey Electronics Systems
- Terry Atkinson
- terence.atkinson&p1.sps.co.uk
-1255
- Applied Communications Inc,
- Al Doney
- /s=doneya/o=apcom/p=apcom.oma/admd=telemail/c=us/@sprint.com
-1256
- Transaction Technology, Inc.
- Bill Naylor
- naylor&tti.com
-1257
- HST Ltd
- Ricardo Moraes Akaki
- ricardo.araki&mpcbbs.ax.apc.org
-1258
- Michigan Technological University Onwuka
- Uchendu
- ouchendu&mtu.edu
-1259
- Next Level Communications
- James J. Song
- jsong&nlc.com
-1260
- Instinet Corp.
- John Funchion
- funchion&instinet.com
-1261
- Analog & Digital Systems Ltd.
- Brijesh Patel
- jay&ads.axcess.net.in
-1262
- Ansaldo Trasporti SpA
- Giovanni Sorrentino
- mibadm&ansaldo.it
-1263
- ECCI
- Scott Platenberg
- scottp&ecci.com
-1264
- Imatek Corporation
- Charlie Slater
- cslater&imatek.com
-1265
- PTT Telecom bv
- Heine Maring
- marin002&telecom.ptt.nl
-1266
- Data Race, Inc.
- Lee Ziegenhals
- lcz&datarace.com
-1267
- Network Safety Group, Inc.
- Les Biffle
- les&networksafety.com
-1268
- Application des Techniques Nouvelles en Electronique
- Michel Ricart
- mricart&dialup.francenet.fr
-1269
- MFS Communications Company
- Steve Feldman
- feldman&mfsdatanet.com
-1270
- Information Services Division
- Phil Draughon
- jpd&is.rpslmc.edu
-1271
- Ciena Corporation
- Wes Jones
- wjones&ciena.com
-1272
- Fujitsu Nexion
- Bill Anderson
- anderson&nexen.com
-1273
- Standard Networks, Inc
- Tony Perri
- tony&stdnet.com
-1274
- Scientific Research Corporation
- James F. Durkin
- jdurkin&scires.com
-1275
- micado SoftwareConsult GmbH
- Markus Michels
- Markus_Michels.MICADO&notes.compuserve.com
-1276
- Concert Management Services, Inc.
- Jim McWalters
- CONCERT/RSMPO02/mcwaltj%Concert_-_Reston_1&mcimail.com
-1277
- University of Delaware
- Adarsh Sethi
- sethi&cis.udel.edu
-1278
- Bias Consultancy Ltd.
- Marc Wilkinson
- marc&bias.com
-1279
- Micromuse Inc.
- Rob Cowart
- rcowart&micromuse.com
-1280
- Translink Systems
- Richard Fleming
- richard&finboro.demon.co.uk
-1281
- PI-NET
- Kirk Trafficante
- pinet&netcom.com
-1282
- Amber Wave Systems
- Bruce Kling
- bkling&amberwave.com
-1283
- Superior Electronics Group Inc.
- Bob Feather
- seggroup&packet.net
-1284
- Network Telemetrics Inc
- Jonathan Youngman
- jyoungman&telemtrx.com
-1285
- BSW-Data
- P.P. Stander
- philip&bsw.co.za
-1286
- ECI Telecom Ltd.
- Yuval Ben-Haim
- yuval&ecitele.com
-1287
- BroadVision
- Chuck Price
- cprice&broadvision.com
-1288
- ALFA, Inc.
- Jau-yang Chen
- cjy&alfa.com.tw
-1289
- TELEFONICA SISTEMAS, S.A.
- Enrique Le More
- elemore&ts.es
-1290
- Image Sciences, Inc.
- Al Marmora
- ajm&sail.iac.net
-1291
- MITSUBISHI ELECTRIC INFORMATION NETWORK CORPORATION (MIND)
- CHIKAO IMAMICHI
- imamichi&mind.melco.co.jp
-1292
- Central Flow Management Unit
- Ramesh Rao
- ramesh.rao&eurocontrol.be
-1293
- Woods Hole Oceanographic Institution
- Andrew R. Maffei
- amaffei&whoi.edu
-1294
- Raptor Systems, Inc.
- Alan Kirby
- akirby&raptor.com
-1295
- TeleLink Technologies Inc.
- Dean Neumann
- dneum&telelink.com
-1296
- First Virtual Corporation
- K.D. Bindra
- kd&fvc.com
-1297
- Network Services Group
- Graham King
- ukking&aol.com
-1298
- SilCom Manufacturing Technology Inc.
- Brian Munshaw
- brian.munshaw&canrem.com
-1299
- NETSOFT Inc.
- Tim Su
- paullee&cameonet.cameo.com.tw
-1300
- Fidelity Investments
- AhLek Chin
- ahlek.chin&fmr.com
-1301
- Telrad Telecommunications
- Eli Greenberg
- greenberg&moon.elex.co.il
-1302
- VERITAS Software Corp.
- Marcus Porterfield
- marcus.porterfield&veritas.com
-1303
- LeeMah DataCom Security Corporation
- Cedric Hui
- chui&cs.umb.edu
-1304
- Racemi, Inc.
- Luis P Caamano
- lpc&racemi.com
-1305
- USAir, Inc
- Loren Cain
- loren&usair.com
-1306
- Jet Propulsion Laboratory
- Paul Springer
- pls&jpl.nasa.gov
-1307
- ABIT Co
- Matjaz Vrecko
- vrecko&abit.co.jp
-1308
- Dataplex Pty. Ltd.
- Warwick Freeman
- wef&dataplex.com.au
-1309
- Creative Interaction Technologies, Inc.
- Dave Neal
- daven&ashwin.com
-1310
- AimNet Solutions
- Bill Myerson
- wmyerson&aimnetsolutions.com
-1311
- Unassigned
- Returned 18 March 2004
- ---none---
-1312
- Klos Technologies, Inc.
- Patrick Klos
- klos&klos.com
-1313
- ACOTEC
- Martin Streller
- mst&acotec.de
-1314
- Datacomm Management Sciences Inc.
- Dennis Vane
- 70372.2235&compuserve.com
-1315
- MG-SOFT d.o.o.
- Matjaz Vrecko
- matjaz&mg-soft.si
-1316
- Plessey Tellumat SA
- Eddie Theart
- etheart&plessey.co.za
-1317
- PaineWebber, Inc.
- Sean Coates
- coates&pwj.com
-1318
- DATASYS Ltd.
- Michael Kodet
- kodet&syscae.cz
-1319
- QVC Inc.
- John W. Mehl
- John_Mehl&QVC.Com
-1320
- IPL Systems
- Kevin Fitzgerald
- kdf&bu.edu
-1321
- Pacific Micro Data, Inc.
- Larry Sternaman
- mloomis&ix.netcom.com
-1322
- DeskNet Systems, Inc
- Ajay Joseph
- ajay&desknet.com
-1323
- TC Technologies
- Murray Cockerell
- murrayc&tctech.com.au
-1324
- Racotek, Inc.
- Baruch Jamilly
- (612) 832-9800
-1325
- CelsiusTech AB
- Leif Amnefelt
- leam&celsiustech.se
-1326
- Xing Technology Corp.
- Jon Walker
- jwalker&xingtech.com
-1327
- dZine n.v.
- Dirk Ghekiere
- 100273,1157&compuserve.com
-1328
- Electronic merchant Services, Inc.
- James B. Moore
- JBM&SCEMS.COM
-1329
- Linmor Information Systems Management, Inc.
- Thomas Winkler
- thomas.winkler&linmor.com
-1330
- ABL Canada Inc.
- Marc Johnston
- marc.johnston&abl.ca
-1331
- University of Coimbra
- Fernando P. L. Boavida Fernandes
- boavida&mercurio.uc.pt
-1332
- Iskratel, Ltd., Telecommunications Systems
- Ante Juros
- juros&iskratel.si
-1333
- ISA Co.,Ltd.
- Koji Yanagihara
- koji&isa-j.co.jp
-1334
- CONNECT, Inc.
- Greg Kling
- greg&connectrf.com
-1335
- Digital Video
- Tom Georges
- tom.georges&antec.com
-1336
- InterVoice, Inc.
- Brian Spraetz
- bspraetz&intervoice.com
-1337
- Liveware Tecnologia a Servico a Ltda
- Fabio Minoru Tanada
- tanada&lvw.ftpt.br
-1338
- Precept Software, Inc.
- Karl Auerbach
- karl&precept.com
-1339
- Heroix Corporation
- Sameer J. Apte
- sja&sja.heroix.com
-1340
- Holland House B.V.
- Johan Harmsen
- johan&holhouse.nl
-1341
- Dedalus Engenharia S/C Ltda
- Philippe de M. Sevestre
- dedalus.engenharia&dialdata.com.br
-1342
- GEC ALSTHOM I.T.
- Terry McCracken
- terrym&nsg.com.au
-1343
- Deutsches Elektronen-Synchrotron
- Kars Ohrenberg
- Kars.Ohrenberg&desy.de
-1344
- Avotus Corporation
- Ed Vannatter
- ed.vannatter&avotus.com
-1345
- Dacoll Ltd
- Dan McDougall
- dan&stonelaw.demon.co.uk
-1346
- NetCorp Inc.
- Yanick Dumas
- Yanick&NetCorp.com
-1347
- KYOCERA Corporation
- Shinji Mochizuki
- SUPERVISOR&KYOCERA.CCMAIL.COMPUSERVE.COM
-1348
- The Longaberger Company
- George Haller
- 75452.376&compuserve.com
-1349
- ILEX
- J.Dominique GUILLEMET
- dodo&ilex.remcomp.fr
-1350
- Conservation Through Innovation, Limited
- Doug Hibberd
- dhibberd&cti-ltd.com
-1351
- SeeBeyond Technology Corporation
- Pete Wenzel
- pete&seebeyond.com
-1352
- Multex Systems, Inc.
- Alex Rosin
- alexr&multexsys.com
-1353
- Gambit Communications, Inc.
- Uwe Zimmermann
- gambit&gti.com
-1354
- Central Data Corporation
- Jeff Randall
- randall&cd.com
-1355
- CompuCom Systems, Inc.
- Timothy J. Perna
- tperna&compucom.com
-1356
- Generex Systems GMBH
- F.Blettenberger
- 100334.1263&compuserve.com
-1357
- Periphonics Corporation
- John S. Muller
- john&peri.com
-1358
- Freddie Mac
- Bruce E. Cochran
- Bruce_Cochran&freddiemac.com
-1359
- Digital Equipment bv
- Henk van Steeg
- henk.van.steeg&uto.mts.dec.com
-1360
- PhoneLink plc
- Nick James
- Nickj&Phonelink.com
-1361
- Voice-Tel Enterprises, Inc.
- Jay Parekh
- vnet&ix.netcom.com
-1362
- AUDILOG
- Laurent EYRAUD
- eyraud&audilog.fr
-1363
- SanRex Corporation
- Carey O'Donnell
- sanrex&aol.com
-1364
- Chloride
- Jean Phillippe Gallon
- 33-1-60-82-04-04
-1365
- GA Systems Ltd
- Garth Eaglesfield
- geaglesfield&gasystems.co.uk
-1366
- Microdyne Corporation
- Evan Wheeler
- wheelere&mcdy.com
-1367
- Boston College
- Eileen Shepard
- eileen&bc.edu
-1368
- Orange (formerly 'France Telecom')
- Olivier Dubuisson
- Olivier.Dubuisson&orange.com
-1369
- Stonesoft Corp
- Jukka Maki-Kullas
- juke&stone.fi
-1370
- A. G. Edwards & Sons, Inc.
- Mike Benoist
- benoisme&hqnmon1.agedwards.com
-1371
- Attachmate Corp.
- Brian L. Henry
- brianhe&atm.com
-1372
- LSI Logic
- Gary Bridgewater
- gjb&lsil.com
-1373
- interWAVE Communications, Inc.
- Bruce Nelson
- bruce&iwv.com
-1374
- mdl-Consult
- Marc De Loore
- marcd&mdl.be
-1375
- Frobbit AB (formerly 'Firma PAF')
- Patrik Fältström
- info&frobbit.se
-1376
- Nashoba Networks Inc
- Rich Curran
- rcurran&nashoba.com
-1377
- Comedia Information AB
- Rickard Schoultz
- schoultz&comedia.se
-1378
- Harvey Mudd College
- Mike Erlinger
- mike&cs.hmc.edu
-1379
- First National Bank of Chicago
- Mark J. Conroy
- mark.conroy&fnb.sprint.com
-1380
- Department of National Defence (Canada)
- Larry Bonin
- burke&alex.disem.dnd.ca
-1381
- CBM Technologies, Inc.
- George Grenley
- grenley&aol.com
-1382
- InterProc Inc.
- Frank W. Hansen
- fhansen&noghri.cycare.com
-1383
- Glenayre R&D Inc.
- Joseph Tosey
- jtosey&glenayre.com
-1384
- Telenet GmbH Kommunikationssysteme
- Mr. H. Uebelacker
- uebelacker&muc.telenet.de
-1385
- Softlab GmbH
- Martin Keller
- kem&softlab.de
-1386
- Storage Computer Corporation
- William R. Funk, III
- funk&world.std.com
-1387
- CellStack Systems Ltd
- Afzal Haider or Nigel Squibb
- ahaider&cellstack.com, nsquibb&cellstack.com
-1388
- Viewgate Networks
- Dominic Fisk
- Dominic.Fisk&viewgate.com
-1389
- Simple Network Magic Corporation
- Daris A Nevil
- dnevil&snmc.com
-1390
- Stallion Technologies Pty Ltd
- Christopher Biggs
- chris&stallion.oz.au
-1391
- Loan System
- Yann Guernion
- 100135.426&compuserve.com
-1392
- DLR - Deutsche Forschungsanstalt fuer Luft- und Raumfahrt e.V.
- Mr. Klaus Bernhardt
- klaus.bernhardt&dlr.de
-1393
- ICRA, Inc.
- Michael R. Wade
- MWADE&ibm.com
-1394
- Probita
- Steve Johnson
- johnson&probita.com
-1395
- NEXOR Ltd
- Colin Robbins
- c.robbins&nexor.co.uk
-1396
- American Internation Facsimile Products
- Tom Denny
- denny&aifp.com
-1397
- Tellabs
- Stuart Barr
- stuart.barr&tellabs.com
-1398
- DATAX
- Casier Fred
- 100142.2571&compuserve.com
-1399
- IntelliSys Corporation
- Pauline Sha
- 76600.114&compuserve.com
-1400
- Sandia National Laboratories
- Diana Eichert
- deicher&sandia.gov
-1401
- Synerdyne Corp.
- Dan Burns
- 310-453-0404
-1402
- UNICOM Electric, Inc.
- Christopher Lin
- jlo&interserv.com
-1403
- Central Design Systems Inc.
- Bala Parthasarathy
- bala&cdsi.com
-1404
- The Silk Road Group, Ltd.
- Tim Bass
- bass&silkroad.com
-1405
- Positive Computing Concepts
- Russel Duncan
- 100026.1001&compuserve.com
-1406
- First Data Resources
- Bobbi Durbin
- bdurbin&marlton.1dc.com
-1407
- INETCO Systems Limited
- Paul A. Girone
- paul_girone&inetco.com
-1408
- NTT Mobile Communications Network Inc.
- Hideaki Nishio
- nishio&trans.nttdocomo.co.jp
-1409
- Target Stores
- Tim Hadden
- tim_hadden&target.e-mail.com
-1410
- Advanced Peripherals Technologies, Inc.
- Yoshio Kurishita
- kurishi&mb.tokyo.infoweb.or.jp
-1411
- Juniper Networks/Funk Software
- Kenneth Culbert
- kculbert&juniper.net
-1412
- DunsGate, a Dun and Bradstreet Company
- David Willen
- WILLENDC&acm.org
-1413
- AFP
- Christophe MONGARDIEN
- mykeeper&afp.com
-1414
- VertexRSI, Controls and Structures
- TJ Boswell
- tj.boswell&tripointglobal.com
-1415
- The Williams Companies, Inc.
- Josh Garrett
- CertificateAdministrator&Williams.com
-1416
- ASP Technologies, Inc.
- Phil Hutchinson
- VantageASP&aol.com
-1417
- Philips Communication Systems
- Jan Maat
- Jan.Maat&philips.com
-1418
- Dataprobe Inc.
- David Weiss
- dweiss&dataprobe.com
-1419
- ASTROCOM Corp.
- DONALD A. LUCAS
- 612-378-7800
-1420
- CSTI(Communication Systems Technology, Inc.)
- Ronald P.Ward
- rward&csti-md.com
-1421
- Sprint
- Chuck Irvine
- chuck.irvine&mail.sprint.com
-1422
- Syntax
- Joseph A. Dudar
- joe&syntax.com
-1423
- LIGHT-INFOCON
- Mr. Santos Farias
- Katyusco&cgsoft.softex.br
-1424
- Performance Technology, Inc.
- Lewis Donzis
- lew&perftech.com
-1425
- CXR
- Didier ANA
- didier.ana&cxr.fr
-1426
- Amir Technology Labs
- Derek Palma
- dpalma&atlabs.com
-1427
- ISOCOR
- Marcel DePaolis
- marcel&isocor.com
-1428
- Array Technology Corportion
- Mark Schnorbeger
- postmaster&arraytech.com
-1429
- Scientific-Atlanta, Inc.
- Tamsen Pechman
- Tamsen.Pechman&SciAtl.com
-1430
- GammaTech, Inc.
- Benny N. Ormson
- ormson&ionet.net
-1431
- Telkom SA Limited
- Victor Wilson
- wilsonvm&telkom.co.za
-1432
- CIREL SYSTEMES
- Isabelle REGLEY
- 100142.443&compuserve.com
-1433
- Redflex Limited Australia
- Eric Phan
- epyl&mulga.cs.mu.oz.au
-1434
- Hermes - Enterprise Messaging LTD
- Shaul Marcus
- shaul&hermes.co.il
-1435
- Acacia Networks Inc.
- Steve DesRochers
- sdesrochers&acacianet.com
-1436
- NATIONAL AUSTRALIA BANK Ltd.
- Mr. Lindsay Hall
- lindsay&nabaus.com.au
-1437
- SineTec Technology Co.,Ltd.
- Louis Fu
- louis&rd.sinetec.com.tw
-1438
- Applied Innovation Inc.
- Engineering MIB Administrator
- snmp&aiinet.com
-1439
- Arizona State University
- Hosoon Ku
- Hosoon.Ku&asu.edu
-1440
- Xionics Document Technologies, Inc.
- Robert McComiskie
- rmccomiskie&xionics.com
-1441
- Southern Information System Inc.
- Dr.Ruey-der Lou
- idps74&shts.seed.net.tw
-1442
- Nebula Consultants Inc.
- Peter Schmelcher
- nebula&telus.net
-1443
- SITRE, SA
- PEDRO CALERO RODRIGUEZ
- sitre&gapd.id.es
-1444
- Paradigm Technology Ltd
- Roland Heymanns
- roland&paradigm.co.nz
-1445
- Telub AB
- Morgan Svensson
- morgan.svensson&telub.se
-1446
- Virginia Polytechnic Institute and State University
- Phil Benchoff
- hostmaster&vt.edu
-1447
- Martis Oy
- Seppo Hirviniemi
- Seppo.Hirviniemi&martis.fi
-1448
- ISKRA TRANSMISSION
- Lado Morela
- Lado.Morela&guest.arnes.si
-1449
- QUALCOMM Incorporated
- Frank Quick
- fquick&qualcomm.com
-1450
- AOL / Netscape Communications Corp.
- Bill Burns
- oid-admin&aol.net
-1451
- BellSouth Wireless, Inc.
- Chris Hamilton
- hamilton.chris&bwi.bls.com
-1452
- NUKO Information Systems, Inc.
- Rajesh Raman
- nuko&netcom.com
-1453
- IPC Information Systems, Inc.
- Kenneth Lockhart
- lockhark&ipc.com
-1454
- Estudios y Proyectos de Telecomunicacion, S.A.
- Bruno Alonso Plaza
- 100746.3074&compuserve.com
-1455
- Winstar Wireless
- Bob Hannan
- bhannan&winstar.com
-1456
- Terayon Corp.
- Amir Fuhrmann
- amir&terayon.com
-1457
- CyberGuard CorporationDavid Rhein
-
- David.Rhein&mail.cybg.com
-1458
- AMCC
- Todd Martin
- todd.martin&amcc.com
-1459
- Jupiter Technology, Inc.
- Bill Kwan
- billk&jti.com
-1460
- Delphi Internet Services
- Diego Cassinera
- diego&newscorp.com
-1461
- Kesmai Corporation
- Diego Cassinera
- diego&newscorp.com
-1462
- Compact Devices, Inc.
- John Bartas
- jbartas&devices.com
-1463
- OPTIQUEST
- ERIK WILLEY
- optiques&wdc.net
-1464
- Loral Defense Systems-Eagan
- Marvin Kubischta
- mkubisch&eag.unisysgsg.com
-1465
- OnRamp Technologies
- Carl W. Kalbfleisch
- cwk&onramp.net
-1466
- Mark Wahl
- Mark Wahl
- M.Wahl&isode.com
-1467
- Loran International Technologies, Inc.
- David Schenkel
- schenkel&loran.com
-1468
- S & S International PLC
- Paul Gartside
- pgartside&sands.uk.com
-1469
- Atlantech Technologies Ltd.
- Robin A Hill
- robinh&atlantec.demon.co.uk
-1470
- IN-SNEC
- Patrick Lamourette
- fauquet&calvanet.calvacom.fr
-1471
- Melita International Corporation
- Bob Scott
- rescott&melita.com
-1472
- Sharp Laboratories of America
- Randy Turner
- turnerr&sharpsla.com
-1473
- Groupe Decan
- Nicolas lacouture
- (33)78-64-31-00
-1474
- Spectronics Micro Systems Limited
- David Griffiths
- davidg&spectronics.co.uk
-1475
- varetis COMMUNICATIONS GmbH
- Alexander Osterloh
- Alexander.Osterloh&varetis.de
-1476
- ION Networks, Inc.
- Zoran Lazarevic
- Zoran.Lazarevic&ion-networks.com
-1477
- Telegate GlobalAccess Technology Ltd.
- Amir Wassermann
- Daeg&zeus.datasrv.co.il
-1478
- Merrill Lynch & Co., Inc.
- Robert F. Marano
- rmarano&ml.com
-1479
- JCPenney Co., Inc.
- Edward Cox
- ecox&jcpenney.com
-1480
- The Torrington Company
- Robert Harwood
- harwood&hydra.torrington.com
-1481
- GS-ProActive
- Giovanni Sciavicco
- giovanni_sciavicco&yahoo.com
-1482
- BarcoNet
- Jan Colpaert
- jan.colpaert&barconet.com
-1483
- vortex Computersysteme GmbH
- Vitus Jensen
- vitus&vortex.de
-1484
- DataFusion Systems (Pty) Ltd
- Mr. H Dijkman
- dijkman&stb.dfs.co.za
-1485
- Allen & Overy
- Aaron Gibbs
- aaron.gibbs&AllenOvery.com
-1486
- Atlantic Systems Group
- Roy Nicholl
- Roy.Nicholl&ASG.unb.ca
-1487
- Kongsberg Informasjonskontroll AS
- Paal Hoff
- ph&inko.no
-1488
- ELTECO a.s.
- Ing. Miroslav Jergus
- elteco&uvt.utc.sk
-1489
- Schlumberger Limited
- Matthew D. Smith
- hostmaster&slb.com
-1490
- CNI Communications Network International GmbH
- Dr. Michael Bauer
- michael.Bauer&cni.net
-1491
- M&C Systems, Inc.
- Seth A. Levy
- mcsys&ix.netcom.com
-1492
- OM Systems International (OMSI) Mats
- Andersson
- mats.andersson&om.se
-1493
- DAVIC (Digital Audio-Visual Council) Richard
- Lau
- cll&nyquist.bellcore.com
-1494
- ISM GmbH
- Bernd Richte
- brichter&ism.mhs.compuserve.com
-1495
- E.F. Johnson Co.
- Dan Bown
- dbown&efjohnson.com
-1496
- Baranof Software, Inc.
- Ben Littauer
- littauer&baranof.com
-1497
- University of Texas Houston
- William A. Weems
- wweems&oac.hsc.uth.tmc.edu
-1498
- Ukiah Software Solutions/EDS/HDS
- Tim Landers
- tlanders&hds.eds.com
-1499
- STERIA
- Christian Jamin
- c.jamin&X400.steria.fr
-1500
- ATI Australia Pty Limited
- Peter Choquenot
- pchoq@@jolt.mpx.com.au
-1501
- The Aerospace Corporation Michael
- Erlinger
- erlinger&aero.org
-1502
- Orckit Communications Ltd.
- Nimrod Ben-Natan
- nimrod&orckit.co.il
-1503
- Tertio Limited
- James Ho
- jamesho&tertio.co.uk
-1504
- Comsoft Solutions GmbH (formerly 'COMSOFT GmbH')
- Frank Kulasik
- frank.kulasik&comsoft.aero
-1505
- Power Center Software LLC
- Jay Whitney
- jw&powercenter.com
-1506
- Technologic, Inc.
- Perry Flinn
- perry&tlogic.com
-1507
- Vertex Data Science Limited
- Norman Fern
- norman_fern&htstamp.demon.co.uk
-1508
- ESIGETEL
- Nader Soukouti
- soukouti&esigetel.fr
-1509
- Illinois Business Training Center Weixiong
- Ho
- wxho&nastg.gsfc.nasa.gov
-1510
- Arris Networks, Inc.
- Eric Peterson
- epeterson&casc.com
-1511
- TeamQuest Corporation
- Jon Hill
- jdh&teamquest.com
-1512
- Sentient Networks
- Jeffrey Price
- jprice&sentientnet.com
-1513
- Skyrr hf.
- Helgi Helgason
- helgi.helgason&skyrr.is
-1514
- Tecnologia y Gestion de la Innovacion
- Manuel Lopez-Martin
- mlm&tgi.es
-1515
- Connector GmbH
- Matthias Reinwarth
- Matthias.Reinwarth&connector.de
-1516
- Kaspia Systems, Inc.
- Jeff Yarnell
- jeffya&kaspia.com
-1517
- SmithKline Beecham
- Campbell White
- 0181-975-3030
-1518
- NetCentric Corp.
- Gilbert Benghiat
- gilbert.benghiat&netcentric.com
-1519
- ATecoM GmbH
- Michael Joost
- joost&atecom.de
-1520
- Citibank Canada
- Mike Rothwell
- 416-941-6007
-1521
- MMS (Matra Marconi Space)
- PLANCHOU Fabrice
- planchou&mms.matra-espace.fr
-1522
- Intermedia Communications, Inc.
- Ray Tumi
- RMTUMI&intermedia.com
-1523
- School of Computer Science, University Science of Malaysia
- Mr. Sureswaran Ramadass
- sures&cs.usm.my
-1524
- University of Limerick
- Mr. Brian Adley
- brian.adley&ul.ie
-1525
- ACTANE
- Jean Vincent
- actane&pacwan.mm-soft.fr
-1526
- Collaborative Information Technology Research Institute(CITRI)
- Nam Hong Cheng
- hong&catt.citri.edu.au
-1527
- Intermedium A/S
- Peter Shorty
- intermed&inet.uni-c.dk
-1528
- ANS CO+RE Systems, Inc.
- Dennis Shiao
- shiao&ans.net
-1529
- UUNET Technologies, Inc.
- Jim Potter
- jim.potter&mci.com
-1530
- Telesciences, Inc.
- Hitesh Patel
- h.patel&telesciences.com
-1531
- QSC Audio Products
- Ron Neely
- RON_NEELY&qscaudio.com
-1532
- Australian Department of Employment, Education and Training
- Peter McMahon
- peter_mcmahon&vnet.ibm.com
-1533
- Network Media Communications Ltd.
- Martin Butterworth
- mb&netmc.com
-1534
- Sodalia
- Giovanni Cortese
- cortese&sodalia.sodalia.it
-1535
- Innovative Concepts, Inc.
- Andy Feldstein
- andy&innocon.com
-1536
- Japan Computer Industry Inc.
- Yuji Sasaki
- kyagi&po.iijnet.or.jp
-1537
- Telogy Networks, Inc.
- Oren D. Eisner
- oeisner&telogy.com
-1538
- Merck & Company, Inc.
- Timothy Chamberlin
- tim_chamberlin&merck.com
-1539
- GeoTel Communications Corporation
- Jerry Stern
- jerrys&geotel.com
-1540
- Sun Alliance (UK)
- Peter Lancaster
- +44 1403 234437
-1541
- AG Communication Systems
- Pratima Shah
- shahp&agcs.com
-1542
- Pivotal Networking, Inc.
- Francis Huang
- pivotal&netcom.com
-1543
- TSI TelSys Inc.
- Jay Costenbader
- mib-info&tsi-telsys.com
-1544
- Harmonic Systems Incorporated
- Timon Sloane
- timon&timonware.com
-1545
- ASTRONET Corporation
- Chester Brummett
- cbrummet&astronet.mea.com
-1546
- Frontec
- Erik Steinholtz
- Erik.Steinholtz&sth.frontec.se
-1547
- NetVision
- Anne Gowdy
- gowdy&ix.netcom.com
-1548
- FlowPoint Corporation
- Philippe Roger
- roger&flowpoint.com
-1549
- Allied Data Technologies
- Peter Kuiper
- peter&tron.nl
-1550
- Nuera Communication Inc.
- Kuogee Hsieh
- kgh&pcsi.cirrus.com
-1551
- Radnet Ltd.
- Osnat Cogan
- radnet&radmail.rad.co.il
-1552
- Océ Technologies BV
- Rob van den Tillaart
- standards&oce.com
-1553
- Air France
- Chantal NEU
- neuch&airfrance.fr
-1554
- Communications & Power Engineering, Inc.
- Ken Dayton
- kd&compwr.com
-1555
- Charter Systems
- Michael Williams
- mwilliams&charter.com
-1556
- Performance Technologies, Inc.
- Rayomnd C. Ward
- rcw&pt.com
-1557
- Paragon Networks International
- Joseph Welfeld
- jwelfeld&howl.com
-1558
- Skog-Data AS
- Trond Karlsen
- tk&skogdata.no
-1559
- mitec a/s
- Arne-J=F8rgen Auberg
- mitec&sn.no
-1560
- THOMSON-CSF / Departement Reseaux d'Entreprise
- Eric BOUCHER
- eric.boucher&rcc.thomson.fr
-1561
- Ipsilon Networks, Inc.
- Joe Wei
- jwei&ipsilon.com
-1562
- Kingston Technology Company
- Barry Man
- barry_man&kingston.com
-1563
- Harmonic Lightwaves
- Abi Shilon
- abi&harmonic.co.il
-1564
- InterActive Digital Solutions
- Rajesh Raman
- rraman&sgi.com
-1565
- Coactive Aesthetics, Inc.
- Dan Hennage
- dan&coactive.com
-1566
- Tech Data Corporation
- Michael Brave
- mbrave&techdata.com
-1567
- Z-Com
- Huang Hsuang Wang
- hhwang&center.zcom.com.tw
-1568
- COTEP
- Didier VECTEN
- 100331.1626&COMPUSERVE.COM
-1569
- Raytheon Company
- Laura Kohler
- lakohler&raytheon.com
-1570
- Telesend Inc.
- Craig Sharper
- csharper&telesend.com
-1571
- NCC
- Nathan Guedalia
- natig&ncc.co.il
-1572
- Forte Software, Inc.
- Geoff Puterbaugh
- geoff&forte.com
-1573
- McAfee (formerly 'Secure Computing Corporation')
- Paul Meyer
- Paul_Meyer&mcafee.com
-1574
- BEZEQ
- Tom Lorber
- ltomy&dialup.netvision.net.il
-1575
- TU Braunschweig
- Jan-Marc Pilawa
- noc&tu-bs.de
-1576
- Stac Inc.
- Laurence Church
- lchurch&stac.com
-1577
- StarNet Communications
- Christopher Shepherd
- belgo&winternet.com
-1578
- Universidade do Minho
- Dr Vasco Freitas
- vf&di.uminho.pt
-1579
- Department of Computer Science, University of Liverpool
- Dave Shield
- D.T.Shield&csc.liv.ac.uk
-1580
- Tekram Technology, Ltd.
- Mr. Joseph Kuo
- jkuo&tekram.com.tw
-1581
- RATP
- Pierre MARTIN
- pma&ratp.fr
-1582
- Rainbow Diamond Limited
- Frank O'Dwyer
- fod&brd.ie
-1583
- Magellan Communications, Inc
- Paul Stone
- paul&milestone.com
-1584
- Bay Networks Incorporated
- Steven P. Onishi
- sonishi&BayNetworks.com
-1585
- Quantitative Data Systems (QDS)
- Joe R. Lindsay Jr.
- JLindsay&QDS.COM
-1586
- ESYS Limited
- Mark Gamble
- mgamble&esys.co.uk
-1587
- Switched Network Technologies (SNT)
- Bob Breitenstein
- bstein&sntc.com
-1588
- Brocade Communications Systems, Inc.
- Scott Kipp
- skipp&brocade.com
-1589
- Computer Resources International A/S (CRI)
- Ole Rieck Sorensen
- ors&cri.dk
-1590
- Luchtverkeersleiding Nederland
- Antony Verheijen
- administrative&lvnl.nl
-1591
- GTIL
- Yakov Roitman
- yakovr&pst.co.il
-1592
- XactLabs Corporation
- Bill Carroll
- billc&xactlabs.com
-1593
- Quest Software, Inc. (formerly 'NetPro Computing, Inc.')
- Iana Administrator
- iana&quest.com
-1594
- TELESYNC
- Fred R Stearns
- frs&mindspring.com
-1595
- ewt breitbandnetze gmbh
- Thomas Anders
- thomas.anders&ewt-bn.de
-1596
- INS GmbH
- Andreas Frackowiak
- af&ins.de
-1597
- Distributed Processing Technology
- Joseph A. Ballard
- ballard&dpt.com
-1598
- Tivoli Systems Inc.
- Greg Kattawar
- greg.kattawar&tivoli.com
-1599
- Network Management Technologies
- Mark Hammett
- mhammett&nmt.com.au
-1600
- SIRTI
- Mr. Angelo ZUCCHETI
- A.Zucchetti&sirti.it
-1601
- TASKE Technology Inc.
- Dennis Johns
- dennis&taske.com
-1602
- CANON Inc.
- Masatoshi Otani
- otani&cptd.canon.co.jp
-1603
- Systems and Synchronous, Inc.
- Dominic D. Ricci
- ddr&ssinc.com
-1604
- XFER International
- Fred Champlain
- fred&xfer.com
-1605
- Scandpower A/S
- Bjorn Brevig
- Bjorn.Brevig&halden.scandpower.no
-1606
- Consultancy & Projects Group srl
- Monica Lausi
- monica&cpg.it
-1607
- STS Technologies, Inc.
- Scott Chaney
- ststech&icon-stl.net
-1608
- Mylex Corporation
- Vytla Chandramouli
- mouli&mylex.com
-1609
- CRYPTOCard Corporation
- Tony Walker
- tony&cryptocard.com
-1610
- LXE, Inc.
- Don Hall
- dhh2347&lxe.com
-1611
- BDM International, Inc.
- John P. Crouse
- jcrouse&bdm.com
-1612
- Spacenet Inc.
- Alan Schneider
- alan.schneider&spacenet.com
-1613
- Datanet GmbH
- Mr. Juraj Synak
- juraj&datanet.co.at
-1614
- Opcom, Inc.
- Terry O'Neal
- opcomeng&swbell.net
-1615
- Mlink Internet Inc.
- Patrick Bernier
- pat&4p.com
-1616
- SR-Telecom Inc.
- Michael A. Antonelli
- michael_antonelli&srtelecom.com
-1617
- Net Partners Inc.
- Deepak Khosla
- dkhosla&npartners.com
-1618
- Peek Traffic - Transyt Corp.
- Robert De Roche
- Robert2161&aol.com
-1619
- Comverse Information Systems
- Carlo San Andres
- Carlo_San_Andres&Comverse.com
-1620
- Data Comm for Business, Inc.
- John McCain
- jmccain&dcbnet.com
-1621
- CYBEC Pty. Ltd.
- Jia Dong HUANG
- 100240.3004&compuserve.com
-1622
- Mitsui Knowledge Industry Co.,Ltd.
- Daisuke Kumada
- kumada&pc.mki.co.jp
-1623
- Tech Laboratories, Inc.
- Pierre Bergeron
- pierrebergeron&techlabsinc.com
-1624
- Blockade Systems Corp.
- Fino Napoleone
- fino.napoleone&blockade.com
-1625
- Nixu Oy
- Tuomas Mettanen
- sysadmin-root&nixu.com
-1626
- Australian Software Innovations (Services) Pty. Ltd.
- Andrew Campbell
- andrew&asi.oz.au
-1627
- Omicron Telesystems Inc.
- Martin Gadbois
- mgadb&ibm.net
-1628
- DEMON Internet Ltd.
- Ashley Burston
- ashleyb&demon.net
-1629
- PB Farradyne, Inc.
- Alan J. Ungar
- UngarA&farradyne.com
-1630
- Telos Corporation Sharon
- Sutherlin
- sharon.sutherlin&telos.com
-1631
- Manage Information Technologies
- Kim N. Le
- 72124.2250&compuserve.com
-1632
- Harlow Butler Broking Services Ltd.
- Kevin McCarthy
- +44 171 407 5555 x 5246
-1633
- Eurologic Systems Ltd
- Brian Meagher
- eurologic&attmail.com
-1634
- Telco Research Corporation
- Bizhan Ghavami
- ghavami&telcores.com
-1635
- Mercedes-Benz AG
- Dr. Martin Bosch
- Martin.Bosch&Stgt.Mercedes-Benz.com
-1636
- HOB GmbH & Co. KG - HOB Germany
- Richard Wunderlich
- richard.wunderlich&hob.de
-1637
- NOAA
- Ken Sragg
- ksragg&sao.noaa.gov
-1638
- Cornerstone Software
- Jennifer Parent
- JenniferParent&corsof.com
-1639
- Wink Communications
- Dave Brubeck
- dave.brubeck&wink.com
-1640
- Thomson Electronic Information Resources (TEIR)
- John Roberts
- jroberts&teir.com
-1641
- HITT Holland Institute of Traffic Technology B.V.
- C. van den Doel
- vddoel&hitt.nl
-1642
- KPMG
- Richard Ellis
- richard.ellis&kpmg.co.uk
-1643
- Loral Federal Systems
- Mike Gulden
- mgulden&lfs.loral.com
-1644
- S.I.A.- Societa Interbancaria per l'Automazione
- Fiorenzo Claus
- claus&sia.it
-1645
- United States Cellular Corp.
- Curtis Kowalski
- kowalski&uscc.com
-1646
- AMPER DATOS S.A.
- Angel Miguel Herrero
- 34-1-8040909
-1647
- Carelcomp Forest Oy
- Rauno Hujanen
- Rauno.Hujanen&im.ccfo.carel.fi
-1648
- Open Environment Australia
- Geoff Bullen
- gbullen&jarrah.com.au
-1649
- Integrated Telecom Technology, Inc.
- Suresh Rangachar
- suresh&igt.com
-1650
- Langner Gesellschaft fuer Datentechnik mbH
- Heiko Bobzin
- hb&langner.com
-1651
- Wayne State University
- Mark Murphy
- aa0028&wayne.edu
-1652
- SICC (SsangYong Information & Communications Corp.)
- Mi-Young, Lee
- traum&toody.sicc.co.kr
-1653
- THOMSON - CSF
- De Zaeytydt
- 33 1 69 33 00 47
-1654
- Teleconnect Dresden GmbH
- Andreas Hanßke
- hana&teleconnect.de
-1655
- Panorama Software Inc.
- Bill Brookshire
- bbrooksh&pansoft.com
-1656
- CompuNet Systemhaus GmbH
- Heiko Vogeler
- hvo&compunet.de
-1657
- JAPAN TELECOM CO.,LTD.
- Seiji Kuroda
- kuroda&japan-telecom.co.jp
-1658
- TechForce Corporation
- Mark Dauscher
- mdauscher&techforce.com
-1659
- Granite Systems Inc.
- Michael Fine
- mfine&arp.com
-1660
- Bit Incorporated
- Tom Alexander
- talex&bitinc.com
-1661
- Companhia de Informatica do Parana - Celepar
- Armando Rech Filho
- armando&lepus.celepar.br
-1662
- Rockwell International Corporation
- Mary Vogel
- mcvogel&corp.rockwell.com
-1663
- Ancor Communications
- Bently H. Preece
- benp&ancor.com
-1664
- Royal Institute of Technology, Sweden (KTH)
- Rickard Schoultz
- staff&kth.se
-1665
- SUNET, Swedish University Network
- Rickard Schoultz
- staff&sunet.se
-1666
- Sage Instruments, Inc.
- jack craig
- jackc&sageinst.com
-1667
- Candle Corporation
- Dannis Yang
- Dannis_Yang&Candle.Com
-1668
- CSO GmbH
- Andreas Kientopp
- 100334.274&compuserve.com
-1669
- M3i Systems Inc.
- Louis St-Pierre
- lstpier&m3isystems.qc.ca
-1670
- CREDINTRANS
- Pascal BON
- BON&credintrans.fr
-1671
- ADVA Optical Networking Ltd.
- Alistair Swales
- aswales&advaoptical.com
-1672
- Pierce & Associates
- Fred Pierce
- fred&hdhntr.com
-1673
- RTS Wireless
- Mike Kovalenko
- mikekov&rtswireless.com
-1674
- R.I.C. Electronics
- Andrew Philip
- 102135.1051&compuserve.com
-1675
- Amoco Corporation
- Tim Martin
- tlmartin&amoco.com
-1676
- Qualix Group, Inc.
- Takeshi Suganuma
- tk&qualix.com
-1677
- Sahara Networks, Inc.
- Thomas K Johnson
- johnson&saharanet.com
-1678
- Hyundai Electronics Industries Co.,Ltd.
- Ha-Young OH
- hyoh&super5.hyundai.co.kr
-1679
- RICH, Inc.
- Yuri Salkinder
- yuri.salkinder&richinc.com
-1680
- Amati Communications Corp.
- Mr. Gail Cone
- gpc&amati.com
-1681
- P.H.U. RysTECH
- Rafal Fagas
- apc&silter.silesia.ternet.pl
-1682
- Data Labs Inc.
- Raul Montalvo
- raul.montalvo&datalabsinc.com
-1683
- Occidental Petroleum Corporation
- Howard D. Heerwagen
- admin_oxy&oxy.com
-1684
- Rijnhaave Internet Services
- Thierry van Herwijnen
- t.vanherwijnen&rijnhaave.net
-1685
- Lynx Real-Time Systems, Inc.
- Ganesan Vivekanandan
- ganesan&lynx.com
-1686
- QA IT Services Ltd
- Eric G Smith
- Eric.G.Smith&qa.com
-1687
- SofTouch Systems, Inc.
- Kody Mason
- 405-947-8080
-1688
- Sonda S.A.
- Hermann von Borries
- h_vborries&sonda.cl
-1689
- McCormick Nunes Company
- Charles Craft
- chucksea&mindspring.com
-1690
- Ume E5 Universitet
- Roland Hedberg
- Roland.Hedberg&umdac.umu.se
-1691
- NetiQ Corporation
- Ching-Fa Hwang
- cfh&netiq.com
-1692
- Starlight Networks
- Jim Nelson
- jimn&starlight.com
-1693
- Informacion Selectiva S.A. de C.V. ( Infosel )
- Francisco Javier Reyna Castillo
- freyna&infosel.com.mx
-1694
- HCL Technologies Limited
- Ms. Bindu Dandapani
- bindud&hcl.in
-1695
- Maryville Data Systems, Inc
- Bernard W. Favara
- bernie.favara&maryville.com
-1696
- EtherCom Corp
- Nafis Ahmad
- nafis&ethercom.com
-1697
- MultiCom Software
- Ari Hallikainen
- ari.hallikainen&multicom.fi
-1698
- BEA Systems Ltd.
- Garth Eaglesfield
- geaglesfield&beasys.co.uk
-1699
- Advanced Technology Ltd.
- Yuda Sidi
- atlsidi&inter.net.il
-1700
- Mobil Oil
- Oscar Masters
- Oscar_Masters&email.mobil.com
-1701
- Arena Consulting Limited
- Colin Haxton
- Colin.Haxton&arena.co.nz
-1702
- Netsys International (Pty) Ltd
- Wayne Botha
- wayne&inetsys.alt.za
-1703
- Titan Information Systems Corp.
- Edgar St.Pierre
- edgar&titan.com
-1704
- Cogent Data Technologies
- Wade Andrews
- wadea&cogentdata.com
-1705
- Reliasoft Corporation
- Chao-Li Tarng
- chaoli&reliasoft.com
-1706
- Midland Business Systems, Inc.
- Bryan Letcher
- bletcher&ccmailgw.str.com
-1707
- Optimal Networks
- Don Wagner
- donw&optimal.com
-1708
- Gresham Computing plc
- Tony Churchill
- tchurchill&gresham.co.uk
-1709
- Leidos, Inc. (formerly 'SAIC')
- John Brady (Network Information Center)
- nic&net.saic.com
-1710
- Acclaim Communications
- Pratima Janakir
- janakir&acclaiminc.com
-1711
- BISS Limited
- David Bird
- dbird&biss.co.uk
-1712
- Caravelle Inc.
- Trent Antille
- tech&caravelle.com
-1713
- Diamond Lane Communications Corporation
- Bill Hong
- hong&dlcc.com
-1714
- Infortrend Technology, Inc.
- Michael Schnapp
- michael&infortrend.com.tw
-1715
- Ardatis N.V (formerly 'Orda-B N.V.')
- Tom Lauwereins
- tom.lauwereins&ardatis.com
-1716
- Ariel Corporation
- Allan Chu
- allan.chu&ariel.com
-1717
- Datalex Communications Ltd.
- David Tracey
- d_tracey&datalex.ie
-1718
- Server Technology Inc.
- Brian P. Auclair
- brian&servertech.com
-1719
- Unimax Systems Corporation
- Bill Sparks
- bsparks&unimax.com
-1720
- DeTeMobil GmbH
- Olaf Geschinske
- Olaf.Geschinske&ms.DeTeMobil.de
-1721
- INFONOVA GmbH
- Ing. Alois Hofbauer
- alois.hofbauer&infonova.telecom.at
-1722
- Kudelski SA
- Eric Chaubert
- chaubert&nagra-kudelski.ch
-1723
- Pronet GmbH
- Juergen Littwin
- jl&pronet.de
-1724
- Westell, Inc.
- Rodger D. Higgins
- rhiggins&westell.com
-1725
- Nupon Computing, Inc.
- Tim Lee
- tim&nupon.com
-1726
- Cianet Ind e Com Ltda (Cianet Networking)
- Norberto Dias
- ndias&cianet.ind.br
-1727
- Aumtech of Virginia (amteva)
- Deepak Patil
- dpatil&amteva.com
-1728
- CheongJo data communication, Inc.
- HyeonJae Choi
- cyber&cdi.cheongjo.co.kr
-1729
- Genesys Telecommunications Laboratories Inc.(Genesys Labs.)
- Igor Neyman
- igor&genesyslab.com
-1730
- Progress SoftwareAndrew Neumann
- aneumann&progress.com
- anilv&bedford.progress.com
-1731
- ERICSSON FIBER ACCESS
- George Lin
- gglin&rides.raynet.com
-1732
- Open Access Pty Ltd
- Richard Colley
- richardc&oa.com.au
-1733
- Sterling Commerce
- Dale Moberg
- dale_moberg&stercomm.com
-1734
- Predictive Systems Inc.
- Adam Steckelman
- asteckelman&predictive.com
-1735
- Architel Systems Corporation
- Natalie Chew
- n.chew&architel.com
-1736
- QWEST NMS
- Joel Lutz
- joel.lutz&qwest.com
-1737
- Eclipse Technologies Inc.
- Alex Holland
- alexh&eclipse-technologies.com
-1738
- Navy
- Ryan Huynh
- huynhr&manta.nosc.mil
-1739
- Bindi Technologies, Pty Ltd
- Tim Potter
- bindi&ozemail.com.au
-1740
- Hallmark Cards Inc.
- Kevin Leonard
- kleonard&hallmark.com
-1741
- Object Design, Inc.
- George M. Feinberg
- gmf&odi.com
-1742
- Unassigned
-
- ---none---
-1743
- Zenith Data Systems (ZDS)
- Daniel G. Peters
- dg.peters&zds.com
-1744
- Gobi Corp.
- Kenneth Hart
- khart&cmp.com
-1745
- Universitat de Barcelona
- Ricard de Mingo
- ricardo&ub.es
-1746
- Institute for Simulation and Training (IST)
- Seng Tan
- stan&ist.ucf.edu
-1747
- US Agency for International Development
- Ken Roko
- kroko&usaid.gov
-1748
- Tut Systems, Inc.
- Mark Miller
- markm&tutsys.com
-1749
- AnswerZ Pty Ltd (Australia)
- Bernie Ryan
- bernier&answerz.com.au
-1750
- H.Bollmann Manufacturers Ltd (HBM)
- Klaus Bollmann
- mallen&hbmuk.com
-1751
- Lucent Technologies
- Richard Bantel
- richard.bantel&lucent.com
-1752
- phase2 networks Inc.
- Jeffrey Pickering
- p01152&psilink.com
-1753
- Unify Corporation
- Bill Bonney
- sa&unify.com
-1754
- Gadzoox Microsystems Inc.
- Kim Banker
- 408-399-4877
-1755
- Network One, Inc.
- David Eison
- deison&faxjet.com
-1756
- MuLogic b.v.
- Jos H.J. Beck
- jos_beck&euronet.nl
-1757
- Optical Microwave Networks, Inc.
- Joe McCrate
- elaw&omnisj.com
-1758
- SITEL, Ltd.
- Boris Jurkovic
- jurkovic&iskratel.si
-1759
- Cerg Finance
- Philippe BONNEAU
- 101605.1403&compuserve.com
-1760
- American Internet Corporation
- Brad Parker
- brad&american.com
-1761
- PLUSKOM GmbH
- Norbert Zerrer
- zerrer&ibm.net
-1762
- Dept. of Communications, Graz University of Technology
- Dipl.-Ing. Thomas Leitner
- tom&finwds01.tu-graz.ac.at
-1763
- EarthLink Inc.
- Kihoon Jeoung
- kihoonj&corp.earthlink.net
-1764
- Real Soft, Inc
- Rajan Desai
- rajan&realsoftinc.com
-1765
- Apex Voice Communications, Inc.
- Osvaldo Gold
- osvaldo&apexvoice.com
-1766
- National DataComm Corporation
- Ms. Changhua Chiang
- 101400.242&compuserve.com
-1767
- Telenor Conax AS
- Aasmund Skomedal
- Asmund.Skomedal&oslo.conax.telenor.no
-1768
- Patton Electronics Company
- William B. Clery III
- benson&ari.net
-1769
- Digital Fairway Corporation
- Jan de Visser
- jdevisser&digitalfairway.com
-1770
- BroadBand Technologies, Inc.
- Keith R. Schomburg
- krs&bbt.com
-1771
- Myricom
- Chris Lee
- clee&myri.com
-1772
- DecisionOne
- Doug Green
- douggr&world.std.com
-1773
- Tandberg Television
- Olav Nybo
- saxebol&sn.no
-1774
- AUDITEC SA
- Pascal CHEVALIER
- pascalch&dialup.remcomp.fr
-1775
- PC Magic
- Tommy Cheng
- TommyCheng&compuserve.com
-1776
- Koninklijke Philips Electronics NV
- Philips Intellectual Property & Standards (Section DOMAIN NAMES)
- ips.domain&philips.com
-1777
- ORIGIN
- Bob Rossiter
- Robert.M.Rossiter&nl.cis.philips.com
-1778
- CSG Systems
- Gordon Saltz
- gsaltz&probe.net
-1779
- Alphameric Technologies Ltd
- Mr Tim Raby
- 00034.1074&compuserve.com
-1780
- NCR Austria Michael Ostendorf
- Michael.Ostendorf&Austria.NCR.COM
- ---none---
-1781
- ChuckK, Inc.
- Chuck Koleczek
- chuckk&well.net
-1782
- PowerTV, Inc.
- David Ma
- dma&powertv.com
-1783
- webMethods
- Andrew Mastropietro
- amastrop&webmethods.com
-1784
- Enron Capitol & Trade Resources
- Steven R. Lovett
- slovett&ect.enron.com
-1785
- ORBCOMM
- Todd Hara
- thara&orbcomm.net
-1786
- Jw direct shop
- pavel deng
- ivb00285&192.72.158.10
-1787
- B.E.T.A.
- Brian Mcgovern
- mcgovern&spoon.beta.com
-1788
- Healtheon
- Marco Framba
- framba&hscape.com
-1789
- Integralis Ltd.
- Andy Harris
- Andy.Harris&Integralis.co.uk
-1790
- Folio Corporation
- Eric Isom
- eisom&folio.com
-1791
- ECTF
- Joe Micozzi
- jam&voicetek.com
-1792
- WebPlanet
- Ray Taft
- Ray_Taft&webplanet.com
-1793
- nStor Corporation
- Bret Jones
- Bret.Jones&4dmg.net
-1794
- Deutsche Bahn AG
- Ralf Ziegler
- ralf.ziegler&bku.db.de
-1795
- Paradyne
- Kevin Baughman
- klb&eng.paradyne.com
-1796
- Nastel Technologies, Inc.
- Krish Shetty
- nastel&nyc.pipeline.com
-1797
- Metaphase Technology, Inc.
- Michael Engbrecht
- Michael.Engbrecht&metaphasetech.com
-1798
- Zweigart & Sawitzki
- Mr. Andreas Georgii
- 100316.2050&compuserve.com
-1799
- PIXEL
- Mauro Ieva
- mieva&mbox.vol.it
-1800
- WaveAccess Inc.
- Yoram Feldman
- yoram&waveaccess.com
-1801
- The SABRE Group
- Richard Buentello
- richb&fastlane.net
-1802
- Redland Technology Corp.
- Kody Mason
- kody&ionet.net
-1803
- PBS
- Seton R. Droppers
- droppers&pbs.org
-1804
- Consensus Development Corporation
- Christopher Allen
- consensus&consensus.com
-1805
- SAGEM SA
- DESRAYAUD Andre
- 33 1 30 73 70 20
-1806
- I-Cube Inc.
- Sundar Rajan
- sundar&icube.com
-1807
- INTRACOM S.A HELLENIC TELECOMMUNICATION AND ELECTRONICS INDUSTRY)
- N.B Pronios
- npro&intranet.gr
-1808
- Aetna, Inc.
- Lee Kirk
- KirkL&Aetna.com
-1809
- Dow Jones Markets, Inc.
- Geri Cluc
- geri&fx.com
-1810
- Czech Railways s.o. CITJaroslav Militky
- +42 2 24213223
- bernard&cit.cdrail.cz
-1811
- Scan-Matic A/S
- Svein Moholt+47 37 05 95 00
- svein&scanmatic.no
-1812
- DECISION Europe Joel CHOTARD
- (33) 51 41 41
- 89decision&calva.net
-1813
- VTEL Corporation
- Bill Black
- bblack&vtel.com
-1814
- Bloomberg, L.P.
- Franko Rahimi
- frahimi&bny18.bloomberg.com
-1815
- Verint Systems, Inc (formerly Witness Systems, Inc)
- Marc Calahan
- marc.calahan&verint.com
-1816
- Rose-Hulman Institute of Technology
- Lans H. Carstensen
- Lans.H.Carstensen&rose-hulman.edu
-1817
- Aether Technologies
- Mark Levy
- mlevy&aethertech.com
-1818
- Infonet Software SolutionsDavid Hauck
- 604 436 2922 (x234)
- hauck&vancouver.osiware.bc.ca
-1819
- CSTI (Compagnie des Signaux / Technologies Informatiques)Mr Camille Breeus
- +33 72 35 84 97
- breeus&csti.fr
-1820
- LEROY MERLINRIGAULT Alain
-
- lmreseau&calva.net
-1821
- Total Entertainment Network
- Will Coertnik
- will&tenetwork.com
-1822
- Open Port Technology
- Jeffrey Nowland
- jnowland&openport.com
-1823
- Mikroelektronik Anwendungszentrum Hamburg GmbHZ
- bynek Bazanowski
- ba&maz-hh.de
-1824
- International Management Consulting, Inc.
- Mohammad Feizipour
- mfeizipour&imci.net
-1825
- Fore Systems, Inc.
- Dan Nydick
- dnydick&fore.com
-1826
- MTech Systems
- Timothy J. Madden
- www-tmadden&aol.com
-1827
- RxSoft Ltd.Timothy Madden
- Timothy Madden
- www-tmadden194&aol.com
-1828
- Dept. Computer Studies, Loughborough University
- Jon Knight
- jon&net.lut.ac.uk
-1829
- Beta80 S.p.A.
- Flavio Gatti
- attif&beta80.it
-1830
- Galiso Incorporated
- Lindsey Lewis
- lindsey&montrose.net
-1831
- S2 Systems, Inc.
- Shu Dong
- Shu_Dong&stratus.com
-1832
- Optivision, Inc.
- Ciro Aloisio Noronha Jr.
- ciro&optivision.com
-1833
- Countrywide Home Loans
- Jon Codispoti
- jon_codispoti&countrywide.com
-1834
- OA Laboratory Co., Ltd.
- Jun Kumakura
- kumakura&oalab.co.jp
-1835
- SDX Business Systems Ltd
- Mike Davison
- davison&sdxbsl.com
-1836
- West End Systems Corp.
- Paul Noseworthy
- paul_noseworthy&qmail.newbridge.com
-1837
- DK Digital Media
- Sid Kalin
- kalin&dkdigital.com
-1838
- Westel
- Jacob Heitz
- westelws&iinet.net.au
-1839
- Fujitsu Service Limited
- Jara Kandhola
- jara.kandhola&uk.fujitsu.com
-1840
- Inmarsat
- Steve Cox
- steve.cox&inmarsat.com
-1841
- TIMS Technology Ltd
- Oliver Goh
- go&tims.ch
-1842
- CallWare Technologies
- Adam Christensen
- achriste&callware.com
-1843
- NextLink, L.L.C.
- Randy Scheets
- rscheets&nextlink.net
-1844
- TurnQuay Solutions Limited
- Roger Thomas
- 100014.123&compuserve.com
-1845
- Accusort Systems Inc
- Wayne J Klein
- wjklein&accusort.com
-1846
- Deutscher Bundestag
- Thomas Mattern
- thomas.mattern&bundestag.de
-1847
- Joint Research Centre
-
- rui.meneses&jrc.it
-1848
- FaxSav
- Neil Martin
- nim&digitran.com
-1849
- Chevy Chase Applications Design
- Bryan Chastel de Boinville
- ccappdesign&prodigy.com
-1850
- Bank Brussel Lambert (BBL)
- Mr. Lieven Merckx
- lmr&bbl.be
-1851
- OutBack Resource Group, Inc.
- Jim Pickering
- Jrp&outbackinc.com
-1852
- Screen Subtitling Systems Ltd
- Paul Collins
- paul.collins&screen.subtitling.com
-1853
- Cambridge Parallel Processing Ltd
- Richard Hellier
- rlh&cppuk.co.uk
-1854
- Boston University
- Charles von Lechtenberg
- chuckles&bu.edu
-1855
- News Digital Systems Ltd
- Eli Gurvitz
- egurvitz&ndc.co.il
-1856
- NuTek 2000, Inc.
- Anthony J. Brooks
- brooksa&usa.pipeline.com
-1857
- Overland Mobile Communication AB
- Goran Sander
- goran.sander&axon.se
-1858
- Axon IT AB
- Goran Sander
- goran.sander&axon.se
-1859
- Gradient Medical Systems
- Goran Sander
- goran.sander&axon.se
-1860
- WaveSpan Corporation
- Roberto Marcoccia
- roberto&wavespan.com
-1861
- Net Research, Inc.
- Derek Palma
- dpalma&netcom.com
-1862
- Browncroft Community Church
- Paul R. Austin
- austin&sdsp.mc.xerox.com
-1863
- Net2Net Corporation
- Ralph Beck
- beck&net2net.com
-1864
- US Internet
- Reed Wade
- rwade&usit.net
-1865
- Absolute Time
- Terry Osterdock
- dpalma&netcom.com
-1866
- VPNet
- Idris Kothari
- ikothari&vpnet.com
-1867
- NTech
- Troy Nolen
- tnolen&ntechltd.com
-1868
- Nippon Unisoft Corporation
- Jinnosuke Nakatani
- nak&jusoft.co.jp
-1869
- Optical Transmission Labs, Inc.
- Niraj Gupta
- niraj&syngroup.com
-1870
- CyberCash, Inc.
- Andrew Jackson
- jackson&cybercash.com
-1871
- NetSpeed, Inc.
- Robert C. Taylor
- rtaylor&netspeed.com
-1872
- Alteon Networks, Inc.
- Sharon Chisholm
- schishol&nortelnetworks.com
-1873
- Internet Middleware Corporation
- Peter Danzig
- danzig&netcache.com
-1874
- ISOnova GmbH
- Matthias Weigel
- 101511.327&compuserve.com
-1875
- Amiga IOPS Project
- Niall Teasdale
- aip-mib&hedgehog.demon.co.uk
-1876
- Softbank Services Group
- Paul Hebert
- paulh&sbservices.com
-1877
- Sourcecom Corporation
- Tet Tran
- tet&sourcecom.com
-1878
- Telia Promotor AB
- Mr Rikard Bladh
- Rikard.G.Bladh&Telia.se
-1879
- HeliOss Communications, Inc.
- Larry Fisher
- 71340.2603&compuserve.com
-1880
- Optical Access International, Inc.
- Matt Bowen
- bowen&oai.com
-1881
- MMC Networks, Inc.
- Sanjeev Shalia
- sshalia&mmcnet.com
-1882
- Lanyon Ltd.
- Alan Stiemens
- alan.stiemens&lanyon.com
-1883
- Rubico
- Heinrich Schlechter
- heine&rubico.com
-1884
- Quantum Telecom Solutions, Inc.
- Michael Flaster
- flaster&qts.com
-1885
- Archinet
- Loh Chin Yean
- chinyean&hk.super.net
-1886
- i-cubed Ltd.
- Douglas J. Berry
- dberry&i-cubed.co.uk
-1887
- Albis Technologies Ltd. (formerly 'Siemens Switzerland Ltd.')
- Thomas Glaus
- thomas.glaus&albistechnologies.com
-1888
- GigaLabs, Inc.
- Simon Fok
- sfok&netcom.com
-1889
- MET Matra-Ericsson
- Francois Gauthie
- metfgar&met.fr
-1890
- Red Lion Controls (JBM Electronics)
- Denis Aull
- Engineering&RedLion.net
-1891
- OPTIM Systems, Inc.
- Mr. Sunil Meht
- smehta&access.digex.net
-1892
- Software Brewery
- David Foster
- dfoster&ccnet.com
-1893
- WaveLinQ
- Kim Luong
- kluong&mcimail.com or pthieu&mcimail.com
-1894
- Siemens ICN
- Anne Robb or Joel Futterman
- anne.robb&icn.siemens.com or joel.futterman&icn.siemens.com
-1895
- IEX Corporation
- Paul B. Westerfield
- pbw&iex.com
-1896
- TrueTime
- Mark Elliot
- elliot&nbn.com
-1897
- HT Communications Inc.
- Vaughn Nemecek
- vnemecek&htcomm.com
-1898
- Avantcomp Oy
- Juha Luoma
- Juha.Luoma&avantcomp.fi
-1899
- InfoVista
- Yann Le Helloco
- ylehelloco&infovista.com
-1900
- Openwave Systems, Inc.
- Seetharaman Ramasubraman
- seetharaman.ramasubramani&openwave.com
-1901
- Sea Wonders
- Ed Wiser
- ewiser&dp-2-30.iglou.net
-1902
- HeadStart Enterprise
- Rick Manzanares
- rickmanz&msn.com
-1903
- B-SMART Inc.
- Neil Peters
- info&b-smart.com
-1904
- ISMA Ltd
- Stephen Dunne
- sdun&isma.co.uk
-1905
- 3DV Technology, Inc.
- Charles A. Dellacona
- charlie&dddv.com
-1906
- StarCom Technologies Inc.
- Jon Fatula
- jon&starcomtech.com
-1907
- L.L.Bean
- Chuck McAllister
- chuck.mcallister&llbean.com
-1908
- NetIcs Inc.
- Dahai Ding
- ding&netics-inc.com
-1909
- Infratec plus GmbH
- Michael Groeger
- mgroeger&infratec-plus.de
-1910
- 3edges
- Daniel Drucker
- dmd&3e.org
-1911
- GISE mbHVolkmar Brisse / Hans-Jurgen Laub
- brisse&gise.com
- laub&gise.com
-1912
- lan & pc services
- Juan A. Fernandez
- lanpc&erols.com
-1913
- RedPoint Software Corporation
- Tim S. Woodall
- tim&redpt.com
-1914
- Atempo Inc
- Fabrice Clara
- fabrice.clara&atempo.com
-1915
- I-95-CC
- JOERG "NU" ROSENBOHM, ALAN UNGAR
- JOSENBOHM&FARRADYNE.COM & AUNGAR&FARRANDYNE.COM
-1916
- Extreme Networks
- Gary W. Hanning
- ghanning&extremenetworks.com
-1917
- Village of Rockville Centre
- John Peters
- rvc&li.net
-1918
- Swichtec Power Systems
- Adrian Jackson
- ajackson&swichtec.co.nz
-1919
- Deutscher Wetterdienst
- Dietmar Glaser
- lanadm&dwd.d400.de
-1920
- Bluebird Software
- Linda Kasparek
- ljk&bluebird.zipnet.net
-1921
- Svaha Interactive Media, Inc.
- Matthew Baya
- mbaya&pobox.com
-1922
- Sully Solutions
- Alan Sullivan
- sully&frontiernet.net
-1923
- Blue Line
- J. Ortiz
- blueline12&msn.com
-1924
- Castleton Network Systems Corp Glen Tracey tracey&castleton.com
- Lawrence Lou
- llou&castleton.com
-1925
- Visual Edge Software Ltd.
- Daniel M. Foody
- dan&vedge.com
-1926
- NetGuard Technologies, Inc.
- Stu Selig
- stuselig&msn.com
-1927
- SoftSell, Inc.
- John R. Murray
- John_and_Elaine&msn.com
-1928
- MARNE SOFTWARE
- JAMES R. CLOWERS
- marne1&tac-wa3-16.ix.netcom.com
-1929
- Cadia Networks, Inc.
- Cheryl Scattaglia
- cscattaglia&cadia.com
-1930
- Milton
- Michael Milton
- MHPMilton&msn.com\@Cust32.Max53.New-York.NY.MS.UU.NET
-1931
- Del Mar Solutions, Inc.
- Tim Flagg
- timf&Delmarsol.COM
-1932
- KUMARAN SYSTEMS
- G. CHANDRASEKHAR
- smart&kumaran.com
-1933
- Equivalence
- Craig Southeren
- equival&ozemail.com.au
-1934
- Homewatch International, Inc.
- H. J. McElroy
- hw corp&aol.com
-1935
- John Rivers
- john rivers
- jar&clarkston.com
-1936
- Remark Services, Inc.
- H. J. McElroy
- mkt mac&aol.com
-1937
- Deloitte & Touche Consulting Group
- David Reed
- dreed&dttus.com
-1938
- Flying Penguin Productions
- Ronald J. Fitzherbert
- ron&penguin.net
-1939
- The Matrix
- Yasha Harari
- harari&erols.com
-1940
- Eastern Computers, Inc.
- Simon Zhu
- simonz&ecihq.com
-1941
- Princeton BioMedica Inc.
- Walter Kang
- prinbiomed&aol.com
-1942
- SanCom Technology, Inc.
- Gene Huang
- jye&travelin.com
-1943
- National Computing Centre Ltd.
- Dermot Dwyer
- dermot&ncc.co.uk
-1944
- Aval Communications
- Larry Gadallah
- gadallahl&aval.com
-1945
- WORTEC SearchNet CO.
- D.C. Dhabolt
- wortec&netins.net
-1946
- Dogwood Media
- Dave Cornejo
- dave&dogwood.com
-1947
- Allied Domecq
- David Nichol
- DNICHOL.Allied&dial.pipex.com
-1948
- Telesoft Russia
- Verbitsky Alexandr
- verbitsk&tlsoft.ru
-1949
- UTStarcom, Inc.
- Ruchir Godura
- godura&utstar.com
-1950
- comunit
- Bjoern Kriews
- bkr&comunit.com
-1951
- Traffic Sofware Ltd
- John Toohey
- johnt&traffic.is
-1952
- Qualop Systems Corp
- Simon Chen
- schen&qualop.com
-1953
- Vinca Corporation
- Al Mudrow
- al&vinca.co
-1954
- AMTEC spa
- Giovanni SANTONI
- amtec&interbusiness.it
-1955
- GRETACODER Data Systems AG
- Kevin Smyth
- ksmyth&pax.eunet.ch
-1956
- KMSystems, Inc.
- Roy Chastain
- roy&kmsys.com
-1957
- GEVA
- Burkhard Kaas
- bkaas&GEVA.de
-1958
- Red Creek Communications, Inc.
- Ramesh Kamath
- yin&best.com
-1959
- BORG Technology Inc.
- Ralph Magnan
- ralph&borgtech.com
-1960
- Concord Electronics
- Greg Hanks
- GHanks&concord-elex.com
-1961
- Richard Ricci DDS
- Richard Ricci
- RRicci201&aol.com
-1962
- Link International Corp.
- Joshua Kim
- linkpr&bora.dacom.co.kr
-1963
- Intermec Technologies Corp.
- Joseph Dusio
- Joe.Dusio&Intermec.Com
-1964
- OPTIMUM Data AG
- Robert Mantl
- optdata&ibm.net
-1965
- DMCNW
- Cherice Jobmann
- CJOBMANN&INNOVAWIRELESS.COM
-1966
- Perle Systems Limited
- Moti Renkosinski
- mrenkosinski&perle.com
-1967
- inktomi corporation
- eric hollander
- hh&inktomi.com
-1968
- TELE-TV Systems, L.P.
- Emmanuel D. Ericta
- damannix&TELE-TV.com
-1969
- Fritz-Haber-Institut
- Heinz Junkes
- junkes&fhi-berlin.mpg.de
-1970
- mediaone.net
- Ed Pimentel
- epimntl&mail.mediaone.net
-1971
- SeaChange International Peter H.
- Burgess
- PeterB&204.213.65.53
-1972
- CASTON Corporation
- Rodney L Caston Sr
- caston&premier.net
-1973
- Local Net
- Vincent Palmieri
- palmieri&local.net
-1974
- JapanNet
- KIYOFUSA FUJII
- kfujii&japannet.or.jp
-1975
- NabiscoKen ChristChristK&nabisco.com
- Carolyn Sitnik
- sitnikC&nabisco.com
-1976
- micrologica GmbH
- Axel Brauns
- brauns&micrologica.de
-1977
- Network Harmoni, Inc.
- Mike Schulze
- mike&networkharmoni.com
-1978
- SITA ADS
- Fulko Hew
- fulko&wecan.com
-1979
- Global Maintech Corporation
- Kent Rieger
- krieger&globalmt.com
-1980
- Tele2 AB
- Hans Engren
- hans&swip.net
-1981
- EMC CLARiiON Advanced Storage Solutions
- Rene Fontaine
- fontaine_rene&emc.com
-1982
- ITS Corporation
- Tim Greer
- tgreer&itscorp.com
-1983
- CleverSoft, Inc.
- Debbie Glidden
- dglidden&cleversoft.com
-1984
- The Perseus Group, Inc.
- Alan Mikhak
- amikhak&aol.com
-1985
- Joe's WWW Pages
- Joe Burke
- burke&northweb.com
-1986
- Everything Internet Store
- SHAWN TEDD
- stedder&ica.net
-1987
- Numara Software, Inc
- Tony Thomas
- tony.thomas&numarasoftware.com
-1988
- Lycoming County PA
- Richard Karp
- rkarp&pennet.net
-1989
- Statens Institutions styrelse SiS
- Jimmy Haller
- Jimmy.Haller&mailbox.swipnet.se
-1990
- INware Solutions Inc.
- Mario Godin
- mgodin&inware.com
-1991
- Brocade Communication Systems, Inc. (formerly 'Foundry Networks, Inc.')
- Scott Kipp
- skipp&brocade.com
-1992
- Deutsche Bank
- Michael Doyle
- mib-admin&list.db.com
-1993
- Xyratex
- Richard Harris
- rharris&uk.xyratex.com
-1994
- Bausch Datacom B.V.
- Ron Verheijen
- RVerheijen&bausch.nl
-1995
- Advanced Radio Telecom (ART)
- Craig Eide
- craige&artelecom.com
-1996
- Copper Mountain Communications Inc.
- Bhola Ray
- bray&cmtn.com
-1997
- PlaNet Software Inc.
- Steve Curtis
- scurtis&planetsoftware.com
-1998
- Carltan Computer Corporation
- Danilo L. Signo
- carltan&gateway.portalinc.com
-1999
- Littva Mitchell, Inc.
- Edward P. Mitchell
- mitchell&interaccess.com
-2000
- TIBCO Inc.
- Ed Shnayder
- shnayder&tibco.com
-2001
- Oki Data Corporation
- Iguchi Satoru
- Iguchi&okidata.co.jp
-2002
- GoTel
- Craig Goss
- cgoss&infi.net
-2003
- Adobe Systems Incorporated
- Steve Zilles
- szilles&adobe.com
-2004
- Sentricity
- Gregg Welker
- gnjal&pacificnet.net
-2005
- Aeroports De Paris
- Eric Barnier
- eric.barnier&adp.fr
-2006
- ECONZ Ltd
- Tim Mew
- tim&econz.co.nz
-2007
- TELDAT, S.A.
- Eduardo Robles Esteban
- teldat&offcampus.es
-2008
- Offset Info Service srl
- Enrico Talin
- etalin&tradenet.it
-2009
- A. J. Boggs & Company
- Richard Vissers
- rvissers&ajboggs.com
-2010
- Stale Odegaard AS
- Stale Odegaard
- stale&odegaard.no
-2011
- HUAWEI Technology Co.,Ltd
- Zhao Lwu
- zl&writeme.com
-2012
- Schroff GmbH
- Dietmar Mann
- Dietmar.Mann&schroff.de
-2013
- Rehabilitation Institute of Chicago Angie
- Hoelting
- a-hoelting&nwu.edu
-2014
- ADC Telecommunications, Inc.
- John Caughron
- john_caughron&adc.com
-2015
- SYSTOR AG
- Urs Studer
- Urs.Studer&SYSTOR.Com
-2016
- GraIyMage, Inc.
- Eric Gray
- eric.gray&nh.ultranet.com
-2017
- Symicron Computer Communications Ltd.
- M.Powell
- cmp&symicron.com
-2018
- Scandorama AB
- Peter Andersen
- andersen&scandorama.se
-2019
- I-NET
- Wesley McClure
- wes_mcclure&ccmail.inet.com
-2020
- Xland, Ltd.
- Boris A. Gribovsky
- boris&xland.ru
-2021
- U.C. Davis, ECE Dept. Tom
- Arons
- arons&ece.ucdavis.edu
-2022
- CANARY COMMUNICATIONS, Inc.
- JIM MCSEATON
- jmcseaton&canarycom.com
-2023
- NetGain
- Niklas Hellberg
- niklas.hellberg&netgain.se
-2024
- West Information Publishing Group
- Joseph R. Prokott
- jprokott&westpub.com
-2025
- Deutsche Bundesbank
- Ralf Fuchs
- fuchs&multinet.de
-2026
- Broadxent, Inc
- Kok Chin Chang
- kokchinc&broadxent.com
-2027
- Gauss Interprise AG
- Michael Schlottmann
- michael.schlottmann&opentext.com
-2028
- Aldiscon
- Michael Mc Mahon
- michaelm&aldiscon.ie
-2029
- Vivid Image
- Andrea L. Fiedler
- andrea&vividimage.com
-2030
- AfriQ*Access, Inc.
- Tierno S. Bah
- tsbah&afriq.net
-2031
- Reliant Networks Corporation Steven
- Fancher
- Steven&Fancher.com
-2032
- Mavenir Systems (formerly 'airwide solutions')
- Nick Worth
- nick.worth&mavenir.com
-2033
- McKinney Lighting & Sound
- Justin Barbalace
- justin&204.49.136.10
-2034
- Whole Systems Design, Inc.
- Peter J. Weyland
- Peter&Look.net
-2035
- O'Reilly & Associates, Inc.
- Bob Amen
- nic-tc&oreilly.com
-2036
- Quantum Corporation
- Robert Metcalf
- robert.metcalf&quantum.com
-2037
- Ernst and Young LLP
- Neil Forrester
- neil.forrester&ey.com
-2038
- Teleware Oy
- Thomas Aschan
- thomas&teleware.fi
-2039
- Fiducia Informationszentrale AG Ian
- Williams
- nic&fiducia.de
-2040
- Kinetics, Inc.
- David S. Melnik
- David.Melnik&KineticsUSA.com
-2041
- EMCEE Broadcast Products
- Frank Curtis
- ENGR1&MAIL.MICROSERVE.NET
-2042
- Clariant Corporation
- Gerald Hammonds
- Gerald.Hammonds&clariant.com
-2043
- IEEE 802.5
- Robert D Love
- rdlove&vnet.ibm.com
-2044
- Open Development Corporation
- Jeff Gibson, Dave Horton
- jgibson&opendev.com; dhorton&opendev.com
-2045
- RFG SystemsRamon Ferreris
- nomar1&ix.netcom.com
- / nomar1&aol.com
-2046
- Aspect Telecommunications
- Richard Ney
- richard.ney&aspect.com
-2047
- Leo & Associates
- Leo Hau
- leohau1&ibm.net
-2048
- SoftLinx, Inc.
- Mark Ellison
- ellison&world.std.com
-2049
- Generale Bank
- Edwin GORIS
- egoris&gbank.be
-2050
- Windward Technologies Inc.
- Ray Drueke
- rueke&windwardtech.com
-2051
- NetSolve, Inc.
- Gary Vandenberg
- vandeng&netsolve.com
-2052
- Xantel
- Mark E. Fogle
- mefogle&xantel.com
-2053
- arago, Institut fuer komplexes Datenmanagement GmbH
- Joerg Hegermann
- hegermann&arago.de
-2054
- Kokusai Denshin Denwa Co., Ltd
- Yasutomo Miyake
- ys-miyake&kdd.co.jp
-2055
- GILLAM-SATEL
- J. MATHIEU
- gillam @ interpac.be
-2056
- MOEBIUS SYSTEMS
- MICHAEL CLARK
- MYTHIA&WHYTEL.COM
-2057
- Financial Internet Technology
- Klaus Amelung
- ka&fit.dk
-2058
- MARC Systems
- Steven C Johnson
- scj&MARCSYS.COM
-2059
- Bova Gallery
- Martin Raymond
- bovazone&earthlink.net
-2060
- OSx Telecomunicacoes
- Emmanuel Caldas
- efcaldas&nutecnet.com.br
-2061
- Telecom Solutions
- Mark S. Smith
- msmith&telecom.com
-2062
- CyberIQ Systems
- Lawrence Ho
- lho&cyberiqsys.com
-2063
- Ardent Communications Corporation
- Chao-Li Tarng
- cltarng&ardentcom.com
-2064
- Aware, Inc.
- Ellis Wong
- ewong&aware.com
-2065
- Racal Radio Limited
- E.P Thornberry
- 101346.3100&compuserve.com
-2066
- Control Resources Corporation
- Sadhan Mandal
- 102263.2101&compuserve.com
-2067
- Advanced Fibre Communications (AFC)
- Richard D. Nichols
- richard.nichols&fibre.com
-2068
- Elproma Electronica B.V.
- Kees Onneweer
- r&d&elproma.nl
-2069
- MTA SZTAKI
- Gabor Kiss
- kissg&sztaki.hu
-2070
- Consensys Computers Inc
- Eric Mah
- eric&consensys.com
-2071
- Jade Digital Research Co.
- William L. Cassidy
- wcassidy&baobei.com
-2072
- Byte This Interactive Pty.Ltd. Mike
- Cornelius
- mike&bytethis.com.au
-2073
- Financial Network Technologies Inc.
- Duncan Harrod
- NTDH&AOL.COM
-2074
- BROKAT Informationssysteme GmbH
- A.Schlumpberger
- aschlum&brokat.de
-2075
- MediaWise Networks
- Jim Kinder
- jkinder&mediawisenetworks.com
-2076
- Future Software
- Products Division
- support&future.futsoft.com
-2077
- Commit Information Systems
- Peter Manders
- mandep&commit.nl
-2078
- Virtual Access Ltd
- Tommy Loughlin
- Tommy.Loughlin&VirtualAccess.com
-2079
- JDS FITEL Inc.
- Dr A.G.Self
- arthur_self&jdsfitel.com
-2080
- IPM DATACOM
- Emilio Tufano
- braccose&mbox.vol.it
-2081
- StarBurst Communications Corporation Kevin
- McKenna
- kmckenna&starburstcom.com
-2082
- Tollgrade Communications, Inc.
- Jim Ostrosky
- jostrosky&tollgrade.com
-2083
- Orange Services US
- Frank Drake
- fdrake&orange.us
-2084
- Sanken Electric Co., Ltd.
- Kazuya Mine
- igusa&dsc.co.jp
-2085
- Isolation Systems Limited
- Erica Liu
- liue&isolation.com
-2086
- AVIDIA Systems, Inc.
- David Jenkins
- engineering&avidia.com
-2087
- Cidera-Mainstream Services
- Kym Hogan
- khogan&cidera-mainstream.com
-2088
- Radstone Technology Plc
- Paul Goffin
- goffin&radstone.co.uk
-2089
- Philips Business Communications
- Helmut Wvrz
- woerz.philips&t-online.de
-2090
- FMS Services
- Karl Schwartz
- schwartz&max2e.netropolis.net
-2091
- Supernova Communications
- Charles Tumlinson
- c.tumlinson&telescan.com
-2092
- Murphy & Murphy Real Estate
- Bill Murphy
- billmurf&nh.ultranet.com
-2093
- Multi-Platform Information Systems
- Thomas Mullaney
- thomasm&token.net
-2094
- Allegro Consultants, Inc.
- Stan Sieler
- sieler&allegro.com
-2095
- AIAB
- Lennart Asklund
- asklu&algonet.se
-2096
- Preview Multimedia Services
- Brian Foster
- Preview&Farmline.com
-2097
- Access Beyond
- Ed Brencovich
- ebrencovich&accessbeyond.com
-2098
- SunBurst Technology, Inc.
- C.J. Stoddard/ Bob Mahler
- sunybod&teleport.com
-2099
- sotas
- Yongchae Kim / Van Anderson
- cmum&aol.com
-2100
- CyberSouls Eternal Life Systems Inc.
- Richard Reid
- rreid&cybersouls.com
-2101
- HANWHA CORP./TELECOM
- YOUNG-SIK LEE
- yslee&dmc.htc.hanwha.co.kr
-2102
- COMET TELECOMMUNICATIONS INC
- Anthony Fernandes
- comet&ppp200.inet-on.net
-2103
- CARY SYSTEMS, Inc.
- Jane Liu
- liu&carysys.com
-2104
- Peerless Systems Corp Frank
- Hernandez
- f-hernandez&peerless.com
-2105
- Adicom Wireless, Inc
- Rick Chen
- rchen&adicomw.com
-2106
- High Technology Software Corp
- Ken Lowrie
- Ken&hitecsoft.com
-2107
- Lynk
- Tamar Krupnik, Avi Oron Lynk&boscom.com,
- Oavi&boscom.com
-2108
- Robin's Limousine
- Robin Miller
- roblimo&primenet.com
-2109
- Secant Network Tech
- Nathan H. Hillery
- hillery&secantnet.com
-2110
- Orion Pictures Corporation
- Kevin Gray
- kgray&orionpictures.com
-2111
- Global Village Communication, Inc.
- Emanoel Daryoush
- emanoel&globalvillage.com
-2112
- ioWave, Inc.
- Bruce Flanders
- ioWave&aol.com
-2113
- Signals and Semaphores
- Bobby Young
- b.young&ix.netcom.com
-2114
- Mayo Foundation
- Thomas B. Fisk
- fisk&mayo.com
-2115
- KRONE AG
- Wolfgang Kraft
- 106005.1072&compuserve.com
-2116
- Computer Networking Resources, Inc
- Joe Rumolo
- jrumolo&mindspring.com
-2117
- Telenetworks
- Mike Sanders
- ms&tn.com
-2118
- Staffordshire University
- Andrew J. Sherwood
- A.J.Sherwood&staffs.ac.uk
-2119
- Broadband Networks Inc.
- Michael Sanderson
- msanderson&bni.ca
-2120
- Federal Aviation Administration
- Alan Hayes/Maurice Dearing
- alan_hayes&faa.dot.gov or enet&faa.dot.gov
-2121
- Technical Communications Corporation
- John Maher
- jmaher&tccsecure.com
-2122
- REZO+
- Artur Silveira da Cunha
- ASilveira&rezo.com
-2123
- GrafxLab, Inc.
- Anthony Anthamatten
- elvis&memphisonline.com
-2124
- Savant Corp
- Andy Bruce
- AndyBruce&msn.com
-2125
- COMTEC SYSTEMS CO.,LTD. DEOK-HYOENG
- HAN
- hansony&maru.comtec.co.kr
-2126
- Satcom Media
- Martin Miller
- martinm&satmedia.com
-2127
- UconX Corporation
- Robert Patterson
- rjp&uconx.com
-2128
- TPG Network
- Bill Leckey
- tpgnrd&tpgi.com.au
-2129
- CNJ Incorporated
- Doan Van Hay Gilbert
- doanvhay&usa.net
-2130
- Greenbrier & Russel
- Ron Phillips
- ronp&gr.com
-2131
- mainnet
- Khaled Soussi
- khaled&mainnet.net
-2132
- Comnet DatensystemeHolger Zimmermanhzimmermann&cnd.de
- (backup: Michael Lemke
- 100341.417&CompuServe.COM)
-2133
- Novadigm, Inc.
- Phil Burgard
- philb&novadigm.com
-2134
- Alfatech, Inc.
- Satoru Usami
- KHA04261&niftyserve.or.jp
-2135
- Financial Sciences Corporation Gary
- Makhija
- makhijag&fisci.com
-2136
- Electronics For Imaging, Inc.
- Eugene Chen
- eugene.chen&eng.efi.com
-2137
- Casabyte
- Ben Castrogiovanni
- ben&casabyte.com
-2138
- AssureNet Pathways, Inc.
- Michael Rosselli
- miker&anpi.com
-2139
- Alexander LAN, Inc.
- Scott Penziner
- scott&alexander.com
-2140
- Gill-Simpson
- Thomas M. McGhan
- tmcghan&gill-simpson.com
-2141
- MCNS, L.P.
- Michelle Kuska
- kuska.michelle&tci.com
-2142
- Future Systems, Inc.
- Kim Moon-Jeong
- mjkim&future.co.kr
-2143
- IMGIS
- Joe Lindsay
- joe&lindsay.net
-2144
- Skywire Corporation
- Oscar Pearce
- opearce&skywire.com
-2145
- Irdeto Access B. V.
- Hans Dekker
- hdekker&irdetoaccess.com
-2146
- Peasantworks
- Stan Gafner
- sharongafner&msn.com
-2147
- Onion Peel Software
- Steve Giles
- sgiles&ops.com
-2148
- PS Partnership
- Thomas Lee
- tfl&psp.co.uk
-2149
- IRdg, Inc.
- Ryan Campbell
- rcampbell&ipost.net
-2150
- SDS Ltd.
- Dave Soteros
- dsoteros&direct.ca
-2151
- Promus Hotel Corporation Oscar Pearce
- 76106.1541&compuserve.com
- ---none---
-2152
- Cavid Lawrence Center
- Ed Bernosky
- eddy&dlcmhc.com
-2153
- Insider Technologies Ltd Paul Hancock
- Paul Hancock
- 706001.1542 compuserv.com
-2154
- Berkeley Networks
- Bob Thomas
- bob.thomas&berkeleynet.com
-2155
- Infonautics Corporation
- Mike Schwankl
- mschwankl&infonautics.com
-2156
- Easy Software
- Leif Hagman
- leif&easysoft.se
-2157
- CESG
- Derek Mariott
- derek&caprof.demon.co.uk
-2158
- SALIX Technologies, Inc.
- Stephen Scheirey
- sscheire&salixtech.com
-2159
- Essential Communications
- Marck Doppke
- marck&esscom.com
-2160
- University of Hawaii
- David Lassner
- david&hawaii.edu
-2161
- Foxtel Management Pty
- Keith Cohen
- Cohenk&foxtel.com.au
-2162
- ZOHO Corporation (formerly 'Advent Network Management')
- Rajkumar Balasubramanian
- raj&zohocorp.com
-2163
- Vayris, S.A.
- Jose Ramon Salvador Collado
- vayris&ptv.es
-2164
- Telecom Multimedia Systems, Inc.
- Marc Church
- mchurch&telecommm.com
-2165
- Guardall Ltd.
- Nick Banyard
- banyard&guardall.co.uk
-2166
- WKK SYSTEMS, Inc.
- W. K. Kessler
- wkk&wkk.com
-2167
- Prominet Corporation
- Steve Horowitz
- witz&prominet.com
-2168
- LMC Lan Management Consulting GmbH
- Georg Kieferl
- gk&lmc.de
-2169
- Lewis Enterprise
- Robert Lewis
- yaa&cci-internet.com
-2170
- Teles AG
- Peter Schoenberger
- ps&teles.de
-2171
- PCSI (Phoenix Control) Wayne Edward
- Conrad
- wconrad&pcsiaz.com
-2172
- Fourth Wave Designs, Inc.
- Gene Litt
- glitt&4wave.com
-2173
- MediaGate, Inc.
- Brett Francis
- brett.francis&mediagate.com
-2174
- Interactive Online Services, Inc.
- Adam Laufer
- adam613&aol.com
-2175
- Mutek Transcom Ltd.
- Alan Benn
- abenn&mdco.demon.co.uk
-2176
- University of Dortmund, IRB
- Gerd Sokolies
- gs&informatik.uni-dortmund.de
-2177
- Network Diagnostic Clinic
- Ray Sprong
- netdiag&mc.net
-2178
- TSI - Telecom Systems Ltd.
- Giora Josua
- giorajo&netvision.net.il
-2179
- WireSpeed Comm. Corp.
- Brooke Johnson
- brookej&wirespeed.com
-2180
- Versanet Communications, Inc.
- Mark Hall
- (909) 860-7968
-2181
- EUnet Communications Services BV
- Koen De Vleeschauwer
- noc&EU.net
-2182
- pow communications
- Harry Perkins
- harry.perkins&pow.com
-2183
- AMCommunications Inc.
- William F. Kinsley
- williamk&amcomm.com
-2184
- Open Architecture Systems Integration Solutions (OASIS),Inc.
- Bob Altman
- BAltman&oasis-inc.com
-2185
- NetPartner s.r.o.
- Milan Soukup
- mylan&login.cz
-2186
- Vina Technologies
- Bob Luxenberg
- bobl&vina-tech.com
-2189
- Deutsches Klimarechenzentrum GmbH
- Lutz Brunke
- brunke&dkrz.de
-2190
- ABSYSSClaude-Aime MOTONGANEmotongane&absyss.fr
- Marc BENOLIEL
- mbenoliel&absyss.fr
-2191
- Quadrophonics, Inc.
- Dennis Warner
- denniswa&vegas.quik.com
-2192
- Hypercore Technology Inc.
- Ken Sailor
- sailor&sask.trlabs.ca
-2193
- OBTK, Inc., dba Network Designs Corporation
- David Kirsch
- dkirsch&networkdesigns.com
-2194
- VOIS Corporation
- William Dietrich
- info&voiscorp.com
-2195
- IXO S.A.
- Fabrice Lacroix
- fabrice&ixo.fr
-2196
- Macro4 Open Systems Ltd.
- David J. Newcomb
- david.newcomb&macro4.com
-2197
- RSA Security
- John G. Brainard
- jbrainard&rsasecurity.com
-2198
- NextWave Wireless Inc.
- Bob Kryger
- bkryger&nextwavetel.com
-2199
- Pisces Consultancy
- Dr Anil K Dhiri
- webmaster&pathit.com
-2200
- TPS Call Sciences, Inc (TPS) Paul L.
- Mowatt
- plm&jamaica.tpsinc.com
-2201
- ICONSULT
- Hakan Tandogan
- hakan&iconsult.com
-2202
- Third Point Systems
- Richard Parker
- richard_parker&thirdpoint.com
-2203
- MAS Technology Ltd.
- Stephen Cheng
- SCheng&mas.co.nz
-2204
- Advanced Logic Research, Inc.(ALR)
- Cameron Spears
- cameron&alr.com
-2205
- Documentum, Inc.
- Lalith G.Subramanian
- lalith&documentum.com
-2206
- Siemens Business Communication Systems, Inc.
- Beejan Beheshti
- Beejan.Beheshti&siemenscom.com
-2207
- Telmax Communications Corp.
- Welson C. Lin
- WelsonLin&Juno.com
-2208
- Zypcom, Inc.
- Karl Zorzi
- Zypcom&tdl.com
-2209
- Remote Sense
- KC Glaser
- kc&remotesense.com
-2210
- OOTek Corporation
- Keith Sarbaugh
- keith&ootek.com
-2211
- eSoft, Inc.
- Phil Becker
- phil&esoft.net
-2212
- anydata limited
- Fred Youhanaie
- fred&anydata.co.uk
-2213
- Data Fellows Ltd.
- Santeri Kangas
- snmp-development&datafellows.com
-2214
- Productions Medialog Inc.
- Andre G. Cote
- medialog&ppp35.point-net.com
-2215
- Inovamerci, Lda
- Marco Pinto
- mapi&mail.telepac.pt
-2216
- OKITEC
- Tsutomu Chigama
- chigama&otec.co.jp
-2217
- Vertex Networks Inc.
- Frank Huang
- frankh&vertex-networks.com
-2218
- Pulse Communications
- Ben Tetteh
- bentet&pulse.com
-2219
- CXA Communications Ltd.
- Jarrod Hollingworth
- jarrod&cxa.com.au
-2220
- IDD Information Service
- Alice Gossmann
- ayg&iddis.com
-2221
- Atlas Computer Equipment, Inc.
- Kathy Rayburn
- kathyr&ace360.com
-2222
- Syntegra
- Mib administrator
- snmp.mib&syntegra.com
-2223
- CCC Information Services
- John Marland
- jmarland&cccis.com
-2224
- W. Quinn Associates
- Najaf Husain
- nhusain&wquinn.com
-2225
- Broadcom Eireann Research Ltd.
- Michael Slevin
- ms&broadcom.ie
-2226
- Risk Management Services llc
- K. Krishna Murthi
- rmsllc&gto.net.om
-2227
- Watkins-Johnson Company
- Jagat Shah
- jagat.shah&wj.com
-2228
- Eric E. Westbrook
- Eric E. Westbrook
- eric&westbrook.com
-2229
- Martinho-Davis Systems Inc.
- Stephen Davis
- sdavis&metaware.ca
-2230
- XYPOINT Corporation
- Kurt White
- kwhite&xypoint.com
-2231
- Innovat Communications, Inc.
- Michael Lin
- mlin&innovat-comm.com
-2232
- Charleswood & Co.
- Jan Henriksson
- vci.55400jh&memo.volvo.se
-2233
- ID Software AS
- Truls Hjelle
- truls.hjelle&idgruppen.no
-2234
- Telia AB
- Mats Mellstrand
- mats&telia.net
-2235
- Exploration Enterprises, Inc.
- Eric E. Westbrook
- westbrook&eei.net
-2236
- Daimler-Benz Aerospace AG
- Wolfgang Mueggenburg
- Wolfgang.Mueggenburg&ri.dasa.de
-2237
- Xara Networks Ltd.
- Simon Evans
- spse&xara.net
-2238
- The FreeBSD Project
- Poul-Henning Kamp
- phk&FreeBSD.ORG
-2239
- World Merchandise Exchange (WOMEX) Ltd.
- Michael Connolly
- connolly&womex.com
-2240
- lysis
- arno streuli
- arno&lysis.ch
-2241
- CFL Research
- Clem Lundie
- clundie&ix.netcom.com
-2242
- NET-TEL Computer Systems Limited
- Andrew Gabriel
- Andrew.Gabriel&net-tel.co.uk
-2243
- Sattel Communications
- Phillip Soltan
- P.Soltan&sattelcomm.com
-2244
- Promatory Communications Inc.
- Plamen Minev
- plamen&promatory.com
-2245
- Catalogic Software Inc. (formerly 'Syncsort, Inc.')
- Chi Shih Chang
- cchang&catalogicsoftware.com
-2246
- LloydsTSB Group Plc
- Peter Byrne
- byrnep&lloyds-bank.co.uk
-2247
- IT Consultancy Engineering Management Group Ltd.
- Mr Vano Porchkhidze
- vano&kheta.ge
-2248
- LITE-ON COMMUNICATIONS Corp.
- Jason Yu
- jasonyu&lccr1.ltnlcc.com.tw
-2249
- The New Millennium
- Robert Garrard
- garrard1&charlotte.infi.net
-2250
- Quatraco Yugoslavia
- Milos Eric
- meric&EUnet.yu
-2251
- BR Business Systems
- John Wiseman
- jnw&rail.co.uk
-2252
- WheelGroup Corporation Jonathan
- Beakley
- beakley&wheelgroup.com
-2253
- Ultimate Technology, Inc.
- Sasha Ostojic
- sasha&UltimateTech.com
-2254
- Delta Electronics, Inc.
- David Chen
- dei-david-chen&delta.com.tw
-2255
- Waffle Productions
- Michael Page
- mpage9&mail.idt.net
-2256
- Korea Internet
- j.w.lee
- ing&internet-shopping.com
-2257
- Selex Communications Limited (formerly 'BAE SYSTEMS')
- Phil Clark
- phil.m.clark&selex-comms.com
-2258
- THOMSON BROADCAST SYSTEMS
- Alain PUILLANDRE
- puillandrea&tcetbs1.thomson.fr
-2259
- Workflow Automation Company Ltd.
- Caesar Cheng
- caesar&204.225.174.150
-2260
- Associated RT, Inc.
- Joe Sheehan
- jsheehan&agrp.com
-2261
- DRS Codem Systems
- Robert Hauck
- hauck&drs-cs.com
-2262
- RIGHT TIME WATCH CENTER FELIX
- ZALTSBERG
- fzrtime&dimensional.com
-2263
- Advanced-Vision Technologies, Inc.
- Hsiang-Ming Ma
- hsiangm&server.yam.com
-2264
- Applied Intelligence Group Dana
- French
- dfrench&aig.vialink.com
-2265
- Acorn Computers Ltd.
- John Farrell
- jfarrell&acorn.co.uk
-2266
- Tempest Consulting Inc.
- Francis Cianfrocca
- francis&tempestsoft.com
-2267
- Digital Sound Corporation
- Jim Crook
- jxc&dsc.com
-2268
- Fastlan Solutions, Inc.
- Jim McNaul
- jmcnaul&fastlan.com
-2269
- Ordinox Network, Inc.
- Yvon Belec
- ybelec&ordinox.com
-2270
- Telinc Corporation
- Tony Barbaro
- testlinktb&aol.com
-2271
- DRS Consulting Group
- Darren Starr
- ElmerFudd&activepages.com
-2272
- Rapid City Communication
- Sharon Chisholm
- schishol&nortelnetworks.com
-2273
- Invisible Fence Sales Company
- George Ewing
- gedit&ix.netcom.com
-2274
- Troika Management Services
- William McLean
- xbill&sprynet.com
-2275
- VXtreme Inc.
- David Herron
- dherron&vxtreme.com
-2276
- CryptSoft Pty Ltd
- Tim Hudson
- tjh&cryptsoft.com
-2277
- Brooktrout Technology
- Ron Ching
- rching&bng.com
-2278
- GRASS mbH
- Ingo Eibich-Meyer
- GRASSmbH&t-online.de
-2279
- EPiCon Inc.
- Michael Khalandovsky
- mlk&epicon.com
-2280
- SAD Trasporto Locale S.p.a
- Maurizio Cachia
- mau&sad.it
-2281
- Giganet Ltd
- Eitan Birati
- eitan&giganet.co.il
-2282
- INCAA Informatica Italia srl
- Henry van Uffelen
- uffelen&mail.skylink.it
-2283
- Vermont Firmware Corporation
- David Garen
- dgaren&vtfirmware.com
-2284
- Automated Concepts
- Blaine King
- blaine&cotton.com
-2285
- Flash Networks Ltd
- Albert Berlovitch
- albert&flash-networks.com
-2286
- Oracom Inc.
- Marc Pierrat
- marcp&oracom.com
-2287
- Shell Services Company
- Linda Dodge
- linda&shellus.com
-2288
- Black Pigs of Death
- Thomas Boden
- tbboden&sprynet.com
-2289
- N3ERZ
- Scott Smith
- riverofcode&yahoo.com
-2290
- Technology Rendezvous Inc.
- Srinivasa Addepalli
- srao&trinc.com
-2291
- ZapNet! Inc.
- Michael Chalkley
- mikech&iproute.com
-2292
- Premier Technologies
- Fausto Marasco
- fmarasco&premier.com.au
-2293
- Tennyson Technologies
- George Benko
- GBenko&tennyson.com.au
-2294
- Dot Hill Systems
- Gary Dunlap
- gdunlap&dothill.com
-2295
- DH Technology, Inc.
- John Tarbotton
- jtarbott&cogsol.com
-2296
- DAGAZ Technologies, Inc.
- Vibhash Desai
- desaiv&integnet.com
-2297
- Ganymede Software Inc.
- Vik Chandra
- vc&ganymedesoftware.com
-2298
- Tele-Communications Inc.
- Andy Kersting
- droid&ndtc.tci.com
-2299
- FreeGate Corportation
- Ken Mayer
- kmayer&freegate.net
-2300
- MainControl Inc.
- Alexander Dorman
- dorman&maincontrol.com
-2301
- Luminate Software Corp.
- Leo Liou
- leol&luminate.com
-2302
- K2Net
- Vergel Blake
- vergelb&ktwonet.com
-2303
- Aurora Communciations Pty. Ltd.
- John Larsen
- johnl&netcomm.com.au
-2304
- LANscape Limited
- Ricard Kelly
- kellyr&lanscape.co.nz
-2305
- Gateway Technologies Inc.
- Jay Hogg
- j_hogg&compuserve.com
-2306
- Zergo Limited
- Chris Trobridge
- ctrob&cix.compulink.co.uk
-2307
- C4U Solutions
- Noreen Rucinski
- NoreenSR&msn.com
-2308
- BOLL Engineering AG
- Thomas Boll
- tb&boll.ch
-2309
- Internet Mail Consortium
- Paul Hoffman
- phoffman&imc.org
-2310
- College of Mathematics and Science - Univ. of Central Oklahoma
- Bill McDaniel
- mcdaniel&aix1.ucok.edu
-2311
- Institute for Applied Supercomputing - CSUSB
- Yasha Karant
- karant&ias.csusb.edu
-2312
- Red Hat Software
- Bryan Andregg
- bandregg&redhat.com
-2313
- Legal & General Assurance Society Ltd.
- Steve Reid
- gblegjff&ibmmail.com
-2314
- Fire Networks Inc.
- Steven Gordon
- sgordon&firenetworks.com
-2315
- icti
- Ron Nau
- ron.nau&icti.com
-2316
- Internet Communication Security
- Lai Zit Seng
- lzs&pobox.com
-2317
- TALX Corporation
- Bryan D. Garcia
- bgarcia&talx.com
-2318
- Repeater Technologies Inc.
- Ron Earley
- rge&ix.netcom.com
-2319
- Aumtech Inc.
- Jeff Shmerler
- jeff&aumtechinc.com
-2320
- EuroSInet
- John Horton
- j.horton&imc.exec.nhs.uk
-2321
- ke Kommunikations-Elektronik
- Martin Weigelt
- weigelt&kecam-han.de
-2322
- Starvision Multimedia Corp.
- Srdjan Knezevic
- sknezevi&starvision.com
-2323
- Alcatel Telecom ASD
- Marc De Vries
- VRIESM&btmaa.bel.alcatel.be
-2324
- AVAL DATA Coporation
- Yuichi Maruyama
- jaavl106&infos.or.jp
-2325
- Pacific Northwest National Laboratory
- S. Cullen Tollbom
- Cullen.Tollbom&pnl.gov
-2326
- Tortoise Software Systems
- Frank Flaherty
- Fxf52&aol.com
-2327
- Verio, Inc.
- Carl W. Kalbfleisch
- cwk&verio.net
-2328
- ArrayComm, Inc.
- Marc Goldburg
- marcg&arraycomm.com
-2329
- DST Systems Inc.
- W. Evan Rasco
- erasco&dstsystems.com
-2330
- Vision Service Plan
- Kevin Parrish
- kevinp&isd.vsp.com
-2331
- Best Buy
- Beth Singer
- beth.singer&bestbuy.com
-2332
- Shared Network Services (SNS)
- Norman Brie
- norm_brie&sns.ca
-2333
- BBC
- Brandon Butterworth
- hostmaster&bbc.co.uk
-2334
- Packeteer Inc.
- Robert Purvy
- bpurvy&packeteer.com
-2335
- Applied Digital Access
- Jeff Swann
- jeff.swann&ada.com
-2336
- HIS Technologies
- Nick de Smith
- nick.desmith&histech.com
-2337
- DNE Technologies, Inc.
- Martin Maloney
- mmaloney&dne.com
-2338
- Vertical Networks, Inc.
- Paul Petronelli
- plp&palmcorp.com
-2339
- CSoft Ltd.
- Nedelcho Stanev
- decho&iname.com
-2340
- National Grocers
- Henry Fong
- hfong&ngco.com
-2341
- Reliance Computer Corp.
- Sujith Arramreddy
- sujith&rccorp.com
-2342
- AK-NORD EDV Vertriebsges mbH
- Michael Weber
- AK-NORD&t-online.de
-2343
- Financial Technologies International
- Rich Bemindt
- bemindt&ftintl.com
-2344
- SpaceWorks, Inc.
- Mitchell Song
- mcs&spaceworks.com
-2345
- Torrent Networking Technologies Corp.
- Rohit Dube
- rohit&torrentnet.com
-2346
- CTI
- Warren Baxley
- warrenb&cfer.com
-2347
- Datastream International Abbas Foroughi
- aforoughi&datastream.com
- ---none---
-2348
- Killion Inc.
- Bob Newkirk
- bnewkirk&iname.com
-2349
- Mission Critical Software, Inc.
- Von Jones
- vjones&mcsnotes.missioncritical.com
-2350
- Data Research and Applications, Inc.
- Dan Duckworth
- dduckwor&dra-hq.com
-2351
- Resonate Inc.
- Ed Liu
- zliu&resonateinc.com
-2352
- Ericsson, Inc. (formerly 'RedBack Networks')
- Michael Thatcher
- michael.thatcher&ericsson.com
-2353
- Nexware Corporation
- Hunghsin Kuo
- hkuo&nexware.com
-2354
- ADC Wireless Systems
- Ruby Zhang
- rubyz&pcssolutions.com
-2355
- ITIS
- Franck Dupin
- technic&itis.galeode.fr
-2356
- LANCOM Systems
- Udo Brocker
- udo.brocker&lancom-systems.de
-2357
- PSIMED Corporation
- Freda Hoo
- fhoo&msn.com
-2358
- Transfer Data Test GmbH
- Siegfried Vogl
- nwmgmt&tdt.de
-2359
- T.I.P. Group S.A.
- Olivier Mascia
- om&tipgroup.com
-2360
- Redlink
- Daniel R. Lindsay
- dlindsay&usa.net
-2361
- Japan Information Engineering Co, Ltd.
- Hidehiko Sakashita
- sakasita&jiec.co.jp
-2362
- Richter Systems Development, Inc.
- JameS Lehmer
- lehmer&co.richtersystems.com
-2363
- Eurocontrol MAS UAC
- Erik Van Releghem
- erik.van-releghem&eurocontrol.be
-2364
- Konica Corporation
- Chiharu Kobayashi
- c.koby&konica.co.jp
-2365
- Viacom
- Edward Lalor
- snmp&viacom.com
-2366
- XIOtech Corporation
- Randy Maas
- randym&xiotech.com
-2367
- IMS Gesellschaft fuer Informations- und Managementsysteme mbH
- Mr. Arndt Hoppe
- infoserv&ims.wes.eunet.de
-2368
- Softworks
- Robert Rogers
- mrrogers&softworkscc.com
-2369
- MobileWare Corporation
- Bill Sager
- bsager&mobileware.com
-2370
- Memco Software Ltd.
- Zakie Mashiah
- zakie&memco.co.il
-2371
- Advanced TechCom, Inc.
- Tim Jennings
- TJENNINGS&atiradio.com
-2372
- Bedford Associates, Inc.
- Jose Badia
- jose.badia&bedford.com
-2373
- CyberWizard, Inc.
- Randy Shane
- randy123&airmail.net
-2374
- SMART Technologies, Inc.
- Craig Dunn
- cdunn&smartdna.com
-2375
- Concentric Network Corporation
- Malik Khan
- malik&concentric.net
-2376
- The SNMP WorkShop
- Thomas R. Cikoski
- snmpshop&ix.netcom.com
-2377
- Reltec Corp
- Greg Saltis
- GS4611&llp.relteccorp.com
-2378
- Nera
- Helge Lund
- helu&networks.nera.no
-2379
- Nations Bank
- James Moskalik
- jimmo&crt.com
-2380
- Integrated Design Techniques Limited
- Robin Jefferson
- robin&idtuk.com
-2381
- OpenLink Software, Inc.
- Cees A. de Groot
- cg&pobox.com
-2382
- NetReality, Inc.
- Ilan Raab
- iraab&nreality.com
-2383
- Imation Corp.
- Jim Albers
- jwalbers&imation.com
-2384
- SIBIS Ltd.
- Dr. Batyr Karryev
- batyr&tm.synapse.ru
-2385
- SHARP Corporation
- Akira Saitoh
- saitoh&trl.mkhar.sharp.co.jp
-2386
- Desktop Data, Inc.
- Fred Yao
- fred.yao&desktopdata.com
-2387
- Telecom Device K.K.
- Tomoyuki Takayama
- takayama&tcd.co.jp
-2388
- Captech Communication Inc.
- Alain Martineau
- martino&francomedia.qc.ca
-2389
- Performance Telecom Corp.
- Glenn Burdett
- gsb&performance.com
-2390
- Com'X
- Mickael Badar
- mbadar&comx.fr
-2391
- Karim
- Kim Inok
- iokim&www.karim.co.kr
-2392
- Systems Integration Group
- Duncan Hare
- Duncan.Hare&iname.com
-2393
- Witcom Innovative Radio Systems
- Yakov Roitman
- yakovr&wit-com.com
-2394
- S.F. Software
- Sam Roberts
- sroberts&farallon.com
-2395
- MARBEN Italia S.p.A.
- Marco Mondini
- mmondini&marben.it
-2396
- ActivCard, Inc.
- Dominic Fedronic
- fedronic&activcard.fr
-2397
- Cognos, Inc.
- Paul Renaud
- Paul.Renaud&Cognos.COM
-2398
- Eagle Traffic Control Systems W.L.(Bud)
- Kent
- kentb&eagletcs.com
-2399
- Netwave
- Diane Heckman
- dheckman&netwave-wireless.com
-2400
- Hemet.net
- Greg Reed
- leadman&207.137.47.189
-2401
- NBX Corporation
- Kevin Short
- kshort&nbxcorp.com
-2402
- Al-Bader Shipping & Gen. Cont. Co. Domnic Faia
- absckt&ncc.moc.kw
- ---none---
-2403
- @Home Network
- Christopher A. Dorsey
- dorsey&home.net
-2404
- Primeur
- Loris Talpo
- primeurne.ma&primeur.com
-2405
- ILTS Inc.
- Ralph M. Johnson
- rmjohnson&itshqcb.com
-2406
- Computer Generation, Inc.
- Gary Aviv
- gary&compgen.com
-2407
- Mouton Noir Enterprises Inc.
- Brandon Sussman
- bsussman&xtdl.com
-2408
- Baystate Sound & Recording
- William Arnold Jr.
- wpa.bsr&worldnet.att.net
-2409
- Metapath Corporation
- Peter Larsen
- plarsen&metapath.com
-2410
- Tajeet Gourmet Food Manufacturing
- Randy Ghotra
- RGHOTRA&tst43-max1.tstonramp.com
-2411
- Telcel
- Ken Ogura
- ogura&telcel.net.ve
-2412
- Intertrader Ltd
- Rachel Willmer
- rachel&intertrader.com
-2413
- Maxtronics
- Joseph Braun
- braunj&dial.eunet.ch
-2414
- Spiderplant
- Reed Wade
- wade&spiderplant.com
-2415
- Software.com, Inc.
- Santiago Parede
- santi&software.com
-2416
- Adherent Systems Ltd
- Mike Sales
- mjs&adherent.com
-2417
- Korfmacher
- O. Korfmacher
- ok&netcs.com
-2418
- Svenska EDIT AB
- Claes Berg
- Claes.Berg&edit.se
-2419
- MLM5000
- Chase
- CHASE1208&aol.com
-2420
- INIT
- Dirk Stocksmeier
- Dirk.Stocksmeier&init.de
-2421
- Teltone Corporation
- Mike Balch
- mbalch&teltone.com
-2422
- Faircross Computers
- Brian van Luipan
- brian&mbvl.demon.co.uk
-2423
- Carycom (H.K.) LTD
- Cary Leung
- cary&cary.com
-2424
- Dominio Publico Internet, S.L.
- Antonio Noguera
- anoguera&redestb.es
-2425
- bkr - Network Systems
- Bjoern Kriews
- bkr&jumper.org
-2426
- Mariposa Technology, Inc.
- John Osanitsch
- josanitsch&mariposa-atm.com
-2427
- Brocade Communications Systems, Inc. (formerly 'NuView Inc.')
- Scott Kipp
- skipp&brocade.com
-2428
- Uninett
- Alf Hansen
- Alf.Hansen&uninett.no
-2429
- A.C.E.
- Prikhodiko Dimitri
- direction&ace.ci
-2430
- Oy Comptel Ab
- Mikael Pesonius
- Mikael.Pesonius&comptel.fi
-2431
- mms Communication GmbH
- Frank Heinzius
- fhs&mms.de
-2432
- Sortova Consulting Group, Inc.
- Tarus Balog
- tarus&sortova.com
-2433
- ENVOY Corporation
- Art Fogel
- art.fogel&envoy-neic.com
-2434
- Metron Technology Limited
- Charles Reilly
- charles&metron.co.uk
-2435
- Brother Industries, Ltd.
- Takami Takeuchi
- takami.takeuchi&brother.co.jp
-2436
- NetCom Systems, Inc.
- Niten Ved
- nved&netcom-sys.com
-2437
- Kapsch AG.
- Gerhard HUDECEK
- hudecek&kapsch.net
-2438
- Shomiti Systems
- David Colodny
- dcolodny&shomiti.com
-2439
- Computerm Corporation
- Bill Elliott
- belliott&computerm.com
-2440
- Efficient IP
- Jean Yves Bisiaux
- jyb&efficientip.com
-2441
- CertiSoft Tecnologia Ltda.
- Eduardo Rosemberg de Moura
- eduardor&spacenet.com.br
-2442
- EDI Enterprises, Inc.
- Michael Dorin
- mike&chaski.com
-2443
- CCII Systems (Pty) Ltd
- Hyram Serretta
- HSE&CCII.co.za
-2444
- Connetix, Inc.
- Jonathan P. Baker
- jbaker&connetix.com
-2445
- TUNIX Open System Consultants
- Leo Willems
- leo&tunix.nl
-2446
- GNP Computers
- Tom Buscher
- tbuscher&gnp.com
-2447
- Intercope International
- Jens Klose
- jklose&intercope.com
-2448
- NXT
- Steve McLaughlin
- smclaughin&nxt.com
-2449
- Pan Dacom Forcom Telekommunikationssysteme GmbH
- A. Jenne
- PanDacom.Forcom&t-online.de
-2450
- Auco, Inc.
- Nick Webb
- nwebb&auco.com
-2451
- Tecnotree (formerly 'Tecnomen')
- Kari Haapala
- kari.haapala&tecnotree.com
-2452
- Helax AB
- Tobias Johansson
- tobias.johansson&helax.se
-2453
- Omtool Ltd.
- Larry Klingler
- KLINGLER&omtool.com
-2454
- G-connect
- Israel Goldside
- israel.goldshide&g-connect.co.il
-2455
- Dynamic Mutual Funds
- Ed Heffernan
- eheffernan&dynamic.ca
-2456
- Antec Network Technologies
- Duane Bacon
- duane.bacon&antec.com
-2457
- Premiere Promotions
- Maureen Joy
- maureenjoy&usa.net
-2458
- LANQuest
- Sylvia Siu
- ssiu&lanquest.com
-2459
- Guardian Bank p. Zagreb
- Igor Onipko
- guardbank&aol.com
-2460
- ihlas net
- Lutfi Tekin
- lutfi&ihlas.net.tr
-2461
- WAVTrace
- Cherice Jobmann
- cjobmann&mmwave.com
-2462
- VIGGEN Corporation
- Ken Vaughn, Joerg Rosenbohm
- kvaughn&mail.viggen.com, nu&mail.viggen.com
-2463
- SAIF ALI CO., Ltd.
- ABDULKADER SALEH ABDULLAH
- abdul&mozart.inet.co.th
-2464
- CARYNET Information Center
- Cary Leung
- cary&cary.net
-2465
- Application Telematiques, Numeriques et Reseaux (ATNR)
- Michel RICART
- mricart&atnr.fr
-2466
- Channelmatic-LIMT, Inc.
- Michael Wells
- MikeOct51&aol.com
-2467
- ArrowPoint Communications Inc.
- Steven Colby
- scolby&arrowpoint.com
-2468
- Ingrasys
- Andy Chung
- AndyChung&ingrasys.com
-2469
- Netbuilding
- Rudy Van Ginneken
- rudyvg&netbuilding.be
-2470
- Personal & Confidential Klaus
- Peter Blaesing
- kpb&pccom.demon.co.uk
-2471
- Comsys International B.V.
- Ronald Elderhorst
- rdm&comsys.nl
-2472
- Advance Telecommunication Krisada Arjinpattara
- beer&sd1.sd.ac.th
- ---none---
-2473
- GateKey Solutions, Inc.
- Thomas Mullaney
- thomasm&gatekey.com
-2474
- Avici Systems, Inc.
- Patrick Gili
- pgili&avici.com
-2475
- Sierra Technology, Inc.John Fischerjfischer&stisierra.com
- Joshua Yoo
- jyoo&stisierra.com
-2476
- Encanto Networks Inc.
- Robb Kane
- rkane&encanto.com
-2477
- Mount Olive College
- Dan Colligan
- dpcolligan&152.37.105.140
-2478
- FUJITSU ACCESS LIMITED
- Tatsuyuki Muramatsu
- ttmura&access.fujitsu.com
-2479
- EDS GmbH
- Matthias Lange
- lanm&teleconnect.de
-2480
- Jyra Research Inc.
- Moray Goodwin
- moray&jyra.com
-2481
- Summit Communications
- Reiney Brown
- reiney&sumcom.net
-2482
- Ministry of Transport, Public Works and Water Management
- Mr. Sil Dekker
- S.Dekker&mdi.rws.minvenw.nl
-2483
- WinNet MCS Inc.
- Tmima Koren
- tmimak&winnet-corp.com
-2484
- ICG Communications
- Gideon Wober
- gideon_wober&icgcomm.com
-2485
- CrossLink Internet Services
- Michael Shields
- shields&crosslink.net
-2486
- Cygnus Computer Associates, Ltd.
- Marc Zimmermann
- marcz&interlog.com
-2487
- Phoenix Technologies Ltd.
- Ian Anderson
- ian_anderson&phoenix.com
-2488
- Internetclub
- CHMURA SHLOMO
- internetclub&clubmember.org
-2489
- CV. MITRA ADI PRANATA Ir. Fx Wahyu Hartono
- map_wahyu&hotmail.com
- ---none---
-2490
- Vixel Corporation
- Tom Sweet
- tsweet&seattle.vixel.com
-2491
- Atmosphere Networks Inc.
- Luis Roa
- lroa&altamar.com
-2492
- Montana Tel-Net
- Kevin Kerr
- kk&mttn.net
-2493
- JCP Computer Services Ltd.
- Jonathan Sowler
- jonathan&jcp.co.uk
-2494
- Inter Clear Service Ltd.
- Jonathan Sowler
- jonathan&jcp.co.uk
-2495
- Internet Systems Consortium, Inc.
- David W. Hankins
- David_Hankins&isc.org
-2496
- LightSpeed International, Inc.
- David Turvene
- DTurvene&lsiinc.com
-2497
- GammaGraphX, Inc.
- Bihari Srinivasan
- bihari&ggx.com
-2498
- iManage Inc.
- Aseem Parikh
- parikh&hotmail.com
-2499
- Internet Security Systems
- Don Hall
- dhall&iss.net
-2500
- Vienna Systems Corporation
- Brian Baker
- bbaker&viennasys.com
-2501
- Yago Systems, Inc.
- Shantanu R. Kothavale
- sk&yagosys.com
-2502
- LunarWave Communications
- Mike Dugas
- mad&lunarwave.net
-2503
- Bangkok Pattaya Hospital
- Satit Viddayakorn
- satit&bgh.co.th
-2504
- Roke Manor Research Limited Keith
- Watts
- keith.watts&roke.co.uk
-2505
- New Oak Communications, Inc.
- Sharon Chisholm
- schishol&nortelnetworks.com
-2506
- Bug Free Development
- Jim Philippou
- 71171.3015&compuserve.com
-2507
- ARC Technologies Group, Inc.
- David Campbell
- Dave.Campbell&worldnet.att.net
-2508
- Internet Dynamics, Inc.
- Larry Lipstone
- lrl&interdyn.com
-2509
- Aviat Networks
- Martin Howard
- Martin.Howard&Aviatnet.com
-2510
- Bear Mountain Software
- Thomas Dignan
- tdignan&bearmtnsw.com
-2511
- AccessLAN Communications,Inc.
- Hiren Desai
- hdesai&accesslan.com
-2512
- Crossroads Systems, Inc.
- Cathy Everitt
- ceveritt&Crossroads.com
-2513
- CR2A-DI
- Herve Thomas
- hthomas&cr2a-di.fr
-2514
- Mantra Communications Inc.
- Suresh Rangachar
- s.rangachar&worldnet.att.net
-2515
- DiscoverNet
- Neil Abeynayake
- neil&discover.net
-2516
- VocalTec Communications Ltd.
- Yoav Eilat
- Yoav_Eilat&vocaltec.com
-2517
- Riversoft Limited
- Philip Tee
- phil&riversoft.com
-2518
- Phaos Technology Corp.
- Joel Fan
- jfan&phaos.com
-2519
- POWEREDCOM, Inc.
- Hisashi Nakagawa
- hi-nakagawa&poweredcom.net
-2520
- Internet Systems Inc.
- Nayef E. Rashwan
- rashwan&qatar.net.qa
-2521
- ComConsult
- Stefan Kreicker
- stefan.kreicker&comconsult.de
-2522
- Osicom Technologies
- John Long
- jlong&osicom.com
-2523
- Hitron Technology Inc.
- David Cheng
- swell&hc.ht.net.tw
-2524
- Rabenstein Enterprises
- Jamie Rabenstein
- jamie&rabenstein.com
-2525
- AT Sistemas, C.A.
- Alejandro Trigueros
- atsis&telcel.net.ve
-2526
- iPass Inc.
- Jay Farhat
- jfarhat&ipass.com
-2527
- InterLinear Technology Inc
- George Detlefsen
- drgeorge&ilt.com
-2528
- World One Telecom Ltd
- George Detlefsen
- drgeorge&w1t.com
-2529
- Quadritek Systems, Inc.
- David Cross
- dcross&quadritek.com
-2530
- Syseca
- Frederic Koch
- frederic.koch&syseca.thomson.fr
-2531
- NetSpeak Corporation
- Glenn Harter
- glenn&netspeak.com
-2532
- OpNet Inc.
- Jeff Weisberg
- snmp&op.net
-2533
- MRM Consulting
- Michael R. MacFaden
- mrm&acm.org
-2534
- TNSys-Trading Net System
- Marco Antonio Reginatto
- reginato&tnsys.com.br
-2535
- JCMT
- azrin
- azrin&post1.com
-2536
- Endeavour Hills Computer Services
- Phillip Morgan
- pjm&diamond.fox.net.au
-2537
- Diversified Technology, Inc.
- Albert Bolian
- ajb&teclink.net
-2538
- Lateral Management Limited
- Bob Berryman
- bobb&es.co.nz
-2539
- Proxy Software Systems Ltd.
- Yossi Cohen-Shahar
- yossi&proxy.co.il
-2540
- Combox Ltd.
- Uri Bendelac
- bendelac&combox.co.il
-2541
- Spectrix Corporation
- Matt Heneghan
- mheneghan&spectrixcorp.com
-2542
- Electronics and Telecommunications Research Institute
- DongIl Seo
- bluesea&etri.re.kr
-2543
- Arlotto Comnet, Inc.
- Mark Liu
- markliu&address.com.tw
-2544
- ADVA AG Optical Networking
- Andreas Klar
- aklar&advaoptical.com
-2545
- NewTec GmbH Systementwicklung und Beratung Harald
- Molle
- molle&newtec.de
-2546
- PVT a.s. - pvt.net
- Michal Muhlapchr
- michalm&pvt.net
-2547
- Catholic University of Pelotas
- Luiz Fernando Tavares Meirelles
- lftm&amadeus.ucpel.tche.br
-2548
- Cryptonym Corporation
- Andrew D. Fernandes
- andrew&cryptonym.com
-2549
- Aker Consultoria e Informatica Rodrigo Ormonde
- ormonde&cnt.org.br
- ---none---
-2550
- ELVIS-PLUS
- Mark Koshelev
- marc&elvis.ru
-2551
- Telegyr Systems
- Marc-Etienne Walser
- marc-etienne.walser&ch.telegyr.com
-2552
- Netegrity, Inc.
- Vadim Lander
- vlander&netegrity.com
-2553
- Cardinal Network, New Zealand Ltd
- Martyn Leadley
- mleadley&cardnet.co.nz
-2554
- Micro Integrated Innnovations Paul
- Stewart
- paul_stewart&eee.org
-2555
- JayaTek Sdn. Bhd.
- Wai-Sun Chia
- waisun&pc.jaring.my
-2556
- Central Electronic Industry
- Sang Ho . LEE
- shlee&inote.com
-2557
- Transcend Access Systems, Inc.
- David Peters
- daye&compuserve.com
-2558
- Outreach Communications Corp.
- Chris Fowler
- fowler&outreach.com
-2559
- BocaTel
- Sean McEnroe
- smcenroe&bocatel.com
-2560
- AT&T GNMC Amsterdam
- Mike Wessling
- mikew&att.nl
-2561
- Teamphone.com Ltd,
- Alan Stokes
- A.Stokes&Teamphone.com
-2562
- SBB Software Beratung GmbH
- Wolfgang Dall
- dall&sbb.at
-2563
- Comstat DataComm Corporation
- Larry Kent
- lkent&comstat.com
-2564
- The Network Technology Group
- Albert Holt
- alberth&ntgi.com
-2565
- Avery Dennison
- Matthew Domanowski
- domanowskimatt&averydennison.com
-2566
- ROHDE & SCHWARZ GmbH & Co.KG
- Andreas Rau
- hostmaster&rohde-schwarz.com
-2567
- Datamedia SA
- Bruno Bosqued
- bbosqued&datamedia.fr
-2568
- Integrix, Inc.
- Jeff Zheng
- jzheng&integrix.com
-2569
- Telenor Novit AS
- Atle Ruud
- Atle.Ruud&novit.no
-2570
- Prefered Communications
- Alan Sisisky
- security&safari.net
-2571
- Mu'Tah University
- Tarawneh Mokhled Suliman
- mokhled&center.mutah.edu.jo
-2572
- Network TeleSystems, Inc.
- Lewis Greer
- lewis&nts.com
-2573
- Decision-Science Applications,Inc. Simeon Fitch
- sfitch&dsava.com
- ---none---
-2574
- Concentricity, LLC
- Ted Eiles
- tedeiles&concentricity.com
-2575
- Artiza Networks Inc.
- Tatsuya Yamaura
- yamaura_tatsuya&artiza.co.jp
-2576
- ComputerShare Systems Limited
- Peter Brew
- peter.brew&computershare.com.au
-2577
- EDR Technologies
- Mike Helton
- helton&edrtech.com
-2578
- AbirNet
- Lev Kantorovich
- lev&abirnet.com
-2579
- Trikota, Inc.
- David Barmann
- dbarmann&trikota.com
-2580
- Diebold Company of Canada Limited Rajan Raman
- rajan&rdstasks.com
- ---none---
-2581
- Precise Connectivity Solutions
- Tal Grynbaum
- tal_g&precisesoft.co.il
-2582
- ANS Communications
- Alex Kit or Rebecca Bartlett
- kit&ans.net, bartlett&ans.net
-2583
- Hydro-Quebec TransEnergie
- Alain Martineau
- Martineau.Alain&hydro.qc.ca
-2584
- RadioLAN, Inc.
- Welson Lin
- wlin&radiolan.com
-2585
- Youth Opportunities Upheld, Inc.
- Mark Merchant
- merchantm&youinc.org
-2586
- Teracom AB
- Per Ruottinen
- pru&teracom.se
-2587
- Freemont Avenue Software, Inc.
- Jim Livermore
- jim&lsli.com
-2588
- Positron Fiber Systems
- Eric Paquet
- epaquet&positronfiber.com
-2589
- Chuo Electronics, Co., Ltd.
- Masaya Kikuchi
- kikuchi&cec.co.jp
-2590
- Minolta Co., Ltd.
- Takahiro Fujii
- t-fujii&mol.minolta.co.jp
-2591
- Radyne Corporation
- Paul Wilson
- paw&netwrx.net
-2592
- NSI Software
- David Demlow
- DDemlow&NSISW.COM
-2593
- Exstream PC
- Warren Evans
- wceace&aol.com
-2594
- Simulation Laboritories Inc.
- Hassan Ashok
- csti&erols.com
-2595
- WebTV Networks, Inc.
- Jeff Allen
- jra&corp.webtv.net
-2596
- Credit Management Solutions, Inc.
- Gregory Wright
- greg_wright&cmsinc.com
-2597
- Chisholm Technologies Inc.
- Steve Bergeron
- stevieb&chistech.com
-2598
- WonderNet International Corp
- Raymond Lee
- raymond&wonder.net.tw
-2599
- Percpetics Corporation
- Robb Eads
- rweads&usit.net
-2600
- Distributed Systems Logic, Inc.
- Robb Eads
- rweads&usit.net
-2601
- US West !nterprise Networking Services
- Peter Schow
- pschow&advtech.uswest.com
-2602
- Intrasoft Corporation
- Gene Dragotta
- dragotta&bit-net.com
-2603
- Allot Communications
- Rich Waterman
- rich&allot.com
-2604
- Sophos Plc
- Richard Baldry
- rjb&sophos.com
-2605
- TaylorMade-Math
- Alice Ward
- carloloc&ix.netcom.com
-2606
- Rittal-Werk Rudolf Loh GmbH & Co.KG
- . Strackbein
- info&rittal.de
-2607
- LAN International, Inc.
- Hans Karlsson
- hans.karlsson&lanint.com
-2608
- Precise Software Solutions
- Elias Yoni
- yoni&precisesoft.co.il
-2609
- New Prime Inc.
- Jim Peterson
- JPETER01&mail.orion.org
-2610
- DataHaven Project, Inc.
- Sean Goller
- wipeout&dhp.com
-2611
- Interspeed
- Skip Carlson
- skip&interspeed.com
-2612
- MPI Tech a/s (formerly 'i-data international a-s')
- Paul Gerelle
- info&mpitech.com
-2613
- Accelerated Networks, Inc.
- Sean Finlay
- sean&acceleratednetworks.com
-2614
- Forschungszentrum Karlsruhe GmbH
- Torsten Neck
- neck&iai.fzk.de
-2615
- ixMicro
- Jianxin (Joe) Li
- joe.li&ixmicro.com
-2616
- CAO Diffusion
- Khalil Rabehi-Isard
- gep&caodiff.com
-2617
- Computer Communications Consulting, Inc.
- Anil Parthasarathy
- pap&orca.overthe.net
-2618
- Tracewell Systems, Inc.
- David Keene
- davidkeene&compuserve.com
-2619
- Advanced Internet Management, Inc.
- Deb Dutta Ganguly
- ddg&iname.com
-2620
- Check Point Software Technologies Ltd
- Gonen Fink
- gonen&CheckPoint.com
-2621
- Martin Zwernemann
- Martin Zwernemann
- martin&zwernemann.de
-2622
- Amarex Technology, Inc.
- Gordon Flayter
- gordon&amarex.com
-2623
- ASUSTek Computer Inc.
- James Hsu
- james_hsu&asus.com.tw
-2624
- Wave Wireless Networking
- Philip Decker
- iana&wavewireless.com
-2625
- FCI Telecommunications Corporation
- Eden Akhavi
- eden.akhavi&fci.co.uk
-2626
- Entuity Limited (formerly 'Prosum Ltd')
- Lee Walker
- iana&entuity.com
-2627
- TCAM Systems (UK) Ltd
- Fabrice Franceschi
- Fabrice_Franceschi&stratus.com
-2628
- Natural MicroSystems
- Edwin Jacques
- epj&nmss.com
-2629
- City of Wauwatosa
- Cheryl Chaney
- chaneyc&dreamland.chaney.net
-2630
- The Esys Corporation
- Mark Miller
- Mark.Miller&esys.ca
-2631
- Altvater Airdata Systems GmbH Peter Haaf
- peter.haaf&altvater.com
- ---none---
-2632
- PT Wiryamas Sinar Palapa
- fatahuddin djauzak
- kanyet&pekanbaru.indo.net.id
-2633
- Compucentre
- Jeff Williams
- jwilliams&cti.ca
-2634
- Western Telematic, Inc.
- Anthony Barrera
- anthonyb&wti.com
-2635
- ADTX
- Chris Jan Cortes
- chrisjan&adtex.com.ph
-2636
- Juniper Networks, Inc.
- Jeff Cheng
- jc&juniper.net
-2637
- Aptis Communications, Inc.
- Dave McCool
- dave&aptis.com
-2638
- Bstpromark
- Bill Boscarino
- BBOSCARI&bproelm.mhs.compuserve.com
-2639
- EdgePoint Networks, Inc.
- Jacob Hsu
- Jacob&edgepoint.com
-2640
- AIMetrix Incorporated
- David Tanel
- dtanel&aimetrix.com
-2641
- Arctunn Consulting
- Brad Horner
- arctunn&hotmail.com
-2642
- Computel Electronica S.A.Jose
- Barbetta
- barbetta&centroin.com.br
-2643
- FlowWise Networks Inc.
- Chi Chong
- cchong&flowwise.com
-2644
- Synaptyx Corporation
- Gregory Smith
- gregsmith&synaptyx.com
-2645
- First Union National Bank
- Sia Yiu
- sia.yiu&capmark.funb.com
-2646
- Kommunikator GmbH
- Simon Ney
- Simon.Ney&kommunikator.de
-2647
- C2S (Communication Systeme Service)
- Eric Juin
- 100434.140&compuserve.com
-2648
- Siligom
- Juan Jose Portela Zardetto
- juanjo&siligom.com
-2649
- Radcom Ltd.
- Yoav Banin
- yoav&radcom.co.il
-2650
- Go Ahead Software, Inc.
- Peter Gravestock
- peter&goahead.com
-2651
- Space Connection NV
- Danny De Roover
- danny&space-connection.be
-2652
- Merck-Medco Managed Care LLC
- Adam Lichtenstein
- adam_lichtenstein&merck.com
-2653
- City Com BV
- Robert Doetsch
- rdo&citycom.nl
-2654
- R&S BICK Mobilfunk GmbH Andreas
- Helmer
- Andreas_Helmer&rsbick.de
-2655
- Kepler Software, Ltd.
- Raz Gordon
- Raz&KeplerSoft.com
-2656
- Banque Paribas
- Jeremy Hodsman
- jeremy_hodsman&paribas.com
-2657
- Zitech Net
- Ebbe Petersen/Bo Quist Besser
- Swebservice&zitech.dk
-2658
- Century Analysis Inc.
- Jeff Wygal
- jeffw&cainc.com
-2659
- Talent Development GmbH Hans-Georg
- Daun
- hansgdaun&talentdev.ch
-2660
- CopperCom Inc.
- Bruno Sartirana
- bruno&coppercom.com
-2661
- Yutaka Electric Mfg. Co. Ltd.
- Masao Tanabe
- mstanabe&ppp.bekkoame.or.jp
-2662
- SBF-Bourse De Paris
- Yves Rouchou
- Yves.Rouchou&bourseparis.com
-2663
- Economatica
- Gustavo Exel
- gustavo&economatica.com.br
-2664
- GVN Technologies
- Karl Schlenther
- karl_schlenther&gvntech.com
-2665
- Olsy UK
- Able Frenandes
- abel.fernandes&olsy.co.uk
-2666
- Room 42 Software, LLC
- Linda Fisher
- linda&room42.com
-2667
- Cirilium
- Terry Gin
- terry_gin&cirilium.com
-2668
- Tavve Software Co.
- Anthony Edwards
- tavve&mindspring.com
-2669
- Solari di Udine
- A. Candussio
- fids.tech&solariud.it
-2670
- NetVenture, Inc.
- Jeffrey Cleary
- registrar&easy-registry.com
-2671
- Connected Systems Group
- Robert J. DuWors
- rjd&csgroup.com
-2672
- Corporate Software & Technologies, INT, Inc.
- Kent Tse
- oid-admin&cst.ca
-2673
- Fibex Systems
- James Song
- jsong&fibex.com
-2674
- Claude Jardine Design
- P.A. Wessels
- cjardine&iafrica.com
-2675
- Net Marketing, Inc.
- Rankin Johnson
- rankin&radiks.net
-2676
- IBP, Inc.
- Jim Weier
- jweier&ibpinc.com
-2677
- RD6 Inc.
- Michel Hetu
- mhetu&rd6.ca
-2678
- MassMedia Communications Inc.
- Ken Wa
- kenward&erols.com
-2679
- Nexans Suisse SA.
- Niksa Vucinic
- niksa.vucinic&nexans.com
-2680
- Peak Audio, Inc.
- Kevin Gross
- Keving&peakaudio.com
-2681
- Sia Yiu
- Sia Yiu
- sia.yiu&funb.com
-2682
- DPS Inc.
- Marshall DenHarting
- sales&dpstele.com
-2683
- Callisto Software
- Bob Daley
- RDaley&callisto.com
-2684
- ViaVideo Communications, Inc.
- Earl Manning
- emanning&viavideo.com
-2685
- Sequel Technology Corporation
- Alan Chedalawada
- achedalawada&sequeltech.com
-2686
- Wi-LAN Inc.
- Rashed Haydar
- rashedh&wi-lan.com
-2687
- Network System Technologies, Inc.
- Paul Petronelli
- plp&palmcorp.com
-2688
- Center Technology
- Mark Lo Chiano
- MarkLoChiano&centertechnology.com
-2689
- Coby Roberts
- Coby Roberts
- CROBERTS&geometric.com
-2690
- Netronix Inc.
- Lee Chang
- lee&aten.com
-2691
- Network Computer, Incorporated
- Doug McBride
- dougm&nc.com
-2692
- WebWeaving
- Dirk-Willem van Gulik
- dirkx&webweaving.org
-2693
- Institut Jozef Stefan
- Borka Jerman-Blazic
- borka&e5.ijs.si
-2694
- Eldat Communication Ltd.
- Oren Rosenfeld
- orenr&eldat.com
-2695
- MetaCommunications. Inc.
- Branislav Meandziija
- bran&metacomm.com
-2696
- Digital Video Broadcasting (DVB)
- Peter MacAvock
- MacAvock&dvb.org
-2697
- Bayly Communications Inc.
- Graham Clarkson
- engineering&bayly.com
-2698
- Poznan Supercomputing and Networking Center - POZMAN
- Pawel Wolniewicz
- pawelw&man.poznan.pl
-2699
- Printer Working Group
- Jeffrey Schnitzer
- admin&pwg.org
-2700
- DIRECTV
- Andrew Piecka
- apiecka&directv.com
-2701
- Argon Networks Inc.
- Ken Chapman
- kchapman&argon-net.com
-2702
- WACOS Inc.
- Spero Koulouras
- spero&utstar.com
-2703
- Object Zone AB
- Paul Panotzki
- paul&objectzone.se
-2704
- ICCC A/S
- Viggo Helth
- vh&iccc.dk
-2705
- SECUDE IT Security GmbH
- Stephan André
- stephan.andre&secude.com
-2706
- Institute for Applied Information Processing and Communications,Graz University of Technology
- Peter Lipp
- plipp&iaik.tu-graz.ac.at
-2707
- International Network Services
- Steve Waldbusser
- stevew&INS.COM
-2708
- JNR Systems
- Rick Geesen
- rgg&jnrsystems.com
-2709
- Congreve Computing Ltd.
- Malcolm Sparks
- malcolm&congreve.com
-2710
- Northrop Grumman - Surveillance and Battle Management Systems
- Doug White
- whitedo2&mail.northgrum.com
-2711
- Littlewoods Stores, Ltd.
- Mike Ryan
- mike.ryan&littlewoods-stores.co.uk
-2712
- ICE-TEL TLCA
- Keld Knudsen
- Keld.Knudsen&uni-c.dk
-2713
- Mauswerks, Inc.
- Brian Topping
- topping&mauswerks.com
-2714
- Dep. of Signal Theory and Communications - UPC
- Tibold Balogh
- tibold&hpgrc3.upc.es
-2715
- Zapex Technologiesn Inc.
- Glenn Arbitaylo
- glenn&zapex.com
-2716
- Glueck & Kanja Technology AG
- Christoph Fausak
- cfausak&glueckkanja.de
-2717
- Alcatel Telspace
- Didier Jorand
- jorand&telspace.alcatel.fr
-2718
- Intercall
- Alain Chateau
- interca1&club-internet.fr
-2719
- Townsend Analytics Ltd.
- Ryan Pierce
- rpierce&taltrade.com
-2720
- NorCom Informationstechnologie und Unternehmensberatung GmbH
- Ulf Lindquist
- lindquist&norcom.de
-2721
- News Internet Services
- Stuart Garner
- stuartmg&newscorp.com
-2722
- Georgia Tech Research Institute
- Joshua Roys
- Joshua.Roys&gtri.gatech.edu
-2723
- Guerrilla Mail, Inc.
- Michael Cohen
- gmail&concentric.net
-2724
- EasyStreet Online Services, Inc.
- System Manager
- manager&easystreet.com
-2725
- Art Technology Group, Inc.
- Fumi Matsumoto
- fm&atg.com
-2726
- Capital One Financial Corp.
- William Franklin
- will.franklin&capitalone.com
-2727
- SFA, Inc.
- Janes Amos
- jamos&sfa.com
-2728
- Packard Bell NEC, Inc.
- Juh-Horng Lu
- j.lu&neccsd.com
-2729
- Empire Net
- Chris Cappuccio
- chrisc&empnet.com
-2730
- Ottosen
- Steen Ottosen
- steen&ottosen.com
-2731
- Dialogdesign
- Sven Nielsen
- sn&dialogdesign.com
-2732
- Innovative Data Technology
- S. Nichols
- nichols&idtalston.com
-2733
- Group 2000 Nederland b.v.
- A. Bonetta
- andreab&group.nl
-2734
- Digital Lightwave, Inc.
- Xavier Lujan
- xlujan&lightwave.com
-2735
- MIBS-R-US
- Steven Johnson
- steven_c_johnson&hp.com
-2736
- EtherWAN Systems, Inc.
- Mitch Yang
- mitch&etherwan.com
-2737
- Cordless Technology A/S
- Adreas Szameit
- andreas.szameit&detewe.de
-2738
- Punjab Communications Ltd.(PunCom)
- Rajeev Mohal
- isd&puncom.com
-2739
- Tanstaafl! Consulting
- Henning Schmiedehausen
- hps&tanstaafl.de
-2740
- Artevea
- James Beattie
- james.beattie&artevea.com
-2741
- Calirnet Systems, Inc.
- David Chen
- dchen&clarinetsys.com
-2742
- Manage.com
- Ashwani Dhawan
- ashwani&manage.com
-2743
- RFL Electronics, Inc.
- William Higinbotham
- RFLENG&nac.net
-2744
- Sarnoff Real Time Corporation
- James Armstrong
- jba&srtc.com
-2745
- LANCAST, Inc.
- Mark Webber
- Webber&LANCAST.net
-2746
- Martin Communications
- Andrew Martin
- andrew&martin.com.au
-2747
- Dirig Software, Inc.
- Paul J. LaFrance
- pjl&dirig.com
-2748
- ICL Retail Systems Europe
- Neil Roberts
- nroberts&iclretail.icl.com
-2749
- Aptia, Inc.
- Wade Ju
- wju&aptia.com
-2750
- Vecima Networks Inc. (formerly 'WaveCom Electronics Inc.')
- Laird Froese
- external.registrations&vecima.com
-2751
- Globalcast Communications Inc.
- Naveen Rastogi
- naveen&gcast.com
-2752
- McComm International bv
- Hans van de Pol
- hpol&mccomm.nl
-2753
- ARGO Data Resource Corporation Thomas
- Koncz
- tkoncz&argodata.com
-2754
- Excel Switching Corporation
- Norman St. Pierre
- nstpierre&excelswitching.com
-2755
- Palomar Communications, Inc.
- Jason Rhubottom
- jrhubottom&ptc.palpro.com
-2756
- NetStart, Inc.
- George Hill
- george&netstartinc.com
-2757
- SmartCommerce Solutions
- Scott Guthery
- sguthery&tiac.net
-2758
- Universal Micro Applications, Inc.
- J.H. Estes
- joele&uma.com
-2759
- SNS Consultants
- Jannie van Zyl
- jannie&snscon.co.za
-2760
- Enhanced Messaging System, Inc.
- John Jackson
- jjackson&emsg.com
-2761
- Informatica S.p.A.
- Carlo Tordella
- carlo.tordella&informatica-spa.it
-2762
- Netgame Ltd.
- Lifshitz Yossi
- yossi&ngweb.netgame.co.il
-2763
- IntelliNet Technologies, Inc.
- Joe Pakrasi
- j.pakrasi&intellinet-tech.com
-2764
- Acxiom Corporation
- Keith Gregory
- kgrego&acxiom.com
-2765
- Dafur GmbH
- Thomas Spitzer
- TS_Dafuer&classic.msn.com
-2766
- Platform Computing Corporation
- Khalid Ahmed
- ahmedk&platform.com
-2767
- Automotive Products plc
- Chris Hill
- hillcf&apgroup.co.uk
-2768
- RandD Computer Services Razvan
- Dumitrescu
- randd&rogers.wave.ca
-2769
- Knuerr AG
- Christian Keil
- knuerr.de&t-online.de
-2770
- Eurotel Praha s.r.o.
- Martin Zampach
- martin_zampach&eurotel.cz
-2771
- Inlab Software GmbH
- Thomas Obermair
- obermair&acm.org
-2772
- Intersolve Technologies
- Andre Moen
- amoen&euronet.nl
-2773
- Redstone Communications, Inc.
- Jason Perreault
- jperreault&redstonecom.com
-2774
- Algorithmic Research Ltd.
- Yoram Mizrachi
- yoram&arx.com
-2775
- AGT International, Inc.
- John Cachat
- jcachat&agti.com
-2776
- Fourthtrack Systems
- Bob Barrett
- market&fourthtrack.com
-2777
- Flextel S.p.a.
- Francesca Bisson
- fbisson&flextel.it
-2778
- WarpSpeed Computers
- Chris Graham
- chrisg&warpspeed.com.au
-2779
- 21C3
- Chris Graham
- chrisg&21c3.com.au
-2780
- Neo Networks Inc.
- Hemant Trivedi
- hemant&neonetworks.com
-2781
- Technical University of Madrid (UPM)
- David Larrabeiti
- dlarra&dit.upm.es
-2782
- BOM Computer Services Ltd.
- Bartley O'Malley
- bartley&bom.uk.com
-2783
- Control Systems International
- Kenny Garrison
- kennyg1&airmail.net
-2784
- bbcom Broadband Communications GmbH & Co. KG
- Gerald Schreiber
- g.schreiber&bbcom-hh.de
-2785
- Tecnopro SA
- Hugo A. Pagola
- hpagola&tecnopro.com.ar
-2786
- Politecnico di Torino
- Antonio Lioy
- lioy&polito.it
-2787
- ING Group
- L.J.M. Dullaart
- Laurent-Jan.Dullaart&mail.ing.nl
-2788
- Wytec Incorporated Dave
- Downey
- ddowney&wytecinternational.com
-2789
- Mauro Enterprise
- Douglas Mauro
- doug&mauro.com
-2790
- RoadRunner
- Douglas Mauro
- opsmail1&nycap.rr.com
-2791
- Deterministic Networks, Inc.
- Daljit Singh
- daljit&juno.com
-2792
- Sprint PCS
- Robert Rowland
- rrowla01&sprintspectrum.com
-2793
- Interactive Intelligence
- Jeff Swartz
- JeffS&inter-intelli.com
-2794
- JAYCOR
- Jonathan Anspach
- janspach&lsf.kirtland.af.mil
-2795
- Edify Corporation
- Daniel Yeung
- daniely&edify.com
-2796
- Fox IT Ltd
- Ed Moon
- Ed.Moon&foxit.net
-2797
- University of Pennsylvania
- Mark Wehrle
- netadmin&isc.upenn.edu
-2798
- Metawave Communications Corp.
- Alex Bobotek
- alexb&metawave.com
-2799
- Enterprise Solutions Ltd
- Neil Cook
- neil.cook&esltd.com
-2800
- CBL GmbH
- Stefan Kirsch
- info&cbl.de
-2801
- ADP Dealer Services
- Phil Parker
- Phil.Parker&ds.adp.dk
-2802
- EFKON
- Peter Gruber
- efkon.electronics&styria.com
-2803
- SICAN GmbH
- Frank Christ
- christ&sican.de
-2804
- KeyTrend Inc.
- Tim Chang
- tim&keytrend.com.tw
-2805
- ACC TelEnterprises
- James FitzGibbon
- james&ican.net
-2806
- EBA
- Patrick Kara
- Patrick&EBA.NET
-2807
- Teleware Co., Ltd.
- Mangeun Ryu
- mryu&tware.co.kr
-2808
- eFusion, Inc.
- Kevin Brinkley
- kevin_brinkley&efusion.com
-2809
- Participants Trust Company
- Neil Hixon
- 74223.1750&compuserve.com
-2810
- PeopleSoft, Inc.
- Doyle White
- dwhite&peoplesoft.com
-2811
- Entrata Communication
- Kuogee Hsieh
- khsieh&entrata.com
-2812
- Musics.com
- Terry James
- NetAdmin&Musics.com
-2813
- First Telecom plc.
- Linda Jackson
- yy81&dial.pipex.com
-2814
- Telesnap GmbH
- Thomas Januschke
- tjanuschke&Telesnap.de
-2815
- Newpoint Technologies, Inc.
- Scott Jennings
- rsj&newpointtech.com
-2816
- T&E
- Tom Jenkins
- jenkintl&jnpcs.com
-2817
- Disney Regional Entertainment, Inc.
- Bill Redmann
- bill&wdi.disney.com
-2818
- Ramp Networks, Inc.
- Sri Bathina
- sri&rampnet.com
-2819
- Open Software Associates
- Adam Frey
- adam&osa.com.au
-2820
- Procom Technology
- James Leonard
- jleonard&procom.com
-2821
- University of Notre Dame (Office of Information Technology)
- Zuwei Liu
- zliu1&nd.edu
-2822
- Arquitectura Animada
- Juan Cieri
- cieri&cvtci.com.ar
-2823
- Sumbha Holograms & Packaging Systems Ltd.
- Pratap Bhama
- stumbha&hotmail.com
-2824
- The A Consulting Team, Inc.
- Jeffrey Singer
- jsinger&tact.com
-2825
- WorldGate Communications, Inc.
- Bruce Bauman
- bbauman&wgate.com
-2826
- TOA Electronics Ltd.
- Hidenobu Kawakami
- hkawakami&toadp.co.jp
-2827
- Sytex Systems Corp.
- Vincent J. DiPippo
- vdipippo&sytexcorp.com
-2828
- Zell Distributors
- Michael Zelkowski
- bldr&ts014d02.det-mi.concentric.net
-2829
- YRless Internet Corporation
- Jody Mehring
- jody&yrless.com
-2830
- HALO Technologies
- Brian Boyd
- brian&halocorp.com
-2831
- Beijing Univ. of Posts & Telecom., Training Center
- Huang Leijun
- zhuxn&bupt.edu.cn
-2832
- Virtual Data Systems, Inc.
- Virgil Mocanu
- virgil&virtualdatasystems.com
-2833
- NetDox, Inc.
- Elliott Krieter
- ekrieter&netdox.com
-2834
- Expert Computer Service Jim Mac
- Farlane
- webmaster&207.34.83.130
-2835
- Dictaphone
- Bob Kiraly
- bkir&dictaphone.com
-2836
- Unex Technology Corporation
- Shih-Chun Wei
- edwei&ms11.hinet.net
-2837
- Global Mobility Systems, Inc.
- Peter Hartmaier
- PeterH&gmswireless.com
-2838
- TFM Associates
- Stephen Diercouff
- sgd&tfm.com
-2839
- Teleran Technologies, L.P. Carmen Randazzo
- crandazzo&teleran.com
- ---none---
-2840
- Digital Telecommunications, Inc.
- Song Liu
- songliu&dxc.com
-2841
- KB Internet Ltd.
- Paul Kalish
- root&shell.kindbud.org
-2842
- Agri Datalog
- Frank Neulichedl
- frank&websmile.com
-2843
- Braid Systems Limited
- James Allen
- james.allen&braid.co.uk
-2844
- Newsnet ITN
- Nigel Watson
- nigel&newsnet.com.au
-2845
- JTCS
- Joe Tomkowitz
- joet&jtcs.net
-2846
- KEYCORP Pty. Ltd.
- Peter Achelles
- pachelles&keycorp.com.au
-2847
- GTE Internetworking
- Bill Funk
- bfunk&bbn.com
-2848
- Royalblue Technologies plc Trevor Goff
- Trevor.Goff&royalblue.com
- ---none---
-2849
- U&R Consultores Argentina
- Marcelo Utard
- mutard&uyr.com.ar
-2850
- Tevycom Fapeco S.A.
- Marcelo Utard
- mutard&uyr.com.ar
-2851
- Polaris Communications
- Debra Hollenback
- deb&polariscomm.com
-2852
- Competitive Automation, Inc.
- Berry Kercheval
- berry&join.com
-2853
- IDEXX Laboratories, Inc.
- George Rusak
- winsystems&idexx.com
-2854
- Network Computing Technologies, Inc.
- Martin Cooley
- martinc&ncomtech.com
-2855
- Axxcelera Broadband Wireless
- Tony Masters
- tmasters&axxcelera.com
-2856
- Cableware Electronics
- Lee Dusbabek
- cableware&aol.com
-2857
- Network Power and Light
- Douglas Hart
- hart&npal.com
-2858
- Clarent Corporation
- Chris Brazdziunas
- crb&verso.com
-2859
- Kingston - SCL
- Alan Fair
- alan.fair&kscl.com
-2860
- netVest
- David Deist
- dmdeist&netvest.com
-2861
- VSN systemen BV
- Martien Poels
- info&OpenTSP.com
-2862
- Northwest Consulting Services Randy
- Scheets
- randy&freerange.com
-2863
- Thomson Inc.
- David Jeffries
- JeffriesDa&tce.com
-2864
- Digitel S/A Industria Eletronica
- Andre Baggio
- baggio&digitel.com.br
-2865
- Nortel Networks - Optical Metro
- Tao Liu
- traceyli&nortelnetworks.com
-2866
- Technical Insights
- Brett Grothoff
- Brettg&erols.com
-2867
- NKF Electronics
- N. Wielage/P. de Konick
- nick.wielage&dlf1.nkf.nl
-2868
- Glasshouse Business Networks B.V.
- J.K. Jongkind
- j.k.jongkind&glasshouse.nl
-2869
- VSI Enterprises
- Michael L. Miller
- mike.miller&vsin.com
-2870
- E-TECH, Inc.
- Craig Chen
- craig_chen&e-tech.com.tw
-2871
- UltraDNS
- Steve De Jong
- steve.dejong&neustar.com
-2872
- Unisource Business Networks Nederland bv
- Frank de Lange
- frank.de.lange&inet.unisource.nl
-2873
- AGENTics
- Amir Kolsky
- amir&agentics.com
-2874
- OTC Telecom Inc.
- Matthew Wang
- mwang&ezylink.com
-2875
- G.U.I.Dev. International Inc.
- Lee Sutton
- lsutton&guidev.com
-2876
- Cothern Computer Systems
- Dominic Tynes
- dominict&ccslink.com
-2877
- Arbinet Communications Inc.
- Ryan Douglas
- rdouglas&arbinet.com
-2878
- FaxForward Canada, Ltd.
- Yong Shao
- yshao&cls.passport.ca
-2879
- Sonus Networks, Inc.
- Mark Garti
- mgarti&sonusnet.com
-2880
- IPHighway Ltd.
- Rina Nathaniel
- rina&IPHighway.com
-2881
- Clarion
- Koichi Kato
- kato&tlab.clarion.co.jp
-2882
- Comtrol Corporation
- Steve Erler
- stevee&comtrol.com
-2883
- Coherent Communications Systems Inc
- Chris Roller
- croller&coherent.com
-2884
- ADS Networks
- K.Srinivas Aithal
- adsvij&giasbg01.vsnl.net.in
-2885
- Chicago-Soft Ltd.
- Richard Hammond
- hammond&chicago-soft.com
-2886
- Netbalance
- John Mullins
- john_mullins&bigfoot.com
-2887
- AS Proekspert
- Andrus Suitsu
- andrus&proexpert.ee
-2888
- Adfm Multimedia Internet
- Didier Mermet
- adfm&adfm.com
-2889
- Praxis International Inc.
- Rick Goodman
- rick_goodman&praxisint.com
-2890
- Solectek Corporation
- Larry Butler
- lbutler&solectek.com
-2891
- NanoSpace, Inc.
- Peter Kaminski
- kaminski&nanospace.com
-2892
- KAPS, Inc.
- Adhish Desai
- adesai&cyberenet.net
-2893
- Computer Associates, Italy
- Mauro Ieva
- ievma01&cai.com
-2894
- Mainsail Networks, Inc.
- Yuri Sharonin
- yuri.sharonin&mainsailnet.com
-2895
- EDS, SSMC-Tools Support and Development
- Michael Stollery
- michael.stollery&eds.com
-2896
- Breece Hill Technologies Inc.
- Timothy Sesow
- TSesow&BreeceHill.com
-2897
- AT&T Capital Corp Ernest
- Shawn Cooney
- shawn_cooney&attcapital.com
-2898
- HighGround Systems, Inc Thomas Bakerman
- tbakerman&highground.com
- ---none---
-2899
- Omnia Communications, Inc.
- Richard Dietz
- rdietz&omnia.com
-2900
- Mer Telemanagement Solutions
- Eran Shapiro
- erans&tabs.co.il
-2901
- Replicase, Inc.
- Cadir Lee
- cadir&replicase.com
-2902
- Microlog Corporation
- Ly Peang-Meth
- lyp&mlog.com
-2903
- Smartways Technology Limited
- Tracey Hill
- tracey.hill&smartways.net
-2904
- Computer Services
- Gene Wills
- gene&snet.net
-2905
- Trumpet Software International Pty Ltd
- Peter Tattam
- peter&trumpet.com
-2906
- Rsi Solutions Ltd.
- Barrie Lynch
- bl&rsi.co.uk
-2907
- C-Cor Electronics
- Dovel Myers
- dtm&c-cor.com
-2908
- Castle Networks, Inc.
- Technical Support
- support&CastleNetworks.com
-2909
- Nexabit Networks, LLC
- James J. Halpin
- jhalpin&nexabit.com
-2910
- General Electric Company
- Internet Registrations
- domain.admin&ge.com
-2911
- Objective Software Services, Inc.
- Ron Morasse
- morasse&ossinc.com
-2912
- Ameristar Technologies Corp.
- Richard Neill
- rich&ameristar.com
-2913
- Hycor Biomedical, Inc.
- Trevor Hammonds
- trevor&royal.net
-2914
- Fellesdata AS
- Knut Frang/Alf Witzoe
- knut.frang&fellesdata.no
-2915
- Network Engines, Inc.
- Manager
- SNMP.Manager&NetworkEngines.Com
-2916
- Daimler-Benz AG
- Joachim Schlette
- joachim.schlette&str.daimler-benz.com
-2917
- Data Interface Systems Corp
- Diego Alfarache
- diego&di3270.com
-2918
- Symmetry Communications Systems, Inc.
- Yun-Chian Cheng
- yunchianc&symmetrycomm.com
-2919
- Rambus Corp.
- Nancy Saputra
- nsaputra&RAMBUS.COM
-2920
- Will-Do Information Services
- William Daugherty
- william&will-do.com
-2921
- Swiss Pharma Contract Ltd.
- Derek Brandt
- dbrandt&pharmacontract.ch
-2922
- I-O Corporation
- Gary Meacham
- gary.meacham&iocorp.com
-2923
- Formula Consultants Inc.
- Fritz Lorenz
- florenz&formula.com
-2924
- Star TV (Satellite Television Asia Region Ltd)
- Andrew Lamond
- andrewl&startv.com
-2925
- Cyclades Corporation
- Marcio Saito
- marcio&cyclades.com
-2926
- Sonoma Systems, Inc.
- Chirs Hawkinson
- chrish&sonoma-systems.com
-2927
- Jacksonville Electric Authority
- Robert Raesemann
- raesrc&jea.com
-2928
- Net Insight AB
- Martin Carlsson
- martin.carlsson&netinsight.se
-2929
- Quallaby
- Stephane Combemorel
- stephane&quallaby.com
-2930
- ValiCert, Inc.
- Ambarish Malpani
- ambarish&valicert.com
-2931
- GADC Networks
- David Bird
- DavidB&gadc.co.uk
-2932
- TERMA Elektronik AS
- Ole Rieck Sorensen
- ors&terma.com
-2933
- Floware System Solutions Ltd.
- Amir Freund
- amir&floware.com
-2934
- Citicorp
- Russell Jansch
- russell.jansch&citicorp.com
-2935
- Quantum Corp. (formerly 'Pathlight Technology Inc.')
- Carsten Prigge
- carsten.prigge&quantum.com
-2936
- Prominence Dot Com, Inc.
- Jim McNee
- jim&prominence.com
-2937
- Deutsche Telekom AG
- Peter Krupp
- Peter.Krupp&telekom.de
-2938
- Proginet Corporation
- Thomas Bauer
- tom&proginet.com
-2939
- InfoExpress, Inc.
- Stacey Lum
- lum&infoexpress.com
-2940
- Argent Software
- Jeff Lecko
- aqm_jso&argent-nt.com
-2941
- ReadyCom Inc.
- Matt Posner
- mposner&readycom.com
-2942
- COCOM A/S
- Susanne Osted
- sos&cocom.dk
-2943
- ObjTech Software
- Mario Leboute
- leboute&pro.via-rs.com.br
-2944
- Top Layer Networks, Inc.
- Michael Paquette
- paquette&toplayer.com
-2945
- TdSoft Communications Software Ltd.
- Konstantin Rubinsky
- kosta&tdsoft.com
-2946
- SWITCH
- Simon Leinen
- simon&switch.ch
-2947
- Best Power - A Division of General Signal Power Systems
- Brian Young
- brian.young&bestpower.gensig.com
-2948
- TeleSuite Corporation
- Gary Thompson
- jgaryt&sprintmail.com
-2949
- Global Quest Consaltance
- Sirish
- challagullas&usa.net
-2950
- Ampersand, Inc.
- Mark Atwood
- m.atwood&ampersand.com
-2951
- Nentec
- Klaus Becker
- becker&nentec.de
-2952
- T&E Soft
- Stefan Finzel
- Stefan.G.R.Finzel&T-Online.de
-2953
- Imedia
- Max Shkud
- snmp&imedia.com
-2954
- Universitaet Bielefeld, Technische Fakultaet
- Sascha Frey, TechFak Support
- support&TechFak.Uni-Bielefeld.DE
-2955
- PSINet UK Ltd.
- Ben Rogers
- bdr&uk.psi.com
-2956
- InfoLibria, Inc.
- David Yates
- dyates&infolibria.com
-2957
- Ericsson Communications Ltd.
- Mark Henson
- mark.henson&ericsson.com
-2958
- Secure Network Solutions Ltd.Brendan Simon
- & Geoff McGowan
- bsimon&randata.com.au
-2959
- Workstation Solutions, Inc.
- James Ward
- jimw&worksta.com
-2960
- National Landscape Assn. Inc.
- James Koester
- jamesk11&prodigy.nrt
-2961
- DIALOGS Software GmbH
- Ralf Schlueter
- schlueter&dialogs.de
-2962
- Netwise AB
- Lennart Bauer
- lennart.bauer&netwise.se
-2963
- Security Dynamics Technology, Inc.
- Andrew Nash
- anash&securitydynamics.com
-2964
- Zeta Communications Ltd.
- John Vrabel
- john&zetacom.demon.co.uk
-2965
- Fujikura Solutions Ltd. (formerly 'Syscom Ltd.')
- Tomoyuki Ide
- tomoyuki.ide&jp.fujikura.com
-2966
- Digital ChoreoGraphics
- DV Black
- dcg&softcafe.net
-2967
- CableData Inc.
- Ragan Wilkinson
- ragan_wilkinson&cabledata.com
-2968
- Allen Telecom Systems
- Seeta Hariharan
- harihas&ats-forest.com
-2969
- Charles Craft
- Charles Craft
- chucksea&mindspring.com
-2970
- Sunstone Enterprises
- J. Marc Stonebraker
- sunstone&mci2000.com
-2971
- Corecess Inc.
- Son Yeong Bong
- ybson&medialincs.co.kr
-2972
- Network Alchemy, Inc.
- L. Stuart Vance
- vance&network-alchemy.com
-2973
- Integral Access, Inc.
- Jeff Wake
- jeffwake&integralaccess.com
-2974
- IP Metrics Software, Inc.
- Brett Dolecheck
- Dolecheck&IPMetrics.com
-2975
- Notarius T.S.I.N. Inc.
- Suzanne Thibodeau
- thibodsu&notarius.com
-2976
- Sphairon Technologies GmbH (formerly 'Philips Multimedia Network Systems GmbH')
- Michael Sladek
- michael.sladek&sphairon.com
-2977
- Teubner and Associates, Inc.
- K. Legako
- kathy&teubner.com
-2978
- ImageCom Ltd.
- Paul Carter
- paul&imagecom.co.uk
-2979
- Waverider Communications Inc.
- Paul Wilson
- pwilson&waverider.com
-2980
- ENT - Empresa Nacional de Telecomunicacoes, S.A.
- Miguel Gentil Gomes
- Miguel.Gomes&ent.efacec.pt
-2981
- Duke Energy
- Paul Edmunds
- pedmunds&duke-energy.com
-2982
- Deutsches Patentamt
- Oswald Rausch
- dpanet&deutsches-patentamt.de
-2983
- SEMA Group GmbH, TS-V
- Dirk Schmalenbach
- dirk&sema.de
-2984
- Keycode Style Ltd.
- Andrew MacLean
- andy&keycode.demon.co.uk
-2985
- Bay Systems Consulting, Inc.
- Asim Mughal
- asim&baysyst.com
-2986
- Qiangjin Corp.Ltd.
- Wenyu
- wenyu&gicom2000.com
-2987
- IPivot
- Cary Jardin
- cjardin&servnow.com
-2988
- Consultronics Development Ltd.
- Zolton Varga
- zvarga&gw.cdk.bme.hu
-2989
- University of North London
- Matthew Mower
- m.mower&unl.ac.uk
-2990
- Illuminata, Inc.
- Jonathan Eunice
- jonathan&illuminata.com
-2991
- Enterprise IT, Inc.
- Peter Nadasi
- peter.nadasi&frends.com
-2992
- CyberTel, Inc.Jonathan Chu
- jcchu&mail.monmouth.com
- poget&mail.ntis.com.tw
-2993
- ConvergeNet Technologies, Inc.
- Rick Lagueux
- raljr&ix.netcom.com
-2994
- Teligent
- Conny Larsson
- conny&teligent.se
-2995
- AcuComm, Inc.
- Li Song
- li.song&acucomm.com
-2996
- SpectraWorks Inc.
- Shamit Bal
- shamit&spectraworks.com
-2997
- RedTitan
- Peter Henry
- pete&redtitan.com
-2998
- Anderson Consulting
- Thomas Anderson
- iana-pen&wire-tap.net
-2999
- American Family Insurance
- Dan Tadysak
- dtadysak&amfam.com
-3000
- IDB Systems, a Division of WorldCom Inc.
- John Isaacson
- John.Isaacson&IDBSYSTEMS.COM
-3001
- BAILO
- Mamadou TRAORE
- bailo&africaonline.co.ci
-3002
- ADAXIS Group
- Thomas Dale Kerby
- adaxis&juno.com
-3003
- Packet Engines Inc.
- J.J. DeBarros
- jjd&packetengines.com
-3004
- Softwire Corporation
- Dan Sifter
- dan.sifter&softwire.com
-3005
- TDS (Telecoms Data Systems)
- Jean-Louis Guibourg
- tds&tds.fr
-3006
- HCI Technologies
- Diwakar H. Prabhakar
- diwakar&mnsinc.com
-3007
- TOPCALL International
- Frans Bouwmeester
- bm&topcall.co.at
-3008
- LogMatrix Inc (formerly 'Open Service')
- Chris Boldiston
- techsupport&logmatrix.com
-3009
- SYNCLAYER Inc.
- Yuichi Hasegawa
- software&synclayer.co.jp
-3010
- university of aizu
- Yoshinari Sato
- sato&ccss1051.u-aizu.ac.jp
-3011
- VideoServer, Inc.
- George W. Kajos
- gkajos&videoserver.com
-3012
- Space & Telecommunications Systems Pte. Ltd.
- Steven Alexander
- ssacsd&rad.net.id
-3013
- Bicol Infonet System,Inc.
- Riad B. Hammad
- rbh&202.167.21.68
-3014
- MediaSoft Telecom
- Barry Turner
- bturner&mediasoft.ca
-3015
- Netpro Computing, Inc.
- Corbin Glowacki
- corbing&netpro.com
-3016
- OzEmail Pty Ltd
- David Woolley
- david.woolley&team.ozemail.com.au
-3017
- Arcxel Technologies, Inc.
- Stuart Berman
- sberman&arcxel.com
-3018
- EnterNet Corporation
- Radhakrishnan R. Nair
- Nair1&aol.com
-3019
- Jones Waldo Holbrook McDonough
- Forrest Tessen
- jlr&jonesWaldo.com
-3020
- University Access
- Tyler Clark
- tyler&afn.org
-3021
- Sendit AB
- John Wu
- john&sendit.se
-3022
- Telecom Sciences Corporation Limited
- William Berrie
- wberrie&telsci.co.uk
-3023
- Quality Quorm, Inc.
- Aleksey Romanov
- qqi&world.std.com
-3024
- Grapevine Systems Inc
- Rick Stein
- rstein&grapevinesystems.com
-3025
- The Panda Project, Inc.
- Gary E. Miller
- gem&pandaproject.com
-3026
- Mission Control Development
- David L. Barker
- dave&missionctl.com
-3027
- IONA Technologies Ltd
- Chris McCauley
- cmcauley&iona.com
-3028
- Dialogic Corporation
- Richard Hubbard
- hubbardr&dialogic.com
-3029
- Digital Data Security
- Peter Gutmann
- pgut001&cs.auckland.ac.nz
-3030
- ISCNI
- Dennis Oszuscik
- denniso&cninews.com
-3031
- dao Consulting, LLC
- Number Resources
- numbers&daoConsulting.com
-3032
- Beaufort Memorial Hospital
- Mary Crouch
- mjc&hargray.com
-3033
- Informationstechnik Dr. Hansmeyer
- Jochen Hansmeyer
- cjh&krypton.de
-3034
- URMET SUD s.p.a.
- Claudio Locuratolo
- MC8858&MCLINK.IT
-3035
- Avesta Technologies Inc
- Johnson Lu
- jclu&avestatech.com
-3036
- Hyundai Electronics America
- Tom Tofigh
- ttofigh&va.hea.com
-3037
- DMV Ltd
- Anthony Platt
- a.platt&dmv.co.uk
-3038
- Fax International, Inc.
- Dave Christiansen
- dchristi&faxint.com
-3039
- MidAmerican Energy Company (MEC)
- Michael Hindman
- mshindman&midamerican.com
-3040
- Bellsouth.net
- Jeff Smith
- smith&bellsouth.net
-3041
- Assured Access Technology, Inc.
- Ben Tseng
- tseng&AssuredAccess.com
-3042
- Logicon - Eagle Technology
- John Lambert
- jlambert&logicon.com
-3043
- Frequentis GmbH
- Florian Cernik
- iana-admin&frequentis.com
-3044
- ISIS 2000
- Debbie Cook
- dcook&isis2k.com
-3045
- james e. gray, atty
- jim gray
- jgray&grapevinenet.com
-3046
- Jamaica Cable T.V. & Internet Services
- Elias azan
- barney&jol_ppp4.jol.com.jm
-3047
- Information Technology Consultants Pty. Ltd.
- Les Pall
- les.pall&itc.oz.au
-3048
- LinickGrp.com
- Roger Dextor
- LinickGrp&worldnet.att.net
-3049
- Yankee Know-How
- Carl Nilson
- agcarl&aol.com or agcarl&erols.com
-3050
- SeAH group
- HyeonJae Choi
- cyber&snet.co.kr
-3051
- Cinco Networks, Inc.
- Dean Au
- deana&cinco.com
-3052
- Asentria Corporation
- Paul Renton
- pen&asentria.com
-3053
- Genie Telecommunication Inc.
- Anderson Kao
- klk&genie.genie.com.tw
-3054
- Ixia Communications
- Steve Lord
- stevel&ixiacom.com
-3055
- Transmeta Corporation
- MIS Role Account
- mis&transmeta.com
-3056
- Systemsoft Corp.
- Dudley Nostrand
- dnostrand&systemsoft.com
-3057
- Jaspal Miracles Ltd.
- Paul Slootweg
- paul.slootweg&ntlworld.com
-3058
- T-Systems
- Meint Carstensen
- Meint.Carstensen&t-systems.com
-3059
- Sisler Promotions, Inc.
- Matt Weidner
- mweidner&law.fsu.edu
-3060
- ice-man refrigeration
- Larry
- temp111444&aol.com
-3061
- Listing Service Solutions, Inc.
- Scott Nixon
- dnixon&ipass.net
-3062
- Jovian Networks
- Thomas Mullaney
- tpm&jovian.net
-3063
- Elebra Com. Dados
- Rafael Vagner de Boni
- eledado&ibm.net
-3064
- Safetran Systems
- Michael Van Hulle
- mike.van.hulle&safetran.com
-3065
- Video Network Communications, Inc.
- Mathew Reno
- Mathew_Reno&vnci.net
-3066
- Phasecom Ltd.
- Shmuel Rynar
- shirr&phasecom.co.il
-3067
- Eurocontrol
- Richard Beck
- Richard.Beck&eurocontrol.fr
-3068
- SilverStream Software Inc.
- Sande Gilda
- sgilda&silverstream.com
-3069
- Cownet
- Josh Ferguson
- fergo&usa.net
-3070
- World Access, Inc.
- Gerald Olson
- geraldo&waxs.com
-3071
- Virtual Line L.L.P.
- Steve McConnell
- stevemc&vline.net
-3072
- Integrated Concepts L.L.P.
- Steve McConnell
- stevemc&vline.net
-3073
- Exabyte Corporation
- Bruce Eifler
- brucee&exabyte.com
-3074
- Interactive Media Corporation
- George Howitt
- george_howitt&interactivemedia.com
-3075
- NetCore Systems, Inc.
- Kwabena Akufo
- kakufo&netcoresys.com
-3076
- Altiga Networks, Inc.
- Todd Short
- tshort&altiga.com
-3077
- National Center for Supercomputing Applications
- Jeff Terstriep
- jefft&ncsa.uiuc.edu
-3078
- EMASS Inc.
- Thomas Messer
- thomasm&emass.com
-3079
- PRIMA Telematic
- Marc Lachapelle
- marcl&prima.ca
-3080
- BackWeb Technologies
- Lior Hass
- lior&backweb.com
-3081
- NTP Software
- Bruce Backa
- bbacka&ntpsoftware.com
-3082
- PBS A/S
- Christian Ravn
- chr&notes.pbs.dk
-3083
- W.Quinn Associates, Inc.
- Eric Liu
- eliu&wquinn.com
-3084
- QUZA (Racal-Integralis)
- Ian Rawlings
- Ian.Rawlings&uk.quza.com
-3085
- Cosine Communications
- Lianghwa Jou
- ljou&cosinecom.com
-3086
- PipeLinks Inc.
- Fraser Street
- Fraser_Street&pipelinks.com
-3087
- WaiLAN Communications, Inc.
- Richard Hu
- hu&wailan.com
-3088
- Axent Technologies
- Sandeep Kumar
- skumar&axent.com
-3089
- SPAWAR
- Ron Broersma
- ron&spawar.navy.mil
-3090
- Airsys ATM S.A.
- Benoit Magneron
- Benoit.B.M.MAGNERON&fr.airsysatm.thomson-csf.com
-3091
- Whiter Morn Software, Inc.
- Jon Salmon
- pike&mtco.com
-3092
- ENTV
- Ali Kaidi
- Legisnet&ist.cerist.dz
-3093
- CyberTAN Technology, Inc.
- Jerry Wu
- jerrywu3&ms19.hinet.net
-3094
- Frilot, Patridge, Kohnke & Clements, L.C.
- Mark Robinson
- MRobinso&fpkc.com
-3095
- FirstSense Software, Inc.
- Scott Marlow
- smarlow&firstsense.com
-3096
- StarVox, Inc.
- Chaojung Li
- chaol&starvox.com
-3097
- WatchGuard Technologies Inc.
- Phillip Dillinger
- phil&watchguard.com
-3098
- MTI Technology Corporation
- Rich Ramos
- rich&chi.mti.com
-3099
- Lumbrera
- Willy Gomez
- wgomez&lumbrera.com.gt
-3100
- CELOGIC
- Laurent Degardin
- ldegardin&celogic.com
-3101
- Experian Information Solutions Inc.
- Clara Hsieh
- clara.hsieh&experian.com
-3102
- Kansai Electric Co., Ltd.
- Takashi Matsumuro
- matsumurot&kansai-elec.co.jp
-3103
- Innet
- JeoungHyun Lee
- jhlee&innet.co.kr
-3104
- Thales Communications GmbH
- Bernhard Nowara
- Bernhard.Nowara&de.thalesgroup.com
-3105
- Vodafone Sweden
- Per Assarsson
- per.assarsson.removethis&vodafone.se
-3106
- LCI International, Inc.
- Larry Hymer
- hymerl&lci.net
-3107
- City of Los Angeles
- David Patterson
- dpatterson&la911.com
-3108
- G2 Networks
- Allison Parsons
- aparsons&g2networks.com
-3109
- TradeWeb LLC.
- Ian Stocks
- ian.stocks&tradeweb.com
-3110
- Rafael
- Avy Strominger
- avys&rafael.co.il
-3111
- Crystal Group Inc.
- Eric Busch
- embusch&crystalpc.com
-3112
- C-bridge Internet Solutions
- Ron Bodkin
- rjbodkin&c-bridge.com
-3113
- Phase Forward
- Gilbert Benghiat
- gilbert.benghiat&phaseforward.com
-3114
- WONOA
- H. Zolty
- zoltyh&dnt.dialog.com
-3115
- Dialog
- H. Zolty
- zoltyh&dnt.dialog.com
-3116
- NICE CTI Systems UK Ltd.
- Eric Roger
- eric.roger_at_nice.com@ANTISPAM
-3117
- E*TRADE Group Inc.
- Alan Cima
- acima&etrade.com
-3118
- Juno Online Services, Inc.
- Juno Domain Administration
- dns&juno.net
-3119
- DnB ASA
- Adne Hestenes
- adne.hestenes&DnB.no
-3120
- Cintel Technologies, Inc.
- Ryu Cheol
- ryuch&cintel.co.kr
-3121
- Tele1024 Denmark
- Thomas Secher
- thomas.secher&tele1024.dk
-3122
- Interlink Network Group, Inc.
- Russell Carleton
- roccor&inc-g.com
-3123
- L. Richards' Enterprises, Inc.
- Lawrence Richards
- LRomeil&msn.com
-3124
- Media Communications Eur AB
- Oscar Jacobsson
- oscar&medcom.se
-3125
- Rocx Software Corp.
- Mark Thibault
- mthibault&rocx.com
-3126
- Ardax Systems, Inc.
- Aram Gharakhanian
- aramg&ardax.com
-3127
- Pluris, Inc.
- Raghu Yadavalli
- raghu&pluris.com
-3128
- OAZ Communications
- Ajay Batheja
- ajay&oaz.com
-3129
- Advanced Switching Communications, Inc.
- Ralph Wolman
- rwolman&asc1.com
-3130
- GreatLink Networks, Inc.
- Chenchen Ku
- chenchen&greatlink.net
-3131
- Aydin Telecom
- Harold Gilje
- hgilje&aydin.com
-3132
- NetKit Inc.
- Sam Stavro
- netkit&ix.netcom.com
-3133
- IDP
- Despatin Jean
- despatin&idp.fr
-3134
- TTM Nederland
- Robert Dijkman Dulkes
- Info&ttmnl.com
-3135
- Labouchere
- Robert Dijkman Dulkes
- R.DijkmanDulkes&Labouchere.nl
-3136
- Comtrend Corporation
- Frank Chuang
- frankc&comtrend.com
-3137
- Berbee Information Networks Corp.
- Jim Berbee
- snmpmgr&binc.net
-3138
- Wireless Online, Inc.
- Alex Segalovitz
- alexsega&shani.net
-3139
- LIFFE
- Brian Power
- power_b&hotmail.com
-3140
- Celo Communications AB
- Neil Costigan
- neil&celocom.se
-3141
- Mark IV Industries Ltd.(F-P Electronics Division)
- Stephen Galbraith
- sgalbrai&fpelectronics.com
-3142
- Leitch Technology International Incorporated
- Steve Sulte
- Steve.Sulte&mars.leitch.com
-3143
- Chalcroft International
- Barry Chalcroft
- barryc&gstis.net
-3144
- Clarity Wireless Inc.
- Joseph Raja
- jraja&clarity-wireless.com
-3145
- C-C-C Technology Ltd
- Paul Moore
- pmoore&cccgroup.co.uk
-3146
- FREQUENTIS Network Systems GmbH
- Rainer Bittermann
- Rainer.Bittermann&frqnet.de
-3147
- Daewoo Electronics
- Taeseung Lim
- lts&phoenix.dwe.co.kr
-3148
- France Caraibe Mobiles
- Patrick Raimond
- mis&fcm.gp
-3149
- Winchester Systems Inc.
- Jim Picard
- jpicard&winsys.com
-3150
- SWD
- Uwe Wannags
- uwannags&swd.de
-3151
- Automotive Industry Action Group (AIAG)
- Mike Prusak
- mprusak&aiag.org
-3152
- Orion Technologies Inc.
- Tim Pushor
- timp&orion.ab.ca
-3153
- DirectoryNET, Inc.
- Michael Gladden
- mgladden&directorynet.com
-3154
- Kisan Telecom Co., LTD
- Man Hee Lee
- lmh99&kisantel.co.kr
-3155
- Concord-Eracom
- Huub van Vliet
- hvanvliet&concord-eracom.nl
-3156
- Secant
- Amit Kapoor
- amit&netcom.com
-3157
- NetraCorp, LLC
- Shane Kinsch
- shane.kinsch&netracorp.com
-3158
- MASPRO DENKOH Corp.
- Toshiyuki Maeshima
- rd2mahhs&maspro.co.jp
-3159
- Utimaco Safeware AG
- Dieter Bong
- dieter.bong&utimaco.de
-3160
- Financial Information System Center (FISC)
- Thomson Hsu
- thomson_hsu&mail.fisc.org.tw
-3161
- Xybx Inc.
- Denis Robbie
- robbied&rogers.wave.ca
-3162
- Relational Data Systems
- David Chang
- dchang&fsautomation.com
-3163
- M&T Clear Solutions Inc.
- Michael Levitian
- levitian&home.com
-3164
- ARBED S.A.
- Marc Michels
- marc.michels&tradearbed.com
-3165
- Cap Gemini Telecom
- Chaouki Ayadi
- cayadi&capgemini.fr
-3166
- Westek Technology Ltd John Tucker
- jtucker&westek-technology.co.uk
- ---none---
-3167
- NICE Systems Ltd.
- Avi Shai
- avi&nice.com
-3168
- INC S.A.
- Paul Retter
- retter&silis.lu
-3169
- Silis Sarl
- Paul Retter
- retter&silis.lu
-3170
- InterWorking Labs, Inc.
- Karl Auerbach
- karl&iwl.com
-3171
- Ikon Systems, Inc.
- Vincent French
- vince&ikonsystems.net
-3172
- GTE Intelligent Network Services
- Matthew Ward
- mward&admin.gte.net
-3173
- Turnstone Systems, Inc.
- Pawan Singh
- psingh&turnstonesystems.com
-3174
- Tasman Networks, Inc.
- Madhusudhan K Srinivasan
- madhu&tasmannetworks.com
-3175
- WebTrends Corporation
- Victor Lu
- victorl&webtrends.com
-3176
- Werner Training and Consulting, Inc.
- Brad Werner
- brad&wernerconsulting.com
-3177
- IVC, Inc.
- Brad Crittenden
- bac&ivc.com
-3178
- Blue Cross and Blue Shield of Florida
- Dave Lentsch
- hostmaster&bcbsfl.com
-3179
- Level8 Systems
- Gregory Nicholls
- gnicholls&level8.com
-3180
- RESCOM A/S
- Klaus Vink
- kv&rescom.dk
-3181
- MICROSENS GmbH & Co. KG
- Hannes Bauer
- hbauer&microsens.de
-3182
- Unihold Technologies
- Ricardo Figueira
- ricardof&ust.co.za
-3183
- Wired for Management
- Ramin Neshati
- ramin.neshati&intel.com
-3184
- Raymond and Lae Engineering, Inc.
- Donald Raymond
- dmraymon&rletech.com
-3185
- Parapsco Designs Ltd.
- Paul Strawbridge
- paul&patapsco.demon.co.uk
-3186
- TouchNet Information Systems, Inc.
- Mark Stockmyer
- mstockmyer&touchnet.com
-3187
- FUZZY! Informatik GmbH
- Joerg Meyer
- joerg.meyer&fuzzy-online.de
-3188
- Sunny Comm. Inc.
- Shufen Zhang
- sfzhang99&hotmail.com
-3189
- DSD Computing
- Darrell Dortch
- darrell&dsdcomputing.com
-3190
- Caja de Ahorros del Mediterraneo
- Manuel Berna
- mberna&cam.es
-3191
- Dynetcom Guernsey Ltd.
- Jim Travers
- jimt&dyn.guernsey.net
-3192
- Tachyon, Inc.
- Tom McCann
- tmccann&tachyon.net
-3193
- Silent Communications
- Claudio Naldi
- info&silent.ch
-3194
- EFFNET AB
- Mathias Engan
- snmp&effnet.se
-3195
- AUDI AG
- Stefan Bacher
- stefan.bacher&audi.de
-3196
- Side by Side GmbH
- Armin Luginbuehl
- a.lugin&sidebyside.ch
-3197
- Vodacom South Africa
- Helene Cloete
- cloeteh&vodacom.co.za
-3198
- Volamp LtdW.G. Saich+44(0) 1252 724055
- David Lunn
- David.Lunn&btinternet.com
-3199
- Shasta Networks
- Anthony Alles
- aalles&shastanets.com
-3200
- Applied Resources, Inc.
- Rick Kerbel
- rkerbel&pobox.com
-3201
- LANCOME
- Renato Senta
- fnathurm&hotmail.com
-3202
- Spar Aerospace Limited
- Luc Pinsonneault
- lpinsonn&spar.ca
-3203
- GlaxoWellcome Inc.
- David Mccord
- dkm10789&glaxowellcome.com
-3204
- A.T.I. System Co., Ltd.
- David Min
- ktmin&www.ati.co.kr
-3205
- EXODUS Communications Inc.
- Ramesh Gopinath
- gopinath&exodus.net
-3206
- Assured Digital, Inc.
- Scott Hilton
- shilton&assured-digital.com
-3207
- Web@venture
- Eric Van Camp
- sky73916&toaster.skynet.be
-3208
- Athens University of Economics and Business
- Theodore Apostolopoulos
- thodoros&aueb.gr
-3209
- Dynarc AB
- Jakob Ellerstedt
- jakob&dynarc.se
-3210
- VOLKSWAGEN AG
- Andreas Krengel
- penmaster&volkswagen.de
-3211
- Allgon AB
- Hakan Grenabo
- hakan.grenabo&allgon.se
-3212
- Crestron Electronics, Inc.
- Daniel Brennan
- dbrennan&crestron.com
-3213
- TRANSICIEL
- Planche Philippe
- sammour&transiciel.com
-3214
- SAN People (Pty) Ltd.
- James Keen
- james&san.co.za
-3215
- Network Instruments, LLC
- Roman Oliynyk
- roman&netinst.com
-3216
- Texas Networking, Inc.
- Michael Douglass
- mikedoug&texas.net
-3217
- Pini Computer Trading
- Remo Pini
- rp&rpini.com
-3218
- XLN-t
- Guido de Cuyper
- g_de_cuyper&glo.be
-3219
- Silicomp
- Francois Doublet
- fdo&silicomp.com
-3220
- Signet Systems Pty Ltd
- Charles Moore
- cmoore&signet.org.au
-3221
- Ohkura Electric Co., Ltd.
- Takeshi Yamaguchi
- tyama&ohkura.co.jp
-3222
- New Elite Technologies, Inc.
- Yaung K. Lu
- yklu&neti.com.tw
-3223
- TXCOM
- Frederic Paille
- fr.paille&txcom.fr
-3224
- NetScreen Technologies, Inc.
- Jay Fu
- jay&netscreen.com
-3225
- Sycamore Networks
- Bill Sears
- bill&sycamorenet.com
-3226
- France Connexion Ingenierie
- Thibault Dangreaux
- Thibault.Dangreaux@.com
-3227
- NetLeader, Inc.
- Shane Thomas
- shane&netleader.com
-3228
- Tekmar Sistemi s.r.l.
- Andrea Sarneri
- lab&tekmar.it
-3229
- DSTC
- Dean Povey
- security&dstc.qut.edu.au
-3230
- Runtop Inc.
- David Wang
- dwang&mail.runtop.com.tw
-3231
- L-3 Communications
- Tom Schmitt or Paul Mehrlich
- ADMIN.OID&L-3Com.com
-3232
- Eumetsat
- Michael Schick
- michael.schick&eumetsat.int
-3233
- TongGong High New Technology Development Company
- Ni Gui Qiang
- niguiqiang&njiceatm.ice.edu.cn
-3234
- Trifolium, Inc.
- Bennett Groshong
- bennett&trifolium.com
-3235
- Zenon N.S.P.
- Victor L. Belov
- scream&zenon.net
-3236
- ERCOM
- Daniel Braun
- netmgt&ercom.fr
-3237
- SDC
- Kjeld Bak
- kbak&sdc.dk
-3238
- Los Angeles Web
- Troy Korjuslommi
- tk&software.gyw.com
-3239
- Florence on Line s.r.l.
- Mike HAgen
- mhagen&fol.it
-3240
- Escalate Networks
- Mark Carroll
- mcarroll&escalate.net
-3241
- TranNexus
- Bradley Walton
- brad.walton&transnexus.com
-3242
- Brigham Young University
- Frank Sorenson
- frank&byu.net
-3243
- ConNova Systems AB
- Stefan Asp
- stas&connova.se
-3244
- Voxtron Flanders NV
- Marc Bau
- marc.bau&voxtron.com
-3245
- Yomi Software Ltd.
- Janne Hankaankorpi
- janne.hankaankorpi&yomi.com
-3246
- Mirapoint, Inc.
- Mark Lovell
- mlovell&mirapoint.com
-3247
- Colorbus
- Ian Holland
- ian&colorbus.com
-3248
- DPB S.A.
- Pablo Barros Martinez
- pbarros&dpb.com.ar
-3249
- StarGuide Digital Networks, Inc.
- Roz Roberts
- rroberts&starguidedigital.com
-3250
- Telinet Technologies, LLC. Donald
- Hopper
- donald.hopper&telinet.com
-3251
- Authentica Security Technologies, Inc.
- Brad Brower
- bbrower&bigfoot.com
-3252
- Hologram Systems Ltd.
- M. Western
- matthew&hologram-systems.co.uk
-3253
- TranSystem, Inc.
- Ming Chung, Wang
- ilovelu&alumni.nctu.edu.tw
-3254
- R.R.C. Exports
- Challagulla Sirish Kumar
- challagullas&usa.net
-3255
- Lakeside Software, Inc.
- Mike Schumacher
- mike&LakesideSoftware.com
-3256
- Channel 100
- Al Channing
- achannin&pcis.net
-3257
- MAGMA, Inc.
- Daniel Zivkovic
- daniel&magmainc.on.ca
-3258
- LANSource Technologies Inc.
- Christopher Wells
- chris_wells&lansource.com
-3259
- INCAA Datacom BV
- Peter de Bruin
- PDB&incaa.nl
-3260
- GlobeSet, Inc.
- Jim Chou
- jhc&globeset.com
-3261
- Martin Pestana
- Martin Pestana
- martinp&netverk.com.ar
-3262
- Acuson Corporation
- Pete Sheill
- psheill&acuson.com
-3263
- Drake Automation Limited
- Ian Kerr
- ikerr&kvs.com
-3264
- Kerr Vayne Systems Ltd.
- Ian Kerr
- ikerr&kvs.com
-3265
- KSquared Consulting
- Ken Key
- key&network-alchemy.com
-3266
- HSBC Group
- Paul Ready
- paul.k.ready&hsbcgroup.com
-3267
- IronBridge Networks, Inc.
- David Waitzman
- djw&ironbridgenetworks.com
-3268
- Real Time Logic Inc.
- Brian Olson
- bolson&rtlogic.com
-3269
- TelServe
- Neal Packard
- nealp&telserve.com
-3270
- UNIQUEST-Korea
- SangHo Lee & David Lee
- david&uqk.uniquest.co.kr
-3271
- StockPower, Inc.
- Rick Wesson
- rhw&stockpower.com
-3272
- Yontem Computer & Electronics
- Ersin Gulacti
- yontem&orion.net.tr
-3273
- nwe GmbH
- Thomas Friedrich
- tom&nwe.de
-3274
- The Information Systems Manager Inc.
- Peg Harp
- pharp&perfman.com
-3275
- Kosmos Image S.r.l.
- Tiberio Menecozzi
- t.menecozzi&kosmos.it
-3276
- Taihan Electric Wire Co., Ltd.
- Kim Hwajoon
- hjkim&tecnet.co.kr
-3277
- Telspec
- Miguel Martinez Rodriguez
- miguel.martinez&telspec.es
-3278
- C-COM Corporation
- S.C. Lin
- sclin&mail.c-com.com.tw
-3279
- Adlex Corp.
- Mariusz Piontas
- mpiontas&adlex.com
-3280
- CCI Europe
- Jan Buchholdt
- jab&cci.dk
-3281
- SMS Enterprises
- Matt Tucker
- mtucker&smscreations.com
-3282
- Vicom Systems, Inc.
- Jian Liu
- JianL&vicom.com
-3283
- International Software Solutions
- Reat Christophe
- creat&iss2you.com
-3284
- OASIS Consortium
- Tadhg O'Meara
- tadhg&net-cs.ucd.ie
-3285
- NOVA Telecommunications, Inc.
- Gil Tadmor
- gtadmor&novatelecom.com
-3286
- Nera Satcom AS
- Roar Mosand
- rm&nera.no
-3287
- Proactive Networks, Inc.
- Minh Do
- mdo&proactivenet.com
-3288
- Jacobs Rimell Limited
- Paulo Pinto
- paulo.pinto&jacobsrimell.com
-3289
- Cryptomathic A/S
- Anette Byskov
- abyskov&cryptomathic.dk
-3290
- AppliScope
- Igor Dolinsek
- igor&result.si
-3291
- Simac Techniek NV
- Jan Vet
- Jan.Vet&simac.nl
-3292
- Earthmen Technology
- Annabel Newnham
- annabel&earthmen.com
-3293
- Biffsters International
- Tom Spindler
- dogcow&BIFF.NET
-3294
- Digitronic
- Robert Martens
- rm&digitronic.de
-3295
- Internet Multifeed Co.
- Katsuyasu Toyama
- tech-c&mfeed.ad.jp
-3296
- Argosy Research Inc.
- Jett Chen
- jett&email.gcn.net.tw
-3297
- NxNetworks
- Michael Kellen
- OID.Admin&NxNetworks.com
-3298
- MQSoftware, Inc.
- Craig Ching
- craig&mqsoftware.com
-3299
- Altair Data System
- Paolo Zangheri
- paolo.zangheri&altair.it
-3300
- Telsis Limited
- Steve Hight
- steve.hight&telsis.co.uk
-3301
- IMPACT
- Pierre Mandon
- p.mandon&mail.dotcom.fr
-3302
- SMI Computersysteme GmbH Nicole
- Schwermath
- nisch&smi-glauchau.de
-3303
- IDM, Ltd.
- Vladimir Kozlov
- Vladimir.Kozlov&idm.ru
-3304
- WinVista Corp.
- Mark Hennessy
- mhennessy&winvista.com
-3305
- Splitrock Services, Inc.
- Robert Ollerton
- rollerton&Splitrock.net
-3306
- Vail Systems Incorporated
- Dave Fruin
- david&vailsys.com
-3307
- SANE.net
- Erik Kline
- erik&alum.mit.edu
-3308
- Ensemble Solutions, Inc.
- Frank Spies
- F.Spies&EnsembleSolutions.com
-3309
- Nomadix
- Ken Caswell
- ken&nomadix.com
-3310
- Jett International Inc.
- Chen Kuo-Tsan
- jett&mx1.misnet.net
-3311
- Crocodial Communications Entwicklungsgesellschaft mbH
- Benjamin Riefenstahl
- benny&crocodial.de
-3312
- Consulting Informatico de Cantabria S.L.
- Marta Gonzalez Rodriguez
- mtgonzalez&cic-sl.es
-3313
- Broadcast Services
- David Coffman
- dcoffman&cyberramp.net
-3314
- Bergstresser Associates
- Philip Bergstresser
- phil&bergstresser.org
-3315
- KingStar Computer Ltd.
- Jesse Kuang
- kjx&poboxes.com
-3316
- Micro Logic Systems
- Damien Raczy
- raczy&mls.nc
-3317
- Port Community Rotterdam
- J. v. Groningen
- cargocard&port-it.nl
-3318
- Computer & Competence GmbH
- Tim Themann
- tim&comp-comp.com
-3319
- GNOME project
- Jochen Friedrich
- snmp&gnome.org
-3320
- Shanghai Baud Data Communication Development Corp.
- Lin Bin
- bdcom&public.sta.net.cn
-3321
- Teledata Communication Ltd.
- Avi Berger
- berger&teledata.co.il
-3322
- Ipswitch, Inc.
- Roger Greene
- roger&ipswitch.com
-3323
- Tadiran Microwave Networks
- Kevin Nguyen
- Kevinn&Microwavenetworks.com
-3324
- Call Technologies, Inc.
- Justin Anderson
- janderso&calltec.com
-3325
- Vocalis Ltd.
- Alan Milne
- alan.milne&vocalis.com
-3326
- Bergen Data Consulting
- Oddbjorn Steffensen
- oddbjorn&oddbjorn.bdc.no
-3327
- CA Technologies, Inc.
- John Bird
- john.bird&ca.com
-3328
- Indus River Networks, Inc.
- Bradford Kemp
- bradkemp&indusriver.com
-3329
- NewCom Technologies, Inc.
- Bill Goetz
- billg&ricochet.net
-3330
- PartnerGroup
- helpdesk&partnergroup.com
- ---none---
-3331
- DeTeWe - Deutsche Telephonwerke Aktiengesellschaft & Co.
- Andre Schmidt
- andre.schmidt&detewe.de
-3332
- RCX System
- Dragos Pop
- dragos&cs.ubbcluj.ro
-3333
- Auburn University
- Doug Hughes
- Doug.Hughes&eng.auburn.edu
-3334
- Cap'Mediatel
- Vianney Rancurel
- rancurel&capmedia.fr
-3335
- HAHT Software
- Michael Kelley
- michaelk&haht.com
-3336
- UTBF
- Sean Cheng
- simex&hotmail.com
-3337
- Chicago Police Department - Data Systems Division
- Richard Ramos
- rich.ramos&prodigy.net
-3338
- MORA Technological Services
- Enrique Mora
- enrique.mora&moralogic.com
-3339
- JHC
- John Healy
- john&idigital.net
-3340
- OpenTV Inc.
- Vahid Koussari
- vahid&opentv.com
-3341
- SwitchSoft Systems, Inc.
- Lynn LeBaron
- llebaron&sssys.com
-3342
- MachOne Communications Inc.
- Thomas Obenhuber
- thomas&machone.net
-3343
- Philips Digital Video Systems Harry
- Koiter
- koiterh&ce.philips.nl
-3344
- Helsinki Televisio Oy
- Pekka Laakkonen
- pekka.laakkonen&helsinkimedia.fi
-3345
- Nemetschek AG
- Hardi Probst
- hprobst&nemetschek.de
-3346
- Vocom
- Wang LiPing
- wlpwlp&usa.net
-3347
- Hitachi Kokusai Electric Inc.
- Kazuko.Suzuki
- suzuki.kazuko&h-kokusai.com
-3348
- Reliable Network Solutions
- Werner Vogels
- vogels&rnets.com
-3349
- Vogo Networks
- Nate Waddoups
- nathan&connectsoft.com
-3350
- beusen
- Stephan Witt
- witt&beusen.de
-3351
- Overland Data, Inc.
- Robert Kingsley
- bkingsley&overlanddata.com
-3352
- Go2 Technologies, Inc.
- Anthony Molinaro
- anthonym&goto.com
-3353
- TransMedia Communications, Inc.
- Eric Yang
- eyang&trsmedia.com
-3354
- InnoMedia, Inc.
- Jacek Minko
- jminko&InnoMedia.com
-3355
- Orkit FI
- Michele Hallak
- michele&orckit.com
-3356
- WebMaster, Incorporated
- David Schwartz
- davids&webmaster.com
-3357
- Software & Management Associates, Inc.
- Buddy Horne
- unet&smainc.com
-3358
- Researcher
- Sunny Gupta
- sunny&ca.ibm.com
-3359
- Cygnus Global Consulting
- Eric Jung
- ejung&milehigh.net
-3360
- Columbine JDS Systems Inc.
- Michael Ledwich
- mledwich&CJDS.COM
-3361
- Intraplex
- John Hersh
- jhersh&intraplex.com
-3362
- Selta S.p.A.
- Danilo Dealberti
- d.dealberti&selta.it
-3363
- Southern New England Telecommunications
- Timothy Peterson
- Timothy.Peterson&snet.com
-3364
- Baltic Oil Ltd.
- Sergey Gavrilov
- sergey&otenet.gr
-3365
- MailWizard Incorporated
- Tom Johnson
- tj&mailwizard.com
-3366
- Da Vinci Systems cc
- Tom Theron
- davinci&pixie.co.za
-3367
- NMS Research
- David
- ktmin&hanimail.com
-3368
- KimSungEun Co., Ltd.
- Sung Eun Kim
- sekim&chollian.net
-3369
- Genicom Corporation
- Jerry Podojil
- jpodojil&genicom.com
-3370
- Trango Software Corporation
- Terry Voth
- tvoth&trangosoft.com
-3371
- SungEun Systems
- Sung-Eun Kim
- sekim&chollian.net
-3372
- COVE Sistemas, S.L.
- Jose Carles
- carles&cove.es
-3373
- SIAE Microelettronica S.p.A.
- Andrea Pirotta
- siaemi&siaemic.it
-3374
- Cybertek Corp.
- Greg Willis
- gregwillis&cybertek.com
-3375
- F5 Labs, Inc.
- Tom Kee Ryan Kearny
- r.kearny&f5.com
-3376
- Valencia Systems
- John Tracy
- jtracy&valenciasystems.com
-3377
- HKC Communications, Inc.
- Wyatt Kenoly
- hkccomm&msn.com
-3378
- Plant Equipment Inc.
- Donald Scott
- dscott&peinc.com
-3379
- HT Industrial Co.
- Dandy
- didan&ggg.net
-3380
- Fuelling & Partner
- Hueckinghaus
- fp&fp.do.uunet.de
-3381
- Atreve Software, Inc.
- Gerry Seaward
- gerry&atreve.com
-3382
- Venturi Wireless
- John Hardin
- snmp&venturiwireless.com
-3383
- South East Water Limited
- Darren O'Connor
- doconnor&sewl.com.au
-3384
- WAM!NET
- Jeff Konz
- jkonz&wamnet.com
-3385
- University of Leicester
- Matthew Newton
- mcn4&leicester.ac.uk
-3386
- 21st Century Net
- Rudolf Meyer
- Rudolf.Meyer&21st-century.net
-3387
- Intellivoice, Inc
- Race Vanderdecken
- rvanderdecken&intellivoice.com
-3388
- Integral Partners
- Daniel W. Schaenzer
- dschaenzer&iisol.com
-3389
- Novotec Computers GmbH
- Martin Schroedl
- schroedl&novotec.com
-3390
- Marathon Technologies Corporation
- Mark Pratt
- pratt&marathontechnologies.com
-3391
- Software Technologies Group, Inc.
- Chris Herzog
- zog&stg.com
-3392
- Quvintheumn Foundation
- S. Lars G Ahlen
- slg.ahlen.qf&uppsala.mail.telia.com
-3393
- SandS International
- John C. Scaduto Sr.
- JoeSideri&aol.com
-3394
- NeTrue Communications
- Russ Glenn
- rglenn&netrue.com
-3395
- Certicom Corp.
- John Goyo
- jgoyo&certicom.com
-3396
- DICOS GmbH Kommunikationssysteme Stephan
- Hesse
- s.hesse&dicos.de
-3397
- Border Blues Productions
- Phillip Dyer
- seuart&iamerica.net
-3398
- Fieldbus Foundation
- David Glanzer
- dglanzer&fieldbus.org
-3399
- Olencom Electronics Ltd.
- Evgeny Olentuch
- admin&olencom.com
-3400
- Alacrity Communications Inc.
- Frank Guan
- fguan&alacritycom.com
-3401
- McAfee Inc. (formerly 'Network Associates, Inc.')
- Brandon Conway
- itsecurity&mcafee.com
-3402
- Magicom Integrated Solutions
- Yossi Appleboum
- yossia&magicom.co.il
-3403
- Marimba, Inc.
- Senthilvasan Supramaniam
- senthil&marimba.com
-3404
- Adicom
- Lukes Richard, Ing.
- adicom&adicom.cz
-3405
- Expand Networks Inc.
- Einam Schonberg
- standards&infit.com
-3406
- EIS Corporation
- Rodney Thayer
- rodney&unitran.com
-3407
- compu-DAWN, Inc.
- Samir Patel
- dynasty&unix.asb.com
-3408
- Nylcare Health Plans
- Darnel Lyles
- LYLESD&corporate.nylcare.com
-3409
- Z-Tel Communications, Inc.
- Jeff Jones
- jdjones&Z-TEL.com
-3410
- Land-5 Corporation
- Larry Dickson
- ldickson&land-5.com
-3411
- J. Slivko's Web Design Consulting
- Jonathan Slivko
- JSlivko&WildNet.Org
-3412
- SanCastle Technologies Inc.
- Yaron
- yaronch&internet-zahav.net
-3413
- Radiotel
- Issac Shapira
- isaac&radiotel.co.il
-3414
- VoiceStream Wireless, Inc.
- Trey Valenta
- trey.valenta&voicestream.com
-3415
- Mobile Telephone Networks
- Eugene Pretorius
- pretor_e&mtn.co.za
-3416
- Neto Corporation
- Julian Chang
- tcchang&neto.net
-3417
- CacheFlow Inc.
- Gary Sager
- gary.sager&cacheflow.com
-3418
- Interactive Channel Technologies, Inc.
- Adam Tran
- adamt&cableshare.com
-3419
- DERA
- Dave Myles
- djmyles&dera.gov.uk
-3420
- Rossiyskiy Kredit Bank
- Ruslan Polyansky
- ruslan&roscredit.ru
-3421
- Performance Reporting Services Ltd
- Hash Valabh
- hash&prs.co.nz
-3422
- Network Aware, Inc.
- Subodh Nijsure
- subodh&networkaware.com
-3423
- Project 25
- Craig Jorgensen
- jorgensen&sisna.com
-3424
- Evident Software, Inc. (formerly 'Apogee Networks, Inc.')
- Ivan Ho
- iho&evidentsoftware.com
-3425
- Amsdell Inc.
- Benedict Chan
- bchan&amsdell.com
-3426
- Tokyo Denshi Sekei K.K.
- Akihiro Fujinoki
- fuji&tds.co.jp
-3427
- MicroJuris, Inc.
- Fernando Lloveras
- lloverasf&microjuris.com
-3428
- Computer Associates TCG Software
- Kalyan Dakshit
- kalyan_d1&catsglobal.com
-3429
- GenNet Technology Co., Ltd.
- Tomy Chen
- tomy&gennet.com.tw
-3430
- Microtronix Datacom Ltd.
- Ken Hill
- khill&microtronix.com
-3431
- Western DataCom Co., Inc.
- Jeff Sweitzer
- jeff&western-data.com
-3432
- Tellium, Inc.
- Y. Alysha Cheng
- acheng&tellium.com
-3433
- Goldencom Technologies, Inc.
- John Yu
- johnyu&goldencom.com
-3434
- Leightronix, Inc.
- David Leighton
- dleighton&leightronix.com
-3435
- Porta Systems Ltd
- Paul Wragg
- Paul_A_Wragg&csi.com
-3436
- Brivida, Inc.
- Tom Bohannon
- tab&brivida.com
-3437
- PitchonPe
- Pninat Yanay
- a_com&netvision.net.il
-3438
- Missouri FreeNet
- J.A. Terranson
- sysadmin&mfn.org
-3439
- Braintree Communications Pty Ltd
- Peter Mason
- peter.mason&braintree.com.au
-3440
- Borealis Technology
- Will Wood
- wwood&brls.com
-3441
- South Carolina State Ports Authority (SCSPA)
- Ken Rigsby
- krigsby&scspa.com
-3442
- Advantech Inc.
- Alexander Mazur
- mazur&advantech.ca
-3443
- United Healthcare
- Scott Danielson
- danielss&uhc.com
-3444
- egnite Software GmbH
- Ute Kipp
- ute&egnite.com
-3445
- Radiant Communications Corp.
- Jean Harding
- radiant3&ix.netcom.com
-3446
- Ridge Technologies Dave
- Holzer
- dave.holzer&ridgetechnologies.com
-3447
- JGI, Inc.
- Yoshiaki Kawabe
- kwb&rz.jgi.co.jp
-3448
- Rivkin Science & Technology, Inc.
- David Rivkin
- david.rivkin&sciandtech.com
-3449
- Fisher Berkeley Corp.
- Scott Amundson
- scotta&ccnet.com
-3450
- Ardence, Inc.
- Clark Jarvis
- cjarvis&ardence.com
-3451
- Vita Nuova Limited
- Dr. Charles Forsyth
- charles&vitanuova.com
-3452
- MDSI Mobile Data Solutions Inc.
- Paul Lui
- plui&mdsi.ca
-3453
- AAE Systems, Inc.
- Network Administrator
- mis&aaesys.com
-3454
- ELVIS-PLUS
- Mark Koshelev
- marc&elvis.ru
-3455
- Internet Freaks Luxembourg a.s.b.l.Department Technique
- et Informatiqe
- dti&ifl.lu
-3456
- Adtech, Inc.
- Mike Gouveia
- mgouveia&adtech-inc.com
-3457
- Advanced Intelligent Networks Corp.
- David Roland
- dsr&sohonet.net
-3458
- Transaction Network Services, Inc.
- Celeste Lipford
- clipford&tnsi.com
-3459
- COM:ON Communication Systems GmbH
- Dirk Leber
- d.leber&com-on.de
-3460
- Telecommunications Specialists Pte Ltd
- Desmond Ee
- desmondee&pacific.net.sg
-3461
- Inferentia SPA
- Roberto Gilberti
- Roberto.Gilberti&inferentia.it
-3462
- Makonin Consulting Corp.
- Stephen Makonin
- stephen&makonin.com
-3463
- Toucan Technology Ltd.
- Mark Rawlings
- Mark.Rawlings&toucan.ie
-3464
- Gimlet Management Consultants Ltd
- Kenny Robb
- kenny_robb&gimlet.co.uk
-3465
- Sanyo Denki Co., Ltd.
- Akihiro Tsukada
- Akihiro_Tsukada&sanyodenki.co.jp
-3466
- Optical Networks, Inc.
- Dan Tian
- oni_contact&opticworks.com
-3467
- NORCOM Networks Corporation
- Bruce Robinson
- brucer&norcom.net
-3468
- GTE Interactive
- Steve Bryer
- steve.bryer&gsc.gte.com
-3469
- Schumann Unternehmensberatung AG
- Thomas Heckers
- Thomas.Heckers&Schumann-AG.DE
-3470
- ATM R&D Center of BUPT
- Liu Fang
- liufang&bupt.edu.cn
-3471
- Bear Stearns & Company, Inc.
- Daniel Sferas
- dsferas&bear.com
-3472
- Telamon, Inc.
- Ross Scroggs
- ross&telamon.com
-3473
- Microgate Corporation
- Paul Fulghum
- paulkf&microgate.com
-3474
- Fujitu ICL Espana S.A.
- Francisco Santiandreu Lopez
- FSLOPEZ&MAIL.FUJITSU.ES
-3475
- Network Concepts
- Greg Obleshchuk
- greg.obleshchuk&nwc.com.au
-3476
- Arepa Inc.
- Mark Ellison
- ellison&ieee.org
-3477
- Dorado Software
- Mark Pope
- mpope&doradosoftware.com
-3478
- Spectra Logic
- John Maxson
- johnmax&spectralogic.com
-3479
- ViewTouch, Inc.
- Gene Mosher
- gene&viewtouch.com
-3480
- VIEWS Net, Inc.
- Michael Nowlin
- mike&viewsnet.com
-3481
- Himel Technology
- Boris Panteleev
- bpanteleev&himel.com
-3482
- Ton & Lichttechnik
- Michael Sorg
- tonlicht&compuserve.com
-3483
- Mariner Networks
- Sol Guggenheim
- sag&odetics.com
-3484
- Alaska Textiles, Inc.
- Dana Martens
- dana&7x.com
-3485
- Alaska Cleaners, Inc.
- Dana Martens
- dana&7x.com
-3486
- Wellsprings Holdings, LLC
- Dana Martens
- dana&7x.com
-3487
- Allure of Alaska
- Dana Martens
- dana&7x.com
-3488
- SevenX
- Dana Martens
- dana&7x.com
-3489
- Denali Sites, Inc.
- Dana Martens
- dana&denalisites.com
-3490
- United Systems Base
- Matthew Moyer
- mmoyer&usbase.org
-3491
- CDConsultants Inc.
- Edgard Lopez
- CDConsultants&hotmail.com
-3492
- Comdisco, Inc.
- Kenneth Gradowski
- kegrabowski&comdisco.com
-3493
- Broadband Access Systems, Inc.
- Tavit Ohanian
- tavit&basystems.com
-3494
- Convergent Networks, Inc.
- Eric Lin
- elin&convergentNet.com
-3495
- National Laboratory for Applied Network Research
- Duane Wessels
- wessels&ircache.net
-3496
- Web-Resumes
- Ralph Rasmussen
- ideas&mill.net
-3497
- Virtual Vendor Inc.
- Peter Odehnal
- petero&virtual-vendor.com
-3498
- BusinessBuilder Technologies Inc.
- Peter Odehnal
- petero&biz-serv.com
-3499
- Cyber Server Park Inc.
- Peter Odehnal
- petero&biz-serv.com
-3500
- COMSAT Laboratories
- Subramanian Vijayarangam
- rangam&ntd.comsat.com
-3501
- Vodafone Value Added Services Ltd
- Neil Taberner
- neil.taberner&vas.vodafone.co.uk
-3502
- J & A Services
- Jose Gutierrez
- Joe&jgutz.com
-3503
- Blue Lance, Inc.
- Peter Thomas
- pthomas&bluelance.com
-3504
- Sandvik Coromant
- Claes Engman
- claes.engman&sandvik.com
-3505
- Virtual Virgin Islands, Inc.
- Hal Borns
- HalBornsHB150&VirtualVI.com
-3506
- PageTek
- Bryan Reece
- reece&pagetek.net
-3507
- e-Net, Inc.
- Austin Bingham
- abingham&austin.datatelephony.com
-3508
- NEST
- Pietro Brunati
- pbrunati&iol.it
-3509
- Capital Holdings Ltd
- Ury Segal
- ury&cs.huji.ac.il
-3510
- TWO-WAY LAUNDRY
- William
- WJK11&WORLDNET.ATT.NET
-3511
- SkyStream, Inc.
- Ed Hodapp
- ed&skystream.com
-3512
- Portal Software, Inc.
- Majid Mohazzab
- majid&corp.portal.com
-3514
- VStream Incorporated
- Charlie Wanek
- cwanek&vstream.com
-3515
- Joanneum Research GesmbH
- Vjekoslav Matic
- vjekoslav.matic&joanneum.ac.at
-3516
- Cybernetica
- Arne Ansper
- arne&cyber.ee
-3517
- Tieto Technology A/S, Denmark
- Jorgen Richter
- jri&tt-tech.dk
-3518
- Pressler Inc.
- Chet Pressler
- chet&pressler.com
-3519
- amplify.net, Inc.
- Raymond Hou
- rhou&amplifynet.com
-3520
- TPS (La Television Par Satellite) Denis
- Vergnaud
- dvergnau&tps.fr
-3521
- Atlas Technologies, Inc.
- Brian Miller
- bmiller&atlas-tech.com
-3522
- Biodata GmbH
- Stephan Scholz
- s.scholz&biodata.de
-3523
- Netco GmbH
- Anett Zuber
- anett.zuber&netco.de
-3524
- Continium
- Alejandro Gil Sanda
- asanda&arnet.com.ar
-3525
- SilverBack Technologies
- Buddy Bruger
- bud&silverbacktech.com
-3526
- ITC GmbH
- Joerg Stangl
- jstangl&itc-germany.com
-3527
- IntraSoft, Inc.
- John Cheeseman
- john_cheeseman&keyvision.com
-3528
- ESP, LLC
- Jim Ziegler
- jczjcz&ibm.net
-3529
- AVT Corporation
- Doug Murray
- dmurray&avtc.com
-3530
- Research In Motion Ltd.
- Allan Lewis
- alewis&rim.net
-3531
- Orange DK
- Arnt Christensen
- arc&orange.dk
-3532
- Meisei System Service Company
- Nobuaki Nishimoto
- t51917&meiji-life.co.jp
-3533
- Acies Sistemas S/C Ltda.
- Roberto Parra
- rparra&acies.com.br
-3534
- CTAM Pty. Ltd.
- Peter Sim
- psim&scs.wow.aust.com
-3535
- Hutchison Avenue Software Corp.
- Colin Bradley
- colin&hasc.com
-3536
- Globus
- Carl Kessleman
- carl&ISI.EDU
-3537
- AirFiber, Inc.
- Eric Shoquist
- eshoquist&airfiberinc.com
-3538
- Europe Connection Ltd
- Thomas Wiegt
- tag55&dial.pipex.com
-3539
- Unassigned
-
- ---none---
-3540
- Conelly International, Inc.
- Jim Sluder
- bricpu&teleport.com
-3541
- Bindview Development Corp.
- Sridhar Balaji
- sbalaji&bindview.com
-3542
- Galea Network Security
- Daniel Letendre
- dletendr&galea.com
-3543
- Abilis gmbh
- Lino Predella
- predella&abilis.net
-3544
- Baycorp ID Services Ltd.
- David Young
- david.young&baycorpid.com
-3545
- Maddox Broadcast Ltd.
- Jon Taylor
- jont&maddox.co.uk
-3546
- Acute Communications Corporation
- David Chang
- davidyc&accton.com
-3547
- Tollbridge Technologies
- Arun Mahajan
- arun&tollbridgetech.com
-3548
- Oresis Communications
- John Lloyd
- jlloyd&oresis.com
-3549
- MLI Enterprises
- Mark Lewis
- lewisma&swbell.net
-3550
- Allstor Software Limited
- Simon Copeland
- Simon&allstor-sw.co.uk
-3551
- Spring Tide Networks, Inc.
- Bob Power
- bpower&springtidenet.com
-3552
- EES Technology Ltd.
- John Cooper
- john&eestech.com
-3553
- CSP AG
- Martin Walther
- mwalther&csp.de
-3554
- SAS Institue Inc
- Doug Bradley
- dobrad&wnt.sas.com
-3555
- NetLock Ltd.
- Katalin Szűcs
- szucs.katalin&netlock.hu
-3556
- GENO-RZ GmbH
- Herr Medovic
- Zdenko_Medovic&genorz.de
-3557
- MS3.net
- Michael Stoddard
- mstoddar&hotmail.com
-3558
- BGS Systemplanung AG
- Ulrich Muller
- ulrich.mueller&bgs-ag.de
-3559
- The Digital Schoolhouse
- Network Operations Center
- noc&tds.edu
-3560
- Sphere Logic Corporation
- Jerry Iwanski
- jerryi&spherelogic.com
-3561
- The Broadband Forum (formerly 'ADSL Forum')
- Christine Corby
- ccorby&broadband-forum.org
-3562
- Selway Moore Limited
- Jim Marsden
- jim.marsden&selwaymoore.com
-3563
- National Network Data Services
- William Hemmle
- whemmle&multinetconnections.net
-3564
- Ciphernet
- Dimitri Vekris
- dv&interlog.com
-3565
- Grolier Interactive Europe On Line Groupe
- Laurent T. Abiteboul
- lta&t-online.fr
-3566
- Midnight Technologies
- Kyle Unice
- kyle&midnighttech.com
-3567
- Scott Supply Service, Inc.
- Brett Scott
- blscott&scottnet.com
-3568
- Service Co LLC
- Richard Newcomb
- rnewcomb&twcny.rr.com
-3569
- Electronic Payment Services, Inc.
- Jim Cole
- jcole&netEPS.com
-3570
- Tait Limited
- Anthony Lister
- anthony.lister&taitradio.com
-3571
- Gift-Trek Malaysia Sdn. Bhd.
- Susan Chooi Meng Kuen
- susancho&tm.net.my
-3572
- HanA Systems, Inc.
- Kim Keon-Hyeong
- hyeong&hanasys.co.kr
-3573
- South African Networking People (Pty) Ltd
- James Keen
- james&san.co.za
-3574
- ORSYP SA
- Laure Faure
- laure.faure&orsyp.com
-3575
- RKB Onsite Computer Service
- Robert Breton
- BOBBRETON&HOTMAIL.COM
-3576
- MCI
- Jim Potter
- jim.potter&mci.com
-3577
- Himachal Futuristic Communications Limited
- Dr. Balram
- balram&hfcl.com
-3578
- PixStream Incorporated
- Don Bowman
- don&pixstream.com
-3579
- Hurley
- Tim Hurley
- hurleyt&mindspring.com
-3580
- Bell Emergis
- Andrew Fernandes
- andrew&fernandes.org
-3581
- Seagate Technology
- John Sosa-Trustham
- john.l.sosa&seagate.com
-3582
- LSI Logic
- Ken Wisniewski
- kenw&lsil.com
-3583
- JetCell, Inc.
- Randy Theobald
- randyt&jetcell.com
-3584
- Pacific Fiberoptics, Inc.
- Niraj Gupta
- niraj&pacfiber.com
-3585
- Omnisec AG
- Peter Lips
- lips&omnisec.ch
-3586
- Diebold, Incorporated
- Jan Bredon
- bredonj&diebold.com
-3587
- TIW Systems, Inc.
- Mike Huang
- huang&tiw.com
-3588
- NovoGroup Oyj
- Minna Karkkainen
- minna.karkkainen&novogroup.com
-3589
- SoGot
- W. Gothier
- hwg&gmx.net
-3590
- IA Information Systems AG
- Matthias Mueller
- mm&ia96.de
-3591
- R.W. Shore
- R.W. Shore
- rws228&gmail.com
-3592
- Draeger Medizintechnik GmbH
- Harald Schurack
- harald.schurack&draeger.com
-3593
- Alcatel Sistemas de Informacion
- Juan Cuervas-Mons
- cuervas&alcatel.es
-3594
- LJL Enterprises, Inc.
- Larry Layten
- larry&ljl.com
-3595
- BC TEL Advanced Communications
- Robert Lee
- robert_lee&bctel.net
-3596
- CMLTechnologies Inc.
- Moise Gaspard
- mgaspard&cmltech.com
-3597
- WildThings
- William Pantano
- wjpantano&hotmail.com
-3598
- Dixie Cake
- Timothy Stafford
- jtstafford&WEBTV.NET
-3599
- Type & Graphics Pty Limited
- Raif Naffah
- raif&fl.net.au
-3600
- Teltronics, Inc.
- Peter G. Tuckerman
- ptuckerman&teltronics.com
-3601
- C.R. McGuffin Consulting Services
- Craig McGuffin
- RMcGuffin&CRMcG.COM
-3602
- International Datacasting Corporation
- Heather McGregor
- hmcgregor&intldata.ca
-3603
- Westpac Banking Corporation
- Jack Szewczyk
- jszewczyk&westpac.com.au
-3604
- XYPI MEDIANET PVT. Ltd.
- Adityakumar Atre
- xypi&hotmail.com
-3605
- Nesser & Nesser Consulting
- Philip Nesser
- pjnesser&nesser.com
-3606
- Incognito Software Systems Inc.
- Andre Kostur
- akostur&incognito.com
-3607
- Cerent Corporation
- Chris Eich
- chris.eich&cerent.com
-3608
- The Tillerman Group
- Rodney Thayer
- rodney&tillerman.nu
-3609
- Cequs Inc.
- Peter Bachman
- peterb&cequs.com
-3610
- Ryan Net Works
- John Ryan
- john&cybertrace.com
-3611
- Foo Chicken, Ltd
- Brett McCormick
- brett&chicken.org
-3612
- Marcel Enterprises
- Roy Ferdinand
- RFerdinand&proxy.aol.com
-3613
- Rubicon Technologies, Inc.
- Rodney Hocutt
- rhocutt&rubicon-tech.com
-3614
- Altor plc
- Giles Martin
- giles.martin&altor.co.uk
-3615
- SoftWell Performance AB
- Tomas Ruden
- tomas.ruden&softwell.se
-3616
- United Resource Economic & Trading Center C.,
- Cui Lisheng
- cui&public.east.cn.net
-3617
- SurfControl plc
- Hywel Morgan
- Hywel.Morgan&surfcontrol.com
-3618
- Flying Crocodile, Inc
- Andy Edmond
- president&mail.flyingcroc.com
-3619
- ProxyMed, Inc.
- Kiran Sanghi
- ksanghi&proxymed.com
-3620
- Transact Systems, Inc.
- Claudio Mendoza
- claudio&e-transact.com
-3621
- Nuance Communications
- Mark Klenk
- mklenk&nuance.com
-3622
- GEFM
- Hermann Maurer
- hermann.maurer&db.com
-3623
- Systemintegrering AB
- Pelle Arvinder
- pelle&systemintegrering.se
-3624
- Enator Communications AB
- Ake Englund
- ake.englund&enator.se
-3625
- iHighway.net, Inc.
- John Brown
- jmbrown&ihighway.net
-3626
- Dipl.-Ing. (FH) Markus Drechsler
- Markus Drechsler
- Info&Drechsler-Soft.de
-3627
- Criptolab
- Jorge Davila
- jdavila&fi.upm.es
-3628
- Tietokesko Ltd
- Harri Hietanen
- harri.hietanen&kesko.fi
-3629
- Atos Origin
- Wolfgang Klein
- wolfgang.klein&atosorigin.com
-3630
- DeltaKabel Telecom cv
- M. Vermeiden
- MVermeid&DKT.NL
-3631
- Bridgewater Systems Corp.
- Mark Jones
- mjones&bridgewatersystems.com
-3632
- MaxComm Technologies Inc.
- Baktha Muralidharan
- muralidb&maxcommtech.com
-3633
- iD2 Technologies AB
- Hakan Persson
- hakan.persson&iD2tech.com
-3634
- Allied Riser Communications Inc.
- Scott Matthews
- smatthews&arcmail.com
-3635
- Wavesat Telecom, Inc.
- Yvon Belec
- ybelec&videotron.ca
-3636
- dpa Deutsche Presse-Agentur GmbH
- Marco Ladermann
- ladermann&dpa.de
-3637
- Power & Data Technology, Inc.
- Michael Williams
- mwilliams&powerdatatech.com
-3638
- IntelliReach Corporation
- Greg
- greg&intellireach.com
-3639
- WM-data
- Per Hagero
- pehae&wmdata.com
-3640
- DataPath, Inc.
- Adam Kirkley
- adam.kirkley&datapath.com
-3641
- Netaphor Software, Inc.
- Rakesh Mahajan
- rmahajan&netaphor.com
-3642
- CryptoConsult
- Ulrich Latzenhofer
- latz&crypto.at
-3643
- DIRTSA
- Omar
- jacy&tab1.telmex.net.mx
-3644
- Carden Enterprise Ltd
- Anthony Carden
- acarden&voicenet.com
-3645
- SONZ Ltd
- Andrew Jordon Prast
- andrew&prast.net
-3646
- ASKEY Computer Corp.
- Jeff Kao
- jkao&askey.com
-3647
- RaidTec, Inc.
- Douglas Hart
- douglas&gw.r16a.com
-3648
- Harcourt Brace & Company
- Jay Goldbach
- sysadm&hbicg.com
-3649
- Rollins Technology Inc.
- Matt Rollins
- matt&networkcomputer.net
-3650
- NetOps Corp
- John Deuel
- kink&netops.com
-3651
- Know IT AB
- Claes Berg
- Claes.Berg&knowit.se
-3652
- Pan Dacom Direkt GmbH (formerly 'Pan Dacom Networking AG')
- Michael Lindner
- lindner&pandacomdirekt.de
-3653
- Cirque Networks, Inc.
- Kevin Hoff
- kevin.hoff&cirque-networks.com
-3654
- NaviNet
- Jeffrey Johnson
- itcambridge&navinet.net
-3655
- Germanischer Lloyd AG
- Stefan Christiansen
- smc&germanlloyd.org
-3656
- FORCE Computers GmbH
- Jens Wiegand
- jewi&Force.DE
-3657
- Ericsson Wireless LAN Systems
- Kjell Jansson
- kjell.jansson&era.ericsson.se
-3658
- Dalian F.T.Z. TianYang Int'l Trade Co., Ltd.
- Raymond Wang
- sinotyw&pub.dl.lnpta.net.cn
-3659
- Ethercity Designs and Hosting Solutions
- Joey Barrett
- grinan&prodigy.net
-3660
- G3M Corporation
- Greg Campbell
- Greg&G3M.com
-3661
- Secure Data Access Inc.
- Jose Perea
- RACCOM&AOL.COM
-3662
- QWES.com Incorporated
- Robert MacDonald
- bmacdonald&qwes.com
-3663
- Megaxess
- Joonbum Byun
- jbyun&atanetwork.net
-3664
- Polygon
- Buck Caldwell
- buck_c&polygon.com
-3665
- Netoids Inc.
- Sridhar Ramachandran
- sridhar&netoids.com
-3666
- Acriter Software B.V.
- Cees de Groot
- cg&acriter.com
-3667
- InteleNet Communications
- Mark Nagel
- nagel&intelenet.net
-3668
- Control Module Inc.(CMI)
- David Horan
- DHoran&ControlMod.com
-3669
- Aveo Inc.
- Diego Cordovez
- dcordovez&aveo.com
-3670
- MD PREI
- Igor Ovcharenko
- igori&mo.msk.ru
-3671
- Picazo Communication Inc.
- James Davidson
- james&picazo.com
-3672
- Scottsdale Securities, Inc.
- Mike Tully
- mtully&alpha.scottsave.com
-3673
- WebManage Technologies, Inc.
- Krishna Mangipudi
- krishna&webmanage.com
-3674
- Infoclubindia
- B.P.Mukherji
- bpm&infoclubindia.com
-3675
- Connor Plumbing & Heating
- Michael Connor
- mjconnor&eznet.net
-3676
- Sentryl Software, Inc.
- Eric Green
- egreen&sentryl.com
-3677
- Engetron - Engenharia Eletronica Ind. e Com. Ltda.
- Wilton Padrao
- wpadrao&engetron.com.br
-3678
- Icaro
- Cyd Delgado
- cyd&nutecnet.com.br
-3679
- Unity Health
- Terry Penn
- pennts&stlo.smhs.com
-3680
- Parity Software Dev. Corp.
- Bob Edgar
- BobE&ParitySoftware.com
-3681
- David D. Hartman, CPA
- David Hartman
- hartman&eramp.net
-3682
- ComGates Communications Ltd.
- Danny Bukshpan
- dbukshpan&comgates.com
-3683
- Honeywell Oy, Varkaus
- Pekka Salpakari
- Pekka.Salpakari&honeywell.fi
-3684
- InterWorld Corp.
- Arthur Yeo
- ArthurY&InterWorld.com
-3685
- Sento Pty Ltd
- Richard Volzke
- richardv&sento.com.au
-3686
- Wicks By Julie
- Julie Richardson
- Duo&Defnet.com
-3687
- HSD - Hardware Software Development GmbH
- Ing. Markus Huemer
- markus.huemer&hsd.at
-3688
- Morpho e-documents (formerly 'Sagem Orga GmbH')
- Hanno Dietrich
- med.oid&morpho.com
-3689
- New Technology Development, Inc.
- Rich Lyman
- rich&gordian.com
-3690
- TIAA-CREF
- Michael Smith
- ms&gf.org
-3691
- Team2it-CopyLeft S.r.l.
- Enrico Gardenghi
- garden&team2it.com
-3692
- Intuit
- Doug Small
- Doug_Small&intuit.com
-3693
- Hakusan Corporation
- Yuka Hirata
- hirata&datamark.co.jp
-3694
- Thyssen Informatik GmbH
- Hannes Loehr
- loehr&tic.thyssen.com
-3695
- Chromatis Networks Inc.
- Roni Rosen
- roni&chromatis.com
-3696
- MicroProdigy
- Earl Tyler
- etyler&netscape.net
-3697
- Quantum Corporation
- Michael Cornwell
- michael.cornwell&quantum.com
-3698
- Saraide
- Joe Ireland
- joe.ireland&saraide.com
-3699
- Network Technologies Inc
- Carl Jagatich
- intermux.lara&ntigo.com
-3700
- Stellar One Corporation
- Jack Cook
- jackc&stellar.com
-3701
- TurboNet Communications
- Bob Himlin
- rhimlin&turbonet-comm.com
-3702
- Printrak International Inc.
- Tom Gruschus
- gruschus&printrak.com
-3703
- CyberFax Inc.
- Claire Genin
- cgenin&hotmail.com
-3704
- AMD
- Rahul Deshmukh
- rahul.deshmukh&amd.com
-3705
- ICET SpA
- Gerardo Tomasi
- g.tomasi&ieee.org
-3706
- ADiTel Telekommunikation Network GmbH
- Peter Adler
- pa&cybertron.at
-3707
- ADiT Holding GmbH
- Peter Adler
- pa&cybertron.at
-3708
- ADLER DATA Software GmbH
- Peter Adler
- pa&cybertron.at
-3709
- Teracom Telematica Ltda.
- Tassilo Luiz Kalberer Pires
- tassilo&datacom-tel.com
-3710
- LANmetrix Pty Ltd
- Brett Airey
- brett&lanmetrix.co.za
-3711
- SINETICA
- David Hill
- dkhill&dial.pipex.com
-3712
- GigaNet Incorporated
- Peter Desnoyers
- pjd&giganet.com
-3713
- Voxent Systems Ltd
- David Fullbrook
- david.fullbrook&voxent.com
-3714
- BellSouth Wireless Data, L.P.
- Chris Wiesner
- cwiesner&bellsouthwd.com
-3715
- Teleste Corporation
- Matti Susi
- matti.susi&teleste.com
-3716
- Brand Communications Limited
- Peter Vince
- peterv&brandcomms.com
-3717
- GeNUA mbH
- Konstantin Agouros
- Konstantin.Agouros&GeNUA.DE
-3718
- Philips Broadband Networks
- Jim Reynolds
- jreynolds&iname.com
-3719
- Exmicro
- Ted Baginski
- ted_baginski&hotmail.com
-3720
- Visiqn
- Rich Lyman
- rich&gordian.com
-3721
- OTONET s.a.r.l.
- Elisabeth Cochard
- e.cochard&otonet-lab.com
-3722
- Vulkan-Com Ltd.
- Leonid Goldblat
- han&mmtel.msk.su
-3723
- Ankey
- Victor Makarov
- victor.makarov&ankey.ru
-3724
- Interactive Communications Systems
- Owen Walcher
- owalcher&icstelephony.com
-3725
- AC&E Ltd
- Tyre Nelson
- tnelson&aceltd.com
-3726
- enCommerce, Incorporated
- James Harwood
- james&encommerce.com
-3727
- Western Multiplex
- Herman Lee
- hlee&mux.glenayre.com
-3728
- REALM Information Technoligies, Inc.
- Scott Smyth
- ssmyth&realminfo.com
-3729
- Nokia (formerly 'Alcatel-Lucent')
- Michael Anthony
- michael.anthony&nokia.com
-3730
- Westport Technologies
- Neil Lefebvre
- nlefebvre&westporttech.com
-3731
- The SABRE Group
- Anthony J. Sealy
- anthony_sealy&sabre.com
-3732
- Calamp Wireless Networks Inc (formerly 'Dataradio Inc.')
- Pierre Olivier
- polivier&calamp.com
-3733
- Datakom Austria DI Erich
- Rescheneder
- erich.rescheneder&datakom.at
-3734
- Security-7 Ltd.
- Tal Rosen
- tal&security7.com
-3735
- Telesafe AS
- Petter J. Brudal
- petter.brudal&telesafe.no
-3736
- Goodfield Corp.
- Alexander Webb
- ceo&unitedstates.com
-3737
- Pleiades Communications, Inc.
- Susan L. Pirzchalski
- slp&pleiadescom.com
-3738
- StreamSoft, Inc.
- Sanjay Lokare
- slokare&streamsoft.com
-3739
- The Eighteenth Software Co.,Ltd.
- Michihide Hotta
- sim&remus.dti.ne.jp
-3740
- Aquila Technologies Group, Inc
- Michel J Hoy
- mhoy&aquilagroup.com
-3741
- Foliage Software Systems
- Steven Morlock
- smorloc&foliage.com
-3742
- VIATechnologies,Inc
- Saten Shih
- saten&via.com.tw
-3743
- P.D. Systems International Ltd
- Ian Stuchbury
- ian&pdsi.demon.co.uk
-3744
- DATEV eG
- Dietmar Sengenleitner
- Dietmar.Sengenleitner&datev.de
-3745
- ClustRa AS
- Oystein Grovlen
- oystein.grovlen&clustra.com
-3746
- Swisscom AG
- Markus Schuetz
- markus.schuetz&swisscom.com
-3747
- AS Yegen
- Aleksei Sujurov
- alex&anet.ee
-3748
- Bank of America
- James W. Burton
- james.w.burton&bankamerica.com
-3749
- TeleHub Communication Corp
- Thevi Sundaralingam
- tsundaralingam&telehub.com
-3750
- Iscape Software
- Jukka Vaisanen
- jukka.vaisanen&iscape.fi
-3751
- Dragon Industries
- Michael Storroesten
- ms&dragon.no
-3752
- Thales Norway AS
- Erna Margrete Korslien
- erna.korslien&no.thalesgroup.com
-3753
- Aitek S.r.L.
- Ernesto Troiano
- et&aitek.it
-3754
- Crag Technologies
- Dave Holzer
- dholzer&cragtech.com
-3755
- ATOP Technologies, Inc.
- David Huang
- david&atop.com.tw
-3756
- Julien Daniel
- Julien Daniel
- tazdevil&total.net
-3757
- PT. Usaha Mediantara Intranet
- Harry
- harry&spot.net.id
-3758
- Core Networks, Inc
- Chris Thornhill
- enterprise_contact&cjt.ca
-3759
- OMEGA Micro Systems
- William O'Neill
- omegamic&vianet.on.ca
-3760
- Content Technologies Ltd
- Andy Harris
- andy.harris&mimesweeper.com
-3761
- HAGER-ELECTRONICS GmbH
- Peter-Michael Hager
- Hager&Dortmund.net
-3762
- Kwangwoon University
- Kuk-Hyun Cho
- khcho&infotel.kwangwoon.ac.kr
-3763
- Veramark
- Jim Gulley
- jgulley&veramark.com
-3764
- Quantum Corporation (formerly 'Advanced Digital Information Corporation')
- Carsten Prigge
- carsten.prigge&quantum.com
-3765
- StrategicLink Consulting
- Tim Cahill
- cahillt&strategiclink.com
-3766
- Hannibal Teknologies
- Richard White II
- richard&hannibaltek.com
-3767
- Pan-International Industrial Corp.
- George Huang
- georgeh&mail.panpi.com.tw
-3768
- Department of Veterans Affairs
- Jason Miller
- vaitengineeringcisidm&va.gov
-3769
- Banyan Networks Pvt. Ltd.
- L.N. Rajaram
- raja&banyan.tenet.res.in
-3770
- MCK Communications
- Richard Ozer
- oz&mck.com
-3771
- ko6yd
- Dane Westvik
- ko6yd&jps.net
-3772
- POS Resources Inc.
- Dane Westvik
- dwestvik&posr.com
-3773
- Siara Systems
- Jianxin (Joe) Li
- joe&siara.com
-3774
- Wavelink
- Roy Morris
- rmorris&pin-corp.com
-3775
- AGFA Corporation
- John Saba
- john.saba.b&us.agfa.com
-3776
- Millenium Solutions
- Jeremy Adorna
- jadorna&csom.umn.edu
-3777
- HydraWEB Technologies
- Seth Robertson
- seth&hydraweb.com
-3778
- CP Eletronica Industrial S/A
- Mario Magalhaes
- leboute&pro.via-rs.com.br
-3779
- Kingmax Technology Inc.
- Paul Lee
- Rd&kingmax.com.tw
-3780
- Level 3 Communications, Inc.
- Teri Blackstock
- Teri.Blackstock&Level3.com
-3781
- WXN, Inc.
- Matt Wixson
- mwixson&wxn.com
-3782
- University of North Texas
- Philip Baczewski
- baczewski&UNT.EDU
-3783
- EMR Corporation
- Slade Grove
- slade&emr.net
-3784
- Speakerbus Ltd.
- Brian Philpotts
- brian.philpotts&speakerbus.co.uk
-3785
- Cirrus Logic
- Mike Press
- mpress&crystal.cirrus.com
-3786
- Highland Technology Group, Inc.
- Adam Mitchell
- adamm&mindspring.com
-3787
- Russel Lane & Associates, Inc.
- Russel Lane
- russel&rlane.com
-3788
- Talktyme Technologies Inc
- Elzbieta Klimczyk
- talktyme&talktyme.com
-3789
- Wire Terminator (WT)
- Yoram Har-Lev
- harlev&walla.co.il
-3790
- Hamamatsu Photonics K.K. Kazuhiko
- Wakamori
- wakamori&crl.hpk.co.jp
-3791
- TeleComp, Inc.
- Angel Gomez
- angel&trdcusa.com
-3792
- LOGEC Systems
- Neil McKinnon
- ntm&tusc.com.au
-3793
- Lanier Worldwide, Inc.
- Antonio del Valle
- adelvall&lanier.com
-3794
- Midas Communication Technologies Private Limited
- R. Balajee
- rbala&midas.tenet.res.in
-3795
- Enact Inc.
- Dan Dzina Jr.
- ddzina&enactinc.com
-3796
- imt Information Management Technology AG
- Thomas Gusset
- thomas.gusset&imt.ch
-3797
- BENQ Corporation
- Andy Huang
- andythuang&benq.com
-3798
- Jinny Paging
- Georges Yazbek
- gyazbek&jinny.com.lb
-3799
- Live Networking Inc.
- Russ Carleton
- roccor&livenetworking.com
-3800
- Unisource Italia S.p.A.
- Davide Moroni
- noc&unisource.it
-3801
- Agranat Systems, Inc.
- Kenneth Giusti
- giusti&agranat.com
-3802
- Softamed
- Bernard Schaballie
- bernard.schaballie&softamed.com
-3803
- Praxon
- Chris Aiuto
- chris&praxon.com
-3804
- Standard Chartered Bank (Treasury)
- Mark Pearson
- mark_pearson&stanchart.com
-3805
- Longhai Yongchuan Foods Co., Ltd.
- Shuying Su
- lhycspgs&public.zzptt.fj.cn
-3806
- Shiron Satellite Communications(1996) Ltd.
- Andrey Shkinev
- andreys&shiron.com
-3807
- Wuhan Research Institute of Posts and Telecommunications
- Chen Bing
- chenbmail&163.net
-3808
- Cyber Power System Inc.
- Jackie Yeh
- jackie&cyberpowersystems.com.tw
-3809
- Cyras Systems Inc
- Shirish Sandesara
- ssandesara&cyras.com
-3810
- NetLine
- Jean-Marc Odinot
- Jean-Marc.Odinot&NetLine.fr
-3811
- SpectraSoft Inc.
- Yirong Li
- yirong.li&spectrasoft.com
-3812
- Anda Networks, Inc.
- Ray Jamp
- rjamp&andanets.com
-3813
- Ellacoya Networks, Inc.
- Kurt Dobbins
- kurtdobbins&ellacoya.com
-3814
- CallNet Communications, Inc.
- Mukesh Sundaram
- mukesh&callnetcomm.com
-3815
- Control Solutions, Inc.
- Jim Hogenson
- jimhogenson&csimn.com
-3816
- Nominet UK
- Geoffrey Sisson
- geoff&nominet.org.uk
-3817
- Monfox, Inc.
- Stefan King
- sking&monfox.com
-3818
- MetraTech Corp.
- Kevin Fitzgerald
- kevin&metratech.com
-3819
- OptiSystems Solutions Ltd.
- Boris Goldberg
- bgoldberg&optisystems.com
-3820
- Ziga Corporation
- Steven Knight
- knight&ziga.com
-3821
- Indian Valley Enterpriseses Inc.
- Thomas Roberts
- roberts&andassoc.com
-3822
- Edimax Technology Co., Ltd.
- Peter Pan
- peter&edimax.com.tw
-3823
- Touchbase Communications
- Richard Hall
- teedoff98&aol.com
-3824
- Attune Networks
- Lior Horn
- lior_horn&attune-networks.com
-3825
- Advanced Network & Services, Inc.
- Bill Cerveny
- cerveny&advanced.org
-3826
- Nextpoint Networks, Inc.
- Marat Vaysman
- vaysman&nextpoint.com
-3827
- Moscow Central Depository
- Andrew Vostropiatov
- andrv&mcd.ru
-3828
- STG Inc.
- Tom Gueth
- TGueth&compuserve.com
-3829
- Imaging Technologies Corporation
- Jeff Johnson
- jjohnson&imagetechcorp.com
-3830
- Acision
- Gertjan van Wingerde
- gertjan.van.wingerde&acision.com
-3831
- Oblix Inc.
- Prakash Ramamurthy
- prakash&oblix.com
-3832
- Taylored Solutions
- Kent Taylor
- Kent&TayloredSolutions.com
-3833
- Schneider Electric
- Dennis Dube
- dennis.dube&us.schneider-electric.com
-3834
- Novartis Pharma AG
- Fabrice Musy
- Fabrice.musy&novartis.com
-3835
- ALPS Electric
- Yuichiro Sawame
- sawame&alps.co.jp
-3836
- Terese Brown Real Estate
- Terese Brown
- trebrown&capecod.net
-3837
- HBOC Imaging Solutions Group
- Don Ruby
- druby&imnet.com
-3838
- Gasper Corporation
- Mark Marratta
- mmarratta&gasper-corp.com
-3839
- NeoWave Inc.
- DuckMoon Kang
- dmkang&NeoWave.co.kr
-3840
- Globe Institute of Technology
- Ali Daneshmand
- adaneshmand&hotmail.com
-3841
- Flycast Communications Corp.
- Steve Heyman
- sheyman&flycast.com
-3842
- lkis
- Areifudin
- lkis&indosat.net.id
-3843
- Pyderion Contact Technologies Inc.
- Ron Stone
- rstone&ottawa.com
-3844
- Graham Technology plc
- Alexander Hoogerhuis
- alexh&gtnet.com
-3845
- Citrix Systems Inc.
- Bill Powell
- snmp&citrix.com
-3846
- QMaster Software Solutions, Inc.
- Grant Gilmour
- grant&qmaster.com
-3847
- Ensemble Communications Incorporated
- Jason William Hershberger
- jason&ensemblecom.com
-3848
- Northchurch Communications, Inc.
- Matt Guertin
- matt&northc.com
-3849
- Object Integration, Inc.
- Brad Klein
- bradK&obji.com
-3850
- Xnet Communications GmbH
- Christian Mock
- chrimo&xdsnet.de
-3851
- Optika Inc.
- Doug Telford
- DTelford&optika.com
-3852
- Soft-Inter Technologies
- Stephan Malric
- malric&softinter.com
-3853
- ViaGate Technologies
- Allan Lawrence
- lawrenca&viagate.com
-3854
- KCP, Inc.
- Brad Klein
- brad&kcpinc.com
-3855
- Elastic Networks
- Glenn Trimble
- gtrimble&elastic.com
-3856
- Siebel Systems
- Daniel Sternbergh
- dsternbergh&siebel.com
-3857
- Sage Research Facility
- Charles Thurber
- Charles&Thurber.org
-3858
- Capricon Engineers
- Amit Kapoor
- amitk&tande.com
-3859
- VXL Instruments Ltd
- Shelly Varghese
- shellyv&vxl.co.in
-3860
- First International Computer, Inc.
- C.-H. Kevin Liu
- kevinliu&rd.fic.com.tw
-3861
- Fujitsu Network Communications, Inc.
- Corey Sharman
- corey.sharman&fnc.fujitsu.com
-3862
- Royal Bank of Scotland
- Gwyllym Jones
- jonesgt&rbos.co.uk
-3863
- Canadian Marconi Company
- Luc Germain
- lgermain&mtl.marconi.ca
-3864
- InTalk, Inc.
- Simon Black
- simonblack&intalk.com
-3865
- Thorne, West
- Dan Wasserman
- danogma&aol.com
-3866
- Global Net Center
- Carl Suarez
- csuarez&initiative-one.net
-3867
- Presence Technology GmbH+Co.KGMichael
- Staubermann
- admin&pt-online.de
-3868
- Convergys Information Management Group
- Scott Culbertson
- scott.culbertson&convergys.com
-3869
- IntelliLogic Networks, Inc.
- Hilton Keats
- hkeats&intellilogic.com
-3870
- Internet Business Emporium
- Dorrien Le Roux
- ibe&thesouth.co.za
-3871
- Ditech Corporation
- Alex Kurzhanskiy
- AKurzhanskiy&DitechCorp.com
-3872
- Miranda Technologies Inc.
- Tom Montgomery
- tmontgom&miranda.com
-3873
- QLogic
- Chuck Micalizzi
- c_micalizzi&qlc.com
-3874
- InfoValue Computing, Inc.
- Philip Hwang
- phwang&infovalue.com
-3875
- Metro Computing Consultants, Inc.
- Michael Cash
- info&metrocomputing.com
-3876
- ARINC Incorporated
- Jim Bradbury
- jbrad&arinc.com
-3877
- First American National Bank
- Mark Neill
- Mark.Neill&fanb.com
-3878
- Real Software Company
- Steve Coles
- aascolsa&rdg.ac.uk
-3879
- Taiwan Telecommunication Industry Co., Ltd.
- Michael C.C. Liou
- daml&ttic01.tatung.com.tw
-3880
- Wireless Information Transfer Systems
- Eric Christensen
- Eric_Christensen-P27660&email.mot.com
-3881
- Telefonaktiebolaget LM Ericsson
- Tomas Rahkonen
- tomas.rahkonen&lme.ericsson.se
-3882
- Pacom Systems Pty Ltd
- Steve Barton
- steveb&pacomsystems.com
-3883
- Next plc
- Mike Rankin
- mrankin&next.co.uk
-3884
- Phobos Corporation
- Rory Cejka
- rcejka&phobos.com
-3885
- Lifeline Systems Inc.
- Rick Wasserboehr
- rwasserboehr&lifelinesys.com
-3886
- MiMax Information
- Liu Yongxiang
- liuyx&comp.nus.edu.sg
-3887
- Elder Enterprises
- Alex
- RElder1&aol.com
-3888
- Iapetus Software
- Michael Nelson
- mikenel&iapetus.com
-3889
- CE Infosys GmbH
- Stefan Ritter
- sales&ce-infosys.com
-3890
- Across Wireless AB
- Lars Johansson
- lars.johansson&acrosswireless.com
-3891
- Chicago Board of Trade
- Albert Anders
- aand44&info.cbot.com
-3892
- ATEB
- Phil Vice
- pvice&syngate.ateb.com
-3893
- Parks Comunicacoes Digitais
- Giovani Nardi
- gnardi&parks.com.br
-3894
- Pitney Bowes
- Kevin Bodie
- bodieke&pb.com
-3895
- Advent Communications Ltd
- Robert Davies
- robert.davies&advent-comm.co.uk
-3896
- Automated Integrated Solutions, Inc.
- Roger Gaulin
- rgaulin&aissoftware.com
-3897
- Edison Technology Solutions
- Joseph Pumilio
- jpumilio&edisontec.com
-3898
- Mitsubishi Telecommunications Network Division
- Aung Htay
- ahtay&mtnd.com
-3899
- South China Morning Post Publishers Ltd
- Ivan Wang
- ivanwang&scmp.com
-3900
- Raster Solutions Pty. Ltd.
- David Keeffe
- avid&raster.onthe.net.au
-3901
- Managed Messaging, LLC
- Tom Johnson
- tj&terramar.net
-3902
- Zhongxing Telecom Co.,ltd. (abbr. ZTE)
- Zhang Jiaming
- zhang.jiaming&mail.zte.com.cn
-3903
- Tornado Development, Inc.
- Ryan Kim
- ryan&tems.com
-3904
- Xlink Internet Service GmbH
- Heiko Rupp
- hwr&xlink.net
-3905
- Telenordia Internet
- Dennis Wennstrom
- dew&algonet.se
-3906
- Data Communication Technology Research Institute
- Zhang Zhiheng
- sjsbmbbb&public3.bta.net.cn
-3907
- California Independent System Operator
- Steve Dougherty
- sdougherty&caiso.com
-3908
- GSP
- Michael Kartashov
- mike&vgts.ru
-3909
- Nodes, Inc.
- Kevin White
- klw&nodes.com
-3910
- Railtrack PLC
- Andy Nott
- mitchdj&globalnet.co.uk
-3911
- Glasner Consulting
- Luke Glasner
- lglasner&student.umass.edu
-3912
- GWcom, Inc.
- C.W. Chung
- cwchung&gwcom.com
-3913
- Array Telecom Corp.
- Mark Scott
- Mark.Scott&arraytel.com
-3914
- TCOSoft, Inc.
- Steve Ross
- info&tcosoft.com
-3915
- Teknis Electronics
- Stephen Lechowicz
- teknis&teknis.net
-3916
- Neo-Core, Inc.
- Richard Moore
- rmoore&neocore.com
-3917
- V-Bits, Inc.
- Raymond Tam
- raymond_tam&v-bits.com
-3918
- Watson Wyatt Worldwide
- Phil Grigson
- phil_grigson&watsonwyatt.com
-3919
- Monterey Networks, Inc.
- Bhadresh Trivedi
- btrivedi&montereynets.com
-3920
- CSNet Consulting, Inc.
- Chip Sutton
- chip&cs-net.com
-3921
- Aplion Networks, Inc.
- Deepak Ottur
- dottur&aplion.com
-3922
- Operational Research Consultants
- Denise M B Finnance
- finnanced&orc.com
-3923
- Intrak, Inc.
- Frank Fullen
- ffullen&intrak.com
-3924
- Policy Management Systems Corp.
- David Wallace
- root&pmsc.com
-3925
- Encompass Enterprise Management Consultants
- Kevin Austin
- kda2&msn.com
-3926
- NewSouth Communications Corp.
- Tracy Cooper
- tcooper&newsouth.com
-3927
- WarpSpeed Communications
- Jay Riddell
- jayr&warpspeed.net
-3928
- Sandwich Wireless Communications, Inc.
- Anthony Taves
- tony&snd.softfarm.com
-3929
- NEITH Creative Beauty
- Djed Wade
- djed&concentric.net
-3930
- NTT Electronics Corporation
- Masakazu Sato
- m-sato&yoko.nel.co.jp
-3931
- EasyAccess
- David Tung
- dtung&netscape.com
-3932
- Lara Technology, Inc.
- James Washburn
- jwashburn&laratech.com
-3933
- NEXO
- Richard Tai
- richardtai&nexo.com.tw
-3934
- Net-Wise Communications Ltd
- Daniel Fedak
- dfedak&net-wise.co.uk
-3935
- Centro Cantonale d'Informatica
- Lorenza Rusca Picchetti
- lorenza.rusca&ti.ch
-3936
- SINTECA
- Volker Rast
- vrast&hotmail.com
-3937
- EMS Technologies Canada Ltd.
- Luc Pinsonneault
- lpinsonn&spar.ca
-3938
- Deccan Technologies, Inc.Vijay Burgula/Vik Jang
- ices&nyct.net
- softsolinc&worldnet.att.net
-3939
- Internet Devices, Inc.
- Rodney Thayer
- rodney&internetdevices.com
-3940
- Ninety.De
- Christian Kruetzfeldt
- ckruetze&foni.net
-3941
- Santak Electronics Co. Ltd.
- Huang Fei
- huangfei&sc.stk.com.cn
-3942
- Infinet LLC (formerly 'Aqua Project Group')
- Dmitry Okorokov
- dmitry&infinetwireless.com
-3943
- Deva.net
- Albert Hui
- avatar&deva.net
-3944
- Data Solutions Group
- William Theiss
- wtheiss&baims.com
-3945
- Sylantro Systems
- James Logajan
- Jim.Logajan&Sylantro.com
-3946
- Conklin Corporation
- LuJack Ewell
- lewell&conklincorp.com
-3947
- Inverse Network Technology
- Matt Burdick
- burdick&inversenet.com
-3948
- MicroLegend Telecom Systems Inc.
- Mike Hasson
- mhasson&microlegend.com
-3949
- Intrinsix Corporation
- Mason Gibson
- mason&vadm.com
-3950
- TierTwo Systems
- John Dick
- jdick&tier2.com
-3951
- Visionik A/S
- Peter Holst Andersen
- p.h.andersen&visionik.dk
-3952
- Caly Corporation
- Amir Fuhrmann
- amir&calynet.com
-3953
- Albert Ackermann GmbH + Co KG
- Oliver Lehm
- o.lehm&ackermann.com
-3954
- Mitra Imaging Inc.
- Wallace Gaebel
- Wallace&mitra.com
-3955
- Linksys
- Greg LaPolla
- GLapolla&Linksys.com
-3956
- Envox
- Denis Kotlar
- denis.kotlar&envox.com
-3957
- Globalarchitect
- Kiewwen Pau
- kpauarcht&erols.com
-3958
- Solution Associates
- Jordan Rechis
- rechis&ti.com
-3959
- InterCall Communications & Consulting
- Joe Cho
- joecho&intercallco.com
-3960
- Government Technology Solutions
- Jeff Deitz
- jdeitz&gtsisgsa.com
-3961
- Corona Networks
- Sam Hancock
- sam&coronanetworks.com
-3962
- MGL Groupe AUBAY
- Joubert Jean-Paul
- jpjoubert&mgl-aubay.com
-3963
- R.C. Wright & Associates
- Paul Webb
- paulwebb&rcwa.com.au
-3964
- Danet GmbH
- Harald Rieder
- Harald.Rieder&danet.de
-3965
- Spacebridge Networks Corporation
- Alain Gauthier
- agauthier&spacebridge.com
-3966
- Allianz Elementar Versicherungs-Aktiengesellschaften
- Roland Mayer
- roland.mayer&allianz-elementar.at
-3967
- Bosch Sicherheitssysteme Engineering GmbH
- Konrad Simon
- konrad.simon&de.bosch.com
-3968
- Webline Communications Corp.
- Jeffrey Anuszczyk
- Jeff.Anuszczyk&webline.com
-3969
- RealNetworks, Inc.
- Craig Robinson
- crobinson&real.com
-3970
- FragRage Network
- Bertil Nilsson
- bertil&frage.net
-3971
- IMECOM
- Farnoux
- FarnouxN&BigFoot.com
-3972
- Apsion
- Pete Oliveira
- pete&apsion.com
-3973
- Aelita Software Group
- Andrei Baranov
- ab&aelita.net
-3974
- Custom Internetworking Inc.
- Jeremy Guthrie
- jguthrie&cinet.net
-3975
- Boston Communications Group, Inc.
- Vivek Marya
- Vivek_Marya&boscomm.net
-3976
- LinkData Solutions (Pty) Limited
- Veit Roth
- veit&linkdataSA.com
-3977
- Broadband Networks, Inc.
- Keith Kendall
- kkendall&bnisolutions.com
-3978
- Ingenieurbuero fuer Telekommunikations- undSoftware-Systemloesungen
- Arno-Can Uestuensoez
- acue&i4p.de
-3979
- AsGa Microeletronica S.A.
- Rege Scarabucci
- rege&asga.com.br
-3980
- Home Account Network, Inc.
- Doug Heathcoat
- dheathco&homeaccount.com
-3981
- Troika Networks, Inc.
- Benjamin Kuo
- benk&troikanetworks.com
-3982
- FaxNET Corporation
- Brian Dowling
- bdowling&faxnet.net
-3983
- Video Networks, Inc
- Steve Normann
- snormann&vninet.com
-3984
- EBSCO Publishing
- David Newman
- dnewman&epnet.com
-3985
- Avery Computer Systems
- Michael Avery
- averycs&aol.com
-3986
- HighwayMaster
- Greg Shetler
- gshetle&highwaymaster.com
-3987
- Concept Webcd Services Pvt. Ltd.
- Jatin Rawal
- jesco&bom3.vsnl.net.in
-3988
- Finecom Co., Ltd.
- Namsuk Baek
- nsbaek&fine.finecom.co.kr
-3989
- DigiComm Corporation
- Paul Grimshaw
- paulgq&intap.net
-3990
- Innovative Technology Software Systems Ltd
- Denham Coates-Evelyn
- innoteknol&aol.com
-3991
- Reticom
- Daniel Crowl
- dancrowl&reticom.com
-3992
- Ohmega Electronic Products Ltd.
- Alan Breeze
- alanbreeze.ohmega&onyxnet.co.uk
-3993
- Perfect Order
- William Hathaway
- wdh&poss.com
-3994
- Virtual Resources Communications Inc.
- Whai Lim
- wlim&vrcomm.com
-3995
- VASCO Data Security International, Inc.
- John Im
- jci&vasco.com
-3996
- Open Systems AG
- Raphael Thoma
- iana&open.ch
-3997
- ImproWare AG
- Patrick Guelat
- patrick.guelat&imp.ch
-3998
- Cherus
- Dmitri Tseitline
- tsdima&cherus.msk.ru
-3999
- dydx
- James Lyell
- james&dydx.com
-4000
- Hi-net Research Group
- Kazushige Obara
- obara&geo.bosai.go.jp
-4001
- KADAK Products Ltd.
- Douglas Seymour
- amxsales&kadak.com
-4002
- Banco del Buen Ayre
- Alejandro H. Gil Sanda
- asanda&bba.buenayre.com.ar
-4003
- George Mason University
- Brian Davidson
- bdavids1&gmu.edu
-4004
- Aloha Networks Inc.
- Tom Houweling
- tom&alohanet.com
-4005
- Tundo Corporation
- Michael Bar-Joseph
- michaelb&tundo.com
-4006
- Tundo Communication and Telephony Ltd.
- Michael Bar-Joseph
- michaelb&tundo.com
-4007
- Cable & Wireless Communications plc
- Brian Norris
- brian.norris&cwcom.co.uk
-4008
- Ardebil Pty Ltd
- Tzu-Pei Chen
- tchen&ardebil.com.au
-4009
- Telephonics Corporation
- Abid Khan
- khan&telephonics.com
-4010
- Dorsai Technology
- Simon Dunford
- dorsai&cableinet.co.uk
-4011
- CNUT Archetype Ltd
- Phil Hayes
- phil.hayes&cnut.co.uk
-4012
- Selectica, Inc.
- Brian Knoth
- bknoth&selectica.com
-4013
- KPMG LLP ICE Telecom-SVO
- Eduardo Navarrete
- enavarrete&kpmg.com
-4014
- StarBurst Software
- Li Chou
- li.chou&starburstsoftware.com
-4015
- Computer Configurations Holdings
- Mike Brien
- mikeb&configs.co.za
-4016
- Iperia, Incorporated
- Eric Martin
- emartin&iperia.com
-4017
- Logisistem Srl
- Paolo Palma
- paolo.palma&logisistem.it
-4018
- Security First Technologies, Inc.
- Garner Andrews
- garner.andrews&s1.com
-4019
- APIS Software GmbH
- Juergen Schwibs
- Juergen.Schwibs&apissoft.com
-4020
- Coop Genossenschaft Switzerland
- UNIX Solutions
- unix.solutions&coop.ch
-4021
- Ensim Corporation
- Shaw Chuang
- shaw&ensim.net
-4022
- AEC Ltd.
- Daniel Cvrcek
- dan&aec.cz
-4023
- Imran
- Imran Anwar
- imran&imran.com
-4024
- Avantel S.A.
- Carlos Robles
- crobles&avantel.com.mx
-4025
- Lexitech, Inc.
- Stephen MarcAurele
- stevem&lexitech.com
-4026
- Internet Access AG
- Marc Liyanage
- webmaster2&access.ch
-4027
- GTE Laboratories Incorporated
- Jonathan Klotzbach
- jklotzbach&gte.com
-4028
- Decision Networks
- Ted Rohling
- tedr&instructors.net
-4029
- NSI Communications Systems Inc.
- Daniel Richard
- drichard&nsicomm.com
-4030
- Mitsubishi Electric Automation, Inc.- UPS division
- David Garner
- dgarner&sechq.com
-4031
- Orillion USA, Inc.
- Thang Lu
- thanglu&orillion.com
-4032
- DataKinetics Ltd
- Gareth Kiely
- gkiely&datakinetics.co.uk
-4033
- Signal Core
- Gene Yu
- gene&signalcore.com
-4034
- IntraNet, Inc.
- Jonathan Edwards
- edwards&intranet.com
-4035
- Ignitus Communications
- Mahesh Ganmukhi
- maheshg&lucent.com
-4036
- Enator Telub AB
- Bengt Nilsson
- bengt.nilsson&enator.se
-4037
- Presbyterian Church (USA)
- William Hovingh
- whovingh&ctr.pcusa.org
-4038
- Softov Advanced Systems Ltd.
- Sam Bercovici
- sam&softov.co.il
-4039
- Mayan Networks Corporation
- K. Ramesh Babu
- ramesh.babu&mayannetworks.com
-4040
- MicroSignals Group
- Futaya Yamazaki
- yamazaki&ilt.com
-4041
- Nomura International Plc
- Yogesh Patel / Geoff Alders
- hostmaster&nomura.co.uk
-4042
- DigiCommerce Ltd.
- Raphael Salomon
- raphael&digicommerce.com
-4043
- QNX Software Systems Ltd.
- Dave Brown
- dabrown&qnx.com
-4044
- Eloquence Limited
- Ian Rogers
- ian&eloquence.co.uk
-4045
- Thomson-CSF Communications
- Pierre Petit
- Pierre.PETIT&tcc.thomson-csf.com
-4046
- SCORT
- Jeff Maury
- jfmaury&scort.com
-4047
- Hunan Computer CO., Ltd.
- Jinmei Lv
- hcfrd&public.cs.hn.cn
-4048
- Kinko's, Inc.
- Karl Miller
- karl.miller&kinkos.com
-4049
- Opus Comunicacao de Dados
- Felipe Salgado
- felipe&opus.com.br
-4050
- Infuntainment Limited
- Ashton Pereira
- Benhur&bogo.co.uk
-4051
- SowsEar Solution Design Group
- Larry Bartz
- larrybartz&netscape.net
-4052
- Vanguard Security Technologies Ltd Raviv Karnieli
- raviv&vguard.com
- ---none---
-4053
- Switchcore
- Stephan Korsback
- stephan.korsback&switchcore.com
-4054
- Abatis Systems Corporation
- Philippe Fajeau
- pfajeau&abatissys.com
-4055
- Nimbus Software AS
- Carstein Seeberg
- case&nimsoft.no
-4056
- StreamCORE
- Francois Tete
- francois.tete&stream-core.com
-4057
- ControlNet, Inc.
- Vivek
- vivek&controlnet.co.in
-4058
- Generali IT-Solutions GmbH
- Klaus Ablinger
- klaus.ablinger&generali.at
-4059
- Broadlogic
- Sridhar Sikha
- sridhar.sikha&broadlogic.com
-4060
- JFAX.COM
- Felipe Hervias
- fhervias&jfax.com
-4061
- Technology Control Services
- Jonathan Silver
- jonathan.silver&techcontrol.com
-4062
- Astral Point Communications, Inc.
- Steven Sherry
- ssherry&astralpoint.com
-4063
- ASC Technologies AG (formerly 'ASC Telecom AG')
- Peter Schmitt
- p.schmitt&asc.de
-4064
- Elma Oy Electronic Trading
- Mikko Ahonen
- mikko.ahonen&elma.net
-4065
- InfraServ GmbH & Co Gendorf KG
- Bernhard Eberhartinger
- bernhard.eberhartinger&gendorf.de
-4066
- Carioli Consulting Inc.
- Maurizio Carioli
- carioli&netscape.net
-4067
- Fivemere Ltd.
- Richard Horne
- rhorne&cabletron.com
-4068
- Pathway Inc.
- Jerry Fragapane
- jerry_fragapane&pathway-inc.com
-4069
- Ellison Software Consulting, Inc.
- Mark Ellison
- ellison&ieee.org
-4070
- US West Internet Services
- Paul Lundgren
- paul&uswest.net
-4071
- PRAIM S.p.A.
- Beppe Platania
- beppep&praim.com
-4072
- Qeyton Systems AB
- Per Svensson
- Per.Svensson&qeyton.se
-4073
- TeleDiffusion de France
- Serge Marcy
- serge.marcy&c2r.tdf.fr
-4074
- Krutulis Enterprises
- Joe Krutulis
- joekltap&ibm.net
-4075
- Sedona Networks
- Susheel Jalali
- susheel&sedonanetworks.com
-4076
- Novera Software, Inc.
- Michael Frey
- mfrey&novera.com
-4077
- The Limited, Inc.
- Herb Berger
- hberger&limited.com
-4078
- Symon Communications
- Raymond Rogers/Keith Roller
- SNMP_admin&symon.com
-4079
- 24/7 Media, Inc.
- Rani Chouha
- rani&riddler.com
-4080
- Archangels Realty, Inc.
- Manny Caballero
- manny&myarchangels.com
-4081
- Zelea
- Michael Allan
- mallan&pathcom.com
-4082
- Timko Enterprises
- Steve Timko
- steve&timko.com
-4083
- Spark New Zealand (formerly 'Telecom New Zealand')
- IAM Team
- iamteam&spark.co.nz
-4084
- Trilogy Development Group
- David Meeker
- noc&trilogy.com
-4085
- D.I.B. Ges. fuer Standortbetreiberdienste mbH
- K. Bothmann
- dibbothm&dbmail.debis.de
-4086
- Ericsson Research Montreal (LMC)
- Stephane Desrochers
- lmcstde&lmc.ericsson.se
-4087
- USWeb/CKS
- David Smith
- dsmith&uswebcks.com
-4088
- aku awekku & co.
- babu
- aalang6&tl-79-92.tm.net.my
-4089
- SALUtel
- Alex Rabey
- arabey&erols.com
-4090
- Consorte Tele AS
- Baard Bugge
- baard&consorte.no
-4091
- Infitel Italia srl
- Angelo Primavera
- a.primavera&infitel.it
-4092
- Computel Standby BV
- Sander Steffann
- s.steffann&computel.nl
-4093
- Merlot Communications, Inc.
- Tom Coryat
- tcoryat&merlotcom.com
-4094
- Quality Tank & Construction Co. Inc.
- Arthur Koch
- box1&qualitytank.com
-4095
- Axent Technologies
- David Heath
- dheath&axent.com
-4096
- Thales e-Security
- Callum Paterson
- callum.paterson&thales-esecurity.com
-4097
- Elan Text to Speech
- Cedric Buzay
- cbuzay&elan.fr
-4098
- Signaal Communications
- O.G. Hooijen
- o_hooijen&signaal.nl
-4099
- Tristrata Inc.
- Aziz Ahmad
- aziz&tristrata.com
-4100
- Wavetek Wandel Goltermann
- Pierre Monfort
- pierre.monfort&wago.de
-4101
- John Hancock Financial Services
- Laura Glowick
- lglowick&gateway-1.jhancock.com
-4102
- SHYM Technology Inc.
- Henry Tumblin
- tumblin&shym.com
-4103
- CNN
- David C. Snyder
- David.Snyder&turner.com
-4104
- Redwood Technology B.V.
- Leen Droogendijk
- leen&redwood.nl
-4105
- Stargus, Inc.
- Jason Schnitzer
- jason&stargus.com
-4106
- Astrophysikalisches Institut Potsdam
- Andre Saar
- ASaar&aip.de
-4107
- Beijing Telecom Administration, China
- Bin Zou
- zoubin&axp.nmefc.gov.cn
-4108
- Serendip
- Robert Barrett
- bobbarrett&earthlink.net
-4109
- Durango Security Group
- Kelly Edward Gibbs
- e_gibbs&hotmail.com
-4110
- Softstart Services Inc.
- Thomas Jones-Low
- tjoneslo&softstart.com
-4111
- Westell (UK) Ltd
- Darren Wray
- darren.wray&westell.co.uk
-4112
- Tunitas Group
- Bill Pankey
- tunitas&earthlink.net
-4113
- Tenor Networks, Inc.
- Caralyn Brown
- cbrown&tenornetworks.com
-4114
- T10.net
- Tom Nats
- admin&t10.net
-4115
- Arris Interactive LLC
- Robert Wynn
- robert.wynn&arris-i.com
-4116
- InfoInterActive Inc.
- Trent MacDougall
- Trent.MacDougall&InfoInterActive.Com
-4117
- Entertainment Systems Technology
- James Murray
- murray&entsystech.com
-4118
- Tesla Liptovsky Hradok a.s.
- Ing. Tibor Racko
- racko&teslalh.sk
-4119
- Remote Management Systems Pty Ltd
- Michael Cannard
- mcannard&rmsystems.com
-4120
- Sonik Technologies Corp.
- David Fulthorp
- david&sonik.com
-4121
- Digital Chicago.net
- Jaidev Bhola
- jbhola&bcschicago.com
-4122
- The University of Texas Health Science Center at Houston
- Barry R Ribbeck
- support&uth.tmc.edu
-4123
- Hitachi America Ltd
- Roy Pillay
- roy.pillay&hal.hitachi.com
-4124
- Unify Consulting Group, Inc.
- Derrick Arias
- derrick&unifygroup.com
-4125
- Siemens AG ICP Kornelius
- Nehling
- kornelius.nehling&pdb.siemens.de
-4126
- LogMatrix Inc (formerly 'Open Service')
- Chris Boldiston
- techsupport&logmatrix.com
-4127
- Mercury Computer Systems, Inc.
- Yan Xiao
- yxiao&mc.com
-4128
- ARM Ltd.
- Jon Brawn
- jbrawn&arm.com
-4129
- Mnaccari@consulting
- Michael Naccari
- Mnaccari_consulting&worldnet.att.net
-4130
- Microwave Data Systems
- Robert Broccolo
- bbroccolo&mdsroc.com
-4131
- Tridium
- Robert Adams
- RAdams&tridium.net
-4132
- Connecticut Hospital Association
- Wing-Yan Leung
- Leung&chime.org
-4133
- philipjeddycpas
- Alun Hughson
- hughson&bendigo.net.au
-4134
- Philip J. Eddy & Partners Pty Ltd
- Alun Hughson
- hughson&bendigo.net.au
-4135
- NiceTec GmbH
- Joerg Paulus
- tech&nicetec.de
-4136
- UQAM | Université du Québec à Montréal
- Stéphane Talbot
- talbot.stephane&uqam.ca
-4137
- GAURI Info-Comm.Inc.
- Se Youn Ban
- syban&www.gauri.co.kr
-4138
- Sychron Ltd
- Vasil Vasilev
- vasil&sychron.com
-4139
- WapIT Ltd.
- Mikael Gueck
- mikael.gueck&wapit.com
-4140
- Computer & Telephony Systems AB
- Rickard Ekeroth
- rickard.ekeroth&cts.se
-4141
- IMR Worldwide Pty Ltd
- Matthew Donald
- mdonald&imrworldwide.com
-4142
- FDS Networks Limited
- Ivan Chan
- ichan&hk.super.net
-4143
- M&I Data Services Alexander
- Senkevitch
- alex.senkevitch&midata.com
-4144
- PricewaterhouseCoopers-FP5
- Dean Scotson
- dean.z.scotson&uk.pwcglobal.com
-4145
- Cristie Data Products Limited
- Arumugam
- aru&cristie.com
-4146
- GlobalSign NV/SA
- Henry Minassian
- Henry.Minassian&globalsign.net
-4147
- Zuercher Kantonalbank
- Roman Bischoff
- roman.bischoff&zkb.ch
-4148
- DeWitt, Ross &Stevens, S.C.
- Suzanne Arbet
- sea&dewittross.com
-4149
- Accrue Software, Inc.
- Bob Page
- bob.page&accrue.com
-4150
- Northwestern Mutual Life Insurance Company
- Matthew Andrews
- mattandrews&northwesternmutual.com
-4151
- iMPath Networks Inc.
- Hussein Said
- hsaid&impathnetworks.com
-4152
- Two Way TV
- Jason Malaure
- jmalaure&twowaytv.co.uk
-4153
- Simple Networks
- Kevin Schmidt
- kjs&vagrant.org
-4154
- Versa Technology, Inc.
- Calvin Hsieh
- calvinh&versatek.com
-4155
- Cemoc Ltd
- Richard Day
- richard&cemoc.co.uk
-4156
- New Access Communications, Inc.
- Kamran Ghane
- kghane&new-access.com
-4157
- BCE Emergis
- Nicolas Viau
- nicolas.viau&emergis.com
-4158
- Milman Consulting
- Harris Milman
- harris&singlepointsys.com
-4159
- Electronic Theatre Controls, Inc.
- John Freeborg
- jfreeborg&etcconnect.com
-4160
- VIVE Synergies Inc.
- Xiangfeng Liu
- xfliu&vive.com
-4161
- Qtera Corporation
- Wei Li
- li&qtera.com
-4162
- Input Output Inc.
- Kim Le
- Kim_Le&i-o.com
-4163
- Quarry Technologies
- Mark Duffy
- mduffy&quarrytech.com
-4165
- SE Electronics
- Jasper Rijnsburger
- Jasper.Rijnsburger&Salland.com
-4166
- The Mercy Foundation
- Robert Lindsay
- webmaster&themercyfoundation.org
-4167
- Markus Lauer IT Consulting
- Markus Lauer
- pen-contact&lauerit.de
-4168
- Systems Management Specialists
- Todd Jackson
- toddj&smsnet.com
-4169
- Syzygy Solutions
- Jeff Lowcock
- Jeff.Lowcock&syzygysolutions.com
-4170
- University of Wisconsin-Milwaukee
- Jeffrey Olenchek
- jeff&uwm.edu
-4171
- BOSUNG Data Communication Co.
- Jong-Hyuck Sun
- sunny34&hotmail.com
-4172
- Narae Information & Communication Enterprise
- H.S. Hwang
- hhs&naraeinfo.com
-4173
- VIERLING Communication S.A.S.
- Eric Levenez
- eric.levenez&vierling-group.com
-4174
- Critical Devices, Inc.
- Andrew Levi
- alevi&aztecsystems.com
-4175
- Tessler's Nifty Tools
- Gary Tessler
- GaryTessler&NiftyTools.com
-4176
- Newton Solutions
- Duncon Wakler
- duncan&Personal2.freeserve.co.uk
-4177
- Redding Enterprises
- J.D. Redding
- reddi&carrollsweb.com
-4178
- Aspect Software
- Maxim Tseitlin
- mtseitlin&AspectSoft.com
-4179
- Commercial Technologies Corp
- H. Sublett
- sublett&ct-corp.com
-4180
- Talkstar.Com Inc.
- Wendell Brown
- comments&talkstar.com
-4181
- Generic Telecom Ltd.
- Alexandre Dulaunoy
- adulau&unix.be.EU.org
-4182
- Leningrad Nuclear Power Plant
- Vladimir Polechtchouk
- pve&laes.sbor.ru
-4183
- Hammer Technologies
- Albert Seeley
- aseeley&hammer.com
-4184
- SMS - Shared Medical Systems, Inc.
- Mike Flannery
- Mike.Flannery&smed.com
-4185
- Boostworks
- Fabrice Clara
- fclara&boostworks.com
-4186
- AKA Consulting, Inc.
- Rex Powell
- aqalliance&worldnet.att.net
-4187
- Storage Area Networks Ltd
- Nigel Squibb
- n.squibb&san.com
-4188
- Realize Communications
- Michael Ginn
- vendor13&realize.com
-4189
- EGIS K.K.
- Vanessa Cornu
- egis&twics.com
-4190
- ETRADE Securities
- Allen Lung
- alung&etrade.com
-4191
- SIGOS Systemintegration GmbH
- Martin Loehlein
- Martin.Loehlein&sigos.de
-4192
- Tennessee Valley Authority
- Darl Richey
- dwrichey&tva.gov
-4193
- VUT BRNO, faculty of EE and CS
- Petr Penas
- xpenas00&stud.fee.vutbr.cz
-4194
- Leonia plc
- Tapio Paronen
- tapio.paronen&tietoleonia.fi
-4195
- TeleSoft Inc.
- Vinod Chandran
- vinod&indts.com
-4196
- Siemens AG Automation & Drives
- Harald Thrum
- harald.thrum&khe.siemens.de
-4197
- Cap Gemini Denmark A/S
- Jesper Goertz
- jesper.goertz&capgemini.dk
-4198
- VPN Consortium
- Paul Hoffman
- paul.hoffman&vpnc.org
-4199
- Cellnet Technology, Inc.
- Jim Coburn
- jim.coburn&cellnet.com
-4200
- Fast Search & Transfer
- Oystein Haug Olsen
- Oystein.Haug.Olsen&fast.no
-4201
- Tonna Electronique
- Gilles BOUR
- g.bour&tonna.com
-4202
- Samwoo Telecommunications Co., Ltd.
- Kwang-Sung Kim
- raider&neptune.samwoo.co.kr
-4203
- The OpenLDAP Foundation
- Kurt Zeilenga
- Kurt&OpenLDAP.Org
-4204
- Adtec Co., Ltd.
- Park Kyung Ran
- orchid&adtec.co.kr
-4205
- Durak Unlimited
- Sean Dreilinger
- sean&durak.org
-4206
- MITA Industrial Co., Ltd.
- Tokimune Nagayama
- tokky&mita.co.jp
-4207
- Daydream Promotions
- Robert Gladson
- buster&daydreampromotions.com
-4208
- Tantivy Communications, Inc.
- Andy Stein
- astein&tantivy.com
-4209
- CDVS Inc.
- Bob Woodard
- bwoodard&ican.net
-4210
- Assumption University
- Wanchat Chesdavanijkul
- khunwanchat&youvegotmail.net
-4211
- Corillian
- Jeff Grossman
- jeffg&corillian.com
-4212
- SPM - Systementwicklung und Projektmanagement GmbH
- Piet Quade
- office&spm.de
-4213
- Infrax Inc.
- Benoit Dicaire
- Benoit.Dicaire&Infrax.Com
-4214
- Sunquest Information Systems, Inc.
- Michael Buchanan
- Michael.Buchanan&sunquest.com
-4215
- SilkRoad, Inc.
- Oliver Severin
- oliver.severin&silkroadcorp.com
-4216
- Triton Network Systems
- Jeff Truong
- jtruong&triton-network.com
-4217
- Opalis
- Laurent Domenech
- laurent&opalis.com
-4218
- Gecko Software Limited
- Tony Smith
- tony&geckoware.com
-4219
- regioconnect GmbH
- Michael Rueve
- rueve&regioconnect.net
-4220
- ARCANVS
- Kepa Zubeldia
- kepa&arcanvs.com
-4221
- Soundscaipe
- Chuck Shea
- chuckshea&aol.com
-4222
- OnDisplay Incorporated
- Patrick McMahon
- patrick&ondisplay.com
-4223
- Milgo Solutions, Inc.
- Frank DaCosta
- frank_dacosta&milgo.com
-4224
- John H. Harland Company
- John Payne
- jpayne&harland.net
-4225
- Peach Networks
- Paz Meoded
- yossia&magicom.co.il
-4226
- Composit Communications
- Avi Philosoph
- yossia&magicom.co.il
-4227
- Sixtra Chile S.A.
- Douglas Conley
- dconley&sixbell.cl
-4228
- DASCOM, Inc.
- Michael Powell
- powell&dascom.com
-4229
- Westfair Foods Ltd.
- David Elving
- delving&westfair.ca
-4230
- Pirouette, Inc.
- Julian Kamil
- julian&us.net
-4231
- OB Telematics
- Kwaku Okyere-Boateng
- okyere1&mdx.ac.uk
-4232
- CTX Opto-Electronics Corp.
- Router Hsu
- Router&ctxopto.com.tw
-4233
- Dalian Daxian Network System Co.ltd
- Shalei
- dxgh&public.dalian.cngb.com
-4234
- Pragma Ltda.
- Gregorio Alejandro Patino Zabala
- gpatino&pragma.com.co
-4235
- CultureShock Multimedia
- Quintin Woo
- quintin&cshock.com
-4236
- Spectel Ltd.
- John McBride
- jmcbride&spectel.ie
-4237
- Busby Software
- Bob Busby
- rbusby&cis.ksu.edu
-4238
- Media Station Inc.
- Laurence Kirchmeier
- laurie&mediastation.com
-4239
- Kommunedata A/S
- Jette Dahl Bauer
- jdb&kmd.dk
-4240
- Vodafone Information Systems GmbH
- Carsten Queren
- carsten.queren&vodafone.com
-4241
- Peakstone Corporation
- Derek Palma
- dpalma&peakstone.com
-4242
- The Clorox Company
- Paul Rarey
- Paul.Rarey&Clorox.com
-4243
- NPO Infoservice
- Vladimir Vodolazkiy
- vvv&remount.cs.msu.su
-4244
- Cinnabar Networks Inc.
- Stephen Klump
- oidhound&cinnabar.ca
-4245
- Posten SDS AS
- Bard Prestholt
- bard.prestholt&sds.no
-4246
- Comverse Network Systems (CNS)
- Roni Avni
- Roni_Avni&icomverse.com
-4247
- The University of Edinburgh
- David Lowrie
- dlowrie&ed.ac.uk
-4248
- Interconexion Electrica S.A.
- Carlos Albeto Gomez Pineda
- cagomez&redglobal.net
-4249
- NATEKS Ltd.
- Alex Rousnak
- alex&nateks.ru
-4250
- H.I.T. Industries Sales Ltd
- A. Tawil
- ait2334&aol.com
-4251
- System Design Repair
- Tuoc N. Bui
- tuckyb&sdrep.com
-4252
- High Speed Access
- Jim Pang
- JimP&hsacorp.net
-4253
- LuxN, Inc.
- Mark Cvitkovich
- markc&luxn.com
-4254
- arvato systems GmbH
- Holger Simons
- IANA&arvato-systems.de
-4255
- Perfecto Technologies
- Eytan Segal
- eytan.segal&perfectotech.com
-4256
- Kipling Information Technology AB
- Reine Beck
- reine.beck&kipling.se
-4257
- Cyberstation, Inc.
- Dan Walters
- djw&cyberstation.net
-4258
- Open4Rent
- Dusty Hunt
- goodlovn97&aol.com
-4259
- FDP
- Jack O'Neill
- jack&germanium.xtalwind.net
-4260
- 3rd Millennium Consulting
- Michael Naccari
- Millennium_Consulting&worldnet.att.net
-4261
- Globol Solutions
- Naveed Anwar
- NaveedAnwar&consultant.com
-4262
- Jean=Claude Metal Craft
- Jean E. Powerll Sr.
- hoza&bellsouth.net
-4263
- Dr. Andreas Muller, Beratung und Entwicklung
- Dr. Andreas Muller
- afm&othello.ch
-4264
- World Ramp, Inc.
- Rob McKinney
- rob&worldramp.net
-4265
- Tachion Network Technologies Inc.
- Cheenu Srinivasan
- cheenu&tachion.com
-4266
- FernUniversitaet Hagen
- Carsten Schippang
- carsten.schippang&fernuni-hagen.de
-4267
- Transcend, Inc.
- Craig Watkins
- crw+nic&transcend.com
-4268
- BancTec Computer and Network Services
- Sam James
- jamessp&sce.com
-4269
- WorldPort Communications, Inc.
- Russell Cook
- russell.cook&wrdp.com
-4270
- EDV-Beratung Blechschmidt
- Robert Hoehndorf
- robert.hoehndorf&it-systems.de
-4271
- Nevex Software Technologies Inc.
- Irving Reid
- irving&nevex.com
-4272
- Exact Solutions, Inc.
- Anand Mohanadoss
- anand&exact-solutions.com
-4273
- LEROY AUTOMATIQUE INDUSTRIELLE
- Olivier Barthel
- Olivier.Barthel&leroy-autom.com
-4274
- Pangolin UK Ltd
- Helen Pownall
- helen_pownall&pangolin.co.uk
-4275
- Duke University
- Suzanne P. Maupin
- suzanne.maupin&duke.edu
-4276
- PCS Innovations Inc.
- Robert Leclair
- robert.leclair&pcsinnov.com
-4277
- Telocity Communications, Inc.
- Creighton Chong
- cchong&telocity.net
-4278
- Yahoo!
- Derek Balling
- dballing&yahoo-inc.com
-4279
- Sirocco Systems
- Douglas Uhl
- Douglas.Uhl&siroccosystems.com
-4280
- ARtem GmbHMichael Marsanu/Catrinel Catrinescu
- mma&artem.de
- cca&artem.de
-4281
- Assumption
- Wanchat Chesdavanijkul
- khunwanchat&hotmail.com
-4282
- KenCast Inc.
- Kamen Ralev
- kralev&kencast.com
-4283
- Dual-Zentrumn GmbH
- Axel Simroth
- asimroth&dual-zentrum.de
-4284
- Norweb Internett Tjenester
- Ronny Berntzen
- ronny&norweb.no
-4285
- Ruslan CommunicationsDmitry Shibayev, Alexandr Gorbachev
- dmitry&ruslan-com.ru
- alex&ruslan-com.ru
-4286
- e-Security, Inc.
- Christopher Wilson
- chris.wilson&esecurityinc.com
-4287
- Philips Consumer Electronics
- Wim Pasman
- w.pasman&pbc.be.philips.com
-4288
- Forge Research Pty Ltd
- David Taylor
- DavidTaylor&forge.com.au
-4289
- VBrick Systems, Inc.
- Richard Phillips
- shaggy&aya.yale.edu
-4290
- Logic Innovations, Inc.
- Leon Havin
- lhavin&logici.com
-4291
- Chordiant Software Inc.
- Joe Tumminaro
- joe&chordiant.com
-4292
- Entera, Inc.
- John Bell
- johnbell&entera.com
-4293
- Bensons
- Charles
- mailman&sandbach.force9.co.uk
-4294
- Salbu (Pty) Ltd
- Mark Larsen
- mark&larsenhome.com
-4295
- Kalki Communication Technologies Pvt Ltd
- Prasanth Gopalakrishnan
- prasanth&kalkitech.com
-4296
- Cenfor S.L.
- Francisco Mora
- fmoras&interbook.net
-4297
- Finisar Corporation
- Patrick Wong
- pwong&finisar.com
-4298
- ETC (Excellence in Technology Consulting)
- Raymond Wm. Morgan
- ETC1792&aol.com
-4299
- Open Solution Providers
- Erik Meinders
- erik&osp.nl
-4300
- Inmon Corp.
- Peter Phaal
- pp&ricochet.net
-4301
- UniServe Consulting Limited
- Bernard Ingram
- contact&uniserveconsulting.com
-4302
- Cybex Computer Products Corporation
- Paul Durden
- Paul.Durden&cybex.com
-4303
- CamART
- Aparimana
- ap&camart.co.uk
-4304
- CSIRO - Div. of Animal Health
- Dave Maurer
- david.maurer&dah.csiro.au
-4305
- University of Maryland
- Bruce Crabill
- bruce&umd.edu
-4306
- JMDEL Systems
- Kevin Castner
- kcc&jmdel.com
-4307
- Office Connect, Inc.
- Kevin Castner
- kevinc&officeconnect.com
-4308
- Consejo Superior de Camaras
- Ramiro Munoz Munoz
- ramirom&camerdata.es
-4309
- IP Technologies
- Jeffrey Elkins
- jeff&iptec.net
-4310
- Unique Computer Services, Inc.
- Francis Santitoro
- fts&unique-inc.com
-4311
- Equinix
- Diarmuid Flynn
- flynn&equinix.com
-4312
- VITA Systems, Inc.
- David Wu
- davidw&vitasystems.com
-4313
- Allayer Technologies
- Yongbum Kim
- ybkim&allayer.com
-4314
- Xilinx, Inc.
- John Donovan
- john.donovan&xilinx.com
-4315
- XACCT Technologies, Ltd.
- Yuval Tal
- yuvalt&xacct.com
-4316
- Brandeis University
- Rich Graves
- hostmaster&brandeis.edu
-4317
- Javelin Technology Corp.
- Warren Golla
- war&javelintech.com
-4318
- Edixia
- Francoise Nevoux
- f.nevoux&edixia.fr
-4319
- Ennovate Networks, Inc
- Lazarus Vekiarides
- laz&ennovatenetworks.com
-4320
- Freshwater Software, Inc.
- Pete Welter
- pete&freshtech.com
-4321
- Riverbed Technologies
- David Liu
- dliu&riverbedtech.com
-4322
- Murata Machinery, Ltd.
- Yoshifumi Tanimoto
- ytanimoto&muratec.co.jp
-4323
- Quantum Bridge
- Marat Vaysman
- mvaysman&quantumbridge.com
-4324
- SAEJIN T&M Co., Ltd.
- Seo,Hee-Kyung
- icarus&sjtm.co.kr
-4325
- Aperto Networks
- Welson Lin
- wlin&apertonet.com
-4326
- Crown International
- Bruce Vander Werf
- bvanderwerf&crownintl.com
-4327
- Trading WorldCom
- Seth Longo
- longo&trading-world.com
-4328
- M.I. Systems, K.K.
- Takatoshi Ikeda
- ikeda&misystems.co.jp
-4329
- Siemens AG
- Ms. Uschi Obermeier
- uschi.obermeier&siemens.com
-4330
- PMC-Sierra Inc.
- Paul Chefurka
- Paul_Chefurka&pmc-sierra.com
-4331
- Aventail Corporation
- Mrs. Reshma Jadhav
- rjadhav&aventail.com
-4332
- Institute of Systems & information Technologies/KYUSHU
- Yuji SUGA
- suga&k-isit.or.jp
-4333
- Insight Technology, Inc.
- Masaya Ishikawa
- mishikaw&insight-tec.co.jp
-4334
- Ampersand Chantilly Communications
- Paul Lonsdale
- tdocs&idirect.com
-4335
- TechWorld Incorporated
- Paul Lonsdale
- tdocs&idirect.com
-4336
- Expertech Pty Ltd
- Caevan Sachinwalla
- caevan&expertech.com.au
-4337
- RadiSys Corp.
- Judi Linger
- Judi.Linger&RadiSys.com
-4338
- Case Corporation
- Charles Berry
- cberry&casecorp.com
-4339
- Rhode Island Economic Development Corporation
- Tarek Farid
- tfarid&riedc.com
-4340
- Bacteriophage Lambda
- Vibha Sazawal
- vibha&cs.washington.edu
-4341
- Spider Internet Services
- Rob Ladouceur
- rob&tec.puv.fi
-4342
- USHealth Real Estate
- Gary Jabara
- gjabara&ushealth.org
-4343
- Boundless Technologies
- Mark Dennison
- mark.dennison&boundless.com
-4344
- Post-Industrial Training Institute
- Bill Reed
- WDReed&compuserve.com
-4345
- Thomas & Betts
- Bob Shaeffer
- bob_shaeffer&tnb.com
-4346
- Phoenix Contact GmbH & Co.
- Frank Schewe
- fschewe&phoenixcontact.com
-4347
- MessageWise Inc.
- David Jones
- djones&messagewise.com
-4348
- Domino Computers Nigeria Ltd
- Woye Adeyemi
- domino&micro.com.ng
-4349
- LXCO Technologies AG
- Juergen Frank
- jfrank&lxco.com
-4350
- Maxpert AG
- Wolfgang Erb
- Wolfgang.Erb&maxpert.de
-4351
- Network Systems Group
- Danilin Michael
- info&nsg-ru.com
-4352
- Urgle
- Derek Olsen
- dolsen&gstis.net
-4353
- Builders Network Ltd
- Colin
- look&netlet.netkonect.co.uk
-4354
- NetDragon Ltd
- Robert Waters
- icann&rwater.globalnet.co.uk
-4355
- RapidStream, Inc.
- James Lin
- james_lin&rapidstream.com
-4356
- Inform GmbH & Co. KG
- Harald Kipp
- hkipp&inform-beg.de
-4357
- Coteng
- Hans Verrijcken
- Hans.Verrijcken&Coteng.com
-4358
- Ziatech Corporation
- Jason Varley
- jason_varley&ziatech.com
-4359
- TelGen Corporation
- James Trithart
- trithart&telgen.com
-4360
- Tumbleweed Communications
- Jesus Ortiz
- Jesus.Ortiz&tumbleweed.com
-4361
- Amgen, Inc.
- Yalda Mirzai
- ymirzai&amgen.com
-4362
- Nylorac Software, Inc.
- Albert Fitzpatrick
- ajf&oid.nylorac.com
-4363
- University of Bristol Julius
- Clayton
- Julius.Clayton&bristol.ac.uk
-4364
- BV Solutions Group
- Ram Rathan/Terry Nance
- rathanr&bvsg.com
-4365
- Myowngig
- F. Taylor
- comst&earthlink.net
-4366
- Locus Corp.
- Jaeyoung Heo
- jyheo&locus.co.kr
-4367
- Electronic Laboratory Services CC
- Tony Kempe
- kempet&elab.co.za
-4368
- H.A.N.D. GmbH
- Klaus Kaltwasser
- kaltwasser&hand-gmbh.de
-4369
- Brocade Communications Systems, Inc. (formerly 'McDATA,Inc')
- Scott Kipp
- skipp&brocade.com
-4370
- Tokyo DisneySea
- Joseph C. Hu
- joseph.hu&disney.com
-4371
- Digital United Inc.
- Ching-Wei Lin
- cwlin&mozart.seed.net.tw
-4372
- Softlink s.r.o.
- Peter Volny
- Peter.Volny&softlink.cz
-4373
- Rivere Corporation
- Herve Rivere
- rivere&prodigy.net
-4374
- Motive Communications, Inc.
- Jerry Frain
- jerry&motive.com
-4375
- DT Research, Inc
- Jason Lin
- jason.lin&usa.net
-4376
- Nettech Systems, Inc.
- Tatiana Landa
- tanya&nettechrf.com
-4377
- X-Point Communications
- David Hoerl
- dfh&home.com
-4378
-
-
- ---none---
-4379
- Alien Internet Services
- Simon Butcher
- simonb&alien.net.au
-4380
- Elipse Software
- Alexandre Balestrin Correa
- abc&elipse.com.br
-4381
- Astracon Inc.
- Bryan Benke
- bryan.benke&astracon.com
-4382
- Aladdin Knowledge Systems Ltd.
- Shimon Lichter
- shimonl&aks.com
-4383
- Glassey.com
- Todd Glassey
- todd.glassey&Glassey.COM
-4384
- Meridianus
- Todd Glassey
- todd.glassey&meridianus.com
-4385
- Stime.org WG
- Michael McNeil
- Michael.McNeil&STime.ORG
-4386
- TDC A/S
- Kristen Nielsen
- krn&tdc.dk
-4387
- Ubique Ltd.
- Yaron Yogev
- yaron&ubique.com
-4388
- Alcatel Altech Telecoms
- Tinus Viljoen
- tviljoen&alcatel.altech.co.za
-4389
- Sys-Dis
- Sebastien David / Edmond Zemanteleian
- sdavid&sysdis.fr / ezemantelian&sysdis.fr
-4390
- Kemper Insurance
- Cindy Weng
- cweng&kemperinsurance.com
-4391
- Texas A&M University
- Networking & Information Security
- tech&net.tamu.edu
-4392
- Northbrook Services, Inc.
- S. Lane Pierce
- lpierce&nbservices.com
-4393
- Pentacom Ltd.
- Eldad Bar-Eli
- eldadb&penta-com.com
-4394
- SoftFx
- Maikel Maasakkers
- M.A.M.Maasakkers&stud.tue.nl
-4395
- Unified Technologies Sverige HB
- Daniel Sorlov
- daniel&unified-technologies.com
-4396
- The Open Group
- Shane McCarron
- s.mccarron&opengroup.org
-4397
- OPT Technologies Limited
- Steve Brandom
- steve.brandom&ctgholdings.co.uk
-4398
- B&L Associates, Inc.
- Thomas Julian
- tjulian&bandl.com
-4399
- Johnson Controls, Inc.
- Clark Bobert
- Clark.L.Bobert&jci.com
-4400
- Cypress Corporation
- Paul Vagnozzi
- pvagnozzi&cypressdelivers.com
-4401
- MoonVine
- Christine Tomlinson
- chris&moonvine.org
-4402
- NetPredict, Inc
- Jonathan Wilcox
- Jonathan.Wilcox&netpredict.com
-4403
- Visual Brain Ltd S.a.r.l.
- George M. Doujaji
- vbrain&vbrain.com.lb
-4404
- Tekelec
- Francois Cetre
- francois.cetre&tekelec.com
-4405
- Ansid Inc.
- Daniel Niederhauser
- daniel.niederhauser&ansid.ch
-4406
- Toyo Information Systems Co., Ltd.
- Yasushi Okamura
- yokamura&kingston.tis.co.jp
-4407
- Dracom Ltd.
- Shen Zhenyu
- Dracom&Public1.sta.net.cn
-4408
- EDSL
- Alex Oberlander
- alexo&edsl.com
-4409
- Campus Pipeline, Inc.
- Jan Nielsen
- jnielsen&campuspipeline.com
-4410
- Earth Star Group
- Gary Ellis
- gerardo5&flash.net
-4411
- Swinburne.com
- Robert Briede
- 104619&wilbur.ld.swin.edu.au
-4412
- Wrox Press
- John Franklin
- johnf&wrox.com
-4413
- Broadcom Corporation
- Frankie Fan
- ffan&broadcom.com
-4414
- Scandinavian Softline Technology Oy
- Kari Kailamaki
- kari.kailamaki&softline.fi
-4415
- Florida Department of Law Enforcement
- James L. Geuin
- jimgeuin&fdle.state.fl.us
-4416
- Starfire Experts Ltd
- Michael Bennett
- mjb&world.std.com
-4417
- Alidian Networks, Inc.
- Derek Pitcher
- dpitcher&terabitnetworks.com
-4418
- MegaSys Computer Technologies
- Doug Woronuk
- doug.woronuk&megasys.com
-4419
- Sony Online Entertainment
- Mark Kortekaas
- mis&station.sony.com
-4420
- Westica Limited
- Eugene Crozier
- eugenec&westica.co.uk
-4421
- Santera Systems Inc.
- Cathy Fulton
- cathy.fulton&santera.com
-4422
- GTE I.T.
- Kevin Mathis
- kevin.mathis&telops.gte.com
-4423
- Garnet Systems Co., Ltd.
- Dong Hee Lee
- leedong&garnets.com
-4424
- Rapid Logic
- Kedron Wolcott
- kedron&rapidlogic.com
-4425
- Meta Gymnastics, Inc.
- De Kang Deng
- TomDeng&metagym.com
-4426
- Fujitsu Australia Software Technology Pty Ltd
- Robert Dowe
- bob&fast.fujitsu.com.au
-4427
- Pironet Intranet AG
- Robert Stupp
- rstupp&piro.net
-4428
- Supercomputing Systems AG
- Martin Frey
- frey&scs.ch
-4429
- MegaChips Corporation
- Shigenori Motooka
- motooka&megachips.co.jp
-4430
- Silicon Automation Systems (India) Ltd
- Santosh Xavier
- santosh&sasi.com
-4431
- Netia
- Eric Cocquerez
- e.cocquerez&netia.fr
-4432
- Apani Networks
- Neal Taylor
- ianareg&apani.com
-4433
- Strategic Financial Planning
- Sam DeLuca
- sam_deluca&hotmail.com
-4434
- Bluestone Software Inc.
- Susan Lindeboom
- susan&bluestone.com
-4435
- Suedtiroler Informatik AG
- Klaus Vonmetz
- sysadmin&provinz.bz.it
-4436
- Mission Critical
- Pierre De Boeck
- pde&miscrit.be
-4437
- Canadian Imperial Bank of Commerce
- Jack Dickie
- Jack.Dickie&CIBC.com
-4438
- Göteborg Energi AB
- Peter Karlsson
- peter.karlsson&goteborgenergi.se
-4439
- EnZane Enterprise
- Terry Doherty
- terren&desupernet.net
-4440
- Purdue University
- Rob Stanfield
- iamo&purdue.edu
-4441
- GE Capital Fleet Services
- Thomas Cooper
- thomas.cooper&fleet.gecapital.com
-4442
- KARA
- Wendy
- wendy&aol.com
-4443
- Ned Boddie & Assoc.
- Ned Boddie
- nb&myhq.org
-4444
- SAINCO
- Javier Amores
- fjag&sainco.abengoa.com
-4445
- INTER s.a.r.l.
- Tufic Najjar
- tufic&inter.net.lb
-4446
- Prairie Development, Inc.
- Jeffrey Muller
- jeffm&prairiedev.com
-4447
- Rochester Institute of Technology
- Sharon Getschmann
- spg&it.rit.edu
-4448
- E-Lock Technologies, Inc.
- Ray Langford
- ray&elock.com
-4449
- SSH Communications Security, Inc.
- Rodney Thayer
- rodney&ipsec.com
-4450
- iC-Consult
- Roland Fichtl
- Fichtl&ic-consult.de
-4451
- MORION
- Nikolai Korelin
- support&pi.ccl.ru
-4452
- Telenor 4tel
- Jan Ivar Nymo
- jan-ivar.nymo&telenor.com
-4453
- Infonet Services Corp.
- Clark Rudder
- Clark_Rudder&infonet.com
-4454
- Gottfried Web and Computer Consulting
- Hal Gottfried
- hal&gottfried.com
-4455
- I-Bus Corporation
- Frank MacLachian
- frankm&ibus.com
-4456
- AWI (formerly 'Qualimetrics')
- Neal Dillman
- ndillman&allweatherinc.com
-4457
- O ROCK ActiveWear (formerly 'Alpha & Omega Storehouse, LLC')
- B. Maddigan
- bmaddigan&yahoo.com
-4458
- Radwin Ltd.
- Shumel Vagner
- shmuel_v&rad.co.il
-4459
- Industree B.V.
- Jan Vet
- Jan.Vet&industree.nl
-4460
- FirstWorld Communications
- Dean Franklin
- dean.franklin&firstworld.com
-4461
- OpenNetwork Technologies
- Randy Sturgill
- rsturgill&pobox.com
-4462
- SVM Microwaves, s.r.o.
- Jiri Smitka
- smitka&icom.cz
-4463
- TaoNet
- Maccucari Carlo
- c.mammucari&taonet.it
-4464
- MPB Communications Inc.
- Larry Paul
- larry.paul&mpb-technologies.ca
-4465
- ViewCast.com
- Kevin Conley
- KevinC&dfw.viewcast.com
-4466
- Harmonic Video Network (formerly 'Tadiran Scopus')
- Merav Ben-Elia
- merav.ben-elia&harmonicinc.com
-4467
- FibroLan
- Israel Stein
- yossia&magicom.co.il
-4468
- Telkoor-QPS
- Beny Steinfeld
- yossia&magicom.co.il
-4469
- Diversinet Corp.
- Stephen Klump
- oidauth&dvnet.com
-4470
- TeleDream Inc.
- B.C. Kim
- bckim&teledream.co.kr
-4471
- Network Security Wizards
- Ron Gula
- rgula&securitywizards.com
-4472
- MONTAGE IT Services Inc.
- Peter Lui-Hing
- peter.lui-hing&montage.ca
-4473
- Opto 22
- Kevin Kuhns
- kkuhns&opto22.com
-4474
- PaxComm
- Kim Hwa Joon
- joon21&paxcomm.com
-4475
- Rainbow Software Solutions, Inc.
- Arlen Hall
- arlen&rainbowsoftware.com
-4476
- Lightrealm
- Erik Anderson
- eanderson&lightrealm.com
-4477
- Infocom Systems Services
- Rajesh Nandan
- rajesh&infocomsystems.com
-4478
- Alacritech
- Richard Blackborow
- richard&alacritech.com
-4479
- SpectraPoint Wireless LLC
- Markus Weber
- mweber&BoschTelecomInc.com
-4480
- FastForward Networks, Inc.
- Bill DeStein
- bill&ffnet.com
-4481
- CIA Europe
- Jacques Pernet
- jacques.pernet&skynet.be
-4482
- RWE AG
- Mr. Dietrich
- timo.dietrich&RWE.DE
-4483
- IBI Co., Ltd.
- Lee Pan-Jung
- ibi3&ibi.net
-4484
- Pacific Softworks, Inc.
- Leonard Gomelsky
- leonard&pacificsw.com
-4485
- Dataport Communications
- Paul Ramos
- paul&applehill.net
-4486
- Verio Web Hosting
- Jennifer Johnson
- jenny&iserver.com
-4487
- Johnson & Johnson NCS
- Bob Rudis
- brudis&ncsus.jnj.com
-4488
- MediaHouse Software Inc
- Peter Cooper
- pcooper&mediahouse.com
-4489
- Sierra Networks, Inc.
- Zeta Division
- Lisa Moyer lisam&zeta-sni.com
-4490
- POLYGON Consultants in Informatics Ltd.
- Zoltan Kolb
- kolb&polygon.hu
-4491
- Cable Television Laboratories, Inc.
- Jean-Francois Mule
- jf.mule&cablelabs.com
-4492
- SolutionSoft Systems, Inc.
- Eric Bruno
- ebruno&solution-soft.com
-4493
- UniRel Sistemi srl Mauro
- Fantechi
- mauro.fantechi&unirelsistemi.it
-4494
- Novartis AG
- Eric Luijer
- eric.luijer&novartis.com
-4495
- Taima Corp.
- Owen Peterson
- opeterso&taima.net
-4496
- Siemens Canada Ltd.
- Roland Quandieu
- roland.quandieu&innovation.siemens.ca
-4497
- Avail Networks, Inc.
- Don Zick
- dzick&nei.com
-4498
- NetQoS, Inc.
- Cathy Fulton
- fulton&netqos.com
-4499
- Safefunds.com
- Jere Horwitz
- jvh&jvhinc.com
-4500
- Jordan Tech
- Rashid Ahmed
- RASHID&JORDAN.COM.CO
-4501
- EforNet Corporation
- David Zucker
- diz&earthlink.net
-4502
- playbeing.org
- Bert Driehuis
- driehuis&playbeing.org
-4503
- Corporate Information Technologies
- Lawrence Cruciana
- lawrence&corp-infotech.com
-4504
- Seamless Kludge Internetworking Labs Ltd
- Craig Haney
- craig&seamless.kludge.net
-4505
- Caltex Australia Petroleum Pty Ltd
- Rodd Jefferson
- rjeffers&caltex.com.au
-4506
- Channels Measurement Services
- Dawie de Villiers
- dawie&channels.co.za
-4507
- The Miami Herald
- Ricardo de la Fuente
- lafuente&herald.com
-4508
- Geeks Like Us
- Shane O'Donnell
- shaneo&cyberdude.com
-4509
- Nakayo Telecommunications, Inc.
- Seiji Takano
- takano&itl.nyc.co.jp
-4510
- Dracom
- Wang Xiang
- iamwangxiang&netease.com
-4511
- Concord-Eracom Computer Security GmbH
- Matthias Gaertner
- mgaertner&concord-eracom.de
-4512
- Sofreavia
- Patrick Eidel
- eidelp&sofreavia.fr
-4513
- Terawave Communications, Inc.
- Anatoly Kaplan
- akaplan&terawave.com
-4514
- Bank America
- James Moskalik
- jimmo&crt.com
-4515
- PacketLight Networks Ltd.
- Omri Viner
- Omri_Viner&packetlight.com
-4516
- SIAS
- Antonio Storino
- as&sias.it
-4517
- Helius, Inc.
- Jack Thomasson
- jkt&Helius.COM
-4518
- KMZ Consulting Group, Inc.
- Kerry Carlin
- kcarlin&shrike.depaul.edu
-4519
- VERO Electronics Ltd.
- Barry Maidment
- bmaidment&apw-enclosures.com
-4520
- Joohong Information and Communications
- Seong Chan Jeon
- scjeon&joohong.co.kr
-4521
- Global ADSI Soltuions, Inc.
- Gary Steinmetz
- gary.steinmetz&gladsis.com
-4522
- Ontario Power Generation
- Ken Strauss
- ken.r.strauss&ontariopowergeneration.com
-4523
- eXaLink Ltd.
- Yoram Mizrachi
- yoram&exalink.com
-4524
- StorageSoft, Inc.
- Doug Anderson
- douga&storagesoft.com
-4525
- Micron Technology, Inc.
- Robert Clayton
- rclayton&micron.com
-4526
- Netgear
- Michael Shields
- mshields&netgearinc.com
-4527
- zeitgeist y2k01 Ltd.
- Mark Weitzel
- oidiana&zy2k01.com
-4528
- 8x8 Incorporated
- Chanan Shamir
- chanans&8x8.com
-4529
- Internet Service Dept, WorldTelecom Plc
- Kenny Du
- kenny.du&pmail.net
-4530
- Tunbridge Wells Equitable Friendly Society Ltd
- Nick Wickens
- nick_wickens&twefs.co.uk
-4531
- ON Technology Corporation Robert Smokey Montgomery
- smontgom&on.com
- ---none---
-4532
- GVCTW Corporation
- Susan Wang
- suwang&gvc.com
-4533
- Atcomm Corporation
- Barry Dame
- bdame&atcomm.com
-4534
- onebox.com
- Ross Dargahi
- rossd&onebox.com
-4535
- Javelinx Corporation
- Warren Golla
- war&javelintech.com
-4536
- Digitech
- Tom Quinlan
- tquinlan&digitechinc.com
-4537
- Planex Communications Inc.
- Kyoko Ito
- kito&plane.co.jp
-4538
- Easybuy
- Carleton Glover
- slim&gateway.net
-4539
- RemarQ Communities, Inc.
- Robert Sparks
- bsparks&remarq.com
-4540
- Intelect Network Technologies Inc.
- Weijun Lee
- wlee&intelectinc.com
-4541
- OutReach Technologies, Inc.
- Rob Trainer
- rtrainer&outreachtech.com
-4542
- Alerting Specifications Forum
- Steven Williams
- steven.d.williams&intel.com
-4543
- Digitellum, Inc.
- Vanessa Irmarosa
- digitellum&uswest.net
-4544
- Gjensidige Forsikring
- Roman Jost
- roman.jost&gjensidige.no
-4545
- Atlantis Software Inc
- Rick Gordon
- rick&atlantissoftware.com
-4546
- AST Engineering Services, Inc.
- George Krasovec
- gkrasovec&astes.com
-4547
- ATTO Technology, Inc.
- David Cuddihy
- dcuddihy&attotech.com
-4548
- QuickStart Consulting Inc.
- Michael Walsh
- mww&warwick.net
-4549
- WebGear, Inc.
- Chris Stacey
- chris.stacey&webgear.com
-4550
- The Japan Electrical Manufacturers' Association
- Hiroshi Inoue
- hiroshi_inoue&jema-net.or.jp
-4551
- Empirix, Inc
- Jim Washburn
- jwashburn&empirix.com
-4552
- Wayport, Inc.
- Jim Thompson
- jim&wayport.net
-4553
- NextCom K.K.
- Masaki Takano
- takano&nextcom.co.jp
-4554
- Trisol Technologies
- Russ Campbell
- apep&host-209-215-54-15.pbi.bellsouth.net
-4555
- Socomec Sicon Ups
- Pancheri Ivo
- csu&sicon-ups.com
-4556
- Scali
- Anders Liverud
- al&scali.no
-4557
- Qwest
- Walt Haberland
- walt.haberland&qwest.com
-4558
- Euromove s.r.o.
- Stanislav Parnicky
- parnicky&euromove.sk
-4559
- NVision
- Stuart Antcliff
- santcliff&nvision.co.uk
-4560
- Shebang Networking
- A. Lueckerath
- al&shebang.org
-4561
- OpenDOF Project, Inc. (formerly 'Panasonic Electric Works Laboratory of America, Inc./SLC Lab')
- Bryant Eastham
- protocol&opendof.org
-4562
- Centermark Engineering LC
- Tim Bowman
- tim&cmark.com
-4563
- Syllogi, Inc.
- Harold E. Austin, Jr.
- haustin&diversenet.com
-4564
- Diverse Networks, Inc.
- Harold E. Austin,
- Jr.haustin&diversenet.com
-4566
- Cedelbank
- Paul Rees
- prees&cedelglobalservices.com
-4567
- Cedel Global Services
- Paul Rees
- prees&cedelglobalservices.com
-4568
- Cedel International
- Paul Rees
- prees&cedelglobalservices.com
-4569
- Ensigma Ltd
- Sue Brace
- S.Brace&ensigma.com
-4570
- NetEnterprise, Inc.
- J. Toth
- jtoth&netenterprise.com
-4571
- JMCS, Inc.
- J. Toth
- jtoth&jmcs.com
-4572
- Daedalus Corporation
- J. Toth
- jtoth&dcorp.com
-4573
- SecureSoft Inc.
- Jaeyeong Lee
- jylee&securesoft.co.kr
-4574
- Compu-Alvarado
- Juan Alvarado
- juan_alvarado&hotmail.com
-4575
- MANi Network Co., Ltd.
- Inho Lee
- ihlee&maninet.co.kr
-4576
- Corporacion ZIGOR S.A.
- Jeronimo Quesada
- software&zigor.com
-4577
- Internet Research
- Daisuke Kato
- webmaster&advan.net
-4578
- SSE Telecom
- David Peavey
- david.peavey&sset.com
-4579
- Vest Internett
- Ragnar Kjorstad
- post&vestdata.no
-4580
- Diversified Business Group
- Peter Lindsay
- peter_lindsay&progressive.com
-4581
- Seeburger GmbH
- Maik Thraenert
- m.thraenert&seeburger.de
-4582
- World Telecom plc
- Kenny Du
- kenny.du&pmail.net
-4583
- NetStar
- Daniel Harrison
- dharrison&netstarnetworks.com
-4584
- Headhunters London Limited
- Roy Huxley
- ROY.HUXLEY&BTINTERNET.COM
-4585
- Eel Valley Internet
- Gregory Baird
- gbaird&eelvalley.net
-4586
- Enterprise Consulting Group
- Mark Griffith
- mdg&ec-group.com
-4587
- Diamond Multimedia Systems, Inc.
- Glenn Smith
- glenns&diamondmm.com
-4588
- Critical Path, Inc.
- Tristan Horn
- tristan+snmp&cp.net
-4589
- DATAP Division of TCEnet Inc.
- Quentin Shaw
- qshaw&datap.ca
-4590
- Zoom Telephonics, Inc.
- Hume Vance
- humev&zoomtel.com
-4591
- SpaceCom Systems, Inc.
- Wayne Van Sickle
- wayne&spacecom.com
-4592
- Frontier Communications
- David Weiss
- daw&frontierdev.com
-4593
- SAET I.S. S.p.A.
- Flavio Molinelli
- fmoli&show.it
-4594
- Saritel S.p.A.
- Roberto Paris
- paris&saritel.it
-4595
- IS Production
- Bernard Dugas
- bernard.dugas&is-production.com
-4596
- Videoframe Systems
- Graeme Little
- glittle&videoframesystems.com
-4597
- Fiberview Technologies Inc.
- Robert Y.H. Li
- robertl&fiberview.com
-4598
- JCampus
- James Wallace
- jwallace&jcampus.org
-4599
- MIMSOFT
- Miroslav Jergus
- mimsoft&pobox.sk
-4601
- Cybertime Informatik GmbH
- Rico Pajarola
- pajarola&cybertime.ch
-4602
- BEA Systems
- Tom Eliason
- tom.eliason&beasys.com
-4603
- TERS Ltd.
- Eugene Mikhailov
- jhn&aha.ru
-4604
- Beca Carter Hollings & Ferner Ltd Mike Beamish
- mbeamish&beca.co.nz
- ---none---
-4605
- Toronto School of Business
- Tran Tan
- tsbk&golden.net
-4606
- Information Security Agency Ltd.
- Alexey Kuksenko
- akuksenko&kit.kz
-4607
- Software Shelf Technologies
- Fernando Chapa
- fernando&chapa.com
-4608
- Harco Technology Ltd
- Stuart Harvey
- stuart.harvey&harco.co.uk
-4609
- Seamless Technologies, Inc.
- Robert Kane
- rkane&seamlessti.com
-4610
- Strategic Technologies
- David Hustace
- david.hustace&stratech.com
-4611
- Digital Wireless Corporation
- Greg Ratzel
- gratzel&digiwrls.com
-4612
- Baker Street Technologies Inc.
- David Neto
- neto&bakerstreettech.com
-4613
- Sphere Communications Inc
- Dave Niesman
- dniesman&spherecom.com
-4614
- Luminous Networks, Inc
- Peter Jones
- pjones&luminous.com
-4615
- I-O Data Device, Inc.
- Yoshinari Araki
- yaraki&iodata.co.jp
-4616
- ComputerJobs.com
- Patrick McAndrew
- patrick.mcandrew&computerjobs.com
-4617
- MARCOMPUTER
- Roberto Marconi
- j.fiorani&wnt.it
-4618
- ARMILLAIRE TECHNOLOGIES
- Michael Wolf
- mwolf&armillaire.com
-4619
- e!reminder.com
- Andrew Goldberg
- cbarnett&nh.ultranet.com
-4620
- Progressive Systems, Inc.
- Ge' Weijers
- ge&Progressive-Systems.Com
-4621
- NSTOP Technologies Inc.
- Claude Arbour
- claude.arbour&nstop-tech.com
-4622
- Legian Consultancy & Network Services
- Rene Stoutjesdijk
- r.stoutjesdijk&legian.nl
-4623
- Lifix Systems Oy
- Bjorn Andersson
- bjorn&lifix.fi
-4624
- Training for Tomorrow
- James Smith
- jimmydarts&aol.com
-4625
- Mazone Systems
- Michael Anderson
- mikea&mazone.com
-4626
- WestLB
- Jonas Koch
- jonas.koch&westlb.de
-4627
- SAET IS s.r.l.
- Flavio Molinelli
- fmoli&show.it
-4628
- Xtra On-Line
- Matt Reynolds
- mreynolds&xol.com
-4629
- Veraz Networks Inc. (formerly 'ipVerse')
- Wing Lee
- wlee&veraznet.com
-4630
- FileTek, Inc.
- Eugene Furtman
- elf&filetek.com
-4631
- homeloandotcom
- Dan Draper
- dandraper&msn.com
-4632
- FreeMarkets
- Bob Monroe
- bmonroe&freemarkets.com
-4633
- CQOS, Inc.
- Andrew Corlett
- bda001&concentric.net
-4634
- VCON Telecommunications Ltd.
- Tzvi Kasten
- zvik&vcon.co.il
-4635
- The VE Group
- Atul Elhence
- atul&ve-group.com
-4636
- Intrust Software
- Fernando Chapa
- fernando&chapa.com
-4637
- RGE, Inc.
- Rex Walker
- snmp-admin&rge-inc.com
-4638
- SGI Soluciones Globales Internet
- Antonio Cabanas Adame
- acabanas&esegi.es
-4639
- TETRAGONE S.A.
- Gilles Parmantier
- gparmant&tetragone.fr
-4640
- Eckerd College
- Edmund Gallizzi
- gallizzi&eckerd.edu
-4641
- Tellabs Inc (ADP)
- Annie Dang
- annie.dang&tellabs.com
-4642
- Bel. Studio H. Sager
- Hermann Sager
- bel&daddeldu.de
-4643
- nworks
- Greg Stephens
- greg&nworks.net
-4644
- Wincom Technology Inc.
- Kyong-min Shin
- wincom2&wintelecom.com
-4645
- Data Ductus AB
- Stefan Wallin
- stefan.wallin&dataductus.se
-4646
- NetConvergence, Inc.
- Andrew Chew
- mollusc&mindspring.com
-4647
- Internet Chess Club
- Doug Luce
- doug&chessclub.com
-4648
- The Grateful Net
- Bryan Levin
- grateful&grateful.net
-4649
- CPlane, Inc.
- Diego Vinas
- diego&cplane.com
-4650
- Marc August International
- Marc August
- marc&marcaugust.com
-4651
- Aztec Radiomedia
- Gilles Misslin
- gilles&aztecland.com
-4652
- Technical University of Ilmenau
- Herr Ritschel
- thomas.springer&rz.tu-ilmenau.de
-4653
- Precise Software Technologies Inc.
- Sebastian Silgardo
- sebast&psti.com
-4654
- OCLC Online Computer Library Center, Inc.
- Lora Chappelear-Pearson
- chappele&oclc.org
-4655
- TeleCheck International Inc.
- Luis Ossorio
- Luis.Ossorio&TeleCheck.com
-4656
- Banco de Galicia y Buenos Aires
- Carlos Eugenio Pace
- eugenio.pace&bancogalicia.com.ar
-4657
- Goodall Secure Services
- Douglas W. Goodall
- doug&goodall.com
-4658
- Entertainment International, Inc.
- Peter Bjorklund
- peter&t-con.com
-4659
- Teco Image Systems Co., Ltd.
- Marconi Huang
- marconi&tecoimage.com.tw
-4660
- RCMS Ltd
- Andrew Liles
- andrew.liles&rcms.com
-4661
- Spazio R&D
- Lorenzo Buonomo
- spazio.ds&primeur.com
-4662
- Frank Matthiess
- Frank Matthiess
- frank&matthiess.de
-4663
- decor metall GmbH + CO. KG
- Frank Matthiess
- Frank.Matthiess&decor-metall.de
-4664
- Ark Research Corporation
- James Bergsten
- bergsten&arkres.com
-4665
- Performance Design Limited
- Michael Browning
- mbrowning&pdltd.com
-4666
- Itchigo Communications GmbH
- Bodo Rueskamp
- br&itchigo.com
-4667
- Telperion Network Systems
- Hayoung OH
- dongle99&yahoo.com
-4668
- Turning Point Technologies
- Kevin Farrington
- kfarrington&tptc.com
-4669
- Muro Enterprises, Inc.
- Christopher Muro
- christopher&muro.org
-4670
- National Computational Science Alliance
- Randy Butler
- rbutler&ncsa.uiuc.edu
-4671
- Advanced Telecom Systems, Inc.
- Kenneth Lai
- kdl&dynres.com
-4672
- US Healthcare PKI
- Kepa Zubeldia
- Kepa.Zubeldia&envoy.com
-4673
- Wave Research N.V.
- Jan Van Riel
- jvanriel&waveresearch.com
-4674
- Crunch Technologies BV
- Ton Plooy
- tonp&crunchtech.com
-4675
- WK Audiosystems BV
- N.A. Coesel
- nctnico&cistron.nl
-4676
- Healthaxis.com Inc.
- Larry Weber
- lweber&healthaxis.com
-4677
- Concert Technologies
- Ricardo Yokoyama
- ricardo&concertech.com
-4678
- Information Developers Unlimited
- Lisa Andrews
- andrews&ecrc.org
-4679
- OPICOM
- Myungeon Kim
- matty&203.243.253.142
-4680
- Telecommunications Systems Group - UCL
- Jonathan Robinson
- pants&ee.ucl.ac.uk
-4681
- dvg Hannover Datenverarbeitungsgesellschaft mbH
- Markus Moeller
- markus.moeller&dvg.de
-4682
- Linux-HA Project
- Alan Robertson
- alanr&unix.sh
-4683
- Trading Technologies International, Inc.
- Network Operations
- networkops&tradingtechnologies.com
-4684
- Ambit Microsystems Corporation
- Willy Chang
- willy.chang&ambit.com.tw
-4685
- TONTRU Information Industry Group Co. Ltd.
- Mao Yan
- newtru&public1.ptt.js.cn
-4686
- VegaStream
- Mike Cohen
- mikec&vegastream.com
-4687
- Digitro Tecnologia Ltda
- Milton Joao de Espindula
- snmp-contact&digitro.com.br
-4688
- Luimes Computer Consulting
- Mark Luimes
- mark&luimes.ca
-4689
- Urbis.Net Ltd
- Alex Tronin
- at&urbis.net
-4690
- MBC Europe, B.V.
- Frits Obers
- mbce&mbc.nl
-4691
- VAW Aluminum Technologie GmbH
- Markus Rogawski
- rogawski.markus&vaw.de
-4692
- Digital Technics, LP
- Dr. Mikailov
- mikailov&digtech.com
-4693
- Maxtor Corp.,
- Marcia Tsuchiya
- marcia_tsuchiya&maxtor.com
-4694
- Willamette University
- Casey Feskens
- cfeskens&willamette.edu
-4695
- Extricity Software
- Ted Bashor
- bashor&extricity.com
-4696
- WEBB Studios
- Densel Webb III
- wollf&netzero.com
-4697
- ATLANTEL
- Jerome Girard
- j.girard&atlantel.fr
-4698
- Connectivity Software Systems
- Don Reeve
- dreeve&csusa.com
-4699
- Burning Door
- Eric Lunt
- eric&burningdoor.com
-4700
- InternetPirate.com
- Jeffrey Winter
- jgwinter&earthlink.net
-4701
- Syskoplan GmbH
- Heiko Giesebrecht
- heiko.giesebrecht&syskoplan.de
-4702
- SpeechWorks International, Inc.
- Mark Eastley
- mark.eastley&speechworks.com
-4703
- Sanford C. Bernstein & Co. Inc.
- John Talbot
- talbotjr&bernstein.com
-4704
- Visual Media Technologies, Inc.
- Jason Prondak
- jprondak&visualmedia.com
-4705
- Gabriel Communications
- Jonathan Gettys
- jgettys&gabrielcom.net
-4706
- Zero7.com
- Eric Lozes
- eric&Zero7.com
-4707
- Aldea Internet, S.A. de C.V. Javier
- Rodriguez
- arturo&aldea.com.mx
-4708
- iMedium Inc
- John Case
- john.case&imedium.com
-4709
- Oxydian S.A.
- Boisard Sebastien
- boisard&oxydian.com
-4710
- Safelayer S.A.
- Jordi Buch
- jbt&safelayer.com
-4711
- Mail.com
- Brendan Flood
- bflood&staff.mail.com
-4712
- Entropic Ltd
- Anthony Bearon
- Anthony.Bearon&entropic.co.uk
-4713
- WhereNet, Inc.
- Alan Freier
- afreier&wherenet.com
-4714
- Centerpoint Broadband Technologies
- Mario Gallotta
- mgallotta&cptbt.com
-4715
- Advice Netbusiness Ltda
- Nelson Pedrozo
- nelson&domain.com.br
-4716
- Arbortext
- John Dreystadt
- jdreysta&arbortext.com
-4717
- Media Management Consulting
- Grojean
- grojean&aol.com
-4718
- MDL Information Systems
- Jeff Younker
- jeff&mdli.com
-4719
- Montagnaleader s.c.a.r.l.
- Flavio Righini
- flavio&ten.it
-4720
- Lunatech Research
- Bart Schuller
- schuller+iana&lunatech.com
-4721
- Cositel Inc.
- Denis Martel
- dmartel&cositel.com
-4722
- Jacksonville University
- Dennis Dormady
- dwd&ju.edu
-4723
- Mockingbird Networks
- Martin Walsh
- mwalsh&mbird.com
-4724
- TechnoSoft
- Sinisa Sremac
- sremac&eunet.yu
-4725
- Bestnet Internet Inc
- Eric Weigel
- ericw&bestnet.org
-4726
- Capital Computer Services, Inc.
- Jim Butler
- jim-butler&msn.com
-4727
- Langtang JV Company
- Dr. Rayamajhi I
- iswar&ishonch.uz
-4728
- NSI Technology
- Shin Hosubv
- oreo&nsit.co.kr
-4729
- Crannog Software
- Eamonn McGonigle
- eamonn&crannog-software.com
-4730
- epita
- Sadirac
- rn&epita.fr
-4731
- Socketware, Inc.
- Steven Sparks
- sparks&socketware.com
-4732
- CVF
- Yann Le Doare
- yledoare&cvf.fr
-4733
- Middlesex University
- David Webb
- d.webb&mdx.ac.uk
-4734
- Zarak Systems Corporation
- Ken Hesky
- khesky&zarak.com
-4735
- SOMA Networks, Inc.
- Chris Davis
- cdavis&somanetworks.com
-4736
- Appliant, Inc.
- Brian Marsh
- marsh&appliant.com
-4737
- Crosswalk.com, Inc.
- Steven Sedlmeyer
- ssedlmeyer&crosswalk.com
-4738
- Shanghai E-way Computer Network Technology Ltd.
- Sun
- e_wayer&yahoo.com
-4739
- OLDE Discount Corporation
- Albert Tobey
- atobey&olde.com
-4740
- VoteHere
- Jim Adler
- jim&votehere.net
-4741
- Amber Networks, Inc
- Jack Yang
- jyang&ambernetworks.com
-4742
- Operational Technologies Services, Inc.
- Michael Gariazzo
- mgariazz&ots-inc.com
-4743
- NextNet
- Vladimir Kelman
- kelmanv&nextnetworks.com
-4744
- Internalnetwork
- Jim O'Brien
- jamesobrien&mindspring.com
-4745
- DigiSAFE Pte Ltd
- Ee Thiam Chai
- eetc&cet.st.com.sg
-4746
- PT Inovacao
- Jorge Concalves
- jgoncal&cet.pt
-4747
- Service Technique de la Navigation Aerienne
- Pont Thierry
- PONT_Thierry&stna.dgac.fr
-4748
- DoBiT nv
- Marc Bruers
- mbruers&dobit.com
-4749
- e-Plaza
- Gerardo Martinez Zuniga
- gmartine&iteso.mx
-4750
- Lykon Consulting
- Mingzhe Lu
- mingzhe_lu&yahoo.com
-4751
- SARL K1
- Franck Lefevre
- franck&k1info.com
-4752
- Crescent Networks
- Linsey O'Brien
- lbob&crescentnets.com
-4753
- MontaVista Software, Inc.
- Joseph Green
- jgreen&mvista.com
-4754
- Symas Corp.
- Howard Chu
- hyc&symas.com
-4755
- Directory Works
- Alexis Bor
- alexis.bor&directoryworks.com
-4756
- CTC Union Technologies Co., Ltd.
- Thomas Fan
- ctcu&ms2.hinet.net
-4757
- IBS
- Steffen Reithermann
- sr&IBS.de
-4758
- AnIX Group Ltd
- Anthony Roberts
- roberta&anix.co.uk
-4759
- Peco II, Inc.
- Gregory Ratliff
- gratcliff&peco2.com
-4760
- Viditec, Inc.
- Jason Lai
- laijc&viditec.com
-4761
- NuDesign Technologies Inc.
- Brian Munshaw
- contact&ndt-inc.com
-4762
- GRIC Communication Inc
- Wilson Tse
- wilsont&gric.com
-4763
- Teddybear Computer Services
- Karen Kenworthy
- karenk&teddybear.com
-4764
- Global Crossing
- IP Software Development
- ipsd&gblx.net
-4765
- Tomorrow Factory
- Ron Hitchens
- ron&tomorrowfactory.com
-4766
- Hochschule Heilbronn
- Heidrun Schmidt
- Heidrun.Schmidt&hs-heilbronn.de
-4767
- TrafficMaster PLC
- Nathan Grant
- nathan.grant&trafficmaster.co.uk
-4768
- E.ON SE (formerly 'E.ON AG')
- Florian Dietrich, Peter Marschall
- pki&eon.com
-4769
- IBM Corporation
- Victor Sample
- vsample&us.ibm.com
-4770
- Ol'e Communications, Inc.
- Dustin Doo
- dtu&olecomm.com
-4771
- Narus Inc
- Stas Khirman
- stask&narus.com
-4772
- CyberSource Corporation
- Roger Hayes
- rhayes&cybersource.com
-4773
- RealNames Corporation
- Yves Arrouye
- yves&realnames.com
-4774
- Netpliance.net
- Richard Buckman
- richard.buckman&netpliance.net
-4775
- Network ICE
- Robert Graham
- snmp&networkice.com
-4776
- Knight Fisk Ltd
- Ian Wakeling
- Ian.Wakeling&KnightFisk.com
-4777
- Cuperus Consultants
- Bart Cuperus
- b.cuperus&cuperus.nl
-4778
- Biscom, Inc.
- Tomas L. Keri
- tkeri&biscom.com
-4779
- Bay Technical Associates
- Alex North
- anorth&baytechdcd.com
-4780
- VADEM
- Jeff Saxton
- jsaxton&vadem.com
-4781
- E.piphany, Inc.
- Chad Whipkey
- whipkey&epiphany.com
-4782
- 3Cube, Inc.
- Yuri Rabover
- yurir&3Cube.com
-4783
- CrosStor Software
- Tony Schene
- tony.schene&crosstor.com
-4784
- March Networks
- Pierre Doiron
- pdoiron&marchnetworks.com
-4785
- Appian Communications, Inc.
- Ren Yonghong
- ren&appiancom.com
-4786
- Sierra PartnersStephen Ells
- sells&chw.edu
- sae&foothill.net
-4787
- Shanghai Holdfast Online Information
- Jason Fang
- locky_ymc&yahoo.com
-4788
- D-Trust GmbH
- Andreas Ziska
- a.ziska&d-trust.net
-4789
- Telica, Inc.
- Rick Evans
- revans&telica.com
-4790
- SecureLogix Corporation
- Stephen Johns
- stephen.johns&securelogix.com
-4791
- Dresdner Bank AG
- Axel Dalz
- Axel.Dalz&Dresdner-Bank.de
-4792
- Wavefront
- David Ladiges
- david&wavefront.cc
-4793
- Levi, Ray & Shoup, Inc.
- Dennis Grim
- dgrim&lrs.com
-4794
- eCoin, Inc.
- Horng-Twu Lihn
- slihn&ecoin.net
-4795
- Unified Productions, Inc.
- Jason Yardi
- unified&west.net
-4796
- Joe Chapa
- Joe Chapa
- joechapa&joechapa.com
-4797
- City Group Inc.
- Brad Austin
- AUSCO&HOME.COM
-4798
- Vigil Technologies Ltd.
- Mor Schlesinger
- mor&vigiltech.com
-4799
- Leaselogix, Inc.
- Charles Corson
- cccbttb&aol.com
-4800
- Jensley Pty Ltd
- Darren Collins
- dmc&infoxchange.net.au
-4801
- Compass Corporate Systems, Inc.
- David Lethe
- david.lethe&compass-corp.com
-4802
- Systematic Software Engineering A/S
- Jesper Gravgaard
- jgj&systematic.dk
-4803
- POWWOW
- Michael Castello
- webmaster&MarinaDelRey.com
-4804
- Castello Cities Internet Network
- David Castello
- david&palmsprings.com
-4805
- INOVA Corporation
- Brit Minor
- bminor&inovacorp.com
-4806
- Rosslea Associates LLC
- Eileen Graydon
- eileen_graydon&rosslea-associates.com
-4807
- Control Z Corporation
- Seiji Eguchi
- eguchi&czc.co.jp
-4808
- Net-star Technology Corporation
- Jackie Chang
- jackie&net-star.com.tw
-4809
- BSW Telecoms
- Bryan Booth
- bryan.booth&co.za
-4810
- Bloemenveiling Holland
- Marco van Katwijk
- m.katwijk&bvh.nl
-4811
- Network Flight Recorder, Inc.
- Marcus Ranum
- mjr&nfr.net
-4812
- shanghai radio communication equipment manufacture company(srcem)
- Feng Dai
- fengdai&263.net
-4813
- GlenEvin
- Kevin Castner
- kcc&glenevin.com
-4814
- Alex Temex Multimedia S.A.
- Nicolas Thareau
- nthareau&alex.fr
-4815
- H.B. Fuller Company
- Todd Meadows
- Todd.Meadows&hbfuller.com
-4816
- Pacific Gas & Electric Company
- Eric Vo
- EXVQ&pge.com
-4817
- Innovative Technologies & Consulting, Inc.
- Milan Habijanac
- milan&itcamerica.com
-4818
- Sinclair Internetworking Services
- Keith Sinclair
- keith&sinclair.org.au
-4819
- RMS Technology Integration, Inc.
- Phil Draughon
- jpd&rmsbus.com
-4820
- Quicknet Technologies, Inc.
- Greg Herlein
- gherlein&quicknet.net
-4821
- SN2AI
- Bruno Barbieri
- bbarbieri&aai.fr
-4822
- Fial Computer Inc.
- Ron Fial
- ron&fial.com
-4823
- Shanghai HuaLong Information Technology Development Center
- Chen Jianqiang
- cjq95&yahoo.com
-4824
- DSL Communications
- Jason Tang
- jtang&dsl-com.com
-4825
- Golden Screens Interactive Technologies, Inc.
- Ran Livnat or Ishai Biran
- ishai&gsit.com
-4826
- The European Clearing House
- Paul Rees
- prees&cedelglobalservices.com
-4827
- Interoute Telecommunications Inc
- Shridar Iyengar
- siyengar&interouteusa.com
-4828
- Intelidata Technologies Corp.
- Scott Vivian
- svivian&intelidata.com
-4829
- A to Z Pest Control
- Randall Miller
- wdirep&msn.com
-4830
- Gloabl Media Corp.
- Sophia Xu
- sxu&globalmedia.com
-4831
- BANCHILE
- Jose Antonio Muena Barria
- jmuena&banchile.cl
-4832
- Network Phenomena, LLC.
- Daniel Lewis
- dnllewis&netscape.com
-4833
- SDNI Inc.
- Ivo Gorinov
- ivo&sdni.com
-4834
- Factum Electronics AB
- Lars Boberg
- Lars.Boberg&factel.se
-4835
- OPNET Technologies Co., Ltd.
- Melody Tsai
- and&opnet.com.tw
-4836
- LHS Telekom GmbH & Co. KG
- Martin Schlothauer
- Martin.Schlothauer&lhsgroup.com
-4837
- trrrippleRRRdesigns
- Kathi Tomlinson
- tomkat&u.washington.edu
-4838
- New Image Company
- Gregory Tang
- tang&www.newimage.com.tw
-4839
- 2Wire, Inc.
- Randy Turner
- rturner&2Wire.com
-4840
- Bedet Information Technologies
- W.T. Bedet
- wbedet&compuserve.com
-4841
- iFace.com
- Alex Vishnev
- alex&iface.com
-4842
- SecureAgent
- Brent Johnson
- r.brent.johnson&mail.securenotes.com
-4843
- Amazon.com Inc.
- Alan O'Leary
- alano&amazon.com
-4844
- NeoPoint, Inc.
- Dwight Newton
- dnewton&neopoint.com
-4845
- Miralink Corp
- Bill Shelton
- bills&miralink.com
-4846
- Lucent INS
- Matthias Bannach
- mbannach&lucent.com
-4847
- Vikram Kulkarni
- Vikram Kulkarni
- vkulkarn&brownforces.org
-4848
- Interphiz Ltd
- Sam Corn
- sam&interphiz.com
-4849
- Dipl. Phys. Peer Stritzinger Peer
- Stritzinger
- mib&stritzinger.com
-4850
- Eddie George Limited
- Eddie George
- software.engineering&egl.com
-4851
- KRONE Telecell GmbH
- Holger Vogel
- vogel&telecell.de
-4852
- CMA Small Systems AB
- Alexey Ryskov
- Alexey.Ryskov&cma.ru
-4853
- Syndeo Corporation
- Matt Rhoades
- matt&syndeocorp.com
-4854
- Mk1 Design
- Mark Chapman
- mk1design&cs.com
-4855
- AddPac Technology Co., Ltd.
- Youngsik Lee
- yslee&addpac.com
-4856
- Veraluz International Corporation
- Phillam Sera Jose
- phillam&i-manila.com.ph
-4857
- Cisco's Etc.
- Emma Johnson
- cjoh1103&bellsouth.net
-4858
- Fortech
- Dainis Strupis
- dainis&fortech.lv
-4859
- GEMS
- Will Ballantyne
- Will.Ballantyne&gems1.gov.bc.ca
-4860
- boo.com Group LTD
- Scot Elliott
- scot.elliott&boo.com
-4861
- PowerCom Technologies Inc Katta Veeraiah
- veera_katta&216.61.195.17
- ---none---
-4862
- Redwood Marketing
- Curtis Ruck
- ruckc&crosswinds.net
-4863
- Parion
- Axel Laemmert
- Axel_Laemmert&Gothaer.de
-4864
- JOH-DATA A/S
- Roger Kristiansen
- roger&norgesgruppen.no
-4865
- ERG Group
- Bill Wong
- bwong&erggroup.com
-4866
- Moseley Associate Inc.
- Jamal Hamdani
- info&moseleysb.com
-4867
- Viet Marketing
- Ngo Quyen
- ngoquyen&trungtam.com
-4868
- Nextra (Schweiz) AG
- Rolf Gartmann
- rolf&nextra.ch
-4869
- SIT Europe
- Jean-Charles Oualid
- jean-charles&sit.fr
-4870
- Fritz Egger GmbH & Co
- Joahn Memelink
- johan.memelink&egger.com
-4871
- DiscoveryCom
- Rich Gautreaux
- rgautreaux&discoverycom.com
-4872
- Bouygues Telecom
- Stephane Jeanjean
- sjeanjea&bouyguestelecom.fr
-4873
- Seay Systems, Inc.
- Vernon Hurdle
- vernon&seaysystems.com
-4874
- Juniper Networks/Unisphere
- John Scano
- jscano&juniper.net
-4875
- DoubleClick Inc.
- Tom Klempay
- tklempay&doubleclick.net
-4876
- Eyestreet Software
- Charlie Hill
- chill&eyestreet.com
-4877
- Salon Press
- Serge Stikhin
- postmaster&salon.ru
-4878
- Village Networks, Inc.
- Yong-Qing Cheng
- cheng&vill.com
-4879
- SecureMethods, Inc.
- Ken Walker
- ken.walker&securemethods.com
-4880
- Standard & Poors Compustat
- Kevin Nervick
- kevin_nervick&standardandpoors.com
-4881
- Ruijie Networks Co., Ltd. (formerly 'Start Network Technology Co., Ltd.')
- Zhengrong Yu
- yuzr&ruijie.com.cn
-4882
- Root, Inc.
- Naoto Shimazaki
- shimaz-n&root-hq.com
-4883
- Saatch & Saatchi
- Alessandra dell'andrea
- a.dellandrea&saatchi.it
-4884
- Protek Ltd
- Richrd Sizeland
- rsizeland&protek.com
-4885
- Photon Technology Co., Ltd.
- James Kou
- jameskou&yahoo.com
-4886
- Westwave Communications
- Jean-Marc Serre
- jean-marc.serre&westwave.com
-4887
- IQ Wireless GmbH
- Holger Vogel
- holger.vogel&iq-wireless.com
-4888
- Multidata GmbH
- Willfried Dersch
- w.dersch&www.multidata.de
-4889
- Inflow
- Mark Anderson
- manderson&inflow.com
-4890
- Skinners Computer Center
- Ted Skinner
- tskinner&max1-p121.Bayou.COM
-4891
- Network Address Solutions
- Jerry Roy
- jroy&flashcom.com
-4892
- The Chinese University of Hong Kong
- S.T. Wong
- st-wong&cuhk.edu.hk
-4893
- ATSHAW Technologies
- Allyn Tyler-Shaw
- atshaw&verio.net
-4894
- Kleinwort Benson Ltd.
- Nigel Southgate
- nigel.southgate&dresdnerkb.com
-4895
- Woodwind Communications Systems Inc.
- Brian Hardy
- bhardy&wcsinc.com
-4896
- TeleSoft International, Inc.
- Charles Summers
- CKSummers&acm.org
-4897
- DoBusinessOnline Services
- Ken Netherland
- ken&dobusinessonline.com
-4898
- Time Inc.
- Leon Misiukiewicz
- leon_misiukiewicz&timeinc.com
-4899
- Walker Systems Corporation
- Oleksandr Kravchenko
- okravchenko&walkersys.com
-4900
- Conexant Systems
- Terry Rodman
- terry.rodman&conexant.com
-4901
- USAA
- Carl Mehner
- usaadomains&usaa.com
-4902
- Beijing Huaguang Electronics Co., Ltd.
- Liang Wenjing
- liangwj&hg.com.cn
-4903
- GCC Technologies Inc.
- Michael Fryar
- mfryar&gcctech.com
-4904
- SDF
- Viktor Leijon
- viktor&sdf.se
-4905
- WebDialogs, Inc
- Mike Melo
- mmelo&webdialogs.com
-4906
- Edgix Corporation
- Mark Hurst
- mhurst&edgix.com
-4907
- AppWorx Corporation
- George Del Busto
- gdelbusto&router.appworx.com
-4908
- ATS, Advanced Technology Solutions S.A.
- Julio Riviere
- jriviere&ats.com.ar
-4909
- Experts Exchange
- Steve Miller
- steve&experts-exchange.com
-4910
- Ubizen
- Hugo Embrechts
- Hugo.Embrechts&ubizen.com
-4911
- pcOrder.com, Inc.
- Ron Rudd
- ron.rudd&pcorder.com
-4912
- HolisticMeta, LLC (formerly 'One World Information System')
- Roy Roebuck
- royroebuck&holisticmeta.com
-4914
- hole-in-the.net
- Joe Warren-Meeks
- joe&hole-in-the.net
-4915
- Sipher Internet Technology Ltd.+44 1494 765335
- sipher&sipher.co.uk
- ---none---
-4916
- Blacksound SA
- Mamamdou M'Baye
- mamadou&blacksound.com
-4917
- Sociedad Estatal de Loterias y Apuestas de Estado
- Julio Sánchez Fernández
- oidregistry&selae.es
-4918
- Taurusent Technologies
- Linford D. Hayes
- taurusen&flinthills.com
-4919
- Luminate Software Corporation
- David Korz
- dkorz&luminate.com
-4920
- Boston Globe
- Richard Farrell
- farrell&globe.com
-4921
- Network Solutions
- Brad McMillen
- bradtm&internic.net
-4922
- Telcordia Technologies, Inc.
- Kaj Tesink
- kaj&research.telcordia.com
-4923
- AudioCodes
- Chai Forsher
- chai-f&audiocodes.com
-4924
- SAN Valley Systems, Inc.
- Allison Parsons
- allison&sanvalley.com
-4925
- Zuma Networks
- Rueben Silvan
- rsivan&zumanetworks.com
-4926
- TouchTunes Digital Jukebox
- Eugen Pavica
- paveu&touchtunes.com
-4927
- time4you GmbH
- Sven Doerr
- doerr&time4you.de
-4928
- Xrosstech, Inc.
- Jihno Chun
- jhchun&xrosstech.com
-4929
- LAN Crypto
- Julia Kopytina
- lanc&aha.ru
-4930
- Concord Technologies
- Athir Nuaimi
- anuaimi&ca.concordfax.com
-4931
- Standard & Poor's Corp.
- Martin Niederer
- martin_niederer@standardand poors.com
-4932
- Foglight Software
- Michael Tsou
- mtsou&foglight.com
-4933
- Shunra Software Ltd.
- Benny Daon
- benny&shunra.com
-4934
- WebDialogs, Inc
- Mike Melo
- mmelo&webdialogs.com
-4935
- Mediatrix Telecom Inc.
- Stephane Perron
- sperron&mediatrix.com
-4936
- First American Financial Corporation John
- Thuener
- jthuener&firstam.com
-4937
- Stormbreaker Network Services
- David Britt
- dbritt&cdm.com.au
-4938
- Daeyoung Electronic Ind.CO., Ltd.
- Jin-Hak Yeom
- yeomjh&hanmail.net
-4939
- Procter & Gamble
- Terry McFadden
- timmer.wd&pg.com
-4940
- Convergent Communications Services, Inc.
- Bruce Findleton
- bruce.findleton&converg.com
-4941
- Echelon Corporation
- Chris Stanfield
- standfield&echelon.com
-4942
- Liberty Press & Letter Service Joseph De Silvis
- Libertyink&AOL.com
- ---none---
-4943
- Novell GmbH
- Alexander Adam
- Alexander_Adam&Novell.com
-4944
- Future Networks, Inc.
- Michael Rand
- michael.rand&future-networks.com
-4945
- Logicon, Inc.
- Jerry N. Baker
- jbaker&logicon.com
-4946
- Psychedelic Illuminations Magazine
- Ron Piper
- ronnipiper&hotmail.com
-4947
- Grass Valley USA, LLC
- Christopher John
- Christopher.john&grassvalley.com
-4948
- MIGROS
- Andreas Brodmann
- telekommunikation&gmaare.migros.ch
-4949
- Fortress Technologies
- Bill McIntosh
- bmcintoch&fortresstech.com
-4950
- Luxor Software Inc.
- Walid Bakr
- WalidB&LuxorSoft.com
-4951
- State Farm Insurance
- Brian L. Detweiler
- brian.l.detweiler.gc2k&statefarm.com
-4952
- Thinking Objects GmbH
- Markus Klingspor
- markus.klingspor&to.com
-4953
- Tecnet Teleinformatica Ltda.
- Paulo Eduardo Macagnani
- macagnani&tecnet.ind.br
-4954
- Wrox Press Itd
- Jeremy Beacock
- jeremyb&mail.wrox.co.uk
-4955
- Asgard Technologies, Inc
- Vivian Pecus
- vipecus&aol.com
-4956
- GRAPHICS FIVE
- KEYHAN
- KEYHAN&WE-24-130-9-85.we.medioane.net
-4957
- CNet Computer Systeme Netzwerk GmbH
- +49.335.68339.90
- bernd&pflugrad.de
-4958
- TerraLink Technologies, LLC
- Keith A. Tuson
- tuson&terralinktech.com
-4959
- U Force, Inc.
- Scott Francis
- scott.francis&uforce.com
-4960
- Chromisys
- Evan McGinnis
- evan&chromisys.com
-4961
- Ardent Technologies
- Dean C. Wang
- dwang&ardentek.com
-4962
- Artel Video Systems, Inc.
- Ed Shober
- eshober&artel.com
-4963
- @manage
- Derrick Arias
- derrick&amanage.com
-4964
- W.B. Love Enterprises Inc.
- Walter L. Shaw Jr.
- waltlove@ix. netcom. com
-4965
- Greenwich Mean Time
- Alec Bray
- apb&gmt-2000.com
-4966
- AACom
- Eric Dillman
- edillmann&AAcom.fr
-4967
- Starwood Hotels & Resorts
- Scott Baughman
- scott.baughman&starwoodhotels.com
-4968
- Universtiy of North Texas (unofficial)
- Kevin W. Mullet
- kwm&unt.edu
-4969
- Park Air Systems Ltd.
- Martin Brunt
- m.brunt&uk.parkairsystems.com
-4970
- National Grid for Learning
- Nathan Chandler
- nathan&ngfl.gov.uk
-4971
- Anglers Club
- Joyce Yaffe
- joyceyaffe&aol.com
-4972
- Los Alamos National LaboratoryGiri
- Raichur
- graichur&lanl.gov
-4973
- SetNet Corporation
- Nicolas Fodor
- nfodor&setnet.com
-4974
- eATM
- Jimmy Wang
- wangjc&wellsfargo.com
-4975
- INTERVU Inc.
- Chuck Norris
- vgale&intervu.net
-4976
- AGENT++
- Frank Fock
- fock&agentpp.com
-4977
- Tiesse S.p.A
- Ombretta Miraglio
- o.miraglio.tiesse&iol.it
-4978
- Direkcija RS za poslovno informacijsko sredisce
- Igor Milavec
- igor.milavec&l-sol.si
-4979
- Licer Solutions
- Igor Milavec
- igor.milavec&l-sol.si
-4980
- Oxymium
- Manuel Guesdon
- mguesdon&oxymium.net
-4981
- RiverDelta Networks
- Thor Kirleis
- thor&riverdelta.com
-4982
- Persistence Software Inc.
- Olivier Caudron
- caudron&persistence.com
-4983
- InnoMediaLogic Inc.
- Francois Morel
- francois.morel&iml-cti.com
-4984
- Pinnacle Systems
- Jacob Gsoedl
- jgsoedl&pinnaclesys.com
-4985
- Vigilant Networks
- Ashwin Kovummal
- ashwin&lecroy.com
-4986
- KB/Tel
- Lucero Maria Ayala Lugo
- aclmal&hotmail.com
-4987
- Simpler Networks Inc.
- Serge Blais
- serge.blais&simplernetworks.com
-4988
- Ronningen Consulting
- Ole Petter Ronningen
- olepr&online.no
-4989
- Connect Austria GmbH
- Zahari Tassev
- zahari.tassev&one.at
-4990
- TTI Telecom
- Shlomo Cwang
- scwang&tti-telecom.com
-4991
- Stonebridge Technologies, Inc.S.E.
- John Harris
- jharris&tacticsus.com
-4992
- Thyssen Krupp Information Systems GmbHHaynes
- Lohr
- loehr&tkis.thyssenkrupp.com
-4993
- CTU Prague
- Milan Sova
- sova&fel.cvut.cz
-4994
- CUT-THROAT TRAVEL OUTLET
- Mel Cohen
- cuthraot&sirius.com
-4995
- Universtiy of California, Berkeley
- Robert Reid
- robreid&socrates.berkeley.edu
-4996
- Forest Networks LLC
- Mark Penrose
- mark.penrose&forestnetworks.com
-4997
- Inetd.Com Consulting
- Joe Elliott
- joe&inetd.com
-4998
- Cadant Inc.
- Yung Nguyen
- ynguyen&cadant.com
-5000
- Personal Business
- Matias Guerrero
- perbus2&hotpop.com
-5001
- LogicMedia
- Rudolph Balaz
- rudy&logicmedia.com
-5002
- RC Networks
- Jim Sung
- jsung&rcnets.com
-5003
- AudioCodes LTD
- Oren Kudevitzki
- orenku&audiocodes.com
-5004
- Predictive Networks
- Rich Zimmerman
- zimm&predictivenetworks.com
-5005
- NCvision
- Stern Rita
- rita&ncvision.com
-5006
- Vishwnet India
- Mahesh Kulkarni
- shri.mahesh&yahoo.co.in
-5007
- Effective Computer Solutions, Inc.
- Wilhelm Horrix
- EffectiveComputerSolutions&compuserve.com
-5008
- drugstore.com
- Trey Valenta
- trey&drugstore.com
-5009
- Schiano
- Andrea Schiano
- schiano&mcn.mc
-5010
- Splash Technology, Inc.
- Minhhai Nguyen
- Minhhai.Nguyen&splashtech.com
-5011
- Scaldis
- Geert Bosuil Gommeren
- geert.gommeren&rug.ac.be
-5012
- Lottomatica spa
- Alberto Simili
- simili&lottomatica.it
-5013
- Maverick Internet Technology
- Arie Joosse
- ariejoosse&usa.net
-5014
- Viacast
- Alan Haines
- ahaines&idinets.com
-5015
- Verbind, Inc.
- Director of IT
- it&verbind.com
-5016
- Oregon State University
- Bill Ayres
- ayres&nws.orst.edu
-5017
- University of Akron
- Keith Hunt
- keith&uakron.edu
-5018
- Ameritrade Technology Group
- Dale Botkin
- dbotkin&ameritrade.com
-5019
- eBusiness Interactive
- Adam Barclay
- adam&ebinteractive.com.au
-5020
- sekwang eng. co.
- choi jin young
- cjy1004&kornet.net
-5021
- Television Internacional S.A. de C.V.
- Eduardo Gutierrez
- etejeda&INTERCABLE.NET
-5022
- Equipe Communications Corporation
- Chris Pecina
- cpecina&equipecom.com
-5023
- Bit by Bit Solutions, Inc.
- David Richardson
- superior&bitbybitsolutions.com
-5024
- 3Domes, Inc.
- Minainyo Sekibo
- mina&3domes.com
-5025
- OPUS 2 Revenue Technologies
- Dave Gray
- dgray&opus2.com
-5026
- Aspiro AB
- Peter Kjellberg
- peter.kjellberg&aspiro.com
-5027
- Orebro Kommun
- Carl Bergudden
- clbn&orebro.se
-5028
- Lightbridge
- Michael Arena
- arena&lightbridge.com
-5029
- Comma Soft AG
- Robert Draken
- Robert.Draken&comma-soft.com
-5030
- University of Ulm
- Karl Gaissmaier
- karl.gaissmaier&uni-ulm.de
-5031
- Recovery
- Frederic Rouyre
- rfr&inter-land.net
-5032
- Norscan Instruments Ltd
- Daniel Goertzen
- goertzen&norscan.com
-5033
- eCharge Corporation
- Alan Chedalawada
- achedalawada&echarge.com
-5034
- LogicalSolutions.net
- Jim Salviski
- jim&logicalsolutions.net
-5035
- Inter-National Research Institute
- Randy Proctor
- mrp&inri.com
-5036
- Input Software
- Tom Bridgwater
- tbridgwater&inputsw.com
-5037
- Bri-link Technologies Inc.
- Andy Huang
- andyhuang&brilink.com.tw
-5038
- T&S Software Associates Inc.
- Michael Thayer
- mthayer&ts-software.com
-5039
- Xstreamis plc
- Ian Moir
- ian.moir&xstreamis.com
-5040
- Wiesemann & Theis GmbH
- Klaus Immig
- info&wut.de
-5041
- Menicx International Co. Ltd.
- Erik Reid
- erik&menicx.com.tw
-5042
- Broadwing Inc.
- Ashok Kumar Padhy
- apadhy&broadwing.com
-5043
- Micro Focus International Ltd
- Henry Szabranski
- henry.szabranski&microfocus.com
-5044
- Velocity Software Systems Ltd.
- Leslie Mulder
- lesm&velocity.ca
-5045
- Bithop Systems, Inc.
- Sohail Shaikh
- sohail.shaikh&lexis-nexis.com
-5046
- CS SI
- Marc Milan
- marc.milan&cssystemes.cie-signaux.fr
-5047
- Kimley-Horn and Associates
- David Robison
- DRobison&kimley-horn.com
-5048
- Kudale Inc.
- Jack Kudale
- info&kudaleinc.com
-5049
- Equifax Inc.
- Larry Laughlin
- hostmaster&equifax.com
-5050
- Nordmark NorLan Consult
- Tore Nordmark
- tonord&online.no
-5051
- Brix Networks
- Scott Harvell
- sharvell&brixnet.com
-5052
- Intermine Pty Ltd
- Scott McCallum
- scott&intermine.com.au
-5053
- Agilent Technologies
- Florence Claros
- pdl-agilent-iana-oid&agilent.com
-5054
- will
- koyongje
- koyongje&mail.will.co.kr
-5055
- Eolring
- Yoann Noisette
- y.noisette&eolring.fr
-5056
- Frank Lima
- Frank Lima
- ylaser&bellatlantic.net
-5057
- Gifford Hesketh
- Gifford Hesketh
- gifford&telebot.net
-5058
- Avistar Systems
- Chris Lauwers
- lauwers&avistar.com
-5059
- Carmona Engineering Services
- Ron Carmona
- rcarmona&earthlink.net
-5060
- Singapore Press Holdings Ltd
- Kow Kee Nge
- kowkn&asia1.com.sg
-5061
- Swisskey Ltd
- Juerg Spoerndli
- jspoerndli&swisskey.ch
-5062
- DFN Directory Services
- Peter Gietz
- peter.gietz&directory.dfn.de
-5063
- Telesta
- Jimmy Spets
- jimmy.spets&telesta.com
-5064
- Deutsche Post AG
- Thomas Gierg
- T.Gierg&DeutschePost.de
-5065
- PrivateExpress.com
- Patrick Day
- pday&privateexpress.com
-5066
- NetVision, Inc.
- Jay Adams
- jadams&netvision.com
-5067
- Open Society Fund - BH
- Tomo Radovanovic
- tomo&soros.org.ba
-5068
- Jewsih Community of Bosnia and Herzegovina
- Tomo Radovanovic
- tomo&soros.org.ba
-5069
- Call Connect
- Tim Slighter
- slighter&callconnect.com
-5070
- Ganna Construction, Inc.
- Abdul Iscandari
- gannaeng&aol.com
-5071
- HIQ Networks
- Janet Soung
- jsoung&hiqnetworks.com
-5072
- Ditech Communications Corporation
- Serge Stepanoff
- sstepanoff&ditechcom.com
-5073
- knOwhere, Inc.
- Russ White
- rwhite&knowherestore.com
-5074
- Miva Corporation
- James Woods
- jwoods&miva.com.au
-5075
- CNL CentralNet GmbH
- Oliver Marugg
- noc&centralnet.ch
-5076
- LongView International, Inc.
- Tracy Tondro
- ttondro&lvi.com
-5077
- Clicknet Software
- Kenny Bright
- kbright&clicknet.com
-5078
- Media Vision Computer Technologies
- David Sataty
- davids&ncc.co.il
-5079
- Crosskeys Systems Corporation
- Scott Searcy
- scott.searcy&crosskeys.com
-5080
- Power Systems
- Gary Roseland
- gr57&earthlink.net
-5081
- Empowerment Group, Inc
- J.D. Wegner
- jd&emgp.com
-5082
- More Magic Software MMS Oy
- Mika P. Nieminen
- Mika&moremagic.com
-5083
- Daktronics
- Brian Iwerks
- biwerks&daktronics.com
-5084
- SierraCom
- Denise Chasse
- dchasse&sierracom.com
-5085
- SmartMove
- Wim De Munck
- Wim.Demunck&smartmove.be
-5086
- ICS Advent
- Steve Potocny
- spotocny&icsadvent.com
-5087
- Great Dragon Telecom(Group)
- Liu Bin
- Henry_liu&ri.gdt.com.cn
-5088
- Digital Burro, INC
- Guy Cole
- gsc&acm.org
-5089
- Clavister AB
- Mikael Olsson
- registry&clavister.com
-5090
- Carumba
- Jauder Ho
- jauderho&carumba.com
-5091
- Norske Troll AS
- Stein Vrale
- stein&trolldom.com
-5092
- INFORMATIONSTECHNOLOGIE AUSTRIA GES. M.B.H.
- alfred Reibenschuh
- alfred.reibenschuh&it-austria.com
-5093
- SDF Enterprise
- Scott D. Florez
- damien7&flash.net
-5094
- The University of Tulsa
- Jared Housh
- jared-housh&utulsa.edu
-5095
- Credit Suisse Group
- Paul Kalma (CANA Manager)
- admin.cana&csg.ch
-5096
- Computer Science and Engineering, CUHK
- Wong Yin Bun Terence
- wongyb&cse.cuhk.edu.hk
-5097
- Rock Marketing
- Diego Rodriguez
- diego&portland.quik.com
-5098
- OPUSWAVE Networks, Inc.
- Abid Inam
- ainam&opuswave.com
-5100
- Tricast Multimedia
- Jesse Whitehorn
- jwhitethorn&hotmail.com
-5101
- Novalabs
- Alessandro Morelli
- alex&novalabs.net
-5102
- Integro A.C.S.
- Francois Compagne
- fcompagne&integro-acs.fr
-5103
- Foxcom Ltd.
- Yoav Wechsler
- yoavw&foxcom.com
-5104
- SarangNet
- Young-jae Chang
- robocop&sarang.net
-5105
- Datang Telecom Technology CO., LTD
- youping Hu
- huyouping&163.net
-5106
- elephant project
- Wolfgang Schell
- wolfgang.schell&elephant-project.de
-5107
- Pinkl Consulting Services
- Thomas J Pinkl
- tpinkl&voicenet.com
-5108
- Modius Inc.
- Scott Brown
- scott.brown&modius.com
-5109
- CHINA GREAT DRAGON TELECOMMUNICATION(GROUP) CO., LTD
- Liu Bin
- Henry_liu&ri.gdt.com.cn
-5110
- Health Business Systems, Inc.
- Thomas J Pinkl
- tom&hbsrx.com
-5111
- Medea Corporation
- Roger S. Mabon
- Rmabon&pacbell.net
-5112
- Corvia Networks, Inc.
- Reva Bailey
- reva&corvia.com
-5113
- gridware
- Joachim Gabler
- J.Gabler&gridware.de WWW: http://www.gridware.de
-5114
- Future fibre Technologies
- Peter Nunn
- pnunn&fft.com.au
-5115
- PowerCom Technology Co., Ltd.
- Wei-En Wang
- wewang&powercom.com.tw
-5116
- IBM, NUMA-Q Division
- David Arndt
- daa&sequent.com
-5117
- Kaelin Colclasure
- Kaelin Colclasure
- kaelin&acm.org
-5118
- Dantel,Inc.
- Mark R. Huggett
- mhuggett&dantel.com
-5119
- SYCOR AG
- Michael Kunze
- michael.kunze&sycor.de
-5120
- EMF Home Inspection Inc.
- Mark Fredenberg
- EMFinspection&Hotmail.com
-5121
- League Scoring
- Karl Rullman
- Karl_Rullman&Yahoo.com
-5122
- Everest eCommerce, Inc.
- Kaelin Colclasure
- kaelin&everest.com
-5123
- Lucent Tech. Taiwan Telco.
- Sky Wang
- skyw&tw.lucent.com
-5124
- Phonetic Systems Ltd.
- Nir Halperin
- tshtofblat&PhoneticSystems.com
-5125
- Celestica Power
- Ken Clark
- kclark&clestica.com
-5126
- Symtrex Inc.
- Robert Hocking
- rhocking&symtrex.com
-5127
- Western Digital Corporation
- Shola Agbelemose
- shola.agbelemose&wdc.com
-5128
- Saitama University Far Laboratory
- Hassan Hajji
- hajji&cit.ics.saitama-u.ac.jp
-5129
- Macquarie University
- Simon Kissane
- simon.kissane&mq.edu.au
-5130
- Omron Canada Inc.
- Denis Pimentel
- denis_pimentel&omron.com
-5131
- lotz.de
- Christian lotz
- cl&lotz.de
-5132
- Mammut Net
- Klaus J. Koch
- Klaus.Koch&mammut.net
-5133
- Halfdome Systems, Inc.
- Andrew Koo
- andykoo&halfdome-ift.com
-5134
- IP Unity
- Tony Ma
- tony&ipunity.com
-5135
- CyberSafe Corporation
- Dave Arnold
- craig.hotchkiss&cybersafe.com
-5136
- Gruner + Jahr AG & Co KG (formerly 'Electronic Media Service')
- Thomas Doschke
- OIDTeam&guj.de
-5137
- DFC, Inc.
- Jade Meskill
- jmeskill&forchrist.org
-5138
- Easynet Group Plc
- Sven Verluyten
- oid&be.easynet.net
-5139
- ARESCOM, Inc.
- Alfred Ma
- alfred&arescom.com
-5140
- Compudisk Systems Ltd.
- Alf Hardy
- alf.hardy&virgin.net
-5141
- Hart Edwards Corporation, Inc.
- Christopher Hart
- hart&hartedwards.com
-5142
- IVANS
- Chris Van Sant
- chris.van.sant&ivans.com
-5143
- Cereva Networks Inc.
- Beth Miaoulis
- beth_miaoulis&cereva.com
-5145
- ICT electronics SA
- Joan-Lluis Montore Parera
- jlm&ict.es
-5146
- Eclipsys Corporation
- Fred Reimer
- Fred.Reimer&eclipsys.com
-5147
- MICEX
- Alexander Ovchinnikov
- ovchinkv&micex.com
-5148
- cTc Computer Technik Czakay GmbH
- Woodisch
- wodisch&ctc.de
-5149
- Managed Object Solutions, Inc.
- E. Adam Cusson
- ecusson&mos-inc.com
-5150
- Opsware
- Dave Jagoda
- dj&opsware.com
-5151
- NetGain, LLC
- Richard Huddleston
- richard&netgainllc.com
-5152
- Cable AML, Inc.
- Javier Olivan
- jolivan&cableaml.com
-5153
- The University of Akron
- Keith Hunt
- keith&uakron.edu
-5154
- Incyte Genomics
- Brett Lemoine
- bl&incyte.com
-5155
- CS & S GH computer System Tech. Co., Ltd.
- Qigang Zhu
- zhu_qigang
-5156
- newproductshowroom.com
- Marc August
- marcaugust&iname.com
-5157
- The University of Queensland
- Dr. Rodney G. McDuff
- mcduff&its.uq.edu.au
-5158
- CompuTECH Services
- Harry A. Smith
- smithha&hotmail.com
-5159
- Ultra d.o.o.
- Kristijan Gresak
- kristijan.gresak&ultra.si
-5160
- DAIN Telecom Co., Ltd
- Dong-Suk Yun
- kseom&203.248.101.130
-5161
- Morehead State University
- Mike Eldridge
- m-eldridge&morehead-st.edu
-5162
- Societe Europeenne des Satellites
- Alan Kuresevic
- Alan_Kuresevic&ses-astra.com
-5163
- Digital Marketplace, Inc.
- Neal Taylor
- ntjr&dmcom.net
-5164
- Cygnet Technologies, Inc.
- Tim Michals
- tim&cygnetinc.com
-5165
- Sassafras Software Inc.
- Mark Valence
- mark&sassafras.com
-5166
- Mercom Systems, Inc.
- Steve Danis
- steve.danis&mercom.com
-5167
- Orchestream Ltd.
- Benedict Enweani
- benweani&orchestream.com
-5168
- Levitte Programming
- Richard Levitte
- levitte&lp.se
-5169
- NET CONSULTING S.R.L.
- Nicola di Fant
- nidifant&tin.it
-5170
- Aegis Data Systems, Inc.
- Mark Stingley
- chief&aegisdata.com
-5171
- WhizBang! Labs
- Dan Rapp
- drapp&whizbang.com
-5172
- Protocom Development Systems
- Jason Hart
- support&serversystems.com
-5173
- Taqua Systems Inc.
- Paul Richards
- prichards&taqua.com
-5174
- PrivateExpress .com
- Mok Ku
- mok&privateexpress.com
-5175
- Lindsay Electronics
- Dan Kolis
- ipmanager&hq.lindsayelec.com
-5176
- 2Win Information Systems, Inc.
- Alex Lee
- alee&2win.com
-5177
- Private Express Technologies Pte, Ltd.
- Wong Chee Hong
- cheehong&privateexpress.com.sg
-5178
- Telephony Experts, Inc.
- James Sandahl
- jsandahl&telephonyexperts.com
-5179
- Arima Computer Corp.
- Norman Hung
- norman&rioworks.com
-5180
- The DocSpace Company Inc.
- Nash Stamenkovic
- nstamenkovic&docspace.com
-5181
- Firat Universites
- Abdulkadyr Yonar
- ayonar&firat.edu.tr
-5182
- I Theta Corp.
- Miles Whitener
- mbw&i-theta.com
-5183
-
-
- ---none---
-5184
- C&N Touristic AG
- Edgar Scheuermann
- edgar.scheuermann&cun.de
-5185
- Sungmi Telecom Electronics Co., Ltd.
- Jinsoo Yoo
- jsyoo&sungmi.co.kr
-5186
-
-
- ---none---
-5187
- Bytware, Inc.
- Michael Grant
- iana&bytware.com
-5188
- BITHOP SYSTEMS, Inc.
- Sohail Shaikh
- sohail.shaikh&firewall5.lexis-nexis.com
-5189
- TELEFONICA I+D
- Javier Marcos Iglesias
- jmarcos&tid.es
-5190
- Organic
- Henry Goldwire
- henry&organic.com
-5191
- DEKRA AG
- Wolfgang Hiller
- wolfgang.hiller&edv.dekra.de
-5192
- Gotham Networks
- George W. Kajos
- gkajos&gothamnetworks.com
-5193
- Chemical Abstracts Service
- James R. Schrock
- jschrock&cas.org
-5194
- Okanagan Spring Brewery
- Michael F. Hertel
- mhertel&okspring.com
-5195
- AdRem Software
- Tomasz Kunicki
- tkunicki&adrem.com.pl
-5196
- E-Tech, Inc.
- Jone Yi
- jone_yi&e-tech.com.tw
-5197
- Startup .com
- Katell Pleven
- katell49&aol.com
-5198
- "Universita`" degli Studi di Roma "Tor Vergata"
- Lorenzo M. Catucci
- catucci&ccd.uniroma2.it
-5199
- Odetics ITS
- Ken Vaughn
- klv&odetics.com
-5200
- EnFlex Corp.
- John W. Markham
- jmarkham&enflex.net
-5202
- Aalto University (formerly 'Helsinki University of Technology')
- Niko Suominen
- niko.suominen&aalto.fi
-5203
- The Naqvi Group
- Shams Naqvi
- SSNAQVI&aol.com
-5204
- ClickNet Software Corporation
- Eric Solberg
- esolberg&clicknet.com
-5205
- Ruby Tech Corp.
- Pete lai
- pete&mail.rubytech.com.tw
-5206
- Voltaire
- Tzahi Oved
- tzahio&voltaire.com
-5207
- USA-NET CORPORATIONS
- Dirk Hilbig
- net-ops&usanet.com
-5208
- UPMACS Communications Inc.
- Peter Berg
- peter&upmacs.com
-5209
- Profound Rational Organization(PRO), Internatioal
- Pae Choi
- pro&bsc.net
-5210
- Linkline/Freegates
- Frederick Houdmont
- fh&freegates.be
-5211
- NCvision Ltd.
- Stern Rita
- rita&ncvision.com
-5212
- Placeware, Inc.
- Mike Dixon
- mdixon&placeware.com
-5213
- Greylink, Inc.
- Edgar Tu
- edgar&keymail.com
-5214
- Athens Chamber
- George Koukoulas
- gkouk&acci.gr
-5215
- United Connections
- Andrew Liu
- andrew&amh.linuxhk.com
-5216
- Senior Informatica Ltda.
- Benedicto de Souza Franco Jr.
- bene&senior.psi.br
-5217
- SOFHA GmbH
- Christoph Oeters
- coeters&sofha.de
-5218
- Networks Experts, Inc.
- Richard Hornbaker
- RichardH&NetworkExperts.com
-5219
- BeVocal Inc.
- Mikael Berner
- mikael&bevocal.com
-5220
- World Telecom Labs
- E P Thornberry
- pthornberry&harmonix.co.uk
-5221
- Wireless Systems International
- Andrew Chilcott
- ajc&wsi.co.uk
-5222
- Dantel Inc.
- Mark R. Huggett
- mhuggett&dantel.com
-5223
- Korea Electronics Technology Institute
- Song Byoungchul
- songbc&203.253.128.2
-5224
- Hitachi Data Systems (Europe) Ltd.
- John Murray
- John.Murray&hds.com
-5225
- Universidad de Cantabria- ATC
- Estela Martinez
- estela&atc.unican.es
-5226
- Harmonix Limited
- Patrick Thornberry
- www.harmonix.co.uk
-5227
- MELCO Inc.
- Toshinari Nakai
- nakai&melcoinc.co.jp
-5228
- Littlefeet Inc.
- Samuel K. Sun
- ssun&littlefeet-inc.com
-5229
- Big Fish Communications
- Thomas Johnson
- tj&bigfishcom.com
-5230
- ComRoesGroup
- Felix B. Adegboyega
- felix&ComRoes.com
-5231
- Oswego State University
- Brandon Brockway
- brockway&oswego.edu
-5232
- Counterpane Internet Security
- Jon Callas
- callas&counterpane.com
-5233
- Mercury Interactive Corp.
- Ido Sarig
- isarig&merc-int.com
-5234
- Shenzhen SED Info. Tech. Corp.
- He, Bing
- szsed&public.szptt.net.cn
-5235
- Persistent Systems Private Limited
- Shiv Kumar Harikrishna
- shiv&pspl.co.in
-5236
- Great Dragon Telecom(Group)
- Zhou Ming
- zhouming&ri.gdt.com.cn
-5237
- Trustis Limited
- Andrew Jackson
- amj&trustis.com
-5238
- SOcieta GEnerale di Informatica (SOGEI SPA)
- Dr. Ciro Maddaloni
- cmaddaloni&sogei.it
-5239
- FESTE
- Oscar Conesa
- oconesa&feste.org
-5240
- RAND
- Michael Misumi
- misumi&rand.org
-5241
- TECHMATH AG
- Friedel Van Megan
- vanmegen&medien.tecmath.de
-5242
- Envilogg AB
- Marcelo Tapia
- marcelo&envilogg.se
-5243
- ICIS, School of EEE,Nayang Technological University
- S. Rohit
- PR766125&ntu.edu.sg
-5244
- Casey's Baja Tours
- Casey Hamlin
- casey&200.33.413.229
-5245
- Quarterstone Communications Inc.(QCI)
- Dave Lankester
- dlankester&quarterstone.com
-5246
- SS8 Networks Inc.
- David Zinman
- davidz&ss8networks.com
-5247
- Zinnia Design
- Julie Low
- jlw&cs.unh.edu
-5248
- Michael Brehm
- Michael Brehm
- mbrehm&erols.com
-5249
- Warner-Lambert
- Mike Olsakowski
- michael.olsakowski&wl.com
-5250
- Center7
- Glen Lewis
- glen&center7.com
-5251
- Donald E. Bynum
- Donald E. Bynum
- xxtcs&aol.com
-5252
- CIS Technology
- Johnson Lee
- johnsonc&cis.com.tw
-5253
- Aldebaran
- Stefan Hackenthal
- sh&aldebaran.de
-5254
- Datang Telecom Technology CO., LTD
- youping Hu
- huyouping&21cn.com
-5255
- EuroPKI
- Antonio Lioy
- lioy&polito.it
-5256
- Freeonline .com. au Pty Ltd
- Matthew Walker
- matthew_walker&freeonline.com.au
-5257
- AXUS Microsystems Inc.
- Stephen Wang
- hlwang&axus.com.tw
-5258
- Zeta Technologies Co. Ltd
- Chow Kai Ching Karen
- karen&zetatran.com
-5259
- MATRA SYSTEMES & INFORMATION
- Philippe Gerard / Thierry Auger
- gerard&matra-ms2i.fr
-5260
- Digital Engineering
- Mark Cullen
- markc&digeng.co.uk
-5261
- LUTHER DANIEL
- Luther Daniel
- LGDAN&WEBTV.NET
-5262
- QWIKWIRE. NET
- Brian Crawford
- brian&investorsbeacon.com
-5263
- CAIS INTERNET
- Ed Van Horne
- e.vanhorne&caissoft.com
-5264
- Varian Medical Systems
- Mark P. Morris
- mmorris&oscs.varian.com
-5265
- TeleDanmark Erhverv, CTIUdvikling
- Henning Ebberup Peterson
- heepe&tdk.dk
-5266
- Johannes Gutenberg-Universitaet Mainz
- Carsten Allendoerfer
- Allendoerfer&Uni-Mainz.DE
-5267
- Hong Kong University of Science and Technology
- Lai Yiu Fai
- ccyflai&ust.hk
-5268
- IKEA IT CENTER AB
- Anders Osling
- anders.ostling&neurope.ikea.com
-5269
- The Fantastic Corporation
- Giuseppe Greco
- giuseppe.greco&fantastic.ch
-5270
- da6d Technologies
- David Spanburg
- da6d&spacely.net
-5271
- Comverse Network Systems
- Vitaly Lisovsky
- vlisovsk&comversens.com
-5272
- w-Trade Technologies
- Igor Khomyakov
- ikh&w-trade.com
-5273
- Unistra Technologies
- Igor Khomyakov
- ikh&w-trade.com
-5274
- UNIF/X
- Igor Khomyakov
- ikh&w-trade.com
-5275
- Malibu Networks
- Ross Roberts
- ross&malibunetworks.com
-5276
- Hearme.com
- Richard Katz
- richkatz&hearme.com
-5277
- SarangNET
- JA-HUN KU
- sarang&sarang.net
-5278
- Swisscom. AG
- Thomas Abegglen
- thomas.abegglen&swisscom.com
-5279
- 2Support Directory Solutions
- Rutger van Bergen
- rbergen&2support.nl
-5280
- Citi
- Brian Geoghegan
- brian.geoghegan&ssmb.com
-5281
- Graeffet Communications
- Thomas Aeby
- aeby&graeff.com
-5282
- Connected Systems
- David McClintock
- dcm&connectedsystems.com
-5283
- CheckFree Corporation
- Kelvin Tucker
- KTucker&CheckFree.com
-5284
- Filanet Corporation
- Jose A. Gonzalez
- jose&filanet.com
-5285
- Network Experts, Inc.
- Richard Hornbaker
- Richard&NetworkExperts.com
-5286
- CALENCE, Inc.
- Richard Hornbaker
- RHornbaker&Forte.net
-5287
- Persistent Systems Private Limited
- Shridhar Shukla
- shukla&pspl.co.in
-5288
- A-Plus Networks, Inc.
- Randy Rankin
- E-mail-aplus&quik.com
-5289
- VidyaWeb. com, Inc.
- Alak Deb
- alakd&aol.com
-5290
- Guide
- Per Sundberg
- per.sundberg&guide.se
-5291
- Bloemenveiling Aalsmeer
- Frans Woudstra
- frans.woudstra&vba.nl
-5292
- Pirus Networks
- Howard Hall
- hhall&ultranet.com
-5293
- HYOSUNG CORPORATION
- Jaehyoung, Shim
- jaehshim&hyosung.co.kr
-5294
- Infinity Trade Inc
- Sheri
- Shamsher&idt.net
-5295
- "DigitalThink Inc."
- Jon Skelton
- jons&digitalthink.com
-5296
- IPCell Technologies, Inc.
- Chuck Homola
- chomola&ipcell.com
-5297
- Baxworks, Inc.
- James H. Baxter
- jim.baxter&baxworks.com
-5298
- xputer.com
- Lousseief Abdelwahab
- aloussei&transtec.de
-5299
- WorldCast Systems (formerly 'AUDEMAT")
- Frederick Pannier
- ciracq&worldcastsystems.com
-5300
- Jetstream Communications
- Gene Yao
- gyao&jetstream.com
-5301
- PentaSafe, Inc.
- Kurt Goolsbee
- k.goolsbee&pentasafe.com
-5302
- Advanced Health Technologies
- Douglas Price
- price&ahtech.com
-5303
- IPmobile Inc.
- Hong Luo
- hluo&ipmobile.com
-5304
- Airslide Systems Inc.
- Roie Geron
- roie&airslide.com
-5305
- IIT KANPUR
- Narayana Murthy
- chitturi&iitk.ac.in
-5306
- XESystems, Inc.
- Scott Weller
- Scott.Weller&usa.xerox.com
-5307
- Ciprico, Inc.
- Brad Johnson
- bjohnson&ciprico.com
-5308
- SiemensS.A.(Portugal)
- Paulo Inacio
- Paulo.Inacio&net.siemens.pt
-5309
- EdelWeb SA
- Peter Sylvester
- contact&edelweb.fr
-5310
- Depository Trust & Clearing Corporation
- William Izzo
- wizzo&dtcc.com
-5311
- F&F Inc.
- Faiz Moinuddin
- ffaiz786&yahoo.com
-5312
- DIGICERT SDN
- Amir Suhaimi Nassan
- amir&digicert.com.my
-5313
- Revlis, Inc.
- Bradley D. Molzen
- bmolzen&revlisinc.com
-5314
- Baunwall A/S
- Michael Frandsen
- michaelf&baunwall.dk
-5315
- CCIT(Beijing Creative Century Information Technology)Co. Ltd.
- Yang Taohai
- thyang&chinatelecom.cninfo.net
-5316
- Guide Unusual
- Jan Stenvall
- Jan.Stenvall&unusual.se
-5317
- Adaptive Computer Development Corp.
- Troy Payne
- troypayne&mediaone.net
-5318
- Robert Bosch GmbH
- Dr. Philipp Schott
- oid&de.bosch.com
-5319
- EarthWatch Inc.
- D.Todd Vollmer
- tvollmer&digitalglobe.com
-5320
- Surety Technologies Inc.
- Wes Doonan
- ietf&surety.com
-5321
- Burrito.org
- Jason Kraft
- burrito&burrito.org
-5322
- PADL Software Pty Ltd
- Luke Howard
- lukeh&padl.com
-5323
- Telrad
- Hilla Hartman
- hilla.hartman&telrad.co.il
-5324
- Delta Networks Inc.
- Jones Huang
- jones.huang&delta.com.tw
-5325
- Cmgi
- Paul Kiely
- pkiely&cmgi.com
-5326
- LightChip, Inc.
- Kevin Short
- kshort&lightchip.com
-5327
- KIM Computing
- Paul Baldam
- pb&kimlab.com
-5328
- North Communications Inc.
- Trang A. Nguyen
- tnguyen&infonorth.com
-5329
- ShoreTel, Inc (formerly 'Shoreline Teleworks')
- Kevin Coyne
- kcoyne&shoretel.com
-5330
- Spacelink Systems
- Jim Fitzgerald
- jfitz&spacelink.com
-5331
- OI ELECTRIC CO., Ltd.
- Yasuaki Nakanishi
- yasuaki_nakanishi&ooi.co.jp
-5332
- Information Freeway
- Vanessa Schumert
- VanessaSchumert&24.25.217.87
-5333
- Celera Genomics
- Jim Jordan
- James.Jordan&celera.com
-5334
- START
- Zhang Da Rong
- zhangdr&start.com.cn
-5335
- Multifunction Products Association
- Craig Douglas
- admin&mfpa.org
-5336
- BlueKite.com
- James Leonard
- james_leonard&bluekite.com
-5337
- Ciprico, Inc.
- Brad Johnson
- bjohnson&ciprico.com
-5338
- ELDEC Corporation
- Kaz Furmanczyk
- kfurmanc&eldec.com
-5339
- VisioWave
- Thibault Dangreaux
- Thibault Dangreaux&visiowave.com
-5340
- CITI, S.A. de C.V.
- Marcelo Rodriguez
- crodrigu&citi.com.mx
-5341
- PC Network Design
- Jerry Sandusky
- jerry.sandusky&sharp.com
-5342
- Sensormatic
- Robert Venditti
- robert_venditti&swhouse.com
-5343
- Lone Wolf ComputingGeorge
- Giles
- gsgiles&inferno.lonewolfcomputing.com
-5344
- Originative Solutions Ltd.
- Paul Richards
- paul&originative.co.uk
-5345
- SUNGMI TELECOM ELECTRONICS CO., Ltd.
- Seung-Ok Lim
- solim&sungmi.co.kr
-5346
- SSM Health Care
- DNS Administrator
- DNSAdmin&ssmhc.com
-5347
- GE Harris Aviation Information Solutions, LLC
- Tom Berrisford
- thomas.berrisford&ae.ge.com
-5348
- TimeSpace Radio AB
- Paer Sjoeholm
- paer.sjoeholm&timespace.se
-5349
- Inalp Networks Inc.
- Peter Egli
- peter.egli&inalp.com
-5350
- Infotron System Corp
- Mariano Gallo
- mgallo&infotron.com
-5351
- ATM S.A.
- Jaroslaw Kowalski
- jarek&atm.com.pl
-5352
- Maelstrom
- Steve Ferris
- steve&maelstrom.org.uk
-5353
- EVS Broadcast Equipment
- Benoit Michel
- b.michel&evs-broadcast.com
-5354
- Simplement Ltd
- Tzvika Chumash
- tzvika&simplement.co.il
-5355
- Eland Technologies
- Mark Lenahan
- mlenahan&elandtech.com
-5356
- Object Oriented Pty Ltd.
- Daryl Wilding-Mcbride
- darylw&oopl.com.au
-5357
- Evans Computer Consulting
- Jeffrey R. Evans
- webmaster&evanscomputers.com
-5358
- enhanced Global Convergence Services (eGCS)
- Mary Slocum
- mclocum&egcsinc.com
-5359
- InnoVentry
- Christian du Croix deWilde
- cdewilde&innoventry.com
-5360
- Haedong
- Park Kaemyoung
- pigangel&haedong.re.kr
-5361
- Westbridge Design Ltd.
- Tim Riches
- timriches&compuserve.com
-5362
- QASYS CORP
- C. Figueroa
- cristian.figueroa&cgroupsa.com
-5363
- R. Smith Engineering Co.
- Gregory Swofford
- computer&web-store.net
-5364
- Certall Finland OY
- Petri Puhakainen
- petri.puhakainen&certall.fi
-5365
- Neartek, Inc.
- Mark Spitz
- Mark.Spitz&neartek.com
-5366
- Charlotte's Web Networks Ltd.
- Yoel ferrera
- yoel&cwnt.com
-5367
- Telena S.p.A.
- Daniele Trapella
- dtrapella&telena.it
-5368
- CoreExpress
- Michael Walters
- michael.walters&coreexpress.net
-5369
- APD Communications Limited
- Peter Stensones
- peter.stensones&apdcomms.co.uk
-5370
- BANCO ZARAGOZANO S.A.
- Banco Zaragozano
- comunicaciones&bancozaragozano.es
-5371
- NetSubject Canada, Inc.
- J. Di Paola
- j.dipaola&attcanada.net
-5372
- myCFO, Inc.
- Andrew Ryan
- andrewr&myCFO.com
-5373
- Open Telecommunications Limited
- Noel O'Connor
- noelo&ot.com.au
-5374
- Dirigo Incorporated
- Kevin Muldoon
- kevinm&dirigo.com
-5375
- BAE SYSTEMS, Tactical Comms (Filton)
- Mark Watkins
- mark.watkins&bae.co.uk
-5376
- Oleane
- Fabien Tassin
- fta&oleane.net
-5377
- TriNexus
- Homer Robson
- Homer.Robson&TriNexus.com
-5378
- PrairieFyre Software Inc.
- Clarke La Prairie
- clarke&prairiefyre.com
-5379
- Colonial State Bank
- Steve McJannet
- sjannet&sbnsw.com.au
-5380
- CDOT
- Mohammed Rafiq K
- kmdrafiq&cdotb.ernet.in
-5381
- SuperNova
- Ron Heusdens
- ronh&supernova.nl
-5382
- IRIS Technologies, Inc.
- Mark Bereit
- mbereit&iristech.com
-5383
- iFleet Inc.
- John Quinn
- jquinn&ifleet.com
-5384
- Tsuruki Promotions
- Michiko Nagai
- tsurukipro&mc.net
-5385
- City-NET CZ, s.r.o.
- Ivo Machulda
- im&point.cz
-5386
- M-S Technology Consultants
- R. Mike Smith
- ms4260&gte.net
-5387
- HyperFeed
- Ken Felix
- kfelix&hyperfeed.com
-5388
- Network Alchemy Ltd.
- Imerio Ballarini
- imeriob&networkalchemy.co.uk
-5389
- Inter-Tel
- Sapna Natarajan
- Sapna_Natarajan&inter-tel.com
-5390
- OPNET Technologies Co., Ltd.
- K. T. Wu
- kwu&opnet.com.tw
-5391
- Tyco Submarine Systems Ltd.
- Tom Kunz
- tkunz&submarinesystems.com
-5392
- "Online Creations", Inc.
- Anil Gurnani
- anil&oncr.com
-5393
- Renault
- Witold Klaudel
- witold.klaudel&renault.fr
-5394
- Gateway Inc.
- John Sarraffe
- john.sarraffe&gateway.com
-5395
- Laurel Networks, Inc.
- Ramesh Uppuluri
- ramesh&laurelnetworks.com
-5396
- BigChalk.com
- Jerry D. Hedden
- jerry_hedden&bigchalk.com
-5397
- Standard and Poor's Fund Services
- Simon Churcher
- simonc&micropal.com
-5398
- ElephantX
- Anil Gurnani
- anil&oncr.com
-5399
- Extremis
- George Cox
- gjvc&extremis.net
-5400
- Evercom systems International Inc.
- Peter Cehn
- rnd&evercom9.com.tw
-5401
- Master Soft
- Alberto Pastore
- alberto&pastore.cc
-5402
- IDF
- Yaron Zehavi
- yaronz&hotmail.com
-5403
- Vircom
- Clive Paterson
- clive.paterson&vircom.com.au
-5404
- eConvergence Pty Ltd.
- Steve McJannet
- ifax1&hotmail.com
-5405
- Start Printer equipment co. Ltd.
- Jiang-xufeng
- jiangxf&start.com.cn
-5406
- Nick Conte, Inc.
- Nicholas J. Conte, Jr.
- njcontejr&msn.com
-5407
- NetSupport GmbH
- Gerd Bierbrauer
- gbi&netsupport-gmbh.de
-5408
- Intellitel Communications
- Jyri Syvaoja
- jyri.syvaoja&intellitel.com
-5409
- East West Consulting K.K.
- Conan O'Harrow
- oharrow&ewc.co.jp
-5410
- Les Howard
- Les Howard
- les&lesandchris.com
-5411
- SignalSoft Corporation
- Maureen O'Neill
- moneill&signalsoftcorp.com
-5412
- Zantaz.com, Inc.
- Ramesh Gupta
- rgupta&zantaz.com
-5413
- PeopleWeb CommunicationsInc.
- William Webber
- william&live.com.au
-5414
- John & Associate
- Frank Chan
- fchan100&netvigator.com
-5415
- Fujitsu Asia Pte Ltd
- Choy Kum Wah
- choykw&sg.fujitsu.com
-5416
- Nesral
- Bo Philip Larsen
- bpl&nesral.dk
-5417
- ABSA Group Ltd.
- Gideons Serfontein
- gideons&absa.co.za
-5418
- Fortis, Inc.
- Dan Bozicevich
- Dan.Bozicevich&us.fortis.com
-5419
- Cambridge Broadband Ltd.
- John Naylon
- snmp&cambridgebroadband.com
-5420
- Spider Technologies
- Michael J. Donahue
- mjd2000&email.com
-5421
- Marietta Dodge Inc.
- Richard J.Bishop
- mdcars&bellsouth.net
-5422
- RHC Enterprises Inc.
- Richard J. Bishop
- mdcars&bellsouth.net
-5423
- McLeodUSA
- Ralph Trcka
- rtrcka&mcleodusa.com
-5424
- Columbia Diversified Services
- Naeem Igbal
- naeem&cdsx.org
-5425
- NetSpace Online Systems
- Aris Theocharides
- aris&netspace.net.au
-5426
- GadLine Ltd.
- Yossi Zadah
- yossi&gadline.co.il
-5427
- stroeder.com
- Michael Ströder
- michael&stroeder.com
-5428
- ENDFORCE, Inc.
- Mark Anthony Beadles
- mbeadles&endforce.com
-5429
- Propack Data Soft- und Hardware Entwicklungs GmbH
- Michael Stroder
- x_mst&propack-data.com
-5430
- Masterguard GmbH
- Tobias Grueninger
- tobias.grueninger&masterguard.de
-5431
- LM Digital
- Hans Nawrath Meyer
- nawrath&redlink.cl
-5432
- SightPath
- Mark Day
- mday&sightpath.com
-5433
- Netonomy
- Guillaume Le Stum
- gls&netonomy.com
-5434
- Advanced Hi-Tech Corporation
- Henry Lai
- ycl&aht.com
-5435
- OvisLink Corp
- Span Hsu
- ovislink&ms24.hinet.net
-5436
- OPEN
- Dipl.Ing Florek
- open&ba.telecom.sk
-5437
- Pensar Corporation
- Richard Baxter (CTO)
- rbaxter&pensar.com
-5438
- Utrecht School of Arts
- Gerard Ranke
- gerard.ranke&kmt.hku.nl
-5439
- Parallel Ltd.
- Tim Moore
- Tim.Moore&parallel.ltd.uk
-5440
- Primeon, Ltd.
- Stewart Hu
- shu&primeon.com
-5441
- The Timken Company
- Terry A. Moore
- tmoore&timken.com
-5442
- New Zealand Post Limited
- Ron Hooft
- Ron.Hooft&nzpost.co.nz
-5443
- Nekema.com
- Omer Kose
- omerk&nekema.com
-5444
- Joe Minineri
- Joe Minieri
- jminieri&mindspring.com
-5445
- Metrostat Technologies, Inc.
- John Kevlin
- John.Kevlin&Metrostat.com
-5446
- Skygate Technology Ltd
- Pete Chown
- pc&skygate.co.uk
-5447
- Aeolon Research
- Michael Alyn Miller
- malyn&aeolon.com
-5448
- Kykink Communications Corp
- Kenny Chou
- kennychou&kylink.com.tw
-5449
- OneNetPlus.com
- Joseph Sturonas
- Joe.Sturonas&OneNetPlus.com
-5450
- I-Link Inc.
- Rami Shmueli
- rami&vianet.co.il
-5451
- SEGAINTERSETTLE AG
- Marcel Schuehle
- marcel.schuehle&sisclear.com
-5452
- Business Layers
- Ziv Katzman
- zivk&businesslayers.com
-5453
- Intelis, Inc
- Leonard Thornton
- LeonardT&Intelis-inc.com
-5454
- Trango Systems, Inc.
- Christopher A. Gustaf
- chris&trangosys.com
-5455
- Artemis Management Systems
- Murray A. Snowden
- Murray_Snowden&artemispm.com
-5456
- FOCUS Online GmbH
- Robert Wimmer
- rwimmer&focus.de
-5457
- CastleNet Technology Inc.
- Eugene Chen
- eugene&castlenet.com.tw
-5458
- Gupta
- Alok Gupta
- a.dadarya&mailcity.com
-5459
- SANtools, Inc
- David A. Lethe
- david&santools.com
-5460
- BroadLink Communications, Inc.
- John Whipple
- john&broadlink.com
-5461
- KSI Inc
- Dick Mosehauer
- rmosehauer&ksix.com
-5462
- Resume.Com
- Marc Poulin
- mcp&resume.com
-5463
- Eduardo Fermin
- Eduardo Fermin
- ejfermin&hotmail.com
-5464
- Manukau Institute of Technology
- Christopher Stott
- chris&manukau.ac.nz
-5465
- eBusiness Technologies
- David Parker
- dparker&ebt.com
-5466
- International Biometric Society, IBS
- Nanny Wermuth
- nanny.wermuth&uni-mainz.de
-5467
- TELEFONICA INVESTIGACION Y DESARROLLO
- Javier Marcos Iglesias
- jmarcos&tid.es
-5468
- Actelis Networks
- Edward Beili
- edward.beili&actelis.com
-5469
- Codebase
- Kevin Lindley
- kevin.lindley&codebase.demon.co.uk
-5470
- Transparity Limited
- Teow-Hin Ngair
- sysadmin&transparity.com
-5471
- Switzerland
- Grogg Peter
- domainmanage&post.ch
-5472
- timeproof
- Jorg Seidel
- seidel&timeproof.de
-5473
- AlgaCom
- Stefan Mueller
- stefan.mueller&algacom.ch
-5474
- Ericsson Ahead Communications Systems GmbH
- Martin Weiss
- martin.weiss&aheadcom.com
-5475
- Thysys Engineering
- Steven Pitzl
- spitzl&thysys.com
-5476
- Apex Inc.
- Todd Davis
- todd.davis&apex.com
-5477
- Netattach, Inc
- Mike Young
- myoung&netattach.com
-5478
- Critical Path Berlin/LEM
- Oliver Korfmacher
- oliver.korfmacher&cp.net
-5479
- Pinnacle Data Systems Inc (PDSi)
- Tony Beckett
- tony.beckett&pinnacle.com
-5480
- T. Sqware Incorporated
- Ronald Naismith
- rnaismith&tsqware.com
-5481
- Agencia de Certificion Electronica
- Miguel Angel Perez Acevedo
- mapa&ace.es
-5482
- Murakami Electro-Communication Laboratories, Inc.
- Mamoru Murakami
- murakami&sphere.ad.jp
-5483
- Netensity, Inc.
- Manlio Marquez
- mmarquez&netensity.com
-5484
- University of the Aegean
- Thomas Spyrou
- tsp&aegean.gr
-5485
- The OPEN Group Ltd
- Jeremy Smith
- jeremy.smith&open.co.nz
-5486
- China Merchants Bank
- Xiong Shaojun
- xsj&cmbchina.com
-5487
- Multitrade Spa
- Luca Ceresa
- luca.ceresa&ilsole24ore.it
-5488
- Temblast
- Renate Pyhel
- snmp&temblast.com
-5489
- ALS International Ltd.
- Alan Ramsbottom
- acr&als.co.uk
-5490
- CommNav, Inc.
- Andrew Libby
- alibby&perfectorder.com
-5491
- UPS Manufacturing
- Mr. Zampieri & Mr.Pesente
- e.pesente&riello-ups.com;m.zampieri&riello-ups.com
-5492
- Telephia
- Andrew Northrop
- anorthrop&telephia.com
-5493
- Palm Computing
- Fermin Soriano
- fermin_soriano&palm.com
-5494
- Marathon Innovations, Inc.
- Wayne Franklin
- waynef&marathoninnovations.com
-5495
- Convergence Equipment Company
- Mike Brent
- mike&gxc.com
-5496
- GEMPLUS
- Philippe Leblanc
- philippe.leblanc&gemplus.com
-5497
- Trondent Development Corp.
- David Wood
- dwood&trondent.com
-5498
- Kardinia Software
- Joseph Fernandez
- jfernand&kardinia.com
-5499
- YhKim Co. Ltd.
- So-Young Hwang & Young-Ho Kim
- young&juno.cs.pusan.ac.kr & yhkim&hyowon.pusan.ac.kr
-5500
- Gemeentelijk Havenbedrijf Rotterdam
- Jouke Dijkstra
- jouke.dijkstra&port.rotterdam.nl
-5501
- NTT PC Communications, Inc.
- Mamoru Murakami
- murakami&nttpc.co.jp
-5502
- Canon Aptex Inc.
- Seiji Niida
- sniida&cai.canon-aptex.co.jp
-5503
- Orinda Technology Group
- Min Yu
- yumin&home.com
-5504
- Zhone Technologies, Inc.
- Allen Goldberg
- agoldberg&zhone.com
-5505
- Metrostat Technologies, Inc.
- John Kevlin
- John.Kevlin&Metrostat.com
-5506
- Digital-X, Inc.
- Ramesh Sharma
- rsharma&digital-x.com
-5507
- Tight Informatics
- Dennis Mulder
- dennis.mulder&port.rotterdam.nl
-5508
- SWOD Org.
- Dennis Mulder
- dennis.mulder&port.rotterdam.nl
-5509
- B&E Construction Co. Dennis
- Mulder
- dennis.mulder&port.rotterdam.nl
-5510
- PrismTech
- Steve Osselton
- steve&prismtechnologies.com
-5511
- syscall() Network Solutions GbR
- Olaf Schreck
- chakl&syscall.de
-5512
- GMD FIRST
- Bernd Oestmann
- boe&first.gmd.de
-5513
- iXL
- MIS Admin
- tocadmin&ixl.com
-5514
- Timeline Technology Inc.
- Kevin Armstrong
- karmstrong&timelinetech.com
-5515
- Directory Tools and Application Services, Inc.
- Bruce Greenblatt
- bgreenblatt&directory-applications.com
-5516
- SecureWorks, Inc.
- Shu Dong
- sdong&secureworks.net
-5517
- Rapid5 Networks
- Sidney Antommarchi
- sid&rapid5.com
-5518
- TDS Telecom
- Jim OBrien
- jim.obrien&tdstelecom.com
-5519
- LSITEC
- Volnys Borges Bernal
- volnys&lsi.usp.br
-5520
- Alfred Wegener Institute for Polar and Marine Research
- Siegfried Makedanz
- smakedanz&AWI-Bremerhaven.DE
-5521
- St. John Health System
- Pamela J.Prime
- pam.prime&stjohn.org
-5522
- Cybernet Corporation
- Shahril Ghazali
- shahrilg&cybernetcorporation.org
-5523
- GRCP
- Jean-Pierre Gourdon
- jpg&compuserve.com
-5524
- Emory University
- Alan Dobkin
- ADobkin&Emory.Edu
-5525
- SSF
- Vad Osadchuk
- ssf65&usa.net
-5526
- Adero, Inc.
- Paul Biciunas
- pbiciunas&adero.com
-5527
- Context Systems Group
- Eolo Lucentini
- elucentini&csg.it
-5528
- NetBotz
- John Fowler
- john&netbotz.com
-5529
- Neoforma.com
- Girish Venkat
- girish&neoforma.com
-5530
- Cescom Inc.
- Alex Fournier
- alex.fournier&cescom.ca
-5531
- Mien Information Solutions
- Diane Kiesel
- dkiesel&mien.com
-5532
- Q-Telecell GmbH
- Holger Vogel
- holger.vogel&iq-wireless.com
-5533
- WideAwake Ltd
- Patrick Knight
- p.knight&wideawake.co.uk
-5534
- Vogon AB
- Daniel Lundqvist
- daniel.lundqvist&vogon.se
-5535
- 3rd Generation Partnership Project 2 (3GPP2)
- Allen Long
- along&cisco.com
-5536
- Quintus Corporation
- Kevin McKenna
- kevin.mckenna&quintus.com
-5537
- Comdial Corporation
- Doug Whitman
- dwhitman&comdial.com
-5538
- Micron Tech. Information co. kr
- Bum Soo Park
- sworn&netian.com
-5539
- Cybertek Holdings
- Buyle You
- ybl&cybertek.co.kr
-5540
- RWTH Aachen University
- Guido Bunsen
- Bunsen&itc.RWTH-Aachen.DE
-5541
- Paragea Communications, Inc
- Laique Ahmed
- lahmed&paragea.com
-5542
- eOn Communications Corporation
- Dave A. Kelly
- dkelly&eoncc.com
-5543
- INIEMP HOLDINGS CORPORATION S.L.
- Alejandro Sanchez Muro
- alessandro&mundivia.es
-5544
- Thomson-CSF Systems Canada
- Jeff Young
- jdyoung&thomson-csf.ca
-5545
- TANTAU Software Inc.
- Sanjay Laud
- Sanjay.Laud&tantau.com
-5546
- MailVision Inc.
- Yossi Cohen
- yossi&talkmail.com
-5547
- BSQUARE Corporation
- Paula Tomlinson
- snmp&bsquare.com
-5548
- Cobalt Networks
- Larry Coryell
- lcoryell&cobalt.com
-5549
- TimesTen Performance Software
- Joe Chung
- chung&timesten.com
-5550
- Monggo, Inc.
- Edgar Tu
- edgar&keymail.com
-5551
- Oscilloquartz, S.A.
- Jorge Tellez
- tellez&oscilloquartz.com
-5552
- Air Atlanta Icelandic
- Jon Agust Reynisson
- jonni&atlanta.is
-5553
- Macromedia eBusiness Solutions
- Jex
- ariadev&andromedia.com
-5554
- SpotCast Communications
- Eric Johnston
- ejohnst&sccsi.com
-5555
- Authentic8 pty Ltd
- Philip Mullarkey
- Philip.Mullarkey&authentic8.com
-5556
- Service Factory
- Torsten Jacobsson
- torsten&servicefactory.com
-5557
- OneMain.com
- John Clinton
- john.clinton&eng.onemain.com
-5558
- S-Link Corporation
- Seamus Gilchrist
- sgilchrist&ss7-link.com
-5559
- Vitria Technology, Inc.
- Matthew Doar
- iana-snmp&vitria.com
-5560
- The Color Registry
- Gwen St. Clair
- webmaster&adoptacolor.com
-5561
- 2nd Wave, Inc.
- Chris Cowan
- chris.cowan&2nd-wave.com
-5562
- Redknee Inc.
- Joel Hughes
- joel.hughes&redknee.com
-5563
- Ola Internet
- Antonio Narvaez
- anarvaez&olanet.es
-5564
- Omega Enterprise
- Dana Dixon
- ddixon11&gvtc.com
-5565
- Syswave Co., Ltd
- Chang Pil Kim
- scarface&syswave.com
-5566
- VisionGlobal Network Corporation
- Jess Walker
- jwalker&vgnlabs.com
-5567
- Riverstone Networks
- Michael MacFaden
- mrm&riverstonenetworks.com
-5568
- Southview Technologies, Inc.
- Scott Parker
- scott.parker&southernview.com
-5569
- Soluzioni Tecnologiche Bancarie s.r.l.
- Michele Marenzoni
- marenz&tin.it
-5570
- Sony Pictures Entertainment
- Marc-Alan Dahle
- marc-alan_dahle&spe.sony.com
-5571
- GetThere.Com
- Mani Balasubramanian
- mani&getthere.com
-5572
- HoTek TechnologyCo., Ltd.
- Simon Hsieh
- hansome&ms1.hinet.net
-5573
- Tong
- Sprinna Wu
- bonbear&netease.com
-5574
- BankEngine Inc.
- Alicia da Conceicao
- alicia&bankengine.com
-5575
- CertEngine Inc.
- Alicia da Conceicao
- alicia&certengine.com
-5576
- T.I.L.L. Photonics GmbHAnselm Kruis
- (Network Mangagement Department)
- admin&till-photonics.de
-5577
- Persimmon Development
- Kevin Timm
- kevindtimm&home.com
-5578
- New Mexico State University
- Ian Logan
- ian&nmsu.edu
-5579
- Mercata, Inc.
- Shanke Liu
- shankel&mercata.com
-5580
- EXEJone
- Gkhrakovsky
- gkhrakovsky&hotmail.com
-5581
- Communications Networks of Africa (GH) Ltd (NETAFRICA)
- Bill Kingsley
- kntb&hotmail.com
-5582
- iTRUST Solutions AG
- Markus Glaus
- markus.glaus&itrustsolutions.com
-5583
- MD Information Systems
- Alexander Rovny
- rovny&mdis.ru
-5584
- General Bandwidth
- Cuong Nguyen
- cuong.nguyen&genband.com
-5585
- Very Clever Software Ltd.
- Mike Pellatt
- M.Pellatt&vcs.co.uk
-5586
- IPWireless Inc.
- Andrew Williams
- awilliam&ipwireless.com
-5587
- Flughafen Muenchen GmbH
- Harald Englert
- harald.englert&munich-airport.de
-5588
- Thomcast Communication, Inc.Comwave Division ("Comwave")
- Carl P. Ungvarsky
- cungvarsky&thomcastcom.com
-5589
- Synopsys, Inc.
- Hostmaster
- hmaster&synopsys.com
-5590
- Marimba Inc.
- Simon Wynn, Engineering Manager
- simon&marimba.com
-5591
- SCTE
- standards staff
- standards&scte.org
-5592
- Wilson & Sanders, Inc.
- Michael Wilson
- brainfried&earthlink.net
-5593
- Magnum Technologies Inc.
- Tim Hadden
- haddent&magnum-tech.com
-5594
- Koankeiso Co., Ltd.
- Fumihito Sone
- sone&koan.co.jp
-5595
- Ingrian Systems, Inc
- Glenn Chisholm
- glenn&thecount.net
-5596
- Tandberg ASA
- Stig A. Olsen
- stig.arne.olsen&tandberg.no
-5597
- Meinberg Funkuhren
- Martin Burnicki
- martin.burnicki&meinberg.de
-5598
- Submarine Warfare Systems Centre
- David Laarakkers
- David.laarakkers&dao.defence.com.au
-5599
- Comp Sci & Eng, 'De Montfort University'
- Jonathan Hughes
- jrh&dmu.ac.uk
-5600
- Clearstream Services
- Paul Rees
- prees&cedelglobalservices.com
-5601
- Clearstream Banking
- Paul Rees
- press&cedelglobalservices.com
-5602
- T/R Systems, Inc.
- Mike Barry
- mbarry&trsystems.com
-5603
- Capital One Financial Services
- Tony Reynolds
- tony.reynolds&capitalone.com
-5604
- digit-safe
- Allan Wind
- wind&freewwweb.com
-5605
- William Data Systems Ltd.
- Liam Hammond
- liam.hammond&willdata.com
-5606
- Cerplus SAPierre
- Chassigneaux
- pierre.chassigneux&certplus.com
-5607
- Erwann ABALEA
- Erwann ABALEA
- erwann&abalea.com
-5608
- Red Planet Technologies
- Brant Jones
- brant&redplanettechnologies.com
-5609
- Smartleaf, Inc.
- Daniel Hagerty
- hag&smartleaf.com
-5610
- Exbit TechnologyA/S
- Morten Jagd Christensen
- mjc&exbit.dk
-5611
- vmunix.org
- Torsten Blum
- torstenb&vmunix.org
-5612
- Korea Data Communications
- yu-mi, Park
- jenesys&kdcre.co.kr
-5613
- tdressler.net (formerly 'SQLcompetence')
- Thomas Dressler
- tdressler&tdressler.net
-5614
- SonyBPE
- Nneka Akwule
- nneka.akwule&spd.sonybpe.com
-5615
- Inherit S AB
- Roland Hedayat
- roland&inherit.se
-5616
- TEKOPS
- David Beecher
- dbeecher&tekops.com
-5617
- Trio Communications 2000 Pty. Ltd
- Andreas Mann
- Andreas&trio.com.au
-5618
- WareNet Inc.
- Noah Campbell
- develop&ware.net
-5619
- Amaranth Networks Inc.
- Daniel Senie
- dts&senie.com
-5620
- CFX Communications
- Brian Caverley
- cfxi&home.com
-5621
- Heriot-Watt University
- David Morriss
- D.J.Morriss&hw.ac.uk
-5622
- DreGIS GmbH
- Gunter Baumann
- gunter.baumann&DreGIS.com
-5623
- KPMG
- Steve Christensen
- schristensen&kpmg.com
-5624
- Enterasys Networks
- Charles N. McTague
- cmctague&enterasys.com
-5625
- A. Gell, CxA
- Allen Gell
- a.gell&196.3.74.237
-5626
- Internet Barter Inc.aka Bartertrust.com
- Thomas J. Ackermann
- tjack&bartertrust.com
-5627
- Hitachi Process Computer Engineering, Inc.
- Tatsuya Kawamata
- kawamata&hipro.hitachi-hipro.co.jp
-5628
- X.O. Soft, Ltd
- Sergei Kaplan
- serg&xosoft.com
-5629
- Continuus Software Corporation
- Van Hoang
- vhoang&continuus.com
-5630
- ExiO Communications Inc.
- Jay Hong
- jhong&exio.com
-5631
- Alliance Systems, Inc.
- John Morrison
- john.morrison&alliancesystems.com
-5632
- TelePassport Hellas S.A.
- Ikonomidis Kyriakos
- kikonomidis&telepassport.gr
-5633
- BASF Computer Services GmbH
- Damian Langhamer
- damian.langhamer&basf-c-s.de
-5634
- Universiteit van Amsterdam
- Marijke Vandecappelle
- m.i.vandecappelle&uva.nl
-5635
- Dale W. Liu
- Dale W. Liu
- dliu&pipeline.com
-5636
- Dignos EDV GmbH
- Kai Morich
- kai.morich&dignos.com
-5637
- IDN Technology Inc.
- Luhai
- luhai&bupt.edu.cn
-5638
- PK Electronics
- Lee Bong Peng
- bplee&pkelectronics.com.my
-5639
- Dept. Of Biology Western KY University
- Maxx Christopher Lobo
- maxx&linux.wku.edu
-5640
- Lama Law Firm
- Ciano Lama
- Ciano4&aol.com
-5641
- Anthem Inc.
- Matt King
- matt.king&anthem.com
-5642
- MicroCast, Inc.
- Mark Thibault
- mthibault&microcast.net
-5643
- University of Arizona
- Todd Merritt
- tmerritt&u.Arizona.EDU
-5644
- PassEdge
- George Peden
- george&passedge.com
-5645
- BowStreet Software
- Michael Burati
- mburati&bowstreet.com
-5646
- Onyx Networks
- Jim Pfleger
- jpfleger&onyx.net
-5647
- Emperative, Inc.
- Tim McCandless
- tmccand&emperative.com
-5648
- L-3 Communications (PrimeWave Communications)
- Muralidhar Ganga
- mganga&pwcwireless.com
-5649
- Webswap Inc.
- Vikram D. Gaitonde
- vikram&webswap.com
-5650
- Merck & Co., Inc.
- David Van Skiver
- david_van_skiver&merck.com
-5651
- Maipu Electric Industrial Co., Ltd
- Zheng Xue
- maipu2&mail.sc.cninfo.net or tonysnow&263.net
-5652
- Kraig Sigman
- Kraig Sigman
- deadeye&laf.cioe.com
-5653
- CSP
- Massimo Milanesio
- milanesio&csp.it
-5654
- Ando Electric Corporation
- Kazuki Taniya
- taniya-k&ando.co.jp
-5655
- P-Cube Ltd.
- Rony Gotesdyner
- ronyg&p-cube.com
-5656
- Monmouth University
- Robert Carsey
- rcarsey&monmouth.edu
-5657
- Universidad de La Coruna
- Manuel J. Posse
- mposse&udc.es
-5658
- ISL, Institute of Shipping Economics and Logistics
- Marc Brueckner
- snmp&isl.org
-5659
- CoProSys Inc.
- Ales Makarov
- amakarov&coprosys.cz
-5660
- XI'AN DATANG TELEPHONE Corp.
- Weiyuan
- yw2000&263.net
-5661
- T-Mobile
- Sean Hinde
- sean.hinde&t-mobile.co.uk
-5662
- Nordic Global Inc.
- Holger Kruse
- kruse&nordicglobal.com
-5663
- TecnoLogica Informatica
- Antonio Marcos Ferreira Soares
- amfs&tecnologica.com.br
-5664
- Monastery of the Glorious Ascension, Inc.
- Fr. Maximos Weimar
- frmaximos&monastery.org
-5665
- Vertical One, Inc.
- Dima Ulberg
- dulberg&verticalone.com
-5666
- Servevcast
- Philip Daly
- philip&servecast.com
-5667
- Teldata Computer Industries, Inc.
- Derek Williams, Vic Mitchell
- teldatac&mindspring.com
-5668
- Mycroft Inc.
- Jon Freeman
- jon.freeman&mycroftinc.com
-5669
- Digital Island
- Maureen Byrne
- mbyrne&digisle.net
-5670
- Redwood Technologies Ltd.
- Kevin Robertson
- kpr&redwoodtech.com
-5671
- Horus IT GmbH
- Brigitte Jellinek
- oid&horus.at
-5672
- CIENA Corporation (formerly 'ONI Systems Corp.')
- Terry Gasner
- tgasner&ciena.com
-5673
- eConvergent, Inc.
- Michael Jones
- michael.jones&econvergent.com
-5674
- Texcel Technology Plc.
- Andy McLeod
- Andy.McLeod&texceltechnology.com
-5675
- Genosys Technology Management Inc.
- Jerry Wong
- jwong&genosys.net
-5676
- DataFlow/Alaska, Inc.
- Eric Hutchins
- eric&dataflowalaska.com
-5677
- Clunix, Inc.
- Yongjae Lee
- yjlee&clunix.com
-5678
- Stalker Software, Inc
- Vladimir Butenko
- butenko&stalker.com
-5679
- EWE & EVE's Gourds & Things
- Eugene & Elaine Endicott
- eweeve&fidnet.com
-5680
- Windsor Group
- Brian Dorminey
- dorminey&popmail.com
-5681
- fruittm
- Ari Jb Ferreira
- arijbf&zipmail.com.br
-5682
- Synergon Ltd.
- Laszlo Vadaszi
- www.synergon.hu
-5684
- Metro Optix, Inc.
- Beecher Adams
- beecher.adams&metro-optix.com
-5685
- DataLink SNMP Solution
- David Cardimino
- dcardimino&datalinksnmp.com
-5686
- A H Computer Company
- Shawky Ahmed
- shawky&idsc1.gov.eg
-5687
- Icon Laboratories, Inc.
- Alan Grau
- alan_grau&icon-labs.com
-5688
- StrataSource, Inc.
- Mark D. Nagel
- mnagel&stratasource.com
-5689
- Net & Sys Co., Ltd
- Hansen Hong
- hansenh&hitel.net
-5690
- Agri-Com Holdings
- Hendri Du toit
- afm&bhm.dorea.co.za
-5691
- SilverPlatter Information
- Kevin Stone
- kstone&silverplatter.com
-5692
- Kilfoil Information Technologies, Inc.
- John J. Kilfoil
- jk&kilfoil.com
-5693
- Accordion Networks
- Dharini Hiremagalur
- dharini&accordionnetworks.com
-5694
- Integrated Digital Solutions Limited
- Trevor Turner
- trevor.turner&ids.co.nz
-5695
- bbq.com
- Drew Riconosciuto
- drew&bbq.com
-5696
- Walter Graphtek GmbH
- Peter Jacobi
- pj&walter-graphtek.com
-5697
- HanseNetTelefongesellschaft mbH
- Peter Evans
- evans&hansenet.com
-5698
- Digitrans
- Alan Gustafson
- asgustafson&hotmail.com
-5699
- Cornerstone Solutions Corporation
- Karl Wagner
- khwagner&cornerstonecorp.com
-5700
- University of the West Indies
- Feisal Mohammed
- feisal&uwi.tt
-5701
- Maple Networks, Inc.
- Ravi Manghirmalani
- ravi&maplenetworks.com
-5702
- Touch Technology International
- Youri Baudoin
- ybaudoin&touchtechnology.com
-5703
- NVIDIA Corporation
- Mark Krueger
- mkrueger&nvidia.com
-5704
- CITGO Petroleum Corporation
- Rick Urdahl
- rurdahl&citgo.com
-5705
- DTA
- Don Tuer
- dtaadv&ionsys.com
-5706
- LGS Group Inc.
- Don Tuer
- Don_Tuer&lgs.com
-5707
- Fiberspace Unlimited, LLC
- Russ Reisner
- russ&fiberspace.net
-5708
- CTS Network Services
- Jim Fitzgerald
- jfitz&cts.com
-5709
- EDS/CFSM
- Robert Meddaugh
- robert.meddaugh&eds.com
-5710
- Wellknit
- Aruna Sangli
- asangli&wellknit.com
-5711
- ECCS, Inc.
- Dan Davis
- dand&eccs.com
-5712
- System Integrators, Incorporated
- Richard Martin
- rmartin&sii.com
-5713
- Niksun Inc.
- Kerry Lowe
- klowe&niksun.com
-5714
- Insh_Allah
- Gerrit E.G. Hobbelt
- Ger.Hobbelt&insh-allah.com
-5715
- Enigma Enterprises
- Douglas Fraser
- douglas.fraser&perth.ndirect.co.uk
-5716
- WebSpectrum Software Pvt. Ltd.
- Rathnakumar K S
- info&wsspl.com
-5717
- UUcom
- Matthew Whalen
- dakota&uucom.com
-5718
- Cellit, Inc.
- Jeff Stout
- jstout&cellit.com
-5719
- PNC Financial Services Group
- Jayme A. DiSanti
- jayme.disanti&pncbank.com
-5720
- iMimic Networking, Inc.
- Y. Charles Hu
- ychu&imimic.com
-5721
- IntellOps
- Mitch Shields
- mshields&intellops.com
-5722
- OPNET Technologies, Inc (formerly 'Altaworks Corporation')
- Edward Macomber
- tmacomber&opnet.com
-5723
- SAMAC Software GmbH
- Markus Weber
- markus.weber&samac.com
-5724
- Cicero Communications, Inc.
- Deborah Scharfetter
- deborah&scharfetter.com
-5725
- Xel Communications
- Marcel Wolf
- wolfman&xel.com
-5726
- Lyondell Chemical Company
- James Epperson
- james.epperson&lyondell.com
-5727
- Smart Card Applications Pty Limited
- Jon Hughes
- jon.hughes&smartcard.com.au
-5728
- K Ring Technologies
- Simon P. Jackson
- jacko&kring.co.uk
-5729
- SQLI
- Stephane Cachat
- scachat&sqli.com
-5730
- Simpson Professional Services
- Stephen Simpson
- steve&sybase-dba.com
-5731
- DJM Enterprises
- Dan Maus
- dan.oid&MyNet.org
-5732
- One, Inc - Plano
- Kent Perrier
- kent.perrier&oneco.net
-5733
- Dept.3,ISCAS(Institute of Software, the Chinese Academyof Sciences
- Mr. Wu Zhimei
- WZM&isdn.iscas.ac.cn
-5734
- FABRICA NACIONAL DE MONEDA Y TIMBRE - REAL CASA DE LA MONEDA
- Victor Jimenez
- vjimenez&fnmt.es
-5735
- EBSnet Inc.
- Sarah Richardson
- sarah&ebsnetinc.com
-5736
- Power Conversion Products, LLC
- Brian Click
- brianc&pcp.com
-5737
- E-Commerce Enterprises, LLC
- Gabrielle Mancuso Alexandra
- Gabrielle&mail.com
-5738
- Vovida Networks
- Tom Maneri
- tmaneri&vovida.com
-5739
- Xpeed, Inc.
- Sang Park
- sang.park&xpeed.com
-5740
- Birionic Pvt Ltd
- Anil/Leekha
- leekhaanil&usa.net
-5741
- a2zcom
- Anil/Leekha
- leekhaanil&usa.net
-5742
- S.S.C. 'HENGELO'
- T. Smit
- ssc&planet.nl
-5743
- GT Group Telecom Services Corp.
- George Macri
- gmacri&gt.ca
-5744
- TARSEC Inc.
- Pascal Buchbinder
- buchbinder&tarsec.com
-5745
- Ericsson Nikola Tesla d.d.
- Sebastijan Mrkus
- sebastijan.mrkus&etk.ericsson.se
-5746
- Lanex Sp. z o.o.
- Dariusz Kusinski
- design&lanex.lublin.pl
-5747
- Bluetail AB
- Martin Bjorklund
- mbj&bluetail.com
-5748
- Applied Expert Systems
- David Cheng
- davec&aesclever.com
-5749
- TGS-NOPEC Geophysical Company
- Rebekah Hayes
- rebekah&tgsnopec.com
-5750
- General Mills
- Mike Meinz
- Mike.Meinz&GenMills.com
-5751
- Illumination Enterprises, Inc.
- Christopher J. Dole
- ChrisDole&IEI-Soft.com
-5752
- HyperSoft, Inc.
- Fred Waite
- fwaite&hypersoft.net
-5753
- University of Maribor
- Prof. Zarko CUCEJ, Ph.D.
- zarko.cucej&uni-mb.si
-5754
- Clearstream International
- Phil Ratcliffe
- pratcliffe&clearstream.net
-5755
- ITS (UK) Ltd.
- Kim
- domaindetectives&usa.net
-5756
- Supertel , JSC
- Sergei Lebedev
- ls&supertel.ru
-5757
- Trilithic
- Gregg Rodgers
- grodgers&trilithic.com
-5758
- Stins Coman
- Alexander Skorokhodov
- askoroh&stinscoman.com
-5759
- bridges.com
- Craig Skelton
- cskelton&bridges.com
-5760
- Bell Atlantic Mobile
- Eladio Gonzalez
- GonzaEL&bam.com
-5761
- Hannetware Inc.
- Tae-Won Ham
- kyungbok&hannetware.com
-5762
- Interland
- jskim
- gstar&nownuri.net
-5763
- DB POWER ELECTRONICS (P) Ltd.
- S.G. Waghmare
- dbhouse&vsnl.com
-5764
- Jazzey GmbH
- Andreas Oberhuemer
- oberhuemer&jazzey.com
-5765
- aXess-pro networks GmbH
- Oliver Schoenfeld
- Oliver.Schoenfeld&axess-pro.de
-5766
- IBM Global Services
- brian Bainter
- bainterb&us.ibm.com
-5767
- Quark, Inc.
- Jeff Schreiber
- jschreiber&quark.com
-5768
- Polish-Japanese Institute of Information Technology
- Tomasz Fornalik
- fornalik&pjwstk.waw.pl
-5769
- HealthMagic, Inc.
- Robert Sturkie
- robert.sturkie&healthmagic.com
-5770
- Medepass.com, Inc.
- John R. Hanson
- jono&medepass.com
-5771
- Cisco Systems, Inc.
- Murray Mar
- mmar&cisco.com
-5772
- C-it
- Arjen de Ronde
- Arjen.de.Ronde&C-it.nl
-5773
- Equiinet Ltd.
- Jon Summers
- jsummers&equiinet.com
-5774
- Beijing Telecable Network System Ltd.
- Mr. Fanbin
- francis&telecable.com.cn
-5775
- Advanced Technology Solutions International
- Pete Ellis
- pete.ellis@.atsi-uk.com
-5776
- Express Scripts, Inc.
- Tony Strand
- astrand&express-scripts.com
-5778
- Universidad Autonoma de Madrid
- Javier Martinez Rodriguez
- Javier.Martinez&ii.uam.es
-5779
- Data-GUYS Inc.
- Christopher J. Born
- bornc&mindspring.com
-5780
- PDA Verticals Corp.
- Dave Carrigan
- dave&pdaverticals.com
-5781
- Jordan Network Engineering
- Tom Jordan
- tjordan&doit.wisc.edu
-5782
- University of Wisconsin System
- Jonathan J Miner
- miner&doit.wisc.edu
-5783
- BROADPAC Communications
- Murali Sarjapuram
- muralis&broadpac.com
-5784
- Cogita Ltd
- Allan Brearley
- allan.brearley&cogita.co.uk
-5785
- Intershop Communications AG
- Jan Hamel
- notifications&intershop.de
-5786
- Mc Coy Marine Consultants
- Captain R.D. Mc Coy
- Boxcarbobmccoy&netscape.net
-5787
- Adventist Health
- Tracy McCurdy
- McCurdTJ&ah.org
-5788
- Softdev Corp.
- Allan Schougaard
- seeger&softdevcorp.com
-5789
- MobileQ.com Inc.
- Ayaz Somani
- ayaz.somani&mobileq.com
-5790
- Shawn Starr
- Shawn Starr
- shawn.starr&rogers.com
-5791
- Compu-Mentor, Inc.
- Mike Noland
- mike&compu-mentor.net
-5792
- Dean Gakis
- Dean Gakis
- dean&gakis.org
-5793
- The Edge Consultants
- Shiraz Shahabudeen
- shiraz&edge.com.sg
-5794
- OBR CTM
- Christopher Bialas
- snmp.admin&ctm.gdynia.pl
-5795
- BPT TELBANK SA
- Bernard Medrzyvcki
- Bernard.Medrzycki&telbank.pl
-5796
- STC Informatik
- Dominik Steiner
- dominik.steiner&stc-informatik.ch
-5797
- Western Power Distribution
- Jim Buckley
- jbuckley&westernpower.co.uk
-5798
- VIACCESS S.A.
- Mme Laurence BECQ
- laurence.becq&francetelecom.fr
-5799
- Nyherji
- Petur Eythorsson
- petur.eythorsson&nyherji.is
-5800
- Cruise Controls Pvt. Ltd.- FRESNEL
- Mangesh Kale
- mangeshk&cruise-controls.com
-5801
- Second Opinion Software
- Richard Shank
- Corp&2Opinion.com
-5802
- Electroline Equipment Inc.
- Frederick Plante
- fp&electrolinequip.com
-5803
- 2AB, Inc.
- Sam Lumkin
- slumpkin&2ab.com
-5804
- Lantern Communications
- Steven Krichman
- krichman&lanterncom.com
-5805
- Televideo, Inc.
- Chang Sae Lee
- cslee&televideo.com
-5806
- SK Telecom
- Dongkie Leigh
- galahad&sktelecom.com
-5807
- Flora van Kesteren Tuinadviezen
- Sander van Kesteren
- svkesteren&hetnet.nl
-5808
- INRANGE Technologies Corporation
- Steve Zetye
- steve.zetye&inrange.com
-5809
- Nieden-Nsm
- Andreas Nieden
- Andreas.Nieden&nieden-nsm.de
-5810
- Global Crossing
- Barbara Roseman
- ipadmin&gblx.net
-5811
- The GoldParrot Corporation
- Brian P. Michael
- bmichael&goldparrot.com
-5812
- Coriolis Networks
- Anil Navkal
- anil&coriolisnet.com
-5813
- The OpenNMS Group, Inc.
- Tarus Balog
- tarus&opennms.org
-5814
- General Communications Inc.
- Jim Jarvis
- jjarvis&gci.com
-5815
- Optima Tele.com, Inc.
- Ralf Doewich
- ralf.doewich&optimatele.com
-5816
- Lockstep Systems
- Karl Forster
- kforster&lockstep.com
-5817
- High Precision Record Company Limited
- Aiyaret Birden
- ben&hpr.net
-5818
- Cherry Cyber Net
- Aiyaret Birden
- ben&birden.com
-5819
- X.Net Ltda
- Nain Esmelyn Daza R
- xnetltda&col3.telecom.com.co
-5820
- Flyforms
- Kefu Zhou
- kefuzhou&hotmail.com
-5821
- Orangesoft, Inc.
- Watanabe Naoaki
- kitarou&orangesoft.co.jp
-5822
- Reynolds and Reynolds Pty Ltd
- Gregor Scott
- gregors&reynolds.com.au
-5823
- nRose
- Bob Wang
- moonriver21&yahoo.com
-5824
- Nikkai Electronic, Inc.
- Michael Ho
- mikeho&attglobal.net
-5825
- Native Networks
- Michal Weinbaum
- michal&nativenetworks.com
-5826
- MIND CTI Ltd.
- Raanan Grinwald
- graanan&mindcti.com
-5827
- HERMES SoftLab
- Boris Gasperin (IT Manager)
- it-mgr&hermes.si
-5828
- SpaceNet Communication AB
- Peter Carlsson
- peter.carlsson&spacenet.se
-5829
- AMCC Switching Corp.
- Peter Benschop
- pbenschop&amcc.com
-5830
- XcelleNet
- Jessica Landisman
- Jessica.Landisman&xcellenet.com
-5831
- Cleondris GmbH
- Fredi Hinz
- noc&cleondris.ch
-5832
- Horgan.net
- Sean Horgan
- seanhorgan&onebox.com
-5833
- Tailyn Communication Company
- Jenny Hsu
- jennyhsu&tailyn.com.tw
-5834
- Identikey ltd
- Michael Daniell
- mdaniell&identikey.com
-5835
- Newtec Cy
- Luc Claeys
- luc.claeys&newtec.be
-5836
- TOYO COMMUNICATION EQUIPMENT CO., LTD
- Junichi wakai
- wakai&toyocom.co.jp
-5837
- Nedcor Limited
- Ian Gemmell
- iang&nedcor.com
-5838
- Cabletime Ltd
- Mr. Ian Reed
- i.reed&cabletime.com
-5839
- Bioplasma Andaluza S.L.
- Santos Hernandez
- shg&scentex.com
-5840
- Aravox Technologies, Inc.
- Charles Rissmeyer
- crissmeyer&aravox.com
-5841
- Netfish Technologies
- Lucy Phan
- lphan&netfish.com
-5842
- Cisco Systems
- Lucy Phan
- luphan&cisco.com
-5843
- FiberLogic Communications
- Foxes C.H. Hung
- foxes&fiberlogic.com
-5844
- LG Space Engineering Corp
- Louis Granados
- rogerdsl&swbell.net
-5845
- Cyberus Online Inc.
- Roy Hooper
- rhooper&cyberus.ca
-5846
- NetCentrex
- Bernard Jannes
- bj&netcentrex.net
-5847
- Knowledge Design
- Yuki Yamazaki
- yyamazaki&knowd.co.jp
-5848
- Rissa Solutions Corp.
- Eliina Vornanen
- eliina.vornanen&rissasolutions.com
-5849
- Signal-COM
- Helen Nikonova
- signal&gin.ru
-5850
- H.S. Leader Srl
- Luca Paoli/ Massimo Melani
- hsleader&hsleader.net
-5851
- eWindowShop.com
- Casey Lee
- cplee&ewshop.com
-5852
- Oscar Jacobsson
- Oscar Jacobsson
- oscar&celocom.se
-5853
- Bell Technology
- Walter Ungureanu
- walter.ungureanu&bell.ca
-5854
- Bell Network Solutions
- Mike Scott
- michael.scott&bell.ca
-5855
- John Deere (dba Deere & Company)
- Kirk Denison
- DenisonKirkR&johndeere.com
-5856
- Vianet Technologies, Inc.
- Clara S. Johnson
- sjohnson&vianet.com
-5857
- VirtualWorkout
- Taryn Kelly
- taryn.c.kelly&us.pwcglobal.com
-5858
- Cyclone Commerce, Inc.
- Jhon Honce
- honce&cyclonecommerce.com
-5859
- EFA Software Services Ltd.
- Geoff Kratz
- gkratz&efasoftware.com
-5860
- TeleNet Inc.
- David C. Diniz Jr.
- dcdiniz&aol.com
-5861
- Mitsubishi Heavy Industries, Ltd
- Yoshiaki Sonoda
- yoshiaki&csl.ngsrdc.mhi.co.jp
-5862
- CEYCO Internet Applications
- Christian Ey
- ey&inweb.de
-5863
- D'ALASKA CO.
- Fernando Ortega
- nanty1&aol.com
-5864
- REITC, LLC
- Keith Sarbaugh
- keith&ootek.com
-5865
- Parallel Networks
- Vinay Mohta
- vmohta&optigrab.com
-5866
- London School of Economics Computer Security Research Centre
- Dave Freestone
- d.j.freestone&lse.ac.uk
-5867
- San Joaquin Delta Community College District
- Matt Rosen
- mrosen&sjdccd.cc.ca.us
-5868
- CRONOS Research Centre Sdn Bhd
- Justin Tan
- justin&extol.com.my
-5869
- Deutsche Post eBusiness
- Alexander Finger
- a.finger&deutschepost.de
-5870
- BioFone Inc.
- David C. Diniz
- dcdiniz&aol.com
-5871
- HyperXS
- Ken Huang
- ken.huang&accton.com
-5872
- TDC Systems
- Angela Hoffman
- ahoffman&kscable.com
-5873
- Software Dynamics Inc.
- George Gu
- George&mail.sdinc.com
-5874
- Tellabs MNG
- Dr. Chris Roller
- chris.roller&tellabs.com
-5875
- China Advanced Info-Optical Network (CAINONET)
- Weisheng Hu
- net863&moon.bjnet.edu.cn
-5876
- A2B s.r.o.
- Jiri Guyrkovsky
- a2b&post.sk
-5877
- Ruhr-Universitaet Bochum
- Ute Dederek-Breuer
- Ute.Dederek-Breuer&ruhr-uni-bochum.de
-5878
- NICE GmbH
- Siegfried Rupietta
- Siegfried.Rupietta&nice.de
-5879
- Unassigned
- Removed 2006-10-02
- ---none---
-5880
- Opteway
- Pierre Sigrist
- pierre.sigrist&opteway.com
-5881
- ARZ Allgemeiness Rechenzentrum GmbH
- Bertram Gstraunthaler
- Bertram_Gstraunthaler&arz.co.at
-5882
- Inopoly Inc.
- Bart Fielder
- bfielder&slip.net
-5883
- Zaffire, Inc.
- Kamran Ghane
- kghane&zaffire.com
-5884
- University of Utah
- Robert Roll
- Robert.Roll&utah.edu
-5885
- McGough Enterprises L.L.C.
- Tim McGough
- tim&themcgoughs.org
-5886
- NuSpeed Internet Systems
- Jim Muchow
- jim.muchow&nuspeed.com
-5887
- Falconnect, Inc.
- Christopher Lee Falcone
- clfalcone289&hotmail.com
-5888
- Agiliti, Inc.
- Jim Illetschko
- jim.illetschko&agiliti.com
-5889
- Universidad Iberoamericana GC
- Ramon F. Tecolt G.
- rtecolt&uiagc.pue.uia.mx
-5890
- Lantop Systems LTD
- Arik Ben-Dov
- arik&lantop.com
-5891
- Autotote Systems, Inc.
- Dion Ashbee
- dashbee&autotote.com
-5892
- Legacy Computer Services Limited
- Peter Chisnall
- peter.chisnall&excite.com
-5893
- PinPoint Corporation
- Samuel Levy
- samuel&pinpointco.com
-5894
- Dreamchal Inc.
- KyoungWook Cheon
- praiser&dreamchal.com
-5895
- At Fut AS
- Jaan Pruulmann
- fut&fut.ee
-5896
- csseEvens St. Hilaire
- marvens&flashcom.net
- / evens&nyp.org
-5897
- BP Amoco PLC
- Andrew Haynes
- haynesaj&bp.com
-5898
- RITLABS S.R.L.
- Max Masyutin
- max&ritlabs.com
-5899
- Microm Electronics
- David Hudson
- dave&microm-electronics.com
-5900
- Schrader-Bridgeport International
- Bob Holton
- bholton&schrader-bridgeport.net
-5901
- Nominum Inc.
- Vivian Neou
- vivian.neou&nominum.com
-5902
- Maharajah Infosys
- Nalin Shah
- nshavalli&hotmail.com
-5903
- Pace Micro Technology plc
- Stewart Brodie
- stewart.brodie&pace.co.uk
-5904
- Walgreens
- Rishi Khullar
- rishi.khullar&walgreens.com
-5905
- StorageNetworks
- Jim McDonald
- Jim.McDonald&storagenetworks.com
-5906
- Travsys BV
- Lex Loep
- lex.loep&travsys.com
-5907
- Lokasoft
- Lex Loep
- lex.loep&lokasoft.nl
-5908
- Otelnet, Inc.
- Farokh Eskafi
- eskafi&otelnet.com
-5909
- Skybitz Inc.
- Ven Chava
- vchava&skybitz.com
-5910
- Availant
- Donald B. Lehman
- dlehman&availant.com
-5911
- cbrook
- Harish Rajan
- info&cbrook.com
-5912
- Yuasa Corporation
- Takumi Kimura
- takumi_kimura&yuasa-jpn.co.jp
-5913
- Oliver Fehr
- Oliver Fehr
- Oliver.Fehr&ofehr.com
-5914
- Balsa Software
- Darrin Husmann
- info&balsa-tech.com
-5915
- Trilogic Systems
- Todd Harrington
- todd&trilogic.com
-5916
- i-Nebula.com
- Dan Powers
- dan.powers&i-nebula.com
-5917
- Gigalink
- Sunho Kim
- ggoma&gigalink.co.kr
-5918
- BBL
- Bruno Guillaume
- bruno.guillaume&st.bbl.be
-5919
- Departamento de Informatica da Fac. Ciencias da Univ. Lisboa
- Nuno Miguel Neves
- nneves&di.fc.ul.pt
-5920
- Zurich Financial Services Group
- Stefan Moser
- stefan.moser&zurich.com
-5921
- Sema Group AB
- Goran Karlberg
- goran.karlberg&got.sema.se
-5922
- Real Time Monitors, Inc.
- Tim Kness
- TKness&rtmi.com
-5923
- Internet2
- Michael J. LaHaye
- mjl&internet2.edu
-5924
- Xevo Corp.
- Peter Ashley
- pashley&xevo.com
-5925
- Interactive People Unplugged AB
- Patrick Lindergren
- patrik&ipunplugged.com
-5926
- interlink
- Jeong Jeonghu
- jeong&ils.interlink.co.kr
-5927
- NexComm Systems, Inc.
- Yanggi Jung
- ygjung&nexcomm.co.kr
-5928
- Zydacron, Inc.
- Patrick M. Murphy
- pmurphy&Zydacron.Com
-5929
- Amer.com
- JB
- jb3&amer.com
-5930
- ImagicTV Inc.
- Al Parker
- aparker&imagictv.com
-5931
- PRESIDEO, Inc.
- Dan Twadell
- DTWADELL&PRESIDEO.COM
-5932
- OpenSystems.com, Inc.
- Ken Reiff
- kreiff&opensystems.com
-5933
- Software Services
- Bill Rizzi
- rizzi&softserv.com
-5934
- University of Louisiana at Lafayette
- Patrick Landry
- pml&louisiana.edu
-5935
- ACADEMIA Sinica Computing Centre
- JeiZhii Lee
- jzlee&ascc.net
-5936
- Ahhaaa AB
- Johan Stenberg
- Johan.Stenberg&ahhaaa.com
-5937
- HypoVereinsbank
- Thomas Stoertkuhl
- thomas.stoertkuhl&hypovereinsbank.de
-5938
- Macfarlane TeleSystems Ltd.
- Paul Jones
- PJones&macfar.co.uk
-5939
- HALCOM Informatika, d.o.o.
- Miran Bohak
- miran.bohak&halcom.si
-5940
- Red Lion Controls (JBM Electronics Co., Inc.)
- Denis Aull
- Engineering&RedLion.net
-5941
- Cosmocom Inc.
- Rick Marlborough
- rmarlborough&cosmocom.com
-5942
- ThoughtShare Communications
- George Myers
- info&thoughtshare.com
-5943
- MatchCraft, Inc.
- Dorab Patel
- dorab&matchcraft.com
-5944
- nROSE
- Anyhony Wang
- tony_wang2001&yahoo.com
-5945
- AtBusiness Communications Oyj
- Matti Suuronen
- Matti.Suuronen&atbusiness.com
-5946
- MULTITEL Inc.
- Daniel Fecteau
- dfecteau&multitel.com
-5947
- WebForce LLC
- Eric Lee
- ericlee&webasket.com
-5948
- 3NO Systems
- Henry D. Nissenbaum
- henryn&3no.com
-5949
- IBM, AIX Tools Team
- Derry Cannon
- derryc&austin.ibm.com
-5950
- Imagineering Inc.
- Ron Chase
- ronchase&imagineeringinc.net
-5951
- Netscaler
- Yogendra Singh
- yogendra&netscaler.com
-5952
- Breakaway Solutions, Inc.
- Connie Kratz
- ckratz&breakaway.com
-5953
- EleTel Inc.
- George Krucik
- george&eletel.com
-5954
- Aaron Telecommunication Technology
- Jiwon Lim
- jwin&aaron.co.kr
-5955
- ASCONA
- Andreas Wolff
- awolff&ascona.de
-5956
- Travelport (formerly 'Worldspan')
- Larry Hedrick
- larry.hedrick&travelport.com
-5957
- Essematica S.r.l.
- Paulo Gallo
- pgallo&essematica.it
-5958
- KCell
- John Idun
- joidu&hotmail.com
-5959
- Eastern Communications Co. Ltd.
- Jun Shen
- jshen&eastcom.com
-5960
- CEFRIEL
- Alberto Castelli
- castelli&cefriel.it
-5961
- Powec AS
- Marius Tannum
- mariust&powec.no
-5962
- David Clunie
- David Clunie
- dclunie&dclunie.com
-5963
- RadioScape Ltd.
- Duncan Mackay
- dmackay&radioscape.com
-5964
- Fenestrae B.V.
- Sandra Van Leeuwen
- SandravL&Fenestrae.com
-5965
- Cenosis
- Patrick Tremblay
- dgi&cenosis.com
-5966
- Hummingbird Ltd.
- Christopher Chin
- christopher.chin&hummingbird.com
-5967
- Jane Ellen Shatz, Ph. D.
- Jane Ellen Shatz, Ph.D.
- jshatz&CNMNetwork.com
-5968
- VAMS
- Adil Dzubur
- dzubur&vams.com
-5969
- Lightspeed Systems
- Bradley White
- NOC&lightspeedsystems.com
-5970
- CSIRO
- John Morrissey
- John.Morrissey&its.csiro.au
-5971
- LEAD Technologies, Inc.
- Andreas Freeman
- freeman&leadtools.com
-5972
- AirNet Communications Corporation
- Ronald P. Adkins
- radkins&aircom.com
-5973
- Rainbow Technologies, Inc.
- Jay Cunningham
- jcunningham&rainbow.com
-5974
- Telecom Technologies, Inc.
- Majdi Abuelbassal
- majdi&ieee.org
-5975
- Telchemy
- Alan Clark
- alan&telchemy.com
-5976
- Red Hill Networks
- David Terlinden
- dterlinden&redhillnetworks.com
-5977
- University of Texas at Dallas (UTD)
- Sidney Antommarchi
- lsid&hotmail.com
-5978
- California State University Northridge
- Pavel May
- pavel.may&csun.edu
-5979
- CSCare Inc.
- Tomas Vocetka
- tvocetka&cscare.com
-5980
- CSSoftware Inc.
- Tomas Vocetka
- tvocetka&cssoftware.com
-5981
- media transfer AG
- Guus Gerrits
- GGerrits&mtgnet.de
-5982
- Infor
- Tom Buttliere
- tom.buttliere&infor.com
-5983
- Descartes Systems Group Inc.
- Raimond Diederik
- rdiederik&descartes.com
-5984
- Cedere Corporation
- Michael J. Banks
- mbanks&cedere.com
-5985
- BioCor, L.L.C.
- Dennis Loreman
- dennis_loreman&biocor.com
-5986
- Vpacket Communications, Inc.
- Kaushik Patel
- kpatel&vpacket.com
-5987
- Pacific Broadband Communications
- James Yee
- yee&pbc.com
-5988
- esutel
- Jose Luis Vidal
- jvidal&inictel.gob.pe
-5989
- Go.com
- Stacey Rosenberry
- stacey.rosenberry&corp.go.com
-5990
- INFORMZASCHITA
- Vladimir U. Gaikovich
- hotline&infosec.ru
-5991
- Ntown Communications, Inc.
- Jeff Parker
- jparker&ntown.com
-5992
- ePower Solutions, Inc.
- Michael Appelmans
- mappelmans&epower-inc.com
-5993
- Terabeam Networks
- Doug Hill
- doug.hill&terabeam.com
-5994
- Arcom Control Systems
- Arlen Nipper
- anipper&arcomcontrols.com
-5995
- Everypath Inc.
- Rajiv Anand
- ranand&everypath.com
-5996
- Communication Weaver Co., Ltd.
- John Lee
- coweaver&unitel.co.kr
-5997
- TeamTronic p.s.c.r.l.
- Umberto Salsi
- salsi&mailbox.dsnet.it
-5998
- CITI-DIC IT CO., LTD
- Eddie Wu
- p328&hotmail.com
-5999
- SCITEL Industrieberatungs-GmbH
- Dr. Gerhart Hlawatsch
- ghl&scitel.de
-6000
- CES Computer Solutions Inc.
- Peter Gamitsky
- pete&ceshome.com
-6001
- Memorial Sloan-Kettering Cancer Center
- Angel R. Deras
- derasa&mskcc.org
-6002
- Impresse Corporation
- Jerry Soung
- jsoung&impresse.com
-6003
- Jasmine Networks, Inc.
- David Peters
- dpeters&jasminenetworks.com
-6004
- SYSMATE Co., Ltd.
- Yoo Young Jae
- zenith&sysmate.com
-6005
- City of Sydney
- Sam Au
- sau&cityofsydney.nsw.gov.au
-6006
- The Schleutker Sites
- Douglas E. Schleutker
- doug&schleutker.net
-6007
- Redux Communications Ltd.
- Yuval Ben-Haim
- yuval&reduxcom.com
-6008
- Lynxus, Inc.
- Mark Tippetts
- bishop&lynxus.net
-6009
- gcs Global Communication & Services GmbH
- Peter Maurutschek
- pmm&gcs-salzburg.at
-6010
- SERVICECO
- Wolver Alemao
- wolver&serviceco.co.in
-6011
- Cinta Corporation
- Nik Trimble
- nik.trimble&cintacom.com
-6012
- PiNGPoNG.CoM
- Sean Crumpler
- sean.crumpler&pingpong.com
-6013
- Tieturi
- Sakari Kouti
- sakari.kouti&tieturi.fi
-6014
- National Library of Medicine
- Terry Luedtke
- terry_luedtke&nlm.nih.gov
-6015
- Chicago Board Options Exchange
- Jeremy McMillan
- mcmillan&cboe.com
-6016
- Technauts
- Prahlad Ranganathan
- prahladr&technauts.com
-6017
- G2X Software
- Sergey Opanasets
- sopanasets&g2x.com
-6018
- Excel Medical Electronics Inc.
- Richard Crane
- Richard.crane&excel-medical.com
-6019
- Simplified Telesys, Inc.
- Kevin Grahm
- kgraham&simpletel.com
-6020
- Lutris Technologies
- Scott Pirie at Lutris Technologies (USA) or Guy Smith at Plugged In Software (AUSTRALIA)
- guy&pisoftware.com
-6021
- Arcadian Wireless
- Mr. Cheam Tat Inn, President
- cheamti&arcadianwireless.com
-6022
- DFKI GmbH
- Markus Bolz
- isg-sb&dfki.de
-6023
- Steele Raymond Solicitors
- Cliff Forrest
- mail&steeleraymond.co.uk
-6024
- Scannex Electronics Ltd.
- Ray Golding
- rgolding&scannex.co.uk
-6025
- Advanced Network Solutions S.p.A.
- Marco Lozza
- marco.lozza&ans.it
-6026
- U.S. Army STRICOM
- Russell Milliner
- webmaster&stricom.army.mil
-6027
- Force10 Networks, Inc.
- Raju Shah
- raju&force10networks.com
-6028
- ODSI Coalition
- K. Arvind
- arvind&tenornetworks.com
-6029
- Exactis.com
- Lonnie Maynard
- lmaynard&exactis.com
-6030
- Fluke Electronics
- Charles Klement or Norm Seethoff
- charles.klement&FLUKE.COM or norm.seethoff&FLUKE.COM
-6031
- Computer Problem Solving
- Richard H. Gumpertz
- rhg&CPS.com
-6032
- Stainless Steel Networks
- Tim Kennedy
- iana&timkennedy.net
-6033
- e-talk Corporation
- Steve Graff
- sgraff&e-talkcorp.com
-6034
- BroadJump
- Vinod Nair
- vnair&broadjump.com
-6035
- Sensis Corporation
- Paul Blust
- Paul.Blust&sensis.com
-6036
- Bose Corporation
- Gregory Paris
- gregory_paris&bose.com
-6037
- Edge Networks Corp.
- Gord Scarth
- gscarth&edgenetworkscorp.com
-6038
- Netwhistle.com
- Martin Hobson
- martin&netwhistle.com
-6039
- Resscom Computers and Communications
- Mohamad Muhsin Mahmud
- resscom&tm.net.my
-6040
- University of Kalmar
- Pekka Rossi
- pekka.rossi&hik.se
-6041
- Kokua Communications
- Noah Breslow
- nbreslow&kokuacom.com
-6042
- Southeastern Aluminum Products, Inc.
- Suzanne M. Reott
- seap&southeasternaluminum.com
-6043
- AstroTerra Corporation
- Alex Shek
- shek&astroterra.com
-6044
- Poyntz, Inc.
- Phil Dodderidge
- pdodde&poyntz.com
-6045
- Synaptique Information & Technologie
- Anthony Converse
- aconverse&synaptique.com
-6046
- Near2 Communications, Inc.
- Richard Liming
- rpl&near2.com
-6047
- Florida Teaching Profession - NEA
- Patrick Salmon
- psalmon&ftp.nea.org
-6048
- Exyst
- Darryl Rubarth
- darryl&exyst.com
-6049
- Hitachi Information Systems, Ltd.
- Wada Yoshiya
- y-wada&hitachijoho.com
-6050
- GAMATRONIC ELECTRONIC INDUSTRIES LTD
- Asher Avissar
- aavissar&gamatronic.co.il
-6051
- Ameritrade
- Rodger Devillier
- rdevillier&hotmail.com
-6052
- Novasonics
- Gerard J. Cerchio
- gjpc&in-cube.com
-6053
- Eredyne Corporation
- Alexander Zakharov
- alexzakharov&hotmail.com
-6054
- Access360
- Tony Gullotta
- tgullotta&access360.com
-6055
- Lees Communication
- Harold Warden
- harwar&ameritech.net
-6056
- Rensselaer Polytechnic Institute
- Mike Douglass
- douglm&rpi.edu
-6057
- AppNet
- Andy White
- andrew.white&appnet.com
-6058
- Havas Interactive
- Kody Dickerson
- kody.dickerson&sierra.com
-6059
- AdNovum Informatik AG
- Bruno Kaiser
- bruno.kaiser&adnovum.com
-6060
- ISP Systems Pty. Ltd.
- Jeremy Wright
- jeremy&ispsystems.com.au
-6061
- Netuitive, Inc.
- JF Huard
- jfhuard&netuitive.com
-6062
- TEKELEC TEMEX
- Jean-Pierre Boudot
- jean-pierre.boudot&temex.fr
-6063
- Axent Technologies, Inc.(Utah)
- Brett Cutler
- bcutler&axent.com
-6064
- JK microsystems
- Kelly Hall
- khall&jkmicro.com
-6065
- ZUniversity.com
- Lenny Shuhala
- lshuhala&zuniversity.com
-6066
- Occam Networks, Inc.
- Elie Azar
- elie&occamnetworks.com
-6067
- Adapcom, Inc.
- Albert Ko
- ako&atmxdsl.com
-6068
- kc. marching
- e-beug
- jeni&202.183.228.236
-6069
- BlocWare, Inc.
- Frederick Hunter
- fredh&blocware.com
-6070
- AVIV INFOCOM CO.,
- Ltd.
- kdh93002&avivinfo.com
-6071
- SIGMA Informatique
- Chateau Laurent
- lchateau&sigma.fr
-6072
- Plan Software GmbH
- Clemens Huwig
- admin&plansoftware.com
-6073
- Business Global Systems
- Radovan Semancik
- semancik&bgs.sk
-6074
- Cenosis, Inc.
- Patrick Tremblay
- ptr&cenosis.com
-6075
- Siemens AG
- Bruno Krauss
- bruno.krauss&erl9.siemens.de
-6076
- TrelliSoft, Inc.
- Ed McCrickard
- mccrickard&trellisoft.com
-6077
- Call-Net Technology Services Inc.
- Elvis Lee
- elee&sprint-canada.com
-6078
- CyberIntelligent Technologies
- Tsani Jones
- tsani.jones&onebox.com
-6079
- appoconnect.com
- Jamie Vachon
- jvachon&sprintmail.com
-6080
- BridgeWave Communications
- Ed Richardson
- edr&bridgewave.com
-6081
- Nexsi
- Taqi Hasan
- taqi.hasan&nexsi.com
-6082
- AReS
- Danilo Formentini
- ares&tread.it
-6083
- AATR
- Olivier Castellane
- aatr&wanadoo.fr
-6084
- PRISMedia Networks, Inc.
- Matthew Orzen
- matt&prismedia.com
-6085
- Hypergene AB
- Peter Eriksson
- kpe&hypergene.com
-6086
- New York Life Insurance Co.
- Phedre Francois
- Phedre_Francois&NewYorkLife.com
-6087
- Mentat Inc.
- Bryan Blackman
- bryan&mentat.co
-6088
- opNIX, Inc.
- Nick Estes
- nick&opnix.com
-6089
- LastMile
- Eric Hoedt
- ehoedt&lastmile.de
-6090
- DespatchBox
- Barney Flint
- bflint&despatchbox.com
-6091
- epki
- Olivier Schyns
- info&e-pki.net
-6092
- Agillion Corporation
- Khalil Javid
- kjavid&agillion.com
-6093
- TESSAG AG
- Andreas F. Klenz
- Andreas.Klenz&tessag.com
-6094
- Wapcom
- Zeev Greenblatt
- zeev&wapcominc.com
-6095
- KHALED FAHMI
- Khaled Fahmi
- KHALED&FAHMI.COM
-6096
- Netsecure Software
- Raphael Robin
- rrn&netsecuresoftware.com
-6097
- State of Michigan
- Beth Jurkovic
- jurkovicb&state.mi.us
-6098
- AvantGo
- Stevan Arychuk
- stevan&avantgo.com
-6099
- INTELLIDEN, Incorporated
- Ken Rider
- Ken.Rider&intelliden.com
-6100
- Covalent Technologies, Inc.
- James Harter
- jharter&covalent.net
-6101
- Trend Micro Inc.
- Oliver Guanwen Wang
- guanwen&trendmicro.com
-6102
- Integrated Research Ltd.
- Heather Gray
- Heather.Gray&ir.com
-6103
- Al Rasheed
- Sadi Arabi
- rshd2000&hotmail.com
-6104
- Cosmobridge Co., Ltd.
- Rhee, Jong-ho
- likeu&cosmobridge.com
-6105
- Center Vlade za Informatiko
- Ales Dobnikar
- ales.dobnikar&gov.si
-6106
- Maharaja Infosys Limited
- Nalin Shah
- nalin&Hotmail.com
-6107
- IDN Telecom, Inc.
- Lily Kuo
- lily&idntelecom.com
-6108
- Insurance Auto Auctions
- Tim Hunnewell
- thunnewell&iaai.com
-6109
- ADIC
- Rajesh Chawla
- Rajesh.Chawla&adic.com
-6110
- Atrica
- Ronen Ofek
- Ronen_Ofek&Atrica.com
-6111
- Worldsport Networks Ltd.
- Adam Nealis
- anealis&worldsport.com
-6112
- XINETRON CO., LTD
- C.H. Chen
- chchen&xinetron.com.tw
-6113
- Datek Telecom S.A.
- Leonard Lichi
- llichi&datek.ro
-6114
- ProSyst Software AG
- Ivan Georgiev Datshev
- i_dachev&prosyst.bg
-6115
- Open Interactive Limited
- Peter Harwood
- peter.harwood&open-talk.co.uk
-6116
- Medtegrity, Inc.
- Russ Weiser, Principal Scientist
- russel.weiser&digsigtrust.com
-6117
- Fiber Network Engineering
- Richard Fellows
- rfellows&pacbell.net
-6118
- Quintiles
- Walter Turyn
- walt.turyn&quintiles.com
-6119
- IPWorks, Inc.
- Bernard Volz
- volz&ipworks.com
-6120
- NXTV
- Patrick G. Heffernan
- pheffernan&nxtvinc.com
-6121
- Excite@Home E-Business Services
- Jon Rusho
- jonr&excitehome.net
-6122
- Mover S.p.A.
- Antonello Giannangeli
- antonellogiannangeli&libero.it
-6123
- National Institute of Telecommunications
- Dominik Loniewski
- dominik&itl.waw.pl
-6124
- Sane Solutions, LLC
- Frank Faubert
- frank&sane.com
-6125
- ACERFI-MICRONICSFrancois Regis K.
- BESSALA ATEBA
- acerfi&iccnet.cm;acerf-micronics&spray.fr
-6126
- epicRealm
- Dennis McGuire
- dmcguire&epicrealm.com
-6127
- LapLink.com
- Sean Mathias
- seanm&laplink.com
-6128
- Wireless Planet
- Mr. Chris Hill
- chris.hill&ieee.org
-6129
- Bromax Communication Inc.,
- Jane Chang
- janech&kingmax.com.tw
-6130
- CVI
- Ales Dobnikar
- ales.dobnikar&gov.si
-6131
- Starmedia Mobile
- Fadi Kalach
- fadi.kalach&starmedia.net
-6132
- LVL7 Systems, Inc.
- Steve Ledford
- sledford&lvl7.com
-6133
- Dead Fish Technologies
- Benjamin Reed
- ranger&befunk.com
-6134
- Trioniq
- Yan Levesque & Daniel Bindley
- trioniq&trioniq.com
-6135
- Chubu Telecommunications Co., Inc.
- Norihisa Ichihashi
- info&dc.ctc.ad.jp
-6136
- idealhost.com
- Kevin Rinehart
- 1&idealhost.com
-6137
- University of Canterbury
- Brendon Wyber
- brendon.wyber&canterbury.ac.nz
-6138
- Trasys
- Frederic Poncin
- frederic.poncin&trasys.be
-6139
- Healthcare Specialists, Inc.
- Patrick Horine
- hsi&hsinc.com
-6140
- Enikia Incorporated
- Vladimir Strupinsky
- vstrupinsky&enikia.com
-6141
- World Wide Packets
- JJ DeBarros
- jj.debarros&worldwidepackets.com
-6142
- TF1
- Patrick Mendes
- pmendes&tf1.fr
-6143
- Eventlogic
- Chris Buben
- cbuben&eventlogic.com
-6144
- SUNTECH Sp. zo.o
- Slawomir Marciniak
- slawek&suntech.com.pl
-6145
- Cendio Systems AB
- Jan Smith
- smith&cendio.se
-6146
- Whirlpool Corporation
- Douglas Wegscheid
- Douglas_E_Wegscheid&email.whirlpool.com
-6147
- Alliegiance Telecom
- John M. Johnson III & Bryan Lynn
- john.johnson&algx.com & blynn&algx.net
-6148
- Cidera, Inc.
- Scott Lipcon
- slipcon&cidera.com
-6149
- London School of Economics
- Jeremy Skelton
- J.Skelton&lse.ac.uk
-6150
- Open Networks Engineering Ltd.
- Peter J. Bone
- pete&one.co.uk
-6151
- Copyprint S.L.
- Gustavo
- grevelles&steinweb.net
-6152
- Sendmail, Inc.
- Randall S. Winchester
- rsw&sendmail.com
-6153
- JOLT Ltd.
- Alex Berchoer
- alex_b&jolt.co.il
-6154
- Soneris Engineering
- Bernhard Keller
- bek&soneris.ch
-6155
- FIREBIT Ltd.
- Adi Aviad
- adi&firebit.co.il
-6156
- TTC TESLA TELEKOMUNIKACE, Ltd.
- Premysl Klima
- klima&ttc.cz
-6157
- ICCRI BANCA FEDERALE EUROPEA SPA
- Angelo Mantineo
- Angelo.Mantineo&ICCRI.IT
-6158
- NAGUS
- Brian Lewis
- brlewis&novell.com
-6159
- University of Iowa
- Chris Pruess
- chris-pruess&uiowa.edu
-6160
- Affinity Technology Group
- Kenneth Dawkins
- kenneth_dawkins&affi.net
-6161
- OnFiber Communications, Inc.
- Billy Davis
- bdavis&onfiber.com
-6162
- Solid Data Systems
- Jeff Brown
- jbrown&soliddata.com
-6163
- Inara Networks, Inc.
- Akbal Karlcut
- akarlcut&inaranetworks.com
-6164
- Kinva Network System Ltd.
- Li Jia
- lijia&kinva.com
-6165
- Portwell Inc.
- Kin Tse Hong
- kthong&mail.portwell.com.tw
-6166
- Interactive Enterprise
- Peter Martin
- pmartin&iel.ie
-6167
- SPHINX
- Hans W. Fell
- fell&bsi.de
-6168
- Banco do Brasil S/A
- Alessandra Fruet
- techs&bancobrasil.com.br
-6169
- Serendipity Simplex
- Robert Stone
- iana&serendipity.cx
-6170
- PartMiner, Inc.
- Jerry S.Wen
- jwen&partminer.com
-6171
- Kidata AG
- Marc Mielke
- mm&kidata.de
-6172
- Worldwide Entrepreneuric Enterprises, Inc.
- Mrs. Ruth A. D'Agostino
- weecompany&aol.com
-6173
- Fisher & Paykel Industries Limited
- Karl Howard
- HowardK&fphcare.fp.co.nz
-6174
- Fusionx
- Dongmyoung Lee
- itomay&fusionx.co.kr
-6175
- Pines of Woodedge
- Karen M. Wingate
- @kwingate&synchronet.com
-6176
- VIPCom
- Wolfgang Socher
- Wolfgang.Socher&vipcomag.de
-6177
- Blitz Information Technologies Berhad
- Zen Woo
- zenw&blitz-com.net
-6178
- NTT Advanced Technology Corporation
- Shoji Morishita
- morisita&saki.netwk.ntt-at.co.jp
-6179
- R.M. EDIZIONI SRL
- Claudio Torbinio
- webmaster&netbrokers.it
-6180
- CanDo.com
- Rich Guyon
- rguyon&CanDo.com
-6181
- Creative Logic Corporation
- Wendell Thompson
- wendell&hiwaay.net
-6182
- Encore Electronics Inc.
- Jenny Chang or Kevin Huang
- kevin&netronixinc.com
-6183
- Sharemedia
- Davis Mcpherson
- davism&sharemedia.com
-6184
- Mitsui & Co., Ltd.
- Naofumi Tamura
- n.tamura&tks.xm.mitsui.co.jp
-6185
- Ghent University
- Geert De Soete
- Geert.DeSoete&rug.ac.be
-6186
- Space CyberLink Inc.
- Eunhong Park
- ehpark&sdpia.com
-6187
- Dartmouth-Hitchcock Medical Center
- Stephen Cochran
- stephen.a.cochran&hitchcock.org
-6188
- University of Massachusetts Lowell
- Teng-Chiang Tsao
- ttsao&cs.uml.edu
-6189
- Atos Information Technology GmbH - Trustcenter
- Thomas Beckmann
- thomas.beckmann&atos.net
-6190
- Network365 Ltd
- Denis Hennessy
- dhennessy&network365.com
-6191
- Plasmon, Inc.
- Chris Lehn
- clehn&plasmon.com
-6192
- Environmental Monitoring Solutions
- Richard Corn
- rac&racc.com
-6193
- CPL Systems Ltd.
- Richard Corn
- rac&racc.com
-6194
- NetCalibrate Inc.
- Leon Leong
- lyleong&netcalibrate.com
-6195
- Advanced Communication Research
- Elric Osmont
- e.osmont&acresearch.com
-6196
- Atlantec Enterprise Solutions GmbH
- Thomas Koch
- Thomas.Koch&atlantec-es.com
-6197
- Arcordia/JP Morgan Chase
- Andy Doddington
- andrew.doddington&jpmorgan.com
-6198
- Eastern Nazarene College
- Charles Owens
- its-iana&enc.edu
-6199
- Nyherji hf
- Throstur Sigurjonsson
- throstur.sigurjonsson&nyherji.is
-6200
- DNPG
- Dave Lyons
- dlyons&dnpg.com
-6201
- Asenti, Inc.
- Dipak Ghosal
- ghosal&cs.ucdavis.edu
-6202
- Nimble, Inc.
- Scott Taylor
- staylor&emailknowledge.com
-6203
- Topspin Networks
- Edwin Tsang
- edwin&topspinnet.com
-6204
- SIBS - Sociedade Interbancaria de Servicos, S.A.
- Jose Eduardo Pina Miranda
- pm&sibs.pt
-6205
- LKC-Technology
- Luis Cantu
- ln_cantu&hotmail.com
-6206
- eCritical Inc.
- Mark Whitehouse
- markwhitehouse&home.com
-6207
- The Polished Group SA
- Waclaw Sierek
- waclaw.sierek&tpg.pl
-6208
- Enterprise Internet Services Limited
- Steve Brewin
- sbrewin&enterpriseis.co.uk
-6209
- The Open University
- Jamie Slee
- j.slee&open.ac.uk
-6210
- Mayah Communications GmbH
- Jorg Rimkus
- jr&mayah.com
-6211
- Murex
- Elias Coutya
- elias.coutya&murex.fr
-6212
- XM Satellite Radio, Inc.
- Royce Kincaid
- royce.kincaid&xmradio.com
-6213
- Redline Networks, Inc.
- Michel Hoche-Mong
- hoche&redlinenetworks.com
-6214
- SureFire Commerce Inc.
- Michel Hétu
- hetum&sfcommerce.com
-6215
- Streaming21, Inc.
- Horng-Juing Lee
- hjlee&streaming21.com
-6216
- Ci Technologies
- Greg Roberts
- GregRoberts&cit.com.au
-6217
- ngkindsoftltd
- ngkmurthy
- leelakrishna&onebox.com
-6218
- SCAN COIN
- Anders Gustafsson
- ag&scancoin.se
-6219
- Iskra SYSEN d.d.
- Davor Munda
- davor.munda&sysen.si
-6220
- Cyber Internet Services
- Amjad H. Lone
- ahlone&cyber.net.pk
-6221
- BAE Systems, CNIR
- Michael Perrotta
- michael.perrotta&baesystems.com
-6222
- STSN, Inc.
- Randy Tate
- rtate&stsn.com
-6223
- CDS Technologies
- Mark Komus
- mark&wilinx.com
-6224
- Roxy.com
- Lester Herrington
- lester.herrington&roxy.com
-6225
- Broadcast Towers
- Scott Stubbs
- scott&concealed.net
-6226
- BARIELD'S INTERNET PROVIDER SERVICE
- Tyrone Barfield
- BARFIELD&COAM.NET
-6227
- Resolve Engineering Pty Ltd
- David Gregson
- david_gregson&resolve.com.au
-6228
- Engineering Center for Information Security,Chinese Acadamy of Sciences
- Xuzhen
- xuzhen&ercist.iscas.ac.cn
-6229
- Tango/04 Computing Group
- Jordi Lisbona
- jlisbona&tango04.net
-6230
- SITE Skunkworks
- Martin Hallerdal
- marty&site.se
-6231
- Fiduciary Automation
- W. E. Perry
- wperry&fiduciary.com
-6232
- Corinex Global Corp.
- Ing.Martin Paska
- martin.paska&corinex.com
-6233
- UUNET EMEA
- Mark Visser
- mark.visser&nl.verizon.com
-6234
- Paul Abrahams, Sc.D.
- Paul Abrahams
- abrahams&acm.org
-6235
- nawilson.com
- Neil A. Wilson
- wilson.neil&usa.net
-6236
- Crayfish Co.,Ltd.
- Osamu Igasaki
- osamu_iwasawa&Crayfish.CO.JP
-6237
- NetAge Solutions GmbH Netzwerklösungen
- Bernd Raschke
- bernd.raschke&netage.de
-6238
- Queen Mary, University of London
- Martin Evans
- dirmaster&qmul.ac.uk
-6239
- TechnoTrend AG
- Michael Six
- michael.six&technotrend.de
-6240
- Bryttan, Ltd.
- J R Bryttan
- net-admin&bryttan.com
-6241
- Calvin College
- Brian J. Baas
- bbaas&ieee.org
-6242
- Possm Technologies
- Bruce Gillespie
- bruceg&nwd.com
-6243
- Weber Enterprise
- Markus Weber
- mw9141&flash.net
-6244
- PDR/SAGN Publishing
- David Pannkuk
- dcpann&fuse.net
-6245
- CiRCLEX Limited
- Koji Kurosawa
- k-kurosawa&circle.co.jp
-6246
- Mythological Solutions
- Philip Kizer
- pck-iana&nostrum.com
-6247
- Comtech EFData Corporation
- Norm Konya
- nkonya&comtechefdata.com
-6248
- Atecs Dematic
- Andreas Engel
- andreas.engel&dematic.de
-6249
- HCL Technologies Ltd
- S.V.Rajasekar
- vesubram&cisco.com
-6250
- PepsiCo Business Solutions Group (PBSG)
- Chris Castrianni
- chris.l.castrianni&fritolay.com
-6251
- Atoga Systems, Inc.
- Debasish Biswas
- debasish&atoga.com
-6252
- SrvLoc.Org
- James Kempf
- james.kempf&sun.com
-6253
- ipSEAL, Inc
- Bobby Mohanty
- mohanty&ipseal.com
-6254
- TimeVision Inc.
- Eric Purcell
- EricP&timevision.com
-6255
- Commerce Onc, Inc.
- Bill Tang
- btang&commerceone.com
-6256
- Southwest Communications Institute
- Qing Yu
- qingyu163&163.net
-6257
- Disappearing, Inc.
- Michael Sierchio
- michael&disappearing.com
-6258
- Iwatsu Electric Co., Ltd.
- Ken Tomitaka
- tomk&iwatsu.co.jp
-6259
- Sohonet Limited
- Jon Ferguy
- jon.ferguy&sohonet.co.uk
-6261
- MAKU Informationstechnik GmbH
- Marco Rohleder
- mrohleder&maku.de
-6262
- IMC Communications
- Nick Hadjiangeli
- nhadjian&imc.net.au
-6263
- Avstar Systems, LLC
- Kevin Burton
- Kevin.Burton&avstarnews.com
-6264
- OpenNetwork Technologies
- Steve Anderson
- sanderson&opennetwork.com
-6265
- gocek.com
- Gary Gocek
- gary&gocek.com
-6266
- Everest eCommerce Inc.
- Sunil Mishra
- smishra&everest.com
-6267
- MUSHTAQ SONS
- Ijaz Ahmad
- msons&brain.net.pk
-6268
- Evistel
- Vincent GRENET
- vincent.grenet&free.fr
-6269
- DiGiMATiON
- David McKellar
- djm&digimation.ca
-6270
- iAsiaWorks
- Damien O'Rourke
- damien&iasiaworks.com.au
-6271
- N.S.C.
- Miss M. Aharoni
- maayan&nsc.co.il
-6272
- KPNQwest Finland
- Kaj J. Niemi
- kajtzu&kpnqwest.fi
-6273
- Weir Consulting Ltd
- Paul Gray
- paulg&weir-consulting.co.uk
-6274
- Drael Computer Corporation
- Dwight Leard
- DwightL&drael.com
-6275
- HOB GmbH & Co. KG - HOB Germany
- Richard Wunderlich
- richard.wunderlich&hob.de
-6276
- Mahindra British Telecom Limited
- Ranvir Jatana
- ranvir&mahindrabt.com
-6277
- Federación de Organizaciones Privadas de Desarrollo - FOPRIDEH
- Paco Alcaide Canata
- fedopds&sdnhon.org.hn
-6278
- Invision.com, Inc
- Matt Martini
- matt&invision.net
-6279
- Visible Markets, Inc.
- Phil Gabardi
- frg&visiblemarkets.com
-6280
- Coreon, Inc.
- Ryan Moats
- rmoats&coreon.net
-6281
- Jingle Cats Music
- Mike Spalla
- jimpowers&deliveryman.com
-6282
- SDC Communications Ltd
- John Leitch
- john.leitch&sdccom.co.uk
-6283
- City-Net Technology Inc.
- Liwei Chen
- liweic&aol.com
-6284
- Wireless Networks, Inc.
- Cedric Berger
- cberger&wireless-networks.com
-6285
- Crossport Systems
- Nikos Mouat
- nikm&crossport.com
-6286
- One Tech Telecom Co.,Ltd.
- Cho, SeYil
- csyil&ottelecom.com
-6287
- Nextenso
- Olivier Epaud
- olivier.epaud&nextenso.com
-6288
- Euskaltel S.A.
- Alexander Rivas Bilbao
- arivas&euskaltel.es
-6289
- Adapcom Inc.
- Dawkoon Lee
- dawklee&usa.net
-6290
- LightSand Communications, Inc.
- Ravi Natarajan
- ravin&lightsand.com
-6291
- Bates College
- Karen McArthur
- kmcarthu&bates.edu
-6292
- Leadership Technologies, Inc.
- Scott Winder
- scott.winder&usa.net
-6293
- Kasenna, Inc.
- Bob Bateman
- bateman&kasenna.com
-6294
- Active Telco
- Azeem Butt
- azeem&activetelco.com
-6295
- Wilhoyt Industries
- Michael Wilhoyt
- wilhoyt&wilhoyt.com
-6296
- DASAN Co.,LTD.
- Wonhee Lee
- whlee&da-san.com
-6297
- Enel.it
- Antonello Laise
- laise.antonello&enel.it
-6298
- MP3.com
- Scott Kelley
- scottk&mp3.com
-6299
- SUNY Cortland
- Scott Thomas
- scottT&em.cortland.edu
-6300
- Karl Miller
- Karl Miller
- marvin1969&aol.com
-6301
- Packet Dynamics Ltd
- Hugh Evans
- hugh.evans&packetdynamics.com
-6302
- Emerson Energy Systems
- Anders Marklund
- anders.marklund&emersonenergy.com
-6303
- Cityspace Ltd
- Philip Lishman
- phil.lishman&cityspace.com
-6304
- fogcity
- MinSuk Kim
- K9235&CHOLLIAN.NET
-6305
- Flextronics International
- Tommie Persson
- oid&flextronics.com
-6306
- Dartware, LLC
- William Fisher
- william.w.fisher&dartware.com
-6307
- Ipanema Technologies
- Florian Bonnet
- bonnet&ipanematech.com
-6308
- cholul
- Will Ballantyne
- will&cholul.com
-6309
- Dan Nielsen Consulting
- Dan Nielsen
- dan&dan-nielsen.dk
-6310
- KaanBaan Technologies
- Anthony Graffeo
- agraffeo&kaanbaan.com
-6311
- Gomez Advisors, Inc.
- Brian Thomas
- noc&gomez.com
-6312
- Pelican Security, Inc.
- Ayelet Steinitz
- ayelet&PelicanSecurity.com
-6313
- InnovaCom, Inc.
- Ken Regnier
- kenr&transpeg.com
-6314
- VillaMontage Systems
- Balaram Donthi
- bdonthi&villamontage.com
-6315
- Comissão para Coordenação do Projeto SIVAM
- Luiz Anésio de Miranda
- anesio&cc.sivam.gov.br
-6316
- Bill Fenner
- Bill Fenner
- bfenner&acm.org
-6317
- Netfox
- Lam Kam Chor
- geofox&softhome.net
-6318
- lesswire AG
- Matthias Mahlig
- mahlig&lesswire.de
-6319
- Caldera Systems, Inc.
- Randy Cook
- randy&calderasystems.com
-6320
- simonstl.com
- Simon St.Laurent
- simonstl&simonstl.com
-6321
- Calix Networks
- Abel Tong
- abel.tong&calix-networks.com
-6322
- Entone Technologies Ltd.
- Mike Tang
- mike.tang&entone.com
-6323
- NewCross Technologies, Inc
- Thompson Wong
- twong&newxt.com
-6324
- CoolAlerts, Inc.
- Kirk Noda
- kirk&coolalerts.com
-6325
- Harmonix Corporation
- Shey Hakusui
- shey&hxi.com
-6326
- LongBoard, Inc.
- Weidung Chuang
- wchuang&lboard.com
-6327
- Drews TC
- Heinz Drews
- heinz&drews.tc
-6328
- WizWise Technology
- E.C. vande Stadt
- office&wizwise.nl
-6329
- Internet Business Factory
- Girish Bajaj
- bajajg&usa.net
-6330
- Microdot Computing Services
- Andrew Smith
- Andy-Smith&microdotcomputingservices.co.uk
-6331
- Optimation New Zealand Limited
- Seth Yates
- seth.yates&optimation.co.nz
-6332
- Four Seasons Produce, Inc.
- Bennett Samowich
- brs&fsproduce.com
-6333
- Accord Networks Ltd.
- Roni Even
- roni_e&accord.co.il
-6334
- beTRUSTed
- Jay Robertson
- support&betrusted.com
-6335
- Adroit Controls
- J.S. Nisheeth
- adroit&icenet.net
-6336
- Digital Fountain
- David M. Kushi
- kushi&digitalfountain.com
-6337
- Crytaliz, Inc.
- Chris Stacy
- cstacy&crystaliz.com
-6338
- Sportshuddle.Com
- Chris Nugent
- chris.nugent&sportshuddle.com
-6339
- Digital China (Shanghai) Networks Ltd.
- Emily Jin
- jinnan&digitalchina.com
-6340
- Otto Kind
- Stefan Kaesler
- s.kaesler&kind-ag.de
-6341
- Harvard University
- Marilyn M. Shesko
- marilyn_shesko&harvard.edu
-6342
- Hyperchip, Inc.
- Preet Mohan S Ahluwalia
- pahluwalia&hyperchip.com
-6343
- YMCA England
- Stephen Buckley
- intranet&ymca.org.uk
-6344
- Hunter Technology Inc.
- Hyunajae Yim
- jayi&htt.co.kr
-6345
- Compuprint S.P.A
- Paolo Tagliavini
- Paolo.Tagliavini&compuprint.it
-6346
- DIMAT, S.A.
- Josep Salat
- jsv&dimat.es
-6347
- Sierra Monitor Corporation
- Adam OwYoung
- AOwYoung&sierramonitor.com
-6348
- Liquid Digital Information Systems
- Jonathan Donald
- jonathan&ldis.com
-6349
- Treeblossom Technologies
- Jonathan Donald
- jeddak&bellatlantic.net
-6350
- Blue Cross Blue Shield of Michigan
- Pamela Hensley
- phensley&bcbsm.com
-6351
- Shawn Systems, Inc.
- Arthur Harris
- harris&shawn.com
-6352
- Ciena Corporation (formerly 'Catena Networks')
- Daniel Rivaud
- drivaud&ciena.com
-6353
- Avisto SA
- Scott Willy
- scott.willy&avisto.com
-6354
- Telways Communication Co.,Ltd.
- David Chang
- davidhsu&telways.com
-6355
- Sipher Internet Tachnology
- Girish Chopra/ Andy East
- girish&sipher.co.uk/andy&sipher.co.uk
-6356
- Innovative Software AG
- Andreas Herbst
- snmp&isg.de
-6357
- B2 Systems, Inc.
- David Schwartz
- david_schwartz&b2systems.com
-6358
- Unimark, Inc.
- Steven Blitstein
- ssb&unimark.com
-6359
- Cyveillance Inc.
- David Heath
- dheath&cyveillance.com
-6360
- LiveVault Corporation
- Ted Hess
- thess&livevault.com
-6361
- Siemens Building Technologies Ltd
- Steve Reid
- steve.reid&gb.sibt.com
-6362
- Baumann Technologie
- Ralf Taegener
- r.taegener&btnet.de
-6363
- CyberSolutions GmbH
- Martin Wille
- snmp&cys.de
-6364
- Andréa Informatique
- Juan Camacho
- andrea&andrea.fr
-6365
- Novamedia Sistemas S.L.
- Sergio Muñoz García
- smg&novamedia.es
-6366
- KOREA LINK
- Byoung-Hyo Cheon
- ddorong&korealink.ne.kr
-6367
- Linkabit - A Titan Systems Company
- Mark A. Cusano
- mcusano&titan.com
-6368
- Schmid Telecom AG
- Gian Lucas Poltera
- poltera&schmid-telecom.ch
-6369
- Lexi-Comp, Inc.
- Jason McCormick
- jasonm&lexi.com
-6370
- First USA Bank
- Jon Austin
- JonAustin&FirstUSA.com
-6371
- Minerva Networks Inc
- Jackie Pang
- jpang&minervanetworks.com
-6372
- Kresa Ranch
- George L. Kresa
- gkresa&yolo.net
-6373
- 4DL Inc.
- Youngmin Jeon
- touch&4dl.com
-6374
- CECI
- chia-fan chung
- CCF&a169.iam.ntu.edu.tw
-6375
- CHINA ENGINEERING CONSULTANTS,INC.
- STEVEN LIN
- steven&ceci.org.tw
-6376
- PDVSA
- Lisbeth Schloeter
- Lisbeth.Schloeter&intesa.com
-6377
- OpenPages, Inc.
- Daniel French
- Daniel_French&openpages.com
-6378
- Lanit
- Sergey Labutin
- lsm&lanit.ru
-6379
- Servgate Technologies Canada Inc.
- Jing Jiang
- jjiang&servgatecanada.com
-6380
- Isdnet
- David Ponzone
- dponzone&isdnet.net
-6381
- burst.com
- Arthur Allen
- arthur.allen&burst.com
-6382
- SAGA Software, Incorporated
- Jonathan Arnold
- Jonathan.Arnold&sagasoftware.com
-6383
- OC
- Dieter Kirchner
- dk&oclink.de
-6384
- V&S Multimedia S.A.
- Ismael Mendez
- ismael&vsm.es
-6385
- Pfizer
- Jon B Collins
- jon_b_collins&groton.pfizer.com
-6386
- Saturn Technologies
- Bill Woloch
- bwoloch&saturntech.com
-6387
- Big Band Networks, Ltd
- Hezi Oved
- hezio&bigbandnet.com
-6388
- TeleRelay
- Stephan Biesbroeck
- stephan.biesbroeck&telerelay.com
-6389
- COM DEV International
- Brett Moser
- brett.moser&comdev.cc
-6390
- DBCORP Information Systems Inc.
- Bruce McCartney
- bmccartn&dbcorp.com
-6391
- Xtremesoft Inc.
- Ian G. Melven
- imelven&xtremesoft.com
-6392
- Chiaro Networks Ltd.
- Jennifer Zhao
- jzhao&chiaro.com
-6393
- Haliplex Pty Ltd
- Anthony Merry
- support&haliplex.com.au
-6394
- Skelton Consulting GmbH
- Charles Skelton
- c.skelton&skelton.de
-6395
- ProSaldo Software B.V.
- J. Rump
- jim&prosaldo.nl
-6396
- Absolute Website Solutions
- Gloria Terrill
- gloriasdei&juno.com
-6397
- Nayna Networks, Inc.
- Carmody Quinn
- carmody&nayna.com
-6398
- Lindner & Pelc Consult GmbH
- Olaf Lindner
- lindner&lpconsult.de
-6399
- Intelligent Maintenance Systems Ltd (formerly 'Edrich Integration')
- Paul Edrich
- paul.edrich&ims-evolve.com
-6400
- Millenux GmbH
- Thomas Uhl
- thomas.uhl&millenux.com
-6401
- JTI OF GEORGIA
- CHRISTOPHER G. JOHNSON
- CJOHNSON&JTECHNOLOGYOFGA.COM
-6402
- OPTEL Ges. für Lasertechnik und Elektronik mbH
- Ralf Magiera
- Ralf.Magiera&optel.de
-6403
- Universidad Blas Pascal
- Alfredo Edye
- aedye&ubp.edu.ar
-6404
- ECRESO (formerly 'Ecreso RFTS Broadcast')
- Eric PERE
- pere&ecreso.com
-6405
- Activ Australia
- Jonathan Downes
- jonno&activ.net.au
-6406
- Neomar
- Patrick Hundal
- hundal&neomar.com
-6407
- bit-Services GmbH
- Christian Voss
- cvoss&dimetis.de
-6408
- Mikom GmbH
- Hans-Peter Kabout
- kai.kabout&mikom.com
-6409
- Mondial Assistance Limited
- Geoff English
- geoff_english&mondial-assistance.co.uk
-6410
- Zoneworx, Inc.
- Carl Marcinik
- clmarcinik&zoneworx.com
-6411
- Overland Storage, Inc. (formerly 'Quantum Corp - Snap Division')
- Dan Burrows
- dburrows&overlandstorage.com
-6412
- HiddenMind Technology
- David Zimmerman
- dzimm&hiddenmind.com
-6413
- I.S. Associates, Inc.
- John Marshall
- jpm&isassoc.com
-6414
- Embry-Riddle University
- Phil D'Amore
- damorep&db.erau.edu
-6415
- Caspian Networks, Inc.
- Brian Hassink
- bhassink&caspiannetworks.com
-6416
- SolutionZ Pty Ltd (Australia)
- Ed Tarento
- etarento&solutionz.com.au
-6417
- Victorian Automobile Chamber of Commerce
- David Nolan
- d.nolan&vacc.asn.au
-6418
- The Templar Corporation
- R.W. Shore
- rws&templarcorp.com
-6419
- Pro-bel Ltd
- Malcolm Butler
- malcolm.butler&pro-bel.co.uk
-6420
- IN-MX
- Oliver Marugg
- o.marugg&in-mx.ch
-6421
- H M Customs & Excise
- Marian Kay
- Marian.kay&hmce.gsi.gov.uk
-6422
- BT
- Jasper Lanek
- jasper.lanek&bt.com
-6423
- ObjectSpace, Inc.
- Jim Canter
- jcanter&objectspace.com
-6424
- Viawest Internet Services
- Bruce Kiefer
- bkiefer&viawest.net
-6425
- Branch Systems
- Michael A. Branch
- unix_wizard&yahoo.com
-6426
- e-Appliance Corporation
- Robert Edwards
- redwards&eappliancecorp.com
-6427
- Locus Dialogue
- Raymond Menard
- rmenard&locusdialogue.com
-6428
- T-Online International AG
- H. Enders
- h.enders&t-online.net
-6429
- ALTO
- Frank Joly
- franck.joly&alto.org
-6430
- Ericsson Consulting GmbH
- Juergen Petrias
- juergen.petrias&ericsson.com
-6431
- BroadSoft, Inc.
- Ken McInerney
- ken&broadsoft.com
-6432
- Orblynx, Inc.
- Jaime Vargas
- jvargas&orblynx.com
-6433
- Excel.Net, Inc.
- Larry A. Weidig
- lweidig&excel.net
-6434
- WebMD
- Fiaz Hossain
- fiaz&webmd.net
-6435
- Holistix, Inc.
- Ken Dornback
- ken.dornback&holistix.net
-6436
- Wapme Systems AG
- Stipe Tolj
- tolj&wapme-systems.de
-6437
- Kathrein Werke K.G.
- Peter Mack
- mack&kathrein.de
-6438
- MKNET ADVIES
- Marcel Kuiper
- marcel&mknet.nl
-6439
- NexTReT s.l.
- Domènec Sos i Vallès
- dsv&nextret.net
-6440
- TradeCast, Ltd.
- Manmeet Singh, CTO
- msingh&tcast.com
-6441
- i2 Technologies, Inc.
- Padma Reddy
- Padma_Reddy&i2.com
-6442
- TWCT dba Daughters and Dad
- Timothy W. Tucker
- TWCT&aol.com
-6443
- Out of our minds.
- Timothy W. Tucker
- TWCT&aol.com
-6444
- Gearhead Group
- Donis Marshall
- donis&gearheadpress.com
-6445
- Sportsplanet2000
- Andrew Sawtelle
- iajones110&aol.com
-6446
- Gaton Technologies LTD
- Keren Kroglen
- kerenk&post.tau.ac.il
-6447
- Synaxia Networks
- Jeff King
- jeff.king&synaxia.com
-6448
- DigiVision Tech.
- Jianxin Geng
- frank_gjx&shdv.com
-6449
- Comodo CA Ltd
- Robin Alden
- robin&comodo.com
-6450
- Idsec Limited
- Stephen Bishop
- sbishop&idsec.co.uk
-6451
- Mystical Creations
- Scott Beveridge
- sjb&mysticalcreations.com
-6452
- Advanced Network Solutions, Inc
- Tom Strack
- TStrack&Advnw.com
-6453
- CORE COMMUNICATIONS CO., Ltd.
- Gun Uk Nam
- gunam&corecom.co.kr
-6454
- Postel Services
- Soobok lee
- lsb&postel.co.kr
-6455
- Technology Thesaurus Corp.
- Kevin Huang
- kevin&ttc-group.com.tw
-6456
- NETdefence Co. Limited
- Matthew Tam
- mtam&netdefence.com
-6457
- Eureka Soft
- Moussa Chahine
- moussa.chahine&eurekasoft.fr
-6458
- GPr Sistemas Ltda
- Rodrigo Dias Arruda Senra
- gpr&gpr.com.br
-6459
- Linfield College
- Rob Tanner
- rtanner&linfield.edu
-6460
- uclick
- Scott Kahler
- scottk&uclick.com
-6461
- Center for Internet Research
- Prashant Agrawal
- prashant&comp.nus.edu.sg
-6462
- freiheit.com
- Joerg Kirchhof
- joerg&freiheit.com
-6463
- VocalData, Inc
- Steve Bakke
- sbakke&vocaldata.com
-6464
- Stevens Institute of Technology OIT
- Joe Formoso
- jformoso&stevens-tech.edu
-6465
- Cacheon, Inc.
- Ian W. Kuvik
- ian&cacheon.com
-6466
- The Devil You Say
- Timothy W. Tucker
- TWCT&aol.com
-6467
- Land Of Linking
- Timothy W. Tucker
- TWCT&aol.com
-6468
- Patent Off
- Timothy W. Tucker
- TWCT&aol.com
-6469
- Karma Kahn
- Timothy W. Tucker
- TWCT&aol.com
-6470
- We're no dummies
- Timothy W. Tucker
- TWCT&aol.com
-6471
- Con Temporaries
- Timothy W. Tucker
- TWCT&aol.com
-6472
- Antiballistic
- Timothy W. Tucker
- TWCT&aol.com
-6473
- Halls Of Ivy
- Timothy W. Tucker
- TWCT&aol.com
-6474
- Wiffenpoof
- Timothy W. Tucker
- TWCT&aol.com
-6475
- Home Is The Hunter
- Timothy W. Tucker
- TWCT&aol.com
-6476
- The Craft of Elves
- Timothy W. Tucker
- TWCT&aol.com
-6477
- I Was Misinformed
- Timothy W. Tucker
- TWCT&aol.com
-6478
- Shot To Shingles
- Timothy W. Tucker
- TWCT&aol.com
-6479
- Right-hand Twist
- Timothy W. Tucker
- TWCT&aol.com
-6480
- Solomon Tech. Corp.
- Peter Yen
- jyan&solomon.com.tw
-6481
- MAGISTRAL, Ltd.
- Gennady S. Ratin
- idcmag59&cityline.ru
-6482
- ICSynergy
- Martin Gee
- martin.gee&icsynergy.com
-6483
- Captus Networks
- Mark Ontiveros
- mark&captusnetworks.com
-6484
- Campus Crusade for Christ, Inc.
- Karl Kranich
- kkranich&ccci.org
-6485
- Spatial Technologies
- Douglas Sellers
- doug.sellers&cmgisolutions.com
-6486
- Alcatel-Lucent Enterprise (previous was 'Alcatel')
- Ravi Govil
- ravi.govil&al-enterprise.com
-6487
- YouSync
- Albert Allen
- aallen&yousync.com
-6488
- TalentStorm Enterprises
- Christopher Buzzetta
- chris&talentstorm.com
-6489
- Siemens Cerberus
- Armin Born
- armin.born&cerberus.ch
-6490
- DeTeMobil Deutsche Telekom MobilNet GmbH
- Jörg Rass
- joerg.rass&t-mobil.de
-6491
- Cytek Media Systems, Inc.
- Tom Dolsky
- tomtek&cytekmedia.com
-6492
- Phyve
- Colin Frahm
- colin.frahm&phyve.com
-6493
- COMTRUST
- Tayseer A. Hasan
- tayseer&emirates.net.ae
-6494
- Kraft und Partner GmbH
- Ingo Fischer
- fischer&kraftup.com
-6495
- SeeDragon Software
- Laura Jauregui
- mljm&seedragon.com
-6496
- Cottons Car Superstore
- Janice Cotton
- jan.com&hotmail.com
-6497
- NetEye Solutions
- Alex Kogan
- kogan.alex&telrad.co.il
-6498
- Maintenance One
- Frank Jones
- frank.jones&m-1.co.uk
-6499
- ekit.com Pty Ltd
- Michael Bailey
- mbailey&ekit-inc.com
-6500
- VA Linux Systems
- San Mehat
- smehat&valinux.com
-6501
- Macro 4
- John Clarkson
- john.clarkson&macro4.com
-6502
- refat
- Refat
- refatcom&usa.com
-6503
- NETGEM
- MARC BURY
- marc.bury&netgem.com
-6504
- Navini Networks
- Dexter Lu
- dexter&navini.com
-6505
- TARGUSinfo
- Jay Steiger
- jaysteiger&targusinfo.com
-6506
- LiveWire Communications, Inc.
- Josh Fryman /Ted Grauch
- fryman&lw.net/ tedg&lw.net
-6507
- OptiMight Communications Inc.
- Harry Wang
- hwang1&optimight.com
-6508
- Shanghai DigiVision Technology Co.,Ltd
- Bruce Zhou
- cable_modem&shdv.com
-6509
- Antrim Studios and Software Cellar
- Jimmy Russell
- jprussell&earthling.net
-6510
- Pioneer Corporation
- Akio Fukushima
- akio&orl.pioneer.co.jp
-6511
- TelCom Technology
- Jae Woon, Lee
- telcomt&chollian.net
-6512
- FamTek Professional Services, Inc.
- Michael Hankinson
- mike&famtek.com
-6513
- Whale Communications
- Shlomi Afia
- shlomi&whale-com.com
-6514
- Innovative Systems, L.L.C.
- Gene Vold
- genev&innovsys.com
-6515
- Zvolve Systems, Inc.
- Tsani Jones
- tjones&zvolve.com
-6516
- Comprehensive Test Ban Treaty Organization
- John Coyne
- John.Coyne&ctbto.org
-6517
- FlowServer
- David Gonzalez
- se04532&salleURL.edu
-6518
- Systems Solutions of the Southern Tier, Inc.
- Peter Kinev
- pkinev&bga.com
-6519
- Sabre Inc./ Sabre BTS
- Casey Fahey
- casey.fahey&sabre.com
-6520
- Dot Hill Systems
- Gary Dunlap
- gdunlap&dothill.com
-6521
- ChainLink Technologies
- Rajat Verma
- rverma&clti.com
-6522
- cv cryptovision GmbH
- Uwe Krieger
- uwe.krieger&cryptovision.com
-6523
- Bilboko Trading
- Lewis Heath
- lewisheath&netscape.net
-6524
- Greenbytes GmbH
- Julian F. Reschke
- fax&greenbytes.de
-6525
- Jasmine Networks, Inc.
- George Lin
- glin&jasminenetworks.com
-6526
- Windward Consulting Group
- Jim Kelly
- jkelly&windwardcg.com
-6527
- Alcatel-Lucent (formerly 'Panthera Networks, Inc.')
- Jason Sterne
- Jason.Sterne&alcatel-lucent.com
-6528
- Source One
- David Steinbrecher
- Steino1128&aol.com
-6529
- Bundesamt für Sicherheit in der Informationstechnik
- Michael Thiel
- michael.thiel&bsi.bund.de
-6530
- 2N spol. s r.o.
- Tomas Trefny
- trefny&tel-2n.cz
-6531
- TeamWork Consulting
- Torbjørn Mastad
- torbjmas&online.no
-6532
- Niobrara R&D Corp.
- Scott Henson
- shenson&niobrara.com
-6533
- FaceTime Communications
- Yuri Khodosh
- ykhodosh&facetime.com
-6534
- hp
- Jung Kyun Kim
- church99&truth.or.kr
-6535
- TECORE, Inc.
- Tara Pittman
- pittman&tecore.com
-6536
- NetForensics.com
- Kevin Hanrahan
- kevin&netforensics.com
-6537
- Brown University
- Steven Carmody
- Steven_Carmody&brown.edu
-6538
- Winford Engineering
- Benjamin Bright
- bbright&winfordeng.com
-6539
- EdgeOn Systems, Inc.
- Jaspal Singh
- JSingh&EdgeOn.com
-6540
- Alamo Personal Computers, Inc.
- David Lozano
- david&alamopc.net
-6541
- Transindigo, Inc
- John Field
- john.field&transindigo.com
-6542
- Slamdunk Networks
- Ram Chinta
- rchinta&slamdunknetworks.com
-6543
- AmBell
- Carlos Rosado
- carlos&ambell.com
-6544
- Fivesight Technologies
- Justin Guinney
- jguinney&fivesight.com
-6545
- THINK iT
- Stephan Schoenberger
- ssc&thinkit.ch
-6546
- ITOCHU Techno-Solutions Corporation
- Hidemune Inayoshi
- hidemune.inayoshi&ctc-g.co.jp
-6547
- Network Management Solutions, Inc.
- Dave LaDue
- mktg&netmg.com
-6548
- Wavelength Digital Limited
- Dr D K Anderson
- danderson&wavelength-digital.com
-6549
- Axxcelera Broadband Wireless
- Jamal Hamdani
- info&moseleysb.com
-6550
- weblicon technologies AG
- Angelika Drees
- angelika.drees&weblicon.net
-6551
- Hotline Communications Ltd.
- Stephen Klump
- oidhound&bigredh.com
-6552
- Virbus AG
- Andreas Piesk
- apiesk&virbus.de
-6553
- GHAKO FISHERIES COMPANY LIMITED
- MR.YUN BAEK, PARK
- ybpark&ghana.com
-6554
- Optima Technologies, Inc.
- Eric Eason
- eseason&optima-tech.com
-6555
- DataFoundry.net, Inc.
- Michael Douglass
- mikedoug&datafoundry.net
-6556
- Sigma Networks
- Steve Feldman
- sfeldman&sigmanetworks.com
-6557
- dotRocket, Inc
- James Tosh
- tosh&dotrocket.com
-6558
- Security Technologies Inc.
- Davey Park
- dhpark&stitec.com
-6559
- Usha Communications Technology
- Koushik Chatterjee
- koushik.chatterjee&ushacomm.co.in
-6560
- TelEnergy H. GmbH
- Dr. Dilmagani
- telenergy&t-online.de
-6561
- P.S.K. AG
- Bernhard Voit
- bernhard.voit&psk.at
-6562
- Nexland Inc.
- Daniel Sultan
- dsultan&nexland.com
-6563
- TimeBridge Technologies
- David C. Smith
- dcsmith&timebridge.com
-6564
- Gradient Solutions
- Paschal Nee
- Paschal.Nee&gradient.ie
-6565
- Johns Hopkins Institutions
- Etan Weintraub
- eweintra&jhmi.edu
-6566
- Metropolitan Life Insurance
- Eric Herasymchuck
- eric.j.herasymchuck&metlife.com
-6567
- Klimke Industry Consulting
- Horst Dieter Klimke
- klimke&addcom.de
-6568
- Promptu Systems Corporation (formerly 'AgileTV')
- Blair Fidler
- bfidler&promptu.com
-6569
- INVENTEC CORPORATION
- JH CHYAN
- chyan.jh&inventec.com
-6570
- ACOMZ NETWORKS Corp.
- Younkwan, Lee
- younkwan&acomz.com
-6571
- Fusion In Tech co.,Ltd.
- Yong Son
- yongson&fusionintech.com
-6572
- NETLINKS CO.,LTD.
- Jin-seon Hwang
- jinseon&netlinks.co.kr
-6573
- PerVigil, Inc.
- John M. Johnson III
- support&pervigil.com
-6574
- Synology Inc.
- Justin Deng
- justind&synology.com
-6575
- Marriott International, Inc.
- Kathy Memenza
- Kathy.Memenza&marriott.com
-6576
- Privada, Inc.
- Josh Lubliner
- josh&privada.net
-6577
- Indura Corporation
- Bruce Kosbab
- bruce.kosbab&indurasoft.com
-6578
- RedWave Networks
- Rishi Grover
- rgrover&redwavenet.com
-6579
- Maru Networks, Inc.
- Eugene Oh
- eugeneoh&sdpia.com
-6580
- OSS Systems
- Shraddha
- ossi&vsnl.com
-6581
- Exército Brasileiro
- Cristiano da CUNHA Duarte
- cunha&citex.eb.mil.br
-6582
- Sigma Services Sénégal
- Gade Ndiaye
- alysarr&hotmail.com
-6583
- Barone, Budge and Dominick
- Walluce Pinkham
- Walluce&jhb.bbd.co.za
-6584
- Bundesrechenzentrum GmbH
- Andreas Windisch
- andreas.windisch&brz.gv.at
-6585
- W-Phone Inc.
- Jack Song
- jsong&w-phone.com
-6586
- GeoworksAdam
- de Boor
- adam&geoworks.com
-6587
- Airvana Inc.
- Jecko Li
- jecko.li&airvananet.com
-6588
- tietoenator
- apa
- ajith.poovathkunnel&tietoenator.com
-6589
- IFA Meß-, Regel- und Elektrotechnik GmbH & Co.
- Roland Leister
- roland.leister&ifa-mre.de
-6590
- Keipher Solutions
- Keith Rowland
- ker&keipher.com
-6591
- Haansoft Inc.
- Jerry Chung
- reverse&haansoft.com
-6592
- Darin Vision Co
- Sergei Shinkevich
- shink&darim.com
-6593
- neoConsulting, LLC
- Aliester Campbell
- aliester&neoconsulting.com
-6594
- Shijin & Co
- shiji
- shijin_s&yahoo.com
-6595
- SA Mart.com
- Conrad Classen
- cclassen&sa-mart.com
-6596
- Julie Julie
- Julie Liaw
- liawjulie&yahoo.com
-6597
- MessageHero, Inc.
- Michael A. Ganton
- mganton&messagehero.com
-6598
- Cybertron Network Solutions
- Steve Kowalik
- stevenk&hasnolife.com
-6599
- Silver Bow Co.Ltd
- Mr.Mingzhe Zhang
- mingzhe&web.de
-6600
- International Charities Dep. of Taihe Travel Agency,China
- Fu Ying
- qifei9999&yahoo.com.cn
-6601
- IP Dynamics Inc.
- Raymond Lee
- raymondl&ipdynamics.com
-6602
- Sunrise Telecom Inc.
- John Sha
- john_sha&sunrisetelecom.com
-6603
- Vitesse Semiconductors
- Ravi Gidvani
- ravi&vitesse.com
-6604
- Tosky Management Consulting Co.ltd
- Mr.zhenyu Tang
- tangxin&zb-public.sd.cninfo.net
-6605
- Euroclear Operations Centre
- Basselier Jo
- basselier_jo&euroclear.com
-6606
- Platypus Technology
- Adrian Sheedy
- adrians&platypus.com
-6607
- Radiant Networks Plc
- Sean Lynch
- sean.lynch&radiantnetworks.co.uk
-6608
- circuLAB
- Henk Jonas
- Henk.Jonas&circulab.com
-6609
- Western New England College
- Peter Szaban
- pszaban&wnec.edu
-6610
- Aditya Systems
- Shaikh R Hoque
- rajibul&hotmail.com
-6611
- SIGMA SERVICES SENEGAL
- Gade Ndiaye
- alysarr&hotmail.com
-6612
- Juniper Financial Corp.
- Mark Rouse
- mrouse&juniper.com
-6613
- Millimetrix Broadband NetworksLtd.
- Yehuda Kasirer
- yehudak&millimetrix.net
-6614
- Telecom Technologies Inc.
- Eugene Williams
- eugene.williams&ttimail.com
-6615
- Clairvoyant Software
- Lee Atchison
- lee&clairvoyant.com
-6616
- Lexica, LLC
- Jason Schuchert
- jschuchert&lexica.net
-6617
- MicroStrategy
- Franck Telman
- ftelman&strategy.com
-6618
- Quintum Technologies, Inc.
- Raj Bhatia
- raj_bhatia&quintum.com
-6620
- Global Telemann System Inc.
- David Kim
- cckskim&telemann.com
-6621
- Department of Foreign Affairs and Trade (Australia)
- Ravi Vasudevan
- ravi.vasudevan&dfat.gov.au
-6622
- secondomillennio
- sauro
- sauro@secondomillennio
-6623
- servizi2000
- sauro
- saurogolf&hotmail.com
-6624
- Sauro Prosperi
- sauro
- saurogolf&hotmail.com
-6625
- PVT, a.s.
- Martin Szotkowski
- oper&ica.cz
-6626
- Tekotelecom S.p.A.
- Stefano Parenti
- info&tekotelecom.it
-6627
- Telematica International B.V.
- Lucas Oorschot
- L.Oorschot&connect-it.ti.nl
-6628
- Juaben
- Kwaku Okyere
- okyere&england.com
-6629
- ulticom
- Valerie Gastaud
- valerie.gastaud&ulticom.com
-6630
- Accuris Ltd
- John O'Donnell
- jodonnel&accuris.ie
-6631
- Bowling Green State University
- A.J. Fuller
- fuller&bgnet.bgsu.edu
-6632
- DST Controls
- Jonathan Cutting
- jcutting&dstcontrols.com
-6633
- Personal Genie, Inc.
- Nazario Irizarry, Jr.
- nirizarry&personalgenie.com
-6634
- UUNET
- Jim Potter
- jim.potter&mci.com
-6635
- Cenus Technologies, Inc.
- Brad Smith, Lichun Bao
- brad&eng.cenus.com, baolc&eng.cenus.com
-6636
- Indiana District - LCMS
- Greg Zelt
- gzelt&in.lcms.org
-6637
- Rainbow Computer Warehouse
- Wilfred Lau
- wlau&isasolution.com
-6638
- 3Ware Inc
- Medi Montaseri
- medi.montaseri&3ware.com
-6639
- hhl
- Hanhe
- hhl888wf&china.com.cn
-6640
- GMV Network, LLC
- Bob Alvarez
- bob&gmvnetwork.com
-6641
- Netco Systems Inc.
- Jaebong Lee
- jblee&netcos.co.kr
-6642
- scommtech
- Tae seop An
- greatman99&freechal.com
-6643
- IPR Systems Pty Ltd
- Renato Iannella
- renato&iprsystems.com
-6644
- OzAuthors Pty Ltd
- Renato Iannella
- renato&iprsystems.com
-6645
- gForce Systems
- R M Jacobs
- rjacobs&gforce.com
-6646
- Chevron
- R. H. (Bob) Beach
- rhbea&chevron.com
-6647
- Planet
- Daniele Orlandi
- daniele&orlandi.com
-6648
- Intramon Ltd
- Chris Hansen
- chansen&intramon.com
-6649
- NewGrid Technology Inc.
- Jongsun An
- jongsun&newgrid.co.kr
-6650
- The Distribution Systems Research Institute
- HISAO FURUKAWA
- furukawa&obn.dsri-dcc.or.jp
-6651
- FIREBONE
- hostmaster&alto.com
- ---none---
-6652
- ID-Karta
- Jan Korycan
- jan.korycan&id-karta.cz
-6653
- Tyan Computer Corporation
- Kenus Lee
- KenusL&tyan.com
-6654
- Chic Technology Corp.
- Oscar Yen
- Osacr_Yen&chic.com.tw
-6655
- Agenetics Inc
- Matthew Gressek
- webmaster&agenetics.com
-6656
- Cauris
- Harald Puhl
- oid&cauris.de
-6657
- Courion Corporation
- Kent Welch
- kwelch&courion.com
-6658
- Koshy's Computer Academy, Edathua
- Thomas Koshy
- koshycom&vsnl.com
-6659
- Alisa
- Lleshi
- @alisa_style&hotmail.com
-6660
- keraladotcom
- tomichen
- adhitchy&md5.vsnl.net.in
-6661
- Spike Broadband Systems, Inc.
- Dan Feldman
- dan.feldman&spikebroadband.net
-6662
- S.E.S.A. AG
- Anke Koglin
- ako&koeln.sesa.de
-6663
- Janeva Interactive
- Bert Blevins
- info&janeva.com
-6664
- Precidia Technologies
- Elmer Horvath
- elmer&precidia.com
-6665
- Atreus Systems Corp.
- Chris Wilson
- cwilson&atreuscorp.com
-6666
- innovaphone GmbH
- Martin Streller
- mstreller&innovaphone.com
-6667
- mediumrareJulian
- Priest
- julian&mediumrare.net
-6668
- To Be Or Not
- Timothy Tucker
- TWCT&aol.com
-6669
- Videotron ltee
- Pierre Roy
- pierre_roy&videotron.com
-6670
- Intelligent Instrumentation
- Paul Tobey
- ptobey&instrument.com
-6671
- Versonix
- Igor Vilenski
- igor&vcsonnet.com
-6672
- Proscend Communications Inc.,
- Swell Chen
- swell&proscend.com
-6673
- Align Systems Pty Ltd
- Paul Shirren
- webmaster&align.com.au
-6674
- Mercator
- K U Varghese
- kuvarghese&emirates.com
-6675
- News Interactive
- Doug Scoular
- scoulard&news.com.au
-6676
- Science Dynamics Corporation
- Siamak Behta
- sbehta&scidyn.com
-6677
- ONELINE AG
- Mario Wolframm
- wolframm&oneline.de
-6678
- Hyperknowledge (Europe)
- Simon Stirley
- s.stirley&hyperknowledge.com
-6679
- Surgient Networks, Inc.
- Kody Mason
- Kody.Mason&Surgient.com
-6680
- SOUTHPAW
- VINCENT D'AGUANNO
- FATBSTRD&BELLATLANTIC.NET
-6681
- Altea Communications Inc.
- Nicolas Souty
- n_souty&altea.qc.ca
-6682
- CommsHouse Ltd
- Andy Trayler
- andy.trayler&celticon.com
-6683
- AlphaTrust Corporation
- Bill Brice
- bill.brice&alphatrust.com
-6684
- eOriginal Inc.
- Ellis Peterson
- ekpeterson&eoriginal.com
-6685
- INOVA Diagnostics, Inc.
- Chuk Gawlik
- info&inovadx.com
-6686
- VeCommerce (NZ) Ltd.
- Tony Quinn
- Tony_Quinn&vecommerce.co.nz
-6687
- pAsia Inc.
- David Lin
- DavidLin&pAsia.com
-6688
- National Center for Software Technology,Ministry of InformationTechnology,Government of India
- R.Balaji
- netops&sangam.ncst.ernet.in
-6689
- Zolera Systems, Inc
- Rich Salz
- rsalz&zolera.com
-6690
- OmniCluster Technologies, Inc.
- Ron Valli
- ron.valli&omnicluster.com
-6691
- UTEL
- Jean-François C. MORFIN
- jefsey&wanadoo.fr
-6692
- Telenisus Corporation
- Weston Nicolls
- wnicolls&telenisus.com
-6693
- NetCertainty
- Ryan W. Kasten
- rwkasten&mindspring.com
-6694
- P.G.P. s.a.
- Stephan Leclercq
- sleclercq&pgp.be
-6695
- SAMS, Inc.
- Chris Horrocks
- chorr87752&aol.com
-6696
- Niagara Mohawk Power Corporation
- Andrew Gould
- goulda&nimo.com
-6697
- DOTCOM
- Mr. Arnaud KOPP
- arnaud.KOPP&dotcom.fr
-6698
- Micronet srl
- Claudio Ciccia
- micronetnqn&micronetnqn.com
-6699
- Vulcan Networks
- Sidney Antommarchi
- lsid&hotmail.com
-6700
- FinGO
- Sébastien Rodriguez
- rodriguez&fingo.com
-6701
- Creativ Network Technologies
- Anne Vaillancourt
- anne&creativnt.com
-6702
- Entrust CygnaCom
- Matt Cooper
- mcooper&sisko.cygnacom.com
-6703
- Cognitronics Corporation
- Andrew Consiglio
- aconsiglio&cognitronics.com
-6704
- Vancouver Language Institute Ltd.
- David C. Jackson
- dcj&schools.bc.ca
-6705
- Zygox, Inc.
- Vasu Murthy
- vasu&zygox.com
-6706
- NOAA/PMEL/EPIC
- Donald Denbo
- dwd&pmel.noaa.gov
-6707
- Rolf Buurke
- Rolf Buurke
- rolfbuurke&home.nl
-6708
- Handuru Telecom
- Kim sang min
- ksm&handuru.com
-6709
- Scarlet Telecom BV
- L. de Rooy
- ldr&globalxs.nl
-6710
- South Birmingham College
- Phil Watts
- philw&sbirmc.ac.uk
-6711
- Connect One
- Jakob Apelblat
- jakoba&connectone.com
-6712
- VOXTRONIC Technology
- Ing. Roman Roiss
- rr&voxtronic.com
-6713
- EIZO
- Philipp Liebmann
- philipp.liebmann&eizo.com
-6714
- Banco Santander Central Hispano
- Raul Lopez Marin
- rlm2&bancosantander.es
-6715
- HTT Consulting
- Robert G. Moskowitz
- rgm&htt-consult.com
-6716
- AMS Systems
- Mark Gillies
- mg&amslux.lu
-6717
- GiantLoop Network, Inc.
- Andrew King
- andrew.king&giantloop.com
-6718
- Exfo Fiber Optic Test Equipment
- Jocelyn Cimon
- jocelyn.cimon&exfo.com
-6719
- TransComm Technology System, Inc
- Jihua Cheng
- jcheng&transcomm.com
-6720
- PT. Hariff DTE
- Alwi Hasan/ Jawa Barat - Indonesia
- hariff&rad.net.id / alwih&indosat.net.id
-6721
- Lodbroker Pty Ltd
- Nils Oman
- nils.oman&lodbroker.com
-6722
- comMATCH Ltd.
- Dan Davidson
- dan.davidson&commatch.com
-6723
- Internet Names UK
- Mr. Suissa
- zvi&law.com
-6724
- Cap Gemini Telecom France IPNS
- Vincent Thinselin
- vthinsel&capgemini.fr
-6725
- Data Interchange Plc
- Andrew Filby
- andrew.filby&dip.co.uk
-6726
- CellPoint Systems
- Magnus Ericsson
- me&cellpoint.com
-6727
- WINIT s.a.
- Carlos Crosetti
- ccrosetti&winit.com.ar
-6728
- Interlink Networks, Inc.
- Wei Wang
- weiwang&interlinknetworks.com
-6729
- Dolby Laboratories, Inc.
- Steve Oddo
- sjo&dolby.com
-6730
- Nextel Partners Inc.
- John Goodman
- john.goodman&nextelpartners.com
-6731
- WIT Soundview
- Sanjay Das
- sdas&witsoundview.com
-6732
- Intercim Inc.
- Dan Edgar
- edgardm&intercim.com
-6733
- CMD Technology
- Mark O'Dell
- odell&cmd.com
-6734
- WEGO, Inc
- Brian J. Coan
- brian&wego.com
-6735
- Tenebrous
- Ronan Flood
- rpf&acm.org
-6736
- Jinny Software Ltd
- George Yazbek
- george.yazbek&jinny.ie
-6737
- New Era of Networks, Inc
- Mike Bachand
- mbachand&neonsoft.com
-6738
- Riversman
- Simon E. La Rosa
- iananumbers&riversman.com
-6739
- Spring Yellow
- 91474794437
- @springyellow&operamail.com
-6740
- Cal Poly State University
- Dan Malone
- mwadmin&calpoly.edu
-6741
- Nulli Secundus Inc
- David Bennett
- dave&nulli.com
-6742
- priceline.com Incorporated
- Jonathan Taylor
- jonathan.taylor&priceline.com
-6743
- Sophicomm
- Pierre Nadeau
- pierre.nadeau&sophicomm.com
-6744
- Dantron
- Daniel Thomas
- Fallenone&Msn.com
-6745
- LASAT Networks A/S
- Jacob Frost
- jfr&lasat.com
-6746
- Aftek Infosys Ltd.
- Mahesh Vaidya
- maheshv&aftek.com
-6747
- TeraBurst Networks
- Moshe Rozenblit
- mrozenblit&teraburst.com
-6748
- Up4grab. Inc
- Thomas Chapman
- cooling&up4grab.com
-6749
- Bosung Hi-Net Co., Ltd
- Seok-Hwan Kim
- president&hi-net.co.kr
-6750
- Gascom
- Vladimir Dubinkin
- dubinkin&gascom.ru
-6751
- Dolphin Interconnect Solutions AS
- Hugo Kohmann
- hugo&dolphinics.no
-6752
- Axtronics Inc.
- Pedro Ting
- pedro&iavista.com
-6753
- SysControl AG
- Simon Poole
- simon.poole&syscontrol.ch
-6754
- EzGov
- Chris Wilkenloh
- cwilkenloh&ezgov.com
-6755
- Rush Presbyterian St. Lukes Medical Center
- Douglas C. Wojcik
- dwojcik&rush.edu
-6756
- Unixguy.org
- Douglas C. Wojcik
- dwojcik&rush.edu
-6757
- Grid
- Carl Kesselman
- carl&isi.edu
-6758
- SimplySay Inc.
- Lee Walker
- lwalker&simplysay.com
-6759
- Allcharge
- Boris Temkin
- borist&allcharge.com
-6760
- Virginia Tech
- Ronald Jarrell
- jarrell&vt.edu
-6761
- Axonn Wireless Solutions
- Nathan Teske
- NathanT&Axonn.com
-6762
- Cambridge Positioning Systems Limit
- Martyn Lancaster
- martyn.lancaster&cursor-system.com
-6763
- Metakernel Network Laboratories
- Alexandre Dulaunoy
- adulau&metakernel.com
-6764
- Imagine Solutions
- Tom Guyton, Systems Engineer
- tom_guyton&imaginesolutions.com
-6765
- ML Hightower, Inc.
- J.J. Hageman
- jhageman&hightower.com
-6766
- CPNI
- Danny Chouinard
- hostmaster&cpnicore.com
-6767
- RLX Technologies, Inc.
- David Blankenship
- david.blankenship&rlx.com
-6768
- Pixelmetrix Corporation Pte
- Martin Janzen
- janzen&pixelmetrix.com
-6769
- Dynamic Imaging Corporation
- Gabriel Duque
- gduque&dimaging.com
-6770
- OpenCon Communication Systems
- Kamal Motwani
- registration&opencon.com
-6771
- CyberPath Inc.
- Sean Blinn
- registration&cyberpathinc.com
-6772
- eBSure Inc.
- Motty Alon
- motty.alon&ebsure.com
-6773
- Engineering International Corporation
- Joel E. Steiger
- jsteiger&eic-us.com
-6774
- University of Virginia
- James Jokl
- jaj&virginia.edu
-6775
- Cablevision
- John Pomeroy
- john&cv.net
-6776
- bmypc
- Keshet Ohad-Ziv
- ohadziv&bmypc.com
-6777
- TriGem InfoComm
- Ho Sung, Ko
- hsko&tgicc.com
-6778
- AboCom Systems, Inc.
- SHIH, CHIH-I
- trees&abocom.com.tw
-6779
- CHL NETHERLANDS B.V.
- Mr R. Lens
- marketing&chl.nl
-6780
- Linux Communications AS
- Ørnulf Nielsen
- on&lincom.no
-6781
- Vast
- Glady
- gladwin_r&hotmail.com
-6782
- Ciena (formerly 'Akara Inc.')
- Randy Jones
- rjones&ciena.com
-6783
- Tidepoint
- Ed DeBus
- ed.debus&tidepoint.net
-6784
- JP Systems
- Scott Lopez
- scott.lopez&jpsystems.com
-6785
- Delta Electronics Inc.
- Chris Tsai
- chris.tsai&delta.com.tw
-6786
- Dreamworks SKG
- Kevin Gray
- kgray&dreamworks.com
-6787
- NetConnect
- John Horton
- john.horton&netconnect.co.uk
-6788
- Whitebird
- Rolf Welde Skeie
- rws&thewhitebird.com
-6789
- OCTOGON Software Development GmbH
- Martin Helmling
- martin.helmling&octo-soft.de
-6790
- Finjan Software
- Yigal Edery
- yigal&finjan.com
-6791
- EXE Technologies, Inc.
- Mike Bradshaw
- mike_bradshaw&exe.com
-6792
- Active+ Software
- Daniel Doguet
- danield&activeplus.com
-6793
- UTIasi
- Radub
- radub&tuiasi.ro
-6794
- Adhesive Software Incorporated
- John Kellar
- john&dhcp-169.adhesive.com
-6795
- Pocono Pet Sitters
- MaryElizabeth O'Hara
- zach&pnpa.net
-6796
- TekVision Communications
- Keith Kim
- keith.kim&tekvision.net
-6797
- ConfigureSoft, Inc.
- David J. Easter
- David.Easter&configuresoft.com
-6798
- MaxLinear Hispania S.L.U.
- Mayte Bacete
- mbacete&maxlinear.com
-6799
- GlueCode, Inc.
- Tracy M. Adewunmi
- tadewunmi&gluecode.com
-6800
- Express Rail Link sdn Bhd
- Kenny Hor
- macrohard1&hotmail.com
-6801
- Gamma Technologies
- Bratkov Yuriy
- yuriy&gamma.kz
-6802
- M Design Communications
- Shigekazu Kitagawa
- shige&m-design.com
-6803
- BCI (Basic Commerce and Industries, Inc.)
- Phillip Rando
- PRando&bcisse.com
-6804
- Weinschel Corp
- Jerry Messina
- jmessina&weinschel.com
-6805
- PSA WORLD NET Inc.
- PS.ANDERSEN
- SERAF&FORUM.DK
-6806
- The Pennsylvania State University
- Academic Services and Emerging Technologies
- root&aset.psu.edu
-6807
- Eotvos Lorand University
- Vonderviszt Lajos
- vondervi&ludens.elte.hu
-6808
- Buyers Laboratory Inc.
- Len Wolak
- lwolak&bellatlantic.net
-6809
- Ontika Computersystems
- Kai Bankett
- kai.bankett&ontika.net
-6810
- MUXCOM Inc.
- Cheong Lee
- cheong&muxcom.com
-6811
- Nameflow
- Darryl C Price
- darryl&nameflow.com
-6812
- Yoda Communications, Inc.
- Raymond Tsai
- raymond&yoda.com.tw
-6813
- Olympia College
- Muazzem
- muazzem1&yahoo.com
-6814
- ItchyFeet Networks
- Andrew Agnew
- andy&itchyfeet.net
-6815
- CyberSpacia Pty Ltd
- Andrew Agnew
- andy&itchyfeet.net
-6816
- b4
- luiggi
- lolo&iponet.es
-6817
- Metanate Ltd
- David Lamkin
- drl&shelford.org
-6818
- Tripwire, Inc.
- Fenil Manani
- vendoralerts&tripwire.com
-6819
- Musicfans, Inc.
- Chris Maresca
- ckm&musicfans.com
-6820
- Menta Software
- Yaniv Azriel
- yaniv&mentasoftware.com
-6821
- TELECOM Lille1 (formerly 'ENIC')
- Jacques Landru
- landru&telecom-lille1.eu
-6822
- University of Cambridge, Card Office
- Nadine Larrington
- nl219&admin.cam.ac.uk
-6823
- Distributed Object Technologies, Inc.
- Jeffrey C. Rice
- jr&dotech.com
-6824
- List & Niemann
- Klaus Niemann
- klaus.niemann&listniemann.de
-6825
- iCue Systems, Inc.
- Larry Perng
- larryp&icuesys.com
-6826
- Dark Matter Network Technologies, Inc.
- Scott Apgar
- sapgar&darkmatternet.com
-6827
- Evertz Microsystems Ltd
- Geoffrey Tam
- geoff&evertz.com
-6828
- Caviness Software
- Pete Caviness
- pete&caviness.com
-6829
- RAMiX Inc.
- Mark Bronson
- mark&ramix.com
-6830
- onehottmin Inc.
- Chester Potter
- onehottmin&home.com
-6831
- DSS Digital Security Service GmbH
- Sven-Holger Wabnitz
- wabnitz&digital-security.com
-6832
- VCHEQ.com Pte Ltd
- Technology Team
- netadmin&vcheq.com
-6833
- Scarptor Network ABThomas Berghemmer or Martin Moreythomas.berghemmer&scarptor.se
- or
- martin.morey&scarptor.se
-6834
- sbuck networks
- Stephen Buck
- services&sbuck.net
-6835
- chello broadband austria
- David Angerer
- dangerer&chello.at
-6836
- Felleskjøpet Agri BA
- Gunnar Andresen
- gunnar.andresen&felleskjopet.no
-6837
- Solcom
- Andrew J Baxman
- andyb&solcom.com
-6838
- i.g.c.
- Martin Jean
- mjean&clic.net
-6839
- Accelight Networks
- Sebastien Bellefeuille
- sebas&accelight.com
-6840
- Deutsches Elektronen-Synchrotron
- Kars Ohrenberg
- Kars.Ohrenberg&desy.de
-6841
- VYX
- Filip Zawadiak
- philz&vyx.net
-6842
- Telect, Inc.
- Daniel S. Freepons
- danf&telect.com
-6843
- Global Solution
- Takeshi Yasuhara
- yasuhara&g-solution.com
-6844
- SAT Consulting ApS
- Bjarne Maschoreck
- bjma&sat-automation.com
-6845
- Micro Energetics Corp.
- David Hicks
- dhicks&nightware.com
-6846
- Paulosoft
- Pawel Kasprowski
- pk&paulosoft.com.pl
-6847
- Teleias, Inc
- Rayan Zachariassen
- Rayan&Teleias.com
-6848
- Crossbeam Systems, Inc.
- Stephen Rhen
- srhen&crossbeamsys.com
-6849
- Reddo Networks AB
- Johan Svedberg
- johan.svedberg&reddonetworks.se
-6850
- MCCT Inc.
- Elwin Macomber
- elwin&mcct.com
-6851
- XOR Inc.
- Joshua Prismon
- josh&xor.com
-6852
- University of Colorado at Boulder
- Richard A. Jones
- jones&colorado.edu
-6853
- Television Systems Ltd
- Steve Rolls
- stever&televisionsystems.ltd.uk
-6854
- Régie Des Transports De Marseille
- R.SOLA M.GUASCO
- m.guasco&rtm.fr
-6855
- WNF Consulting, Inc.
- Andrew Woodward
- awoodwar&wnf.com
-6856
- LiquidLight
- Jeff W. Li
- jli&liquidlightinc.com
-6857
- DigitalConvergence
- Doug Davis, President Technology Group
- ddavis&digitalconvergence.com
-6858
- Fantasma Networks
- Paul R. Boehm, Bill Long (technical)
- pboehm&fantasma.net; blong&fantasma.net
-6859
- Actzero Inc
- Cayce Ullman
- cayce&actzero.com
-6860
- ÔøÐÛÎÄ
- ÔøÐÛÎÄ
- hunterzxw&netease.com
-6861
- Druma Inc
- Bapi Ahmad
- bm&compuserve.com
-6862
- Wapinspain.com
- Ismael Mendez
- ismael&wapinspain.com
-6863
- ZyTrax Communications, Inc.
- Ron Aitchison
- raitchison&zytrax.com
-6864
- Harmania Multimedia Inc
- Gilles Lacombe
- info&harmania.com
-6865
- Elron Telesoft
- Shlomo Tzidkani
- shlomot&elrontelesoft.com
-6866
- Lyonnaise Communication
- Dominique RITOURET
- dominique.ritouret&noos.com
-6867
- IPOptical, Inc.
- Andy Zhao
- andy.zhao&ipoptical.com
-6868
- Georgetown University
- Charles Leonhardt
- lenhardt&georgetown.edu
-6869
- Steve Burton
- Steve Burton
- steve&sliderule.demon.co.uk
-6870
- Core Software Technology
- Robert A. Zawarski
- zawarski&coresw.com
-6871
- CERT Coordination Center
- Bill Fithen
- wlf&cert.org
-6872
- Help/Systems, Inc.
- Tom Huntington
- tom.huntington&helpsystems.com
-6873
- bholdcompany
- Bert Verdonk
- b.verdonk&bholdcompany.com
-6874
- Woodwind Communications Systems, Inc
- David Wheeler
- dwheeler&woodwindcom.com
-6875
- NewEarth Swedenborgian BBS
- Michael V. David
- michael&newearth.org
-6876
- VMware Inc.
- Michael MacFaden
- mrm&vmware.com
-6877
- Evergreen Internet
- Jeff Huff
- jhuff&evergreen.com
-6878
- Black Box Corp.
- David Sefzik
- David.Sefzik&Blackbox.com
-6879
- digiMine.com
- Jay Sauls
- jays&digimine.com
-6880
-
-
- ---none---
-6881
- Kal
- Aravinda Korala
- aravinda&kal.com
-6882
- Micro Electronics Inc
- Anthony Dean
- adean&microelectronics.com
-6883
- Linux NetworX, Inc.
- Clark Roundy
- croundy&linuxnetworx.com
-6884
- boco
- jiaoli
- jiao_li&263.net;lij&boco.com.cn
-6885
- Intelligent Telecommunications Inc.
- Park, Yongsuk
- piao1234&it.co.kr
-6886
- KPN
- Peter Hoogendijk
- Peter.Hoogendijk&AtosOrigin.com
-6887
- IT-Conference
- Yuri Hramov
- yri&itconf.ru
-6888
- Millenium Installer
- M. Hasan
- mamatmillenium&hotmail.com
-6889
- Avaya Communication
- Dan Romascanu
- dromasca&avaya.com
-6890
- Shell Services International
- Ken Mann
- kdmann&shellus.com
-6891
- Acepta.com
- Juan Carlos Pérez Aguayo
- juancarlos.perez&acepta.com
-6892
- Cnation
- David Pisoni
- hostmaster&cnation.com
-6893
- TurboLinux, Inc.
- Brad Midgley
- brad&turbolinux.com
-6894
- DataDirect Networks
- Al Saraie
- asaraie&datadirectnet.com
-6895
- Ereo, Inc.
- Steve Swoboda
- legal&ereo.com
-6896
- Mahi Networks
- Tom Lowe
- tlowe&mahinetworks.com
-6897
- JDV
- Jon Vestal
- jvestal&speakeasy.org
-6898
- Verance Corporation
- Douglas Wong
- dwong&verance.com
-6899
- Nanyang Technological University
- Adminstrator
- ywengkin&singnet.com.sg
-6900
- Baltic Institute of Economics and Finance
- Andrew A. Soukharew
- andrews&bief.ru
-6901
- AETA.COM
- Gerard Lamar
- glamar&aeta.fr
-6902
- Plisch Gmbh & Co KG
- Hans-Dieter Kosch
- kuehlwein&plisch.de
-6903
- Visoft (Pty) Ltd
- Johann Botha
- jbotha&visoft.co.za
-6904
- IBM, Infrastructure Support Group
- Eric Hameleers
- eric.hameleers&nl.ibm.com
-6905
- Brocade Communication Systems, Inc. (formerly 'Rhapsody Networks Inc.')
- Scott Kipp
- skipp&brocade.com
-6906
- Asiana Communications
- Bin Li
- libin&asiana.com
-6907
- Broad Telecom, S.A. (Btesa)
- Maribel Vimbela
- m.vimbela&btesa.com
-6908
- Movaz Networks
- Ryan Schmidt
- ryans&trusted.net
-6909
- Network Security Technologies, Inc.
- Elaine Harvey
- eharvey&netsec.net
-6910
- Inquent Technologies
- Dejan Mijailovic
- dejan.mijailovic&inquent.com
-6911
- AUCS Communications Services
- Martin van den Nieuwelaar
- martin.nieuwelaar&infonet-europe.com
-6912
- Morgan Stanley Dean Witter Online
- Sam Shen
- sam.shen&msdw.com
-6913
- Bona Technology
- Junpyo Hong
- gigawatt&bonatech.co.kr
-6914
- Timing Solutions Corporation
- Scott Melton
- melton&timing.com
-6915
- Computable Functions Limited
- Iain MacKay
- Iain&computable-functions.com
-6916
- Norbert Klasen
- Norbert Klasen
- klasen&gmx.net
-6917
- Alternative Advice
- Stéphane Mariel
- stf&alternative-advice.com
-6918
- Belle Systems A/S
- Ivan S. Joergensen
- isj&bellesystems.com
-6919
- Cubenet s.r.l
- Flavio Righini
- flavio&ten.it
-6920
- Think & Do Software, Inc.
- Dan Bracciano
- coop2&thinkndo.com
-6921
- Morrison Industries
- Adam Tauno Williams
- adam&morrison-ind.com
-6922
- Amino Communications Ltd
- Dr Martin J Neville-Smith
- mnsmith&aminocom.com
-6923
- Shutterfly
- Chris Guthrie
- cguthrie&shutterfly.com
-6924
- Capital Internet, LLC
- Brian Beaulieu
- brian&capital-internet.net
-6925
- IT Communications, Kennedy Space Center (KSC)
- Stephen A. Kerney
- stephen.a.kerney&nasa.gov
-6926
- Optical Access Inc.
- Sergiu Rotenstein
- srotenstein&opticalaccess.com
-6927
- MAIL.COM
- Santhosh Kumar Iddyamadom
- siddyamadom&staff.mail.com
-6928
- Mobility Next Generation
- James Halls
- james.iana&mobyn.com
-6929
- The Root Group
- Joshua Weinberg
- josh_iana&rootgroup.com
-6930
- Lycee Leonard de Vinci
- Frederic Varni
- fvarni&wanadoo.fr
-6931
- Interessengemeinschaft Software-Engineering
- Ralf Hägele
- ralf.haegele&software-engineering.org
-6932
- Internet Content Register
- Mike Hawkes
- mike&internet.org.uk
-6933
- Reputy
- Florent Guillaume
- florent.guillaume&reputy.com
-6934
- Corporation One of America, Inc.
- Trevor G. Hammonds
- trevor&royal.net
-6935
- Arachne
- John Lederer
- john&jhml.org
-6936
- VICORSOFT CORPORATION
- VIJAY KUMAR BANSAL
- VKBANSAL&mailnebraska.com
-6937
- NetReliance, Inc.
- Kevin Collins
- kevin.collins&net-reliance.com
-6938
- Enigma Inc.
- Elan Freedy
- elanf&enigma.com
-6939
- Hemp.org
- Shaun savage
- savages&hemp.org
-6940
- Tufts University
- University Systems Group
- usg&tufts.edu
-6941
- proflash cross-media AG
- Marcus Mennemeier
- m.mennemeier&proflash.de
-6942
- James Cook University
- Jeffrey Bird
- Jeffrey.Bird&jcu.edu.au
-6943
- R-Alpha Ltd.
- Vladimir A. Grishin
- info&alpha.ru
-6944
- REDSYS (formerly 'SERMEPA')
- Gonzalo Alvarez-Castellanos
- galvarez&redsys.es
-6945
- LAKE Communications
- Mark McCarville
- mark.mccarville&lakecommunications.com
-6946
- Fouche Enterprises, LLC.
- Roger Fouche
- info&fouche.net
-6947
- Central Bank of Russia, Arkhangelsk
- Oleg Laptev
- oleg&acb.ru
-6948
- Tumsan Oy
- Juhani Leskinen
- juhani.leskinen&tumsan.fi
-6949
- Nextra BW CSP GmbH
- Jochen Scharrlach
- js&mgm-net.de
-6950
- Aztec
- Network Management Manager
- nsm&aztectech.com
-6951
- Freeler BV.
- Peter Zijlstra
- peter.zijlstra&hq.freeler.nl
-6952
- iBiomatics LLC
- Drew Foglia
- Drew.Foglia&ibiomatics.com
-6953
- Air2Net AB
- Turbo Fredriksson
- turbo&air2.net
-6954
- Sema Group
- Lee Anne Morgan
- lee.morgan&sema.be
-6955
- ComSol Kommunikationssysteme GmbH
- Schober Klaus
- schober-klaus&t-online.de
-6956
- eTopware Labs
- Gabriel Sala
- gab&etopware.com
-6957
- Rapi10.net
- Sebastiao Rocha
- rocha&rapi10.net
-6958
- Kent State University
- Douglas M. Westfall
- dougw&net.kent.edu
-6959
- bluestreak
- Drew Jenkins
- djenkins&bluestreak.com
-6960
- FELIX DANZIGER INTERNATIONAL KUNSTHANDEL
- WALENCIK ADAM
- AWALENCIK&AOL.COM
-6961
- tele.ring Telekom Service Gmbh
- Thomas Stagl
- thomas.stagl&1012surf.net
-6962
- The University of Sydney
- Jie Gao
- J.Gao&isu.usyd.edu.au
-6963
- Andrews IT Engineering Ltd
- Zoltan BORBELY
- bozo&andrews.hu
-6964
- Soft Teleware Inc.
- Choi, Soo-Jin
- nada&softteleware.com
-6965
- RSBX
- Raymond S Brand
- rsbx&acm.org
-6966
- The Bright Oceans Corporation
- jiao li
- lij&boco.com.cn;jiao_li&263.net
-6967
- Digismart
- Dhananjay Nene
- dhananjay&digismart.com
-6968
- Systek AS
- Terje Trane
- trane&systek.no
-6969
- Copernicus Global Billing Services
- John Bass
- jbass&copernicusgbs.com
-6970
- VCON Ltd.
- Naji Sourani
- najis&vcon.co.il
-6971
- Ferimex IT spol. s r.o.
- Ing. Marian Repka
- repka&ferimexit.sk
-6972
- Canbox
- Joerg Moellenkamp
- moellenkamp&msg-ag.com
-6973
- Savatech Inc.
- Jason Patton
- jpatton&savatech.com
-6974
- EarthLink Inc.
- Kihoon Jeoung
- kihoonj&corp.earthlink.net
-6975
- WaterCove Networks, Inc.
- Paul Ciarfella
- pciarfella&watercove.com
-6976
- HowStuffWorks.com, Inc
- Igor Brezac
- igor.brezac&howstuffworks.com
-6977
- Resilience Corporation
- Fred Marshall
- fred&resilience.com
-6978
- JBruce.net
- Jason Bruce
- jbruce&jbruce.net
-6979
- KereniX
- Yossi Werker
- Yossi_Werker&Kerenix.com
-6980
- MRC Project
- Satoru YAGI
- yagi&core.ntt.co.jp
-6981
- interQ, Inc.
- Kevin Ying
- sysadmin&interq.or.jp
-6982
- Erba Holding
- Rosa Nicolas
- nicolas.rosa&habitat.be
-6983
- Sofaware Technologies
- Amir Rapson
- rapson&sofaware.com
-6984
- Fovea, Inc.
- Serge Zloto
- serge&i-fovea.com
-6985
- Jumpy Cat Systems, Inc. (formerly 'Prism Software, Inc.')
- Peter Shiner
- peter.shiner&gmail.com
-6986
- Kiodex, Inc.
- Richard Seroka
- richard.seroka&kiodex.com
-6987
- WRonline GbR
- Stefan Paletta
- stefanp-iana-oid&WRonline.de
-6988
- University of Northern British Columbia
- Nicholas Waller
- operations&unbc.ca
-6989
- Extel Communications Pty Ltd
- David Chiam
- engineering&extel.com.au
-6990
- Redfern Broadband Networks
- David Funk
- dfunk&RedfernNetworks.com
-6991
- N-Space Pty Ltd
- Tim Curtin
- tim&n-space.com.au
-6992
- KnowNow, Inc
- Rick Cobb
- rcobb&knownow.com
-6993
- VirtualNet
- Strata R. Chalup
- strata&virtual.net
-6994
- The Midgard Project (Open Source)
- Jean-Philippe BRUNON
- jpbrunon&aurora-linux.com
-6995
- c-base e.V.
- Felix Vogel
- admin&c-base.org
-6996
- WhatEverNet Computing
- Jose Carlos Correia
- webmaster&whatevernet.pt
-6997
- Yale University
- Andrew Newman
- newman-andy&yale.edu
-6998
- Channelogics Incorporated
- DNS Administrator
- dnsadmin&channelogics.com
-6999
- University of Indianapolis
- Computing Services
- ucs&uindy.edu
-7000
- NET-volution srl
- Roberto Gilberti
- roberto.gilberti&net-volution.com
-7001
- Big Net, Inc.
- Edward Kmett
- ekmett&bignet.net
-7002
- Sebastian Crespo
- Sebastian Crespo
- sacrespo&go.com
-7003
- CISCO-MASBU
- Amit Tropper
- atropper&cisco.com
-7004
- Metodo Srl
- Franco Violi
- fvioli&metodo.net
-7005
- Kagoor Networks
- Rama Eshel
- rama&kagoor.com
-7006
- eyeo.com
- David E. Storey
- David.Storey&eyeo.com
-7007
- Guangzhou Thinker Communications Technology Co., Ltd."
- Lu yanqing
- luyq&gsta.com
-7008
- Discordian Alliance For Teaching
- Darren Stalder
- darren&daft.com
-7009
- Chemtex Engineering of India Ltd
- N Henriques
- nhenriques&chemtex.co.in
-7010
- Oranje Consulting, Inc.
- Jeff van Eek
- vaneek&bellsouth.net
-7011
- Prism Microsystems, Inc.
- A N Ananth
- ananth&prismcomm.com
-7012
- Edisontel S.p.A.
- Sergio Chiesa
- sergioc&edisontel.it
-7013
- ByteSphere LLC
- Nicholas Saparoff
- webmaster&bytesphere.com
-7014
- Adexa Inc.
- Adrian Basescu
- adrian&adexa.com
-7015
- Vignette Corporation
- Larry Harkrider
- lharkrider&vignette.com
-7016
- Seneca Networks
- Vipul Sharma
- vsharma&senecanetworks.com
-7017
- Adari TeleComp Inc
- Seva Adari
- Seva&Adari.Net
-7018
- PT Multimedia
- Joao Pedro Goncalves
- joaop&ptm.pt
-7019
- Polaris Networks, Inc.
- Manh Do
- mdo&polarisnetworks.com
-7020
- Saecos Corporation
- Jack Lund
- jack.lund&saecos.com
-7021
- SysNet S.n.c.
- +39 0382 531274
- info&sys-net.it
-7022
- MRZ AG
- Gion Manetsch
- manetsch&datacomm.ch
-7023
- The Direct Connection Ltd
- Stephen Clifford
- stephen.clifford&dircon.net
-7024
- VHB Technologies, Inc.
- Darryl Torske
- dtorske&vhbtech.com
-7025
- Double D Investments
- Dennis Doyle
- DenDoy&aol.com
-7026
- Sonera SmartTrust
- Magnus Robertsson
- magnus.robertsson&sonera.com
-7027
- Onix Microsystems Inc
- Charles Yang
- cyang&onixmicrosys.com
-7028
- Alloptic, Inc.
- Bryan Shadish
- bryan.shadish&alloptic.com
-7029
- CUBIweb, LLC
- Kyle Welsh
- kyle&cubiweb.com
-7030
- Ethernet, Solucoes Informaticas, lda
- Nuno Loureiro
- nuno&eth.pt
-7031
- McAfee, Inc. (formerly 'Securify, Inc.')
- Mark Hoy
- mark_hoy&mcafee.com
-7032
- Chartered Semiconductor Manufacturing
- Justin Lim
- bretwatson&charteredsemi.com
-7033
- Matías Software Group
- Salvador Ortiz
- sog&msg.com.mx
-7034
- inyourwake
- Jeff Hagberg
- jeffhagberg&hotmail.com
-7035
- VTT Electronics
- Tommi Saarinen
- Tommi.Saarinen&vtt.fi
-7036
- MBDyn
- Pierangelo Masarati
- masarati&aero.polimi.it
-7037
- Ubris
- Bart Den Haese
- uubris&netscape.net
-7038
- Tron Network Solutions
- Jankok L.
- ljankok&wanadoo.nl
-7039
- bison GmbH
- Helmut Wirth
- netmaster&bison-soft.de
-7040
- DataLinx Inc
- Jajati K. Samal
- jajati&datalinx.net
-7041
- Integra
- Guy Kastenbaum
- kastenbaum&integra.fr
-7042
- Permanent Vacations
- Ralph Hightower
- lynmax&logicsouth.com
-7043
- Apt Computer Systems Limited
- Danny Shobrook
- danny&aptcompsys.com
-7044
- Primal
- Nathan Reed
- nreed&primal.com
-7045
- TBA Communications
- Trey Valenta
- trey&anvils.org
-7046
- Tom's NET
- Tom Oehser
- Tom&Toms.NET
-7047
- Flux Productions
- Laurence Brockman
- laurence&flux.ab.ca
-7048
- Pico Communications, Inc.
- Lung Yeh
- lungyeh&pico.net
-7049
- DataNet Development Group, Inc.
- Stephen L. McMahon
- stephen&mcmahon.com
-7050
- Kazan State University
- Petr Lopuhov
- petr&ksu.ru
-7051
- Epicom S.A.
- Rafael Gonzalez
- epicom&idecnet.com
-7052
- Dipl.-Ing. Markus Leist
- Markus Leist
- leist&ing-buero-ikom.de
-7053
- Videon CableSystems Alberta Inc.
- Laurence Brockman
- l.brockman&videon.ca
-7054
- Mazu Networks, Inc.
- Robert Nazzal
- rob&mazunetworks.com
-7055
- Cox Communications, Inc.
- Martin M. Cade
- martin.cade&cox.com
-7056
- Senterprise Inc.
- Ilan Shamir
- ishamir&senterprise.com
-7057
- SuSE Linux AG
- Ralf Haferkamp
- suse-oid&suse.de
-7058
- BB4 Technologies Inc
- Sean MacGuire
- sean&bb4.com
-7059
- Complete Business Solutions - Global Health
- Ralph Hightower
- rhightow&cbsinc.com
-7060
- Naikel Software
- Naikel Aparicio
- naikel&SoftHome.net
-7061
- Automated Logic Corporation
- Tom Samford
- tsamford&automatedlogic.com
-7062
- Oasis Telecommunications, Inc.
- Craig J Constantine
- oid&ot.com
-7063
- Australian Defence Force Academy
- Geoff Collin
- g.collin&adfa.edu.au
-7064
- UTStarcom (China) Co., Ltd Shenzhen Branch
- Tom Ren
- tom.ren&utstar.com
-7065
- Shimin Denshi Jouhou Mou
- YASUDA Yukihiro
- support&poem.co.jp
-7066
- Dr. Srinivas
- Dr Srinivas or Dr Gayathri
- sriradesh&hotmail.com or k.l.gayathree&usa.net
-7067
- TELCO TECH GmbH
- Gernot Tenchio
- info&telco-tech.de
-7068
- CryptoPRO
- Roman E. Pavlov
- pre&mo.msk.ru
-7069
- SFI Open Source Services
- Eckard Koch
- eko&sfi.ch
-7070
- Narad Networks
- Prasad Dorbala, Director Software Engineering
- dorbalap&naradnetworks.com
-7071
- Tele-Info-System
- Janusz Krzysztofik
- jkrzyszt&tis.icnet.pl
-7072
- Ehrhart Jewelers
- Jack Ehrhart
- ehrunl&aol.com
-7073
- r00tkit.com
- Joshua Buysse
- buysse&r00tkit.com
-7074
- TheMagicProgrammer
- Bob Butler
- rbutler&themagicprogrammer.com
-7075
- Lothar Maronn
- Lothar Maronn
- maronn&saloma.de
-7076
- Australian Online Solutions
- Sam Johnston
- samj&ausonline.com.au
-7077
- Desarrollos Digitales
- Daniel Perez
- danielp&feedback.net.ar
-7078
- True North Communications
- Richard Reid
- rreid&truenorth.com
-7079
- Megisto Systems, Inc.
- Mark Shelor
- mshelor&megisto.com
-7080
- xeli.net
- Andrew Liu
- askliu&xeli.net
-7081
- Maaslandse Unix & Linux Laboratorium (MULL)
- Hugo van der Kooij
- hugo&vanderkooij.org
-7082
- DAIDEN CO., Ltd.
- Isao Fukuda
- fukuda&dyden.co.jp
-7083
- Applied Generics Ltd
- Joe Dixon
- mjd&appliedgenerics.com
-7084
- Friends Provident
- Dave Benson
- dave.benson&friendsprovident.co.uk
-7085
- Cybercomm BV
- Leon de Rooy
- beheer&cybercomm.nl
-7086
- GTONG Shenzhen Ltd.
- John Yang
- ravi&gtong.com
-7087
- KMC Technologies (formerly 'Selis Networks Inc.')
- Yigal Korolevski, Managing Director
- ykorol&nms-guru.com
-7088
- Network Systems
- Vladislav Bogdanov
- slava&nsys.by
-7089
- Centrum Arbeidsverhoudingen
- A.J.M. van der Harg
- Postmaster&caop.nl
-7090
- El Bit Salvaje
- Javier Baliosian
- javierba&adinet.com.uy
-7091
- CREN
- Cristino Arocho, Jr.
- aromont&cren.net
-7092
- ScienceXchange
- John Stoddard
- stoddard&sciencexchange.com
-7093
- Ericsson - Geobility
- Mitch De Felice
- mitch&geoportal.net
-7094
- Wachovia Trust
- Matthew P. O'Reilly
- matt.oreilly&wachovia.com
-7095
- Pert
- Nicolas Baumgarten
- nico&pert.com.ar
-7096
- JSEIC
- Larry
- zhu_lan&china.com
-7097
- LeatherXchange, S.A.
- Scott Dejmal
- scott.dejmal&leatherxchange.com
-7098
- Edison Mission Energy
- Phil Moors
- pmoors&edisonmission.com
-7099
- Ripeco Ltd
- James Turnock
- james&jturnock.fsnet.co.uk
-7100
- Killik & Co.
- Graham Bygrave
- graham.bygrave&killik.co.uk
-7101
- CO3i
- Russell Packer
- russellp&co3i.com
-7102
- IDEALX
- Olivier Lemaire
- olivier.lemaire&IDEALX.com
-7103
- SaltFire, Inc
- Toby Cabot
- toby&saltfire.com
-7104
- Supervertical Sistemas
- Alexandre Ribeiro do Nascimento
- aribeiro&supervertical.com.br
-7105
- CANTV
- Anibal Canelon/Abelardo Esaa
- acanel&cantv.com.ve or aesaa&cantv.com.ve
-7106
- Teleport Corp
- Richard Uren
- richard&starport.net
-7107
- Geocast Network Systems
- Castor Fu
- castor&geocast.com
-7108
- Urscheler Software
- Roger Urscheler
- roger.urscheler&icn.siemens.com
-7109
- City University of Hongkong
- Chau-man HUI
- cmhui&cs.cityu.edu.hk
-7110
- Kaashyap Radiant System ltd
- Mr . P . F Kishore
- javakishore2000&yahoo.com
-7111
- Sunamerican Communication Technology Inc.
- Mr.Shuangjiang Tan
- tsj&sohu.com
-7112
- U.S. Department of Commerce
- Don Badrak
- dbadrak&census.gov
-7113
- YottaYotta
- Javier Lozano
- jlozano&yottayotta.com
-7114
- Universidad de Navarra
- Ignacio Coupeau
- icoupeau&unav.es
-7115
- book2eat.com limited
- Elias Papavassilopoulos
- ep104&book2eat.com
-7116
- TechTrade International Management AB
- Torsten Silverstolpe
- ts&techtradeinter.se or torsten&silverstolpe.se
-7117
- Invertix, Inc
- Thu Kyaw
- tkyaw&invertix.com
-7118
- NetContinuum, Inc
- Joe Nguyen
- joe&netcontinuum.com
-7119
- OPNET Technologies, Inc. (formerly 'Network Physics, Inc.')
- Romain Kang
- rkang&opnet.com
-7120
- Sentry Telecom Systems Inc.
- Chris J. Veeneman
- cveeneman&sentrytelecom.com
-7121
- Comunicaciones Netglobalis
- Marcelo Bartsch
- mbartsch&netglobalis.net
-7122
- Lusars.net
- Chad Slaughter
- slaught&lusars.net
-7123
- nSOF Parallel Software Ltd.
- Dan Bar Dov
- dan&nsof.co.il
-7124
- Stand-by
- Andreas Birkner
- admins&stand-by.de
-7125
- Digital Creations
- Christopher Petrilli
- petrilli&digicool.com
-7126
- Positron Public Safety Systems Inc.
- Claude Chaussé
- cchausse&positron.qc.ca
-7127
- Nadeem Hasan
- Nadeem Hasan
- nhasan&nadmm.com
-7128
- Worcester Polytechnic Institute
- Allan E. Johannesen
- aej&wpi.edu
-7129
- Lancaster University
- Steve Bennett
- S.Bennett&lancaster.ac.uk
-7130
- KiddiePot.com
- Daniel O'Brien
- cdim7&disinfo.com
-7131
- Orient Telecom
- Min-Hwan, Kim
- mhkim&orientel.co.kr
-7132
- ELANsat TECHNOLOGIES Inc.
- Jett Chen
- jett&chenx.org
-7133
- Corenix System Inc.
- Jett Chen
- jett&corenix.com
-7134
- Prosolve
- Sean Mathias
- seanm&prosolve.com
-7135
- Comité Réseau des Universités
- Christian Claveleira
- Christian.Claveleira&cru.fr
-7136
- SysNet
- Francesco Defilippo
- francesco&sys-net.it
-7137
- Tunisie Telecom
- Ezzeddine
- aezzddine&excite.com
-7138
- Allaire Corporation
- Dave Gruber
- dgruber&allaire.com
-7139
- EchoStar Data Networks
- Joseph B. Schofield
- joe.schofield&echostar.com
-7140
- INPG, Institut National Polytechnique de Grenoble
- Claire Rubat du Merac
- Claire.Rubat-du-Merac&inpg.fr
-7141
- Freesoft
- Brent Baccala
- baccala&freesoft.org
-7142
- Pingtel Corp.
- Richard Schaaf
- rschaaf&pingtel.com
-7143
- Entrust Technologies, Inc.
- James Harwood
- james.harwood&ENTRUST.COM
-7144
- FaceTime Communications, Inc.
- Franck Mangin
- franck&facetime.com
-7145
- eve.com
- Hiram Aguirre
- hiram&eve.com
-7146
- Zeus Technology Ltd
- Damian Reeves
- dreeves&zeus.com
-7147
- Imperial Technology, Inc.
- Richard Major
- rmajor&imperialtech.com
-7148
- Unitree Software
- Jason Wells
- jasonw&unitree.com
-7149
- Arcot Systems, Inc.
- Rob Jerdonek
- rob&arcot.com
-7150
- INITECH, Co.,Ltd.
- Kwon, YongChul
- godslord&initech.com
-7151
- r pdeshpande
- R.P.DESHPANDE
- rpdeshpande&excite.com
-7152
- CAPE Technologies Ltd.,
- Michael Slevin
- ms&capetechnologies.com
-7153
- Foertsch EDV Beratung
- Torsten Foertsch
- torsten.foertsch&gmx.net
-7154
- Intelligent Platform Management Interface forum
- Thomas M. Slaight
- tom.slaight&intel.com
-7155
- neohaven.net
- Benson Schliesser
- bensons&neohaven.net
-7156
- Princeton Networks
- Bhavesh Patel
- bhavep&yahoo.com
-7157
- SC Dart IMPEX SRL
- Wlad S. Hanciuta
- wlad&dart.ro
-7158
- 1 Global City.com, Inc.
- Michael Frey
- michael.frey&1globalcity.com
-7159
- Allianz AG
- Ernst-Ulrich Weniger
- Ernst-Ulrich.Weniger&Allianz.de
-7160
- Granada Learning
- Pete Birkinshaw
- peterb&granada-learning.com
-7161
- Network Solutions, Inc.
- Mark Kosters
- markk&netsol.com
-7162
- Delancey Management and Consulting
- Jeff Strong
- stronghj&aol.com
-7163
- Fiorano Software, Inc.
- Albert Holt
- alberth&fiorano.com
-7164
- SchiZo Information Network
- David Wimsey
- bits&schizo.com
-7165
- SAMBA Team
- Volker Lendecke
- iana&samba.org
-7166
- Peters Securities Co, L.P.
- Scott Zionic
- zionic&petersweb.com
-7167
- WinterTek, LLC
- Julia Winter
- jkwinter01&aol.com
-7168
- Eurosoft Sas
- Giampaolo Tomassoni
- info&eurosoft-italia.com
-7169
- Engage, Inc.
- Chao Feng
- cfeng&ipro.com
-7170
- Centell Telecommunication Company
- Chen Shaoqiang
- chensq&btamail.net.cn
-7171
- Europesave S.A.
- Francisco Cabral
- francisco.cabral&europesave.com
-7172
- SPARKnet S.A.
- Angelos Vasdaris
- angel&spark.net.gr
-7173
- Jiangsu University of Science and Technology
- Huang Yan
- jh_jsust&sina.com
-7174
- Tonic Software, Inc.
- Rick Bansal
- rick.bansal&tonic.com
-7175
- TSP Lab(Telecommunication and Signal Processing Lab.) Peter
- Tatai
- tatai&bme-tel.ttt.bme.hu
-7176
- orangefood.com
- Robert Petersen
- robert&orangefood.com
-7177
- IPITEK
- Roger Oakes
- roakes&ipitek.com
-7178
- SANJOSEDEOCOA.COM.DO
- DANIEL GUERRA
- GUERRADANIEL&YAHOO.COM
-7179
- ARIO Data Networks
- David C Chiu
- dchiu&ariodata.com
-7180
- Talarian Corporation
- Louna Petrova /Michael Garwood
- louna&talarian.com or mwg&talarian.com
-7181
- Trendium, Inc.
- Tom Zhou
- tzhou&trendium.com
-7182
- ypass.net
- Eric Kilfoil
- eric&ypass.net
-7183
- Springfield Public Schools
- Jacob Shaw
- jshaw&sps.lane.edu
-7184
-
-
- ---none---
-7185
- Latitude Communications
- Daniel X. Qu
- daniel.qu&latitude.com
-7186
- BayPackets Inc
- Sachin Jog
- sachin.jog&baypackets.com
-7187
- Netsystems, Inc.
- Hidehiko Iwasa
- iwasa&netsystems.co.jp
-7188
- Curtin University of Technology
- Scott Pleitner
- S.Pleitner&curtin.edu.au
-7189
- EMS-Global
- Tim Horner
- thorner&ems-global.com
-7190
- Legato Systems India
- PVS
- subraman&legato.com
-7191
- Gebrueder Weiss GmbH
- Muxel Gernot
- gernot.muxel&gebr-weiss.com
-7192
- ID-PRO Aktiengesellschaft
- Martin Dehn
- dehn&id-pro.de
-7193
- Bourse Connect
- Jousse Patrice/ Christophe Wagnon/ Xavier Pontacq
- pjousse&bourse-connect.com or cwagnon&bourse-connect.com or xPontacq&bourse-connect.com
-7194
- Stevens Gagnon Services Info-Techniques
- Stevens Gagnon
- sgagnon&sgsit.com
-7195
- Iquilibrium, Inc.
- Stan O'Day
- soday&iquilibrium.com
-7196
- Imagine Software
- Yee Liu
- yeel&imagine-sw.com
-7197
- Intertech
- Frank Fischer
- fischer&intertech.de
-7198
- CeLight
- Wen Hwang
- whwang&celight.com
-7199
- 2Bridge Software
- Supart Pornnapa
- part&2bridge.com
-7200
- Forebrick International
- Supart Pornnapa
- part&forebrick.com
-7201
- Druker Consulting
- David Druker
- druker&ieee.org
-7202
- Seastem
- Jerome Girard
- j.girard&seastem.com
-7203
- Technology Builders, Inc.
- John Morey
- jmorey&tbi.com
-7204
- PerformanceIT, Inc.
- Greg Morgan
- gmorgan&performanceit.com
-7205
- CoreTech Consulting Group, Inc.
- Ken Avery
- kavery&coretech.com
-7206
- Real Media, Inc
- Jim Roberts
- jroberts&realmedia.com
-7207
- DENON DENTAL
- Putz Yuriy and Yaroshyk Taras
- denon&mail.lviv.ua
-7208
- AFCON Software and Electronics Ltd.
- Meir Saggie
- meirs&fil.co.il
-7209
- Societe Bryarde de Travaux Publics
- Patrick Lerouge
- lerouge&im3.inserm.fr
-7210
- WorkSpot Inc
- Tiffany Webb
- tjwebb&workspot.com
-7211
- Raiffeisen Schweiz
- Martin Hagmann
- martin.hagmann&raiffeisen.ch
-7212
- Raiffeisen Schweiz
- Martin Hagmann
- martin.hagmann&raiffeisen.ch
-7213
- Datria Systems
- Steve Cox
- steve.cox&datria.com
-7214
- Virginia-Meryland Regional College of Veterinary Medicine
- Micah Almond
- malmond&vt.edu
-7215
- ABN AMRO
- Michael Arredia
- michael.arredia&abnamro.com
-7216
- Institut National de la Recherche Agronomique
- Christophe Caron
- Christophe.Caron&jouy.inra.fr
-7217
- The University of Memphis
- Dr. Tom Barton
- tbarton&memphis.edu
-7218
- HBESoftware Inc.
- Marc Heckmann
- heckmann&hbesoftware.com
-7219
- Firedrop Inc
- Zhigang Chen
- zchen&firedrop.com
-7220
- Shanghai Optical Networking Technology Co. Ltd.
- Kai Wu
- wu1&guomai.sh.cn
-7221
- Handlink Technologies Inc.
- Yousee Chen
- yousee&handlink.com.tw
-7222
- TIScover
- Jacob Rief
- jacob.rief&tiscover.com
-7223
- ofehr.net
- Oliver Fehr
- Oliver.Fehr&ofehr.net
-7224
- Netarchitects SA
- Oliver Fehr
- ofehr&netarchitects.com
-7225
- Spacechecker nv
- I.T. Department
- tech&spacechecker.com
-7226
- Micro F/X
- Matt Mahoney
- mattm&microfx.net
-7227
- Centre Informatique National de l'Enseignement Superieur
- Jean-Christophe Penalva
- jean-christophe.penalva&cines.fr
-7228
- The Web Foundry Limited
- Lee Shakespeare
- lee&webfoundry.co.uk
-7229
- Vogeler Enterprise Architectures
- Volkhard Vogeler
- VolkhardV&Vogeler.com
-7230
- Eastern Michigan University
- Matthew J. Goebel
- goebel&emunix.emich.edu
-7231
- MidStream Technologies
- Director of Engineer
- dir_engineering&midstream.com
-7232
- VR1 Entertainment
- Les Barstow
- lbarstow&vr1.com
-7233
- SierraCities.com
- Terry Laurenzo
- tlaurenzo&nexsoft.com
-7234
- KORE
- Branko Lepan
- blepan&kore.com
-7235
- eRadlink
- Michael Goodwin
- mgoodwin&eradlink.com
-7236
- SIMM-Comm
- Sherin Ibrahim
- sherin&simmcomm.ch
-7237
- Aaronsen Group, Ltd.
- Doug Luce
- luce&aaronsen.com
-7238
- OM Technology
- Jonas Lindholm
- Jonas.Lindholm&omgroup.com
-7239
- LEGRAND
- Patrick RABIER
- HOSTMASTER&GRPLEG.NET
-7240
- Princeton Networks Inc
- Long Pham
- long.pham&mail.com
-7241
- Inter.net
- Gaige B. Paulsen
- gaige&team.inter.net
-7242
- QwicNet, Inc.
- Daniel P Marcellus
- dmarcellus&qwicnet.com
-7243
- ZIVO Wellington
- Jules Anderson
- jules.anderson&zivo.co.nz
-7244
- Quanta Computer Inc.
- Strong Chen
- @strong.chen&quantatw.com
-7245
- Northern Districts In-Line Hockey Club
- Lucas James
- shadow1&dove.net.au
-7246
- Project X Consulting Ltd
- Mark Howell
- mark.howell&pxcl.com
-7247
- Nexsan Technologies, Ltd.
- Gary Watson
- gary&nexsan.com
-7248
- HyperTrust
- Maarten Willems
- maarten.willems&hypertrust.com
-7249
- Manage-IT
- Arend Melissant
- ame&manage-it.be
-7250
- Viewgraphics
- Dima Lomazov
- dima&viewgraphics.com
-7251
- SPC solutions s.r.o.
- Pavlo Ivakhiv
- spc&spc.cz
-7252
- Institut Mondor de Médecine Moléculaire
- Patrick Lerouge
- lerouge&im3.inserm.fr
-7253
- StreamCache
- Farshad Abasi
- farshad&moderngroove.com
-7254
- Intronix Corporation
- Mike Willis
- mike&intronix.net
-7255
- PointOne Telecommunications, Inc.
- Roman Milner
- rmilner&pointone.com
-7256
- Geyser Networks, Inc.
- James Yang
- jy&geysernetworks.com
-7257
- Mar-Net Ltd.
- Moshe or Vladimir
- avnet&Marnetwork.com
-7258
- Centre national de Documentation Pedagogique
- Farida azeggagh
- farida.azeggagh&poste.cndp.fr
-7259
- OULLIM Information Technology, Inc.
- Brian Kim
- double73&oullim.co.kr
-7260
- Opthos Inc.
- Mahesh Shah
- mshah&opthos.com
-7261
- InfoSpace
- Adam Jacob
- adam.jacob&infospace.com
-7262
- DragonWave
- Rod McMullin
- rmcmullin&dragonwaveinc.com
-7263
- Litt Productions Ltd.
- Joshua Litt
- president&littpro.com
-7264
-
-
- ---none---
-7265
- Interactive Portal, Inc.
- Eric Bartley
- ericb&interactiveportal.com
-7266
- Softfront
- Tatsushi Fujisawa
- fujisawa&softfront.co.jp
-7267
- BroadLink Technologies, Inc.
- Jeff Hsue
- jeffhsue&gvc.com
-7268
- Axiavoice Software
- Nicolas Bougues
- nbougues&axialys.net
-7269
- University of Klagenfurt
- Gerald Hochegger
- gerald.hochegger&uni-klu.ac.at
-7270
- Supanet Limited
- Peter Duffy
- peter.duffy&supanet.net.uk
-7271
- TuxWarp
- Wolfgang Pichler
- wolfgang.pichler&tuxwarp.org
-7272
- RedSiren Technologies Inc.
- Jackson Chanthapannha
- jackson&redsiren.com
-7273
- When Pigs Fly Club
- Robert Londberg
- rvrmark&hotmail.com
-7274
- CITY OF WILLCOX
- RONALD ALLEN
- Rallen&willcoxcity.org
-7275
- Amsterdamse Hogeschool voor de Kunsten
- Willem van den Oord
- willem&ahk.nl
-7276
- Parabon Computation, Inc.
- Dabe Murphy
- dabe&parabon.com
-7277
- PolyServe,Inc.
- Noelan Olson
- noelan&polyserve.com
-7278
- Digital Archway
- Thang Ngo
- tngo&digitalarchway.com
-7279
- Zembu Labs
- Bill Studenmund
- wrstuden&zembu.com
-7280
- Vodafone Network Pty Ltd Australia
- Adam Spence
- adam.spence&vodafone.com.au
-7281
- Socix Business Internet Software Co., Ltd
- Simon Chang
- mail&socix.com
-7282
- Superchannel ApS
- Sean Treadway
- seant&superchannel.org
-7283
- Defence Science & Technology Agency
- Casen Yap Cheng San
- casenyap&starnet.gov.sg
-7284
- Asita Technologies
- Brendan Ryan
- brendan.ryan&asitatech.com
-7285
- Hutchison Ports UK Limited
- Phil Doughty
- doughtypm&hpuk.co.uk
-7286
- betanet
- Flavio Gatti
- flavio.gatti&beta-net.it
-7287
- Premier Programming Ltd
- James Outhwaite
- james.outhwaite&rbos.com
-7288
- ActiveSky Inc.
- Peter Robinson
- peterr&activesky.com
-7289
- Visual Analysis AG
- Martin Stockhammer
- martin.stockhammer&visualanalysis.com
-7290
- Samjung Data Service LTD.,CO.
- Youngbong Choe
- hurd&sds.co.kr
-7291
- LUTEUS SARL (formerly 'Lecointe Ludovic')
- Lecointe Ludovic
- support&loriotpro.com
-7292
- Krone Multimedia Ges.m.b.H Co KG
- Hans Peleska
- j.peleska&krone.at
-7293
- POWERCOM CO., Ltd.
- VINCENT HUA
- vincent&upspowercom.com.tw
-7294
- Société Générale de Téléinformatique
- ROGNARD
- jmro&sgt.fr
-7295
- plan b. solutions GmbH
- Bernd Strehhuber
- info&planb.de
-7296
- eFORCE, Inc.- New York
- Dan Brunton
- dbrunton&eforceglobal.com
-7297
- Adventist Care Centers
- Jim Burrill
- oid&adventistcare.org
-7298
- Yuma Educational Consortium
- Craig Sawyer
- do_sawye&yumaed.org
-7299
- Valence Semiconductor, Inc.
- Mats Persson
- MPersson&valencesemi.com
-7300
- Bangladesh Consultants Ltd.
- Md Salahuddin Ahmed
- bcl&citechco.net
-7301
- Kinzebach
- Joerg Kinzebach
- joerg&istac.de
-7302
- Medsys
- Michel Nogatchewsky
- mny&inetlab.net
-7303
- Byg Informatique
- Michel Nogatchewsky
- mny&inetlab.net
-7304
- WWW. DEPARTMENTSTORE
- J®p»£
- S2893142&student.thu.edu.tw
-7305
- esurvey
- Mr. Hans Brunila
- info&esurvey.fi
-7306
- Boku, Inc.
- Peter
- peter&boku.net
-7307
- PonyExpress.net
- Matthew Hoskins
- matth&npgco.com
-7308
- Zaantek, LLC
- Ryan Gesler
- ryan&zaantek.com
-7309
- Argus Technologies
- Doddy Wijanta
- dwijanta&argus.ca
-7310
- EnStor
- Bart Steanes
- bart.steanes&enstor.com.au
-7311
- T-Systems Enterprise Services GmbH
- Klaus Biedenbach
- klaus.biedenbach&t-systems.com
-7312
- BARCO Control Rooms
- Thomas Kappler
- thomas.kappler&barco.com
-7313
- 1stWAVE
- René Lippertz
- rlippertz&1stwave.de
-7314
- CodeWeavers, Inc
- Jeremy White
- jwhite&codeweavers.com
-7315
- CAB Software
- Colin Bate
- SNMP&bate2bate.co.uk
-7316
- Bridge Solutions AG
- Rene Eigenheer
- reigenheer&bridgesolutions.net
-7317
- Mobile Reach Technologies, Inc.
- David Hustace
- dhustace&mobilereach.com
-7318
- Sinia Corporation
- Jagane Sundar
- jagane&sinia.com
-7319
- Universite de Toulon et du Var
- Didier Benza
- benza&univ-tln.fr
-7320
- Ivron Systems Ltd
- Jeremy Bruce-Smith
- jeremy.smith&ivron.com
-7321
- connext
- www.i.am/tummodeling
- fanalo&yahoo.com
-7322
- Tiburon Networks, Inc
- Rob Cole
- robc&tiburonnet.com
-7323
- Voicecom
- Marko Pajula
- marko&voicecom.ee
-7324
- Chambre Syndicale des Banques Populaires
- Christian Brossier
- christian.brossier&csbp.banquepopulaire.fr
-7325
- Redeye Telecommunications
- Steve Oberski
- sfo&deterministic.com
-7326
- MCI
- Jim Potter
- jim.potter&mci.com
-7327
- WaveSmith Networks
- Bernard Farrell
- bfarrell&wavesmithnetworks.com
-7328
- MatrixOne, Inc.
- Kevin J. Dyer
- kdyer&matrixone.com
-7329
- Virtual Learn Inc
- Benjamin Madsen
- ben.madsen&virtuallearn.com
-7330
- Bundesanstalt fuer Wasserbau
- Marco Reinhardt
- marco.reinhardt&baw.de
-7331
- DDS Projects BV
- Antoine van der Ven
- antoine&dds.nl
-7332
- DiviTech A/S
- Henrik B. Sorensen
- hbs&divitech.dk
-7333
- E-Cottage Industries
- Charlie Ferry
- Hawkeye_CNY&hotmail.com
-7334
- The San Joaquin Valley Science Collective
- Sean Champ
- sjvsc&netscape.net
-7335
- eXperts-MD
- Olivier Deckmyn
- olivier.deckmyn&experts-md.com
-7336
- 6WIND
- Patrick Paul
- patrick.paul&6wind.com
-7337
- Lipro AG
- Joachim Adler
- Joachim.Adler&lipro.de
-7338
- Paramhamsa Tech
- Rama Buddhineni
- paramhamsa&hotmail.com
-7339
- GeneralSearch.com
- Jim Raney
- jraney&generalsearch.net
-7340
- Northwestern University
- Scott Swanson
- sts&nwu.edu
-7341
- University of Alabama at Birmingham
- Landy Manderson
- landy&uab.edu
-7342
- Omnitron Systems Technology
- Steve Mood
- smood&omnitron-systems.com
-7343
- BroadConnex Networks, Inc.
- Zoneson Chen
- zoneson&scci.com
-7344
- Jedai Broadband Networks
- Nanping Houl
- nanping_houl&jedai.com
-7345
- Learnsoft Corporation
- Michael Kahn
- mkahn&learnsoft.ca
-7346
- Uni-C
- Ole Nomann Thomsen
- ont&uni-c.dk
-7347
- Point Reyes Networks, Inc.
- Alex Chen
- chen&pointreyesnet.com
-7348
- Torren Software Company
- Dong Shuo
- shuo&telekbird.com.cn
-7349
- Hangzhou Torren Software Company
- Dong Shuo
- shuo&telekbird.com.cn
-7350
- Belkamneft
- Dmitry Melekhov
- dm&belkam.com
-7351
- TeleDanmark Development
- Finn Barrett
- fb&tdk.dk
-7352
- Gilat Satellite Networks
- Noam Green
- noamgr&gilat.com
-7353
- Datel Defence Limited
- David Attwood
- david.attwood&dateldef.co.uk
-7354
- Vesper S.A.
- Denis Martel
- dmartel&vesper.com.br
-7355
- Hass Asscoiates
- Kishore Nayak
- knayak&ha-i.com
-7356
- Gateway to the Web
- Bryan Porter
- bporter&gtw.net
-7357
- scroner.com
- Tony Morlan
- armorlan&rconnect.com
-7358
- POV Corp.
- Tiago Pierezan Camargo
- darksky&brturbo.com
-7359
- SteelEye Technology
- Bob Williamson
- bob.williamson&steeleye.com
-7360
- Telecom Personal
- Alfredo Edye
- aedye&telecompersonal.com.ar
-7361
- Certificado Digital S.A.
- Daniel E. Cortes
- dcortes&tlc-sa.com.ar
-7362
- Department Land, Air and Water Resources,University of California,Davis
- Quinn Hart
- qjhart&ucdavis.edu
-7363
- Prominence Networks Inc.
- Sid Nag
- sid&prominencenet.com
-7364
- IMS Health
- William M. Weist
- wweist&us.imshealth.com
-7365
- Easily Ltd
- Dominic Ijichi
- dom&easily.co.uk
-7366
- MarketTouch
- J Wadsworth
- j.wadsworth&markettouch.com
-7367
- DrayTek Corporation
- Tom Chen
- tchen&draytek.com.tw
-7368
- FalconStor, Inc.
- Fenfen Shueh
- fenfen&falconstor.com.tw
-7369
- Suncom Communications
- Fung Lo
- lf&mail.suncom.com.tw
-7370
- Cbeyond Communications
- Scott Lee
- scott.lee&cbeyond.net
-7371
- INSERM
- Vicente Gérard
- vicente&idf.inserm.fr
-7372
- Cratos Networks, Inc
- Joseph Benoit
- jbenoit&cratosnetworks.com
-7373
- Narad Networks Inc.
- Bill Bleem
- bleemb&naradnetworks.com
-7374
- C&D Micro Solutions
- Cyd Lantz
- cydl&cydav.com
-7375
- iSOFT Plc
- Alan Singfield
- alan.singfield&isoftplc.com
-7376
- Magenta Sites
- Valtteri Vuorikoski
- vuori&magenta.net
-7377
- Ubiquity Software Corporation
- Michael Doyle
- mdoyle&ubiquity.net
-7378
- FireSummit
- Jim Flom
- jflom&firesummit.com
-7379
- Soliton Technologies CO.,
- Ltd.
- kccheng&soliton.com.tw
-7380
- Shore Corporation
- Iñaki Santamaria
- isantamaria&gmail.com
-7381
- OWL-Online GmbH & Co. KG
- Arvid Requate
- requate&Team.OWL-Online.DE
-7382
- JustIT Sdn. Bhd.
- Lars Boegild Thomsen
- lth&cow.dk
-7383
- LIBERTECH
- Alain Abbas
- aabbas&libertech.fr
-7384
- CryptoTech
- Dariusz Lewicki
- dariusz&cryptotech.com.pl
-7385
- Celox Networks Inc.
- Jean Pierre Bordes
- jpb&celoxnetworks.com
-7386
- Cake Farm
- Regan King
- regan&cakefarm.com
-7387
- Canon Information Systems Research Australia
- Andrew Raphael
- raphael&research.canon.com.au
-7388
- Lune Networks
- Nelson Junior
- nelson&lunenetworks.com.br
-7389
- VDSL Systems Oy
- MR. Tomi Tirri
- tomi.tirri&vdslsystems.com
-7390
- Grisoft
- Petr Prazak
- prazak&grisoft.cz
-7391
- Institut National des Telecommunications (INT)
- +33(0)1 60 76 43 25
- Eric.Collery&int-evry.fr
-7392
- Telispark
- Brian Seborg
- brian.seborg&telispark.com
-7393
- Oasys Telecom, Inc.
- Frank Hartley
- fhartley&oasystel.com
-7394
- CosmoCom, Inc.
- Rich Turner
- rturner&cosmocom.com
-7395
- Beeline Networks, Inc.
- Rodrigo Alonso
- ralonso&beln.com
-7396
- OLYMPO controls Ltd.
- Richard Sobotka
- richard.sobotka&olympo.cz
-7397
- OnePage, inc
- Mike Timmons
- mtimmons&onepage.com
-7398
- Corporation 124
- Mahesh Mehta
- maheshm&corp124.com
-7399
- Data Systems West
- Michael Stoller
- mstoller&dsw.net
-7400
- EHI-INSM
- Michael Stoller
- mstoller&dsw.net
-7401
- EkotaCentral
- Paul Vaillant
- paul.vaillant&ekotacentral.com
-7402
- Vigor Soft Private Limited
- Mr. Atul Garg
- atul&vigorsoft.com
-7403
- Biomed Translations Ltd.
- David John Williams
- @biomed-translations&t-online.de
-7404
- D.J. Williams Editorial Ltd.David
- John Williams
- @biomed-translations&t-online.de
-7405
- IPS d.o.o.
- Dusan Banko
- banko&ips.si
-7406
- EFS : Etablisssement Francais du Sang
- Corine HAMEAU
- Corine.Hameau&efs.sante.fr
-7407
- Observatoire de Besancon
- Francoise Gazelle
- fg&obs-besancon.fr
-7408
- Kunskapstv i Sverige AB
- David Looberger
- dlooberger&kworld.se
-7409
- Jan Niehusmann
- Jan Niehusmann
- reg111&gondor.com
-7410
- Telekurs Financial
- Helmut Horn
- hoh&telekurs.com
-7411
- Finix
- Paul Tovey
- Paul.Tovey&thb.scot.nhs.uk
-7412
- Angstrom Microsystems
- Lalit Jain
- ljain&angstrommicro.com
-7413
- Computer Service Depot
- Simon Ditner
- simon&csdepot.com
-7414
- Muffett & Co
- Mark Muffett
- mark&muffett.net
-7415
- Berlin-Brandenburgische Akademie der Wissenschaften
- Tilo Lange
- lange&bbaw.de
-7416
- Software Advanced Technology Lab
- Maarten Spoek
- spoek&satl.com
-7417
- Cornell University
- James W. Howell
- jwh2&cornell.edu
-7418
- Procket Networks
- Sam Chang
- schang&procket.com
-7419
- Dai hoc su pham ky thuat
- nguyen van long
- nvlong80&hotmail.com
-7420
- Taylor Company
- Doug Newsom
- dnewsom&taylor-company.com
-7421
- Milcom Systems Corporation
- Steve Simpson
- ssimpson&milcom-systems.com
-7422
- Currenex
- Justin Fitzhugh
- jfitzhugh&currenex.com
-7423
- MedPlus, Inc.
- Deron E. Meranda
- dmeranda&medplus.com
-7424
- Infosec Technologies Co., Ltd.
- Dong-Wook Kim
- dwkim&infosec.co.kr
-7425
- Company of the Far Countries, Ltd.
- Erich Morisse
- e.morisse&farcountries.com
-7426
- NeST Information Technologies
- M I Theodore
- theodore&nestinfotech.com
-7427
- Yokogawa Electric Corporation
- Yokogawa Electric Corporation Development Infrastructure Dept.
- snmp0608&cs.jp.yokogawa.com
-7428
- PowerDsine
- Avi Berger
- avib&powerdsine.com
-7429
- BroadWeb Corporation
- Chao-Chin Chou
- juju&broadweb.com.tw
-7430
- mediascape communications AG
- Stefan Mohr
- sm&mediascape.de
-7431
- Altiva Solutions
- Frederic Bernoud
- ldap.oid&altiva.fr
-7432
- Excentis
- Wim De Ketelaere
- wim.deketelaere&excentis.com
-7433
- SITTI spa
- Marco Prosperi
- prosperi&sitti.it
-7434
- Planetasia Ltd
- Satish Sukumar
- satishs&planetasia.com
-7435
- T.K COMPANY
- Tomio Katsui
- kat4k@ginga,net
-7436
- Oxir Internet Solutions
- Alex Kovshov
- sandy&tb1.wh.ru
-7437
- Siemens ICN Italy
- Daniele Behar
- iana.interface&icn.siemens.it
-7438
- SAFE. Inc
- Jean-Marc Pigeon
- jmp&safe.ca
-7439
- AppStream, Inc.
- Soumendra Bhakta
- dev_renew&appstream.com
-7440
- Omnitech Computer Corp
- Luke Suchocki
- suchoclu&omnitechcorp.com
-7441
- CipherTrust, Inc.
- William Alan Ritch
- bill.ritch&ciphertrust.com
-7442
- Idaho National Engineering and Environmental Laboratory
- David N. Tillitt
- DXT&inel.gov
-7443
- EVEREX COMMUNICATION
- SUSIE CHU, Ph.D
- susiec&everexcomm.net
-7444
- Imagine Networks
- Stephen M. Weiss
- steve&imaginenetworks.com
-7445
- Javelina Software
- Dave Ritchie
- gilk&netpro.com
-7446
- Institute of Leadership and Management
- Naseer Bhatti
- goni&marmoset.net
-7447
- Signal Technology INC
- Sung Hoon Park
- hoonie&signal-tec.com
-7448
- Advanced Training & Consulting Services, Inc.
- Brian Watrous
- brianw&atcs.net
-7449
- WHAM COMPUTER
- OKTA RUMPAK
- rumpak&mailcity.com
-7450
- Framfab
- Rolf Svensson
- rolf.svensson&framfab.se
-7451
- nSYS Technologies Co., Ltd
- Chang-Woo Seo
- leo&nsystech.com
-7452
- Guangzhou Gaoke Communication Equipment Co., Ltd
- Jiangiang Hu
- 1fox&163.net
-7453
- Turtlefoot International
- Scott Dejmal
- sdejmal&turtlefoot.com
-7454
- OKsystem Ltd.
- Jindrich Stepanek
- stepanek&oksystem.cz
-7455
- dev/consulting GmbH
- Andreas Ferber
- af&devcon.net
-7456
- Virtual Net
- S. Namèche
- snameche&virtual-net.fr
-7457
- ZAO EMAX
- Andrey Ignatov
- andrey_ignatov&e-max.ru
-7458
- Clemens Benden
- Clemens Benden
- info&clemens-benden.de
-7459
- memIQ
- Till Schnupp
- till.schnupp&memiq.com
-7460
- XS4ALL Internet B.V.
- Scott A. McIntyre
- scott&xs4all.nl
-7461
- Page One AG
- Clemens Benden
- clemens&page-one.de
-7462
- Nordnorsk helsenett
- Anders Baardsgaard
- anders&nhn.no
-7463
- white.cell,inc
- Eran Kessler
- eran.kessler&white-cell.com
-7464
- ECMWF (European Centre for Medium-Range Weather Forecast)
- Matteo Dell'Acqua
- mdellacqua&ecmwf.int
-7465
- WISI
- Dirk Froese
- Dirk.Froese&WISI.de
-7466
- CLI GmbH
- B.Eckstein
- be&cli.de
-7467
- TTi Systems
- B.Eckstein
- be&cli.de
-7468
- Mixbaal
- Diego Barajas
- dbarajas&mixbaal.com
-7469
- VoiceGenie Technologies
- Rob Marchand
- rob&voicegenie.com
-7470
- Princeton Financial Systems
- John Thorpe
- jthorpe&pfs.com
-7471
- Discreet Communications Group
- Joseph Pallante
- jody&trustid.net
-7472
- MShow.com
- Joe Balque
- jbalque&mshow.com
-7473
- easyplanet Corp.
- Administrator
- administrator&easyplanet.com
-7474
- Inabled Online
- Barbara Newton
- bnewton&inabled.com
-7475
- Shanghai Bell Company Ltd.
- Cao Liang/ Yu Jian
- scecl&sbell.com.cn or yujaian&sbell.com.cn
-7476
- Departamento General de Irrigacion
- Juan Jose Ciarlante
- jjo&mendoza.gov.ar
-7477
- Unk SA - Argentina
- Juan Jose Ciarlante
- jjo&mendoza.gov.ar
-7478
- NetCraft Sdn Bhd
- Wei Yin, Teo
- wyt&netcraft.com.my
-7479
- Triad Development Group NA, LLC
- Franz Bahadosingh
- f.bahadosingh&triadna.com
-7480
- @MySpend.Com
- R.J. Bedijn
- reneb&dse.nl
-7481
- Talon
- Diederik de Groot
- ddegroot&talon.nl
-7482
- Widax Corporation
- David Husson
- dhusson&widax-corp.com
-7483
- Alcatel-Lucent (formerly 'Tropic Networks')
- Bert Gemin (Optical Division DWDM Products)
- bert.gemin&alcatel-lucent.com
-7484
- Teleias Inc.
- Mirko Karanovic
- mkaranovic&teleias.com
-7485
- SPS, Inc.
- Hash Malik
- hash.malik&spsnet.com
-7486
- Embassy Systems, Ltda.
- Paulo Gomide Cohn
- pgcohn&embassy-systems.com.br
-7487
- MEISolutions.com, Inc.
- Steven Wilson
- swilson&meisolutions.com
-7488
- Infinitec Networks
- Munzer Haque
- mhaque&infinitecnetworks.com
-7489
- e-HealthSign
- Lori Reed-Fourquet
- fourquet&ix.netcom.com
-7490
- TotalWisdom Inc.
- Greg McFall
- mcfall&bellatlantic.net
-7491
- gnumonks.org
- Harald Welte
- laforge&gnumonks.org
-7492
- Kommunikationsnetz Franken e.V.
- Harald Welte
- tc&franken.de
-7493
- ldap-abook
- David Leigh
- dleigh&sameasiteverwas.net
-7494
- Rovor Technologies
- T. Garlick
- tgarlick&rovor.com
-7495
- Advanced Web Solutions, Inc
- John Dole
- john&doorway.net
-7496
- JB-Holding b.v.
- Sebastian Vogels
- b.vogels&jb-holding.com
-7497
- Magnolia Broadband
- Alex Segalovitz
- alexsega&magnoliabroadband.co.il
-7498
- Gorski.net
- Darrin Gorski
- Darrin&Gorski.net
-7499
- Pacific Century CyberWorks - Hongkong Telecom
- Nick Gazo
- gazo.am.nick&cwhkt.com
-7500
- IICS
- Stefan Drees
- sdrees&acm.org
-7501
- BKtel communications GmbH (Systems)
- Juergen Anhorn
- anhorn&bktel.com
-7502
- African Medical Imaging
- Ben Wright
- ben&ami-online.com
-7503
- Henkels and McCoy
- Ernest Facciolini
- efacciolini&henkelsandmccoy.com
-7504
- AerSoft Ltd
- Joe Murphy
- joe&aersoft.com
-7505
- Calista Ltd.
- Andy Pepperell
- andy.pepperell&calista.com
-7506
- Scoreline Technologies
- Wayne de Villiers
- wayne&scoreline.com
-7507
- WayneWare
- Wayne de Villiers
- wayne&scoreline.com
-7508
- Fuji Electric Co.,Ltd.
- Yasuhiro Tanaka
- tanaka-yasu&fujielectric.co.jp
-7509
- Storability, Inc.
- Brian Tolland
- Brian.Tolland&storability.com
-7510
- Luxxon Corporation
- Jon Taylor
- jtaylor&luxxon.com
-7511
- wdt
- Se-Yong Cheon
- lifo&dreamwiz.com
-7512
- NetEnS Corporation
- Takumi Kadode
- netens_it&entens.co.jp
-7513
- Elimpex - Medizintechnik GesmbH.
- Peter Mueller
- peter.mueller&elimpex.com
-7514
- St Helens And Knowsley Hospitals NHS Trust
- Tony Atherton
- tonyatherton&yahoo.com
-7515
- P. Lancier
- Alphons Wernsmann
- alphons.wernsmann&lancier.de
-7516
- Andy Stubbs
- Andy Stubbs
- andy&andystubbs.com
-7517
- Acxsys Corporation
- George Gorsline
- ggorsline&interac.org
-7518
- Chicago Mercantile Exchange
- Stephen Goldman
- sgooldman&cme.com
-7519
- RateIntegration, Inc.
- Dallas Wrege
- dwrege&rateintegration.com
-7520
- Harris Corporation (formerly 'M/A-COM Private Radio Systems, Inc.')
- Harris Corp SNMP
- Harris-SNMP&harris.com
-7521
- Logicalis Australia Pty Ltd (formerly 'NetStar Networks')
- Garry Thomas
- gthomas&au.logicalis.com
-7522
- Brains Corp
- Takehito Horiuchi
- horiuchi&brains.co.jp
-7523
- AccessNet
- Chairil
- chairil&teamcast.com
-7524
- RapidSolution Software GmbH
- Juraj Polakovic
- juraj.polakovic&rapidsolution.de
-7525
- eCal Corporation
- Dudley Atkinson
- datkinson&ecal.com
-7526
- snom technology AG
- Karsten Wernicke
- wernicke&snom.de
-7527
- Quest Software
- Doug Hussey
- dhussey&quest.com
-7528
- Metabox Inc
- Larry Mayer
- lmayer&metaboxinc.com
-7529
- Netarx, Inc.
- Fred Eisele or Sandy Kronenberg
- phreed&netarx.com
-7530
- OptXCon Inc.
- Charles Marsh
- cmarsh&optxcon.com
-7531
- RapidWAN
- Colin Cox
- colin.cox&rapidwan.com
-7532
- Munat, Inc.
- Charles F. Munat
- chas&munat.com
-7533
- HONDA ELECTRON CO.,LTD
- HITOSHI SASAKI
- hit&honda-elc.com
-7534
- Universita' degli Studi di Genova
- Marco Ferrante
- apm&unige.it
-7535
- CapCLEAR Limited
- Anthony Sharp
- anthony.sharp&capclear.com
-7536
- H+H Zentrum f. Rechnerkommunikation GmbH
- Jens Diedrich
- diedrich&hh-zfrk.com
-7537
- e2 Communications
- John Keene
- jkeene&e2communications.com
-7538
- Veriprise Wireless Company
- Yong Su
- yong.su&veriprise.com
-7539
- QUACK.COM
- Garth K. Williams
- gwilliams&quack.com
-7540
- ISPsoft
- Edwin Park
- esp&ispsoft.com
-7541
- iBuilding.com
- John Donovan
- jdonovan&ibuilding.com
-7542
- Mount Allison University
- Petre Crawshaw
- pcrawshaw&mta.ca
-7543
- VisionShop
- Mark W. Smith
- mark&visionshop.com
-7544
- Wirelink Co., Ltd.
- Seong Jae, Lee
- sjlee&wirelink.co.kr
-7545
- QoSBA Systems Co., Ltd.
- Dong-Min Kim
- danny&qosba.co.kr
-7546
- AXXESSIT ASA
- Jon Erik E. Jensen
- jon.erik.jensen&axxessit.no
-7547
- CSIC/RedIRIS
- Victor Castelo
- victor.castelo&rediris.es
-7548
- Netcentric Systems Ltd.
- Keith Garrett
- keith.garrett&netcentricsystems.net
-7549
- DataCenterDirect.com, Inc.
- Gary Coulbourne
- garyc&datacenterdirect.com
-7550
- Delta Data Software
- Christian Plazas
- cplazas&deltadatasoft.com
-7551
- Enatel
- Denis Galiana
- galiana&enatel.com
-7552
- Infra Valley
- Hahyung, Cho
- hhcho&orgio.net
-7553
- Tampere University of Technology
- Martti Jokipii
- Martti.Jokipii&tut.fi
-7554
- Zlooper Media Perkasa
- Rustam Miharja
- rustamiharja&yahoo.com
-7555
- Institution Saint-Joseph
- Thierry GUYOT
- tguyot&instit-st-jo.asso.fr
-7556
- Movilogic S.A.
- Daniel Perez
- danielp&movilogic.com
-7557
- Echomine
- Chris Chen
- ckchris&echomine.com
-7558
- National Air Traffic Services Ltd
- Suki Lall
- suki.lall&nats.co.uk
-7559
- Egenera, Inc
- Jeremy Decker
- jdecker&egenera.com
-7560
- Daisy Group
- Ray Tremayne
- ray.tremayne&daisygroup.com
-7561
- Askoo SA
- Olivier Dumas
- odumas&askoo.com
-7562
- ICPSR (Inter-university Consortium for Political & Social Research)
- John Gray
- johngray&umich.edu
-7563
- OneSpot, Inc.
- Christopher Hoover
- hostmaster&onespot.com
-7564
- Clickarrray Networks, Inc.
- Shiow-Jen Jin
- sjj&clickarray.com
-7565
- USGS South Florida Information Access Project
- R. B. Irvin
- rbirvin&usgs.gov
-7566
- CodeStream Technologies Corporation
- Sherry Huang
- huang&codestream.net
-7567
- Portera Systems
- Nick Cuccia
- ncuccia&portera.com
-7568
- Ircam
- Julien Boissinot
- Julien.Boissinot&ircam.fr
-7569
- Convedia Corporation
- Will Wong
- willwong&convedia.com
-7570
- Brience, Inc.
- Steven Zhou
- szhou&brience.com
-7571
- SAF tehnika
- Dainis Strupis
- Dainis.Strupis&safequipment.com
-7572
- Quest Software
- Brady Orand
- Brady_Orand&quest.com
-7573
- NBC Internet
- Steve Carlson
- Steve.Carlson&nbci.com
-7574
- Torque Systems, Inc
- Steven Ryan
- buffy&torque.com
-7575
- Maharashtra Institute of Technology, Pune
- Rushi Desai
- rushi&mitp.ac.in
-7576
- GEA IT Services GmbH
- Hans Wetser
- hwetser&grasso.nl
-7577
- University Of Strathclyde
- J R Binks
- network-manager&strath.ac.uk
-7578
- Energis Deutschland
- J. Olaf Waitkus
- owaitkus&energisd.de
-7579
- University of Freiburg
- Martin Walter
- mawa&uni-freiburg.de
-7580
- AnIX Group Limited
- Derek Milliner
- derek.milliner&anix.co.uk
-7581
- Advent Networks, Inc.
- Dan Carter
- dcarter&adventnetworks.com
-7582
- E-Z Data, Inc.
- Raymond Jia
- raymond&ez-data.com
-7583
- The Eleven
- Tom Legg
- tlegg&the-eleven.com
-7584
- Intertrust Technologies Corporation
- Knox Carey
- knox&intertrust.com
-7585
- Genius Software Ltda
- Jose Roberto Fernandes
- jrfndes&genius.bc-ip.com.br
-7586
- Parametric Technology Corporation
- Kevin Jordan
- kjordan&ptc.com
-7587
- World Digitel Corporation
- Sung-Won, Kwon
- worldjk&hitel.net
-7588
- WIS COMMUNICATION CO. LTD
- ZhengFei
- knifer&21cn.com
-7589
- MemlinkEyal
- Sadovsky
- eyals&mem-link.com
-7590
- bodachina
- Precilla Luo
- precilla&263.net
-7591
- Divisa Informática y Telecomunicaciones S.A.
- David Rodríguez Alfayate
- drodriguez&divisait.com
-7592
- Swedish Institute of Space Physics
- Mats Luspa
- mats.luspa&irf.se
-7593
- University of Cambridge, Clinical and Biomedical Computing Unit
- Graham Phillips
- graham&cbcu.cam.ac.uk
-7594
- Citadel LLC (formerly 'Citadel Investment Group')
- Eric Lambert
- hostmaster&citadel.com
-7595
- RATIO Entwicklungen GmbH
- Oliver Thulke
- oth&ratio.de
-7596
- Trellis Photonics
- Yair Sa'ad
- yair&Trellis-Photonics.com
-7597
- NOVA LJUBLJANSKA BANKA
- Rastko Skaljak, Tercelj Mladen
- skaljakr&n-lb.si
-7598
- KTSI
- Robert Sherwood
- rsherwood&ktsi.net
-7599
- Rebel.com, Inc.
- Roy Hooper
- roy.hooper&rebel.com
-7600
- eazel
- Rick Willmore
- rick&eazel.com
-7601
- Trinity College
- Richard Wraith
- IT_Manager&trinity.unimelb.edu.au
-7602
- Covers.de
- Kai Roessel
- info&covers.de
-7603
- Kingfisher ICT-Services
- W.H Mollenvanger
- wilfredm&kingfisher.nl
-7604
- MSE-iT
- Thomas Maierhofer
- TMaierhofer&mse-it.de
-7605
- e-point S.A
- Patryk Swiderski
- psw&e-point.pl
-7606
- The University of Alabama in Huntsville
- James H. McCullars
- mccullj&uah.edu
-7607
- AppGate, Inc.
- Chris Gaskins
- cgaskins&appgate.com
-7608
- Celion Networks, Inc.
- Eric Nelson
- eric.nelson&celion.com
-7609
- SpinState
- Gordon Jenkins
- gordon&spinstate.com
-7610
- Something 4 Ltd
- Mr Corrie Griffiths
- corrie.griffiths&something4.com
-7611
- Federal Reserve System
- Bob Nasti
- bob.nasti&ids.frb.org
-7612
- Digi-Data Corp
- Ken Willis
- kwillis&digidata.com
-7613
- Panther Software, Inc.
- Alex Krassel
- alexkr&panthersoft.com
-7614
- Isovia
- Vinay Pulim
- vinay.pulim&isovia.com
-7615
- Universitat de Girona
- Salvador Salanova Fortmann
- salvador.salanova&pas.udg.es
-7616
- STMICROELECTRONICS
- Christian Bonato
- christian.bonato&st.com
-7617
- Stendahls.net AB
- Henrik Segergren
- henrik&stendahls.net
-7618
- Adomo, Inc.
- Peter Bruun
- pbruun&adomo.com
-7619
- Amon Technologies
- Walter De Groof
- degroofw&amontech.com
-7620
- France Teaser
- Laurent Wacrenier
- lwa&teaser.fr
-7621
- DISH Network L.L.C. (formerly 'EchoStar Corporation')
- Dwayne Barstad
- dwayne.barstad&dishnetwork.com
-7622
- Mesa Systems International
- Ronald E. Fortin
- ref&mesasys.com
-7623
- DXO Telecom Co., Ltd.
- Jaehyoung, Shim
- wrkshim&netian.com
-7624
- akal systems
- Surinder Singh
- singh&eng.sun.com
-7625
- ComCon GmbH
- Markus Palme
- markusp&comcon-gmbh.com
-7626
- University of Osnabrueck
- Rolf Nienhueser
- Rolf.Nienhueser&Uni-Osnabrueck.DE
-7627
- TeleBroad Networks
- Maroof Mian
- zafar&telebroadnetworks.com
-7628
- Reed-Matthews, Inc.
- Ed Reed
- eer&oncalldba.com
-7629
- 4unet
- Atif Ghaffar
- atif&developer.ch
-7630
- Tioga Technologies
- Machlev Nissim
- nmachlev&tiogatech.com
-7631
- INTERFACE CONCEPT
- Mr. EUZEN
- pheuzen&interfaceconcept.com
-7632
- GNS
- Jenny Kim
- jenny&glonetsys.com
-7633
- City University
- David Vinograd
- d.r.vinograd&city.ac.uk
-7634
- Bungee Communications
- Shlomo Yariv
- shlomoy&bungee-com.com
-7635
- THOMSON multimedia R&D France
- Marc Picart
- picartm&thmulti.com
-7636
- Laponia Veiculos
- Cristiano Jose Sulzbach
- cris&laponia.com.br
-7637
- JPM Consulting
- Jan-Piet Mens
- jp&mens.de
-7638
- Carrier1
- Jay Tribick
- jay.tribick&carrier1.net
-7639
- Netverk S.A.
- Gustavo Grela
- gustavo.grela&netverk.com
-7640
- Quantum Corp.
- Dan Mcgee
- dan.mcgee&quantum.com
-7641
- Astronomical Society of Edinburgh
- Graham Rule
- asewww&roe.ac.uk
-7642
- SpiderTech Software Pvt. Ltd
- Prashant Deshpande
- sj2&hotmail.com
-7643
- National Chung Cheng University
- TING-CHAO HOU
- tch&ee.ccu.edu.tw
-7644
- EK Großeinkauf eG
- Matthias Ohlemeyer
- Matthias.Ohlemeyer&EK-Grosseinkauf.de
-7645
- NetXL
- Olivier Mary
- olivier&netxl.fr
-7646
- Exemus Ltd
- Peter Rendle
- hostmaster&exemus.com
-7647
- Oregan Networks Ltd
- Adrian Gartland
- adrian.gartland&oregan.net
-7648
- Nationwide Mutual Insurance Company
- Cher West
- westc1&nationwide.com
-7649
- EverFile, Inc.
- Joseph Chapman
- joe&everfile.com
-7650
- Leibniz-Rechenzentrum
- Claus Wimmer
- Claus.Wimmer&lrz-muenchen.de
-7651
- UniSecurity
- Alex Song
- alex&unisecurity.com
-7652
- DataCore Software Corporation
- Robert Bassett
- robert.bassett&datacoresoftware.com
-7653
- Dashbit Incorporated
- Steven Downs
- ldapadmin&dashbit.com
-7654
- SnoNet
- Eric Aislinn
- eric.aislinn&snonet.org
-7655
- Sean Kelly, Independent Consultant
- Sean Kelly
- kelly&seankelly.biz
-7656
- Bertrandt AG
- Joern Lippold
- joern.lippold&de.bertrandt.com
-7657
- DISAT SISTEMAS TELECOMUNICACIÓN
- ANTONIO JOSE ANTON
- antonio.jose.anton&wanadoo.es
-7658
- Webonomics GmbH
- Daniel Chabrol
- chabrol&webonomics.de
-7659
- UESTC
- Meng Zhou Hou
- mzhhou&263.net
-7660
- Okiok Data
- Carl Benoit
- cbenoit&okiok.com
-7661
- HumanScan GmbH
- Hagen Zurek
- h.zurek&bioid.com
-7662
- SOGETEK
- Georges de Oliveira
- admin&sogetek.fr
-7663
- Taral Networks Inc.
- Jennifer Kim
- jkim&taralnetworks.com
-7664
- mezzoNET Easy Technologie S.L.
- Sven Slezak
- ldap&mezzo.net
-7665
- INTRIA-HP Corp
- Bala Balabaskaran
- bala.balabaskaran&intria.com
-7666
- Provenco Group Ltd
- Duncan Mackay
- duncan.mackay&provenco.com
-7667
- Banque Nationale du Canada
- Laurent Frere
- Laurent.Frere&bnc.ca
-7668
- Praeter Technologies, Inc.
- Scott Hebert
- scott&praeter.com
-7669
- Network Photonics, Inc.
- Shudong Lu
- slu&networkphotonics.com
-7670
- Viator Incorporated
- Chris Burnley
- chris&viator.com
-7671
- Invertix Corporation
- Graham Stead
- gstead&invertix.com
-7672
- Fujitsu NNC Ltd./ PBN
- Takeshi Matsunaga
- matunaga&nnc.ts.fujitsu.co.jp
-7673
- Fusion Communications Corp.
- Kan Sasaki
- sasaki&fusioncom.co.jp
-7674
- Northern Principle Limited
- Tomas Doran
- tomas&principle.co.uk
-7675
- SPAR Handels AG
- Frank Meszaros
- Frank_Meszaros&spar.de
-7676
- Strawberry Software Limited
- John Swan
- john&strawberry-software.com
-7677
- Lynx Photonic Networks Inc.
- Guy Kronenthal
- kguy&lynxpn.com
-7678
- XYRIUS
- Henri Mesquida
- henri&xyrius.com
-7679
- WiNag.com
- Zahai Tassev
- harry&oneoffice.at
-7680
- Corrigent Systems Inc.
- Muly Ilan
- mulyi&corrigent.com
-7681
- Trakonic
- Michael Chapman
- mike&trakonic.com
-7682
- nCipher PLC
- Kevin McKeogh
- kevin&ncipher.com
-7683
- Air Liquide Electronics
- Bob Irwin
- @ bob.irwin&airliquide.com
-7684
- NexTone Communications
- Rakendu Devdhar
- rdevdhar&nextone.com
-7685
- KPMG Consulting, LLC
- Russell Martinez
- russellmartinez&kpmg.com
-7686
- Pêches et Océans Canada - Garde côtière
- Serge Deschamps
- deschampss&dfo-mpo.gc.ca
-7687
- UFSC/LabSEC
- Ricardo Felipe Custodio
- custodio&inf.ufsc.br
-7688
- Social Change Online
- Wayne Browne
- wbrowne&socialchange.net.au
-7689
- rasimusi
- Raul
- blanely&aol.com
-7690
- ThruPoint, Inc.
- Rich Pepe
- rpepe&thrupoint.net
-7691
- Warp Solutions, Inc.
- Lenny Primak
- lprimak&warpsolutions.com
-7692
- The Stoddard Group, Inc.
- Peter E. Stoddard
- PEStoddard&aol.com
-7693
- International Life Sciences Institute (ILSI)
- Sean Bozarth
- sbozarth&ilsi.org
-7694
- Summit Technologies
- Stephen Leung
- SLEUNG&SUMMTECH.COM
-7695
- Media Cloud, Inc.
- Jim Baker
- jim&mediacloud.com
-7696
- Bach Systems, Inc.
- R. Michael Judd
- mike.judd&bachsystems.com
-7697
- Athabasca University
- Barry W. Kokotailo
- merlin&athabascau.ca
-7698
- Context Media, Inc.
- Dave Costantino
- daver&contextmedia.com
-7699
- Syncwave Networks, Inc.
- Ron Green
- rgreen&austin.rr.com
-7700
- Endeavors Technology, Inc.
- Jim Lowrey
- jim&magisoftware.com
-7701
- GemStone Systems Inc.
- Mike Culbertson
- mculbert&gemstone.com
-7702
- Keicho,Ltd.
- Kazuhiro Yoshida
- yoshi&azn.ne.jp
-7703
- Ecrio Inc.
- Bijal V. Mehta
- bmehta&ecrio.com
-7704
- Der Polizeipraesident in Berlin
- Thomas Noack
- zseiiic4&polizei.berlin.de
-7705
- Centre For Wireless Communications
- Joshua Liew
- liewjoshua&cwc.nus.edu.sg
-7706
- JonCol.com
- Jon Collins
- jon&joncol.com
-7707
- Proactive Technology Ltd.
- KW Pong
- kwpong&proactive.com.hk
-7708
- WydeBand
- Oleg Pogorelik
- olegp&wydeband.com
-7709
- Aristotle University of Thessaloniki
- Dimitris Zacharopoulos
- jimmy&it.auth.gr
-7710
- Agrilis (pty) Ltd
- T. Kenedi
- agrilis&iafrica.com
-7711
- GNKC
- Vlad Beliaev
- vbel68&yahoo.com
-7712
- SECARTIS AG
- Wolfgang Christ
- wolfgang.christ&secartis.com
-7713
- Tomorrow Technologies Marcus
- Rating
- marcus.rating&tomorrow-tech.de
-7714
- EVIDIAN
- Marie-France Dubreuil
- Marie-France.Dubreuil&evidian.com
-7715
- EYE Communications AG
- Martin Kobel
- kobel&eye.ch
-7716
- ART S.p.A.
- Marco Ercoli
- marco.ercoli&art-web.it
-7717
- Flying J Inc.
- Karl Bolingbroke
- karl.bolingbroke&flyingj.com
-7718
- INA
- Chicca Roberto
- r.chicca&gruppoina.it
-7719
- Avilinks
- Stephane Rolland
- srolland&avilinks.com
-7720
- W.I. Simonson Inc.
- Ron Reed
- gmman11&aol.com
-7721
- caatoosee schweiz ag
- Marcel Wiedemeier
- marcel.wiedemeier&caatoosee.com
-7722
- net-linx-ps-sii
- Rajesh Ghag
- ghag&sii.com
-7723
- Benham.net
- Darren Benham
- darren&benham.net
-7724
- Unassigned
-
- ---none---
-7725
- Hark Tower Systems
- James Armstrong
- james&harksystems.com
-7726
- Pointgain Corporation
- Surendra Reddy
- skreddy&pointgain.com
-7727
- CIN-NIC
- Patrick Verertbruggen
- patrick.veretbruggen&socmut.be
-7728
- 3R Inc.
- Hyunseok Shin
- hsshin&3r.co.kr
-7729
- Telson
- Manuel Martinez
- mmh&telson-internet.com
-7730
- Voxpath Networks
- Sidney Antommarchi
- sid&voxpath.com
-7731
- HomeStore.com
- Henry Gunst
- henry&springstreet.com
-7732
- philiplo
- Philip Lo
- phlo&home.com
-7733
- Pulsar Technologies, Inc.
- Joan M. Noto
- joan.noto&pulsartech.com
-7734
- ProQuent Systems Corporation
- Todd Thompson
- todd&proquent.com
-7735
- Airbiquity Inc
- Allen Hartley
- ahartley&airbiquity.com
-7736
- Jarna
- Andrew Toy
- atoy&jarna.com
-7737
- Internet Photonics Inc.
- Dhritiman Banerjee
- banerjed&lucent.com
-7738
- Encendra Communications
- Surendra Reddy
- skreddy&encendra.com
-7739
- DigEncP
- Fredrick Lee
- flee&digencp.org
-7740
- NetMonger Communications Christopher
- Masto
- chris+oid&netmonger.net
-7741
- SNMP Technologies
- Chris Avis
- chris&snmptech.com
-7742
- Aptira Pty Ltd (formerly 'Antithesys Pty Ltd')
- Tristan Goode
- pen&aptira.com
-7743
- Salomon Smith Barney, Autralia
- Michael O'Sullivan
- osullim&ssmb.com.au
-7744
- SPE Systemhaus GmbH
- Ronald Winter
- winter&spe-systemhaus.de
-7745
- AETHRA
- Claudio Panini
- c.panini&aethra.it
-7746
- Watershed Consultants Ltd
- Anthony Price
- anthony.price&talk21.com
-7747
- Federation
- Ran Locar
- ranl&FederationWeb.com
-7748
- GlobeCom Interactive
- Ariel Brosh
- ariel&globecom-interactive.com
-7749
- HICOM GmbH
- Sven Heuer
- heuer&hicom.de
-7750
- Helicon Networks
- John Anderson
- janderson&HeliconNetworks.com
-7751
- mDiversity, Inc.
- Melanie Datta
- melanie.datta&mdiversity.com
-7752
- Bravara Communications, Inc.
- Steve Stolz
- stolz&bravara.com
-7753
- ZELPOS
- Ales Jurik
- ajurik&volny.cz
-7754
- Infosquare Corp.
- Giovanni Iamonte
- iamonte&infosquare.com
-7755
- Disney Technology Solutions and Services
- Ian Funk
- ian.funk&disney.com
-7756
- Netarena Communications
- Michael Lum
- mlum&netarena.com
-7757
- Tonbu Inc
- Keith Heybourne
- kheybourne&tonbu.com
-7758
- E-BUSINESSNETWORK.COM
- Surendra Reddy
- skreddy&pointgain.com
-7759
- EENADU.COM
- Surendra Reddy
- skreddy&pointgain.com
-7760
- ANYSCAPE.COM
- Surendra Reddy
- skreddy&pointgain.com
-7761
- POINTGO.COM
- Surendra Reddy
- skreddy&pointgain.com
-7762
- EBIZXML.COM
- Surendra Reddy
- skreddy&pointgain.com
-7763
- POINTGAIN.NET
- Surendra Reddy
- skreddy&pointgain.com
-7764
- EBUSINESSXCHANGE.COM
- Surendra Reddy
- skreddy&pointgain.com
-7765
- SYSDYNAMICS.COM
- Surendra Reddy
- skreddy&pointgain.com
-7766
- BUSINESSACROSS.COM
- Surendra Reddy
- skreddy&pointgain.com
-7767
- EBUSINESSOPENWORLD.COM
- Surendra Reddy
- skreddy&pointgain.com
-7768
- E-BUSINESSOPENWORLD.COM
- Surendra Reddy
- skreddy&pointgain.com
-7769
- E-BUSINESSOPENWORLD.NET
- Surendra Reddy
- skreddy&pointgain.com
-7770
- EBUSINESSOPENWORLD.NET
- Surendra Reddy
- skreddy&pointgain.com
-7771
- EBUSINESSACROSS.COM
- Surendra Reddy
- skreddy&pointgain.com
-7772
- EBIZDYNAMICS.COM
- Surendra Reddy
- skreddy&pointgain.com
-7773
- E-BUSINESSDYNAMICS.COM
- Surendra Reddy
- skreddy&pointgain.com
-7774
- EBUSINESSX.COM
- Surendra Reddy
- skreddy&pointgain.com
-7775
- E-DYNAMICS.COM
- Surendra Reddy
- skreddy&pointgain.com
-7776
- E-DYNAMICS.NET
- Surendra Reddy
- skreddy&pointgain.com
-7777
- E-DYNAMICS.ORG
- Surendra Reddy
- skreddy&pointgain.com
-7778
- Excess Trade Zone, Inc.
- Jerry Wen
- jwen&partminer.com
-7779
- InfoBlox Inc.
- Stuart Bailey
- sbailey&infoblox.com
-7780
- Mirametric
- Ritchie Young
- ritchie.young&mirametric.com
-7781
- Conservatoire National des Arts et Metiers
- Jean-Paul Monteil
- monteil&cnam.fr
-7782
- Greek School Network
- Limperis Antonis
- limperis&cti.gr
-7783
- Riello S.p.A.
- Filippo Rossetti
- filippo.rossetti&riellogroup.com
-7784
- Lattis Enterprise Management Ltd
- Jason Turner
- jason.turner&lattis.co.uk
-7785
- Rivne Communication Technologies Ltd.
- Liubomir Ferents
- postmaster&rct.net.ua
-7786
- IBCnet Ltd.
- Sandor Dobos
- itgroup&ibcnet.hu
-7787
- frontsite AG
- Alexander Behr
- alexander.behr&frontsite.de
-7788
- Liebregts
- Janus Liebregts
- janus&liebregts.nl
-7789
- LPM Online
- Brad Welker
- noc&lpmonline.net
-7790
- LISIT - Lombardia Integrata Servizi Infotelematici per ilTerritorio
- Luigi Bongiorni
- luigi.bongiorni&lispa.it
-7791
- Conseil General de la Loire
- Jean-Marc Faure
- jean-marc.faure&cg42.fr
-7792
- incshopkorea
- Jackson Kang
- ohmylove&mail.co.kr
-7793
- HMS
- Walter Schinnerl
- wschinn&iicm.edu
-7794
- Infinity Tel-Data Inc
- Weston Bustraan
- weston&itdonline.net
-7795
- Custom Software Solutions
- Marc Rivers
- mrivers&speedfactory.net
-7796
- BowdenGS Technoloiges, LLC
- Jeffrey "Jesse" James Bowden
- bowdenclan&earthlink.net
-7797
- Aculeus, Inc.
- Jay Bolster
- jay_bolster&msn.com
-7798
- Toko Electric Co., Ltd.
- Motonori Kawasaki
- kawasaki&rd.tokodenki.co.jp
-7799
- The PacificRoot
- Bradley D. Thornton
- tallship&tallship.net
-7800
- Premier Network Co., Ltd
- Kwanho Park
- khpark&premiernet.co.kr
-7801
- Radionet Oy
- Marko Nieminen
- mage&radionet.fi
-7802
- 110 Limited
- Samir Patel
- samir.patel&one-ten.com
-7803
- Terra Networks Brasil S/A
- Werner Michels
- werner.michels&corp.terra.com.br
-7804
- elcan Corp.
- Werner Oppenheimer
- oppen&erols.com
-7805
- NetNation Communications Inc.
- Lynden Lindahl
- noc&netnation.com
-7806
- Techsar
- Dilip Nayak
- dnayak&techsar.com
-7807
- Stoneware, Inc.
- Tony Thompson
- Tony.Thompson&stone-ware.com
-7808
- Rearden Steel Technologies, Inc.
- Scott Foster
- hostmaster&reardensteel.com
-7809
- Phil Pearl (formerly 'Finch Computer Services')
- Phil Pearl
- phil&pearl-family.com
-7810
- Seek Systems
- Steve Kahle
- skahle&seeksystems.com
-7811
- 40 Street Records
- Amen Moja Ra
- mojaray2k&yahoo.com
-7812
- Pfadi Limmattal
- Markus Grieder
- mgrieder&gmx.ch
-7813
- Cogetec HSI
- Gerard Dufaux
- g.dufaux&cogetec.com
-7814
- Infinity Tel-Data Inc.
- Weston Bustraan
- weston&itdonline.net
-7815
- Gilmore House Associates Ltd
- David Mullins
- david&gilmorehouse.com
-7816
- Wissenschaftladen Dortmund e.V.
- Sascha Gresk
- ldap&free.de
-7817
- Chiphead Consulting, Inc.
- Wayne A. Hogue II
- chiphead&chiphead.net@
-7818
- Rohit Communications Pte. Ltd.
- Santhosh Kumar Pilakkat
- santhoshkp&ieee.org
-7819
- Opensource Consult
- Sascha Gresk
- sascha.gresk&opensource-consult.de
-7820
- Configate Inc.
- Irene Mikhlin
- irene&configate.com
-7821
- University of Silesia
- Maciej Uhlig
- muhlig&us.edu.pl
-7822
- Athena Security
- Wayne Pierce
- Pierce&AthenaSecurity.Com
-7823
- Clickaction
- Tony Hayes
- antonioh&clickaction.com
-7824
- LG Electronics Inc.
- Sunghee Lee
- kamangee&wm.lge.co.kr
-7825
- Cognizant Technology Solutions
- Mohammad Fayazur Rahaman
- mfayazur&chn.cts-corp.com
-7826
- KPNQwest Austria GmbH.
- Alexander Mayrhofer
- noc&KPNQwest.at
-7827
- Sofadex-Puratos
- Mr DENIS
- medenis&iam.net.ma
-7828
- Commsbloke.com
- Nick Baldwin
- nick&commsbloke.com
-7829
- Axon Digital Design B.V.
- Christiaan Simons
- rdsw&axon.tv
-7830
- Service Info-Techno Inc.
- Marc Laflamm
- craml&hotmail.com
-7831
- Dataflex Design Communications Limited
- Stuart Peskett
- stuart.peskett&dataflex.co.uk
-7832
- ICSA Labs
- Darren Hartman
- dhartman&icsalabs.com
-7833
- daveb.net
- Dave Bailey
- dave&daveb.net
-7834
- Wissenschaftsladen Dortmund e.V.
- Frank Nord
- ldap&free.de
-7835
- Hope Tranportation
- eisa osman
- issa_osman&hotmail.com
-7836
- Nuark Co., Ltd.
- Jang SangBae
- sbjang&nuark.co.kr
-7837
- Sumtel Communications, Inc.
- Henry Lin
- hsinchuwalker&sinamail.com
-7838
- UTOMI AG
- Jürgen Ringler
- jringler&utomi.de
-7839
- Telia UK Limited
- Richard Moon
- rmoon&telia.co.uk
-7840
- Zelax
- Sergey Suhman
- suhman&zelax.ru
-7841
- Skynet Ltd.
- Ilya V Kotusev
- il&sky.ru
-7842
- Université Paris 12 - Val de Marne
- Patrick Rousselot
- Patrick.Rousselot&univ-paris12.fr
-7843
- Callera Ltd
- Jonathan Webb
- jonathan.webb&callera.net
-7844
- KGB Entertainment
- Jurg van Vliet
- jurg&kgbe.net
-7845
- Cipher
- Boyko Sergey
- sales&cipher.kiev.ua
-7846
- ETRALI
- Stephane Payaud
- edelcamp&sinfor.fr
-7847
- The Evangelical Lutheran Good Samaritan Society
- Kevin Lehan
- klehan&good-sam.com
-7848
- Sächsische Staatskanzlei
- Jörg Schneider
- Joerg.Schneider&dd.sk.sachsen.de
-7849
- CommeceOne Auction Services
- Anil Madan
- anil.madan&commerceone.com
-7850
- Penford Corporation
- Dennis Glatting
- dennis.glatting&software-munitions.com
-7851
- Software Munitions
- Dennis Glatting
- dennis.glatting&software-munitions.com
-7852
- CyberElves
- Simon Lockington
- simon.lockington&cyberelves.com
-7853
- Teknoids
- Elmer Masters
- elmer&teknoids.net
-7854
- nazit
- Hwan Yun
- fhlove&hanmail.net
-7855
- ISI-CNR
- Mario Cannataro
- cannataro&si.deis.unical.it
-7856
- REALTRONIC
- Laurent TEXIER
- ltexier&realtronic.fr
-7857
- XenoSite
- G.J. Moed
- gjmoed&xenosite.net
-7858
- Outcome Technology Associates, Inc.
- Sean McLinden, MD
- mclinden&informed.net
-7859
- NetMount
- Alex Oberlander
- alexo&netmount.com
-7860
- Datatone Ltd
- Dave Humphreys
- dave&datatone.co.uk
-7861
- U4EA Technologies Ltd.
- Richard Williamson
- richard.williamson&u4eatech.com
-7862
- Herrns PC
- Alf Lovbo
- alf&herrn.com
-7863
- FreeW3, Inc.
- Robert J. Hammond
- bob&cmitech.com
-7864
- Megadot Pty Ltd
- Mitko Stoyanov
- mstoyan&megadot.com.au
-7865
- Litnet NOC
- Marius Urkis
- marius&litnet.lt
-7866
- Corinthian Engineering Pty Ltd
- Richard Perini
- rpp&ci.com.au
-7867
- Mailvision
- Diego Besprosvan
- maria&mailvision.com
-7868
- Universite de Sherbrooke
- Christian Houde
- christian.houde&courrier.usherb.ca
-7869
- Byzantium Solutions Ltd
- Mr J.A.Woodforth
- jon.woodforth&byzantium.com
-7870
- Polska Platforma Internetowa
- Maciek
- maciek&profnet.pl
-7871
- NICsys GbR
- Volker Holfeld
- volker.holfeld&nicsys.de
-7872
- Arrista Technologies
- Wayne Schellekens
- wschellekens&arrista.com
-7873
- Info-Onscreen Software Systems Pty. Ltd.
- Anthony Turco
- anthony.turco&info-onscreen.com.au
-7874
- Highland Injection Molding Inc.
- Jon Stokkeland
- stoker&highland-plastics.com
-7875
- Shibaura Institute of Technology , Science Information Center
- Tsutomu Hoshino
- hoshino&sic.shibaura-it.ac.jp
-7876
- Statens vegvesen
- Tor Aksnes
- Tor.Aksnes&vegvesen.no
-7877
- Basefarm AS
- Rein Tollevik
- rein&basefarm.no
-7878
- The University of the South Pacific
- Simon Greaves
- Simon.Greaves&usp.ac.fj
-7879
- T-TeleSec
- Detlef Dienst
- detlef.dienst&telekom.de
-7880
- Peco II Inc.
- Tom Dannemiller
- tdannemiller&peco2.com
-7881
- Cognitas Technologies, Inc.
- Santiago Marra
- santiago.marra&cognitas.com
-7882
- City of Prescott IT Department
- Chris Noe
- noec&pr.erau.edu
-7883
- amirk.com
- Amir Khosrowshahi
- amirk&amirk.com
-7884
- Francis W. Parker School
- Arek Dreyer
- arek&arekdreyer.com
-7885
- Arek Dreyer
- Arek Dreyer
- pen&arekdreyer.com
-7886
- K Application
- Bruce Kilgore
- bruce&kapplication.com
-7887
- nCUBE, Corp.
- Dave Spurbeck
- dspurbeck@.ncube.com
-7888
- Iamba Technologies Ltd.
- Yuval Ben-Haim
- Yuval_Ben-Haim&iamba.com
-7889
- Lingnan University
- W. M. Cheung
- waiman&ln.edu.hk
-7890
- Arrow Electronics, Inc.
- Philip Lembo
- plembo&arrow.com
-7891
- Confederation of Norwegian Business and Industry
- Lars Uppheim
- lars.uppheim&nho.no
-7892
- Lannert.de
- Detlef Lannert
- dl&lannert.de
-7893
- Yacom Internet Factory S.A
- Lorenzo Planas
- lplanas&ya.com
-7894
- VanCo.net s.r.o.
- Pavel Uhliar
- uhliar&vanco.cz
-7895
- Amethon Solutions
- Paul Nicholls
- paul1&amethon.com
-7896
- Rietumu Banka
- Sergej Bondar
- bsb&rietumu.lv
-7897
- Knowledge Base BV
- Mark van der Snel
- jaac&worldonline.nl
-7898
- Openet Telecom Ltd.
- Niall Couse
- snmp&openet-telecom.com
-7899
- Cap Gemini, portugal
- Joao Bernardo
- joao.bernardo&capgemini.pt
-7900
- Neuberger & Hughes GmbH
- Florian Klein
- fk&n-h.com
-7901
- Capiro
- Doan Veitia
- doan&capiro.vcl.sld.cu
-7902
- alberta wellnet
- Luda Pogrebinsky
- luda.pogrebinsky&albertawellnet.org
-7903
- EcoProg Ltd.
- Smirnova Tatiana V.
- smirnova&ecoprog.ru
-7904
- Greenwich Capital Markets
- Michael Zanga
- zangam&gcm.com
-7905
- National Training Institute, Inc.
- Derrick Hamner
- derrickh&ntiusa.com
-7906
- Brainworkers Srl
- Luca de Marinis
- loop23&inwind.it
-7907
- Alliance Race Car Builders
- Kevin T. Anderson
- @bloomquis&45.com
-7908
- TelSoft Solutions, Inc
- Omer Azmon
- oazmon&telsoft-solutions.com
-7909
- American Communication Technologies International, Inc.
- Clayton E. Cramer
- CCramer&acticorp.com
-7910
- CSTS, Inc.
- Eric Einem
- eric&csts.com
-7911
- Dreamintek Co.,Ltd
- Kyungjae Han
- econo&dreamintek.com
-7912
- Staffware PLC
- Chris Arnold
- carnold&staffware.com
-7913
- Space Hellas S.A.
- Theodore J. Soldatos
- noc&space.gr
-7914
- qmail-ldap project
- Andre Oppermann
- opi&nrg4u.com
-7915
- Cetevo AB
- Pertti Palokangas
- pertti&cetevo.com
-7916
- PAGE
- JAVIER ORDEN
- jorden&pagetelecom.com
-7917
- Area de Ciencias de la Computación e Inteligencia Artificial
- David Cabrero Souto
- cabrero&uvigo.es
-7918
- Electrosonic Ltd
- Michael Scuffham
- mscuffham&electrosonic-uk.com
-7919
- Spyn Inc.
- Alex Bewley
- alex&spyn.com
-7920
- National Education Association of the United States
- Peter Cotterill
- pcotterill&nea.org
-7921
- AethyrNet Soluitions
- John Hoke
- john&hoke.org
-7922
- Spiro Kommunikation
- Fredrik Hultkrantz
- fjutt&blink.se
-7923
- OrgaNet GmbH
- Stefan Lang
- operator&organet.com
-7924
- Bundesamt fuer Sicherheit in der Informationstechnik
- Michael Thiel
- Michael.Thiel&bsi.bund.de
-7925
- SPECS GmbH Surface Analysis and Computer Technology
- Bernhard Otto
- otto&specs.de
-7926
- University of Antwerp
- Wim Holemans
- wim.holemans&ua.ac.be
-7927
- Splendid Internet GmbH
- Jens Kintrup
- jkintrup&splendid.de
-7928
- Wysdom Inc.
- Steven Chen
- schen&wysdom.com
-7929
- HBOS plc
- Paul Mayes
- PaulMayes&hbosplc.com
-7930
- Telecom Argentina
- Claudio Lapidus
- clapidus&ta.telecom.com.ar
-7931
- SMCC
- S. Maloney / M
- DBA&Tampabay.rr.com
-7932
- AmeriNet, Incorporated
- H. Hammond
- DBA&Debit-It.com
-7933
- Promise Technology Inc.
- Ram Natarajan
- ramn&promise.com
-7934
- Shanghai JiaoTong University
- Shanghai JiaoTong University
- zhenyuw&263.net
-7935
- IVT
- Michael Roberts
- miroberts&ivtweb.com
-7936
- YANGJAE MICRO
- YoungSam-Yu
- young&yjmicro.co.kr
-7937
- inPACT technologies
- Peter Mee
- peter&inpact-tech.co.uk
-7938
- IEE
- Charles Lopes
- Charles.Lopes&iee.lu
-7939
- Liscon GmbH
- Gerhard Schaden
- ges&liscon.com
-7940
- Celeritas
- Kenny Krupnik
- kenny&celeritas.co.il
-7941
- Tecnica 6000 S.L.
- Luis Moral
- t6000&t6000.es
-7942
- Xtempus
- Steve Woodcock
- steve.woodcock&xtempus.com
-7943
- Home Wireless Networks, Inc.
- Dan Wilding
- dwilding&homewireless.com
-7944
- PennyLan
- Jean-Christophe DROUET
- jc.drouet&pennylan.com
-7945
- UMB Bank, n.a.
- Dan Darrow
- daniel.darrow&umb.com
-7946
- FlashPoint Technology, Inc.
- Jan Pope
- pope&flashpoint.com
-7947
- MSP Technolgies
- Zaki Alam
- zaki&mspt.com
-7948
- DASIR ENTERPRISES
- GEORGE STEINBERG
- georgepq&email.com
-7949
- Broadcloud Communications, Inc.
- Jim Chou
- jchou&broadcloud.com
-7950
- Overture Networks
- Prayson Pate
- prayson.pate&overturenetworks.com
-7951
- CNCTC
- Liu GuoBiao
- wwwlgb&163.net
-7952
- Too Corporation
- Kenji Kusaka
- kusaka&too.co.jp
-7953
- Majitek
- Andrew Birch
- administrator&majitek.com
-7954
- Siemens Business Services AS
- Kaare Smith
- kaare.smith&sbs.siemens.no
-7955
- Alfaskop AB
- Andreas Stenmark
- andreas.stenmark&alfaskop.se
-7956
- Initio IT-løsninger AS
- Øyvind Møll
- oyvindmo&initio.no
-7957
- Lares Technology
- Gregory Holt
- greg&lares.com
-7958
- Efficient Channel Coding, Inc.
- Jim Kapcio
- jkapcio&eccincorp.com
-7959
- Gabriel Roman
- Gabriel Roman
- gabrielroman2000&yahoo.com
-7960
- FreeRein
- John Chu
- JohnChu&FreeRein.com
-7961
- Harry L. Styron, Attorney at Law
- Harry L. Styron
- hlstyron&wcrklaw.com
-7962
- Not Another Corporation, Inc.
- Norman J. Harman Jr.
- njharman&knoggin.com
-7963
- Tebie
- Qingfeng Pan
- checksum&tebie.com
-7964
- Master Comunicacao e Marketing Ltda. Cass
- Surek
- cass&master.com.br
-7965
- Ingenieurbuero Tartsch
- Michael Tartsch
- oid-reg&vamos.de
-7966
- SPY internetworking
- Dustin Sallings
- dustin+iana&spy.net
-7967
- serveroperator.com (formerly 'Tekbabble')
- Adam Burford
- iana&serveroperator.com
-7968
- Spearhead Technologies Ltd.
- Boaz Greenberg
- boaz&spearhead.net
-7969
- BeComm
- Brady Montz
- bradym&becomm.com
-7970
- Athelon Corporation
- Aris Athens
- aris.iana&athelon.com
-7971
- Tølveguten Lars Bahner
- Lars Bahner
- lars&bahner.com
-7972
- XingTang Communication Technology Co.,Ltd.
- Qiuyun Li
- liqiuyun&sina.com
-7973
- TELEFONICA DE ESPAÑA
- Juan Carlos Galiana Zaragoza
- juancarlos.galianazaragoza&telefonica.es
-7974
- TURBOMECA
- Jean-Paul Benninger
- administrateur.messagerie&turbomeca.fr
-7975
- Ark e-Management Ltd.
- Martin Stephen Pegler
- mpegler&ark-online.net
-7976
- Brotsman & Dreger, Inc.
- Edward Dreger
- eddy_iana_spam&brotsman.com
-7977
- VidSoft GmbH
- Sascha Kuemmel
- kuemmel&vidsoft.de
-7978
- France Telecom Hosting
- Jean-Paul Poiret
- JeanPaul.Poiret&fth.net
-7979
- Storigen Systems
- Paul John Biciunas
- paul.biciunas&storigen.com
-7980
- Sistemas y Aplicaciones de Telecomunicaciones S.A.Jose Luis
- Jose Luis Marques Bosch
- jlmarques&satelsa.com
-7981
- Interbind
- Dan Rosner
- drosner&interbind.com
-7982
- The Simon Shapiro Foundation
- Simon Shapiro
- shimon&simon-shapiro.com
-7983
- HPEB (Health technology Planning & Evaluation Board)
- Ae Kyung Kwon
- help&hpeb.re.kr
-7984
- Ticket Master/CitySearch Corp.
- Eric Rickerson
- eric&citysearch.com
-7985
- University of Catania
- Dr. Enrico Commis
- Enrico.Commis&unict.it
-7986
- ip.access
- Neil Piercy
- Neil.Piercy&ipaccess.com
-7987
- Universite de Pau et des Pays de l'Adour
- Michel Beheregaray
- michel.beheregaray&univ-pau.fr
-7988
- Université Nancy 2
- Vincent Mathieu
- reseau&univ-nancy2.fr
-7989
- IMAG
- Pierre Laforgue
- Pierre.Laforgue&imag.fr
-7990
- EOI Technologies, Inc.
- Sean Patrick Daly
- dalys&eoitech.com
-7991
- eLaw.com Inc
- Jeffrey T. Jones
- jjones&elaw.com
-7992
- PRFD
- Riccardo Rosso
- prfd&libero.it
-7993
- Factorit S.p.A
- Maurizio Biletta
- maurizio.biletta&factorit.it
-7994
- Continuous Computing Corp.
- Robert Cagle
- rcagle&ccpu.com
-7995
- Snell & Wilcox Ltd
- Sandy Kellagher
- snmp.support&snellwilcox.com
-7996
- Electric Power Research Institute(EPRI)
- James T. L. Kou
- Jameskou&yahoo.com
-7997
- Ball Corporation
- Curt Hastings
- chastings&ball.com
-7998
- MailFriday
- Mona He
- mhe&inxight.com
-7999
- TP Internet
- Pawel Terczynski
- pawel.terczynski&tpi.pl
-8000
- Ipace Inc.
- Alex Lee
- alex&ipace.com
-8001
- Qitek
- Paul Yang
- paul&qitek.com.tw
-8002
- Metamerge AS
- Bjørn Stadheim
- bjorn&metamerge.com
-8003
- Swisscom IP-Plus
- Daniel Matuschek
- daniel&ip-plus.net
-8004
- MID GmbH
- Michael Buchau
- m.buchau&mid.de
-8005
- Physics Department, Queen Mary, University of London
- Alex Martin
- a.j.martin&qmw.ac.uk
-8006
- EINSTEINet GmbH
- Dierk Lucyga
- dierk.lucyga&einsteinet.de
-8007
- threllis GmbH
- Tobias Hintze
- KYoznqfGDZv5I&threllis.de
-8008
- Pactolus Communication Software, Inc.
- Jeff Gibson
- jgibson&pactolus.com
-8009
- iSecuritas
- Mark West
- markw&iSecuritas.com
-8010
- ExaNet
- Anat Eyal
- anat&exanet-storage.com
-8011
- McKee Foods Corporation
- Charles Leeds
- charles_leeds&mckee.com
-8012
- Hyperdrive Sistemas Ltda
- Mateus Cordeiro Inssa
- mateus&hyperdrive.com.br
-8013
- Nextlevel.com Internet Productions Inc.
- System Administrator
- admin&nextlevel.com
-8014
- Stonefly Networks, Inc.
- Kyle Woodward
- kwoodward&stoneflynetworks.com
-8015
- Airocon
- George Shung
- gshung&ultranet.com
-8016
- Ravensbourne College of Design & Communication
- Miles Metcalfe
- m.metcalfe&rave.ac.uk
-8017
- Primus Canada
- Joe Hohertz
- jhohertz&primus.ca
-8018
- Hogeschool van Arnhem en Nijmegen
- Jeroen Langestraat
- J.Langestraat&han.nl
-8019
- The Stellar Ice Company
- Sean C. McLaughlin
- seanm&intersurf.com
-8020
- Ecole Normale Supérieure de Lyon
- Jean-Louis Moisy
- Jean-Louis.Moisy&ens-lyon.fr
-8021
- G. A. Enterprises
- Jim Bradbury
- jim&bradbury.org
-8022
- Senets Broadband, Inc.
- Kevin McCarthy
- kmccarthy&senets.com
-8023
- InfoCruiser Inc.
- Chris Bringard
- chris&infocruiser.com
-8024
- QuoVadis Limited
- Walter Cooke
- wcooke&quovadis.bm
-8025
- Friendlyworks
- Doug Lee
- dlee&friendlyworks.com
-8026
- Rockbrook Systems Group
- Doug Lee
- dlee&rockbrook.com
-8027
- binHOST.com, Inc.
- Justin B. Newman
- justin.newman&binhost.com
-8028
- cast
- Ma Shengcun
- msc72&263.net
-8029
- DCTC
- feifei
- ffei928&mail1.sjtu.edu.cn
-8030
- Prakash Cotton Mills Ltd.
- Rohit Jalan
- rohitj&prakashcotton.com
-8031
- University Library of Kassel, Germany
- Michael Plate
- plate&hrz.uni-kassel.de
-8032
- Agenda d.o.o.
- Matjaz Godec
- gody&agenda.si
-8033
- Almende
- Kees Klop
- kees&almende.com
-8034
- Rohill Technologies B.V.
- Bert Bouwers
- e.bouwers&rohill.nl
-8035
- RY Enterprises
- ryasuda&yahoo.com
- ryasuda&yahoo.com
-8036
- USA.NET
- Jens Moller
- Jens.Moller&corp.usa.net
-8037
- COLOMAR Group, Inc
- Scott Guthrie
- scott&colomar.com
-8038
- HomeBase Work Solutions
- Joy Smathers
- jsmathers&infocast-corp.com
-8039
- silly-ants
- Wang Qiang
- wq_john&email.com
-8040
- Thunder Systems, Inc.
- Ray Leblond
- rayl&thundersystems.com
-8041
- Hostway Corporation
- Jim Cusick
- jim&hostway.com
-8042
- eCELL Technologies, Inc.
- Michael S. Cohen
- mscohen&bellatlantic.net
-8043
- ProActiveMonitoring, Inc.
- Billy Ray Wilson
- brwilson&mindspring.com
-8044
- M.J. DuChene & Associates
- Mike DuChene
- mduchene&mjduchene.net
-8045
- Glen Lewis
- Glen Lewis
- glen&glenlewis.com
-8046
- Utah Java User Group
- Glen Lewis
- glen&utahjava.org
-8047
- OSEDU
- Glen Lewis
- glen&osedu.org
-8048
- Avatar Internet Services
- Chris Darrow
- cdarrow&avatar-isp.com
-8049
- NetAccess, Inc.
- Ryan Tucker
- rtucker&netacc.net
-8050
- RISS-Telecom
- Dmitry Frolov
- frolov&riss-telecom.ru
-8051
- Michael McCafferty
- Michael McCafferty
- mikemcc&silver.he.net
-8052
- TesserNet Systems Inc.
- Ray Fong
- ray&tessernet.com
-8053
- Islington ave.
- Islington ave.
- isln-ave&catnet.ne.jp
-8054
- The Scan Shop Pty. Ltd.
- Daniel Morriss
- dmorriss&projectx.com.au
-8055
- Optilink Technologies Company Limited
- Liu Ying
- liuying_vienal&yahoo.com
-8056
- SHENYANG NEU-ALPINE SOFTWARE CO.,LTD.
- Shi Lei
- shil&neu-alpine.com
-8057
- CESNET
- CESNET masters team
- masters&cesnet.cz
-8058
- MessageVine
- Yair Halevi
- spock&messagevine.com
-8059
- Net To Net Technologies
- Ronald Fotino
- rfotino&nettonettech.com
-8060
- Armstrong Atlantic State University
- Thomas Eason
- iana-contact&armstrong.edu
-8061
- Multipoint Communications Ltd
- John Kennett
- john.kennett&multipoint.co.uk
-8062
- ColorMax Interactive
- Derek O'Dell
- director&colormaxinteractive.com
-8063
- M@innet Communication Ltd.
- Rami Refaeli
- rami&mainnet.co.il
-8064
- Global Technology Solutions
- Walt Greenberg
- wgreenberg&gtsinc.net
-8065
- Uni-Ter Underwriting Management Corporation
- John Robinson
- jrobinson&uni-ter.com
-8066
- WatchMark Corporation
- Sharon Borough
- sharon.borough&watchmark.com
-8067
- MCI
- Jim Potter
- jim.potter&mci.com
-8068
- Buffalo Rock Company
- David Mackay
- dmackay&buffalorock.com
-8069
- Rozz Enterprises
- Hostmaster&Rozz.com
- Hostmaster&Rozz.com
-8070
- ZeroHype Technologies, Inc.
- Don Papp
- donp&zerohype.com
-8071
- Sandstorm Enterprises, Inc.
- Enterprise MIB Administrator
- enterprise-mib-admin&sandstorm.net
-8072
- net-snmp
- Wes Hardaker
- hardaker&users.sourceforge.net
-8073
- Lumos Technologies Inc
- Arun Nair
- arun&lumos.com
-8074
- Box Solutions Corporation
- Erik Reid
- erik&box-sol.com
-8075
- Lateral Concepts and Designs
- Darren Hitchman
- dhitchman&lcd.com.au
-8076
- Siemens PSE Austria
- Markus Öllinger
- markus.oellinger&siemens.at
-8077
- ChamberSign France
- Pierre-Yves Nicholas
- pierre-yves.nicolas&chambersign.tm.fr
-8078
- INU Consultancy
- Karl Lovink
- karl&inu.nl
-8079
- ensoport.com
- Kevin Hildebrand
- kevin&hq.ensoport.com
-8080
- Fastweb S.p.A.
- Antonio Carlini
- antonio.carlini&fastweb.it
-8081
- Magnum Solutions Ltd
- Dave Cross
- dave&mag-sol.com
-8082
- SEPATON, Inc.
- Miklos Sandorfi
- msandorfi&sepaton.com
-8083
- Packet Design
- Kim Dimick
- dimick&packetdesign.com
-8084
- tangali.eu.org
- A.J. Tangali
- ajtangali&yahoo.com
-8085
- IronStream Inc
- Paul Koning
- pkoning&ironstream.com
-8086
- NUASIS Corporation
- Dan Rich
- dan.rich&nuasis.com
-8087
- TierNext
- Glen Lewis
- glen@tiernext©com
-8088
- DCSI
- Jim Rowan
- jmr&computing.com
-8089
- Covad Communications
- Geoffrey Parsons
- geoffrey.parsons&bluestar.net
-8090
- Enterprise Computing Services
- Daniel Watkins
- daniel&ecs-trade.com
-8091
- IP Soft, Inc.
- Bill Russell
- Bill.Russell&IP-Soft.NET
-8092
- Elgo Maribor d.o.o.
- Matjaz Godec
- matjaz.godec&elgo.si
-8093
- Aliroo Ltd.
- Ram Cohen
- ram&aliroo.com
-8094
- DreamArts Corp.
- Kensuke Ishida
- kensuke&dreamarts.co.jp
-8095
- INELCOM Ingeniería Electrónica Comercial S.A
- Juan José García
- jjgarcia&inelcom.com
-8096
- The Voice Technology Forum
- Sanjyot Bharathan
- theweb&india.com
-8097
- Servicom 2000, S. L.
- Scott Prater
- scott.prater&servicom2000.com
-8098
- Morat Games Ltd
- Mark Cheverton
- ennui&morat.net
-8099
- Alex Wilson Coldstream Ltd
- Anil Amarakoon
- awcl&awcoldstream.com
-8100
- Softricity, Inc.
- Shane Marshall
- smarshall&softricity.com
-8101
- Zambeel, Inc.
- Gaurang Mehta
- gaurang&zambeel.com
-8102
- Mark Morgan Enterprises
- Mark Morgan
- markimorgan65&hotmail.com
-8103
- Winstechnet Co.,Ltd
- Mi-boon Hyeon
- clarinse&hanmail.net
-8104
- Sun Microsystems Professional Services
- Peter Charpentier
- Peter.Charpentier&sweden.sun.com
-8105
- Appilog
- Muli Assa
- muli.assa&appilog.com
-8106
- LUXMATE Controls GmbH
- Georg Künz
- kuenzge&luxmate.co.at
-8107
- Kabira
- Eric Tamke
- tamke&kabira.com
-8108
- VHI
- John Murphy
- john.murphy&vhi.ie
-8109
- Price Express
- Lelik P. Korchagin
- lelik&price.ru
-8110
- Message Central plc.
- James Royan
- james.royan&msgc.com
-8111
- Pacific Trade & Technology
- Jeffrey G Johnson
- jeffj&pactrade-tech.com
-8112
- Green Shield Canada
- David Drouillard
- ddrouill&greenshield.ca
-8113
- Bellanet International Secretariat
- Kevin McCann
- kmccann&bellanet.org
-8114
- Naval Operational Logisitics Support Center
- Raymond Reyes
- raymond.c.reyes.ctr&navy.mil
-8115
- Birch Telecom
- Randy Dickinson
- trance&birch.net
-8116
- Danware Data A/S
- Thomas Eskesen
- te&danware.dk
-8117
- NAFEM (North American Association of Food Equipment Manufacturers)
- Dave Vuicich
- dvuicich&crescor.com
-8118
- Capitol Systems Corporation
- Dean Corn
- deanc&capitolsystems.com
-8119
- Mission Valley Regional Occupational Program David
- David Powell
- dpowell&mvrop.org
-8120
- Transvirtual Technologies, Inc.
- Mark Garey
- mark&transvirtual.com
-8121
- Ridgeway Systems & Software Ltd.
- Jonathan Black
- jblack&ridgeway-sys.com
-8122
- KB Impuls Service GmbH
- Alexander Efimov
- admin&data.com.ru
-8123
- Kompetenznetz Maligne Lymphome
- Dr. Barbara Heller
- barbara.heller&imise.uni-leipzig.de
-8124
- Carrefour
- Samuel Piau
- samuel_piau&carrefour.com
-8125
- Internet Services
- Szymon Kosmala
- hostmaster&is.com.pl
-8126
- My Docs Online, Inc
- David Motes
- david&mydocsonline.com
-8127
- Effinity Labs
- Mike Heath
- heathm&effinitylabs.com
-8128
- Boco
- Jiao Li
- lij&boco.com.cn
-8129
- JadeBird HuaGuang Ltd Co.
- Zhao Xuegang
- zhao.one&yeah.net
-8130
- Heimann Biometric Systems GmbH
- Ralph Lessmann
- r.lessmann&hbs-jena.com
-8131
- Glory Telecom. Co.,Ltd.
- Chen-Po-An
- mis&glorytel.com.tw
-8132
- Nasik Welding Products Pvt.Ltd
- (no contact name)
- sheetaljagota&yahoo.com
-8133
- FSSC-London
- Martin Croker
- martin.croker&accenture.com
-8134
- Insitel
- Juan Carlos Reyes
- jcreyes&insitel.com.co
-8135
- Andong National University
- Young-Wook Cha
- ywcha&andong.ac.kr
-8136
- Centrul de Pregatire in Informatica
- Florin Izvoranu
- florin&cpi.ro
-8137
- Palisade Systems
- Rose Gorrell
- gorrellr&palisadesys.com
-8138
- De Roeck Software Engineering BVBA
- Nick De Roeck
- de.roeck.software&skynet.be
-8139
- Aaxion Software Corporation
- Timothy Stout
- stout&aaxion.com
-8140
- C2 Technologies, Inc.
- Christopher Broyles
- broyles&c2-tech.com
-8141
- Kashpureff Boling Laboratories, Inc.
- Eugene Kashpureff
- ekashp&kblabs.com
-8142
- HCA The Healthcare Company
- Jason A. Barnett
- jason.barnett&hcahealthcare.com
-8143
- ICTV
- Ellen Fratzke
- efratzke&ictv.com
-8144
- Fiberxon (China) Corp., Ltd
- Tony Xu/ Tina Zhou
- tony.xu&fiberxon.com /tina.zhou&fiberxon.com
-8145
- University of Salzburg
- Andreas Maier
- andi&cosy.sbg.ac.at
-8146
- Snakegully
- Darryl Luff
- darryll&snakegully.nu
-8147
- Mercury Telecommunications
- Matt Camp
- mcamp&quicksilver.co.nz
-8148
- Niragongo Technologies Ltd.
- Roy Amir
- roya&niragongo.com
-8149
- Generalitat Valenciana
- Joaquin Galeano
- galeano_joa&gva.es
-8150
- SECARON AG
- Michael Spreng
- spreng&secaron.de
-8151
- Worldweb.net
- Duane Dinschel
- ddinschel&worldweb.net
-8152
- Visto Corporation
- Jennifer Yiu
- jyiu&visto.com
-8153
- jGuild Internation ltd
- Yannick Menager
- ymenager&jguild.com
-8154
- Riser Management Systems
- Mike Kelly
- mkelly&riser.com
-8155
- Transcept, Inc.
- Karl T. Cooper
- kcooper&transcept.com
-8156
- AgencyWorks
- Hongwei Zhang
- hongwei.zhang&agencyworks.com
-8157
- SynCom Network, Inc.
- Wei-Lee Chen
- wlc&mail.syncom.com.tw
-8158
- MSP-LUB
- Lubomir Jancovic
- JncvcL&aol.com
-8159
- SHIN SATELLITE PUBLIC COMPANY LIMITED. Pho
- Zanaka
- phoz&thaicom.net
-8160
- Digital Platform Support Services
- Arthur Tew
- atew&mweb.co.za
-8161
- Star Home GMBH
- Danny Parchack
- danny_parchack&starhome.com
-8162
- DEXIA
- Patrick De Winne
- patrick.dewinne&dexia.be
-8163
- Double D Electronics Ltd
- S. Davies
- shd&ddelec.co.uk
-8164
- Starent Networks
- Daniel Walton
- dwalton&starentnetworks.com
-8165
- boutemy.com
- Yves Boutemy
- yves&boutemy.com
-8166
- Viag Interkom
- Joerg Herrmann
- joerg.herrmann&viaginterkom.de
-8167
- Transversal
- Richard Watts
- rrw&transversal.com
-8168
- Nectar.com
- Jacques A. Vidrine
- n&nectar.com
-8169
- Carroll Lutheran Village
- Christopher A. Seward Sr.
- cseward&clvillage.org
-8170
- Monitor Group
- Paul Kiely
- pkiely&monitor.com
-8171
- Oni Solutions
- Ricardo Sousa
- lan&meganet.pt
-8172
- Johns Hopkins University, MSEL-LCS
- Elliot Metsger
- emetsger&jhu.edu
-8173
- INDRA Sistemas
- A. Chazarra
- achazarra&indra.es
-8174
- Netburner
- Paul Breed
- Paul&Netburner.com
-8175
- Carrier9 Networks
- Sukanta Ganguly
- sganguly&carrier9.com
-8176
- AstroDesign,Inc.
- Toshiaki Ogawa
- togawa&astrodesign.co.jp
-8177
- HCL Communications
- Clive Taylor
- clive&snmp.co.uk
-8178
- Just Innovative Software GmbH
- Martin Eigel
- eigel&justis.de
-8179
- Communications Laboratories Telekommunikations Dienstleistungs-Ges.m.b.H.
- Bodo Rüskamp
- bodo.rueskamp&communications-laboratories.com
-8180
- Spirea
- Kim Laraqui
- kim&spirea.com
-8181
- Commarco GmbH (formerly 'Scholz & Friends Dresden GmbH')
- Matthias Peplow
- matthias.peplow&s-f.com
-8182
- The Boston Bit Co
- Matthew McNeely
- matthew&bostonbit.com
-8183
- NetSource America Inc.
- Jeff Konz
- jkonz&netsourceamerica.com
-8184
- Inspira S.L.
- Jose Lopez-Serrano
- jlopez&inspira.es
-8185
- Online Creation, Inc.
- Monica Gupta
- monica&oncr.com
-8186
- California Institute of Technology
- Robert Logan
- bob&its.caltech.edu
-8187
- Sharinga Networks Inc.
- Pete Yandell
- pete&sharinga.com
-8188
- AXA Technology Services Switzerland AG (formerly 'Winterthur Versicherungen')
- Thomas Burri
- wana.admin&axa.ch
-8189
- Gerichhausen, Adomeit & Terstappen GmbH
- Christoph Adomeit
- ado&niederrhein.de
-8190
- 3M Deutschland GmbH (formerly 'Quante')
- Lars Schrix
- lschrix&mmm.com
-8191
- glutam.at
- Rupert Roesler-Schmidt
- rupee&glutam.at
-8192
- Symbiont Networks, Inc.
- Andrew Scholnick
- AScholnick&symbiontnetworks.com
-8193
- Telemetry Technologies
- David Taylor
- dtaylor&telemetrytech.net
-8194
- Targetnet.com Inc.
- James FitzGibbon
- james&targetnet.com
-8195
- Effinity Net, LC
- Mike Heath
- heathm&effinitylabs.com
-8196
- Teldar Corporation
- Kevin Musick
- kmusick&teldar.com
-8197
- LearningSoft Corp.
- Sunil Gupta
- sg&learningsoft.net
-8198
- eBuilt, Inc.
- Bill Pier
- ops&ebuilt.com
-8199
- Instituto Tecnológico Autónomo de México
- Cristian Martínez
- cfuga&itam.mx
-8200
- UNNATI COMPUTERS
- Vikas S. Bhagwat
- unncomp&bol.net
-8201
- XCelaron Pty Ltd
- Chris Avis
- chris&xcelaron.com
-8202
- Toro Assicurazioni S.p.A.
- Franco Lanfranco / Enrico Soetta
- f.lanfranco&toroassicurazioni.it / e.soetta&toroassicurazioni.it
-8203
- LPG Innovations
- Harri Mauria
- harri.mauria&lpg.fi
-8204
- Cymtec Systems, Inc.
- Michael Mester
- mmester&cymtec.com
-8205
- Unassigned
- Returned 4-30-03
- ---none---
-8206
- Centro Regional de Investigaciones Basicas y Aplicadas de Bahia-Blanca
- Carlos Matrangolo
- symatran&criba.edu.ar
-8207
- Integratus, Inc.
- Kevin M. O'Leary
- oleary&integratus.com
-8208
- Best Western International
- Amy Petersen
- petersa&bestwestern.com
-8209
- Informio
- Duncan Fisher
- dfisher&informio.com
-8210
- Centegy
- Pearl Parker
- pearl_parker&centegy.com
-8211
- ShenZhen TCL Communication Technology Co.,Ltd.
- Anyin Zhu
- zhuanna&263.net or zhuanna&163.net
-8212
- Harbour Networks Co.
- Li Yinan
- lijg&harbournetworks.com
-8213
- Faculty of Medicine, University of Sydney
- Chris Albone
- yvain&gmp.usyd.edu.au
-8214
- Atomica
- Nachman Palanker
- nachmanp&atomica.com
-8215
- Authentified
- Henry Jean-luc
- jlhenry&IDEALX.com
-8216
- Cyzen Tech.,Co.LTD
- Sang-Hyun Kim
- kimppong&cyzen.net
-8217
- SLAonline.com Ltd
- Cliff Chapman
- c.chapman&slaonline.com
-8218
- EC - Erdoelchemie GmbH
- T. Haeger
- thomas.haeger&innovene.com
-8219
- Ecomda
- Joachim Gjesdal
- joachim.gjesdal&ecomda.com
-8220
- TCL Holdings Co., Ltd.
- Yang Xuchun
- yxuchun&sina.com
-8221
- BAE SYSTEMS, Integrated Defense Solutions
- Mike McNair
- michael.mcnair&baesystems.com
-8222
- Matthew White
- Matthew White
- mwhite42&yahoo.com
-8223
- Atlas Commerce
- Kevin Reester
- reester.kevin&atlascommerce.com
-8224
- LeasedMinds
- Graham Wooden
- graham&leasedminds.com
-8225
- Open Connect AG
- Romeo Benzoni
- rob&opencon.ch
-8226
- GigaNews.com, Inc.
- Michael Douglass
- mikedoug&giganews.com
-8227
- CyberObject Corp
- Edward Ma
- mjp&cyberobject.com
-8228
- Jalan Network Services, Inc.
- Matthew Marlowe
- ops&jalan.com
-8229
- Phil Systems
- Padmaja
- pmudras&phil.com.sg
-8230
- RING! ROSA Products Bv
- Francis Butet
- fgbutet&ringrosa.com
-8231
- Lineo
- Hugo Delchini
- Hugo.Delchini&lineo.com
-8232
- Fachhochschule Giessen-Friedberg
- Burkhard Gerlach
- Burkhard.Gerlach&mni.fh-giessen.de
-8233
- iBasis, Inc.
- Rick Genter
- rgenter&ibasis.net
-8234
- ECET International
- Mike Gilbert
- mike.gilbert&ecet.com
-8235
- CENIT AG Systemhaus
- Mathias Faas
- m.faas&cenit.de
-8236
- White Horse Interactive
- Pae Choi
- paec&whitehorse.com
-8237
- NCC GmbH
- Gerd Magerhans
- gm&ncc-gmbh.de
-8238
- Lutheran Brotherhood
- Michael Nadzieja
- nadzieja.mike&luthbro.com
-8239
- Peribit Networks
- Thiagarajan Hariharan
- hariharan&pobox.com
-8240
- Path 1
- Ben Leong
- bleong&path1.net
-8241
- Securant Technologies
- Steven Bazyl
- sbazyl&securant.com
-8242
- Security Portal, Inc
- Matt Fisher
- mfisher&securityportal.com
-8243
- iPass, Inc.
- Jim Underwood
- junderwo&ipass.com
-8244
- Brocade Communications Systems, Inc. (formerly 'McDATA Corp.')
- Scott Kipp
- skipp&brocade.com
-8245
- Vsovt Ltd.
- Eyal Sayag
- eyals&vsoft.com
-8246
- Cistron Internet Services
- Michel Onstein
- beheer&cistron.nl
-8247
- University of Rostock
- Jörg Zerbe
- joerg.zerbe&rz.uni-rostock.de
-8248
- Turin Networks Inc
- Glen Baker
- gbaker&turinnetworks.com
-8249
- Verein für Computergenealogie e.V.
- Jesper Zedlitz
- compgen&genealogy.net
-8250
- Shire.Net LLC
- Chad Leigh
- chad&shire.net
-8251
- IIGA Co.,Ltd.
- Kentaro Fujinuma
- fuji&ask.iiga.co.jp
-8252
- Digital Strategies, Inc.
- Tom Strickland
- tstrick&digitalstrategies.com
-8253
- AWOLart.com
- Art Vossberg
- art&AWOLart.com
-8254
- Aleph-Null, Inc.
- Matthew Butcher
- mbutcher1&qwest.net
-8255
- Tejas Networks
- Kumar SivaRajan
- kumar&tejasnetworks.com
-8256
- Solution - The Computer People eK
- Andreas Lindenblatt
- azrael&solution.de
-8257
- Southern Ural State University
- Anton Voronin
- anton&urc.ac.ru
-8258
- kuk-Systemprogrammierung
- Kay Kaul
- kuk&kuk.net
-8259
- Banco de Sabadell, S.A.
- Pol Navarro
- navarrop&bancsabadell.com
-8260
- Intrexa Corp
- Richard Palmer
- richard.palmer&intrexa.com
-8261
- MediaCast
- Franck Gaubert
- franck.gaubert&mediacast.tv
-8262
- Wavion
- Yuval Shoham
- yuval&wavion.com
-8263
- Jamby BV
- Taco Kampstra
- taco&jamby.net
-8264
- Recreativos Franco, S.A.
- María José Gallardo Herreros
- mjose&rfranco.com
-8265
- Entrada Networks, Inc.
- Russell Forte
- rforte&entradanet.com
-8266
- Intelnet S.A.
- David Beamonte
- dsarasa&intelnet.es
-8267
- Arula Systems
- Prasanna Nageswar
- prasanna&arula.com
-8268
- Mark Tippetts
- Mark Tippetts
- bishop&kalima.org
-8269
- CJSC Malva
- Andrey Fisunenko
- contacts&malva.com.ua
-8270
- MJL Technology
- Oh-Kyu Kwon
- okkwon&mjl.com
-8271
- Fachhochschule Vorarlberg
- Egon Niederacher
- niederacher&fh-vorarlberg.ac.at
-8272
- Nameplanet Ltd.
- Ketil Froyn
- ketil&froyn.com
-8273
- Standard Communications
- Tim Brewer
- SoftEng&stdcom.com
-8274
- Interadnet
- Sean Michaels
- smichaels&interadnet.com
-8275
- INSA Toulouse
- Jean-Marie Kubek
- kubek&insa-tlse.fr
-8276
- Mpathix
- Branko Zatezalo
- bzatezalo&mpathix.com
-8277
- PSC-ITSolutions.NET
- Teuwanda Parker
- Teuwanda&hotmail.com
-8278
- St. Elisabeth GmbH
- Wolfgang Barth
- W.Barth&st-elisabeth.de
-8279
- f3pu5.net
- David P Thomas
- dave&outlook.net
-8280
- Fiver LightCom Co., Ltd.
- Scott Hsieh
- scott&FiverLightCom.com.tw
-8281
- Movelife
- Qi Wang
- myshadow&263.net
-8282
- BAE Systems Defence Pty Ltd (formerly 'Tenix Defence Systems - Systems Adelaide')
- David Boschma
- au.ilsupport&baesystems.com
-8283
- TSMT - Magic Touch Ltd
- Markku Järvinen
- mta&magic.fi
-8284
- ACTL
- Crokaert Pierre
- pct&actl.be
-8285
- FlexLight
- Shiomon Caspi
- shimonc&flexlight-networks.com
-8286
- Incirco
- Anders Johansson
- anders.johansson&incirco.com
-8287
- Klinikum der Johannes Gutenberg-Universität Mainz
- EDV / Zentrale Netzwerkgruppe
- netz&netz.klinik.uni-mainz.de
-8288
- Jung von Matt Werbeagentur GmbH
- Stephan Budach
- stephan.budach&jvm.de
-8289
- Universita' degli Studi di Napoli "Federico II"
- Francesco Palmieri
- fpalmieri&unina.it
-8290
- Certus Technology, Inc.
- Jeff Kennedy
- jkennedy&certustech.com
-8291
- DigiStamp, Inc.
- Rick Borgers
- rick.borgers&digistamp.com
-8292
- Mt. Holyoke College
- Ron Peterson
- rpeterso&mtholyoke.edu
-8293
- Bang Networks, Inc.
- Chris Ranch
- cranch&bangnetworks.com
-8294
- infoman
- Brian Bortz
- brian&infoman.co.il
-8295
- BWA
- Willie Alayza
- Alayza&breezecom.com
-8296
- Dialogos3 s.r.l.
- Reinhard Spisser
- Reinhard.Spisser&dialogos3.com
-8297
- IrisOnLine.com BV
- Dhr A.Brussee
- a.brussee&irisonline.com
-8298
- v/h Nictoglobe
- Dhr ing. A.G.A.M.Jacobs
- andreas.jacobs&nictoglobe.com
-8299
- secunet Security Networks AG
- Joerg Marx
- joerg.marx&secunet.com
-8300
- State of Wisconsin - Security and Directory Services
- Tom Brei
- Tom.Brei&doa.state.wi.us
-8301
- Technische Universitaet Darmstadt
- Dr. J.Ohrnberger
- oid&hrz.tu-darmstadt.de
-8302
- EdeNET Communications, Inc.
- Steve Burke
- steveburke&edenet.com
-8303
- Gelco Information Network
- Ryan Rager
- ryan_rager&gelco.com
-8304
- Atomic Blue Bear
- Michael Lea
- mlea-iana&atomicbluebear.org
-8305
- OARnet
- Albert School
- aschool&oar.net
-8306
- Go Local Consulting, Inc.
- Igor Fedulov
- igor&outlook.net
-8307
- tecnetdev
- Kevin J. Lamse
- kevinl&pssg.com
-8308
- GTran Inc.
- Larry Gadallah
- larry&gtran.com
-8309
- Virtela Communications
- Jonathan Leech
- jleech&virtela.net
-8310
- Trak Systems
- Ashley Jeffs
- ashley&trak.com.au
-8311
- Police Information Technology Organization
- Simon Gray
- simon.gray&pito.pnn.police.uk
-8312
- OskolNET JSC
- Vladimir Krymov
- krymov&oskolnet.ru
-8313
- JARDiX AG
- Daniel Raedel
- dr&jardix.de
-8314
- AVL Emission Test Systems GmbH (formerly 'PEUS Systems GmbH')
- Michael Speck
- Michael.Speck&avl.com
-8315
- Minacom Labs Inc.
- Patrice Gagnon
- pgagnon&minacom.com
-8316
- Staffwell
- Oleg Levchenko
- oleg.levchenko&staffwell.com
-8317
- FiberCycle Networks
- Tom Milner
- tom&fibercycle.com
-8318
- Twisted Pair Solutions, Inc.
- Shaun Botha
- shaun.botha&twistpair.com
-8319
- Blue Wave Systems
- Brian Carr
- bcarr&bluews.com
-8320
- Vonova Corporation
- Michael Stricklin
- strickli&vonova.com
-8321
- Entidad Acreditadora Ley 19.799 - Gobierno de Chile
- Jaime Gré Zegers
- jgre&minecon.cl
-8322
- Education Networks of America
- Robert Francis
- rfrancis&ena.com
-8323
- Gemteq Software
- M. David Minnigerode
- minniger&gemteq.com
-8324
- The University of Western Australia
- Grahame Bowland
- grahame&ucs.uwa.edu.au
-8325
- Wanadoo Spain
- Carles Xavier Munyoz Baldó
- carles.munyoz&ctv-jet.com
-8326
- Unreal Technology spol. s r.o.
- Rostislav Opocensky
- orbis&unreal.cz
-8327
- IUFM Reims
- Mario Dragone
- Mario.Dragone&reims.iufm.fr
-8328
- GyD Iberica
- José Manuel López González
- jmanuel.lopez&es.gi-de.com
-8329
- iPromoGroup Ltd.
- Lubes Haidamaka
- lubes&ipromogroup.com
-8330
- Omnexus N.V., Amsterdam, Wädenswil Branch
- Thorne King
- thorne.king&omnexus.com
-8331
- Matti Valtuustoon
- Arto Mutanen
- arto&mattivaltuustoon.com
-8332
- université d'Evry Val d'Essonne
- Defrance Alain
- a.defrance&univ-evry.fr
-8333
- GROW.co,.Ltd
- Tsuyoshi Yoshizawa
- sales&e-0ffice.com
-8334
- dynamicsoft Inc.
- Srivatsa K Srinivasan
- ssrinivasan&dynamicsoft.com
-8335
- Université des Sciences Sociales de Toulouse
- Fabrice Prigent
- Fabrice.Prigent&univ-tlse1.fr
-8336
- Superior Consultant Holdings Corporation
- Carlo Gagliardi
- carlo_gagliardi&superiorconsultant.com
-8337
- Hybricon Corp.
- Gerry Cahill
- gcahill&hybricon.com
-8338
- Phonetics, Inc.
- Robert Douglass
- bdouglass&sensaphone.com
-8339
- Young & Laramore
- Ben Turney
- ben41&hotmail.com
-8340
- Image Computing Incorporated
- Gary J. Dobek
- dobekgj&erols.com
-8341
- Utility Data Systems, Inc.
- Charles Porter
- cporter&udsinc.com
-8342
- NTRU Cryptosystems
- Ari Singer
- asinger&ntru.com
-8343
- NEXTRA Czech Republic s.r.o.
- Andrew Zhilenko
- system&nextra.cz
-8344
- Apparate Networks
- Jeremy Greene
- jeremy&apparatenet.com
-8345
- Health Net, Inc.
- Ted Wilkinson
- ted.wilkinson&health.net
-8346
- Université de Limoges - S.C.I. - Laine Jean
- Pierre
- laine&unilim.fr
-8347
- TechnoCage, Inc
- Caskey Dickson
- caskey-iana&technocage.com
-8348
- Data Avenue, Inc.
- Manish Dharwadker
- manish&dataavenue.com
-8349
- ConnectScape, Inc.
- Manish Dharwadker
- manish&connectscape.com
-8350
- T-Systems Hungary Kft.
- Krisztian Steber
- Krisztian.Steber&t-systems.co.hu
-8351
- I-Land Internet Services
- Chris Kennedy
- ckennedy&iland.net
-8352
- Pronym S.A.R.L.
- M. Ornato
- ornato&pronym.com
-8353
- Excelsior Systems Limited
- Mr. P. J. Grice
- pjgrice&excelsys.co.uk
-8354
- GIB
- Mr. P. J. Grice
- pjgrice&glintbill.com
-8355
- sarfata's net
- Thomas Sarlandie
- sarfata&altern.org
-8356
- Visual Revolutions
- J. Arturo Avila Salazar.
- arturo&studiogdl.com
-8357
- Mangosoft Corporation
- Jim Plummer
- jimp&mangosoft.com
-8358
- TELOS Technology Inc.
- Steve Williams
- williams&telostech.com
-8359
- IP blue
- David Sullivan
- dsullivan&ipblue.com
-8360
- Mirant Corporation
- B. Madderra
- bob.madderra&mirant.com
-8361
- Portail des IUFM
- Kerherve Gweltaz
- kerherve&bretagne.iufm.fr
-8362
- mSAFE
- Rafi Kiel
- rkiel&msafe.com
-8363
- Store-O-Matic, Inc.
- Jose Antonio Esquivel
- aesquivel&store-o-matic.com
-8364
- Lichen Hosting
- Dan Mingus
- srf3&dana.ucc.nau.edu
-8365
- Advanced Information Management Solutions Pty Ltd
- Christopher Knight
- noc&aims.com.au
-8366
- Fiberlink Communications Corp
- Ryan Hope
- rhope&fiberlink.com
-8367
- NationNet.Com
- Joe Lesko
- admin&nationnet.com
-8368
- ServerWerks Inc
- Todd Glassey
- todd.glassey&serverwerks.cc
-8369
- NTIkorea
- William Kim
- ugie&postech.ac.kr
-8370
- NextSet
- SaiPrashanth Reddy
- sreddi&nextset.com
-8371
- AGENDA
- Hiroyuki Maruta
- maruta&agenda.co.jp
-8372
- University of Sussex
- Dave Lewney
- dml&sussex.ac.uk
-8373
- SEAL Systems AG & Co. KG
- Stefan Leipold
- snmpadmin&sealsystems.de
-8374
- DVZ Datenverarbeitungszentrum Mecklenburg-Vorpommern
- Arnold Külper
- a.kuelper&dvz-mv.de
-8375
- Outercurve Technologies
- Bill Whitney
- bwhitney&outercurve.com
-8376
- Université de Bourgogne
- Jean-Christophe Basaille
- Jean-Christophe.Basaille&u-bourgogne.fr
-8377
- ReefEdge, Inc.
- Bill Squier
- snmp&reefedge.com
-8378
- Texas Memory Systems
- Justin Haggard
- justin&texmemsys.com
-8379
- BroadRiver Communications
- Steven Dossett
- sdossett&broadriver.com
-8380
- Mentum Group
- Nick Mason
- nick.mason&mentumgroup.com
-8381
- Certainty Solutions, Inc.
- MIB Administrator
- mibadmin&certaintysolutions.com
-8382
- C&C Engineering, Inc.
- Chang-Shik, Choi
- tempest&mail.cc.co.kr
-8383
- SigmaSoft, Inc.
- Thorsten Lockert
- tholo&sigmasoft.com
-8384
- eBay, Inc.
- eBay Directory Services
- DirectoryServices&eBay.com
-8385
- ENSAM CER de Metz
- Régis Gresson
- regis.gresson&metz.ensam.fr
-8386
- LION bioscience AG
- Matthias Helmling
- matthias.helmling&lionbioscience.com
-8387
- Globe Internet s.r.o.
- Jiri Bramburek
- jiri.bramburek&globe.cz
-8388
- Techniker Krankenkasse
- Patrick Agsten
- p.agsten&tk-online.net
-8389
- Ergon Informatik
- Marc Buetikofer
- airlock-iana-contact&ergon.ch
-8390
- Mettler Toledo
- Jeff Griffith
- Jeff.Griffith&mt.com
-8391
- Bicman Netologies
- Bob Bicman
- BobBicman&consultant.com
-8392
- XMission
- Nathan Haugo
- nhaugo&xmission.com
-8393
- GIMAS mbH
- C. Hohn
- christian.hohn&topmail.de
-8394
- Privador AS
- Hardy Viilup
- hardy&privador.com
-8395
- Tulane University
- Tim Deeves
- tim&tulane.edu
-8396
- virtual earth Gesellschaft für Wissens re/prä sentation mbH
- Mathias Picker
- Mathias.Picker&virtual-earth.de
-8397
- Vecerina
- Ivan Vecerina
- ivec&mail.com
-8398
- University of West Florida
- David Hicks
- dhicks&uwf.edu
-8399
- iVEA Technologies
- Soukthavy Sopha
- ssopha&ivea.com
-8400
- Evercom Systems, Inc.
- Brian Waters
- bwaters&evercom.net
-8401
- FoxTravel
- Nik Fox
- foxres&btinternet.com
-8402
- ePlus, Inc.
- Jeff Yost
- jyost&eplus.com
-8403
- ARA Network Technologies, Co, Ltd.
- Yang, Chul-Woong
- cwyang&aratech.co.kr
-8404
- Akamba Corporation
- Jack Smith
- jack&akamba.com
-8405
- Tohono Consulting
- Thomas Hicks
- hickst&theriver.com
-8406
- Morningstar Systems, Inc.
- Mike Oliver
- mikeo&morningstarsystems.com
-8407
- MyBau.Com
- Niall Murray
- Niall.Murray&mybau.com
-8408
- InterComponentWare AG
- Thomas Kock
- thomas.kock&intercomponentware.com
-8409
- ztevision
- Ma Shengcun
- cast508&address.com
-8410
- Landis & Gyr Communications SAS
- Dominique Hérissé
- dominique.herisse&landis-gyr.com
-8411
- e-Qual
- Jerome Thebert
- jerome.thebert&e-qual.fr
-8412
- Satyam Computer Services ltd
- Sudarson
- sudarson_pratihar&satyam.com
-8413
- GlobalNaps
- Chip Ach
- chip&gnaps.com
-8414
- Cedacri S.p.A.
- Fendillo Giovanni
- giovanni.fendillo&cedacri.it
-8415
- CyberElan LLC
- Sanjeev Hirve
- shirve&cyberelan.com
-8416
- Shaw Cablesystems, G.P.
- Nancy Green
- internet.engineering&shaw.ca
-8417
- StorageApps, Inc.
- Jerry Keselman
- jerryk&storageapps.com
-8418
- listless ennui
- Karl Middlebrooks
- kdm&listlessennui.com
-8419
- Rockwell Collins
- Benjamin Haan
- Benjamin.Haan&rockwellcollins.com
-8420
- Digi-Sign Certification Services Limited
- Jennifer Chung
- jennifer.chung&dg-sign.com
-8421
- VODTEL COMMUNICATIONS Inc.
- Stanley Hsiao
- stanleyh&vodtel.com.tw
-8422
- Libritas, Inc
- Scott Kaplan
- scott&libritas.com
-8423
- twisd AG
- Klaus Reimer
- hostmaster&twisd.de
-8424
- ICUBE SRL
- Marco Bizzarri
- m.bizzarri&icube.it
-8425
- AP Engines, Inc.
- Jack Rourke
- jrourke&apengines.com
-8426
- Watlow
- Leon McNutt
- leon_mcnutt&watlow.com
-8427
- Worldgate Networks Private Limited
- Devdas Bhagat
- devdas&worldgatein.net
-8428
- Turtle Entertainment GmbH
- Bjoern Metzdorf
- bm&turtle-entertainment.de
-8429
- 2NETFX (Media Now, Inc.DBA 2NETFX)
- Joe Carter
- jcarter&2netfx.com
-8430
- TranSwitch Corporation
- Ely Zavin
- ely&txc.com
-8431
- Broadcasting Interest Enterprise, Inc.Christopher
- Adams
- president&networkingmenu.com
-8432
- TeraGlobal Communications
- Guy Cardwell
- gcardwell&teraglobal.com
-8433
- 3e Technologies International Inc.
- Gang Zheng
- zheng&3eti.com
-8434
- Fox Chase Cancer Center
- Stephen A. Felicetti
- sa_felicetti&fccc.edu
-8435
- HyperEdge Inc.
- Tom Fortmann
- tfortmann&hyperedge.com
-8436
- Requisite Technology
- IANA Administrator
- iana&requisite.com
-8437
- Bolder Internet Group, Inc.
- Robert J. Bubobn
- rjb&bigi.com
-8438
- ReFlex Communications, Inc.
- Eugene Wong
- eugene&reflexcomm.com
-8439
- CADRE Design
- Andrew Smith
- asmith&cadre.com.au
-8440
- Tsuda College
- Etsuko Suzuki
- suzuki&tsuda.ac.jp
-8441
- ShangHai WaiGaoQiao Free Trade Zone network development Co.,Ltd
- Yunbin Wu
- sunny&netway.net.cn
-8442
- Sendtek Corporation
- Wien Shao
- wien&sendtek.com.tw
-8443
- Telisma
- Gerard Musset
- gmusset&telisma.com
-8444
- IIE (Institut d'Informatique d'Entreprise)
- Jean-Luc Kors
- kors&iie.cnam.fr
-8445
- Bilstone Ltd
- Ian Steel
- ian&bilstone.co.uk
-8446
- Barclaycard
- Ian Steel
- ian.steel&barclaycard.co.uk
-8447
- Riverglade Consultants Ltd
- Julian Griffiths
- j_griffiths&geocities.com
-8448
- Avantis GmbH
- Ralf Shippert
- Ralf.Shippert&avantis.de
-8449
- ePUREDATA Inc.
- Charles Shong, Joseph Loh
- charless&puredata.com, josephl&puredata.com
-8450
- Cetacean Networks
- Gregory Lyons
- glyons&Cetacean.com
-8451
- Petri Laitinen
- Petri Laitinen
- Petri.Laitinen&pp3.inet.fi
-8452
- Guernsey.Net Ltd.
- Neil de Carteret
- ndc&guernsey.net
-8453
- npw.net
- Philipp Baer
- phbaer&npw.net
-8454
- Donald E Reynolds
- Donald E Reynolds
- donreynolds&usa.net
-8455
- Old Donkey Enterprises
- Robert Jordan
- rjordan&bozac.com
-8456
- OPTIBASE
- Amir Geva
- amirgeva&optibase.com
-8457
- Deepend Prague
- Jakub Skopal
- jakub&deepend.cz
-8458
- ZOOM Networks Inc.
- Mary.M
- mmrgood&sina.com
-8459
- Shandong WeiFang Beida JadeBird Inc.
- Liu Jiancheng
- liujc&xinhuanet.com
-8460
- University of Illinois at Chicago
- Jim O'Leary
- joleary&uic.edu
-8461
- UFO Solutions Limited
- Keith Wan
- keith.wan&ufoss.com
-8462
- Sonic.Net, Inc.
- Nathan Patrick
- np&sonic.net
-8463
- PEM Electronics
- Nathan Patrick
- np&sonic.net
-8464
- University of Wollongong IEEE Student Branch
- Matthew Palmer
- mjp16&ieee.uow.edu.au
-8465
- LodeSoft Corp.
- Zhihong Mao
- mao&lodesoft.com
-8466
- RAWK Systems, Inc.
- Dan Romike
- rawksystems&att.net
-8467
- La Page Trad
- Laurent Daverio
- daverio&cri.ensmp.fr
-8468
- American Medical Association
- Peter Watkins
- amair&ama-assn.org
-8469
- Domestic WANs
- Harald Born
- Harald.Born&domestic-wan.de
-8470
- Learning Machines, Inc.
- Ted Eiles
- ted.eiles&learningmachines.com
-8471
- Universidad Del Bio-Bio
- German Poo
- gpoo&ubiobio.cl
-8472
- Lynk a division of BOS Ltd
- Yehoram B.Y.
- yben&boscom.com
-8473
- University of Massachusetts Amherst
- Daniel Blanchard
- blanchard&oit.umass.edu
-8474
- Saltec Powerlink
- Salman Quadri
- info&saltec-powerlink.com
-8475
- Veilex
- Roberto Soto
- rsoto&veilex.com
-8476
- Kyuden Infocom Company, Inc.
- Osamu Kidou
- kidou&qic.co.jp
-8477
- CyberTron Software GmbH
- Heinrich A. Thurner
- h.thurner&cybertron.co.at
-8478
- TongTech CO., Ltd,
- ChenXu
- x_ch&263.net
-8479
- now.com
- Lam Ka Ming Benjamin
- Benjamin.KM.Lam&pccw.com
-8480
- Fairleigh Dickinson University
- Brian Domenick
- brian&fdu.edu
-8481
- HiGHKU
- Michael Elmore
- melmore&highku.com
-8482
- Colorado State University
- Randy Miotke
- Randy.Miotke&colostate.edu
-8483
- Trenza, Corp
- Kevin C. Coram
- kcc&trenza.com
-8484
- Allegheny Energy
- Joel Critchfield
- jcritch&alleghenyenergy.com
-8485
- Virtual Software, S.L.
- Jose Miguel Rodriguez
- jmiguel&virtualsw.es
-8486
- City-Net Tech. Inc.
- Chris Chang
- chris_chang&citynetek.com
-8487
- MightyView, Inc.
- Arnie Shimo
- arnie.shimo&mightyview.com
-8488
- University of Alabama
- John Watters
- John.Watters&UA.EDU
-8489
- Pico Technology Ltd
- Mike Green
- mike&picotech.com
-8490
- Direct Commerce
- Jeffrey Baker
- jwb&directcommerce.com
-8491
- drzyzgula.org
- Robert Drzyzgula
- bob&drzyzgula.org
-8492
- Iscanet Internet Services
- Rocco Lucia
- rlucia&iscanet.com
-8493
- Web Office China
- Jiang Kunping
- szjkp&163.net
-8494
- MOSAIC SOFTWARE AG
- Marco Nietz
- sysadm&mosaic-ag.com
-8495
- MILESYS
- Vincent Moynot
- vincent.moynot&milesys.fr
-8496
- Facilitair bedrijf, Hogeschool van Utrecht
- Rene van Valkenburg
- r.vanvalkenburg&fab.hvu.nl
-8497
- Deluxe Video Services Ltd
- DJ Adams
- dj_adams&gmx.net
-8498
- Akumiitti Ltd
- Kai Rauha
- Kai.Rauha&akumiitti.com
-8499
- Eduserv
- Owen Cliffe
- occ&eduserv.ac.uk
-8500
- Dr. Nagler & Cie. Consult GmbH
- Rainer Pruy
- Rainer.Pruy&Nagler-Consult.com
-8501
- ANTEL - Operations
- Carlos Martinez
- carlosm&antel.net.uy
-8502
- Internet Park, Inc.
- Nick Thompson
- nick&ipark.com
-8503
- Unicess Networks
- Jay Park
- JayPark&unicess.com
-8504
- Sparzo Enterprises
- Darrel Sparzo
- dsparzo&home.com
-8505
- SKYTEC AG
- Valentin Hilbig
- valentin.hilbig&skytec-ag.de
-8506
- Ximian, Inc.
- Chris Toshok
- toshok&ximian.com
-8507
- CyberTrails, LLC
- Shawn Ostapuk
- shawn.ostapuk&cybertrails.net
-8508
- Final Piece
- Jeffrey Truong
- jeff&finalpiece.com
-8509
- ViNAWARA Co.,Ltd.
- JIwon, Jeong
- eek&medialincs.com
-8510
- Yunbj Co.,Ltd.
- Yun Byoung-jo
- yunbj&medialincs.com
-8511
- ThoughtWorks, Inc.
- Barrow Kwan
- bhkwan&thoughtworks.com
-8512
- Capgemini Telecom Media & Networks Sweden AB
- Carl Bergudden
- carl.bergudden&capgemini.se
-8513
- Katelco
- Alex Shamanaev
- alex&katelco.com
-8514
- Sonocomp GmbH
- Klaus-Dieter Lorig
- kdlorig&sonocomp.de
-8515
- Deonet Co., Ltd.
- HyeonJae Choi
- hjchoi&deonet.co.kr
-8516
- Proxion Org
- Andreas Herr
- herr&proxion.de
-8517
- APL/Software
- Helge Schilling
- helge.schilling&sos-berlin.com
-8518
- JGiovatto
- Joe Giovatto
- joegio&hotmail.com
-8519
- Trevalon, Inc.
- Jack Heller
- jack&trevalon.com
-8520
- Winterlink Inc
- Eric Wilkison
- ericw&winterlink.net
-8521
- Bytemobile, Inc.
- Chye Lin Chee
- chyelin&bytemobile.com
-8522
- Machinebuilt Software, Inc.
- Jonathan Machen
- jmachen&oao.com
-8523
- Petrasoft Inc
- Mohamad F El-Bawab
- melbawab&petrasoft-inc.com
-8524
- Cybercafe
- Md. Humayun Kabir Chowdhury
- humayunkc&yahoo.com
-8525
- Paula's Home Creations
- Paula Evans
- pevans914&aol.com
-8526
- Consiglio Nazionale del Notariato
- Pasquale Starace
- webmaster&notariato.it
-8527
- Harvard MIT Data Center
- Leonard Wisniewski
- linux&lists.hmdc.harvard.edu
-8528
- HeyAnita Inc.
- Mandar Wadekar
- MandarW&heyanita.com
-8529
- Salira Optical Network Systems, Inc.
- Faye Ly
- faye&SALIRA.com
-8530
- MomsDesk Commerce Corporation
- Gopal Krishnan
- gopalk&momsdesk.com
-8531
- SyncWorks
- James Lorenzo
- jlorenzo&uswest.net
-8532
- NANYA Technology Corp.
- Liu, Cheng Hsien
- oscarliu&ntc.com.tw
-8533
- Snapshield
- Danny Schaffer
- danny.schaffer&snapshield.com
-8534
- HiHat Enterprise Solutions
- Michael McKibben
- mike&hihat.net
-8535
- Nekhem Technologies
- Andrea Fanfani
- admin&mixad.it
-8536
- Datachorus
- J.Y.Koh
- jykoh&datachorus.com
-8537
- Turbo NetWorks Co., Ltd.
- Daniel Wang or Dennis Tseng
- jht&turbonetworks.com.tw
-8538
- Saxonia Systems AG
- Ricardo Graf
- ricardo.graf&saxsys.de
-8539
- Institute "Norilskproject"
- Eugene A. Doudine
- dudin&np.nk.nornik.ru
-8540
- LCPC
- Karsenti Yves
- Yves.Karsenti&lcpc.fr
-8541
- Interactive Media S.r.l.
- Claudio Spallaccini
- cspallaccini&imnet.it
-8542
- Sandial Systems, Inc.
- Edward G. Rolfe
- erolfe&sandial.com
-8543
- Global TeleLink Services, Inc.
- Toush Hy
- thy&gtsgateway.com
-8544
- SmallBuddha.org
- David Berkman
- dmberkma&pacbell.net
-8545
- HTL Steyr
- Franz Parzer
- Franz.Parzer&htl-steyr.ac.at
-8546
- Coleebris
- Christophe Sollet
- csollet&coleebris.com
-8547
- Mississippi State University
- Frank Peters
- fwp&its.msstate.edu
-8548
- South Suburban College
- John McCormack
- jmccormack&ssc.cc.il.us
-8549
- Cylant Technology
- Cory Stone
- cory&cylant.com
-8550
- Hatteras Networks
- Richard Williams
- rwilliams&hatterasnetworks.com
-8551
- Yotta Networks, Inc
- Philippe Tulula
- ptulula&yottanetworks.com
-8552
- TechTracker.com
- Ladd Van Tol
- lvantol&techtracker.com
-8553
- Subtheory
- Steven Cannon
- cannon&subtheory.com
-8554
- Departement Elektrotechnik, ETH Zuerich
- Simon Moser
- smoser&ee.ethz.ch
-8555
- Digitalwave, Inc
- Kyungran Kang
- krkang&digitalwave.co.kr
-8556
- Bank MENATEP SPb, Samara
- Sergey Kurilkin
- kurilkin&samara.menatepspb.com
-8557
- Globaloop Ltd.
- Oded or Gil
- gmahlev&globaloop.com/ oded&globaloop.com
-8558
- Gimnazija Bezigrad Ljubljana
- Matjaz Filo
- mali&gimb.org
-8559
- Coconut
- Matt Braid
- matt.braid&coconut.co.uk
-8560
- Cleverlance s.r.o.
- Michal Palicka
- michal.palicka&cleverlance.com
-8561
- Hotsip
- Patrik Granholm
- patrik.granholm&hotsip.com
-8562
- Platinet Communications
- Guy Weintraub
- guyw&platinet.com
-8563
- SSE
- Jouko Sormunen
- Jouko.Sormunen&sse.fi
-8564
- CTI2
- Ron Avriel
- ron&cti2.com
-8565
- Medical Research Laboratories
- Evert Carton
- evert.carton&mrl-crl.com
-8566
- Lasse Hillerøe Petersen
- Lasse Hillerøe Petersen
- lhp&toft-hp.dk
-8567
- Active Power, Inc.
- Mark Hill
- mhill&activepower.com
-8568
- VirtualTek Corporation
- Frank Kim
- frankk&joydesk.com
-8569
- iXON
- CC Wong
- ip&ixongroup.com
-8570
- Enonic
- Vetle Roeim
- vro&enonic.com
-8571
- ConnectSuite
- Philippe Le Borgne
- pleborgne&connectsuite.com
-8572
- TDS Informationstechnologie AG
- Thomas Gebhardt
- Thomas.Gebhardt&de.tds-global.com
-8573
- S4i
- Ronald Kraaijer
- ron&s4i.be
-8574
- SEAS LLC
- Patrick Adlam
- padlam&purdue.edu
-8575
- ManageIT Company
- George Kovachev
- gio-k&bynet.co.il
-8576
- Flowstone, Inc.
- Jeff Medcalf
- medcalf&flowstone.net
-8577
- Axiowave Networks
- Divya Prakash
- dprakash&axiowave.com
-8578
- People.Com, Inc,
- Suresh Dussa
- sureshd123&yahoo.com
-8579
- Operadora Protel, SA de CV
- Eduardo Vázquez Hernández
- evazquez&protel.net.mx
-8580
- Tellme Networks, Inc.
- Danny Howard
- entservers&tellme.com
-8581
- Oy Comsel System Ab Kristian
- Heimonen
- kristian.heimonen&comsel.com
-8582
- Netgene Tech. Inc.
- Jay C., Kim
- jayckim&netgenetech.com
-8583
- Kabelfoon BV
- Hans Hoppe
- beheer&kabelfoon.nl
-8584
- Sorbonne
- Jean-Pierre Le Moan
- lemoan&siris.sorbonne.fr
-8585
- MEDAV Digitale Signalverarbeitung GmbH
- Rainer Werlein
- rainer.werlein&medav.de
-8586
- MODCOMP GmbH
- Frank Lange / Norbert Ketteler
- langef&modcomp.de / kettelen&modcomp.de
-8587
- WiredMinds Informationssysteme GmbH
- Markus Mueller
- Markus.Mueller&WiredMinds.de
-8588
- Munich Re Insurance AG
- Beate Utz
- BUtz&munichre.com
-8589
- Framesoft AG Software Applications
- Markus Buettner
- markus.buettner&framesoft.com
-8590
- Okena, Inc.
- Ashok Nadkarni
- ashok&okena.com
-8591
- ManSoft
- Mark Norman
- markn&btinternet.com
-8592
- CGI
- Kumar Venugopal
- kumar.k.e.venugopal&cgiusa.com
-8593
- WebTone Technologies
- Samuel K. Mooney
- smooney&webtonetech.com
-8594
- Telia eTelia A/S
- Troels Larsen
- trl&etelia.dk
-8595
- HITRON Technology, Inc.
- Susan Wang
- susanwang_BL&yahoo.com.tw
-8596
- NEUSOFT CO.,LTD
- Shi Lei
- shil&neu-alpine.com
-8597
- Access Solutions International Corporation
- Mr. Tim Shee
- tshee&accesssolutions.com.tw
-8598
- Digital Diagnostic Imaging
- Doug Mansell
- doug.mansell&filmlessfuture.com
-8599
- Velankani Information Systems Ltd.
- Watsh Rajneesh
- wrajneesh&velankani.com
-8600
- Linux Generation B.V.
- Robert van der Meulen
- rvdm&lin-gen.com
-8601
- BellSouth Customer Technologies
- Patrick MacDonald
- patrick.macdonald&corp.bellsouth.net
-8602
- Qarana Solutions
- Jose Luis Casas
- jlcasas&qarana.com
-8603
- Flarion Technologies
- Patrick Hsu
- p.hsu&flarion.com
-8604
- Leapfrog Technologies LLC
- Jimmy Cone
- domains&bitstreet.net
-8605
- Wireless Knowledge
- Christopher Kavas
- ckavas&wirelessknowledge.com
-8606
- Vancouver School District # 37
- Jeff Samuelsen
- jsamuels&vansd.org
-8607
- Portland Internetworks
- David Giller
- dave&pdx.net
-8608
- Cini Systems
- Frank Cini
- frank&cinisystems.com
-8609
- Newsradar Deutschland
- Martin Virtel
- virtel&gmx.net
-8610
- Snmp Everywhere
- Arif Shouqi
- shouqi&hotmail.com
-8611
- VSoft
- Bert Huijben
- bert&vsoft.nl
-8612
- Toe Technology Company Limited
- David Shiu
- david&toetec.com
-8613
- HealthNetwork Systems
- Bill Meyer
- bmeyer&hns-net.com
-8614
- Roxen Internet Software
- Honza Petrous
- hop&roxen.com
-8615
- BioWare Corp.
- Dave Hamel
- postmaster&bioware.com
-8616
- Witt Family
- Wesley Witt
- wesw&wittfamily.com
-8617
- ATYF
- Ricardo de Labra
- rlabra&atyf.com
-8618
- iProperty.com
- Brian Chase
- hostmaster&iproperty.com
-8619
- David Hopwood Network Security
- David Hopwood
- hopwood&zetnet.co.uk
-8620
- AKO
- Kevin Lee
- wblee&ako.net
-8621
- Excido Pty Ltd
- David Parrish
- dparrish&excido.com
-8622
- Satyam Infoway Limited
- Sankaranarayanan S
- sankar_s&satyam-infoway.com
-8623
- RadioMobil a.s.
- Marek Uher
- ITWebAdmin&RadioMobil.cz
-8624
- Denis Neuhart Computing
- Denis Neuhart
- dneuhart&aol.com
-8625
- The Lifetime Healthcare Companies
- Thomas Luce
- thomas.luce&excellus.com
-8626
- Club Internet
- Laurent T. Abiteboul
- lta&t-online.fr
-8627
- Ailis
- Klaus Reimer
- k&ailis.de
-8628
- Arkoon Network Security
- Daniel Fages
- dfages&arkoon.net
-8629
- Fireclick
- SNMP Administrator
- snmp&fireclick.com
-8630
- MPI tech
- Erich Martin
- emartin&mpisa.francenet.fr
-8631
- MeshNetworks, Inc.
- Donald Joslyn
- DJoslyn&MeshNetworks.com
-8632
- Winphoria Networks
- Aashu Virmani
- avirmani&winphoria.com
-8633
- Atmos Energy Corporation
- D. Dante Lorenso
- dante.lorenso&atmosenergy.com
-8634
- The ZaneRay Group, Inc.
- Reed Gregerson
- reed&zaneray.com
-8635
- Rob Semenoff Enterprises
- Robert Semenoff
- semenoff&yahoo.com
-8636
- Planet Pratt
- Chris Pratt
- chris&planetpratt.com
-8637
- Amphus, Inc.
- Jason Kurashige
- jkurashige&amphus.com
-8638
- RouteScience Technologies, Inc.
- Aspi Siganporia
- aspi&speedtrak.com
-8639
- Polytrust AB
- Alexander Bottema
- alexander.bottema&polytrust.com
-8640
- Santam Limited
- Network Department
- root&santam.co.za
-8641
- 7441.com
- Willem Labuschagne
- willem&7441.com
-8642
- EnderUNIX
- Bâkır EMRE
- emre&enderunix.org
-8643
- The Math Forum
- Alex Vorobiev
- sasha&mathforum.com
-8644
- Anoto
- Mattias Levin
- mattias.levin&anoto.com
-8645
- InfiniSwitch Corporation
- Bill Anderson
- banderson&infiniswitch.com
-8646
- Scottish Qualifications Authority
- Tony Douglas
- tony.douglas&sqa.org.uk
-8647
- Winbox.com
- Pierre Cobbaert
- cobby&winbox.com
-8648
- Renaissance Technologies Corp.
- Karsten Kuenne
- kuenne&rentec.com
-8649
- Pinnacle Technology, Inc.
- Dave Johnson
- davej&pinnaclet.com
-8650
- Apriva, Inc.
- Mike Klingen
- mklingen&apriva.com
-8651
- Heart Institute (InCor), University of São Paulo Medical School
- Sergio Shiguemi Furuie
- sergio.furuie&incor.usp.br
-8652
- Uppsala University
- Pål Axelsson
- Pal.Axelsson&its.uu.se
-8653
- unassigned
-
- ---none---
-8654
- INTRINsec
- Laurent Genier
- lgr&intrinsec.com
-8655
- Apcentric Limited
- PJ Worrall
- pj.worrall&apcentric.com
-8656
- DCM Online Limited
- PJ Worrall
- pj.worrall&apcentric.com
-8657
- Hochschulrechenzentrum, Fachhochschule fuer Wirtschaft und Technik(FHTW) Berlin
- David Lichteblau
- lichtebl&fhtw-berlin.de
-8658
- Empresa Nacional de Certificacion Electronica
- Jorge Rojas M.
- jrojas&ccs.cl
-8659
- Asia e-publications Ltd.
- William Chung
- andy0202&netvigator.com
-8660
- Telaid
- Mario Tito
- mtito&telaid.com
-8661
- University of Utah College of Engineering CADE Lab
- Steven Barrus
- sbarrus&eng.utah.edu
-8662
- University of Louisville
- Keith Stevenson
- keith.stevenson&louisville.edu
-8663
- Bermuda Triangle Services Ltd
- Gerrit E.G. Hobbelt
- i_a&bermuda-triangle.net
-8664
- Akeena, Inc.
- Chris Pratt
- chris&planetpratt.com
-8665
- Bruce Technical Services
- Scott Bruce
- scott&technomystic.org
-8666
- FirstPeer
- Mark Boyns
- boyns&firstpeer.com
-8667
- Textme.org Ltd
- Lee Bolding
- lee.bolding&textme.org
-8668
- Eli Lilly and Company
- Jason . P. Grimmer
- grimmer_jason_p&lilly.com
-8669
- Teracom Telecomunicações Ltda
- Ivan Valter Basilio
- nelson&burti.com.br
-8670
- Polyester Media
- Roberto Grandillo
- roberto&polyester.com
-8671
- ETI
- Fernand Lussier
- fernand.lussier&eti-gaming.com
-8672
- Farmers Insurance
- Tom Chang
- tom.chang&farmersinsurance.com
-8673
- Borderware Technologies Inc.
- David Bell
- db&borderware.com
-8674
- Java Secure
- Jeff Samuelsen
- oidadmin&JavaSecure.com
-8675
- Autodesk, Inc.
- Samir Bajaj
- samir.bajaj&autodesk.com
-8676
- Transparent
- Warner Chan
- wchan&transparentoptical.com
-8677
- ISDN-Net, Inc.
- Timothy Stinson
- tws&isdn.net
-8678
- Intrusion.com
- Joel R. Brown
- jbrown&intrusion.com
-8679
- Atlas Copco Airpower
- Meel Erik
- erik.meel&atlascopco.be
-8680
- Open Roads Consulting Inc.
- David Robison
- DRRobison&OpenRoadsConsulting.com
-8681
- Free Speech Media LLC
- Lynn Winebarger
- webmaster&freespeech.org
-8682
- UltraSecure.com
- Oliver Bode
- oliver&ultrasecure.com
-8683
- Integrity Systems Ltd.
- Ilia Bunin
- ilia_b&integrity-sys.com
-8684
- frd.net
- Fredrik Reuterswärd
- fr&frd.net
-8685
- Habeebee
- Fredrik Wahlberg
- fredrik&habeebee.com
-8686
- Personal Evaluation
- Jed Voller
- jed&peiasap.com
-8687
- Milestone R/D Labs
- Marc Rassbach
- marc&milestonerdl.com
-8688
- Shepherd-Express
- Doug Hissom
- doug&shepherd-express.com
-8689
- Miller Simon McGinn and Clark
- Tom McGinn
- tmcginn&milbizlaw.com
-8690
- IPAGEON Co.Ltd
- Jonghoon, kim
- p_enms&ipageon.com
-8691
- Moxa Technologies Co., Ltd.
- Cindy Hung
- cindy_hung&moxa.com.tw
-8692
- Network Programs
- Madhu Bajpai
- snmp&npi.stpn.soft.net
-8693
- A-xell Wireless AB (formerly 'Avitec AB')
- Martin Hancock
- martin.hancock&axellwireless.com
-8694
- University of Wolverhampton
- Max Caines
- Max.Caines&wlv.ac.uk
-8695
- Mission Data
- Paul Kieckhefer
- paulk&missiondata.com
-8696
- myCustoms
- Jeff Flanigan
- jflanigan&mycustoms.com
-8697
- Raiffeisen Informatik GmbH
- Juergen Hasenauer
- juergen.hasenauer&r-it.at
-8698
- Viasat, Inc.
- Nick Kominus
- nick.kominus&atl.viasat.com
-8699
- iWay Software
- Richard Beck
- dick_beck&iwaysoftware.com
-8700
- World Savings
- Adam Burford
- aburford341&worldsavings.com
-8701
- Intelligent Information Systems
- Jay Lyerly
- jayl&renewal-iis.com
-8702
- Noncyclic Networks
- Ted Tickell
- tickell&noncyclic.net
-8703
- Voyus Canada Inc.
- Applications Development
- ldap-administrator&voyus.com
-8704
- Sakhalinsvyaz JSC
- Dmitry Lebkov
- admin&sakhalin.ru
-8705
- Israel Local Authorities Data Processing Center LTD
- Daniel Korem
- danny&ladpc.co.il
-8706
- Unassigned
- Removed 2006-09-07
- ---none---
-8707
- SpiderNet Services Ltd
- Ranko Zivojnovic
- ranko&spidernet.net
-8708
- Lumentis AB
- Per Borg
- per.borg&infinera.com
-8709
- Landesamt für Besoldung und Versorgung NRW
- Guido Sawatzky
- guido.sawatzky&lbv.nrw.de
-8710
- Envoy Networks
- Brian Shimkin
- bshimkin&envoynetworks.com
-8711
- THALES Broadcast & Multimedia
- Dat-son Nguyen
- dat-son.nguyen&thomcast.thomson-csf.com
-8712
- LANcope, Inc.
- John Jerrim
- jjerrim&lancope.com
-8713
- Abako Media Oy
- Hannu Taskinen
- hannu.taskinen&abako.fi
-8714
- iNOC, Inc.
- Rick Smith
- rick&internetnoc.com
-8715
- Health Sciences Centre
- Mauricio Mejia
- mmejia&hsc.mb.ca
-8716
- Triveni Digital, Inc.
- Andrew Selder
- aselder&trivenidigital.com
-8717
- David Mistretta
- David Mistretta
- david_mistretta&yahoo.com
-8718
- Gwent Consultancy
- A. T. Butler
- butlerat&gwent-consultancy.com
-8719
- Raviant Networks, Inc.
- Richard H. Gumpertz
- RGumpertz&Raviant.com
-8720
- Zack Systems, Inc.
- Cody Sherr
- cody&zack.com
-8721
- Ingram Technology Limited
- Bernard Ingram
- bingram&ingram-technology.com
-8722
- etoolbelt.net
- Steve Belt
- sebelt&pacbell.net
-8723
- Integrated Data Pty Ltd
- Mr Peter Stoneley
- peters&s055.aone.net.au
-8724
- Human Technology
- Jeehoon Song
- jhsong1&humantel.com
-8725
- Canberra Institute of Technology
- Scott J McDonald
- scott.mcdonald&cit.act.edu.au
-8726
- Incisive Designs
- Sean O'Grady
- sean.ogrady&sheridanc.on.ca
-8727
- Torry Harris Business Solutions Thirunavukarasu
- S
- s_thiru&thbs.com
-8728
- Computer Network Information Center, Chinese Academy of Sciences
- Nan Kai
- nankai&sdb.ac.cn
-8729
- LETEK Communications, Inc.
- Lee Deugju
- djlee&letek.com
-8730
- Serck Controls Ltd.
- Robert Bradford
- rbradford&serck-controls.co.uk
-8731
- Pantor Engineering AB
- Ola Arvidson
- ola.arvidson&pantor.com
-8732
- Tokyo Institute of Technology
- Katsuyoshi Iida
- iida&gsic.titech.ac.jp
-8733
- Ambient Computing, Inc.
- Joseph Evans
- evans&ambientcomputing.com
-8734
- Matthias Wimmer
- Matthias Wimmer
- mail&matthias-wimmer.de
-8735
- Quark Inc.
- David Fowler
- dfowler&quark.com
-8736
- MetaVector Technologies
- Jos Huybrighs
- jos.huybrighs&metavectortech.com
-8737
- SecureNet GmbH - Intranet & Internet Solutions
- Knut Sander
- knut.sander&secure-net.de
-8738
- Pirelli Informatica S.p.A.
- Marco Micci
- marco.micci&pirelli.com
-8739
- KAPTECH
- Xavier Boemare
- xboemare&kaptech.com
-8740
- KOM Networks
- Adrian Cho
- adrianc&komnetworks.com
-8741
- SonicWALL, Inc.
- Susan Yan
- susany&sonicwall.com
-8742
- Alphion
- Murali Sampath
- msampath&alphion.com
-8743
- RadioFrame Networks
- Don Messenger
- don&radioframenetworks.com
-8744
- Colubris Networks Inc.
- Eric Perie
- Eric.Perie&colubris.com
-8745
- Informática para todos, SA de CV
- Eduardo Vázquez Hernández
- evazquez&technologist.com
-8746
- Queensland University of Technology
- Alan Agnew
- A.Agnew&qut.edu.au
-8747
- Libelle AG
- Hans-Joachim Krueger
- hkrueger&libelle.com
-8748
- LOQUENDO SpA
- Piovano Luciano
- Luciano.Piovano&LOQUENDO.com
-8749
- TELCOM ITALIA LAB
- Galliano Sergio
- Sergio.Galliano&CSELT.it
-8750
- Bucknell University
- Chris Weber
- systems&bucknell.edu
-8751
- Geodesic Systems
- John W. Marland
- jwm&geodesic.com
-8752
- Kernel
- Park Keun O
- lastnite&dreamwiz.com
-8753
- Dataflow Alaska, Inc.
- Eric Hutchins/Keif Mayers
- kmayers&dataflowalaska.com
-8754
- XouL
- Danilo Aghemo
- danilo&aghemo.com
-8755
- Hebrew University Computation Center
- Helen Zommer
- helen&cc.huji.ac.il
-8756
- Celltick
- Oren Zamir
- orenz&celltick.com
-8757
- Feather Mobile Systems
- Amir Kirsh
- amir&feathersys.com
-8758
- Walnut Concepts
- Martin Torrella
- tinram&hotmail.com
-8759
- LG Innotek Co., Ltd.
- Seoncheol Cho
- sccho&lginnotek.com
-8760
- NEITech
- Yang Dayong
- dyyang&netcore.com.cn
-8761
- Zavod za varnostne tehnologije informacijske druzbe in elektronsko
- poslovanje, SETCCE Tomaz Klobucar
- centre&setcce.org
-8762
- SI-CA
- Tomaz Klobucar
- centre&setcce.org
-8763
- eIQnetworks
- Prakash Reddy
- jreddy&sitehosting.com
-8764
- KB Electronics Ltd
- Daniel Hebert
- d.hebert&kbe.ns.ca
-8765
- Telesoft Technologies Ltd
- John Townsend
- jtownsend&telesoft-technologies.com
-8766
- Elsag S.p.A.
- Giuseppe Ghiorzi
- giuseppe.ghiorzi&elsag.it
-8767
- Bayour.COM
- Turbo Fredriksson
- turbo&bayour.com
-8768
- Nevion (formerly 'Network Electronics')
- Jan Helgesen
- jihelgesen&nevion.com
-8769
- TeraOptic Networks, Inc.
- Ashok Ranganath
- terry&teraoptic.com
-8770
- The Emerginggroup Group
- Qiqi Dong
- qdong&emerginggroup.com
-8771
- ARCANVS, Inc.
- Todd Romney
- todd.romney&arcanvs.com
-8772
- e-Manufacturing Networks Inc.
- Stephen Lane-Smith
- splane&e-mfg.net
-8773
- CHINA TEXTILE NETWORK CO.,LTD.
- Liu Peng
- lpeng&ml.ctei.gov.cn
-8774
- Universal Scientific Industrial Co., Ltd.
- Black Su
- blacksu&ms.usi.com.tw
-8775
- BeST (Business Execution-Solutions & Technology) Dave
- Dave Bean
- daveb&bestholdings.com
-8776
- Zman Tikshuv
- Ofer Porat
- porat&zt.co.il
-8777
- aQute
- Peter Kriens
- Peter.Kriens&aQute.se
-8778
- SYAC
- Piergiorgio Menia
- piergiorgio.menia&com.area.trieste.it
-8779
- Telespazio
- Marcello De Carolis
- marcello_decarolis&telespazio.it
-8780
- ip-connect GmbH
- Sven Flossmann
- sflo&ip-connect.de
-8781
- ChamberSign
- Mr. Hylko Oosterloo
- oosterloo&eurochambres.be
-8782
- Keutel
- Jochen Keutel
- jochen&keutel.de
-8783
- akella.org
- Mani Akella
- makella&warwick.net
-8784
- BroadQuay Consultancy Ltd.
- Greg Mitchell
- iana&broadquay.com
-8785
- Guay Internet
- Inaki Santamaria
- isantamaria&guay.com
-8786
- SecureOps Inc.
- Patrick Ethier
- patrick&secureops.com
-8787
- Ivrnet Inc.
- Roland Hordos
- r.hordos&ivrnet.com
-8788
- CyberGate Internet Services
- Randy Doran
- rtdoran&valueweb.com
-8789
- PreNet Corporation
- Maria Webster
- mwebster&prenet.net
-8790
- Prisa Networks
- Don Deel
- don&prisa.com
-8791
- ivv GmbH
- Markus-Alexander Matthe
- markus-alexander.matthe&ivv.de
-8792
- Axes India Ltd
- N.SankarNarayanan
- nsn_axes&yahoo.com
-8793
- Realize IT GmbH
- Alain Schneble
- a.s&realize.ch
-8794
- eYak Inc.
- Margaret Hannemann
- mhannemann&eyak.com
-8795
- Inteliguard
- Michael Donahue
- mike.donahue&inteliguard.com
-8796
- Gestion del Conocimiento S.A. Miquel
- Bonastre
- suport&gec.gecsa.com
-8797
- Mannesmann Arcor AG & Co
- Andreas Berger
- Andreas.Berger&arcor.net
-8798
- IT-Management & Solution GmbH
- Ahmet Sahin
- s.ahmet&itms-online.de
-8799
- cypherOptics
- Mauro Zallocco
- mzallocc&yahoo.com
-8800
- YH Consulting
- Robert Ellis
- r.ellis&snet.net
-8801
- SenaReider
- John Sturgeon
- john.sturgeon&senareider.com
-8802
- Yehti, Inc.
- Ryan Addams
- raddams&yehti.com
-8803
- Thuridion
- David Van Wagner
- davevw&thuridion.com
-8804
- Kirana Networks
- Jatinder Bali
- jbali&kirananetworks.com
-8805
- Kessler-Huron Computer Systems
- Tom Chang
- khcs&hotmail.com
-8806
- Gluon Networks
- Bruno Rossi
- bruno.rossi&gluonnetworks.com
-8807
- Finestra Software
- Rick Rasmussen
- engnums&finestra.net
-8808
- Xi'an Xinli Network System Technology Co.,Ltd
- Xu Jing
- xuj&xinli.com.cn
-8809
- Tomorrow Software
- Yangwen Chan
- cywforce&163.net
-8810
- Artigas Computer
- Raul B. Heiduk
- rh&pobox.com
-8811
- Prompt2U
- Orna Shechter
- Orna&Prompt2U.com
-8812
- ITBS OnLine
- Floriano Conte
- Floriano.Conte&itbs.fr
-8813
- Skyline Communications
- Ben. Vandenberghe
- Ben.Vandenberghe&Skyline.be
-8814
- Funcom NV
- Hans Terje Bakke
- hanstb&funcom.com
-8815
- Collectively Sharper
- Jonathan Henderson
- jonathan.henderson&magi-europe.com
-8816
- getyourcar AG
- Siegmund Gorr
- gorr&getyourcar.de
-8817
- Websemantix
- Olivier Swedor
- olivier.swedor&websemantix.com
-8818
- SandCherry Networks, Inc.
- Stephen Earl
- searl&sandcherry.com
-8819
- Raytion
- Markus Strickler
- Markus.Strickler&raytion.com
-8820
- sysTime-solutions AG
- Eric Weiss
- weiss&systime-solutions.de
-8821
- Phi Kappa Theta Fraternity - Gamma Tau Chapter
- Ivan Raikov
- gte085h&prism.gatech.edu
-8822
- Linuxcare, Inc.
- Richard Childers
- childers&linuxcare.com
-8823
- I.NET S.p.A.
- Marco Negri
- marco.negri&inet.it
-8824
- Wizzy
- Andy Rabagliati
- andyr&wizzy.com
-8825
- DNX Communications
- Weston Bustraan
- weston&itdonline.net
-8826
- ComNet Software Specialists,Inc
- Larry Richardson
- lrichardson&38.157.105.100
-8827
- Nu-kote International
- Bill White
- whiteb&nukote.com
-8828
- General Dynamics - Mission Systems
- Donald Purvis
- donald.purvis&gd-ms.com
-8829
- Axell Wireless Limited (formerly 'Aerial Facilities Limited')
- Martin Hancock
- martin.hancock&axellwireless.com
-8830
- Xyphius Solutions Inc.
- Joe Chen
- joec&xyphius.com
-8831
- Agora Systems Ltd
- Sigurd Hogsbro
- sigurd&agorasystems.co.uk
-8832
- Ecominds Ltd
- Sigurd Hogsbro
- sigurd&ecominds.com
-8833
- ISPMan
- Ghaffar Atif
- aghaffar&ispman.org
-8834
- Cognet Corp.
- Eyal Yechieli
- eyal&cognet.co.il
-8835
- Wizard Productions
- Mike Smith
- snmp&arch-mage.com
-8836
- AUUG Incorporated
- David Purdue
- David.Purdue&auug.org.au
-8837
- AscenVision
- ChinMing Kuo
- cmk&ascenvision.com
-8838
- ACS Internet, Inc.
- Royce Williams
- dnstech&acsalaska.net
-8839
- Microtest
- Eugene Prigorodov
- eprigorodov&microtest.ru
-8840
- MBridge Systems Inc.
- Jaeyeong Lee
- jylee&mbridge.co.kr
-8841
- InterCom International Communications Ltd.
- Attila Soos
- sa&intercom.hu
-8842
- Clockwork Web
- Mark Himsley
- markh&clockworkweb.com
-8843
- INACCESS NETWORKS SA
- Vassilis Nellas
- vnellas&inaccessnetworks.com
-8844
- Diveo Broadband Networks
- Rubens Gomes
- rgomes&diveo.net.br
-8845
- Enablence USA FTTX Networks Inc (formerly 'wave7optics')
- Maria Osterholt Cown
- maria.cown&enablence.com
-8846
- Caramail
- Galliot Guillaume
- guillaume&caramail.fr
-8847
- Pivotech Systems, Inc
- Larry Kong
- lkong&pivotech.com
-8848
- Rootroute Research
- OID PEN Administrator
- pen8848&rootr.net
-8849
- LPMD.ORG
- John Cosimano
- ldap&lpmd.org
-8850
- Cyradis Technology Group Inc.
- John David Allamby
- allambyjd&cyradis.com
-8851
- Ultra Enterprises
- John Fleming
- jf147&prism.gatech.edu
-8852
- AARNet Pty Ltd
- Glen Turner
- glen.turner&aarnet.edu.au
-8853
- A-Trust
- Franz Brandl
- f.brandl&a-trust.at
-8854
- INTENS IT
- Simon Obstbaum
- so&intensit.de
-8855
- Intelsis Sistemas Inteligentes S.A. Cesar
- Veiga
- cveiga&intelsis.es
-8856
- IdecNet SA
- Juan Ignacio Jimenez
- natz&idecnet.com
-8857
- Nauticus Networks Inc.
- Karen Wise
- kwise&nauticusnet.com
-8858
- destef.com Software
- Jason DeStefano
- destef&destef.com
-8859
- Private Business Inc.
- Byron McClain
- security&privatebusiness.com
-8860
- Holcim Group Support Ltd.
- Niels Carstensen
- Niels.Carstensen&hmc.ch
-8861
- Secorvo Security Consulting GmbH
- Hans-Joachim Knobloch
- hans-joachim.knobloch&secorvo.de
-8862
- AppWired, Inc.
- Layton Freeman
- layton.freeman&appwired.com
-8863
- Etiers International Inc
- Tim O'Callaghan
- tim&etiers.com
-8864
- Dystopium.com
- Matthew Gamble
- mgamble&dystopium.com
-8865
- FAST Search and Transfer
- Morten Hermanrud
- mhe&fast.no
-8866
- GeoTEC Internet
- Chebon Huber
- staff&geotec.net
-8867
- StoreAge Networking Technologies
- Nelson Nahum
- nnahum&store-age.com
-8868
- Velos, Inc.
- Rajeev Kalathil
- rkalathil&velos.com
-8869
- Coscend Corporation
- Tobias Crawley
- tobias&coscend.com
-8870
- KINS(Knowlege and Information Net for Sharing) Lab.
- Yoon-Won Lee
- kelovon&kdb.snu.ac.kr
-8871
- Porthole Interactive Technologies
- Keith Youngblood
- lifer&olywa.net
-8872
- Saintjo
- J.Alvarez
- jalvarez&instit-st-jo.asso.fr
-8873
- JAL INFORMATION TECHNOLOGY CO.,LTD.
- Nobuyoshi Kasahara
- nobuyoshi.kasahara&jalinfotec.co.jp
-8874
- Utt Technologies
- James Hongzhong Zhang
- hzzhang&online.sh.cn
-8875
- Columbitech AB
- Patrik Westin
- patrik.westin&columbitech.com
-8876
- willeke.com
- James Willeke
- jim&willeke.com
-8877
- Suntail
- Graham Shaw
- grahams&suntail.com
-8878
- Firmenich SA
- Thierry Baillif
- baillif&firmenich.com
-8879
- Zetac Limited
- Mr. Phil Hedger
- phil.hedger&randomx.demon.co.uk
-8880
- IDENTEC Solutions AG
- Anders Larsen
- a.larsen&identecsolutions.de
-8881
- Trust Italia S.p.a.
- Libero Marconi
- lmarconi&trustitalia.it
-8882
- Empower Interactive Group Limited
- Ciaran Flynn
- ciaran&eigroup.com
-8883
- Moonlight Systems
- Eric Winner
- eric&moonlight.com
-8884
- Versant Corporation
- Andreas Renner
- arenner&versant.com
-8885
- Internet Security One Ltd.
- Zhao,Liang
- zhaol&is-one.net
-8886
- Beijing Raisecom Scientific & Technology Development Co., Ltd.
- Gao Lei
- szf&bupt.edu.cn
-8887
- VASoft (Pty) Ltd.
- Vaughn Gavin
- pak01267&pixie.co.za
-8888
- WEBGSM
- Ludovic Smadja
- lsmadja&webgsm.com
-8889
- virtual solution AG
- Dr. Raoul-Thomas Herborg
- raoul.herborg&virtual-solution.com
-8890
- Broadcast Technology Limited
- Tony Carr
- tony.carr&btl.uk.com
-8891
- sforce.org
- Thomas Kruse
- tk_iana&sforce.org
-8892
- Chaman Productions
- Jeannin Cédric
- cedricj&cybercable.fr
-8893
- Mobilitec
- Benny Rachlevsky Reich
- benny.reich&mobilitec.com
-8894
- Rivermen AB
- Magnus Heino
- magnus.heino&rivermen.se
-8895
- Information Systems Consulting (Insyc)
- Robert Brautigam
- demon&lilu.csoma.elte.hu
-8896
- Sistematica
- Roberto Ricci
- roberto_ricci&sistematica-srl.it
-8897
- Alltel Information Services
- Shawn McKinney
- shawn.mckinney&alltel.com
-8898
- Weavers Network Consulting
- Andre Derraik
- andre.derraik&weavers.com.br
-8899
- The McGraw-Hill Companies
- John Gervasio
- john_gervasio&mcgraw-hill.com
-8900
- Intellitactics
- Paul Sop
- iana&itactics.com
-8901
- Monkeybagel Hardware Solutions
- Benjy Feen
- hardware&monkeybagel.com
-8902
- GeoTEC Internet
- Chebon Huber
- staff&geotec.net
-8903
- NetNearU CorporateTAM
- Kwok-yam
- tam&nnu.com
-8904
- Cooper Industries
- Scott Dunning
- sdunning&cooperpower.com
-8905
- HuntCorp Enterprises
- Neil Hunt
- grover&huntcorp.com.au
-8906
- Solnet Pty Ltd
- Neil Hunt
- grover&solnet.com.au
-8907
- GE CompuNet Computer AG & Co. oHG
- Frank Pooth
- frank.pooth&gecits-eu.com
-8908
- Belgacom NV of public Law
- Kristoff Bonne
- kristoff&belbone.net
-8909
- DICA Technologies AG
- Alfred Richter
- arichter&dica.de
-8910
- Meitner - Soluções Internet e Sistemas de Informação, Lda
- Jorge Dionisio
- zaga1&yahoo.com
-8911
- Appelsiini Finland Oy
- Antti Lehto
- antti.lehto&appelsiini.com
-8912
- Alice's Registry, Inc.
- Rick Wesson
- rick&ar.com
-8913
- Federal Linux Systems
- Ron Broberg
- ronbroberg&yahoo.com
-8914
- Galderma Laboratories L.P.
- Mark Adkins
- mark.adkins&galderma.com
-8915
- Ralf Bensmann
- Ralf Bensmann
- iana&bensmann.com
-8916
- Infogate Online
- Izak Cohen
- izak&infogateonline.com
-8917
- Strelitzia Be
- Lorenzo Planas
- lorenzo.planas&strelitziabe.com
-8918
- J-PHONE EAST CO.,LTD.
- Yoshihito Katagai
- yoshihito.katagai&j-phone-east.com
-8919
- Huysmans en Kuypers Automatiseringsburo
- Paul Lucassen
- paul&bicat.com
-8920
- Bamboo MediaCasting
- Meir Fuchs
- meir&bamboomc.com
-8921
- Nice Work Textile Corp.Ltd
- Richard van Leeuwen
- Richard&niceworktextile.com
-8922
- RESI Informatica S.r.l.
- Angelo D'Ottavi
- dottavi&resi.it
-8923
- Keyware
- Tim Dobbelaere
- tdobbelaere&keyware.com
-8924
- Inforad - Com. Serv Ltda.
- Roberto Moraes Dantas Filho
- junior&inforad.com.br
-8925
- Transora
- Jon Beyer
- jon.beyer&transora.com
-8926
- VIP Switch Inc.
- Sean Harnedy
- sharnedy&vipswitch.com
-8927
- Paceline Systems Corporation
- Hal Rosenstock
- hal&pacelinesystems.com
-8928
- Asta Networks
- Jared Pfost
- jared&astanetworks.com
-8929
- Dominion Electronics Pty Ltd
- James Mcleod
- jamesm&dominion.net.au
-8930
- Pelago Networks
- Jennie Holmes
- jholmes&pelagonet.com
-8931
- Cordell, Inc
- Ken Woodmansee
- kenw&cordell.net
-8932
- WaterWare Internet Services, Inc.
- George Mount
- george&waterware.com
-8933
- Wokup
- David Degouilles
- ddeg&wokup.fr
-8934
- b-process
- Jean-luc Henry
- jlhenry&b-processs.com
-8935
- Wisdom Assen BV
- W.H. Schraal
- W.H.Schraal&wisdom.nl
-8936
- WebToGrid
- Tiago Pereira
- tiago.pereira&intelidata.pt
-8937
- Thirdspace Living Ltd
- Dr Dave Robinson
- dave&thirdspace.tv
-8938
- Cyberell Oy
- Olli-Pekka Rinta-Koski
- ola&cyberell.com
-8939
- Frontec netSolution AB
- Frode Randers
- Frode.Randers&frontec.se
-8940
- SAVVIS Communications
- Donald E. Bertier, Jr.
- donb&savvis.net
-8941
- JC Enterprises
- Johnny Chang
- uberchang&yahoo.com
-8942
- AMX Corp
- Ron Barber
- ron.barber&amx.com
-8943
- Analog Design Autoamtion Inc.
- Benson Jin
- benson&analogsynthesis.com
-8944
- Obfuscated Networking
- Michael Conlen
- meconlen&obfuscated.net
-8945
- In-Q-Tel Inc.
- Joshua Icore
- network&in-q-tel.org
-8946
- ThinAirApps
- Nathanial Freitas
- Nathanial.Freitas&thinairapps.com
-8947
- Viacore, Inc.
- Dale Cabell
- dale.cabell&viacore.net
-8948
- A S Promotions LTD
- Scott Wiginton
- swiginton&wigintoninternational.com
-8949
- OuterSpace Consultants
- Heath Hendrickson
- heath&outerspaceconsultants.com
-8950
- webBASIS, Inc.
- Benjamin Templeton
- bent&coresoft.com
-8951
- Platys Communications
- Meenakshi Ramamoorthi
- meena&stargateip.com
-8952
- JSC Belsvyaz
- Dmitry Golovanov
- dmgol&belgtts.ru
-8953
- MightySun LLC
- Chin H Kow
- chkow&yahoo.com
-8954
- VTEX Typesetting Services
- Sarunas Burdulis
- sarunas&vtex.lt
-8955
- GORGY TIMING
- Christophe Poyet
- christophe.poyet&gorgy-timing.fr
-8956
- ZICOM Electronic Security Systems Ltd.
- Amit Sarode
- amits&zicomsecure.com
-8957
- Railinfrabeheer BV
- P. de Kok
- p.deKok&railinfrabeheer.nl
-8958
- James A. Mahlen & Associates
- James A. Mahlen
- jmahlen&texas.net
-8959
- IER Incorporated
- Wayne Parker
- wparker&ier-tx.com
-8960
- Coree Networks Inc.
- Andrew Goldstein
- agoldstein&coreenetworks.com
-8961
- Paradigm Secure Communications
- Roger Palmer
- roger.palmer&astrium-space.com
-8962
- IntruVert Networks, Inc.
- Srikant Vissamsetti
- srikant&intruvert.com
-8963
- Advanced Web Communication, division of Xecom, Incorporated
- Frank Zhang
- fzhang&xecom.com
-8964
- Bezirksregierung Duesseldorf
- Carsten Wegner
- carsten.wegner&brd.nrw.de
-8965
- Dff Internet & Medien
- Mr. Torsten Curdt
- tcurdt&dff.st
-8966
- PurOptix
- Cliff Emerson
- cliff&puroptix.com
-8967
- NASA JSC
- Alice Aman
- alice.l.aman1&jsc.nasa.gov
-8968
- Juha Saarinen IT Writer
- Juha Saarinen
- juha&saarinen.org
-8969
- Rio Tinto
- Christopher Deeble
- christopher.deeble&riotinto.com
-8970
- Argogroup Interactive Ltd
- Dirk Moermans
- dmoermans&argogroup.com
-8971
- Speed to Market Engines
- Rao Nimmakayala
- rao&speedtomarket.com
-8972
- IP Powerhouse Ltd.
- Christopher Madden
- chris.madden&ippowerhouse.com
-8973
- Grupo Eurociber S.A.
- Angel Redondo Fernandez-Rebollos
- anredondo&banesto.es
-8974
- Universitaet Marburg
- Karl-Heinz Ergezinger
- ldap&hrz.uni-marburg.de
-8975
- Soluzione Script GmbH
- Bastian Ziegler
- hans.baier&soluzione.de
-8976
- Airia, Inc.
- Carl Herbst
- cherbst&airiaglobal.com
-8977
- Synamics Inc.
- Sunil Rananavare
- srana&synamics.com
-8978
- Sears Holdings Corp
- Ricc Babbitt
- rbabbit&searshc.com
-8979
- The Real Asset Company Limited
- Reece Robinson
- mail&trac-group.co.nz
-8980
- Collective Technologies
- Uma Vaiyapuri
- uma&colltech.com
-8981
- Joeunsecurity
- Wongi Bae
- im1gi&joeunsecurity.com
-8982
- Ipertrade s.r.l.
- Alberto Bottacin
- a.bottacin&ipertrade.com
-8983
- Bivio Networks
- Ron Murphy
- rmurphy&bivio.net
-8984
- C J SPAANS
- Jasper Spaans
- jasper&spaans.ds9a.nl
-8985
- The Synaptic Group, Inc.
- Mark G. Christenson
- mgc&synaptic.com
-8986
- Arcotect Limited
- Keith Chan
- keith.chan&dotcompacific.com
-8987
- State Infocommunication Foundation of Estonia
- Urmo Mäeorg
- urxx&riks.ee
-8988
- Pingworks
- Christoph Lukas
- lukas&pingworks.de
-8989
- Naino Corporation
- Marc-Olivier Méhu
- Marc-Olivier.Mehu&naino.com
-8990
- Redpill Linpro AS (formerly 'Linpro AS')
- Erik Inge Bolsø
- iana&redpill-linpro.com
-8991
- MARPOSS S.p.A.
- Luca Simoncini
- luca.simoncini&marposs.com
-8992
- Unisoft Consultants
- Mohamed A. Kamara
- unisoftco&usa.net
-8993
- Asera Inc.
- Krishna Kumar
- kkumar&asera.com
-8994
- Avantas Networks
- Melanie Gosselin
- mgosselin&avantas.com
-8995
- Lo-Wang.org
- Frank Clements
- neumonik&ptd.net
-8996
- TransactPlus, Inc.
- Robert Chomentowski
- rob.chomentowski&transactplus.com
-8997
- ProArp Inc.
- Max Schreiner
- ms&e-comerce.de
-8998
- Cottay
- Will Cottay
- will&cottay.net
-8999
- TVS eTechnology Limited
- Ravi Desikan
- ravi&tvsetech.com
-9000
- Personal Path Systems, Inc.
- Tom Hagan
- hagant&personalpathsystems.com
-9001
- Goltier Media Group (Sitepak)
- Francois Belanger
- francois&sitepak.com
-9002
- LXPRO.COM
- Greg Bailey
- gbailey&lxpro.com
-9003
- slimjones.
- Paul Jean Jouve
- p_jouve&hotmail.com
-9004
- SuSE Linux Venezuela, C.A.
- Xavier E. Mármol
- xmarmol&suse.de
-9005
- Video Networks Limited
- Brendan Hole
- b.hole&videonetworks.com
-9006
- Apache Consulting Ltd.
- Garry Morash
- gmorash&apache.ab.ca
-9007
- FineGround Networks
- Chao Feng
- chao&fineground.com
-9008
- Digital Route
- Joakim Österberg
- joakim.osterberg&digitalroute.com
-9009
- Agni Systems Limited
- Name Server Admin
- nsadmin&agni.com
-9010
- Liebenzell Mission
- EDV-Abteilung
- edv&liebenzell.org
-9011
- Laminar Software, Inc.
- Diane Gruseck
- dgruseck&laminarsoft.com
-9012
- MailVision Ltd.
- Diego
- diegob&mailvision.com
-9013
- SpiritSoft Inc
- Rob MacNeill
- Robert.MacNeill&spirit-soft.com
-9014
- Belenos, Inc.
- Johnny Chang
- jchang&belenosinc.com
-9015
- World Streaming Network, Inc.
- Fred Crable
- fcrable@ worldstreaming.net
-9016
- FreeRein Corporation
- John Chu
- JohnC&FreeRein.com
-9017
- Cogent Systems, Inc.
- James Xie
- jamesxie&cogentsystems.com
-9018
- CQR Data Ltd.
- Martin Stpehen Pegler
- mpegler&ark-online.net
-9019
- Cap Gemini Telecom Media & Networks Deutschland GmbH
- Tobias Wermann
- tobias.wermann&capgemini.de
-9020
- Computer Adaptive Technologies, Inc.
- Corey Ehmke
- corey_ehmke&hmco.com
-9021
- WideOpenWest LLC
- David Walden
- dwalden&wideopenwest.com
-9022
- TrueSAN Networks
- Bill Jang
- bjang&truesan.com
-9023
- Netsanity Inc.
- Leo Ramos
- lramos&corp.netsanity.com
-9024
- Telia Internet, Inc.
- M. Groesbeek
- mgroesbeek&us.telia.net
-9025
- NetCologne
- Roland Rosenfeld
- rrosenfeld&netcologne.de
-9026
- adisoft systems GmbH & Co. KG
- Jens Salewski
- j.salewski&adisoft-systems.de
-9027
- SoftNerd
- William R. Buckley
- wrb&softnerd.com
-9028
- Lendx
- Dan Zhang
- dzhang&lendx.com
-9029
- BSD Users Group Italia
- Giacomo Cariello
- jwk&bug.it
-9030
- iVMG Incorporated
- Christopher N. Harrell
- cnh&ivmg.net
-9031
- Nexter Information Technology
- Young-jae Chang
- nobocop&nexter.com
-9032
- IVSTel
- Angus North
- a.north&ivstel.com
-9033
- Elion Enterprises Ltd
- Klemens Kasemaa
- klemens.kasemaa&elion.ee
-9034
- Jabber.com
- Constantin Nickonov
- nickonov&jabber.com
-9035
- Carlisle FoodService Products
- Kenny Austin
- kennyaustin&carlislefsp.com
-9036
- Jim Dutton
- Jim Dutton
- jimd&siu.edu
-9037
- Everyday Office Inc.
- Richard Cowles
- rcowles&everydayoffice.com
-9038
- Well Diagnostics
- Yngve Nyheim
- yngve&welldiagnostics.com
-9039
- Chengdu Ideal Telecom Technology,Inc.
- Jiang Daming
- mshou&sina.com
-9040
- Chengdu Ideal Information Industry Co,Ltd.
- Jiang Daming
- mshou&sina.com
-9041
- Cambridge University Engineering Department
- James Matheson
- jmrm&eng.cam.ac.uk
-9042
- Teinos
- Massimo Travascio
- m.travascio&teinos.com
-9043
- Execulink
- Erik Zweers
- zweers&execulink.com
-9044
- NEC Eluminant Technologies, Inc.
- Sunil Unadkat
- unadkats&eluminant.com
-9045
- eNetSecure, Inc
- Patrick Heim
- patrick.heim&enetsec.com
-9046
- Amecisco
- Walter Yu
- support&amecisco.com
-9047
- Blue Cross Blue Shield of Florida
- Thomas C. Graham, III
- hostmaster&bcbsfl.com
-9048
- Open System Consultants
- Mike McCauley
- mikem&open.com.au
-9049
- Integrity Online
- John Wever
- jwever&integrity.com
-9050
- Telenor Link AS
- Roar Pettersen
- roar.pettersen&link.no
-9051
- Faculdade de Ciências e Tecnologia da Universidade Nova de Lisboa
- Paulo Matos
- paulo.matos&fct.unl.pt
-9052
- Sunbay Software AG
- Sergey Starosek
- star&sunbay.com
-9053
- Tovaris IP LC
- Michael Smith
- msmith&tovaris.com
-9054
- Tokheim
- Mike Fox
- mike.fox&tokheim.com
-9055
- 9Rivers.com
- Wei Wang
- weiwang&9rivers.com
-9056
- TelStrat International, Ltd.
- Craig Lutgen
- it&telstrat.com
-9057
- Millennium Communication Network
- Ronan Kelly
- kelly&mcn-tower.com
-9058
- Jamcracker
- Yuriy Martsinkovskiy
- yuriym&jamcracker.com
-9059
- Vectrad Networks Corporation
- Lee Dunbar
- leed&sirosnetworks.com
-9060
- RuleSpace, Inc.
- James Dirksen
- ops&rulespace.com
-9061
- Deutscher Go-Bund
- Dr. Christian Gawron
- christian.g&awron.de
-9062
- SRS Microsystems
- Shawn Younger
- syounger&srsmicro.com
-9063
- iHive Technology Pte Ltd
- Teng Siong, Ng
- tengsiong&ihive.com
-9064
- ATM ComputerSysteme GmbH
- Luigi Bove
- luigi.bove&atm-computer.de
-9065
- Nettasking Technology (Singapore) Pte Ltd.
- Wilfred Wong
- wilfred.wong&nettasking.com
-9066
- Global Security Technologies, Inc.
- Robert Rich
- rrich&gstisecurity.com
-9067
- Cambia Networks
- Paul Riley
- priley&cambianetworks.com
-9068
- Delphi Associates, Ltd.
- Charles Reindorf
- charles&reindorf.com
-9069
- Phillip's Technical Services
- Phillip Omlor
- peomlor&uswest.net
-9070
- Symmetricom
- Dilip S. Dhanda
- ddhanda&symmetricom.com
-9071
- Spirian Technologies, Inc.
- Joseph Sturonas
- JSturonas&Spirian.com
-9072
- AckleyNet
- Jason Ackley
- jason&ackley.net
-9073
- Sunnyvale Community Players
- Dan Rich
- drich&sunnyvaleplayers.org
-9074
- John M. Sutherland, Inc.Insurance
- Stephen J. Kiernan
- admin&vegamuse.org
-9075
- Novex Solutions
- Stephen J. Kiernan
- admin&vegamuse.org
-9076
- Tokyo Metallic Commuynications Corp.
- Noboru Kurgouchi
- kuro&metallic.co.jp
-9077
- Dekart
- Alexander Kutsy
- joy&dekart.com
-9078
- Be Connected Ltd
- Lahiany Sigalit , Peleg Michal
- Sigalit.Lahiany&be-connected.net , Michal.Peleg&be-connected.net
-9079
- The Sanjyot Bharathan Design Association
- Sanjyot Bharathan
- techhead&graphic-designer.com
-9080
- Babel Com Australia
- Del Elson
- del&babel.com.au
-9081
- eachnet
- Jsshi
- jsshi&126.com
-9082
- eXtremail
- Richard González
- extremail&extremail.com
-9083
- eteamconsulting.com
- John Grzyb
- jandj&greenmount.org
-9084
- Keynote Systems, Inc.
- Krishna Khadloya
- krishna.khadloya&keynote.com
-9085
- Optical Switch Corporation
- James Liou
- jliou&opticalswitch.com
-9086
- US Robotics
- Anurag Batta
- anurag_batta&usr.com
-9087
- Brightmail, Inc.
- Mark Lim
- lim&brightmail.com
-9088
- Oso Grande Technologies, Inc.
- Systems Support
- systems&osogrande.com
-9089
- New Mexico Technet, Inc.
- Monte Mitzelfelt
- monte&nm.net
-9090
- Datagrove
- Jim Hurd
- jimh&datagrove.com
-9091
- MICRO-STAR INT'L CO., Ltd.
- Norman Hung
- normanhung&msi.com.tw
-9092
- Veenstra Graphic Solutions
- Rick Veenstra
- rick&veenstra.org
-9093
- Innovate I.T. Logistics BV
- Martin Bokman
- martin&innovate-it.nl
-9094
- Amber Archer Consulting Co., Inc.
- Kyle F. Downey
- kdowney&amberarcher.com
-9095
- NIPPON MITSUBISHI OIL CORPORATION
- Takanobu Nakajima
- takanobu.nakajima&nmoc.co.jp
-9096
- Zentrum für Produkt Entwicklung, ETH Zürich
- Stephan Müller
- stmuller&imes.mavt.ethz.ch
-9097
- CDFtel
- Eurico Inocêncio
- emi&cdftel.pt
-9098
- DW Systems
- Daniel W. Brodsky
- dwb&twcny.rr.com
-9099
- Central Systems International, Inc.
- Greg Wiktor
- gw&censys.net
-9100
- Mstel
- Jaehee Lee
- jhlee&mstel.co.kr
-9101
- Optum Computing Solutions, Inc.
- Steve Davis
- sdavis&optum-inc.com
-9102
- Telecash Kommunikations-Service GmbH
- Armin Krone
- Armin.Krone&Telecash.de
-9103
- Yu-Shei Real Estate Co.
- Tsung-yiu Lai
- alexlai&yushei.com
-9104
- Chu-Shen Co. Ltd
- Tsung-yiu Lai
- alexlai&yushei.com
-9105
- MIST
- Natasa Grandic
- ngrandic&mistwireless.com
-9106
- ELIOS Informatique
- Denis Salembier
- denis.salembier&elios-informatique.fr
-9107
- Ferguson Enterprises, Inc.
- Jediah Logiodice
- it.iana-pen.admin&wolseley.com
-9108
- Random Walk Computing, Inc.
- Joel Scotkin
- jscotkin&randomwalk.com
-9109
- infogear
- Amit Tropper
- atropper&cisco.com
-9110
- Net Asia Angeles CIty
- Tristan Cusi
- tristan&netasia-angeles.net
-9111
- Newway Tech. Inc.
- Marco Chen
- marco.chen&newwayit.com
-9112
- Palamedes GmbH
- Hannes Reinecke
- H.Reinecke&palamedes.de
-9113
- Wiral Ltd
- Jukka Rissanen
- admin&wiral.com
-9114
- YLine Web Access Services
- Philip Poten
- philip.poten&yline.at
-9115
- Archon Technologies, Inc.
- Brian Massingill
- bmassingill&archon-tech.com
-9116
- Ubicom, Inc
- Chris Waters
- chris.waters&ubicom.com
-9117
- LeWiz Communications Inc.
- Taliaferro Smith
- TollyS&Lewiz.com
-9118
- 1Ci GmbH
- Ralf Bensmann
- iana&1ci.de
-9119
- Advanced Rotorcraft Technology, Inc.
- Joe English
- jenglish&flightlab.com
-9120
- Narada Networks Inc.
- Brian Brown
- brianb&naradanet.com
-9121
- Eduquip Limited
- Ron Segal
- ron&segal.co.nz
-9122
- UPCtv Interactive
- Pim van der Heijden
- pvdheijden&upctv.com
-9123
- Université Pierre Mendès France
- Jean Guillou
- Jean.Guillou&upmf-grenoble.fr
-9124
- Intellitactics Inc.
- Mathew Johnston
- mjohnston&itactics.com
-9125
- Inspiration Technology Pty Ltd
- Ted Bullen
- ted&instech.com.au
-9126
- Aetian Networks
- Arpan Shah
- arpan&aetian.com
-9127
- ADVANCED PERIPHERALS TECH. Inc.
- Toshiko Kojima
- tkojima&apti.co.jp
-9128
- Centre de traduction des organes de l'Union européenne
- Pascal Dufour
- Pascal.Dufour&cdt.eu.int
-9129
- Linkvest SA
- Jean-Eric Cuendet
- ccsr&linkvest.com
-9130
- Hemisphere Technologies
- Carl Cronje
- carl&hemtech.co.za
-9131
- Roland Felnhofer
- Roland Felnhofer
- roland.felnhofer&chello.at
-9132
- Hutchison OPTEL Telecom Technology CO.,Ltd
- Lin Tong
- lintong&optel.com.cn
-9133
- Microraab Electronics
- Szilard Birkas
- birkas.szilard&microraab.hu
-9134
- Telenet NV
- System Group
- systemgroup&telenet-ops.be
-9135
- Heyde AG
- Thomas Huch
- THuch&heyde.de
-9136
- ISDN Communications Ltd
- Nick Hoath
- nhoath&isdn-comms.co.uk
-9137
- Anatel Communications
- Dave Frary
- dfrary&anatel.net
-9138
- AnteFacto
- John Looney
- john&antefacto.com
-9139
- Petroleum Business Institute
- Alexander Goncharov
- magic&petroleum.ru
-9140
- Media General, Inc.
- Michael Miller
- inetadmin&mediageneral.com
-9141
- Riptech
- Jeff Odom
- jeff&riptech.com
-9142
- Infopaq International A/S
- Peter Thygeesn
- palaka&infopaq.dk
-9143
- Edmunds.com
- Sergey Fokichev
- sfokichev&edmunds.com
-9144
- Trader Electronic Media
- Michael Gorman
- gorman&traderonline.com
-9145
- AccessPt. Inc.
- Troy Harrison
- Troy.Harrison&accessptinc.com
-9146
- Reporter-Times, Inc.
- IS Department
- tech&reportert.com
-9147
- TeaLeaf Technology, Inc.
- Andrew Kosolobov
- akosolobov&tealeaf.com
-9148
- Acme Packet
- Ephraim Dobbins
- edobbins&acmepacket.com
-9149
- LOCUS Corporation
- Tain Lee
- tilee&locus.com
-9150
- Metromedia Fiber Network
- Steve Miller
- steve&mfnx.net
-9151
- Wiral Ltd.
- Juha Kumpulainen
- juha.kumpulainen&wiral.com
-9152
- Dit Company Limited
- Kaoru Mitsuhashi
- mitsu&dit.co.jp
-9153
- Sodielec Telecom
- Philippe Cabon
- sodielec&wanadoo.fr
-9154
- Figment Technologies Inc.
- Albert Chau
- alberto&figment.net
-9155
- BlueNetworkX
- Daniel Golle
- daniel.golle&bluenetworkx.de
-9156
- eGurkha Pvt Ltd.
- Srinivas Ramanathan
- srinivas&egurkha.com
-9157
- CoreComm
- Matt Holtz
- root&voyager.net
-9158
- The Internet Group
- Simon Allard
- simon.allard&staff.ihug.co.nz
-9159
- SHad0ws.net
- Kevin Black
- shad0w&shad0ws.net
-9160
- DGT Sp. z o.o.
- Micha³ Porzeziñski
- michael&dgt.com.pl
-9161
- Universidad del Pais Vasco
- Armando Ferro Vázquez
- jtpfevaa&bi.ehu.es
-9162
- Pädagogische Hochschule Freiburg
- Stephan Lauffer
- lauffer&ph-freiburg.de
-9163
- GNU Radius Project
- Sergey Poznyakoff
- gray&gnu.org
-9164
- Xware AB
- Mats Nilsson
- mats.nilsson&xware.se
-9165
- Cabinet Remouit
- Jean-Louis Remouit
- remouit&aol.com
-9166
- Universidad Galileo
- Oscar Bonilla
- obonilla&galileo.edu
-9167
- ANXeBusiness Corp
- Jeff Wade
- wadej&anx.com
-9168
- Transaccess
- Pedro Sanchez Riofrio
- psanches&setal.com.br
-9169
- Novis Telecom, SA
- Rui Cohen
- rui.cohen&isp.novis.pt
-9170
- Exaecon Inc.
- Elahe Zafari-Kellermann
- Elahe.Zafari-Kellermann&gmx.net
-9171
- NetTone
- phuster&nettone.com
- phuster&nettone.com
-9172
- HVC Technologies
- Yimin Zheng
- yiminzheng&hotvoice.com
-9173
- Kohl's
- Larry McCann
- larry.mccann&kohls.com
-9174
- A2V ict
- Armand A. Verstappen
- armand&a2vict.nl
-9175
- Stream Theory, Inc
- Bruce McKenzie
- bruce&streamtheory.com
-9176
- Open-IT
- Joe Little
- jlittle&open-it.org
-9177
- ThinkFree.Com, Inc
- Heungwook Song
- hwsong&thinkfree.com
-9178
- DaeSung Corp.
- Heekyung Lee
- hwsong1&netian.com
-9179
- INTESABCI SISTEMI E SERVIZI
- Michele Popescu; Carlo Davide Colombo
- Michelepopescu&iss.bancaintesa.it; Charlie&iss.bancaintesa.it
-9180
- Maranti Networks, Inc
- Sanjay Saxena
- ssaxena&marantinetworks.com
-9181
- Air Technology Systems
- Henry Zektser
- hzektser&air-tech.com
-9182
- FileFish, Inc.
- Robert Wygand
- rob&filefish.com
-9183
- Samba TNG
- Sander Striker
- striker&samba-tng.org
-9184
- Alterbox
- Mario Vojvoda
- duke&alterbox.net
-9185
- MS Integration Services Inc.
- Mark Sobkow
- msobkow&worldnet.att.net
-9186
- Logipolis Pte Ltd
- Nicholas Tan
- nicholastan&logipolis.com
-9187
- Eastman Chemical Company
- Michael H. Spence
- mspence&eastman.com
-9188
- Force Computers
- Bharath Channakeshava
- bharath.c&smartm.com
-9189
- Promedico Gmbh
- Bernd Juergens
- juergens&promedico.com
-9190
- Katanoo Technologies
- Stephan Krings
- skrings&katanoo.com
-9191
- Burgiesoft
- Jeff Meyer
- root&burgiesoft.com
-9192
- Pirkan Tietokone Oy
- Martti Hyppänen
- yukka&propelli.net
-9193
- CIRPACK
- Frederic Potter
- fpotter&cirpack.com
-9194
- AustLII
- Philip Chung
- philip&austlii.edu.au
-9195
- AutocontControl Systems, spol. s r. o.
- Jaroslav Chylek
- vinklarek&autocont.cz
-9196
- Algotronics
- Serge Gosset
- serge&algotronics.com
-9197
- Lyndon State College
- Stephen C. Allen
- allens&mail.lsc.vsc.edu
-9198
- Teletron Ltd.
- Frank Kleinewoerdemann
- frank&teletron.co.il
-9199
- Daum Datentechnik
- Klaus Daum
- kdaum&t-online.de
-9200
- Obermeier Software
- Klaus Obermeier
- klaus.obermeier&obermeier-software.de
-9201
- Fasturn Inc.
- Nikunj Mehta
- nmehta&fasturn.com
-9202
- EnsureLink
- Aaron Jarson
- ajarson&ensurelink.com
-9203
- SeguriDATA Privada, S.A. de C.V.
- Juan Gonzalez Cardoso
- jgcardoso&seguridata.com
-9204
- Aurora Networks, Inc.
- Luis Yu
- lyu&aurora.com
-9205
- Moj. Net d.o.o.
- Borut Mrak
- borut.mrak&moj.net
-9206
- DigitalSpark
- Adam Strohl
- iana&digitalspark.net
-9207
- segNET Technology, Inc.
- Adam Strohl
- adams&segnet.com
-9208
- Hamilcar Development
- Adrian Kuepker
- akuepker&pobox.com
-9209
- Peace Technology, Inc.
- Alex Roytman
- roytmana&peacetech.com
-9210
- Merlin I.T. Services Ltd
- Phil Cooper
- merlinit&lineone.net
-9211
- Rabobank ICT
- A.T. Bezemer
- a.t.bezemer&rf.rabobank.nl
-9212
- Wavium AB
- Sten Hubendick
- sten.hubendick&wavium.com
-9213
- NetSeal Technologies
- Ilka Pietikainen
- ilkka.pietikainen&netseal.com
-9214
- Kemuri Systems
- Geert Vanderkelen
- geert&kemuri.org
-9215
- ERIDAN Informatique
- Martin Philippe
- pmartin&eridan-info.fr
-9216
- Universidade de Évora, Departamento de Informática
- Prof. Salvador Abreu
- spa&di.uevora.pt
-9217
- BIOBASE Biological Databases/ Biologische Datenbanken GmbH
- Axel Wagner
- axel.wagner&biobase.de
-9218
- Skysoft Portugal
- Carlos Juliao Duartenn
- juliao&skysoft.pt
-9219
- Juliao.com
- Carlos Juliao Duartenn
- juliao&juliao.com
-9220
- OPENJCC
- Andreas Binder
- abi&openjcc.org
-9221
- Shaw Communications
- Enterprise Management
- soc.entmgmt&sjrb.ca
-9222
- Phillips Petroleum Company
- james Vinatieri
- jevinat&ppco.com
-9223
- Roskilde University
- Mads Freek Petersen
- freek&ruc.dk
-9224
- Lawrence University
- Robert Lowe
- network.manager&lawrence.edu
-9225
- FJA
- Fritz Scherer
- net-admin&fja.com
-9226
- Microtest
- Ben Cohen
- bcohen&microtest.com
-9227
- Entrisphere, Inc.
- Matt Greenwood
- mig&entrisphere.com
-9228
- Globetech
- Brett Ellis
- brett.ellis&globetech.ch
-9229
- Totilities
- Dennis Totin
- dtotin&home.com
-9230
- #B4mad Research Lab Organization
- Stephan Dühr
- duehr&b4mad.net
-9231
- Adir Technologies
- John Berry
- jlb&adirtech.com
-9232
- Norwegian Mapping Authority
- Frode Arild Ekroll
- frode.ekroll&statkart.no
-9233
- IER SA
- Serge Favier
- sfavier&ier.fr
-9234
- Snowshore Networks Inc
- Joseph Benoit
- jbenoit&snowshore.com
-9235
- FCB Direct Montreal
- James Connolly
- jconnolly&fcbdirect.com
-9236
- Fundtech Corporation
- Alexander Kouznetzoff
- alexanderk&fundtech.com
-9237
- Newisys
- Daniel Kelley
- daniel.kelley&newisys.com
-9238
- Imagine Broadband Limited
- Shaf Girach
- shaf.girach&imaginebroadband.com
-9239
- JonesKnowledge.com
- Robin R. Reid
- rreid&jonesknowledge.com
-9240
- International MRI Accreditation Resources, LLC
- David Goldhaber
- dmg&forimar.com
-9241
- uni-X Software AG
- Kai Schwermann
- schwermann&uni-x.com
-9242
- Instituto de Matemática e Estatística da Universidade de São Paulo
- Francisco Reverbel
- reverbel&ime.usp.br
-9243
- Air'Prod
- Benoit de Mulder
- benoit&decollage.org
-9244
- PureCarbon, Inc.
- Stuart Piltch
- stuart&purecarbon.com
-9245
- Neuromics, Inc.
- Rodney Barnett
- rbarnett&neuromics.com
-9246
- Automated Handling Systems, Inc.
- David Scott isi.edu.autohandle.com
- ---none---
-9247
- Federal-Mogul Corporation
- Cindy Ward
- cindy_ward&fmo.com
-9248
- Paktronix Systems LLC
- Matthew G. Marsh
- mgm&paktronix.com
-9249
- Musambi Corporation
- Madhu Konety
- mkonety&musambi.com
-9250
- Strix Systems
- Gabi Abraham
- gabi.abraham&strixsystems.com
-9251
- TR Associates
- Tony Rosa
- tony_rosa&bigfoot.com
-9252
- Hôtel-Dieu De Saint-Jérôme
- Marc Clément
- marc.clement&ssss.gouv.qc.ca
-9253
- Buildscape, LLC
- Juan A. Pons
- sysadmin&buildscape.com
-9254
- Pajunas Interactive, Inc.
- Allie Micka
- allie&pajunas.com
-9255
- Vicinity Corporation
- Mike Diehn
- mdiehn&vicinity.com
-9256
- LightPointe Communications
- Brad Hyslop
- bhyslop&lightpointe.com
-9257
- Volera
- Steve Duckworth
- sduckworth&volera.com
-9258
- XMLStrategies.net
- Lou Johnson
- lou&webstrategies.org
-9259
- SYSPOL Co., Ltd.
- Song, Young Tae
- ytsong&yangjae.co.kr
-9260
- ADTEC Corporation
- Takanori Kakigi
- kakigi&adtec.co.jp
-9261
- Delphi Automotive Systems Investment (China) Holding Co.,Ltd
- Gordon Wang
- gordon.wang&eds.com
-9262
- EAST.NET Co. Ltd.
- Haixiang Gong
- haixiang&public.east.net.cn
-9263
- Cybernetics Technology Co., Ltd.
- Mikio Fukushima
- mikio&cybercom.co.jp
-9264
- Caerdroia
- Jeffrey K Medcalf
- medcalf&caerdroia.org
-9265
- TDISIE
- Orekhov Pavel
- opa&oniltz.da.ru
-9266
- Parsoft Systems Pvt. Ltd.
- Sagar Sarma
- sagar&parsoftsystems.com
-9267
- in-systemeGmbH
- Roman Huber
- roman.huber&in-systeme.com
-9268
- Ruhrverband
- Joachim Sommer-Littwin
- jso&ruhrverband.de
-9269
- MediaBroadcast GmbH
- Dr. Andreas Ehbrecht
- andreas.ehbrecht&telekom.de
-9270
- Callsys Ltd.
- Valery Vybornov
- vvv.callsys.co.uk
-9271
- Siemens NGNI
- Matthias Frank
- matthias.frank&er19.siemens.de
-9272
- Elektrobit Ltd.
- Teemu Pirinen
- teemu.pirinen&elektrobit.fi
-9273
- Neuro Telecom
- Jang Sik Park
- jspark&neurotel.co.kr
-9274
- access:Seven Communications GmbH
- Peter Marenbach
- peter.marenbach&access-7.de
-9275
- GENESYS
- Nisrine FAJAJ
- nisrine.fajaj&genesys.com
-9276
- Sema Spain NEG
- Alberto Mateos
- alberto.mateos&sema.es
-9277
- LOGICO Smart Card Solutions AG
- Stefan GOMBAR
- stefan.gombar&logico.net
-9278
- econia.com
- Andre Doehn
- andre.doehn&econia.com
-9279
- Arqana Technologies Inc.
- Ulf Kellermann
- ulf_kellermann&argana.com
-9280
- AccessLine Communications Corporation
- Sen Yang
- syang&accessline.com
-9281
- Standard Insurance Company
- Ted Steffan
- tsteffan&standard.com
-9282
- NOCpulse
- Mike Perez
- mp&nocpulse.com
-9283
- Costa Rica Institute of Technology
- Christian Sanabria
- csanabria&itcr.ac.cr
-9284
- Western Illinois University
- Dan Romano
- d-romano&wiu.edu
-9285
- InternetCDS
- Jaye Mathisen
- mrcpu&internetcds.com
-9286
- Maximum Throughput Inc.
- Gord R. Lamb
- glamb&max-t.com
-9287
- Zeus Communications
- Howard Wang
- howard.wang&zeuscomm.com
-9288
- HostPro
- Cameron Jones
- cameron&hostpro.com
-9289
- Unirez, Inc.
- Brian Boyd
- bboyd&unirez.com
-9290
- Firinn.org
- Mark Bainter
- mark-spamx&firinn.org
-9291
- Rainfinity
- Jim Rice
- jrice&rainfinity.com
-9292
- Webley System
- Alexander Litvak
- alexl&webley.com
-9293
- Staturn Computer
- Wang Yongsheng
- wys205&sina.com
-9294
- W4y do Brasil Ltda
- Antonio Mesquita
- antonio.mesquita&w4y.com.br
-9295
- Workers Compensation Fund
- Matt Goldsberry
- mgoldsbe&wcf-utah.com
-9296
- Xlight Photonics Ltd
- Miki Schnarch
- mikis&xlight.com
-9297
- Ayeca Inc.
- Nathan Ladin
- nathan&ayeca.com
-9298
- University of Compiègne
- David Lewis
- david.lewis&utc.fr
-9299
- Hellas On Line
- Costa Tsaousis
- ktsaou&hol.gr
-9300
- Hypostasis
- Kit Smith
- kit&hypostasis.com
-9301
- Spider Software
- Roy de Ruiter
- help&spider.com
-9302
- ESI s.r.l.
- Piero Serini
- p.serini&esi.it
-9303
- Waystream AB (formerly 'PacketFront Network Products AB')
- Fredrik Nyman
- fredrik.nyman&waystream.com
-9304
- Connection Technology Systems
- Wesley Liao
- wesley_liao&ctsystem.com
-9305
- Western Michigan University
- Norm Grant
- norm.grant&wmich.edu
-9306
- Octave Communications
- Bill McKinnon
- bmckinnon&ocatavecomm.com
-9307
- RCL Enterprises
- Robert Lilly
- robert&rclenterprises.com
-9308
- Oasis Technology Ltd.
- David Coles
- dcoles&oasis-technology.com
-9309
- Urzad Miasta Pabianic
- Jan Fijalkowski
- fijal&um.pabianice.pl
-9310
- ABITAB S.A.
- Adriana Calcetto
- adriana.calcetto&abitab.com.uy
-9311
- DI Trute
- M. Trute
- mtrute&topmail.de
-9312
- Truth Consulting & Technology
- David Skingsley
- david.skingsley&truthtech.com
-9313
- DaKoMa
- R. Guenther
- rguenther&dakoma.com
-9314
- Curtis Family
- Doug Curtis
- doug&curtisfam.com
-9315
- CARTEL SECURITE
- Benoit Lecocq
- lecocq&cartel-securite.fr
-9316
- NetVoyager
- Mo McKinlay
- mmckinlay&gnu.org
-9317
- Tech2Work, Inc.
- Scott Grim
- sgrim&tech2work.com
-9318
- DEBEKA Versicherung
- Axel Meyer
- axel.meyer&debeka.de
-9319
- NetAktiv
- Stéphane Bortzmeyer
- tech&netaktiv.com
-9320
- Nanning Telecom
- lupeijun
- lewis&rose.nn.gx.cn
-9321
- Screenpeaks Ltd.
- Bezalel Finkelstien
- bezalel&screenpeaks.com
-9322
- NetTech S.A.
- Jean-Louis Pagnuco
- jlp&nettech-eur.com
-9323
- PC Away
- Olivier Jousselin
- Olivier.Jousselin&pcaway.com
-9324
- Division fo Cancer Studies, Birmingham UK
- Dr. Debbie Cronin
- d.a.cronin&bham.ac.uk
-9325
- University of California, Riverside
- Andrew Tristan
- andrew.tristan&ucr.edu
-9326
- Lewis and Clark College
- Brad Wilkin
- wilkin&lclark.edu
-9327
- Hygeia Corporation
- Joe Garcia-Montes
- j.garcia&hygeia.net
-9328
- National Institutes of Health (NIH)
- John Dvorak
- dvorakjo&mail.nih.gov
-9329
- Crusoe Communications, Inc.
- Mark de Groot
- degroot&crusoe.net
-9330
- Selesta S.p.A.
- Emilio Masserotti
- masserotti&selesta.it
-9331
- MaXware International AS
- Thor Egil Leirtro
- thor.leirtro&maxware.com
-9332
- Applied SNMP
- Bob Natale
- bob.natale&appliedsnmp.com
-9333
- Lincom Wireless
- Frank Ciotti
- ciottif&lincom.com
-9334
- IPDR.org
- Aron Heintz
- aheintz&ipdr.org
-9335
- PowerSoft
- Eric Teutsch
- erict&powersoft.ca
-9336
- Publix Super Markets, Inc.
- Pat Hicks
- pat.hicks&publix.com
-9337
- Minter Corp.
- Mariano Abad
- fx&mintercorp.com
-9338
- Petersen Ventures LLC
- Erik Petersen
- cthree&home.com
-9339
- Left Coast Systems Corp.
- Matthew Asham
- matthew&leftcoast.com
-9340
- Network Infinity
- Mayo Jordanov
- mayo&nfy.ca
-9341
- Cyberfuse Technologies, LLC
- Jason Tucker
- jtucker&cyberfuse.com
-9342
- Penguin Computing
- Philip Pokorny
- ppokorny&penguincomputing.com
-9343
- Comcel S.A.
- Jose Carlos Jaramillo
- josecarlos&comcel.com.gt
-9344
- Powerwave Technologies Inc.
- Ray Mansell
- pwregistry&pwav.com
-9345
- infinetivity, Inc.
- Mark Christenson
- eng&infinetivity.com
-9346
- iGeek, Inc.
- David L. Smith-Uchida
- dave&igeekinc.com
-9347
- Avaz Networks
- Khalid Jamil
- khalid&avaznet.com
-9348
- Golden Telecom Ukraine
- Vlad Patenko
- vp&goldentele.com
-9349
- WizLAN Ltd.
- Gadi Miller
- gadi&wizlan.com
-9350
- Netmagic Solutions Pvt. Ltd.
- Mr. Jaibalan
- raghav&netmagicsolutions.com
-9351
- FORTHnet S.A.
- Tzormpatzakis Alexis
- atzo&forthnet.gr
-9352
- Conundrum Communications
- Matt Pounsett
- matt&conundrum.com
-9353
- Universite de Metz
- Yves Agostini
- agostini&univ-metz.fr
-9354
- Grey Interactive France
- Etienne Bernard
- eb&gifrance.com
-9355
- Krivorozhskiy Hlebokombinat N1
- Ivan Gudym
- ivan&gasoil.kiev.ua
-9356
- nPassage, Inc.
- Carl P. Miller
- carl.miller&npassage.com
-9357
- IT-Beratung Schaffert
- Sebastian Schaffert
- schaffer&informatik.uni-muenchen.de
-9358
- Wicom Communications Ltd
- Arto Keskiniva
- arto.keskiniva&wicom.com
-9359
- Symeko Datasystems bv
- Guido Hasenbos
- g.hasenbos&symeko.com
-9360
- Green Light Inc.
- Yehudan O. Ron
- f_light&msn.com
-9361
- Océ Software Laboratories Namur
- Jacques Flamand
- jacques.flamand&osl.be
-9362
- ENSEIRB
- Kadionik
- kadionik&enseirb.fr
-9363
- Spelio
- Lev Walkin
- vlm&spelio.net.ru
-9364
- InterPark Incorporated
- Walt Tracy
- walt.tracy&intpark.com
-9365
- Mindsurf Networks Inc.
- Christopher Sweigart
- csweigart&mindsurfnetworks.com
-9366
- Cifra
- Mario Korva
- mario.korva&cifra.si
-9367
- FASTSIGNS International, Inc
- Raj Croager
- raj.croager&fastsigns.com
-9368
- Storage Xstreams
- Robert Lee
- rlee&storagexstreams.com
-9369
- Micah J. Schehl
- Micah J. Schehl
- m.schehl.computer.org
-9370
- Space Telescope Science Institute
- Don Stevens-Rayburn
- stevray&stsci.edu
-9371
- Okolona Christian Church
- Phillip Mather
- pmather1&okolonacc.org
-9372
- Ikadega, Inc.
- Kevin Day
- kevind&ikadega.com
-9373
- Clear Ink
- Cove Schneider
- hostmaster&clearink.com
-9374
- Hermaion.org
- Gordon Pedersen
- gordon&visi.com
-9375
- Basler Kantonalbank
- JörnKnie-von Allmen
- joern.knie&bkb.ch
-9376
- CVS / PharmacyRussell
- Pierce
- rpierce&cvs.com
-9377
- Voyager Computer Corporation
- Richard Palm
- rpalm&voyagercomputer.com
-9378
- Ilex Systems
- Emil Assarsson
- emil.assarsson&bolina.hsb.se
-9379
- Eumitcom Technology Inc.
- Jeffrey Chou
- jeffreychou&eumitcom.com
-9380
- Octogon Gesellschaft für Computer-Dienstleistungen mbH
- Lupe Christoph
- lupe.christoph&octogon.de
-9381
- Walter Biering GmbH - Mediahaus und Grafischer Betrieb
- Lupe Christoph
- lupe.christoph&octogon.de
-9382
- WORAH.NET
- Vashist Worah
- vw&worah.net
-9383
- Angeles Design Systems
- Tom Laverty
- tlaverty&angeles.com
-9384
- D2K, Inc.
- Boris Shpungin
- bshpungin&d2k.com
-9385
- Jason Wood
- Jason Wood
- woodja&ieee.org
-9386
- Clayton College & State University
- Dan Newcombe
- newcombe&mordor.clayton.edu
-9387
- Compania Mea
- Rain Man
- rain_man1972&yahoo.com
-9388
- AsiaInfo
- Mark Harrison
- markh&usai.asiainfo.com
-9389
- Magical Fruit
- Mark Harrison
- markh&usai.asiainfo.com
-9390
- W.T. Services, Inc.
- Allen Hyer
- allenh&wtrt.net
-9391
- Audientia
- Yves Degoyon
- ydegoyon&audientia.com
-9392
- Cannon Hill Anglican College
- Andrew Gibson
- agibson&chac.gld.edu.au
-9393
- Intecs Information Ltd.
- Charles Teng
- charles_teng&intecs.com.tw
-9394
- Visana Services AG
- Beat Kneubuehl
- beat.kneubueh1&visana.ch
-9395
- UEC Technologies
- Kavish Parbhoo
- kavishp&uec.co.za
-9396
- Walt Disney International
- Patrick Pfundstein
- patrick.pfundstein&disney.com
-9397
- Vartech Solutions Inc.
- Andrew Williams
- rainstain&digital-galaxy.net
-9398
- Tokyo Metallic Communications Corp
- Akira Isogai
- isogai&metallic.co.jp
-9399
- CONSUL Risk ManagementDirk Wisse, Koos Lodewijkx
- dirk.wisse&consul.com,
- koos.lodewijkx&consul.com
-9400
- Fachhochschule Konstanz
- Leitung Rechenzentrum
- rechenzentrum&fh-konstanz.de
-9401
- AML Wireless Systems
- Raymon Hung
- rhung&amlwireless.com
-9402
- dCrypt Ltd
- Liaquat Khan
- liaquat.khan&dcrypt.co.uk
-9403
- Allinstant
- Matt Kressel
- mkressel&allinstant.com
-9404
- Dewpoint Inc.
- Chris Guttridge
- chris.guttridge&dewpoint.com
-9405
- Kingland Systems Corporation
- Thomas Johnson
- tom.johnson&kingland.com
-9406
- Synchrologic
- Greg Montgomery
- greg.montgomery&synchrologic.com
-9407
- Broadata Communications Inc.
- Joseph Rotenberg
- jrotenberg&broadatacom.com
-9408
- Chester Enterprises
- Daniel Chester
- dan&chesternet.net
-9409
- ClickServices
- Steve Rice
- steve&clickservices.net
-9410
- Axe Online Pty. Limited
- Brian Lee
- brian.lee&axe.net.au
-9411
- Hitwise Pty Ltd
- Tim Lewis
- tim.lewis&hitwise.com
-9412
- Contela
- Jung Hyun Kim
- levy&contela.com
-9413
- Operax AB
- Fredrik Pettersson
- iana-contact&operax.com
-9414
- Digital Globe, Inc.
- Kazushi Minagawa
- oze&digital-globe.co.jp
-9415
- Archimed
- Olivier Walbecq
- o.walbecq&archimed.fr
-9416
- Unassigned
- Returned 2 March 2004
- ---none---
-9417
- egg:|
- Gary Henn
- gary.henn&egg.com
-9418
- Ivistar AG
- Andreas Micklei
- andreas.micklei&ivistar.de
-9419
- Siemens SiNiA
- Rudi Neite
- rudi.neite&er19.siemens.de
-9420
- Baltimore Technologies
- Lisa Dunphy
- ldunphy&baltimore.com
-9421
- Vodafone D2
- Steffen Weichselbaum
- steffen.weichselbaum&d2vodafone.de
-9422
- Atanion GmbH
- Bernd Bohmann
- bernd.bohmann&atanion.de
-9423
- Msa-Infor Sistemas e Automacao
- Thomas Kosfeld
- thomas&msainfor.com.fr
-9424
- A&C Automacao e Controle
- Alexandre Ferez
- ferez&terra.com.br
-9425
- Rotterdam School of Management
- Jimmy C. Tseng
- jtseng&fbk.eur.nl
-9426
- Adigida Solutions
- Richard Kalman
- rkalman&adigida.com
-9427
- Categoric Software
- John Templer
- jtempler&categoric.com
-9428
- Orgenic Software
- Vladimir Dozen
- dozen&osw.com.ru
-9429
- Mariinsky Theatre
- Pavel Levshin
- flicker&mariinsky.ru
-9430
- Progress Telecom
- Kenneth J. Smith
- ksmith&progresstelecom.com
-9431
- Push, Inc.
- (removed from database 11-20-02)
- ---none---
-9432
- Vingage Corporation
- Chuck Baenen
- chuck.baenen&vingage.com
-9433
- Vaticor Inc.
- Jack Yorgey
- jackyorgey&vaticor.com
-9434
- Telergy Network Services
- Ken Morehouse
- kmorehouse&telergy.net
-9435
- Boletin Oficial del Estado
- David Guerrero
- david&boe.es
-9436
- Crysberg A/S
- Leif Jensen
- leif&crysberg.dk
-9437
- Lancer Insurance Company
- Tom Malone
- tmalone&lancer-ins.com
-9438
- YellowShirt Inc.
- Canny Quach
- cquach&yellowshirt.com
-9439
- Green Point Pty Ltd
- Nick Chu
- chun&tpg.com.au
-9440
- eko system Inc.
- Jesse Kuhnert
- jkuhnert&ekosystems.com
-9441
- Wall Street Systems, Inc.
- Lin Geng
- lin.geng&wallstreetsystems.com
-9442
- Atheros communications, Inc.
- Jennifer Kuang
- jkuang&atheros.com
-9443
- Virage, Inc.
- Chad West
- cwest&virage.com
-9444
- FireMon
- Jody Brazil
- jbrazil&fishnetsecurity.com
-9445
- TJB
- Timothy Butler
- rotordyn&yahoo.com
-9446
- Indiana University
- Mark S. Bruhn
- mbruhn&iu.edu
-9447
- Red Fern Software
- Tom Redfern
- thos&fonebone.net
-9448
- Zyfer
- Chris Law
- cjl&zyfer.com
-9449
- Florida State University
- Greg Simpson
- gregory.simpson&fsu.edu
-9450
- Zyoptics Inc.
- Malcolm Northcott
- mnorthcott&zyoptics.com
-9451
- digeo
- Brian Smith
- brian.smith&digeo.com
-9452
- NetLabs SRL
- Eduardo J. Blanco
- ejbs&netlabs.com.uy
-9453
- Barnardos New Zealand
- Brendon Ryniker
- brendonr&web.co.nz
-9454
- future gate software GmbH
- Ronny Bremer
- rbremer&future-gate.com
-9455
- Intelliclaim, Inc.
- Robert M. Vittori
- rvittori&intelliclaim.com
-9456
- Allegro Networks
- Bryan Levin
- snmp&allegronetworks.com
-9457
- Broadband Storage, Inc.
- Keith Philpott
- kphilpott&broadstor.com
-9458
- TCSI, Inc
- Peter Buckner
- pbuck&tcsi.com
-9459
- NileSOFT Ltd.
- Cheon-Geun Kim
- enrl&nilesoft.co.kr
-9460
- Salta Monte Solutions, Inc.
- Tom Poe
- tompoe&source.net
-9461
- y2FUN.com
- Singuan Iap
- iap&y2fun.com
-9462
- MMLAB KTU
- Jonas Punys
- media&mmlab.ktu.lt
-9463
- Geyer und Weinig GmbH
- Axel von Dielingen
- avd&gwtel.de
-9464
- SIEL S.p.A.
- Lionello Sacchi
- lsacchi&sielups.com
-9465
- Oldenburgische Landesbank AG
- Ingo Stadtsholte
- ingo.stadtsholte&olb.de
-9466
- CILEA
- Paola Tentoni
- tentoni&cilea.it
-9467
- iBanx B.V.
- Bart Selders
- bart.selders&ibanx.nl
-9468
- Universite de la Mediterranee (Aix Marseille 2)
- Serge Portella
- Serge.Portella&mediterranee.univ-mrs.fr
-9469
- Starlab nv/sa
- Ivo Clarysse
- soggie&starlab.net
-9470
- Alfa.con Team S.p.A.
- Enzo Re
- ere&alfaconteam.it
-9471
- PortWise AB
- Stefan Bogstedt
- stefan.bogstedt&portwise.com
-9472
- Jeje.org
- Jerome Fleury
- jeje&jeje.org
-9473
- SafeStone Technologies PLC
- Jeff Davis
- jdavis&safestone.com
-9474
- SIRT
- Luke Guelfi
- l.guelfi&sirt.tv
-9475
- 365 Corporation
- Malcolm Locke
- malcolm.locke&365corp.com
-9476
- ESRF
- Staffan Olsson
- ldapmaster&esrf.fr
-9477
- Market Central, Inc.
- Alan Gavaert
- alang&mctech.com
-9478
- MyLuckyWorld
- Roger Mikalsen
- roger&myluckyworld.com
-9479
- WebCollage
- Ori Sternberg
- ori.sternberg&webcollage.com
-9480
- Notus Key Limited
- Benjamin Hille
- benjamin.hille&notuskey.com
-9481
- Backer Software Research
- Rombout de Backer
- rombout+iana&gewis.win.tue.nl
-9482
- ENS-Lyon
- Martin Quinson
- mquinson&ens-lyon.fr
-9483
- PSI AG
- Frank Bredenbroecker
- fbredenbroecker&psi.de
-9484
- ision france
- Nicolas PY
- npy&ision.fr
-9485
- FUTUROCOM
- Jean-Pierre BORG
- jeanpierre.borg&futurocom.com
-9486
- Powwow Germany GmbH
- Jens Bollmann
- jensb&powwowwater.de
-9487
- saardata GmbH
- Bernd Schmitt
- b.schmitt&saardata.de
-9488
- Circuit City Stores
- Frank Smalara
- domaintech&circuitcity.com
-9489
- SAXA, Inc. (formerly 'Taiko Electric Works, LTD')
- Yoshinari Hasegawa
- hasegawa.yo&saxa.co.jp
-9490
- Scorecon International
- Ryan Denneny
- rd&tap.net
-9491
- VECTAN
- Christian Beckmann
- c.beckmann&vectan.de
-9492
- The Cobalt Group
- Marty Ahern
- mahern&cobaltgroup.com
-9493
- iOpen Technologies Ltd.
- Richard Waid
- richard&iopen.co.nz
-9494
- IFILM
- John Turk
- turk&ifilm.com
-9495
- etee2k.net
- Ed Truitt
- ed.truitt&etee2k.net
-9496
- AT&T Enhanced Network Services
- Dehui Peng
- dpeng&attens.com
-9497
- IDini Corporation
- Swarraj Kulkarni
- kulkarni&idini.com
-9498
- Telekommunikation Mittleres Ruhrgebiet GmbH
- Thomas Neumann
- t.neumann&tmr.net
-9499
- Exacube System Inc.
- Byounggwon Gim
- gbg&exacube.co.kr
-9500
- Byte Alliance
- Michael Bishop
- mbishop&bytealliance.com
-9501
- SVA-INTRUSION.COM Co. LTD
- Sun Xian
- sunxian&yahoo.com
-9502
- Ross Technology Group, Inc.
- Jason Mitchell
- jmitchel&rtgx.com
-9503
- Telemovil El Salvador
- Roberto Carlos Navas
- rcnavas&telemovil.com
-9504
- tops.net GmbH & Co Online Publishing Services KG
- Andreas Buschka
- andreasbu&tops.net
-9505
- bone labs GmbH
- Burkhard Wiegel
- b.wiegel&bonelabs.net
-9506
- Real Solutions Ltd.
- Brian Murphy
- realsoln&ihug.co.nz
-9507
- Wharton Electronics
- Alastair S. Wharton
- alastair&wharton.co.uk
-9508
- MobileSpear Inc.
- Nitzan Daube
- nitzand&mobilespear.com
-9509
- Enkash Payment Network
- Denis Bider
- enkash-oid&denisbider.com
-9510
- KONSYS
- Jacek Gretkiewicz
- jacekg&konsys.com.pl
-9511
- Vulkan Technic GmbH
- Eric Hack
- hack-consult&vulkantechnic.de
-9512
- Online Consulting, Ltd.
- Ivan Debnar
- debnar&o-c.sk
-9513
- Exacomm Systems
- Jan van der Lugt
- j.lugt&exacomm.nl
-9514
- Konica Business Technologies, Inc.
- Brian Spears
- spearsb&konicabt.com
-9515
- Sugar Creek Packing Co.
- Todd Pugh
- tpugh&sugar-creek.com
-9516
- Digital World Services
- Sean Corrigan
- sean.corrigan&dwsco.com
-9517
- Sanrise Inc
- Suresh Ravoor
- suresh.ravoor&sanrise.com
-9518
- Pratt & Whitney
- Douglas Conrath
- conratda&pweh.com
-9519
- Soward Network Solutions
- John Soward
- soward&soward.net
-9520
- Phase2 Software Corp
- Bill Spencer
- bill&p2software.com
-9521
- PED Computers
- Joseph Engo
- jengo&mail.com
-9522
- Personeta
- Ronen Wolfson
- ronen&personeta.com
-9523
- ST E15
- Sabine Feuchter
- sabine.feuchter&icn.siemens.de
-9524
- Andiamo Systems, Inc
- Ian Wallis
- iwallis&andiamo.com
-9525
- BBC Monitoring
- John Blakeley
- john.blakeley&mon.bbc.co.uk
-9526
- Shawmut Design & Construction
- Russell Pitre
- rpitre&shawmut.com
-9527
- Inkras Networks Corporation
- Ash Sundar
- ash&inkra.com
-9528
- Iyago
- Neal Katz
- nkatz&yahoo.com
-9529
- Global Relay Inc.
- Eric Parusel
- eric.parusel&globalrelay.net
-9530
- CQUR . COM
- Duncan Matthew Stirling
- duncan&cqur.com
-9531
- Integra Telecom
- David Stults
- david.stults&integratelecom.com
-9532
- Group 1 Software
- Kyle Chapman
- kyle_chapman&g1.com
-9533
- TrueDisk
- Don Buchholz
- don&truedisk.com
-9534
- Handrew
- Jason Han
- ccjhan&yahoo.com
-9535
- Zurita Solutions
- Brian Zurita
- bz01&zurita.com
-9536
- Massey University
- Keith Linforth
- soa&massey.ac.nz
-9537
- Navox Corporation
- Jacques Turcotte
- jacques.turcotte&smisrd.com
-9538
- StorageWay Inc.
- Barry Van Hooser
- bvh&storageway.com
-9539
- STSN
- Doug Burns
- dburns&stsn.com
-9540
- Altentia
- Delavaux
- delavaux&altentia.fr
-9541
- Lokaal Netwerk Gravenstraat
- B.A.M. van Zanten
- Ben&van.Zanten.name
-9542
- College of Engineering and Computer Science
- Mike Wimple
- wimple&ecs.csus.edu
-9543
- Schwoo, Inc.
- Jason Milletary
- jason&schwoo.com
-9544
- Electrical and Computer Engineering Dept., UBC
- Robert Ross
- admin&ece.ubc.ca
-9545
- State Street Corp.
- Gerard Puoplo
- gpuoplo&statestreet.com
-9546
- Dominet Systems
- Denton Gentry
- registrar&dominetsystems.com
-9547
- foo Corporation
- Jim Jones
- jsjones&acm.org
-9548
- Datachron Inc.
- Clyde Davis
- time&datachroninc.com
-9549
- Southern Network Services, Inc.
- Brian Snipes
- bsnipes&southernnetwork.com
-9550
- vox2vox Communications, Inc.
- Manfred Koroschetz
- mkoroschetz&vox2vox.com
-9551
- Kompu-Art Studiu Komputerowe
- Marek Habersack
- grendel&vip.net.pl
-9552
- Financial IQ Pty Ltd
- Jye Tucker
- jtucker&iqgroup.net
-9553
- Automaton Ltd
- Andrew Loh
- andrew&automaton.com
-9554
- Clear River Technologies, LLC
- Dan Kuykendall
- info&clearrivertech.com
-9555
- AsiaInfo Technologies(China), Inc.
- Jerry Jiang
- jiangwr&asiainfo.com
-9556
- Great Wall Broadbank Network Service Co.Lt
- Gao Yu
- gaoyu&gwbn.net.cn
-9557
- Synso Inc.
- Steve Tsai
- steve&synso.com
-9558
- Kent Ridge Digital Labs
- Yang Lingjia
- lingjia&krdl.org.sg
-9559
- National Security Research Institute
- Inkon Kang
- firefly&etri.re.kr
-9560
- SECUI
- Namsik Yoon
- namsik.yoon&secui.com
-9561
- Netia Telekom S.A.
- Piotr Roszatycki
- piotr_roszatycki&netia.net.pl
-9562
- Magnum Imperium Limited
- Rob Hodgkinson
- rob&magi.co.uk
-9563
- Suffolk College
- M Thomason
- matthew.thomason&suffolk.ac.uk
-9564
- mediaWays GmbH Internet-Services
- Lars Uffmann
- lars.uffmann&mediaways.net
-9565
- Xerox Mobile Solutions
- Andrew Everitt
- andrew.everitt&gbr.xerox.com
-9566
- HBO-CE
- Lajos Okos
- lajos&hbo.hu
-9567
- Skilldeal AG
- Dr. Guido Seifert
- gseifert&skilldeal.com
-9568
- DataGrid
- Alex Martin
- a.j.martin&qmw.ac.uk
-9569
- MGF Logistique
- Philippe Bezamat
- phb&mgf.fr
-9570
- University of Leoben/Austria
- Zentraler Informatikdienst
- kamenik&unileoben.ac.at
-9571
- Erskine Systems Ltd
- Simon T Smith
- simon.smith&erskine-systems.co.uk
-9572
- AlienThing.com
- Jeremy Nicholas
- boyalien&yahoo.com
-9573
- MB-NET
- Michael Bussmann
- iana&mb-net.net
-9574
- NCIC Clinical Trials
- Mike Broekhoven
- mbroekhoven&ctg.queensu.ca
-9575
- Grupo de Programação na Web(WPG)
- Rodrigo Prestes Machado
- rpm&atlas.ucpel.tche.br
-9576
- Crédit Mutuel de Bretagne
- Tanguy Eric
- partnre.tanguer&partnre.com
-9577
- Xtelligent IT Consulting GmbH
- Gottfried Scheckenbach
- info&xtelligent.de
-9578
- Mission Critical Linux, Inc.
- Kris Corwin
- corwin&MissionCriticalLinux.com
-9579
- Followap
- Dror
- dror&followap.com
-9580
- New Hemisphere Computer Services
- Marcus Patton
- marcuspatton&onetel.net.uk
-9581
- Quad One Technologies Pvt. Ltd.
- K. Sarath Chandra
- sarath&quad-one.com
-9582
- CCS Communications Pty. Ltd.
- John Lewis
- johnl&ccscomms.com.au
-9583
- BBC Technology Supply Ltd
- Danny Cooper
- danny.cooper&bbc.co.uk
-9584
- Lucent Technologies NADP
- Roman Biesiada
- bies&lucent.com
-9585
- National Enhance Technology Corp.
- Blake Hung
- netsys&netsys.com.tw
-9586
- Debian
- Wichert Akkerman
- iana&debian.org
-9587
- Global Trust Authority
- John Tunstall
- john.tunstall&gta.multicert.org
-9588
- IT Insourcing
- Claude Leuchter
- leuchter&it-insourcing.ch
-9589
- Currenex, Inc.
- Tino Tran
- tino.tran&currenex.com
-9590
- The MathWorks Inc.
- Joe Steele
- jsteele&mathworks.com
-9591
- Thinking Cat Enterprises
- Leslie Daigle
- leslie&thinkingcat.com
-9592
- Luke Crawford Enterprises
- Luke Crawford
- luke&prgmr.com
-9593
- SysNet Informática Ltda
- Alvaro Manoel Martins Pereira
- alvaro&sn-sysnet.com
-9594
- Tape Products Company
- David Frampton
- daf&tapeproducts.com
-9595
- Zephion Networks
- Srinivas Upadhyaya
- srinivas&zephion.net
-9596
- PimpCode
- Marc Martinez
- lastxit&pimpcode.org
-9597
- Blue Silicon
- Jian Zheng
- jzheng&blue-silicon.com
-9598
- MBNA America
- Roland Trevino
- roland.trevino&mbna.com
-9599
- LDAPGURU.COM LLC
- Rohan Pinto
- rpinto&ldapguru.net
-9600
- Williams Technology Consulting Services
- Garth K. Williams
- garth.williams&wtcs.org
-9601
- Keewaytinook Okimakanak
- Adi Linden
- adilinden&knet.ca
-9602
- Zoftech Inc.
- Dustin Norman
- dustin&zoftech.com
-9603
- AF Enterprises
- Andrew Finlay
- andrew&andrewfinlay.com
-9604
- afuu
- Jean Brange
- jean&afuu.fr
-9605
- Xyterra Computing Inc
- Joe Chisolm
- jchisolm&xyterra.com
-9606
- Linvision B.V.
- Roel van Meer
- r.vanmeer&linvision.com
-9607
- MSTC
- Hideichi Okamune
- okamune&honbu.mstc.or.jp
-9608
- ntelsOh
- SungHwan
- shoh&ntels.com
-9609
- Impaster Co. Ltd
- Jun Sheng
- js_tessida&yahoo.com
-9610
- Milosch.net
- Miles Lott
- milos&speakkeasy.net
-9611
- Infosim
- Marius Heuler
- support&infosim.com
-9612
- Kobe Steel, Ltd.
- Hideo Ikeda
- h-ikeda&rd.kcrl.kobelco.co.jp
-9613
- nlsde
- Jiangning
- jiangning&nlsde.buaa.edu.cn
-9614
- GoCruiseDirect.com
- Steve Summerlin
- ssummerlin&stertech.com
-9615
- Danfoss A/S
- Allan Sandbak
- AS&danfoss.com
-9616
- Kreatel Communications AB
- Tomas Hagström
- tomas.hagstrom&kreatel.se
-9617
- GSX Groupware Solutions
- Rodouan El Hichou
- relhichou&gsx.net
-9618
- Utrechtse Werkbedrijven
- Rob Janssen
- r.janssen&uw-werk.nl
-9619
- Nextra Austria
- Andreas Zoettl
- andreas.zoettl&nextra.com
-9620
- National Land Survey of Finland
- Computing Centre
- hostmaster&nls.fi
-9621
- MOLO AFRIKA SPEECH TECHNOLOGIES
- Charl Barnard
- info&molo.co.za
-9622
- QuesCom
- Stephan Malric
- stephan.malric&quescom.eu
-9623
- Copenhagen Airports
- IT Hostmaster
- hostmaster&cph.dk
-9624
- Radianz
- Luke Yee
- luke.yee&radianz.com
-9625
- Utesch
- Christian Utesch
- christian&utesch-online.de
-9626
- Alessandro Triglia
- Alessandro Triglia
- sandro&mclink.it
-9627
- S J Shipinski Services
- Stu Shipinski
- stuship&mediaone.net
-9628
- Groupe CASINO
- David Barrat
- dbarrat&groupe-casino.fr
-9629
- Mastermind Technologies
- Chris Mangold
- cmangold&mmtmail.com
-9630
- e-moveum
- Fco Javier Lopez
- fjlopez&e-moveum.com
-9631
- eSniff, Inc.
- Jack Flory
- jack.flory&esniff.com
-9632
- Individual
- Adi Vaizovic
- adi.vaizovic&zaslon-telecom.si
-9633
- SED Systems
- Pat Thera
- thera&sedsystems.ca
-9634
- API Networks, Inc
- Eric Rowe
- eric.rowe&api-networks.com
-9635
- Tropico Sistemas e Telecomunica=E7=F5es SA
- Sileno Rocco
- sileno.rocco&tropiconet.com.br
-9636
- netFORMAT GmbH
- Mario Beck
- beck&netformat.de
-9637
- Alliance & Leicester PLC
- Paul Thompson
- paul.thompson&alliance-leicester.co.uk
-9638
- AlphaGraphics, Inc.
- Greg Bailey
- gbailey&alphagraphics.com
-9639
- Appium AB
- Thomas Tallinger
- thomas.tallinger&appium.com
-9640
- Astrolink International LLC
- Jerry Hannon
- jhannon&astrolink.com
-9641
- Azusa Pacific University
- James Janssen
- jjanssen&apu.edu
-9642
- Bibop Research, int. S.p.A. Gianugo
- Rabellino
- g.rabellino&bibop.it
-9643
- CEULP/ULBRA
- Augusto Jun Devegili
- devegili&ulbra-to.br
-9644
- Cornwall Internet Limited
- Clive Goodhead
- clive&swnet.net
-9645
- courtade.net
- Jeff Courtade
- jeff&courtade.net
-9646
- Cybectec
- Patrick Cossette
- pcossette&cybectec.com
-9647
- EWIP
- Marius Costeschi
- marius.costeschi&ewir.ro
-9648
- GeekBone Co. LTD
- Jimmy Cheng
- jacob_d&usa.net
-9649
- Hochschule Bremen
- Uwe Jans
- jans&hs-bremen.de
-9650
- Infoclan
- Vijay Kumar
- vijay.c.kumar&mail.sprint.com
-9651
- Kele
- Wendell Murray
- wendellm&kele.com
-9652
- LNS SA
- Mike Reilly
- admin&lns.ch
-9653
- Mosotech Limited
- Bryan Wu
- llwu&yahoo.com
-9654
- NIC France
- Lubrano Philippe
- lubrano&nic.fr
-9655
- Optidev AB
- Anders Ericsson
- anders.ericsson&optidev.se
-9656
- Routit BV
- Leon Boshuizen
- llcboshuizen&routit.nl
-9657
- S://Scape Communications Inc.
- Colin Ryan
- colinr&s-scape.ca
-9658
- Solers
- James Globe
- jglobe&solers.com
-9659
- Synapsys Ltd
- Luke Hart
- luken&synapsys.com
-9660
- Telecel Comunicações pessoais S.A
- Pedro Aleixo
- aleixop&telecelvodafone.pt
-9661
- Teletron INC
- Sangwoo Jin
- swjinjin&teletron.co.kr
-9662
- TUEV-AT-TRUST Center GmbH
- Stickler Gerald
- stickler.gerald&tuev.or.at
-9663
- UNIVERSITE LUMIERE LYON2
- Pierre Ageron
- Pierre.Ageron&univ-lyon2.fr
-9664
- Widgital
- Kristy McKee
- k&widgital.com
-9665
- ZyGATE Communications Inc.
- Astro Lin
- astrolin&zygate.com.tw
-9666
- Alcatel Optronics
- Bernadette Leclaire
- bernadette.leclaire&alcatel.fr
-9667
- Austar United
- Ronald Yii
- ryii&austar.com.au
-9668
- Talent Network Security Technology Co., Ltd.
- Wanli Liu
- liuwanli&263.net
-9669
- University of London
- Malcolm Ray
- oids&ulcc.ac.uk
-9670
- BROADi
- bytexu
- bytexu&sina.com
-9671
- Time Warner
- Bill Burns
- oid-admin&aol.net
-9672
- Apropos Technology, Inc.
- Mike Schisler
- mike.schisler&apropos.com
-9673
- Denison University
- Charlie Reitsma
- reitsmac&denison.edu
-9674
- Fingerhut
- LANWAN Group
- lanwan&fingerhut.com
-9675
- Grupo Financiero Uno
- Fernando Medina
- fmedina&nic.pibnet.com
-9676
- hottis.de
- Wolfgang Hottgenroth
- woho&hottis.de
-9677
- Hydriads
- Jose González Gómez
- jgongo&mail.com
-9678
- K.U. Leuven
- Jan Du Caju
- sst&kulnet.kuleuven.ac.be
-9679
- mBalance
- Eloy Nooren
- eloy.nooren&mbalance.com
-9680
- SelectMetrics, Inc.
- Chris Lamb
- hostmaster&selectmetrics.com
-9681
- Mortgage Systems International
- David Max
- davidmax&mtgsi.com
-9682
- Novadeck
- Jean-Philippe Schaller
- jps&novadeck.com
-9683
- Plattsburgh State University
- David Anderson
- andersdl&plattsburgh.edu
-9684
- PoweriseNet
- Hu Yajun
- yajun_hu&yahoo.com
-9685
- Ranch Networks, Inc.
- Satyen Chandragiri
- satyen&ranchnetworks.com
-9686
- Ruby Networks, Inc.
- Payam Mirrashidi
- payam&rubynetworks.com
-9687
- SAProperty.com
- Geoff Payne
- geofflp&webmail.CO.za
-9688
- Tahoe Networks, Inc.
- Steve Alexander
- sca&tahoenetworks.com
-9689
- TBD Networks
- Norbert Kiesel
- nkiesel&tbdnetworks.com
-9690
- Terralab
- Adam Hull
- adam&terralab.com
-9691
- Children's Hospital Colorado (formerly 'The Children's Hospital of Denver')
- Nobuo Matsushita
- nobuo.matsushita&childrenscolorado.org
-9692
- Tool Object
- Guillaume Cardoner
- gcardoner&toolobject.fr
-9693
- UND School of Medicine and Health Sciences
- Barry Pederson
- barryp&medicine.nodak.edu
-9694
- Arbor Networks
- SNMP Administration
- snmp&arbor.net
-9695
- Encotone Ltd.
- Ted Kandell
- hyehosha&encotone.com
-9696
- Uffizio India Software Consultants Pvt. Ltd.
- Macneil Mendes
- rajeshvn&rediffmail.com
-9697
- Accelance
- Thomas Favier
- tf&accelance.fr
-9698
- AIA Australia
- Andrew Cosgriff
- ajc&aiaa.com.au
-9699
- Axis Consulting
- Bill Brower
- bbrower&axc.com
-9700
- Boehringer-Ingelheim GmbH
- Lothar Schildwaechter
- schildwa&ing.boehringer-ingelheim.com
-9701
- Commerce NTI
- Mark Hollow
- mhollow&commercenti.com
-9702
- Comtech Belgium
- Jean Michalski
- jmichalski&comtech.be
-9703
- Datafoundation Inc.Valerii
- Soika
- soika&datafoundation.com
-9704
- Diversified Resourceful Solutions Inc.
- David Verbrugge
- drs&axxent.ca
-9705
- ecos gmbh
- Gerald Richter
- richter&ecos.de
-9706
- HackersLab
- Byunghak Kim
- bhkim&hackerslab.com
-9707
- Institut National Polytechnique de Lorraine
- Benoit Marchal
- Benoit.Marchal&ensem.inpl-nancy.fr
-9708
- Jack Morton Worldwide
- Adam Hull
- adam_hull&jackmorton.com
-9709
- Micro Connect Pty Ltd
- Craig Price
- craig.price&microconnect.com.au
-9710
- Monzoon Networks AG
- Matthias R. Koch
- support&monzoon.net
-9711
- Novedia
- Tuneke
- tuneke&novedia.de
-9712
- obzen Inc.
- SungUng Yoo
- ysu&obzen.com
-9713
- Opera Software AS
- Krystian Zubel
- kzubel&opera.com
-9714
- Ruhrsoft
- Frank Bredenbröcker
- frank.bredenbroecker&ruhrsoft.de
-9715
- Sigma AB
- Pia Westerberg-Selin
- pia.selin&sigma.se
-9716
- State of North Dakota
- Jeff Carr
- jcarr&state.nd.us
-9717
- Teleca AB
- Göran Johansson
- goran.johansson&teleca.com
-9718
- TransACT Communications
- Mark Hill
- mark.hill&transact.com.au
-9719
- Tronicplanet Online Datendienst GmbH
- Thoni Bernhard
- webmaster&tronicplanet.de
-9720
- Tryx
- Rik Tytgat
- rik.tytgat&tryx.com
-9721
- VWR International
- Terrence Meehan
- tmeehan&vwrsp.com
-9722
- Workhorse Computing
- Steven Lembark
- lembark&wrkhors.com
-9723
- Coradiant
- Frederic Dumoulin
- fdumoulin&coradiant.com
-9724
- Datacast Inc.
- Christian Trepanier
- ctrepanier&datadact.com
-9725
- INFOservice
- Hellmut Adolphs
- hellmut_adolphs&infonet.it
-9726
- Nitroba
- Simson L. Garfinkel
- simsong&nitroba.com
-9727
- Tryllian
- Y. Duppen
- yigal&tryllian.com
-9728
- WWF Wort + Ton GmbH e-media
- Marc Pohl
- marc.pohl&wwf-gruppe.de
-9729
- EVERelite, Co., Ltd.
- Nicholas Hsiao
- nicholas.hsiao&ever.com.tw
-9730
- Solutus Pty Limited
- Megennis Weate
- magennis.weate&solutus.com.au
-9731
- 5down
- Benny Morrison
- benny_morrison&yahoo.com
-9732
- Adrenaline Ingenierie Multimedia
- Alexandre Allien
- info&aim.fr
-9733
- Aral Systems GmbH
- Frank Baasner
- frank.baasner&aral.de
-9734
- Astrum Software Corporation
- James Moody
- james&astrumsoftware.com
-9735
- Coredump Ky
- Taneli Leppä
- rosmo&coredump.fi
-9736
- Dublin City University
- Donal Hunt
- sysops&dcu.ie
-9737
- Fourtheye
- Bob Wilkinson
- bob9960&btinternet.com
-9738
- Gedoplan GmbH
- Stephan Zdunczyk-kohn
- szk&gedoplan.de
-9739
- Hobnobbers.net
- Richard Stobart
- richardstobart&mail.com
-9740
- iBEAM Broadcasting Corporation
- Stefan Hudson
- shudson&ibeam.com
-9741
- Keiren
- Frank Keiren
- frank&keiren.net
-9742
- DESCOM CONSULTING, S.L.
- Luis Colorado
- luis.colorado&descom.es
-9743
- NCHICA
- W. Holt Anderson
- holt&nchica.org
-9744
- peoplecall.com
- Francisco Olarte Sanz
- folarte&peoplecall.com
-9745
- Radix Controls Inc.
- Marc Noel
- marcn&radixcontrols.com
-9746
- RFNet Technologies Pte Ltd
- Tan Chin Thong
- cttan&acm.org
-9747
- RoamingTest Ltd
- Steve Webster
- swebster&roamingtest.com
-9748
- ROW Software and Web Design
- Kurt Weber
- kmw&rowsw.com
-9749
- SpectraLink Corporation
- Mark Hamilton
- mah&spectralink.com
-9750
- The Pillars
- Robert August Vincent II
- sysadmin&pillars.net
-9751
- Trevilon Corp.
- Kenneth Vaughn
- kvaughn&trevilon.com
-9752
- University of Missouri
- Randy Wiemer
- wiemer&missouri.edu
-9753
- Vernier Networks, Inc.
- Ken Klingman
- kck&verniernetworks.com
-9754
- Vertis DSG Chicago
- Martyn Wilson
- mwilson&ltcgroup.com
-9755
- Webasto Informationssysteme GmbH
- Markus Svec
- swsadminnt&webasto.de
-9756
- woerd Erdmenger & Wolter GbR
- Joerg Erdmenger
- joe&woerd.com
-9757
- Aral Aktiengesellschaft & Co. KG
- Thomas Vögel
- thomas.voegel&aral.de
-9758
- Metadigm Ltd
- Alan McRae
- amcrae&metadigm.co.uk
-9759
- Aplicaciones y Consultoria, S.A. de C.V.
- Javier Arturo Rodriguez
- jrodriguez&agharti.org
-9760
- Cellcast
- Or Tal
- ortal&cellcast.com
-9761
- Corporate Express
- Vince Taluskie
- vince.taluskie&cexp.com
-9762
- Datacom Systems Inc.
- Andrew M. Perkins
- aperkins&datacomsystems.com
-9763
- Eonite, Inc.
- Sean Casey
- sean&eonite.com
-9764
- Forschungszentrum Rossendorf e.V.
- Nils Schmeisser
- N.Schmeisser&fz-rossendorf.de
-9765
- ILRYUNG TELESYS
- Ohduck Kwon
- haming&irts.co.kr
-9766
- Joseph S Dovgan DDS MS
- Joseph S Dovgan
- jsdovgan&uswest.net
-9767
- Lectron CO., LTD
- Grant Kang
- grant&lectron.com.tw
-9768
- Lynchburg College
- Paul Spaulding
- spaulding_w&mail.lynchburg.edu
-9769
- Nuance Communications
- Floyd Haas
- fhaas&nuance.com
-9770
- OpenOffice.org
- Lutz Hoeger
- lho&openoffice.org
-9771
- PAION Co. Ltd.,
- Someshwar Parate
- parate&paion.com
-9772
- pentasecurity
- Lee Hyo Seob
- tosun&pentasecurity.com
-9773
- SpunHead Industries
- Floyd Haas
- fhaas&ix.netcom.com
-9774
- Streets Online Ltd.
- Andrew Schofield
- andrews&infront.co.uk
-9775
- TNT Software, Inc.
- Steve Taylor
- stevetaylor&tntsoftware.com
-9776
- Wireless Network Services
- Erkki Seppälä
- erkki.seppala&wnsonline.net
-9777
- Arelnet Ltd.
- Avi Gliksberg
- avig&arelnet.com
-9778
- AxONLink
- Marc Zerdoug
- marc.zerdoug&ecitele.com
-9779
- Empire State College
- Bill Melvin
- hostmaster&esc.edu
-9780
- Entreprise des Postes et Telecommunications
- Laurent Sliepen
- laurent.sliepen&ept.lu
-9781
- Jerntorget Sverige AB
- Peter Östlund
- ma&jerntorget.se
-9782
- JM Family Enterprises, Inc.
- Mike Miller
- mike.miller&jmfamily.com
-9783
- Vayusphere, Inc.
- Pushpendra Mohta
- pushp&vayusphere.com
-9784
- icoserve information technologies
- Raimund Vogl
- r.vogl&icoserve.com
-9785
- Praxis Technical Group, Inc.
- Graeme Smecher
- gsmecher&home.com
-9786
- A.I.S. AngewandteInformations-Systeme GmbH
- Andreas Heidemann
- a.heidemann&windream.com
-9787
- ActiveState Corp.
- Massoud Sarrafi
- massouds&activestate.com
-9788
- Advisor Technologies Limited
- James Unitt
- james.unitt&advisortechnologies.com
-9789
- Astaro AG
- Dennis Koslowski
- dkoslowski&astaro.de
-9790
- Australia On Line
- Michael Bethune
- mike&ozonline.com.au
-9791
- Centre de Telecomunicacions i Tecnologies de la Informacio
- Jaume Diaz Serret
- jdiaz&ctele.gencat.es
-9792
- Clayhill KG
- Christoph Grigutsch
- cg&clayhill.de
-9793
- CloudShield Technologies, Inc.
- Neal Matthews
- neal&cloudshield.com
-9794
- CYTBeN
- Bryce Wade
- bryce&cytben.com
-9795
- EBS Dealing Resources, Inc
- Mike Merold
- mmerold&ebsdr.com
-9796
- ENX Association (formerly 'European Network Exchange')
- Immo Wehrenberg
- immo.wehrenberg&enx.com
-9797
- EVER Sp. z o.o.
- Piotr Strzelecki
- pstrzelecki&ever.com.pl
-9798
- Griff-IT Ltd.
- Jon Griffiths
- jon.griffiths&griff-it.com
-9799
- Holos Software, Inc.
- Frank S. Glass
- fsg&holos.com
-9800
- iNIT-8
- Steffo Weber
- s-weber&init8.net
-9801
- ISIS Frontier Communications
- Kitt Diebold
- isis_system&frontiernet.net
-9802
- IUFM de Rouen
- Nathalie Delestre
- Nathalie.Delestre&rouen.iufm.fr
-9803
- L-3 Communication Systems - East
- Heshy Bucholz
- robert.bucholz&l-3com.com
-9804
- Lefthand Networks
- Jose Faria
- jfaria&lefthandnetworks.com
-9805
- Neveda City School District
- Bill MacAllister
- bill.macallister&ncsd.k12.ca.us
-9806
- PRIDE Industries
- Bill MacAllister
- bill.macallister&prideindustries.com
-9807
- Prism Holding Limited
- Piet de Weerdt
- pietdw&prism.co.za
-9808
- Rocklea Spinning Mills Pty Ltd
- Grant Coffey
- itdept&rocklea.com.au
-9809
- Root, Int.
- David Ulevitch
- davidu&phreedom.net
-9810
- Sagent
- Derek Brouwer
- dbrouwer&sagent.com
-9811
- Secure Appliance Systems
- Pascal André
- andre&enetten.com
-9812
- SolNet
- Markus Binz
- mbinz&solnet.ch
-9813
- TAB Queensland Limited
- Darryl Green
- green&tabq.com.au
-9814
- Telia IT-Service AB
- Magnus Hoglund
- magnus.j.hoglund&telia.se
-9815
- VSpace, Inc.
- Jeffrey C. Byrd
- admin&vspacegroup.com
-9816
- WANWALL
- Alexander Finkelshtein
- alex&wanwall.com
-9817
- WaveNET International (Pvt) Ltd.
- Vance Shipley
- vance&wavenet.lk
-9818
- Xwave GmbH
- Marcus Spiegel
- marcus.spiegel&xwave.ch
-9819
- yLez Technologies Pte Ltd
- Leonard Ye
- leonard_ye&ylez.com
-9820
- ZOX-IT
- Markus Sell
- marcus.sell&zox-it.com
-9821
- Zoznam s.r.o.
- Radoslav Volny
- volny&firma.zoznam.sk
-9822
- Accella Technologies Co., Ltd
- Linwei
- linwei&accellatek.com
-9823
- Diageo
- John Pooley
- john.pooley&diageo.com
-9824
- GenTek
- Hugo Latapie
- latapie&we.mediaone.net
-9825
- Geospiza Inc.
- Andrew Leonard
- andy&geospiza.com
-9826
- ImagiCode Studios
- Robert Marano
- rob&imagicode.com
-9827
- Neocles
- Leclere Alexandre
- alecler&neocles.com
-9828
- pgamAPD
- Kip Cranford
- kip.cranford&pgamapd.com
-9829
- SAIT Ltd
- Andrew Kouzmenko
- sait-ltd&mtu-net.ru
-9830
- Thunderbird, the American Graduate School of International Management
- Johan Reinalda
- netadmin&t-bird.edu
-9831
- Vivre Inc
- Piyush Srivastava
- piyusrivastav&hotmail.com
-9832
- solobird
- JayeulKu
- solobird&orgio.net
-9833
- Legend Holdings Ltd.
- Chunsheng Xu
- xucs&legend.com
-9834
- Agencja Uslug InformatycznychARTCOMP
- Miroslaw Olkusz
- artcomp&lomza.man.pl
-9835
- Alien Network
- Sergey Budyanskiy
- svb&alien.ru
-9836
- AOK Bayern
- Manfred Habermeier
- manfred.habermeier&holzkirchen.by.aok.de
-9837
- Ball State University
- OID Administrator
- oidadmin&bsu.edu
-9838
- Broadview Networks, Inc.
- Bob Hill
- bhill&broadviewnet.com
-9839
- CAREL
- Sebastiano Fiorindo
- sebastiano.fiorindo&carel.com
-9840
- carreregroup
- stéphane camberlin
- urnammu&free.fr
-9841
- Christian Dusek EDV-Dienstleistungen
- Christian Dusek
- iana-pen&lists.dusek.ch
-9842
- ET Networks
- Edward Tulupnikov
- et&et.com.ru
-9843
- Kai Industries
- Warren Kimberlin
- wkimberl&engineer.com
-9844
- Kansas State University
- Neil Erdwien
- neil&ksu.edu
-9845
- LANBIRD Technology Co., Ltd.
- Jong-Min Park
- chianghs&lanbird.co.kr
-9846
- LIP - Laboratório de Instrumentação e Física Experimental de Partículas
- Jorge Gomes
- jorge&lip.pt
-9847
- Listen.com
- Matthew T. Darling
- mdarling&listen.com
-9848
- Lou Johnson
- Lou Johnson
- lou&xmlstrategies.net
-9849
- M-Web Indonesia
- Edwin Pratomo
- edwin&satunet.com
-9850
- NextGig
- Jeremy Worrells
- jworrell&nextgig.com
-9851
- NTT SOFT
- Satoshi Yamashita
- s_yama&po.ntts.co.jp
-9852
- Odigo Inc
- Ilan Ravid
- ravid&odigo.com
-9853
- Payment Technologies
- Jim Hively
- jim.hively&paytec.com
-9854
- Red Box Recorders Limited
- Robert Jones
- rjones&origin-data.co.uk
-9855
- Shawsoft GmbH
- Michael Shaw
- mike.shaw&shawsoft.comELIZABETH JOHNSON
-9856
- UCLA Communications Technology Services
- Mary Latham
- mlatham&cts.ucla.edu
-9857
- Unicom an e-security company
- Diego Martin Barreiro Fandiño
- dmartin&unicomsecurity.com
-9858
- University of Maryland, Baltimore County
- Robert Banz
- robert.banz&umbc.edu
-9859
- University of Medicine and Dentistry of New Jersey
- Clifford Green
- green&umdnj.edu
-9860
- Vizional Technologies, Inc.
- Gregory Kaestle
- gkaestle&vizional.com
-9861
- Webdesign Internet Service GmbH
- Andreas Fischer
- af&wdis.de
-9862
- Claredi Corporation
- Travis Stockwell
- travis.stockwell&claredi.com
-9863
- DataRojahn A/S
- Asbjørn Krogtoft
- krogtoft&hotmail.com
-9864
- J Walter Thomposon Company
- Chad Milam
- chad.milam&jwt.com
-9865
- Karmanos Cancer Institute
- Jennifer Telisky
- teliskyj&karmanos.org
-9866
- Outokumpu Oyj
- Juha Koljonen
- juha.koljonen&outokumpu.com
-9867
- Third Rail Americas
- John Kenney
- john.kenney&third-rail.net
-9868
- Millinet Co., Ltd
- Chang-Hyeon Choi
- choitut&millinet.co.kr
-9869
- Network Laboratory of Nankai University
- Qiu Lin
- qiulin&eyou.com
-9870
- graviton, Inc.
- Karyn Haaland
- khaaland&graviton.com
-9871
- Findlater Wine Merchants
- Axel Dahl
- aksel&esatclear.ie
-9872
- GEZ
- Frank Frost
- frank.frost&gez.de
-9873
- Viterra AG
- Helmut Brachhaus
- helmut.brachhaus&viterra.com
-9874
- Åbo Akademi University
- Barbro Sjöblom
- babo&abo.fi
-9875
- AVAILABLE SUPPLY Inc.
- Elizabeth Johnson
- availablesupply&gwe.net
-9876
- B2I Toulouse
- Francois GOAS
- francois.goas&b2i-toulouse.com
-9877
- California State University, East Bay
- Kent C. McKinney
- kent.mckinney&csueastbay.edu
-9878
- CareGroup HealthCare System
- Scott A. McWilliams
- scott&caregroup.org
-9879
- Cox Communications, Las Vegas
- Steven Bruen
- steve.bruen&cox.com
-9880
- Data Junction Corporation
- John Fogarty
- jfogarty&datajunction.com
-9881
- Eita Technologies, Inc.
- Greg Hester
- ghester&crosslogic.com
-9882
- Flash Technology
- Bradley T. Overton
- brad.overton&americantower.com
-9883
- Free Trade Online
- Chen Chi-Wen
- scott&fto.com.tw
-9884
- Frost-EDV
- Frank Frost
- frank.frost&frost-edv.de
-9885
- Green Packet, Inc.
- Liangsheng Chen
- lschen&greenpacket.com
-9886
- Incendiary Networks
- Jeremy Friedenthal
- jeremyf&incendiary.net
-9887
- Kristina Internet Business Solutions
- Alejandro Rojo
- arojo&kristina.com
-9888
- Linux Terminal Server Project (LTSP)
- James McQuillan
- jam&mcquil.com
-9889
- Winpresa Building Automation Technologies GmbH
- Thomas Pischinger
- Thomas.Pischinger&winpresa.com
-9890
- Media General Inc
- Chris Fanis
- cfanis&mediageneral.com
-9891
- Mensatec
- David Font
- dfont&mensatec.com
-9892
- Oregon Graduate Institute of Science and Technology
- David Barts
- dbarts&cse.ogi.edu
-9893
- Paranormal Sweden
- Jonas Liljegren
- jonas&paranormal.se
-9894
- Polestar Corp.
- Seo, YongJin
- yongjin&polestar.co.kr
-9895
- Project49 AG
- Florian Unterkircher
- florian&project49.de
-9896
- R&R Associés
- P. Varet
- varet&iie.cnam.fr
-9897
- Seranoa Networks
- Sam Shen
- sam.shen&seranoa.com
-9898
- Shindengen Electric Mfg. Co., Ltd.
- Hiroshi Minegishi
- minegishi&shindengen.co.jp
-9899
- Stinnes AG
- Frank Valdor
- frank.valdor&stinnes.de
-9900
- Telekom Applied Business Sdn. Bhd.
- Zulhedry Abdul Manaf
- zulhedry&tab.com.my
-9901
- The College of William and Mary
- Chris peck
- crpeck&wm.edu
-9902
- The University of Chicago
- Bob Bartlett
- rdb&uchicago.edu
-9903
- TI SQUARE Technology
- Jae Sil Leem
- jsleem&tisquare.com
-9904
- University of Nebraska
- Greg Gray
- ggray&nebraska.edu
-9905
- Volubill
- Pierre Rondel
- pierre.rondel&volubill.com
-9906
- Xtera Communications Inc.
- Paul Pantages
- pdp&xtera.com
-9907
- Akkaya Consulting GmbH
- Juergen Pabel
- jpabel&akkaya.de
-9908
- HiTRUST.COM (HK) Incorporated Limited
- Kevin Liou
- kevinl&hitrust.com
-9909
- Pacific Technology Services
- Kevin Chien
- kchien&pusa.com
-9910
- Absolute Software Corp.
- Ben Xu
- benxu&absolute.com
-9911
- Bantu, Inc.
- Justin Fidler
- sysadmin&team.bantu.com
-9912
- Baraga Telephone Company
- Aaron LaBeau
- noc&up.net
-9913
- Cerebra Intergrated Technologies Ltd.
- Mahesh R.
- mahesh_r&cerebracomputers.com
-9914
- Charter Communications
- Ron Cooper
- rcooper&chartercom.com
-9915
- Commtouch Software Ltd
- Arnon Ayal
- arnon&commtouch.com
-9916
- Datek Online Holdings Corp.
- Jozef Skvarcek
- jskvarcek&datek.com
-9917
- Delos Payment Systems
- Brian Beuning
- bbeuning&delosps.com
-9918
- National Oceanic and Atmospheric Administration (NOAA)
- Jefferson Ogata
- IANA.PEN.9918&noaa.gov
-9919
- earth9.com Pte Ltd
- Earl Allan
- earl&earth9.com
-9920
- ENETCO GmbH
- Stephan Meystre
- welcome&enetco.ch
-9921
- ERGO Versicherungsgruppe AG
- Klaus Niehues
- klaus.niehues&itergo.com
-9922
- eSign Australia Limited
- Richard Culshaw
- rculshaw&esign.com.au
-9923
- European Southern Observatory
- Michael Naumann
- michael.naumann&eso.org
-9924
- Excite UK Ltd
- Steven Haslam
- steve.haslam&excitehome.net
-9925
- Finest Webs
- Frank Leprich
- f.leprich&finest-webs.net
-9926
- Genie Network Resource Management
- Leah Bayer
- leah&genienrm.com
-9927
- Icehouse Net Services
- Brendan Cassida
- brendanc&icehouse.net
-9928
- Inetrify
- Marcus Adair
- marcad&convineo.com
-9929
- Integral Concepts, Inc.
- Les Matheson
- les&ivsds.com
-9930
- InterNexus Plc
- Peggy McNeal
- peggy&inter-nexus.com
-9931
- Inti
- Heungkyu Lee
- hklee&inti.co.kr
-9932
- IPFilter
- Darren Reed
- darrenr&ipfilter.com.au
-9933
- JAARS, Inc
- Chris Sheeran
- chris_sheeran&sil.org
-9934
- JANUS Research Group
- Scott Martin
- scott.martin&janusresearch.com
-9935
- Louisiana Tech University
- Daniel Schales
- dan&latech.edu
-9936
- massconfusion.com
- Palmer Sample
- lsample&massconfusion.com
-9937
- MaXXan Systems, Inc.
- Nathan Chu
- nvc&maxxan.com
-9938
- Mercury Corporation
- Amit Garg
- amass&india.mercurykr.com
-9939
- merNet Security
- Mike Robbins
- merobbins&yahoo.com
-9940
- Nine Tiles Networks Ltd
- John Grant
- j&ninetiles.com
-9941
- Objective Reality Computer LLC
- Nick McKinney
- mckinney&oreality.com
-9942
- Optimation Software Engineering
- Ron Miller
- ronm&optimation.com.au
-9943
- Prometheon, Inc.
- Ryan Nix
- rnix&prometheon.net
-9944
- SIAS Ltd
- Pete Sykes
- pete.sykes&sias.com
-9945
- Siemens Business Services AB
- Hans Jonsson
- hans.jonsson&siemens.se
-9946
- SoftSol India Limitedn
- Srinivas B
- srinivas&softsolindia.com
-9947
- Swales Aerospace, Inc.
- Dave Landis
- dlandis&swales.com
-9948
- Telekurier GesmbH & Co KG
- Markus Lirnberger
- markus.lirnberger&telekurier.at
-9949
- Ubiquitous Corp.
- Ken Kuroda
- kuroken&ubiquitous.co.jp
-9950
- Visionary Communications Inc.
- Bryan Hawkins
- bryan.hawkins&v-comm.net
-9951
- Wireless M2M, LLC
- Jack Lavender
- jlavender&wirelessm2m.net
-9952
- WuhanTIT
- Shaofeng Hu
- hsf&mail.hust.edu.cn
-9953
- Bertelsmann Gamechannel
- Marc Czichos
- marc.czichos&gamechannel.de
-9954
- craigbuchek.com
- Craig Buchek
- iana&craigbuchek.com
-9955
- Crisp Hughes Evans L.L.P.
- Nathaniel Wingfield
- nwingfield&che-llp.com
-9956
- NDS Surgical Imaging (formerly 'Planar Systems, Inc.')
- Francis Sung
- fsung&ndssi.com
-9957
- Dynamic Equilibrium Pty Ltd
- Ross Thomson
- rthomson&dyneq.com.au
-9958
- Formula/400
- Balázs Molnár
- mob&formula400.hu
-9959
- NODS
- Reyes Patrick
- reyespatrick&hotmail.com
-9960
- nuisys.com
- Deepak Chohan
- deepak_chohan&hotmail.com
-9961
- FundsXpress Financial Network
- Ken Gibson
- kgibson&fundsxpress.com
-9962
- VirCIO, LLP
- Chris Garrigues
- cwg-iana&deepeddy.com
-9963
- Advanced Computer Technologies (ACT) Inc.
- Suyoung Park
- parksy&swplaza.co.kr
-9964
- 50km Inc.
- David Uhlman
- iana_mail&50km.com
-9965
- Amministrazione Provinciale di Grosseto
- Aldo Vigetti
- a.vigetti&provincia.grosseto.it
-9966
- Beijing Huahuan Electronics Ltd.
- Sun Minghai
- sunminghai&huahuan.com
-9967
- Bluesocket, Inc.
- Suresh Gandhi
- sgandhi&bluesocket.com
-9968
- British Antarctic Survey
- Jeremy Robst
- jpro&bas.ac.uk
-9969
- Condat AG
- Jens Annighoefer
- ja&condat.de
-9970
- Custodix NV
- Daniel Lucq
- snmp&custodix.com
-9971
- CyberTel, Inc.
- Mat Curtis
- matthew&cybertel.com
-9972
- Emulive Imaging Corporation Inc.
- Jory Anick
- jory&emulive.com
-9973
- Flexsys (UK) Ltd
- Allan Latham
- alatham&flexsys-group.com
-9974
- Internet Transaction Services, Inc.(iTrans)
- Martin Compton
- martinc&itrans.com
-9975
- J.W. Jensen, Inc.
- Jim Jensen
- jensen&computer.org
-9976
- Flexsys Inc
- Allan Latham
- alatham&flexsys-group.com
-9977
- jobpilot AG
- Alexander Spannagel
- spannagel&jobpilot.de
-9978
- Linuxkorea, Inc.
- Keun-woo Ryu
- updong&linuxkorea.co.kr
-9979
- Mabuse.De
- Manfred Berndtgen
- mb&mabuse.de
-9980
- M-Web South Africa
- Jeanette Greeff
- jgreeff&mweb.com
-9981
- NeT&Trade GmbH
- Jens Thiel
- jens&thiel.de
-9982
- netEngine
- Oliver Malang
- malang&netengine.at
-9983
- Netstech, Inc.
- James Won-Ki Hong
- jwkhong&netstech.com
-9984
- Osmosislatina
- Daniel Rubio
- daniel&osmosislatina.com
-9985
- RIC
- John Wu
- enigma&ric.ws
-9986
- Sencore
- Ben Schmid
- ben.schmid&sencore.com
-9987
- Signet
- Gerard Haagh
- gerard&signet.nl
-9988
- Smart Technology Enablers, Inc.
- David G. Lawrence
- dlawrence&enablers.com
-9989
- Stochastix
- Jens Thiel
- jens&thiel.de
-9990
- Stonebranch, Incorporated
- William Miller
- trouble&stonebranch.com
-9991
- synchrone
- JF Meyers
- jf.meyers&ibelgique.com
-9992
- Terion
- Jonathan Jaloszynski
- jjaloszynski&terion.com
-9993
- Terumo Medical Corporation
- Shawn Miller
- shawn.miller&terumomedical.com
-9994
- The Linux Box Corporation
- Matt Benjamin
- matt&linuxbox.nu
-9995
- ThinkEngine Networks, Inc.
- Victor Novikov
- vnovikov&thinkengine.net
-9996
- Villanova University
- John L. Center
- john.center&villanova.edu
-9997
- Virtual e-learning group (VEG)
- Michael Schacht Hansen
- msh&hi.au.dk
-9998
- Wynd Communications
- Erik Erlendsson
- eerlendsson&wynd.com
-9999
- Zerna, Koepper & Partner
- Egbert Casper
- cas&zkp.de
-10000
- MapInfo Corporation
- Dave Beckett
- webcertadmin&mapinfo.com
-10001
- blio Corporation
- Johann L. Botha
- joe&blio.net
-10002
- Frogfoot Networks
- Johann L. Botha
- joe&frogfoot.net
-10003
- IP ONE Inc.
- Hye-Sun Han
- sunh&ipone.co.kr
-10004
- johnchildress.com
- John Childress
- john&johnchildress.com
-10005
- Pure NetworX GmbH
- Werner Reisberger
- wr&pure.ch
-10006
- SANTON
- Yue Cao
- sky.yue&263.net
-10007
- RF Innovations Pty Ltd
- Paul Spaapen
- it.support&rfinnovations.com.au
-10008
- Groupe ESIEE Paris
- Frank Bonnet
- f.bonnet&esiee.fr
-10009
- KrystalBox Technologies, Inc.
- Matt Hille
- mhille&krystalbox.com
-10010
- Network Storage Solutions, Inc.
- Douglas Donsbach
- dld&nssolutions.com
-10011
- Advanced Simulation Technology Inc
- Patrick Gaffney
- patrickg&asti-usa.com
-10012
- Alternium SA
- Laurent Cupial
- lcupial&alternium.com
-10013
- caledo GmbH
- Matthias Gronkiewicz
- info&caledo.de
-10014
- CERIAS
- Vincent Koser
- vkoser&cerias.purdue.edu
-10015
- Certification Centre Ltd
- Kaitti Kattai
- kaitti&sk.ee
-10016
- Computer & Communications Innovations
- Adam Herbert
- aherbert&cci-us.com
-10017
- CREWAVE Co., Ltd.
- Sangwook Lee
- leesw&crewave.com
-10018
- Double Precision, Inc.
- Sam Varshavchik
- mrsam&courier-mta.com
-10019
- Fen Systems Ltd.
- Michael Brown
- mbrown&fensystems.co.uk
-10020
- Globe
- Maarten van Steen
- steen&cs.vu.nl
-10021
- Good Technology, Inc.
- Jeff Stewart
- jstewart&good.com
-10022
- Iconnect
- Luigi Erardi
- lgerardi&iconnect.it
-10023
- IMA L.t.d.
- Zdenek Hladik
- hladik&ima.cz
-10024
- Integrated Technology Express, Inc
- Amy Chung
- amy.chung&ite.com.tw
-10025
- Interland, Inc.
- Jeff McNeil
- jmcneil&interland.com
-10026
- Interloci,Inc.
- Larry Stilwell
- lstilwell&interloci.com
-10027
- Internet Data Systems S.A.
- Krzysztof Wysocki
- kwysocki&ids.pl
-10028
- level 42 networks
- Ryan Ribary
- ryan&level-42.net
-10029
- Men & Mice
- Sigfus Magnusson
- sigfusm&menandmice.com
-10030
- Mudiaga Obada
- Mudiaga Obada
- mudi&obada.de
-10031
- NIIEFA CTC CYCLONE
- Serj Kochetovsky
- electom&niiefa.spb.su
-10032
- ONEMEDIA Inc.
- Mark Haager
- mhaager&onmd.com
-10033
- OpenSOS S/B
- Tze-Meng Tan
- tmtan&tm.net.my
-10034
- OSIX AB
- Mikael Appelkvist
- mikael.appelkvist&osix.se
-10035
- SAY Technologies, Inc.
- Kawasaki Shingo
- skawasaki&say-tech.co.jp
-10036
- Times N Systems
- Chris D. Miller
- cmiller&timesn.com
-10037
- Ultimate People Company Ltd
- Nigel Hannam
- nigel.hannam&upco.co.uk
-10038
- University of Texas Health Science Center at San Antonio
- Scott Mitchell
- mitchell&uthscsa.edu
-10039
- Videotek, Inc.
- Rob Zwiebel
- zwieber&videotek.com
-10040
- Yonsei University
- Yong-Hoon Choi
- andychoi72&yahoo.co.kr
-10041
- ZONE. PL s.c.
- Pawel Orzechowski
- tech&zone.pl
-10042
- comma Flex
- Brendon Maragia
- sinphony80&hotmail.com
-10043
- eTime Capital, Inc.
- Stephen P. Berry
- spb&etimecapital.com
-10044
- FRB-Par
- Jorge Ventura
- jorge.ventura&varig.com.br
-10045
- NetFormFive Informationstechnologie GmbH
- Harald Evers
- harald.evers&netformfive.de
-10046
- Protek, S.C.
- Jose B. Alos Alquezar
- jbaa&prometeo.cps.unizar.es
-10047
- Servocomp Ltd.
- Andre Yelistratov
- andre&servocomp.ru
-10048
- VXL eTech (P) Limited
- John George
- johng&vxl.co.in
-10049
- WebRelay, Inc.
- Sam Nicholson
- scion&webrelay.net
-10050
- Dana Corporation
- Bill DenBesten
- bill.denbesten&dana.com
-10051
- Eftia OSS Solutions Inc
- Misha Sekey
- hostmaster&eftia.com
-10052
- Electronic Commerce Link, Inc.
- Joe Felix
- iana-pen&eclink.com
-10053
- keys
- Marcus Augustus Alzona
- marcus&keys.com
-10054
- NetValue S.A.
- Erwan Arzur
- erwan&netvalue.com
-10055
- Roaring Penguin Software Inc.
- Dianne Skoll
- dfs&roaringpenguin.com
-10056
- AppDancer Networks
- Samuel Li
- samuell&appdancer.com
-10057
- EMTE Sistemas
- Raul Blanquez
- rblanquez&emtesistemas.com
-10058
- HAURI Inc.
- Jong Seung Park
- pjs0722&hauri.co.kr
-10059
- SANRAD
- Michele Hallak-Stamler
- michele&sanrad.com
-10060
- SELTA Telematica
- Paciello Pietro
- ppaciello&seltatel.it
-10061
- Pacific Info Tech Corp.
- Liao Jiang
- jiangl&pacificinfotec.com
-10062
- Comsquared Systems, Inc.
- David Gianndrea
- dgianndrea&comsquared.com
-10063
- Aaron Grosky & Associates Inc
- Carilda A. Thomas
- cat&the-cat.com
-10064
- ASH
- Hauke Johannknecht
- oid&ash.de
-10065
- Ironoak Software
- Tammy Race
- race&cs.utk.edu
-10066
- Digital Multimedia Technologies
- Beretta Eugenio
- e.beretta&dmtonline.com
-10067
- DVTEL Inc.
- Gil Fishman
- camera&dvtel.com
-10068
- E-OfficeServices Ltd.
- Ashley Unitt
- ashley&newvoicemedia.com
-10069
- Epsilon AB
- Staffan Andersson
- staffan.andersson&epsilongroup.net
-10070
- Flashwave Ltd
- Daniel Wilson
- dan&flashwave.co.uk
-10071
- GINKO AG
- Roland Haenel
- rh&ginko.net
-10072
- GW Technologies Co., Ltd.
- Zhong Zhen
- zhong_zhen&yeah.net
-10073
- HanseNet Telekommunikation GmbH
- Sylvia Ellrich
- ellrich&hansenet.com
-10074
- Ikimbo
- David E. Storey
- dstorey&ikimbo.com
-10075
- Infodyne Corporation
- Infodyne Corporation
- falke&infodyne.com
-10076
- Institutions of the European Union
- Colin Fraser
- colin.fraser&cec.eu.int
-10077
- MbyN Inc.
- Yuri Cho
- yuricho&mbyn.com
-10078
- Medienprojektverein Steiermark
- Harald Klein
- hklein&979fm.at
-10079
- Metrosource, Inc.
- David Bradley
- dbradley&rochester.rr.com
-10080
- Microcell I5 Inc.
- Charles Arsenault
- security&microcelli5.com
-10081
- NrjCorporation
- Nicolas Rosa
- nrj.post&mailcity.com
-10082
- Oculus Technologies Corporation
- Andrew Crum
- acrum&oculustech.com
-10083
- Panda Vista
- John Crunk
- greypanda&pandavista.com
-10084
- Priority Telecom N.V. Roger
- Schobben
- rschobben&prioritytelecom.com
-10085
- Prove IT
- Daniel Prinsloo
- daniel&prove-it.co.uk
-10086
- Segue Software, Inc.
- Wolfram Hiebl
- wolfram&segue.at
-10087
- SilentOne Limited
- Culley Angus
- culley.angus&silentone.com
-10088
- Techno Valley Co.
- Steve Kang
- sun&tvinc.co.kr
-10089
- Tek Tools, Inc.
- Ken Barth
- snmp&tek-tools.com
-10090
- The ClueNet Project
- Daniel Roesen
- iana-oid&cluenet.de
-10091
- Transfar
- Xu Tian
- xutian&mail.transfar.com
-10092
- Unassigned
-
- (Removed 2002-05-02)
-10093
- unamite GmbH
- Andreas Roedl
- andreas.roedl&unamite.com
-10094
- University of Novi Sad
- Zora Konjovic
- armuns&uns.ac.rs
-10095
- Wickander & Associates
- James Richardson
- james.richardson&wickander.com
-10096
- Baxter Healthcare Corporation
- Terri Stevens
- stevent&baxter.com
-10097
- ECI-IP Inc.
- David A. Pitts
- david.pitts&jax.ecitele.com
-10098
- Gonicus GmbH
- Lars Scheiter
- lars.scheiter&gonicus.de
-10099
- humanIT
- Ingo Schwab
- ingo.schwab&humanit.de
-10100
- onDevice Corporation
- Jeff Ng
- jng&ondevice.com
-10101
- Mirai Espana, S.L.
- Minoru Watabe
- webmaster&hotelsearch.com
-10102
- Alt-N Technologies
- Arvel Hathcock
- arvel&altn.com
-10103
- Lewis Curtis Consulting
- Lewis Curtis
- lewisccurtis&netscape.net
-10104
- eBOA
- Ing. Roelof Osinga
- roelof&eboa.com
-10105
- Lawson Software
- Michael Kellen
- OID.Admin&Lawson.com
-10106
- Albalá Ingenieros, S.A
- Juan A. Zaratiegui
- zara&albalaing.es
-10107
- 1stCom Technologies Corp.
- Bo Yang
- byang&1stcomtech.com
-10108
- 7 Global Ltd
- Matt Rosebury
- mrosebury&7global.com
-10109
- Active Telecom
- Julien Delaporte
- jdelaporte&active-telecom.com
-10110
- Agile Storage, Inc.
- Gilbert Ho
- gilbert&agilestorage.com
-10111
- Get Connected
- Jörg Hanebuth
- joerg&gecosnet.de
-10112
- APLcomp Oy
- Martti Pitkanen
- martti.pitkanen&aplcomp.fi
-10113
- ApplianceWare Inc.
- Craig Spurgeon
- cspurgeon&applianceware.com
-10114
- Artesia Technologies
- Bartee Natarajan
- bartee.natarajan&artesia.com
-10115
- ARTFUL
- Philippe Huet
- phuet&artful.net
-10116
- Auga ApS
- Troels Blum
- troels&auga.com
-10117
- Axerra Networks, Inc.
- Aharon Strosbert
- aharon&axerra.com
-10118
- BenefitsXML, Inc.
- George Austin
- gaustin&benefitsxml.com
-10119
- BigBangwidth
- Steve Hyatt
- shyatt&bigbangwidth.com
-10120
- BRTech
- Kang-Soo Lee
- odinlee&orgio.net
-10121
- CLEAR Communications Ltd
- Nora Bowman
- nbowman&clear.co.nz
-10122
- Creatia Corporation
- Paul C. Bryan
- pbryan&creatia.com
-10123
- Crimco Consulting
- James G. Crimens
- jcrimens&concentric.net
-10124
- CUST - Université Blaise Pascal (Clermont II)
- Thierry Chich
- chich&cust.univ-bpclermont.fr
-10125
- cyberPIXIE, Inc.
- Phillip J. Birmingham
- phillip.birmingham&cyberpixie.com
-10126
- DAASI International GmbH
- Peter Gietz
- peter.gietz&daasi.de
-10127
- Desana Systems Incorporated
- Changming Shin
- cshih&desanasystems.com
-10128
- DISA
- Aleksey Malakhovskiy
- adisa&dialup.ptt.ru
-10129
- DiscoverNet, Inc.
- Cory Visi
- visi&discovernet.net
-10130
- Ecole Centrale de Lyon
- Luc Mariaux
- luc.mariaux&ec-lyon.fr
-10131
- EINK
- Pehr Anderson
- pehr&eink.com
-10132
- EM Solutions Pty Ltd
- Peter Woodhead
- peter.woodhead&emsolutions.com.au
-10133
- FedEx
- Pat O'Neil
- pat.oneil&fedex.com
-10134
- FerraraLUG
- Simone Piunno
- admin&ferrara.linux.it
-10135
- Front Porch Inc.
- David Miller
- dmiller&frontporch.com
-10136
- godot communication technologies gmbh
- Michael Steinmetz
- Michael.Steinmetz&godot.de
-10137
- GTMP Foundation
- Alexandre Jousset
- midnite&gtmp.org
-10138
- i2pi
- Joshua Reich
- josh&traffion.com
-10139
- i3sp
- Matthew Watson
- mattw&i3sp.com
-10140
- INCO Systems, Inc.
- Jerry J. Blanchard
- jblanchard&incosystems.com
-10141
- Infinisys Pty Ltd
- Ian Smith
- ian.a.smith&bigpond.com
-10142
- Interdimensions
- Philip J Grabner
- grabner&interdim.com
-10143
- Introut Consulting
- Darcy Westfall
- darcy.westfall&introut.com
-10144
- iORMYX
- Roman Nemet
- romann&iormyx.com
-10145
- Just In Time Consulting
- Justin Backman
- justinbackman&yahoo.com
-10146
- Kern Automatiseringsdiensten BV
- Bob van der Kamp
- oid&kern.nl
-10147
- Lancaster-Lebanon Intermediate Unit 13
- Kevin Myer
- kevin_myer&iu13.org
-10148
- Lightel Systems Corporation
- Margie Patterson
- margiepatterson&lightel.com
-10149
- LineOne
- Anthony Lee
- anthony.lee&uk.tiscali.com
-10150
- Logic One Incorporated
- Aaron Smith
- as&gofuzion.com
-10151
- Multimedia University
- Chin Mun, Wee
- cmwee&mmu.edu.my
-10152
- Muspellsheim
- Kenny Austin
- kenny&muspellsheim.net
-10153
- Net2Phone
- Joshua Walfish
- josh&net2phone.com
-10154
- NetPlay, Inc.
- Mike Coakley
- mcoakley&netplay.net
-10155
- Northern Parklife Inc
- Thomas Wernersson
- thomas&northern.se
-10156
- Novoforum
- Howard Neuwirth-Hirsch
- hnhirsch&novvoforum.com
-10157
- Onnet Technologies Co.
- Daehwan Kim
- dhkim&ont.co.kr
-10158
- PanAmSat
- Jerry Tuite
- jtuite&panamsat.com
-10159
- Panasas Inc.
- Shri Lohia
- slohia&panasas.com
-10160
- Penn State Outreach Information Systems
- Ken Borthwick
- kmb11&outreach.psu.edu
-10161
- PictureIQ
- Brian Hutchison
- brian.hutchison&pictureiq.com
-10162
- poland.com SA
- Robert Gorecki
- robert.gorecki&poland.com
-10163
- Remedy Corporation
- Rich Mayfield
- richm&remedy.com
-10164
- Roads and Traffic Authority (RTA)
- Per-Johan Lind
- per-johan_lind&rta.nsw.gov.au
-10165
- Robert Williams Consulting
- Robert Williams
- robwilliams&onebox.com
-10166
- Secure Software Services ltd
- Raphael Barber
- raphael&securesoft.co.uk
-10167
- Siemens Communications Limited
- John Richardson
- john.richardson&siemenscomms.co.uk
-10168
- Space Biomedical Center
- Yurii Reviakin
- rev&telemed.ru
-10169
- Suayan Design
- William Suayan
- ksuayan&yahoo.com
-10170
- Telemig Celular S.A.
- Luiz Carlos Portugal Starling
- rede.cel&telemigcelular.com.br
-10171
- Telsey
- Mestriner Roberto
- roberto.mestriner&telsey.it
-10172
- Territory Business Solutions Pty. Ltd.
- Chris Coleman
- ccoleman&tbs.com.au
-10173
- Texil
- Ian McNish
- ian&ians.net
-10174
- The Chubb Group of Insurance Companies
- Tod Thomas
- ldap&chubb.com
-10175
- Traffion Technologies
- Joshua Reich
- josh&traffion.com
-10176
- Univention
- Peter H. Ganten
- peter.ganten&univention.com
-10177
- University of Northern Iowa
- Aaron Thompson
- aaron.thompson&uni.edu
-10178
- Western Kentucky University
- Jeppie Sumpter
- jeppie.sumpter&wku.edu
-10179
- Wireless Solutions
- Simone Piunno
- simonep&wseurope.com
-10180
- Am-utils Organization
- Erez Zadok
- ezk&am-utils.org
-10181
- Cardinal Health Inc.
- Internet Administrator
- internetadmin&cardinal.com
-10182
- futureLAB AG
- Philipp Klaus
- info&futurelab.ch
-10183
- Master Quality snc
- Amico Sabatini
- masterquality&inwind.it
-10184
- QCOM TV, Inc.
- Chris Heimark
- chris.heimark&targettv.com
-10185
- SMP
- Scott Didriksen
- sdidrik&rmci.net
-10186
- Weinbrenner Media Consult
- Philipp Weinbrenner
- softlab&weinbrenner.com
-10187
- Teleview
- Wooksoo Shin
- wshin&teleview.co.kr
-10188
- Piolink, Inc
- Henry Moon
- support&piolink.com
-10189
- Congruency, Inc.
- Eyal Segal
- eyal&congruency.com
-10190
- AEGMIS GmbH
- Georg Groner
- georg.groner&aegmis.de
-10191
- DivergeNet, Inc.
- Paul Traskal
- ptraskal&DivergeNet.com
-10192
- E.ON Energie AG
- Florian Dietrich, Peter Marschall
- pki&eon.com
-10193
- erkle
- Andrew Veitch
- ajv-iana&erkle.org
-10194
- is:energy
- Christian Müller
- christian.mueller&is-energy.de
-10195
- SH Soft
- Simon Heaton
- simon&jazzsax.freeserve.co.uk
-10196
- www.thinkingmachines.com
- Christopher Secrest
- c_secrest&lycos.com
-10197
- Vovtel Networks, Inc.
- Thomas Tsai
- thomas&vovtel.com
-10198
- Carroll-Net, Inc.
- Jim Carroll
- jim&carroll.com
-10199
- projecthome limited
- Norbert Klamann
- Norbert.Klamann&projecthome.de
-10200
- i-mail-box project
- Hiroshi Kakehashi
- npo&mvf.biglobe.ne.jp
-10201
- Eftel
- Steven Wilton
- techs&team.eftel.com
-10202
- GFT Solutions
- Michael Voegler
- michael.voegler&gft.com
-10203
- Winter AG
- Stefan Lefnaer
- stefan.lefnaer&winter-ag.at
-10204
- Shanghai SCOP Photonics Technology Co. ltd
- Winner Chen
- chenbing&263.net
-10205
- Apama
- Richard Bentley
- rmb&apama.com
-10206
- ePIK'us Software
- Sebastian Pikur
- epikus&poland.com
-10207
- Hilgraeve Inc.
- Mike Thompson
- miket&hilgraeve.com
-10208
- Valnet Sado S.A.
- Pedro Vasconcelos
- geral&valnetsado.pt
-10209
- Andes Networks, Inc.
- Brian Shiratsuki
- hostmaster&andesnetworks.com
-10210
- AXS-One
- Arnie Listhaus
- alisthaus&axsone.com
-10211
- BENAU A/S
- Carsten Joenck
- caj&benau.dk
-10212
- Cutler & Company
- Paul Jacobson
- pj&cutlerco.com.au
-10213
- Meriton Networks
- Ilya Kobrinsky
- ilya.kobrinsky&meriton.com
-10214
- ENIGMA SOI SP. Z O.O.
- Artur Krystosik
- akr&enigma.com.pl
-10215
- FORWARD Technical Co.Ltd
- WangZhiQiang
- yy_wzq&21cn.com
-10216
- Frantic Films
- Shawn Wallbridge
- swallbridge&franticfilms.com
-10217
- HotDiary Inc
- Manoj Joshi
- manoj&hotdiary.com
-10218
- Hsufarm
- Gene Hsu
- iana&hsufarm.com
-10219
- I.D.E.A.L. Technology Corporation
- Anthony L. Awtrey
- tony&idealcorp.com
-10220
- IFW Dresden
- Thomas Fichte
- t.fichte&ifw-dresden.de
-10221
- IMPACT TECHNOLOGIES
- Jean-Nicolas Durand
- jndurand&itechno.com
-10222
- InfiniCon Systems
- Charles King
- cking&infiniconsys.com
-10223
- Leo A Daly Company
- Duane Miller
- mdmiller&leoadaly.com
-10224
- Lufthansa Systems Infratec GmbH
- Peter Boerner
- peter.boerner&lhsystems.com
-10225
- Marrakech Ltd.
- Alan O'Kelly
- aokelly&marrakech.com
-10226
- MyDN
- John Gray
- jgray&mydn.com
-10227
- Neesus Datacom
- Sunil Sanwalka
- sunil&neesus.com
-10228
- Net & Publication Consultance GmbH
- Joachim Schrod
- jschrod&npc.de
-10229
- Netgate s.c.
- Adam Wojtkiewicz
- adomas&ng.pl
-10230
- Oriole Corporation
- Stephane Faroult
- sfaroult&oriole.com
-10231
- Proficient Networks, Inc.
- Allan Leinwand
- allan&proficient.net
-10232
- Signiant Corporation
- Winston Khan
- wkhan&signiant.com
-10233
- Silicon Goblin Technologies
- Steve Linberg
- steve&silicongoblin.com
-10234
- Snort.org
- Glenn Mansfield Keeni
- glenn&cysols.com
-10235
- Startrack Communications (Australia)Pty Ltd
- Rodney Kirk
- rodney.kirk&startrack.com.au
-10236
- Studio komputerowe AWA
- Adam Wojtkiewicz
- adomas&ng.pl
-10237
- Sullins, Inc.
- Ben Pierce
- bpierc5&earthlink.net
-10238
- Technische Universitaet Berlin (TU-Berlin)
- Gerd Schering
- ca&tu-berlin.de
-10239
- Tess SA
- Miguel Augusto
- miguel.augusto&tess.net.br
-10240
- TransNational Computer Technology
- Leke osiname
- leke&telecom.net.et
-10241
- TRPG Association
- Kevin Tseng
- hytseng&trpg.org
-10242
- University of Brighton
- Mike Chemij
- m.chemij&bton.ac.uk
-10243
- Uplogix.com
- James Dollar
- jdollar&uplogix.com
-10244
- VALIDATA
- Simakov Sergey
- sim&x509.ru
-10245
- Valiosys SA
- Nicolas Prochazka
- sysadmin&valiosys.com
-10246
- Virtual Education Space
- T S Vreeland
- tvreeland&ves.ws
-10247
- CollegeUnits.com, Inc.
- Chris Staszak
- cstaszak&collegeunits.com
-10248
- E.Central, Inc
- Robert Tarrall
- oid-admin&ecentral.com
-10249
- CINtel Intelligent Telecom System Co.,Ltd.
- Jianming Lan
- lanjianming&263.net
-10250
- NegativeTwenty
- Kevin J. Menard, Jr.
- kmenard&wpi.edu
-10251
- Warlock
- Yaroslav Dmitriev
- yar&mi.ru
-10252
- Diagnostic Laboratory Services, Inc.
- Ronald Fox
- rfox&dlabs.com
-10253
- Napster, Inc.
- Roger Smith
- unixops&napster.com
-10254
- Texuna Technologies Moscow
- Serge Karpinski
- sergey.karpinski&texunatech.com
-10255
- Infoquenz IT-Dienstleistungen GmbH
- Tobias Retts
- trettstadt&infoquenz.de
-10256
- ScioByte GmbH
- Michael Neuffer
- neuffer&sciobyte.de
-10257
- Hadithi Inc
- James Nyika
- jnyika&yahoo.com
-10258
- Aracnet Internet Services
- Sean Hanson
- admin&aracnet.com
-10259
- Avtec Systems, Inc.
- Gregg Nemesure
- nemesure&avtec.com
-10260
- BeamReach Networks
- Charuhas V Ghatge
- cghatge&beamreachnetworks.com
-10261
- Cedar Point Communications
- Sandeep Asija
- sasija&cedarpointcom.com
-10262
- CNC Systems, Inc.
- Adam Meyerowitz
- ameyerow&optonline.net
-10263
- Custom Linux Solutions
- Matthew Brichacek
- mbrichacek&customlinuxsolutions.com
-10264
- DATA & INFORMATION TECHNOLOGY LTD
- Joyce Farnese
- joycef&dandit.demon.co.uk
-10265
- Deltathree, Inc
- Hillel Antonov
- hillela&deltathree.com
-10266
- DIZ Rheinland-Pfalz
- Uwe Volkmer
- uwe.volkmer&diz.de
-10267
- Electro Optic Systems
- Dean Cording
- dsc68&acay.com.au
-10268
- Enterprise Commerce
- Mike Tynas
- mtynas&bigpond.com
-10269
- ePropose
- Matt Lippert
- matt.lippert&epropose.com
-10270
- ES-Netze
- Eduard Siemens
- siemens&es-netze.de
-10271
- Forgent
- Ken Kalinoski
- ken&forgent.com
-10272
- Future Instrument AB
- Ingemar Ernstsson
- ingemar.ernstsson&futureinstrument.se
-10273
- Giant Step Productions LLC
- Bart Lilje
- bart&giantstep.com
-10274
- HEXAFLUX-SMS
- Bunel Damien
- dbunel&hexaflux.com
-10275
- Master a Distancia
- Angel Cabello
- acabello&masterd.es
-10276
- MSI Network Services, Ltd.
- Paul Maine
- paulm&msicc.com
-10277
- Multnomah Education Service District
- Eric Harrison
- eharrison&mesd.k12.or.us
-10278
- NetAcquire Corporation
- David Hauck
- davidh&netacquire.com
-10279
- Object Valley (Asia Pacific) Limited
- Stephen Won
- stephen.won&objectvalley.com
-10280
- Quixotech Systems
- Robert Kettles
- rob&quixotech.com
-10281
- SELECT Technology
- Dori Seliskar
- dori.seliskar&select-tech.si
-10282
- SpeedKom GmbH
- Markus Trinler
- mt&speedkom.net
-10283
- TABCORP
- A.LaBrooy
- labrooya&tabcorp.com.au
-10284
- Thomas Jefferson University
- John Chan
- john.chan&mail.tju.edu
-10285
- Trenitalia S.p.A.
- Claudio Baldrati
- baldrati&asamrt.interbusiness.it
-10286
- Trintech Inc.
- George Burne
- george.burne&trintech.com
-10287
- University At Albany
- Rob See
- robsee&csc.albany.edu
-10288
- Vox Mobili
- Voxmobili System
- system&voxmobili.com
-10289
- Yukyung Telecom Co., Ltd.
- KwanSoo, Yoon
- ksyoon&yutc.co.kr
-10290
- Internet Business Constellation S.A.
- Christen Blom-Dahl
- christen&inetbc.net
-10291
- j-m-f.demon.co.uk
- Justin Forder
- justin&j-m-f.demon.co.uk
-10292
- Laissez Faire City
- Samuel Jacobs
- domains&lfcity.com
-10293
- LINKAGE SYSTEM INTEGERATION CO.,LTD
- Cao Yang
- caoyang&lianchuang.com
-10294
- DATA SERVICE SRL
- Michele Gandolfi
- info&datas.it
-10295
- iSOLUTION
- Dirk Bajohr
- db&isolution.de
-10296
- ITI Ltd.
- V.S. Vijay Kumar
- dcesi_bgp&itiltd.co.in
-10297
- Advantech Co., Ltd.
- Franz Wei
- franz.wei&advantech.com.tw
-10298
- Arbeitsgemeinschaft fuer total abgehobene Technologie
- Alexander Talos
- at&atat.at
-10299
- Avantia, Inc
- Charles W. Loughry
- cloughry&eavantia.com
-10300
- Avantron Technologies Inc.
- Martin-Pierre Frenette
- mfrenette&avantron.com
-10301
- Bluesocket Ltd
- Christine Cook
- ccook&bluesocket.com
-10302
- Galaxy Systems, Incorporated
- Sandipan Gangopadhyay
- sandipan&galaxysi.com
-10303
- ist isdn support technik GmbH
- Halil Goektepe
- halil.goektepe&ist-teltow.de
-10304
- LGT Financial Services
- Andreas Dittrich
- andreas.dittrich&lgt.com
-10305
- Magnifix Sdn Bhd
- Izauddin Mohd Isa
- izauddin&magnifix.com.my
-10306
- MSO Technologies
- John Park
- admin&msotech.com
-10307
- Optical Solutions Inc
- Phil Friend
- pfriend&opticalsolutions.com
-10308
- OSGi
- Peter Kriens
- peter.kriens&aqute.se
-10309
- SOHO Skyway
- Ron Grant
- engineering&sohoskyway.net
-10310
- tang-IT Consulting GmbH
- Marcus Thoss
- marcus.thoss&tang-it.com
-10311
- Kerio Technologies
- Jaroslav Snajdr
- jsnajdr&kerio.cz
-10312
- Translogic Systems, Inc.
- Wes Quinn
- wes.quinn&tls-us.com
-10313
- Autinform GmbH
- Christian Engelmann
- info&autinform.de
-10314
- Provenir
- Gil Milow
- gmilow&provenir.com
-10315
- Prima e.V.
- Bodo Bellut
- bb&prima.de
-10316
- Rafael Ltd.
- Malka Rosen
- malkar&rafael.co.il
-10317
- Nanum Technology
- Jongseok Yoo
- jsyoo&nanum.co.kr
-10318
- SaskTel International Ltd.
- Michael Moore
- mike.moore&sasktel.sk.ca
-10319
- Semantics AG
- Roland Wepfer
- rwe&semantics.ch
-10320
- Amherst College
- John W. Manly
- jwmanly&amherst.edu
-10321
- AUNet
- Sudhakar Chandra
- thaths&aunet.org
-10322
- Centre For Advanced Technology
- Shailendra Singh Tomar
- tomar&cat.ernet.it
-10323
- Convergence Network Research Ltd.
- Ron Grant
- iana-admin&cnresearch.com
-10324
- CrabusLDAP
- Philippe Lamiraux
- lamira_p&epita.fr
-10325
- EarthConnect Corporation
- Omer Khan
- ok&earthconnect.com
-10326
- Ecole Nationale Superieure des Mines de Paris
- Jose Marcio
- martins&paris.ensmp.fr
-10327
- FiberCity Networks
- Jason Englander
- jason&fiber-city.com
-10328
- Globeflow SA
- Bart Jenkins
- bjenkins&globeflow.com
-10329
- Integra Micro Systems (P) Ltd.
- M.K. Srikant
- srix&integramicro.com
-10330
- KaVaDo Inc.
- Yuval Ben-Itzhak
- yuval&kavado.com
-10331
- Lightning Data Networks
- Chris Chekay
- sycholic&adelphia.net
-10332
- MaxHosting GBR
- Sirk Johannsen
- sven_sirk&gmx.net
-10333
- MetaNet
- Daniel Lawson
- lawson&ihug.co.nz
-10334
- Mischief Networking
- Isaac A. Murchie
- imurchie&burntsand.com
-10335
- RLM Systems Pty. Ltd.
- Benjamin Lyall
- b.lyall&rlmststems.com.au
-10336
- Summit Tech Communications
- Eric Bellotti
- ericb&summit-tech.ca
-10337
- Valis LTD
- Yaron Pikman
- yaron&valis.co.il
-10338
- Locale Systems
- Thomas G Smith
- tsmith&localesystems.com
-10339
- StarRemote Wireless, Inc.
- Jonas Gyllensvaan
- jonas&starremote.com
-10340
- Indiana State University
- Christopher W. Hanna
- cchanna&isugw.indstate.edu
-10341
- Klinik Loewenstein gGmbH
- Thomas Heiligenmann
- thomas.heiligenmann&klinik-loewenstein.de
-10342
- Miami University
- Dirk Tepe
- tepeds&muohio.edu
-10343
- NetExcell
- Henry Ngai
- hngai&netexcell.com
-10344
- Netregistry Pty Ltd
- Adam Cassar
- adam.cassar&netregistry.net
-10345
- Newport Networks Limitd
- John Holdsworth
- john.holdsworth&newport-networks.com
-10346
- OmegaBand, Inc.
- Jim Hall
- jimh&omegaband.com
-10347
- Plustream, Inc.
- Irina Kosinovsky
- irina&stlport.com
-10348
- SOFTPRO GmbH & Co. KG
- Sven Kratochvil
- skr&softpro.de
-10349
- Sysgem AG
- Simon Brown
- support&sysgem.com
-10350
- System Software Solutions
- Steve Peterson
- zygote&home.com
-10351
- Oblivion
- Edwin van Nuil
- nuil&oblivion.nl
-10352
- Retevisión Móvil, S.A.
- Alberto González
- agonzalc&amena.es
-10353
- InnoCom
- Omar Barreneche
- ob&inno.com.uy
-10354
- Brewster Academy
- Jon Robertson
- jon_robertson&brewsteracademy.org
-10355
- ITAction
- Yogesh Patel
- support&itaction.co.uk
-10356
- Target Revocable E-Mail Corporation
- Michael Alyn Miller
- malyn&trecorp.com
-10357
- Roy S. Rapoport
- Roy S. Rapoport
- snmp&inorganic.org
-10358
- Accelio Corporation
- Chris Ethier
- cethier&jetform.com
-10359
- Adtel Software
- Dhananjay Joshi
- joshi&adtelsoft.com
-10360
- AgesMUD Technology, Co., Ltd.
- Eric Hu
- DarkBringer&bigfoot.com
-10361
- Bharat Heavy Electricals Limited
- Pankaj A. Dadu
- dadu&bhel.co.in
-10362
- BluWare, Inc
- Jack Williams
- jwilliams&bluware.com
-10363
- Catbird Networks
- Chris Melville
- cmelville&catbird.com
-10364
- Central Manchester City Learning Center
- Shaun Gilchrist
- shaun&centralmanclc.com
-10365
- Davox Corp.
- Martin Bernier
- mbernier&davox.com
-10366
- Dialpad Communications
- DongSeon Park
- dpark&dialpad.com
-10367
- donnie21
- Donnie Kang
- neokids&n-top.com
-10368
- Fujitsu Technology Solutions GmbH (formerly 'Fujitsu Siemens Computers')
- Detlef Rothe
- detlef.rothe&ts.fujitsu.com
-10369
- Fujitsu Prime Software Technologies Ltd.
- yukihiko Sakurai
- y-sakurai&pst.fujitsu.com
-10370
- Impulsesoft
- Girish Hampali
- hampali&impulsesoft.com
-10371
- Inabyte Inc.
- Myles Cagney
- webmaster&inabyte.com
-10372
- Intelligent Appliance Lab
- Tempest Guo
- tempest&chttl.com.tw
-10373
- Le Reseau
- Eilko Bos
- eilko&reseau.nl
-10374
- Lifeline Systems Inc
- Ameer Sulaiman
- asulaiman&lifelinesys.com
-10375
- Makina Corpus
- Mose
- contact&makina-corpus.com
-10376
- NETFRONT
- Francois Demeyer
- netfront&netfront.fr
-10377
- OnMobile System Inc
- Kiran Anandampillai
- kiranma&onmobile.com
-10378
- PacketVideo
- Andrew Jenkins
- jenkins&pv.com
-10379
- Princeton Solutions Group
- John Gray
- jgray&princeton-solutions.com
-10380
- TeleSys Software, Inc.
- Sankar Chanda
- schanda&telesys.com
-10381
- TrendPoint Systems
- Bob Hunter
- bhunter&trendpoint.com
-10382
- UCNET
- Marc Moeller
- mm&uc.net
-10383
- Universite de Liege
- Andre Pirard
- a.pirard&ulg.ac.be
-10384
- Virginia Commonwealth University
- Jim Toth
- jnf&vcu.edu
-10385
- Westronic Systems, Inc.
- Tim Radke
- tradke&westronic.com
-10386
- YoungWoo Telecom Co., LTD
- Dong-Ha Lee
- dhl&ywtc.com
-10387
- Dongah Elecomm
- Jin Ju Lee
- jjlee&dongahelecomm.co.kr
-10388
- Supportcomm Teleinformatica SA
- Rodolfo Contri Rondao
- rodolfo&supportcomm.com.br
-10389
- Intabo
- Joachim Hahn
- administrator&intabo.de
-10390
- DELTA, Danish Electronics, Light & Acoustics
- Thorbjørn Aaboe
- taa&delta.dk
-10391
- Bharat Sanchar Nigam Limited
- M.K.Yadav
- sstomar&indoretelephones.net
-10392
- Abeona Networks
- Ken Rhodes
- ken&abeona.com
-10393
- APEH
- Hámori Miklós
- hamori.miklos&akp.apeh.hu
-10394
- Banamex, S.A.
- Alfonso Diaz Jimenez
- adiaz&banamex.com
-10395
- Belo Corporation
- Edward E. Iwanski
- eiwanski&belo.com
-10396
- California State University, Office of the Chancellor
- Mark Crase
- mcrase&calstate.edu
-10397
- CK Software GmbH (formerly 'CKSOFT, Christian Kratzer Software Entwicklung und Vertrieb')
- Christian Kratzer
- ck&cksoft.de
-10398
- Covasoft, Inc.
- Larry Combs
- lcombs&covasoft.com
-10399
- Datakey
- David Corbett
- davec&datakey.com
-10400
- Electric Lightwave, Inc.
- Stuart Craig
- root&eli.net
-10401
- Ideo Concepts Co. Ltd.
- Neil Hambleton
- neil&ic.com.hk
-10402
- interdev
- Lee SangBeob
- sblee&interdev4u.com
-10403
- Istituto Nazionale di Fisica Nucleare
- Roberto Cecchini
- Roberto.Cecchini&fi.infn.it
-10404
- LivingLogic AG
- Alois Kastner-Maresch
- info&livinglogic.de
-10405
- Mental Health Cooperative, Inc.
- Systems Architect
- dmorse&mhc-tn.org
-10406
- Neural Audio, Inc.
- Aaron Warner
- aaron&neuralaudio.com
-10407
- North Coast Software
- Gregory Peddle
- gpeddle&ncoastsoft.com
-10408
- Percula Consulting GmbH
- Jeremy Brookfield
- jeremy.brookfield&percula.com
-10409
- Tellurian Pty Ltd
- Matthew Geddes
- mgeddes&tellurian.com.au
-10410
- The Falcon's Nest
- Steven Alexson
- steve&alexson.org
-10411
- University of North Carolina at Chapel Hill
- Celeste Copeland
- celeste_copeland&unc.edu
-10412
- aTelo, Inc.
- Roman Shpount
- roman&atelo.com
-10413
- System Innovations, Inc.
- Bob Fish
- rfish&mcqassociates.com
-10414
- Brauerei C. & A. Veltins GmbH & Co.
- Matthias Mackenbruck
- matthias.mackenbruck&veltins.de
-10415
- 3GPP
- Laurent Andriantsiferana
- landrian&cisco.com
-10416
- ABC Virtual Communications
- Kailash Mohan Kayastha
- kailash.kayastha&abcv.com
-10417
- Amerion, LLC
- Kenny Schmidt
- kennys&amerion.net
-10418
- Avocent Corporation
- Steven W. Clark
- steven.clark&avocent.com
-10419
- Bactol Technical Limited
- L. Thomas
- bactoltechnicalltd&correspondence.co.uk
-10420
- Bayerisches Landeskriminalamt Abt. IuK
- Thomas Heigl
- blka.sg343&baypol.bayern.de
-10421
- C-CURE cvba
- Vanhercke Jan
- jan.vanhercke&c-cure.be
-10422
- China PTIC Information Industry Corporation
- Deng Danhui
- ddh&rdptic.com.cn
-10423
- CityXpress Corp.
- Henry Deng
- netadmin&cityxpress.com
-10424
- Cricket Communications
- Michael Shostak
- mshostak&cricketcommunications.com
-10425
- Electricity Generating Authority of Thailand
- Surapong Singshinsuk
- rdosrp&egat.or.th
-10426
- Elex NV
- Koen Bosmans
- kbo&elex.be
-10427
- Embrace Networks
- Homayoun Zariv
- hzariv&embracenetworks.com
-10428
- Furukawa Electric LatAm S.A (formerly 'Furukawa Industrial S.A. - Curitiba')
- Juvenal Costa
- juvenalc&furukawa.com.br
-10429
- Gelwarg.Net
- Adam Gelwarg
- adam&gelwarg.net
-10430
- globalremote.com AG
- Martin Jelenek
- mj&globalremote.com
-10431
- Ingenieurbuero Kittelberger GmbH
- Joachim Steinruck
- joachim.steinruck&ibkit.de
-10432
- Mott Community College
- Randy Schapel
- rschapel&edtech.mcc.edu
-10433
- MuTek Solution Inc.
- Mark Rogers
- mrogers&us.mutek.com
-10434
- NIKHEF
- David Groep
- davidg&nikhef.nl
-10435
- Omnitel
- Aleksej Janchiukas
- a.janciukas&omnitel.net
-10436
- Oxford university
- Dominic Hargreaves
- oids&rt.oucs.ox.ac.uk
-10437
- Peppercon AG
- Christian Krause
- chkr-iana&peppercon.com
-10438
- Portima SC
- Christophe Cloesen
- christophe.cloesen&portima.com
-10439
- Power Measurement Ltd
- John A Tarter
- john_tarter&pml.com
-10440
- Rose I.T. Solutions
- Robert Rose
- robert&rits.com.au
-10441
- Silas Technologies, Inc.
- Brian DeWyer
- brian.dewyer&silastechnologies.com
-10442
- Spider Networks
- Jay Montilla
- jay&spidernz.com
-10443
- Three Pillars
- Les Howard
- les.howard&threepillars.com
-10444
- tichen.net
- Tianlong Chen
- tchen&computer.org
-10445
- Trillium Photonics
- Thomas Taylor
- ttaylor&trilliumphotonics.com
-10446
- Trinity Expert Systems plc
- Martin Kearn
- martink&tesl.com
-10447
- University of Mississippi
- Jason Ferguson
- jferguson&olemiss.edu
-10448
- University of Puget Sound
- Mark Young
- myoung&ups.edu
-10449
- Xceedium, Inc.
- David Cheung
- info&xceedium.com
-10450
- Altamar Networks
- Luis Roa
- lroa&altamar.com
-10451
- Boston Market Corporation
- Jens Moller
- jens&colomar.com
-10452
- Egton Medical Information Systems Ltd
- Chris Storah
- cstorah&e-mis.com
-10453
- IL JIN TELECOM ELEC.CO., Ltd.
- Sang Moon Chung
- smchung&ijte.co.kr
-10454
- Optical Crossing Inc
- Sudhakar Gummadi
- sgummadi&opticalcrossing.com
-10455
- Paradigm
- Mike Chinea
- mchinea&hotmail.com
-10456
- PLANET Technology Corp.
- Alan Huang
- alan&planet.com.tw
-10457
- DB Informatik Dienste GmbH
- Christian Hinz
- christian.hinz&bku.db.de
-10458
- 2000-X Technologies, Inc.
- Al Gonzalez
- al.gonzalez&2000-x.com
-10459
- Hexin Software
- Guoxin
- gx&myhexin.com
-10460
- HiSolutions AG
- René Grosser
- email&hisolutions.com
-10461
- Tixo Consulting
- Peter Taylor
- peter_taylor&usa.net
-10462
- Atek Ltd.
- Tunc Beyhan
- tbeyhan&atek.net.tr
-10463
- DEVK Versicherungen
- Peter Hein
- ldapadmin&devk.de
-10464
- elata plc
- Rod French
- netman&elata.com
-10465
- Flypaper
- Keith Smith
- ksmith&flypaper.com
-10466
- Holim Technology
- Lee Ju Bok
- jblee&hotech.net
-10467
- Ingenieurbüro Jörg Geistmann
- Jörg Geistmann
- joerg&geistmann.com
-10468
- IRTNOG.ORG
- System Administrator
- admin&irtnog.org
-10469
- Lidcam Technology Pty Ltd
- Adrian Carter
- adrian&lidcam.com.au
-10470
- Media Brokers International
- Charles Marcus
- charlesm&media-brokers.com
-10471
- OpenFortress
- Rick van Rein
- rick&vanrein.org
-10472
- Recourse Technologies, Inc.
- Elvis Lim
- elim&recourse.com
-10473
- SEB AB
- Roberth Edberg
- roberth.edberg&seb.se
-10474
- Servlets.Net Corporation
- Tauren Mills
- tauren&servlets.net
-10475
- Slovak University of Agriculture
- Jan Satko
- jan.satko&uniag.sk
-10476
- Summit Media Partners, LLC
- Thomas L. Arnold
- tarnold&smpllc.com
-10477
- Telephony@Work Inc.
- Ran Ezerzer
- rezerzer&telephonyatwork.com
-10478
- Transeonic Systems, Inc.
- Jeff Brown
- jrbrown&transeonic.com
-10479
- Web Services, Inc.
- William B. Uhl
- buhl&web-services.net
-10480
- Wily Technology
- Daniel Scholnick
- dscholnick&wilytech.com
-10481
- AlJISR Information Services
- Syed Tariq Mustafa
- tariqmustafa&hotmail.com
-10482
- Nortel
- Sharon Chisholm
- schishol&nortel.com
-10483
- Winalysis Software
- Steve Fullerton
- support&winalysis.com
-10484
- TF1 sa
- Christophe HENRY
- chenry&tf1.fr
-10485
- About Web Services
- Daniel Hanks
- dhanks&about-inc.com
-10486
- Aspelle Ltd
- Matthew Hardy
- matthew.hardy&aspelle.com
-10487
- Business Information Publications
- Martin Robertson
- dev.ldap&bipcontracts.com
-10488
- Chelsio Communications
- Glenn Dasmalchi
- glennd&chelsio.com
-10489
- Design Combus Ltd
- Joni Toivola
- combus&dcombus.com
-10490
- GNF
- Gordon Tetlow
- gordont&gnf.org
-10491
- Hampshire College
- Dan Parker
- sa&hampshire.edu
-10492
- HST High Soft Tech GmbH
- Kurt Kiessling
- kkiessling&hstnet.de
-10493
- Innovance Networks Inc.
- Leo Sun
- lsun&innovance.com
-10494
- InphoMatch Inc.
- Ven Chava
- ven.chava&inphomatch.com
-10495
- Interlink, Inc
- Erik S. LaBianca
- erik&totalcirculation.com
-10496
- Link Simulation & Training
- Daniel Callahan
- dfcallahan&link.com
-10497
- Maly's of California
- Mike Cassidy
- mcassidy&malyswest.com
-10498
- michaeljcrawford.com
- Michael Crawford
- crawford&sonic.net
-10499
- Ministerium des Innern Sachsen-Anhalt
- Werner Weingarten
- werner.weingarten&mi.lsa-net.de
-10500
- Music Choice
- Rob Steinberg
- rsteinberg&musicchoice.com
-10501
- Netman Company
- Masatsugu Fujita
- fujita&netman.co.jp
-10502
- North Dakota University System
- Dick Jacobson
- Dick.Jacobson&ndsu.nodak.edu
-10503
- Power Innovations International
- Vilmar L. Gaertner
- gaertner&power-innovations.com
-10504
- Printronix, Inc.
- Tami Clayton
- tclayton&printronix.com
-10505
- Quorus Medical Systems
- Alexei Ustyuzhaninov
- aiu&quorus-ms.ru
-10506
- RadioShack Corporation
- Jon Frazier
- jon.frazier&radioshack.com
-10507
- Reciproca
- Corno Schraverus
- corno&dds.nl
-10508
- Res Mod Man
- Aron Burrell
- amb&rifetech.com
-10509
- Rightvision
- Fabrice Nouet
- fabrice.nouet&rightvision.com
-10510
- ScreamingMedia
- Jason Zheng
- jasonz&screamingmedia.com
-10511
- SimpleDevices, Inc.
- Hanford Choy
- hanford&simpledevices.com
-10512
- Spectrum Image
- Clay Atkins
- catkins&spcmg.com
-10513
- Steltor
- David Ball
- davidb&steltor.com
-10514
- StrongAuth, Inc.
- Arshad Noor
- arshad.noor&strongauth.com
-10515
- Terry Nazon Inc
- Terry Nazon
- tnazon&aol.com
-10516
- T-Nova GmbH, Deutsche Telekom
- Yanrui Dong
- yanrui.dong&telekom.de
-10517
- Toronto POlice Service
- Chris Pentleton
- chrispn&sympatico.ca
-10518
- TrunkNet
- Oliver Schoenfeld
- oschoenfeld&trunknet.de
-10519
- Tsinghua Unisplendour Co., ltd
- Chen Yong
- cy&thunis.com
-10520
- Tyco Electronics Power Systems
- Edward Fontana
- edward.fontana&tycoelectronics.com
-10521
- VoicePlanet, Inc.
- Johnny Wu
- johnnywu&voiceplanet.com
-10522
- Voigt & Haeffner GmbH
- Gunter Schmitt
- gunter.schmitt&vuh.de
-10523
- Wanadoo Data
- Nicolas Thill
- nicolas.thill&wanadoodata.com
-10524
- Widevine Technologies
- Glenn Morten
- gmorten&widevine.com
-10525
- Evangelisch Lutherische Kirche Bayern
- Uli Iske
- iske&elkb.de
-10526
- Facultad de Ingenieria
- Carols M. Martinez
- carlosm&fing.edu.uy
-10527
- METRObility Optical Systems, Inc.
- Manu Kaycee
- ManuKaycee&metrobility.com
-10528
- Solid Information Technology Corp
- Kyosti Laiho
- kyosti.laiho&solidtech.com
-10529
- Gemtek Systems Holding BV
- Bin Hai
- bin.hai&263.net
-10530
- NordicEdge
- Christer Roslund
- croslund&nordicedge.se
-10531
- C.T.Com
- Aleksey Kukhar
- ctcom&odessa.net
-10532
- RifeTech Inc.
- Aron Burrell
- litui&litui.net
-10533
- SEITENBAU online agentur GbmH
- Nicole Hochleiter
- hochleiter&seitenbau.com
-10534
- SECOM Co., Ltd.
- Yasuyuki Tauchi
- tau&ai.isl.secom.co.jp
-10535
- London Internet Exchange
- Rob Holland
- rob&linx.org
-10536
- Simon's Rock College of Bard
- David Reed
- dreed&simons-rock.edu
-10537
- AB Trav och Galopp
- Mats Hansson
- mats.hansson&konsult.atg.se
-10538
- Abstrakt Design
- Andreas F. Bobak
- bobak.iana&abstrakt.ch
-10539
- AlwaysOn Ltd
- Sam Cole
- scole&alwaysonvpn.com
-10540
- AXL Software
- Michael Lecuyer
- mjl&axlradius.com
-10541
- Caymasa El Sendero, SA
- Jose M. Palomar
- jmpalomar&elsendero.es
-10542
- ChongQing GRC Telecom Co., Ltd
- wuhua
- tech&grcinfo.com
-10543
- DeJarnette Research Systems, Inc.
- Jay Cothran
- jcothran&dejarnette.com
-10544
- Factual Data
- Brad Epstein
- oidadmin&factualdata.com
-10545
- gentics net.solutions
- Schremser Maximilian
- mm.schremser&gentics.com
-10546
- Inturio Property Rights Holdings Limited
- William Hui Bon Hoa
- william.hui&inturio.com
-10547
- Matrix Applied Computing Ltd
- Stuart Hodder
- stu&matrix.co.nz
-10548
- Netzwert AG
- Clemens Schrimpe
- smi-mgr&netzwert.ag
-10549
- NewVation
- Don Stocks
- dstocks&newvation.com
-10550
- n-tv GmbH & Co. KG
- Uwe Hunstock
- uhunstock&n-tv.de
-10551
- parergy
- Steven Blair
- steven.blair&parergy.com
-10552
- Passlogix Inc.
- Manung Han
- manungh&passlogix.com
-10553
- Q-Networks
- Jan Pedersen
- jp&q-networks.com
-10554
- Qwest Wireless, L.L.C
- Mike Hampton
- mfhampt&qwest.com
-10555
- Ramcar Group of Companies
- Marco C. Lucena
- marco.lucena&ramcargroup.com
-10556
- recomp GmbH Netzwerke & Systemberatung
- Oliver Reeh
- oliver.reeh&recomp.de
-10557
- Sherwood International Limited
- Lee Ha
- Lee.Ha&sherwoodinternational.com
-10558
- Silogix
- Jean-Paul Blanc
- jean-paul_blanc&silogix-fr.com
-10559
- Softeck
- Terry L. Dalby
- tldalby&juno.com
-10560
- South Florida Water Management District
- Mark Velasquez
- mvelasq&sfwmd.gov
-10561
- Star Valley Solutions Inc.
- Richard Albertson
- ralbertson&starvalleysolutions.com
-10562
- Werkleitz Gesellschaft e.V.
- Martin Mueller
- mm&werkleitz.de
-10563
- Portland Public Schools
- Andy Payne
- apayne&pps.k12.or.us
-10564
- T.I.A. Scandinavia
- Martin Andersson
- d98mad&efd.lth.se
-10565
- Universite de Savoie
- Berard David
- david.berard&univ-savoie.fr
-10566
- Universiti Pendidikan Sultan Idris
- Zahar Othman
- zahar&upsi.edu.my
-10567
- eyou.net Corp.
- YingBo Qiu
- qyb&eyou.net
-10568
- China Sunbo Corp.
- dingke
- dke&zj001.com
-10569
- Coker Net
- Chuck Coker
- chuck&coker-net.com
-10570
- Manly Man Club
- Chuck Coker
- chuck&coker-net.com
-10571
- Merck KGaA
- Christine Simon
- christine.simon&merck.de
-10572
- 100world.com AG
- Artur Schneider
- artur.schneider&100world.com
-10573
- Aitech Space Systems Inc.
- Anthony Lai
- alai&rugged.com
-10574
- Carbon Based Pty Ltd.
- Michael Gray
- mick&carbonbased.com.au
-10575
- Cumulus IT AS
- Øyvind Jelstad
- oyvind&cumulus.no
-10576
- Cygsoft Limited
- Pallav Bhatt
- pallav&cygsoft.com
-10577
- Eilat On-Line Ltd.
- Shachar Elkayam
- shachar&eilat.net
-10578
- Electric Insurance Company
- Pradeep K. Majumder
- pmajumder&electricinsurance.com
-10579
- Eswoosh
- Jerald Dawson
- jdawson&eswoosh.com
-10580
- Handspring, Inc
- David Champlin
- dchamplin&handspring.com
-10581
- Icomera
- Martin Bergek
- contact_iana&icomera.com
-10582
- Linear Systems Ltd.
- Tom Thorsteinson
- tthor&linsys.ca
-10583
- Netizen S.A.
- Gabriel Contursi
- gcontursi&netizen.com.ar
-10584
- Hopcount Limited
- Joe Abley
- jabley&hopcount.ca
-10585
- Paris-alesia
- Francois Cattin
- francois.cattin&free.fr
-10586
- PennWell Corp
- Michael Ritterbusch
- noc&pennnet.com
-10587
- PharmaPartners B.V.
- Villy Kruse
- vek&pharmapartners.nl
-10588
- Pixelboxx GmbH
- Carsten Heyl
- hostmaster&pixelboxx.de
-10589
- Rocketrader.com
- James Horne
- jhorne&rocketrader.com
-10590
- Sage Information Consultants , Inc.
- Byron Watts
- Bwatts&sageconsultants.com
-10591
- Salix Training Limited
- Paul Smart
- paul.smart&salixtraining.co.uk
-10592
- SolutionInc
- Chuck Feild
- cfeild&solutioninc.com
-10593
- SYBCOM GmbH
- Oliver Pabst
- oid&sybcom.de
-10594
- Transynergy
- Bent Nicolaisen
- bni&transynergy.net
-10595
- Tyrell Software Corporation
- Chuck Coker
- chuckc&tyrell.com
-10596
- Vignon Informatique France
- Philippe Carbonnier
- contact&vif.tm.fr
-10597
- Alliance Capital
- John Chapin
- john_chapin&acml.com
-10598
- Applied System Design
- Lindsay Morris
- lmorris&servergraph.com
-10599
- Department of Families
- Martin Sharry
- itbis&families.qld.gov.au
-10600
- Innovative Computing Laboratory
- Brett Ellis
- iclsys&cs.utk.edu
-10601
- Jataayu Software Pvt Ltd.
- Arvind
- arvind_katake&hotmail.com
-10602
- JIERA
- Jake Jung
- just1jake&hotmail.com
-10603
- Kafre
- Saint-Genest Gwenael
- gwen&kafre.fr
-10604
- Zarlink Semiconductor
- Thomas Ying
- thomas.ying&zarlink.com
-10605
- Infodesk S. A.
- Victor V. Evtushenko
- vevtushenko&idsk.com
-10606
- IntraCom Australia Pty Ltd
- Stuart V Begg
- sbegg&intracom.com.au
-10607
- ACG Solutions, LLC
- Garry Stanfill
- gstanfil&acg-solutions.net
-10608
- alpha-lab
- Jochen Witte
- jwitte&alpha-lab.net
-10609
- Applied Science Fiction
- Jim Wilson
- jwilson&asf.com
-10610
- Aubergiste Inc.
- R.C. Poirier
- rcpoirier&aubergiste.com
-10611
- BLU SPA
- Alberto Bianchini
- alberto.bianchini&mail.blu.it
-10612
- Centralny Osrodek Informatyki Gornictwa S.A.
- Jacek Bochenek
- jacek&coig.katowice.pl
-10613
- Envivio
- Bigeard
- nbigeard&envivio.fr
-10614
- Equity Technology Group, Inc.
- Dane Foster
- dfoster&equitytg.com
-10615
- GartonWorks, Inc.
- Ned Kirby
- nkirby&gartonworks.com
-10616
- GeDInfo s.c.r.l.
- Fabio Ferrari
- fferrari&gedinfo.com
-10617
- INFO Consulting GmbH
- Martin Harm
- harm&info-mainz.de
-10618
- InfoStream ASP
- Poul H. Sørensen
- mib-contact&asp.infostream.no
-10619
- innuworks
- Sung-Jin Lee
- sjlee&innuworks.com
-10620
- iSoftel Ltd
- Rajesh Lingappa
- rajesh_lingappa&softel.com
-10621
- bvba Med. Kab. dr. Sebrechts E.
- Erik Sebrechts
- erik.sebrechts&advalvas.be
-10622
- Karma Designs
- Michael Gisbers
- mgisbers&popob.de
-10623
- KnowledgeCube
- Holyeast Lee
- holyeast&kcube.co.kr
-10624
- Richard Lucassen Electronics
- Richard Lucassen
- lucassen&bigfoot.com
-10625
- Maincube Inc.
- David Priban
- mail&maincube.net
-10626
- Mulvey Family
- Rich Mulvey
- domaincontact&mulveyfamily.com
-10627
- N-SOFT
- Roger Zini
- rzini&n-soft.com
-10628
- Project 49 AG
- Jochen Witte
- jochen.witte&project49.de
-10629
- Questus Group, Inc.
- Dustin Cobb
- dcobb&questusgroup.com
-10630
- Scintec AG
- Stefan Schwarzer
- stefan.schwarzer&scintec.com
-10631
- SeRIQA Networks
- Amir Dori
- amird&seriqa.com
-10632
- Telecomet International
- Ryo Sueki
- ryo-sueki&telecomet.co.jp
-10633
- TICOM, Inc.
- Geoffrey Bennett
- geoffrey&ticom.com
-10634
- Trio Networks
- Lawrence Bennett
- larry.bennett&trionetworks.com
-10635
- Tucows Inc.
- Edward Gray
- egray&tucow.com
-10636
- University of Applied Sciences Cologne
- Michael Bank
- michael.bank&fh-koeln.de
-10637
- Vanderbilt University Medical Center
- Jon Strong
- jon.strong&mcmail.vanderbilt.edu
-10638
- Venation
- Mark Butler
- mark.butler&venation.com
-10639
- Unassigned
- Returned 3-28-03
- ---none---
-10640
- West Interactive Corporation
- Brian Roberson
- Bjroberson&west.com
-10641
- White Eagle Informatics
- N.O. O'Monaghan
- nils&a2000.nl
-10642
- Zebra Technologies Corporation
- Steven P. King
- sking&zebra.com
-10643
- NC Soft
- Matt Walker
- mwalker&britanniamanor.com
-10644
- Interactive Software Design
- Tim Nichols
- tnichols&is-design.com
-10645
- Pandanus Ltd
- Geoff Newell
- pandanus&lineone.net
-10646
- ADI Computer Solutions
- Martin Asher
- masher&adi-cs.com
-10647
- Advanced Science & Technology Institute
- Rene Mendoza
- renem&asti.dost.gov.ph
-10648
- BlazeNet Ltd.
- Karunesh Sharma
- karunesh&north.org
-10649
- DST Innovis
- L. Scott Emmons
- scotte&center.uscs.com
-10650
- Easter-eggs
- Michaël Parienti
- mparienti&easter-eggs.com
-10651
- ENAC
- Mounier
- mounier&enac.fr
-10652
- Ezitrust Limited
- Donal O Mahony
- donal.omahony&ezitrust.com
-10653
- Fotre & Associates
- Terry V. Fotre
- tfotre&earthlink.net
-10654
- Future Space, S.A.
- Javier Domingo García
- jdomingo&futurespace.es
-10655
- Global Office Software Pty Ltd
- Greg Wiltshire
- greg.wiltshire&gos.com.au
-10656
- Hardy and Associates
- Jeffrey P. Hardy
- linuxrlz&yahoo.com
-10657
- InfoCyclone Ltd.
- Michael Shurman
- michaels&infocyclone.com
-10658
- IP Services
- Chad Ross
- chad.ross&tcpipservices.com
-10659
- ISR Global Telecom, Inc.
- Roger Egbers
- roger.egbers&isrglobal.com
-10660
- KeyTrend Technology (S) Pte Ltd
- Lim Siok Peng
- siokpeng&transparity.com
-10661
- MainBrain
- Sven Wallage
- sven&mainbrain.nl
-10662
- Mid-Hudson Communications
- Daniel Laffin
- admin&mhcommunications.com
-10663
- MQS
- Kenji Arita
- arita&mqs.fujitsu.com
-10664
- Netropolis
- Jakob Goldbach
- jakob.goldbach&netropolis.dk
-10665
- Ocyrus
- Adam McGrath
- adam&ocyrus.net
-10666
- Organization of Residence Students
- Aly Dharshi
- aly.dharshi&uleth.ca
-10667
- Proxima Technology Pty Ltd
- Alex Napier
- alex.napier&proxima-tech.com.au
-10668
- riodata GmbH
- Manuel Göldner
- manuel.goeldner&riodata.de
-10669
- San Miguel Industrial S.A.
- Rafael H Mantilla
- rmantilla&smi.com.pe
-10670
- Solutions E.T.C. GmbH
- Julian Wolff
- wolff&solutionsetc.de
-10671
- studio Alpha
- Ichiro Kamiya
- kamiya&studio-alpha.com
-10672
- Swarthmore College
- Adam Preset
- preset&swarthmore.edu
-10673
- TELEM GmbH
- W. D. Oels
- info&telem.de
-10674
- TOP-keskus
- Tero Pelander
- tero.pelander&tkukoulu.fi
-10675
- UNESCO
- Lannaud Eric
- e.lannaud&unesco.org
-10676
- UniData Communication Systems, Inc
- ByungHoon Lee
- bbear&udcsystems.com
-10677
- University of Debrecen
- Kornel Ecsedi
- ecsedi&unideb.hu
-10678
- WorldWideWatson
- Coburn Watson
- cpwww&earthlink.net
-10679
- Zzyzx Technologies Inc.
- Glenn Geller
- ggeller&zzyzxtech.com
-10680
- CAPCom AG
- Dung Ta Quang
- taquang&capcom.de
-10681
- KASYS Incorporated
- Kelvin Desplanque
- kasysinc&hotmail.com
-10682
- UDcast
- Luc Ottavj
- luc.ottavj&udcast.com
-10683
- Heaman System co.,ltd.
- Yanbin
- yanbin_s&163.net
-10684
- Terabolic
- Lee Hoffman
- lee&terabol.com
-10685
- Object Tools Limited
- Iain MacKay
- imm&iain-mackay.org
-10686
- Thruport Technologies
- Scott Bethke
- kbethke&thruport.com
-10687
- Townsend Communications, Inc.
- Michael Klatt
- iana&olympus.net
-10688
- Unassigned
-
- (Removed 2002-06-18)
-10689
- Ahaza Systems
- Tom Jackson
- tomj&ahaza.com
-10690
- Celltrex LTD
- Rami Citrom
- rcitrom&celltrex.com
-10691
- Chataigner
- Philippe Chataigner
- philippe&chataigner.com
-10692
- freenet.de AG
- Marian Eichholz
- postmaster&freenet.de
-10693
- iTopia Inc.
- Kent Thompson
- kthompson&itopia.net
-10694
- Measurable Solutions, Inc.
- Michael Friedhoff
- mfriedhoff&measurable.com
-10695
- NIXC, Inc.
- Darrin Walton
- darrinw&nixc.net
-10696
- Nuxeo
- Florent Guillaume
- fg&nuxeo.com
-10697
- Optio Software, Inc.
- Bobby Reid
- breid&optiosoftware.com
-10698
- Sanitätsbetrieb Meran
- Roman Gritsch
- roman.gritsch&asbmeran-o.it
-10699
- SpellCaster Telecommunications Inc.
- Matthew James
- mdj&spellcast.com
-10700
- Bulldog Technologies
- Jason Hinze
- jjh&cosmicflow.com
-10701
- Telefonica DataCorp, S.A.
- Fernando Sastre Jimenez
- fernando.sastre&telefonica-data.com
-10702
- Solvare
- Christian Huldt
- christian.huldt&solvare.com
-10703
- ATnet
- ATnet C/Team
- c&atnet.at
-10704
- Barracuda Networks AG (formerly 'phion Information Technologies')
- Femboeck Monika
- mfemboeck&barracuda.com
-10705
- VOGT electronic AG
- Volker Timper
- vtimper&vogt-electronic.com
-10706
- Accelerated Encryption Processing Ltd
- Barry Kavanagh
- barry.kavanagh&aep.ie
-10707
- Adhersis
- Edouard Viollet
- snmp&adhersis.com
-10708
- Advanced System Architectures Ltd
- Simon Hall
- simon.hall&asa.co.uk
-10709
- ATUX
- F.P.A. Kunst
- frans&atux.nl
-10710
- Avanade Inc
- Steve Sall
- stevesa&avanade.com
-10711
- BAWI
- Taejoon Kwon
- linusben&bawi.org
-10712
- Belkamneft
- Dmitry Melekhov
- dm&belkam.com
-10713
- Chevin Ltd
- Denis Laverty
- denis.laverty&chevin.com
-10714
- Dimension Data
- Adrian Cuff
- adrian.cuff&eu.didata.com
-10715
- ForwardPath
- Robert E Dolliver
- rdolliver&forwardpath.com
-10716
- Freedomland ITN SpA
- Nikola Nikolic
- n.nikolic&freedomland.it
-10717
- Genie Telecom
- Philippe Richard
- p.richard&genietelecom.fr
-10718
- Harris Wilder Pty Ltd
- Jonathan Downes
- jdownes&harriswilder.com.au
-10719
- Atos Origin Nederland B.V. (aonl)
- Peter Hoogendijk
- Peter.Hoogendijk&AtosOrigin.com
-10720
- LIMSI
- Michel Lastes
- Michel.Lastes&limsi.fr
-10721
- Britestream Networks, Inc.
- Ryan Nowakowski
- ryan&britestream.com
-10722
- Marque d'Or
- Serge Tremblay
- stremblay&marquedor.com
-10723
- Mercury PS
- Simon Reader
- simon.reader&mercury-ps.com
-10724
- Morpheus Net
- Marek Isalski
- iana&maz.nu
-10725
- Pacific Internet Ltd
- Hwee Hong Tan
- noc&pacific.net.sg
-10726
- Quantiva, Inc
- Frank Stolze
- frank&quantiva.com
-10727
- Red Cientifica Peruana
- Rolando Guerra
- operador&rcp.net.pe
-10728
- Redline Communications Inc.
- Sinisa Djurkic
- sdjurkic&redlinecommunications.com
-10729
- Red-M Communications Ltd
- Dave Wakelin
- david.wakelin&red-m.com
-10730
- SEE Telecom
- Albert Marneffe
- a.marneffe&see.be
-10731
- Silicon Energy
- Dale Fong
- dale&siliconenergy.com
-10732
- Symbidia Limited
- Daniel Miao
- daniel&symbidia.com
-10733
- The Mercury File System
- Josh
- josh&mercuryfs.net
-10734
- TippingPoint Technologies
- Matthew D Brock
- mbrock&tippingpoint.com
-10735
- Unicorn Holding a.s.
- David Kadlec
- david.kadlec&unicorn.cz
-10736
- University of Denver
- Phil L. Tripp
- Phil.Tripp&du.edu
-10737
- Web Simulation
- Riley Rainey
- rrainey&websimulations.com
-10738
- Comuniq Inc.
- Bennett Clark
- bennett&comuniq.com
-10739
- DELPHIC Medical Systems
- James Webster
- james&delphic.co.nz
-10740
- Neodev
- Jean-Marc WEEGER
- jm.weeger&isdnlabs.com
-10741
- Vertical Inversion Systems, Inc.
- Richard S. Riess
- rriess&verticalinversion.com
-10742
- Nozema N.V.
- Gerrit van de Haar
- gerrit.vd.haar&nozema.nl
-10743
- Riksförsäkringsverket (RFV)
- Björn Blomgren
- bjorn.blomgren&rfv.sfa.se
-10744
- Kvarnbäcken Konsult AB
- Mats Hansson
- kvarnbacken&yahoo.se
-10745
- CSO Lanifex GmbH
- Paul Gillingwater
- paul&lanifex.com
-10746
- Rechenzentrum der Bundesfinanzverwaltung Frankfurt am Main
- Anja Kammerzell
- anja.kammerzell&rzf.bfinv.bund400.de
-10747
- Rowan University
- Mark Sedlock
- sedlock&rowan.edu
-10748
- Software Factory GmbH
- Peter Bartl
- bartl&sf.com
-10749
- /dev/secure Pty Ltd
- Cris Bailiff
- c.bailiff+iana&devsecure.com
-10750
- 3G-Scene Plc
- Bhapinder Singh Toor
- bhapinder.toor&3g-scene.com
-10751
- 3Plex
- Jason Pincin
- jpincin&3plex.com
-10752
- Artiman Oy
- Pekka Eloranta
- elo23&saunalahti.fi
-10753
- Billing for Enterprises
- Stephan Kauss
- stephan.kauss&b4esys.com
-10754
- CAS Tecnologia S/A
- Odair Marcondes Filho
- odair&cas-tecnologia.com.br
-10755
- ChipData, Inc.
- Stephen Garner
- sgarner&chipdata.com
-10756
- Chongho Information & Communications co., LTD
- lee myung suk
- mslee&chongho.com
-10757
- Diogenes, Inc.
- Ronald Trask
- ron.trask&diogenesinc.com
-10758
- Elyzium Limited
- Probal Sil
- probal.sil&elyzium.co.uk
-10759
- Energos asa
- Frode Stenstrom
- frode.stenstrom&energos.com
-10760
- Gravity Hill Technologies, Inc.
- Catherine Victor
- cathy&gravityhilltech.com
-10761
- Greenheck Fan
- Eric Pond
- eric.pond&greenheck.com
-10762
- Horizon Web Graphics
- Paul Wolf
- sabre1205&qwest.net
-10763
- HanSung Teliann, Inc
- Hee-Kyung Seo
- zerocool&hsteliann.com
-10764
- Infotrek
- David Croft
- david&infotrek.co.uk
-10765
- INZEN Co., Ltd.
- Hyunchul Kim
- kimhc&inzen.com
-10766
- ISG Systems AB
- Johan Winäs
- johan.winas&isg.se
-10767
- James Madison University
- Scott Dellinger
- dellinsd&jmu.edu
-10768
- L'Envol Limited
- Gary Weatherhead
- gary.weatherhead&lenvol.co.nz
-10769
- ITDZ Berlin
- Regina Gensicke
- regina.gensicke&itdz-berlin.de
-10770
- Make-Ing.com.ar
- Fernando Roda Zoppi
- fernando&make-ing.com.ar
-10771
- Morrison Academy
- Larry Dilley
- sys-tech&mca.org.tw
-10772
- novalis media
- Juergen Geinitz
- geinitz&novalis-media.de
-10773
- Pacific Northwest Networks, Inc.
- Judd Rock
- judd.rook&pnn.com
-10774
- Perforations Ltd
- Warren Deane
- warren&perforations.com
-10775
- PERI Formwork Systems, Inc.
- Zeke Brubaker
- zeke.brubaker&peri-usa.com
-10776
- Reactive Network Solutions Inc
- David Scott
- david&reactivenetwork.com
-10777
- Revicon Srl
- Jan Nielsen
- nielsen&revicon.com
-10778
- RTCL Lab, University of Michigan
- Abhijit Bose
- abose&engin.umich.edu
-10779
- Sparkassenversicherung Wiesbaden
- Tilman Bohn
- tilman&gmx.de
-10780
- SWAN, s.r.o.
- Peter Hudak
- peter.hudak&swan.sk
-10781
- Schneider Electric Buildings AB (previous was 'TAC AB')
- Jonas Bulow
- jonas.bulow&schneider-electric.com
-10782
- TAZZ Networks
- Erika Hart
- eh&tazznetworks.com
-10783
- The Church of Jesus Christ of Latter-Day Saints
- ICS Monitoring Team
- ics-eng-monitoring&ldschurch.org
-10784
- Time & Frequency Solutions Ltd
- David Squires
- david.squires&timefreq.com
-10785
- Transtech Networks
- Deh-phone Hsing
- dhsing&transtechnetworks.com
-10786
- UNSW Physics APT
- Keith Bannister
- k.bannister&student.unsw.edu.au
-10787
- Verity, Inc.
- David Wilbur
- dwilbur&verity.com
-10788
- Volt Information Sciences
- Roger Smith
- roger.smith&vde.co.uk
-10789
- WebAgents GmbH
- Peter Doemel
- pdoemel&webagents.de
-10790
- Websilicon
- Iftah Bratspiess
- iftah&web-silicon.com
-10791
- WestOne
- Ritchie Young
- ritchie.young&westone.wa.gov.au
-10792
- Xeline Co., Ltd.
- Ki-Hyuk Yang
- khyang&xeline.com
-10793
- YourASP Pty Ltd
- Alexander Liffers
- alex&yourasp.com.au
-10794
- ZTR Control System
- Dennis Webster
- dwebster&ztr.com
-10795
- Bizz Technologies SAS
- Jérôme Ramette
- jerome.ramette&bizzgo.com
-10796
- C.R.F. Consulting Ltd
- Nik Clayton
- nik&crf-consulting.co.uk
-10797
- Commercial Data Systems
- Jeff Chan
- jeff&cdsinc.com
-10798
- Commtel
- Kanji T Bates
- eng&ctel.net
-10799
- Jungo Software Technologies Ltd.
- Ron Kol
- ron&jungo.com
-10800
- Kinor
- Roei Goldblat
- roeig&yahoo.com
-10801
- Rapid 7, Inc.
- Tas Giakouminakis
- tas&rapid7.com
-10802
- RBG
- Stefan Labich
- stefan.labich&rbg.de
-10803
- Staudinger Wels
- DI. Staudinger Helmut
- staudin&utanet.at
-10804
- Union Bank of California
- Neil Patel
- neil.patel&uboc.com
-10805
- Wedgetail Communications
- Dean Povey
- dpovey&wedgetail.com
-10806
- Xebeo Communications, Inc.
- Eric Dubuis
- dubuis&xebeo.com
-10807
- Centrale Financien Instellingen
- Wiebe Hordijk
- w.hordijk&cfi.nl
-10808
- China Greatwall Computer Shenzhen Co., LTD
- Wang Xiaopeng
- wangxp&ggw.com.cn
-10809
- Disha Technologies
- Taizun Kanchwala
- taizun&dishatech.com
-10810
- Nobelmann
- KyungHyun Kim
- khkim97&dreamwiz.com
-10811
- XiaMen Good First Optics Electricity Integration CO.,LTD
- Yade Hong
- apolloone&gfirst.com.cn
-10812
- InfoTeCs
- Feodor I. Getman
- tig&infotecs.ru
-10813
- Centre National de la Recherche Scientifique
- Marc Dexet
- marc.dexet&dsi.cnrs.fr
-10814
- UNIFIED Technologies, Inc.
- Ronald W. Henderson
- rwh&unifiedtech.com
-10815
- CyberTrader, Inc.
- Dave Harding
- dave&cybertrader.com
-10816
- Datang Radio Communication Branch
- Xiaoling Chen
- cxl_k&263.net
-10817
- Heraeus Holding GmbH
- Martin Döring
- martin.doering&heraeus.com
-10818
- .windh AB
- Marc Klefter
- marc.klefter&windh.com
-10819
- [IIX-NAP] MAHATEL, PT
- Teddy A. Purwadi
- teddyap&iixnetworks.net
-10820
- LM Sistemas
- Raul M. Fragoso
- raul&lm.com.br
-10821
- Absolight
- Mathieu Arnold
- ma&absolight.fr
-10822
- ADTEC
- Research and Development
- philo01&adtec.co.kr
-10823
- Advanced Research & Technology Ltd
- Peter Vaughan
- pete&ar-t.co.uk
-10824
- AGAVA Software Ltd.
- Vladimir Panfilovich
- noc&agava.com
-10825
- Alectta
- Carlos Gonzalez
- carlosj&alectta.com
-10826
- Alice-Salomon-Fachhochschule für Sozialarbeit und Sozialpädagogik Berlin
- Peter Daum
- gator&asfh-berlin.de
-10827
- ALVE Technology Corporation
- Scott Taylor
- scott&alve.com
-10828
- American Data Technology, Inc.
- Chris Ess
- cess&localweb.com
-10829
- Andover Controls Corporation
- Cam Williams
- WilliamsC2&AndoverControls.com
-10830
- APCON, Inc.
- Dennis Bauermeister
- dennisb&apcon.com
-10831
- At Oliver.com
- Brian Olivier
- brian&olivier.com
-10832
- B2C2, Inc.
- Augusto Cardoso
- augusto&b2c2inc.com
-10833
- binarycore networks
- Chris Ward
- cward&playdead.net
-10834
- CargoBay
- HJ Tsai
- hjtsai&cargobay.com
-10835
- cartoonviolence.net
- Tobyn Baugher
- trb&cartoonviolence.net
-10836
- Command-e Technology Co., Ltd.
- Jianshu Chou
- choujs&263.net
-10837
- CompHealth
- David P. Boswell
- dboswell&comphealth.com
-10838
- Contec C.V.
- Marc Van den Bergh
- vandenbergh.m&contec.be
-10839
- DISTRIBUTEL
- Paul Khavkine
- paul&distributel.net
-10840
- Dragon Computer Consultants Inc.
- Doug Nazar
- nazard&dragoninc.on.ca
-10841
- Ejasent Inc.
- Norman Chin
- nchin&ejasent.com
-10842
- EnBW Systeme Infrastruktur Support GmbH
- Ralf Fischer
- ralf.fischer&enbw.com
-10843
- Ferret
- Paul Leonovich
- lpaul&enteract.com
-10844
- Fidelia, Inc.
- Rajib Rashid
- rajib.r&fidelia.com
-10845
- grandmas, inc
- Oliver Soell
- Oliver&grandmas.org
-10846
- Impact Technologies, Inc.
- Bryan S. Adams
- bryana&impacttech.com
-10847
- Insystek Inc.
- Alex Turner
- alex&insystek.com
-10848
- IPfonix, Inc.
- D. R. Evans
- n7dr&ipfonix.com
-10849
- Ithiriel Software
- Chris Ess
- caess&ithiriel.com
-10850
- KEFTA Inc.
- Jason Matthews
- jason&kefta.com
-10851
- Knowledge Intelligence AG
- Lars Bruechert
- l.bruechert&ki-ag.de
-10852
- Kuulalaakeri Oy
- Kai Heikola
- kai.heikola&kuulalaakeri.fi
-10853
- LTC Sp z o.o.
- Przemysław Sztoch
- psztoch&finn.pl
-10854
- Lviv National Polytechnical University
- Adrian Pavlykevych
- pam&polynet.lviv.ua
-10855
- Mascon Communication Technologies
- Vishwavasu Chobari
- vishwa&email.masconit.com
-10856
- Menlo Park Technologies
- Sean Doherty
- sean&mpt.ie
-10857
- Mindframe Software & Services Pvt. Ltd.
- Varun Varma
- varun&mindsw.com
-10858
- Mycon Networks
- Aubrey Kilian
- aubrey&mycon.co.za
-10859
- myinternet Ltd
- Technical Contact
- mitc&myinternet.com.au
-10860
- Naumann EDV
- Olaf Naumann
- onaumann&netcologne.de
-10861
- Niels Bohr Institute
- Björn S. Nilsson
- nilsson&nbi.dk
-10862
- NOAH Industries, Inc.
- James Fegan
- jfegan&noahcorp.com
-10863
- Odyssey Technologies Limited
- A. Gayathri
- gayathri&odysseytec.com
-10864
- Pacific University
- Brandon M. Browning
- browning&pacificu.edu
-10865
- Pete Wilson, consulting software engineer
- Pete Wilson
- pete&pwilson.net
-10866
- Philip M Lembo
- Philip Lembo
- philip&lembobrothers.com
-10867
- playdead networks
- Chris Ward
- cward&playdead.net
-10868
- PremiTech A/S
- Henrik Sloth
- hsloth&premitech.com
-10869
- Datalogic Mobile, Inc.
- Reid Ligon
- reid.ligon&datalogic.com
-10870
- Safewww r&d Ltd
- Boris Yevsikov
- borisy&safewww.com
-10871
- Shanghai Teraband Phtonics Co., Ltd.
- Zheng Dayong
- dayongzheng&163.net
-10872
- SkyFlow Inc
- George Krucik
- george.krucik&skyflow.com
-10873
- Soros Foundation Kazakhstan
- Ilya Shadrin
- ishadrin&soros.kz
-10874
- Spectrum Astro Inc
- Andrew Massiah
- andrew.massiah&specastro.com
-10875
- SSH Communications Security Corp.
- Juha Holstila
- juha.holstila&ssh.com
-10876
- Super Micro Computer Inc.
- Roy Chen
- royc&supermicro.com
-10877
- System Services Sp. z o. o.
- Maciej Podanowski
- maciej.podanowski&s-serv.pl
-10878
- Techlink Desenvolvimentos Tecnologicos Ltda
- Paulo Guimaraes
- paulo.g&techlink.com.br
-10879
- Tenebras, LLC
- Michael Sierchio
- kudzu&tenebras.com
-10880
- Togabi Technologies, Inc.
- Ron Tabor
- rtabor&togabi.com
-10881
- Uffizio Software Consultants Pvt. Ltd.
- Rajesh Narayan
- rajesh.narayan&india.uffizio.com
-10882
- Université Paris 5
- Monique Lagarde
- legarde&dsi.univ-paris5.fr
-10883
- Unassigned
- Returned 28-Apr-2006
- ---none---
-10884
- Vinzant, Inc.
- David Vinzant
- dvinzant&vinsoft.com
-10885
- Virtual Monet Technologies
- Frank Koenen
- fkoenen&virtualmonet.com
-10886
- Westland Helicopters Ltd
- Graham Stone
- stoneg&whl.co.uk
-10887
- WizCom Ltd
- Malcho
- malcho&wizcom.bg
-10888
- Xelus Inc
- Paul Russello
- paul_russello&xelus.com
-10889
- AL Digital Ltd.
- Bob Wilkinson
- bob&aldigital.co.uk
-10890
- CommWorks
- Mike Borella
- mike_borella&commworks.com
-10891
- Dave's Network Services
- David P. Boswell
- dave&daves.net
-10892
- Doctors.net.uk
- Simon Potter
- simon.potter&mess.doctors.org.uk
-10893
- Iomedex Corporation
- Peter Simpson
- peter&med.com
-10894
- Novra Technologies Inc.
- Spiro Philopoulos
- sphilopoulos&novra.com
-10895
- Raonet Systems Inc.
- Lee Nam Woo
- tree&raonet.com
-10896
- The Career and Education Network, Inc.
- Lige Hensley
- ligeh&yahoo.com
-10897
- RECOMBINANTWEB
- Saifi Khan
- recombinantweb&vsnl.net
-10898
- OOZOOD
- Boujdaa Khalid
- Kboujdaa&orange.fr
-10899
- Consors Discount-Broker AG
- Oliver Tschaeche
- oliver.tschaeche&consors.de
-10900
- Serco
- Rod McKenzie
- rod.mckenzie&cern.ch
-10901
- Spinnaker Networks, Inc.
- Anton W. Knaus
- awk&spinnakernet.com
-10902
- 3IC Inc.
- Hyoung-Seok Park
- hspark&3ic.co.kr
-10903
- Activate
- Matt Breed
- mattb&activate.net
-10904
- Alpine-Mayreder BauGmbH
- Hans Lechner
- edv&alpine.at
-10905
- Arsenal Digital Solutions
- Jim Kerick
- jkerick&arsenaldigital.com
-10906
- A-SK Computers
- Sushil Kambampati
- sushil&a-sk.com
-10907
- Ateb Limited
- Bob Gautier
- rjg&ateb.co.uk
-10908
- Bigsur Communications
- G. Paul Ziemba
- ziemba&best.com
-10909
- BroadTel Communications
- Souheil Abihanna
- sabihanna&broadtel.com
-10910
- Chateau Systems, Inc
- Larry Walsh
- larry.walsh&usa.net
-10911
- Appello, a.s.
- Tibor Jakab, Ing. Roman Hladký
- tibor.jakab&appello.biz; roman.hladky&appello.biz
-10912
- Cincom Systems, Inc.
- Leonard S. Lutomski
- llutomski&cincom.com
-10913
- Client Software International
- Jeffrey Lee
- jeffl&clientsoftware.com.au
-10914
- COLT Telecommunications
- John Hayday
- jhayday&colt.net
-10915
- ConAgra Foods, Inc.
- Patrick Timmins
- patrick.timmins&conagrafoods.com
-10916
- Cyneta Networks
- Chris Hill
- chill&cynetanetworks.com
-10917
- Datamax Coporation
- Martyn Edwards
- martyn_edwards&datamaxcorp.com
-10918
- Datamission
- Jeffrey Lee
- support&datamission.com
-10919
- dbap GmbH
- Bjoern Dolkemeier
- info&dbap.de
-10920
- Dir Solutions bv
- Erik Kaats
- e.kaats&dirsolutions.nl
-10921
- Drumgrange Limited
- Steve Lindley
- slindley&drumgrange.co.uk
-10922
- ELSIS
- Jonas Zaveckas
- jonas.zaveckas&elsis.com
-10923
- Ericsson AB - Packet Core Networks
- Göran Hall
- Goran.Hall&ericsson.com
-10924
- ESTOS GmbH
- Stefan Hobratschk
- sho&estos.de
-10925
- Firmseek
- Miguel Cruz
- miguel&firmseek.com
-10926
- Food Brokers Limited
- Ken Patching
- netadmin&foodbrokers.co.uk
-10927
- Fullsix
- Sebastien Fibra
- nic&fullsix.com
-10928
- Fybubblan.com Consulting
- Torbjorn Borg
- torbjorn.borg&fybubblan.com
-10929
- GCD Printlayout
- Andreas Buchler
- system&pl.gcd-erlangen.de
-10930
- Georg-August Univeristy Goettingen (Internet-AG)
- Christian Boye
- cboye&goe.net
-10931
- GIGA STREAM - UMTS Technologies GmbH
- Clemens Dietel
- cdietel&giga-stream.de
-10932
- Gunadarma University
- Avinanta Tarigan
- avinanta&staff.gunadarma.ac.id
-10933
- H.A. Technical Solutions
- LeRoy D. Earl
- leroy&tech-sol.com
-10934
- Hamsch
- Martin Hamsch
- martin&hamsch.net
-10935
- Horizon Digital Enterprise, Inc.
- Yasuhiro Sumi
- yasuhiro.sumi&hde.co.jp
-10936
- Ijichi Research
- Dominic Ijichi
- dom&ijichi.org
-10937
- INFALSYS
- Jorge Castellet
- jcastellet&infalsys.es
-10938
- International Messaging Associates Corporation
- Enzo Michelangeli
- em&ima.com
-10939
- internet news
- Ishmael Plange
- ishmaelplange&yahoo.com
-10940
- JD Thomlinson, Ltd.
- JD Thomlinson
- jthom&xnet.com
-10941
- Kandalaya
- Raj Mathur
- raju&kandalaya.org
-10942
- LifeLine Networks bv
- Bastiaan Bakker
- bastiaan.bakker&lifeline.nl
-10943
- Linagora
- Christophe Jauffret
- jauffret&linagora.com
-10944
- Maikis - EDV Dienstleistungen
- Markus Maikis
- maikis&myhq.at
-10945
- Midway Games West, Inc.
- William R White III
- wwhite&midway.com
-10946
- Mouselink Ltd
- Rob Chapman
- rob.chapman&mouselink.co.uk
-10947
- Multi-Druck GmbH
- Robert Steiner
- rst&foliendruck.de
-10948
- MynaNET
- Erik Keith
- erik&mynanet.net
-10949
- Netflix.com
- Michael Tripoli
- mtripoli&netflix.com
-10950
- Netrake Corporation
- Susan Burt
- susan&netrake.com
-10951
- NetUSE AG
- Kai Voigt
- kv&netuse.de
-10952
- NetZero Inc.
- Thod Nguyen
- thodn&corp.netzero.net
-10953
- Nightlife.se
- Mårten Gustafsson
- crew&sudac.org
-10954
- nikolici.com
- Nikola Nikolic
- nikola&nikolici.com
-10955
- Wescan Limited
- Don Pullen
- donpullen&wescanltd.com
-10956
- Noviforum, Ltd.
- Grega Bremec
- grega.bremec&gbsoft.org
-10957
- noze
- Stefano Noferi
- stefano&noze.it
-10958
- OLICORP Technologies
- Chabert Sébastien
- chabert&olicorp.net
-10959
- Politechnika Warszawska
- Tadeusz Rogowski
- ldap&coi.pw.edu.pl
-10960
- Qualicontrol
- Jorge Tellez
- jtellez&testandgo.com
-10961
- Ricciardi Technologies, Inc
- Kevin J Anderson
- kevin.anderson&rti-world.com
-10962
- Rutgers, the State University of New Jersey
- Charles Hedrick
- hedrick&nbcs.rutgers.edu
-10963
- SENA Systems
- Shekhar Jha
- shekhar&senasystems.com
-10964
- SMT Data A/S
- Christian Kullmann
- ck&smt.dk
-10965
- SolidStreaming, Inc.
- Robert Solfanelli
- bob&solidstreaming.com
-10966
- Sollie codeWorks
- Arve Sollie
- codeworks&mobilpost.com
-10967
- Surftool Systems
- Robert Tykulsker
- surftool&comcast.net
-10968
- Systematic Software Engineering A/S
- Bo Kirkegaard
- bok&systematic.dk
-10969
- Thales Communications
- David Thompson
- mib&ch.thalesgroup.com
-10970
- Threshold Networks
- Dave Hecht
- dhecht&thresholdnetworks.com
-10971
- VPN Dynamics, Inc.
- Mark Schaeffer
- mark&vpndynamics.com
-10972
- WIT-Software
- Pedro Manuel Jordão Pereira
- pereira&wit-software.com
-10973
- XMS
- Martin Wickman
- wic&xms.se
-10974
- Youngstown State University
- John Dalbec
- jpdalbec&ysu.edu
-10975
- Zion Software, LLC
- David Ferrero
- david.ferrero&zion.com
-10976
- Zoomtown.com
- Josh Banks
- soc&fuse.net
-10977
- Grid-Ireland
- B.A. Coghlan
- coghlan&cs.tcd.ie
-10978
- Kumamoto Industrial Research Institute
- Takao Kawakita
- tkawakit&kmt-iri.go.jp
-10979
- Capitel Group
- Shengli Chen
- chenshl&capitel.com.cn
-10980
- IQStor Networks
- Marcos Delmar
- mdelmar&iqstor.com
-10981
- RouterD Networks Limited
- Zhang Qilin
- iana&routerd.com
-10982
- UBS Warburg
- John Goulding
- john.goulding&ubsw.com
-10983
- BTG, Inc.
- Greg Lambert
- glambert&btg.com
-10984
- bvba Woodstone
- Dirk Bulinckx
- dirk&woodstone.nu
-10985
- Jive Software
- Matt Tucker
- info&jivesoftware.com
-10986
- Beijing Polytechnic University
- Sun Xiaopeng
- littleroc&263.net
-10987
- Eircell 2000
- Mary Hanley
- noc&e-merge.ie
-10988
- SoloMio Corporation
- Drew Johnson
- djohnson&solomio.com
-10989
- Alibre Incorporated
- Paul F. Williams
- paulw&alibre.com
-10990
- Astrum Consulting
- S. William Schulz
- swschulz&astrum.net
-10991
- Axis Integrated
- Casey Dinsmore
- casey&axisintegrated.com
-10992
- Babel Professional Services srl
- Stefano Alessandri
- stefanix&babelps.it
-10993
- BabelTech A/S
- Chris Larsen
- vader&babeltech.dk
-10994
- BISS GmbH
- Jan Mazac
- jwm&biss-net.com
-10995
- Blue Mug
- Michael Touloumtzis
- miket&bluemug.com
-10996
- CCSS (Europe) Ltd
- Lee Bradshaw
- lee&bigpond.net.au
-10997
- Connection Software
- Peter Burns
- peter.burns&csoft.co.uk
-10998
- Conversant Systems, LLC
- Darryl C Price
- darryl&convsys.com
-10999
- COS AG / Austria
- Dipl. Ing. Ulrich Scherb
- ulrich.scherb&cos.at
-11000
- Creative Networking Solutions
- Mike Richards
- mrichard&creativens.com
-11001
- Dreyer Consulting
- A. Dreyer
- adreyer&adreyer.de
-11002
- Du Maurier Ltd
- Steve Manning
- steve&dumaurier.co.uk
-11003
- e^deltacom
- David Botham
- david&botham.net
-11004
- EarthTrax, Inc.
- Mark Hill
- mhill&epicentre.net
-11005
- E-Certify
- Chris van sant
- chris.van.sant&e-certify.com
-11006
- FlashNet Computers Ltd
- Craig Goodenough
- craig&flashnet.co.nz
-11007
- FMV, Swedish Defence Materiel Administration
- Johannes Lindgren
- jslin&fmv.se
-11008
- Fujiwara Soft Office, Co., Ltd.
- Toshiki Fujiwara
- toshi-f&fusoft.co.jp
-11009
- Hadmut Danisch
- Hadmut Danisch
- netmaster&danisch.de
-11010
- Harrison Family Organization
- Trevor Harrison
- trevor&harrison.org
-11011
- HiWAAY Information Services
- Chris Adams
- cmadams&hiwaay.net
-11012
- ImagineAsia, Inc.
- Benjamin C. Oris Jr.
- benjamin.oris&imagineasia.com
-11013
- LEC Information Systems
- Donna Burke
- dburke&lecis.com
-11014
- Liberty University
- Ken Hammill
- khhammill&liberty.edu
-11015
- Lokomo Systems AB
- Patrik Johansson
- patrik&lokomo.com
-11016
- ManageStar.com, Inc.
- David Young
- david.young&managestar.com
-11017
- MARA Systems AB
- Henrik Nordström
- hno&marasystems.com
-11018
- Massillon Cable Communications
- Christopher Altland
- topher&sssnet.com
-11019
- MENTA
- Angel Herraiz Murciano
- aherraiz&ctc.es
-11020
- MVP Systems, Inc.
- John Vottero
- john&mvpsi.com
-11021
- N2 Broadband, Inc.
- Stephen O. Berger
- sberger&n2bb.com
-11022
- Omnisci Software, Inc.
- Toshiki Fujiwara
- toshi-f&omnisci.co.jp
-11023
- Oxford University Computing Services
- Dominic Hargreaves
- oids&rt.oucs.ox.ac.uk
-11024
- P&S DataCom Corporation
- Glenn Sato
- g.sato&psdatacom.com
-11025
- Pagoo
- Colin Weir
- colinw&pagoo.com
-11026
- Perfectway Corporation
- Markus Weber
- markus&perfectway.com
-11027
- Physics Department, University of Kassel
- Lars Haag
- lhaag&physik.uni-kassel.de
-11028
- Reliable Networks, Inc.
- Dan Gurke
- iana&noc.rninc.net
-11029
- Reziprozitaet Consulting
- Klaus J. Klein
- kleink&reziprozitaet.de
-11030
- RouteFree Inc
- Chris Nguyen
- cnguyen&routefree.com
-11031
- SATEC SA
- Jose Vences
- sistemas&satec.es
-11032
- Semandex Networks, Inc.
- Max Ott
- max&semandex.net
-11033
- SentitO Networks
- Barrie Saunders
- bsaunders&sentito.com
-11034
- Sentor Monitoring Systems Pty Ltd
- David Mittnacht
- dmittnacht&sentor.cc
-11035
- Sheer Genius Software
- Nick Tornow
- ntornow&sheergeniussoftware.com
-11036
- Softax
- Lukasz Engel
- lukasz.engel&softax.pl
-11037
- Stratyc L.L.C.
- Ben Nielsen
- ben.nielsen&stratyc.com
-11038
- TECO SOFT España, S.A.
- Francisco Rueda Hernández
- francisco.rueda&tecosoft.es
-11039
- Tivo, Inc.
- Andy Townsley
- andyt&tivo.com
-11040
- Tool Banking Solutions
- David Deza
- dezad&tb-solutions.com
-11041
- UFSM
- Marcio d'Avila Scheibler
- marcio&cpd.ufsm.br
-11042
- ViaCLIX, Inc.
- Cory Adams
- ckadams&viaclix.com
-11043
- VIDA Software S.L.
- Rafael del Valle
- rafael&vida-software.com
-11044
- Vodafone, Egypt
- Mohamed Maher
- mohamed.maher&vodafone.com.eg
-11045
- Windborne Productions, Inc.
- Branson Matheson
- branson&windborne.net
-11046
- Zero Computing S.r.l.
- Paolo Pennisi
- staff&zero.it
-11047
- AK-Industrieinformatik GmbH
- Ulrich Pfahler
- upfahler&aki-gmbh.de
-11048
- billiton internetservices
- Patrick Ahlbrecht
- admin&billiton.de
-11049
- CP Corporate Planning AG
- F. Ploss
- fp&corporate-planning.com
-11050
- IDX Systems Corporations
- Douglas Herrick
- douglas_herrick&idx.com
-11051
- Point Systems
- Sam Barnum
- sbarnum&pointsystems.com
-11052
- Achmea Holding N.V.
- G.P. van Dijk
- gerard.van.dijk&achmea.nl
-11053
- Direct Internet, Inc.
- Michael Yanok
- myanok&direct-internet-inc.com
-11054
- Roman Seidl
- Roman Seidl
- rot&granul.at
-11055
- InnoAce CO., Ltd.
- Wonpil Kal
- wpkal&innoace.com
-11056
- Allmycrap.com
- Jim Carey
- jim&allmycrap.com
-11057
- Eyefinity, Inc
- Ron Jacobs
- ronja&eyefinity.com
-11058
- Hitachi Information & Telecommunication Engineering, Ltd.
- SatoshiI Yamaguchi
- satoshi.yamaguchi.cc&hitachi.com
-11059
- IMPRESS SOFTWARE AG
- Udo Juettner
- udo.juettner&impress.com
-11060
- Intervoice-Brite
- Travis Berthelot
- tberthel&intervoice-brite.com
-11061
- Longitude, Inc.
- Steven Magnell
- smagnell&longitude.com
-11062
- Nurnberg Scientific
- Keith Nasman
- keith&nurnberg.com
-11063
- PingMagic Limited
- James N. C. Ho
- hostmaster&pingmagic.com
-11064
- RHB Securities
- Hariraj
- hariraj&rhb.com.my
-11065
- Telcoware
- Jin Ho Lee
- siva&telcoware.com
-11066
- Teniad Technologies
- William Ferris
- william.ferris&tenaid.com
-11067
- University of Belgrade
- Marina Vermezovic
- marina.vermezovic&rcub.bg.ac.rs
-11068
- Webscreen Technology Ltd.
- Sean Witham
- sean.witham&webscreen-technology.com
-11069
- Yandex
- Vasily Tchekalkin
- bacek&yandex-team.ru
-11070
- uReach Technologies, Inc.
- Sean O'Donnell
- skodonnell&ureach.com
-11071
- Motus Technologies
- Sebastien Pouliot
- spouliot&motus.com
-11072
- IOTEC AB
- Matts Persson
- matts.persson&iotec.se
-11073
- 7th-Angel
- Akira Ryowa
- ryowa&yo.rim.or.jp
-11074
- ALTER
- Radoslaw Stachowiak
- tech&alter.pl
-11075
- Antarix e Applications Limited
- Sanjeev Gopal
- sgo&antarix.net
-11076
- Banesto S.A.
- Angel Redondo
- anredondo&banesto.es
-11077
- C.net d.o.o.
- Andrej Ota
- andrej&cnet.si
-11078
- Centralworks LLC
- Andy Smith
- andy&centralworks.com
-11079
- EIT Ltd
- Greg Malewski
- gregm&eit.ltd.uk
-11080
- Airwide Solutions (formerly 'First Hop')
- Nick Worth
- snmp&airwidesolutions.com
-11081
- Hydrogen Line, Inc.
- Brad G. Kyer
- bard&hydrogenline.com
-11082
- Illinois Central College
- Mike McClelland
- mmcclelland&icc.cc.il.us
-11083
- Intersix Technologies S.A.
- Fernando Tasso
- fernando.tasso&intersix.com.br
-11084
- ITDevices, Inc.
- Pat McFaul
- patmcfaul&itdevices.com
-11085
- Manojam
- Manoj A.M.
- manojam&yahoo.com
-11086
- MindTree Consulting Pvt Ltd
- Ananda Rao Ladi
- lar&mindtree.com
-11087
- Netforest Inc.
- UEDA Hiroyuki
- sysadmin&netforest.ad.jp
-11088
- Netus Technologies Co., Ltd.
- Calvin Roh
- calvin&netustech.com
-11089
- Preferred Systems
- David LaBissoniere
- labisso&debian.org
-11090
- Propero Limited
- Nick Townsend
- nick.townsend&propero.net
-11091
- Raze Technologies
- Chris Petrick
- cpetrick&razetechnologies.com
-11092
- St. Boniface General Hospital
- Jason Mowat
- jmowat&sbgh.mb.ca
-11093
- Telamon Systems
- Paul Pegrum
- paul.pegrum&telamon.co.uk
-11094
- xpedite systems inc
- Subu Ayyagari
- s.ayyagari&xpedite.com
-11095
- Loea Communications
- Thomas Lambert
- tlambert&loeacom.com
-11096
- BlueArc, part of Hitachi Data Systems
- Carlo Garbagnati
- hnas-mib-support&hds.com
-11097
- HEXAL AG
- Michael Anderson
- michael.anderson&hexal.de
-11098
- ComTelco (North America), Inc.
- David Peterson
- davidpeterson&bigfoot.com
-11099
- Dickerson Enginering
- Jay Tolbert
- jay.tolbert&dei-pe.com
-11100
- Linux NetworX
- Levi Pearson
- levi&lnxi.com
-11101
- NRI SecureTechnologies, Ltd.
- Tatsumi MASHIMO
- iana-info&nri-secure.co.jp
-11102
- OSA Technologies Inc.
- Shawn Fang
- shawn.fang&osatechnologies.com
-11103
- Opus International Consultants Ltd
- Neil Kane
- neil.kane&opus.co.nz
-11104
- Passback IT Consultancy
- Keith Sharp
- kms&passback.co.uk
-11105
- Pivot Consulting Ltd
- Brian Hoy
- brian.hoy&pivot.co.nz
-11106
- Scene7, Inc
- Stephen Lucchese
- stephen&scene7.com
-11107
- Ucentric Systems
- Jinyou Zhang
- jzhang&ucentric.com
-11108
- WaveMarket, Inc.
- Scott A. Hotes
- scott&wavemarket.com
-11109
- XDV - Verein für experimentelle Datenverarbeitung
- Stefan H. Holek
- stefan&xdv.org
-11110
- Arkivio
- Albert Leung
- albert&arkvio.com
-11111
- Bell Ontario Service Assurance
- Bruce Nichol
- bruce.nichol&bell.ca
-11112
- Stephen Gould Paper co
- Brian Bizzaro
- bbizzaro&stephengould.com
-11113
- BJC HealthCare
- John Glynn
- jglynn&bjc.org
-11114
- Citrus communications GmbH
- Marco Hentschel
- mhentschel&citrus-tel.de
-11115
- George Fox University
- Anthony Brock
- admin&georgefox.edu
-11116
- Marco Hentschel
- Marco Hentschel
- marco.hentschel&web.de
-11117
- Vereniging Open DomeinZenon
- Panoussis
- info&opendomein.nl
-11118
- Alpha1 Communications
- Marius Strom
- marius&alpha1.net
-11119
- 123india.com
- Shuhaid
- shuhaid&corp.123india.com
-11120
- Advanced Software Resources, Inc.
- Barry Schwartz
- barry.a.schwartz&lmco.com
-11121
- C3 Ltd
- Colin Everitt
- colin.everitt&c3ltd.co.uk
-11122
- Cencosud S.A.
- Luis Alberto Cruz
- lcruz&cencosud.com.ar
-11123
- Colruyt Group
- Mark Van Poucke
- netwerk&colruytgroup.com
-11124
- Contenture Ltd
- Karl W. Feilder
- karl&feilder.com
-11125
- Domani Software Services
- Michael DiChiappari
- mdichiappari&domanisoft.com
-11126
- ESCP-EAP
- Pascal Jacquin
- jacquin&escp-eap.net
-11127
- Fst s.r.l.
- Orlando Murru
- orlando.murru&fst.it
-11128
- Gadbois Consulting
- David Gadbois
- gadbois&computer.org
-11129
- Google, Inc.
- Ben Laurie
- benl&google.com
-11130
- Hülsmann Services e.K.
- Ralf Hülsmann
- ralf.huelsmann&huelsmann-services.de
-11131
- INSIDERS Information Management GmbH
- Steffen Leonhardt
- s.leonhardt&im-insiders.de
-11132
- Integral Solutions Corporation
- Norm Mackey
- dns&supportwizard.com
-11133
- Jemmac Software Limited
- Mark Freeman
- mark.freeman&jemmac.com
-11134
- Lentronics
- Karlos Prokopiuk
- karlos.prokopiuk&indsys.ge.com
-11135
- Marian Eichhloz
- Marian Eichholz
- eichholz&computer.org
-11136
- Meitetsu System Dev Co.Ltd
- Masaharu Hemmi
- hemmi&nag.navel.co.jp
-11137
- Metaparadigm Pte Ltd
- Michael Clark
- michael&metaparadigm.com
-11138
- mFormation Technologies Inc.
- Lenny Rocci
- lenny.rocci&mformation.com
-11139
- NeoWiz Corporation
- Seok Chan Lee
- snmp-admin&neowiz.com
-11140
- Network Center, Shanghai Jiaotong University
- Wenqi Li
- lwq007&mail1.sjtu.edu.cn
-11141
- Omneon Video Networks
- Christopher Davis
- chr&omneon.com
-11142
- OÖ Online
- Manfred Eder
- m.eder&ooe.net
-11143
- PCSNC
- Pascal Cimon
- pcimon&pcsnc.com
-11144
- RadPharm
- David Clunie
- dclunie&radpharm.com
-11145
- Siemens Financial Services GmbH
- Harald Plattner
- harald.plattner&sfs.siemens.de
-11146
- Siemens Informations Systems Limited
- Sachin Bansal
- sachin.bansal&sisl.co.in
-11147
- SVTO Hewlett-Packard
- Gregg Pulley
- gpul&fc.hp.com
-11148
- Swan Systems
- Sara Taillon
- sara&swansystems.com
-11149
- TI, d.o.o.
- Miha Rozic
- miha.rozic&tiol.si
-11150
- Roamware Inc. (formerly 'Unwiredsoft')
- Subhabrata Biswas
- subhabrata.biswas&roamware.com
-11151
- Urschel Laboratories Incorporated
- Mark Nehemiah
- hostmaster&urschel.com
-11152
- Vocalcom
- Frederic Steppe
- f.steppe&vocalcom.be
-11153
- WebWear
- Alexey A. Shelkovich
- ashelk&nsys.by
-11154
- WireX Communications, Inc.
- Howard Abrams
- howard&wirex.com
-11155
- WVS-groep
- Richard Baselier
- baselier&wvs.nl
-11156
- CDMEDIC
- Pablo Sau
- psau&cdmedic.com
-11157
- MultiTech Solutions Inc.
- Shekhar Sharma
- ss&mulsol.com
-11158
- Panservice
- Giuliano Peritore
- g.peritore&panservice.it
-11159
- PC Dialogs Inc.
- Robert Pesner
- bpesner&pcdialogs.com
-11160
- TDK Corporation
- Hisashi Oyama
- vxd&mb1.tdk.co.jp
-11161
- Wistron Corporation
- Jay Tao
- jay_tao&wistron.com
-11162
- Advanced Campus Services
- Art Vandenberg
- avandenberg&gsu.edu
-11163
- HAL Computer Systems Ltd
- Steve Rubie-Todd
- stevert&hal.co.uk
-11164
- PBH Planungsbuero Hammer
- Hansjuergen Riess
- hansjuergen.riess&wip-munich.de
-11165
- Acer Mobile Networks Inc.
- Chi-An Su
- Casu&acermn.com.tw
-11166
- ALLEWA GmbH
- Kurt Artho
- kurt.artho&allewa.net
-11167
- Azurtec, Inc.
- Dennis Loreman
- dennisl&azurtec.com
-11168
- Banca del Gottardo
- Stefano Klett
- stefano.klett&gottardo.com
-11169
- Beacon Bioscience, Inc.
- Andrew Kraus
- akraus&beaconbioscience.com
-11170
- Commsology
- Neil Taylor
- neiltaylor&commsology.co.uk
-11171
- CRoL
- Miroslav Zubcic
- mvz&crol.net
-11172
- Die Informatik-Werkstatt GmbH
- Peter Rau
- peter.rau&informatik-werkstatt.de
-11173
- Directory Solutions
- Aaron Arbery
- aaron&arbery.com
-11174
- DX Antenna Co., Ltd.
- Makota Haswgawa
- kaihatsu&dxantenna.co.jp
-11175
- Epic Group plc
- Paul Collis
- paulc&epic.co.uk
-11176
- Objective Pathology Services Limited (formerly 'Extelligence')
- Kemp Watson
- hostmaster&objectivepathology.com
-11177
- Grapevine Interactive (Pty) Ltd
- Mike Schronen
- mike&vine.co.za
-11178
- Guardian Controls International
- Gareth Williams
- garethwilliams2002&yahoo.co.uk
-11179
- hereUare Communications, Inc.
- Spencer Doherty
- spencerd&hereuare.com
-11180
- Invisible Hand Networks
- Kevin Kretz
- iana-admin&invisblehand.net
-11181
- Jan Schmidt DV-Beratung
- Jan Schmidt
- jb.schmidt&gmx.de
-11182
- Kretz Industries
- Kevin Kretz
- iana-admin&kretz.net
-11183
- Mitac International Corp.
- P.C. Wang
- p.c.wang&mic.com.tw
-11184
- Naray Information & Communication Enterprise
- Kihyun Joe
- khjoe24&narayinfo.com
-11185
- POSSIO AB
- Massie Inoue
- massie.inoue&possio.com
-11186
- Rattan Information
- Karen Chen
- karen&rt.com.tw
-11187
- SNV Netherlands Development Organisation
- Cathelijne Hornstra
- chornstra&snv.nl
-11188
- Universitat Rovira i Virgili
- Lluis Alfons Ariño
- lam&si.urv.es
-11189
- University of Applied Sciences Schmalkalden
- Jens Adner
- oidmaster&fh-schmalkalden.de
-11190
- Viox Services Inc.
- Joseph Eaton
- joe.eaton&viox-services.com
-11191
- Xiam
- Hugh O'Donoghue
- hugh&xiam.com
-11192
- Xiph.org Foundation
- Jack Moffitt
- jack&xiph.org
-11193
- Salica Ltd
- Steve Rubie-Todd
- stevert&hal.co.uk
-11194
- Wireless Maingate
- Jan Fredriksson
- jan.fredriksson&maingate.se
-11195
- VECTOR sp. z o.o.
- Grazyna Wielich
- g.wielich&vector.com.pl
-11196
- Marcant Internet Services GmbH
- Marc Delker
- noc&marcant.net
-11197
- A l Jazeera Satellite Channel
- Iyad Shiblaq
- iyad.shiblaq&aljazeera.net
-11198
- Atrid Systemes
- Gilles Polart-Donat
- g.polart&atrid.fr
-11199
- Auspice, Inc.
- Dino M. DiBiaso
- dibiaso&auspiceinc.com
-11200
- BellSouth
- Eric Sheppard
- eric.sheppard&bellsouth.com
-11201
- Benefit Systems, Inc
- James Turner
- turner&blackbear.com
-11202
- Blue Sky Studios
- Andrew Siegel
- abs&blueskystudios.com
-11203
- Cybermation Inc.
- Michael Borodiansky
- mborodia&cybermation.com
-11204
- Entercept Security Technologies
- Laura Quiroga
- lquiroga&entercept.com
-11205
- Environmental Systems Research Institute (ESRI)
- George Daswani
- gdaswani&esri.com
-11206
- EPLS Enterprise Computing Pte Ltd
- Alan Kang
- alan.kang&epls.com
-11207
- Falk eSolutions AG
- Tobias Wolff
- wolff&falkag.de
-11208
- Global Media Systems
- Roland Roth
- info&gms.lu
-11209
- Gold Wire Technology
- Wayne F. Tackabury
- wayne&goldwiretech.com
-11210
- Iain Stevenson
- Iain Stevenson
- iain&iainstevenson.com
-11211
- MobiTV Inc. (formerly 'Idetic Incorporated')
- Stephane Pelchat
- spelchat&mobitv.com
-11212
- IDM
- Mathieu Poumeyrol
- poumeyrol&idm.fr
-11213
- Information Services Extended Inc.
- Ed Huth
- eehuth&isxinc.com
-11214
- Meridis Corporation
- Daniel Van Mosnenck
- meridis&skynet.be
-11215
- Navitaire, Inc.
- Mike Gallagher
- mike.gallagher&navitaire.com
-11216
- Neoware Systems
- Ed Parks
- ed.parks&neoware.com
-11217
- Oceanet Technology
- Sébastien Guilbaud
- sguilbaud&oceanet-technology.com
-11218
- Oculan Corp
- Jeff Schneider
- jeff&oculan.com
-11219
- OpVista
- Ko-Hsing Chang
- kchang&opvista.com
-11220
- Pirelli Cavi e Sistemi S.p.A.
- Carlo Rogialli
- carlo.rogialli&pirelli.com
-11221
- PROCON GmbH
- Ramin Motakef
- rmotakef&procon.de
-11222
- Rochester General Hospital
- Thomas Gibaud
- tom.gibaud&viahealth.org
-11223
- RWT Telefony Polskie S.A.
- Marcin Slyk
- marcin.slyk&rwttp.com.pl
-11224
- SAEBEX (Pty) Ltd
- Jasper Horrell
- jasper&saebex.com
-11225
- SCMB
- Luigi Zuccarelli
- zuccarell&scmb.co.za
-11226
- Skandinaviska Magasin1 AB
- Mikael Brandström
- mikael.brandstrom&magasin1.se
-11227
- StartCorp
- Sherwyn Fernando
- fernando&startcorp.com
-11228
- SystemBase Co,.Ltd.
- Hyun Myung Kim
- ksmin&sysbas.com
-11229
- Systemware
- David Zhang
- david.zhang&systemware.com
-11230
- Voice Access Technologies
- Jason Loveman
- jloveman&voice-access.com
-11231
- Wincom Systems, Inc.
- Paul Ruocchio
- paul.ruocchio&wincomsystems.com
-11232
- Apocalypse Computing Services
- David Lim
- oc.cloud.labs&gmail.com
-11233
- Harald Gliebe
- Harald Gliebe
- harald.gliebe&online.de
-11234
- Hotcircles
- Srinivas Nimmagadda
- sriniwas_ns&hotmail.com
-11235
- WhichMall.com
- D. Moonfire
- dmoonfire&hotmail.com
-11236
- Mosakin International Corporation
- Rotimi O. Gbadamosi
- rotimi&mosakin.com
-11237
- ITEK spf
- Andrej V. Aleksandrov
- research&itek.com.ua
-11238
- APS Systeme
- Kurt Bohn
- kurt.bohn&aps-systeme.de
-11239
- Bennett, Coleman & Co. Ltd.
- Jatin Nansi
- jatin.nansi&timesgroup.com
-11240
- Caixa d'Estalvis i Pensions de Barcelona
- David Soler
- dsoler&lacaixa.es
-11241
- Carmel Secondary School
- Hui Chun Kit
- ckhui&school.net.hk
-11242
- Custom Electronics
- Roger Banks
- roger&custom-electronics.co.uk
-11243
- DCWG
- Patrick Patterson
- ppatterson&carillonis.com
-11244
- NET Control
- Dejan Mijailovic
- dmijailovic&primus.ca
-11245
- E2open
- Ari Flink
- ari&e2open.com
-11246
- GHZ Inc.
- Maqsood Khan
- ghzinc&hotmail.com
-11247
- GlaxoSmithKline
- Ron Chavez
- ron.l.chavez&gsk.com
-11248
- Greenwich Technology Partners, Inc.
- Michael Friedhoff
- mfriedhoff&greenwichtech.com
-11249
- i-DNS.net International Inc
- Maynard Kang
- maynard&i-dns.net
-11250
- Indiana Purdue University Ft. Wayne
- John Carter
- carter&ipfw.edu
-11251
- Intrado Inc.
- Mike Koepke
- mkoepke&intrado.com
-11252
- iTouch Labs
- R.I.Pienaar
- rip&itouchlabs.com
-11253
- J.P. Stephenson Co.
- John Paul Stephenson
- jpstephe&swbell.net
-11254
- Jydsk Consulting
- Hans-Henrik Andresen
- hha&unixhaj.dk
-11255
- LocatioNet Systems LTD
- Fridlender Yair
- yair&locationet.com
-11256
- Stormshield (formerly 'NETASQ')
- Boris MARECHAL
- boris.marechal&stormshield.eu
-11257
- Net-ES
- Per Jensen
- pj&net-es.dk
-11258
- Nogui AB
- Christer Palm
- palm&nogui.se
-11259
- Sepulveda Systems
- Eric Welsh
- ewelsh&sepulvedasystems.com
-11260
- Single Source oy
- Mikko Syrjälahti
- mikko.syrjalahti&kronodoc.fi
-11261
- Tschaeche Services
- Oliver Tschäche
- services&tschaeche.com
-11262
- Wire Card AG
- Siegfried Blanz
- siegfried.blanz&wirecard.com
-11263
- WRnetworks
- Christian Richter
- crichter&wrnetworks.de
-11264
- MobileArts AB
- Jonas Andersson
- jonas.andersson&mobilearts.se
-11265
- SET Software, Inc.
- Koh Kawanobe
- kawanobe&setsw.co.jp
-11266
- JiangSu Fujitsu Telecommunications Technology CO.,LTD.
- MeiLin
- meil&virgo.jftt.fujitsu.co.jp
-11267
- DISSC - Presidencia del Gobierno
- Alberto Bañón
- dissc&dissc.presidencia.gob.es
-11268
- Aastra
- Mario Giacometto
- mgiacometto&aastra.com
-11269
- Aculab plc
- Chris Brown
- chris.brown&aculab.com
-11270
- Adelphia Business Solutions
- Somesh Batra
- sbatra&adelphia.net
-11271
- Aria Technology Pte Ltd
- Yu-Gin Ng
- yugin&aria.com.sg
-11272
- Birdstep Technology
- Stefano Holguin
- stefano.holguin&birdstep.com
-11273
- BJB Software, Inc.
- Brian J. Butler
- bjbutler&bjbsoftware.com
-11274
- Centric Telecom Ltd
- Iain Donaldson
- idonaldson&centrictelecom.com
-11275
- ChangingWorlds
- Eamonn Newman
- eamonn.newman&changingworlds.com
-11276
- Commil Ltd
- Ilan Yosef
- ilany&commil.com
-11277
- convergence integrated media gmbh
- Network Administrator
- admins&convergence.de
-11278
- CS Engineering b.v.
- Andre Canrinus
- develop&corp.csnet.nl
-11279
- Datalab Technologia S.A.
- Jesus Benavente
- jbenavente&dltec.net
-11280
- Digimob Ltd
- Gavin Kinghall Were
- gavin&digimob.com
-11281
- digital bus
- John Castner
- johnacastner&aol.com
-11282
- DKSIN
- DongGon Shin
- red97&hitel.net
-11283
- Dobsonics Laboratories
- Robert L. Dobson
- bobdobson&aol.com
-11284
- ESW - EXTEL SYSTEMS WEDEL
- Guenther Schenk
- schenk2&esw-wedel.de
-11285
- FlipDog.com
- Justin Wood
- justin&flipdog.com
-11286
- H1
- Dickert Andreas
- andreas.dickert&highwayone.de
-11287
- High-Availability.com
- Giles Gamon
- giles&high-availability.com
-11288
- iCreate Software, Inc.
- Joe Perez
- anotherj&pacbell.net
-11289
- imagine LAN Inc.
- Kirk Olsen
- admin&imaginelan.com
-11290
- Information Services Plc.
- Dimitar Nikolov
- dnikolov&egvrn.net
-11291
- IONA Technologies
- Jaspal Sandhu
- jsandhu&iona.com
-11292
- La Factoría de Comunicaciones Aplicadas,S.L.
- Juan Ros Florenza
- hsoft&all-done.com
-11293
- LocaNet
- Henning Holtschneider
- hh&loca.net
-11294
- Mobinor AS
- Rune Hamnvik
- rune&mobinor.no
-11295
- Cybercity
- Lars Thegler
- iana&cybercity.dk
-11296
- Neon Software, Inc.
- Michael Swan
- swan&neon.com
-11297
- NetNet, Inc
- Jason Seymour
- seymour&netnet.net
-11298
- NLweb.com
- Janus Liebregts
- janus&liebregts.nl
-11299
- On Time Systems
- Ron Lee
- ron&otsys.com
-11300
- Passageways Travel
- Jeff Dorsch
- jeff.dorsch&pways.com
-11301
- Pearson Education
- David Bastian
- david.bastian&pearsoned.com
-11302
- Perimeter Technology
- Todd Bullock
- tbullock&ip-acd.com
-11303
- PhotoniXnet Corporation
- Yoshihisa Koizumi
- koizumi&photonixnet.co.jp
-11304
- PrinterOn Corporation
- Jeremy Finn
- jfinn&printeron.net
-11305
- Research Institute for Particle and Nuclear Physics, Department of Biophysics
- Csardi Gabor
- csardi&rmki.kfki.hu
-11306
- Robarts Research Institute
- Hua Qian
- hqian&irus.rri.ca
-11307
- Solarwinds.net
- BK Rogers
- bk_rogers&solarwinds.net
-11308
- SWAPCOM
- Frederic Aguiard
- frederic.aguiard&swapcom.fr
-11309
- TallGrass Communications, Inc.
- Brett Zamora
- bzamora&tallgrasscom.com
-11310
- Technique Consultants Pty Ltd
- Phillip Grayling
- phil&kangaroopointcliffs.com
-11311
- Tubitak - UEKAE
- Mucahit Mutlugun
- mucahit&uekae.tubitak.gov.tr
-11312
- Università di Salerno - D.I.A.
- Giuseppe Persiano
- giuper&dia.unisa.it
-11313
- University of Calgary
- Jeremy Mortis
- mortis&ucalgary.ca
-11314
- University of Kansas
- George F. Willard III
- gfwillar&ku.edu
-11315
- USAconnect
- Joe Eaton
- usaconnect_dns&yahoo.com
-11316
- ware solutions
- Rob Tholl
- rob&ware-solutions.com
-11317
- Wieland Electric GmbH
- Thomas Gick
- thomas.gick&wieland-electric.com
-11318
- Xerox Research
- Philip Ross
- philip.ross&crt.xerox.com
-11319
- Alcatel (Alcatel Bell Space)
- Gerard Armstrong
- gerard.armstrong&alcatel.be
-11320
- Communal CC GmbH
- Juergen Mueller
- juergen&consultant.com
-11321
- ECI IP Inc.
- Steven Petroskey
- spetroskey&jax.ecitele.com
-11322
- Integrated Support Systems, Inc.
- Keith Park
- keith&isscorp.com
-11323
- Manpower, Inc.
- Steven Dambeck
- steven.dambeck&na.manpower.com
-11324
- netsols.de
- Jan Wagner
- wagner&netsols.de
-11325
- OpenDesign, Inc.
- Gregory Mushen
- gregmushen&hotmail.com
-11326
- Blue Scooter, Inc.
- William Kallander
- wkallander&bluescooter.com
-11327
- Xi'an Jiaotong University Jump network Technology Co.,Ltd
- LiShengLei
- lsl&xajump.edu.cn
-11328
- Rana
- Christian Schlegel
- rana.iana&gmx.at
-11329
- LLNL-NIF
- Randy J Sanchez
- rsanchez&llnl.gov
-11330
- Inpronetwork corporation
- WonHo Kang
- yjingold&hanmail.net
-11331
- BetaSoft, Wojciech Kruk
- Jacek Konieczny
- jajcus&bnet.pl
-11332
- Broadstorm Telecommunications, Inc.
- Rossano Passarella
- rpassarella&broadstorm.com
-11333
- Media Data Systems Pte Ltd
- Ho Kim Sing
- hoks&globalsources.com
-11334
- OLES polymedia AG
- Oliver Lau
- oliver.lau&oles-ag.de
-11335
- Quris, Inc.
- Alan Sparks
- asparks&quris.com
-11336
- R-Squared Technologies
- Rich Ramos
- iana-pen&r2tek.com
-11337
- Software Workhouse of Hite Lee
- Hite Lee
- hite_lee&21cn.com
-11338
- Success Information System Co., Ltd.
- Narudom Roongsiriwong
- narudom&success.net.th
-11339
- Danam Communications Inc.
- Kwang-il Koo
- kikoo&danam.co.kr
-11340
- DREGIS Dresdner Global IT-Services Gesellschaft mbH
- Oliver Lau
- oliver.lau&dregis.com
-11341
- NoWalls
- Ryan McGuire
- ryan&nowalls.com
-11342
- Finnet Networks Ltd.
- Tuomo Rikman
- tuomo.rikman&finnet.fi
-11343
- Terra, Sol 3
- Ryan McGuire
- tellarite&msn.com
-11344
- The FreeRADIUS Server Project
- Alan DeKok
- aland&freeradius.org
-11345
- [microstage] Ingenieurbuero Raphael Dierkes
- Raphael Dierkes
- r.dierkes&microstage.de
-11346
- Provinzial Versicherung
- Uwe karhof
- uwe.karhof&provinzial.de
-11347
- Academ Consulting Services
- Stan Barber
- sob&academ.com
-11348
- Airbus
- Juan Lopez
- juan.lopez&airbus.aeromatra.com
-11349
- at rete ag
- Stefan Gallati
- stefan.gallati&atrete.ch
-11350
- Bondcar.com
- Graham Norbury
- gnorbury&bondcar.com
-11351
- Bouwens
- B.T. Bouwens
- bbouwens&xs4all.nl
-11352
- Cognigen Corporation
- Cindy Kailburn
- cindy.kailburn&cognigencorp.com
-11353
- Das Buero am Draht GmbH
- Gerhard Lehmann
- mib-admin&dasburo.com
-11354
- Data Design Systems Incorporated
- Ron Erlich
- erlich&datadesign.com
-11355
- DataVault
- Jon Larssen
- jonlarssen&hotmail.com
-11356
- DTV - Technical Knowledge Center of Denmark
- Peter Popovics
- pop&dtv.dk
-11357
- edeal Schroeder Maihoefer GbR
- Lukas Schroeder
- lukas&edeal.de
-11358
- Elcommtech Corp.
- Vladimir Lirner
- vlirner&elcommtech.com
-11359
- EML Ltd
- Jim Carter
- jim.carter&eml-uk.com
-11360
- Excenon
- Kevin Zhao
- zhaoxin_gl&sohu.com
-11361
- FASTER CZ
- Miroslav Hrad
- hrad&faster.cz
-11362
- FCS Partners
- Jorma Bergius
- jorma.bergius&fcspartners.fi
-11363
- Federation of Norwegian Agricultural Cooperatives
- Eigil Bjørgum
- eigil.bjorgum&felleskjopet.no
-11364
- Gaeasoft Corp.
- Cheol-Woo Kim
- francis&gaeasoft.co.kr
-11365
- Orange Slovakia
- Tomas Hornicek
- tomas.hornicek&orange.sk
-11366
- Goanna Graphics
- Richard Hancock
- rhancock&primus.com.au
-11367
- Helix GmbH
- W. A. Dobrjanski
- admin&helix-gmbh.net
-11368
- IAVista, Inc.
- Frank Jiang
- frank&iavista.com
-11369
- LenovoEMC Ltd (formerly 'Iomega')
- Shyam Sareen
- shyam.sareen&lenovoemc.com
-11370
- ITT CO., Ltd.
- Satoshi Tsuboi
- staff&itt.co.jp
-11371
- jung myung telecom. co., Ltd.
- Jeongman Jang
- jm7315&jmtelecom.co.kr
-11372
- Meret Optical Communications
- Bhaswar Sarkar
- bsarkar&meretoptical.com
-11373
- NetVision Sp. z o.o.
- Marek Habersack
- grendel&debian.org
-11374
- OKO Bank Group
- Jukka Ikaheimonen
- jukka.ikaheimonen&okobank.fi
-11375
- Pacific Geoscience Center
- Richard Baldwin
- baldwin&pgc.nrcan.gc.ca
-11376
- Pedestal Software
- Fernando Trias
- fernando&pedestalsoftware.com
-11377
- Product Technology Partners Ltd
- Martin Saxon
- mjs&ptpart.co.uk
-11378
- Quartz Electronics Ltd.
- Marc Smith
- m.smith&quartzuk.com
-11379
- Radiant Rt.
- Tanka Robert
- tanka.robert&radiant.hu
-11380
- Retek Inc
- Tom Cox
- tom.cox&retek.com
-11381
- Rogers Communications Inc
- Pieter Hoogenboom
- Pieter.Hoogenboom&rci.rogers.com
-11382
- RR Enterprises
- Yildiray Ozen
- yildirayo&rrenterprises.on.ca
-11383
- SaudiNet
- Abdulsalam Abanmy
- registry&saudi.net.sa
-11384
- SevenLayer Services
- Michael Steele
- michael&netsteele.com
-11385
- Spanlink Communications
- Alvin Wong
- alvin.wong&spanlink.com
-11386
- Studer
- Wolfgang Studer
- wolfgang&pramach.de
-11387
- T4 Consulting Group
- Todd Bracken
- tbracken&t4cg.com
-11388
- Tarantola Labs
- Carlo Tarantola
- carlo&tarantola.com
-11389
- TECFA (Technologie de Formation et Apprentissage)
- Olivier Clavel
- olivier.clavel&tecfa.unige.ch
-11390
- Texas Department of Housing and Community Affairs
- Karl Higgins
- karl.higgins&tdhca.state.tx.us
-11391
- The Texas GigaPOP
- Stan Barber
- sob&noc.gigapop.gen.tx.us
-11392
- Tools4ever bv
- Jacques Vriens
- j.vriens&tools4ever.com
-11393
- Tymlabs Management Inc
- Mike Broadway
- mike.broadway&rocsoftware.com
-11394
- UD Technology
- Shilong Zheng
- szheng&udtechinc.com
-11395
- Vancouver Public Library
- Andre Fortin
- andrefor&vpl.vancouver.bc.ca
-11396
- Webex China
- Hunter Wang
- hunterw&hz.webex.com
-11397
- Xpedio AB
- Patrik Nilsson
- patrik&xpedio.com
-11398
- Pyx Engineering AG
- Juerg Wanner
- juerg&pyx.ch
-11399
- Washington State University Vancouver
- Chris Gruse
- gruse&vancouver.wsu.edu
-11400
- Dept. of Information and Communications Technology, HK Institute ofVocational Education (Tsing Yi)
- Nick Urbanik
- nicku&vtc.edu.hk
-11401
- CONCATEL, S.L.
- Diego Dal Cero
- diego.dal.cero&bcn.concatel.com
-11402
- MRO Software Inc.
- Gary Freeman
- gary.freeman&mro.com
-11403
- Corente, Inc.
- Sam Bendinelli (VP Engineering)
- techsupport&corente.com
-11404
- Seanet Corporation
- Grigory Eremenko
- admin&seanet.com
-11405
- shanghaionline Inc.
- Nick Yang
- nickyang21&online.sh.cn
-11406
- SANDY Group
- Vladimir Dubrovin
- vlad&sandy.ru
-11407
- obsceneskills.com
- Steven Lotito
- steven.lotito&alumni.pitt.edu
-11408
- Fiberhome Telecommunication Technologies Co.,LTD
- Hairong Wan
- whr&fhn.com.cn
-11409
- adequate systems GmbH
- Klaus Garms
- garms&adequate-systems.com
-11410
- Advanced Communication Devices Corp.
- Tim Ti
- tti&acdcorp.com
-11411
- AOL Australia
- Brandon Yap
- byap&aol.net.au
-11412
- BKtel communications GmbH
- Martin Heldmann
- heldmann&bktel.com
-11413
- Cape Clear Software Ltd.
- Jorgen Thelin
- jorgen.thelin&capeclear.com
-11414
- Carnation Technology Ltd.
- Wu Deyou
- huff&carnation.com.cn
-11415
- CLCsoft
- Edward Jang
- hwjang&clcsoft.com
-11416
- Allgera Corp. (formerly 'Coalsere Inc.')
- Scott Ruple
- sruple&allgera.com
-11417
- Cynops GmbH
- Martin Bartosch
- m.bartosch&cynops.de
-11418
- DFN-CERT Services GmbH
- Reimer Karlsen-Masur
- oidmaster&dfn-cert.de
-11419
- FOTEL Corp.
- Calvin Hsieh
- chsieh&prodigy.net
-11420
- GHS Data Management
- Chris Jackson
- cjackson&ghsinc.com
-11421
- Industrial Networking Solution
- Barry Baker
- bbaker&industrialnetworking.com
-11422
- Larmouth T&PDS Ltd
- John Larmouth
- j.larmouth&salford.ac.uk
-11423
- Lucid Vision, Inc.
- Thomas D. Nadeau
- tnadeau&lucidvision.com
-11424
- MITSUBISHI GAS CHEMICAL COMPANY, Inc.
- Hiroyuki Urabe
- mail-iamd&mgc.co.jp
-11425
- MobileWebSurf
- Sanjay Sinha
- sanjay&mobilewebsurf.com
-11426
- Netfusions s.r.l.
- Antonio D'Alfonso
- pietro.tiberi&inwind.it
-11427
- Particle Physics Group
- Marc Kelly
- m.p.kelly&bristol.ac.uk
-11428
- Redes de Computadoras
- Daniel Alejandro Ragno
- dragno&fi.uba.ar
-11429
- Schumacher
- Lothar Schumacher
- lschumacher&acm.org
-11430
- Simtek Corporation
- Chris Gilbert
- gilbert&simtek.com
-11431
- Southern Polytechnic State University
- Jim Herbert
- jherbert&spsu.edu
-11432
- TOWER Group Network
- Benjamin B. Leblond
- benjamin.leblond&nz.towerlimited.com
-11433
- University of West Bohemia
- Jiri Sitera
- sitera&civ.zcu.cz
-11434
- Utah Scientific, Inc.
- Ed Shober
- edshober&utsci.com
-11435
- WebEx Communications, Inc.
- Hunter Wang
- hunterw&hz.webex.com
-11436
- XML Global Technologies, Inc.
- Matt MacKenzie
- matt&xmlglobal.com
-11437
- Xymbol
- Charles Frank
- cfrank&xymbollab.com
-11438
- Canadian Center for Remote Sensing (GeoAccess Division)
- Jean-Francois Doyon
- jdoyon&nrcan.gc.ca
-11439
- CCLRC
- Chris Seelig
- c.d.seelig&rl.ac.uk
-11440
- Sapros
- Peter Haight
- peterh&sapros.com
-11441
- Goshen College
- Tim Boshart
- timsb&goshen.edu
-11442
- InsertAds Inc.
- Bob Feather
- bob.feather&insertads.com
-11443
- Morder Devices
- Liujun
- liuj&mdclsoft.com
-11444
- Frederick Engineering
- David Gray
- dgray&fetest.com
-11445
- ANOREG-BR
- Arnaldo H. Viegas de Lima
- arnaldo&pobox.com
-11446
- Adduce Networks
- Rajesh Srivastava
- rajesh&balcomt.com
-11447
- XiLogic, L.L.C.
- Daniel Bennett
- ddbennet&xilogic.com
-11448
- ITology Co., Ltd
- Hur Yinggull
- yinggull&itology.co.kr
-11449
- Tethernet, Inc.
- Frederick Hunter
- fredh&tethernet.com
-11450
- xitec.de
- Armin Röther
- oid&xitec.de
-11451
- SINBON ELECTRONIC CO., LTD
- Lily Huang
- lily&sinbon.com
-11452
- Allegient Systems
- Carl Eastman
- ceastman&allegientsystems.com
-11453
- Altadis
- Jose Gomez Garcia
- jgomez&altadis.com
-11454
- Avencis SA
- David Wonner
- david.wonner&avencis.net
-11455
- Aviation Management Technologies GmbH
- Röther Armin
- armin.roether&avitech.de
-11456
- CalvaEDI S.A.
- John Hughes
- john&calva.com
-11457
- Cimcor, Inc.
- Robert E. Johnson, III
- johnson.robert&cimcor.com
-11458
- Computing Services Department, University of Liverpool
- Ian C. Smith
- i.c.smith&liverpool.ac.uk
-11459
- Data Track Technology PLC
- David Johnstone
- dtj&dtrack.com
-11460
- datafront
- Rick Kilcoyne
- rkilcoyne&datafront.com
-11461
- Deloitte & Touche
- Joel Moses
- jmoses&deloitte.com
-11462
- DroneDAP
- Zachary Smith
- zach+iana&euqaz.net
-11463
- EC-Founder
- Wei Tao
- taow&ecfounder.com
-11464
- Electronic Arts
- Doug Warren
- dwarren&ea.com
-11465
- Envoy Technologies
- Bill Vanyo
- billv&envoytech.com
-11466
- e-Pollination Enterprise, Inc.
- Raymond Gao
- raygao&home.com
-11467
- IntermediaSP
- Tomas Heredia
- tomas&intermedia.com.ar
-11468
- Jackson County School District 6
- David Seely
- david.seely&district6.org
-11469
- Kokong
- Johan Troedsson
- johan&kokong.com
-11470
- LX networking
- Joachim Rosskopf
- Joachim.Rosskopf&lx-networking.de
-11471
- mineit software ltd
- Derek Johnston
- derek&mineit.com
-11472
- MoeTi Corp.
- MOULIN Clément
- mais&ouestil.com
-11473
- Nordic Messaging Technologies AB
- Stefan Norlin
- stefan.norlin&nordicmessaging.se
-11474
- NTT DATA COPORATION
- Yuji Yamada
- yamaday&nttdata.co.jp
-11475
- Pro-Active
- Johann Dantant
- johann.d&pro-active.fr
-11476
- Quest Controls, Inc.
- Ed Goggin
- questmail&questcontrols.com
-11477
- Rasvia Systems Incorporation
- Ling Tiing Puu
- puu.ling&rasvia.com.tw
-11478
- Scorpion Controls Inc
- Andrew G Swales
- aswales&ieee.org
-11479
- Selso
- Sébastien Lobstein
- slobstein&selso.com
-11480
- SunnyInd Corp
- Geoff Rego
- geoff&sunnyind.com
-11481
- TEIMA Audiotex
- José Parera Bermúdez
- jparera&teima.es
-11482
- Universal Traffic Management Society of Japan(UTMS)
- Teruyuki Tajima
- tajima&utms.or.jp
-11483
- University of Illinois at Urbana-Champaign
- Michael A. Grady
- m-grady&uiuc.edu
-11484
- viastore systems GmbH
- Thorsten Sauter
- t.sauter&viastore.de
-11485
- Vida Network Technologies, Inc.
- Larry Kong
- larry_kong&yahoo.com
-11486
- Vizzavi NL
- R. Eygendaal
- ronald.eygendaal&corp.vizzavi.net
-11487
- VoxSurf Ltd.
- Axel Voigt
- axel.voigt&voxsurf.com
-11488
- AB Computers
- Alek Barsky
- alekbarsky&hotmail.com
-11489
- Alacritus
- Roger Stager
- rstager&alacritus.com
-11490
- BetweenMarkets, Inc.
- Craig Dunn
- cdunn&betweenmarkets.com
-11491
- University of Jyvaskyla
- Network Administrator
- hostmaster&jyu.fi
-11492
- Micro Research Laboratory, Inc.
- Seiichi Kaneko
- kaneko&mrl.co.jp
-11493
- Obourg Origny Informatique
- Xavier Milliès-Lacroix
- xavier.millies-lacroix&obourg-origny-info.com
-11494
- Nebulon Pty. Ltd.
- Paul Szego
- paul.szego&nebulon.com
-11495
- cubic.ch
- Tim Tassonis
- timtas&cubic.ch
-11496
- foo.cz
- Adam Buble
- buble&cas.cz
-11497
- Gamerz.NET Enterprises
- Richard Rognlie
- oid&spamblock.gamerz.net
-11498
- HCCnet B.V.
- Hidde Korenstra
- h.korenstra&hccnet.nl
-11499
- Hollmann Consulting Services
- Frank Hollmann
- frank.hollmann&epost.de
-11500
- Infrant Technology Inc.
- Wei GAo
- wgao&infrant.com
-11501
- IngmarNet
- Ingmar Schmidt
- ingmar-schmidt&gmx.de
-11502
- ITU-T ASN.1 Project
- Olivier Dubuisson
- Olivier.Dubuisson&francetelecom.com
-11503
- METRAWARE
- Jerome Monclard
- jmonclard&metraware.com
-11504
- NDSL, Inc.
- Jerry Bastian
- jbastian&cellwatch.com
-11505
- Network-1 Security Solutions, Inc.
- Cynthia Mills
- mills&network-1.com
-11506
-
-
- Unassigned (Removed 2002-05-02)
-11507
- ProBusiness
- Ian Clark
- iclark&probusiness.com
-11508
- School of Banking and Management in Cracow
- Tomasz Wojdynski
- tomwoj&wszib.krakow.pl
-11509
- Schweizer Electronic AG
- Gerold Mauch
- IT10&seag.de
-11510
- Service Intelligence
- Sergei Agalakov
- sagalakov&serviceintelligence.com
-11511
- Southern Illinois University School of Medicine
- Paul M Fleming
- pfleming&siumed.edu
-11512
- St. Joseph's College
- George Leedle
- gle2918&saintjoe.edu
-11513
- Strele Informatik
- Klaus Strele
- kstrele&compuserve.com
-11514
- Chris Abernethy
- Chris Abernethy
- cabernet&chrisabernethy.com
-11515
- SUB1 S.A.
- Eldo Loguzzo
- eldo&sub1.com.ar
-11516
- The Academy of Sciences of the Czech Republic
- Adam Buble
- buble&cas.cz
-11517
- Trivadis AG
- Tim Tassonis
- tim.tassonis&trivadis.com
-11518
- T-Soft Ltd.
- Mike Rehder
- mrehder&tsoft-tele.com
-11519
- VET
- P.S. Dekkers
- paul&sterrenkunde.nl
-11520
- Visilinx, Inc.
- UNIX Department
- unix&visilinx.com
-11521
- Broadcast Music Incorporated
- Jon Watts
- noc&bmi.com
-11522
- LINXTEK
- DongSeak Yoon
- manulsan&linxtek.com
-11523
- Fujitsu Laboratories of America, Inc.
- Dominic Greenwood
- dpag&fla.fujitsu.com
-11524
- Ch5 Finland Oy
- Christian Grondahl
- christian.grondahl&ch5finland.com
-11525
- brain://on AG
- Bernd Fix
- brf&brainon.ch
-11526
- GIRO LTD
- Péter Kostenszky
- peter.kostenszky&mail.giro.hu
-11527
- Bromax Communications, Inc.
- Irving Liu
- irving.liu&bromax.com.tw
-11528
- DVBern AG
- Dragan Milic
- dragan.milic&dvbern.ch
-11529
- KOGA ELECTRONICS CO.
- Okuno Makoto
- okuno&koga.co.jp
-11530
- 3G - NetWorks
- Registration Services
- 3gnt&3gnt.net
-11531
- aha-systems
- Albrecht Haug
- adtjd&yahoo.de
-11532
- Bond University
- Stephen Kaspersen
- techhelp&netactive.co.za
-11533
- Chiba Industries
- Mike Markley
- mike&chibaindustries.com
-11534
- coaXmedia
- Keith L. Bernhardt
- kbernhardt&coaxmedia.com
-11535
- COGITIS
- Daniel Alain
- adaniel&cogitis.tm.fr
-11536
- Cyber-Ark
- Gal Cucuy
- galc&cyber-ark.com
-11537
- Dirección General de la Policía
- Gonzalo Menendez Fraile
- soporte&policia.es
-11538
- Elata Ltd.
- Greg Mitchell
- gkm&elata.com
-11539
- Essent Kabelcom
- Berthold Nijp
- iana&castel.nl
-11540
- ETIT
- SangJin Park
- sj_park&etit.co.kr
-11541
- Fugu Angst Productions
- Russell Hay
- seb&b0b.net
-11542
- GuangZhou GaoKe Communication Equipment Co., Ltd.
- Li Huapeng
- lihuapeng&21cn.com
-11543
- Internet Northwest
- Dennis Peterson
- dennispe&inetnw.com
-11544
- Kunsthochschule Fuer Medien
- Robert O'Kane
- okane&khm.de
-11545
- Kurtev Intergalactic
- Dimiter Kurtev
- dkurtev&kurtev.com
-11546
- METRAWARE
- Jerome Monclard
- jmonclard&metraware.com
-11547
- Mpower Communications Corporation
- SNMP Management
- snmp-mgmt&mpowercom.com
-11548
- NABLA2 s.r.l.
- Faglioni Giovanni
- giova&faglioni.it
-11549
- NETOUS TECHNOLOGIES Ltd.
- W.M.Yiu
- wm_yiu&netous.com
-11550
- NETPIA SYSTEMS Co.,LTD
- Tim Kim
- tim&netpia.co.kr
-11551
- Orca Orcinus, Inc.
- Philip Poremba
- phil&orcinus.com
-11552
- page87
- Paul Rees
- paulrees&page87.com
-11553
- Planet Technologies NV
- Dennis van Rossum
- d.vanrossum&planetinternet.nl
-11554
- Pomcor
- Francisco Corella
- francisco&pomcor.com
-11555
- Rider University
- Timothy Fairlie
- fairlie&rider.edu
-11556
- Robert Burrell Donkin
- Robert Burrell Donkin
- robertdonkin&mac.com
-11557
- S&CI
- Constant Dupuis
- constant.dupuis&skynet.be
-11558
- SOFICE
- Hascoat Michel
- system&sofice.fr
-11559
- SoftGame International Pty. Ltd.
- John M. Salvo Jr.
- john&softgame.com.au
-11560
- Tantia Technologies Inc.
- Jacky Yu
- jacky.yu&tantiatech.com
-11561
- Topcon Positioning Systems, Inc.
- Alexander Davydenko
- alex&javad.ru
-11562
- VE2UG
- Rene Barbeau
- nousdeux&videotron.ca
-11563
- Ahnlab, Inc
- Jinyoung Park
- susia&ahnlab.co.kr
-11564
- CiteItWrite
- Jason Patterson
- jrpatterson&hotmail.com
-11565
- Instituto Nacional de Estatística - PORTUGAL
- DSII/SGIT
- admin&ine.pt
-11566
- Prologue Software
- Lise Didillon
- ldidillon&prologue-software.fr
-11567
- DeltaLoyd Deutschland
- Peter Handloser
- peter.handloser&deltalloyd.de
-11568
- bmbwk
- DI Klemens Urban
- klemens.urban&bmbwk.gv.at
-11569
- handy.de Vertriebs GmbH
- Robert Rauchstaedt
- robert&mail.handy.de
-11570
- Mages Touch
- Derick W Featherstone
- derickf&mages-touch.com
-11571
- NTI Studio's
- Darren L Featherstone
- darrenf&xs4all.nl
-11572
- Rasvia Systems, Inc.
- Hsing Yuan
- hsing.yuan&rasvia.com
-11573
- rockus.at
- Oliver Gerler
- oliver.gerler&rockus.at
-11574
- Seven-Winds
- Derick W Featherstone
- derickf&seven-winds.com
-11575
- Solution Design Laboratory
- Ken Ingram
- kingram&sdl.org
-11576
- Sunnycal Inc.
- Ricky Sun
- sunyuxi&yahoo.com
-11577
- Global System Services
- Didier Dupuy d Angeac
- dda&gss.webstore.fr
-11578
- AirZip, Inc.
- Dave Coleman
- dave_coleman&airzip.com
-11579
- Amadeus Data Processing GmbH
- Timofei Zakrewski
- tzakrews&amadeus.net
-11580
- Amdocs
- Yossi Rozen
- yossiroz&amdocs.com
-11581
- bylinux.net
- Francis So
- francis&bylinux.net
-11582
- C&I Technologies
- Dongseok Yang
- scoranta&cnitec.com
-11583
- Cayenta, Inc.
- Philip Porreca
- pporreca&cayenta.com
-11584
- CLASS AG
- Klaus Jungbauer
- Klaus.Jungbauer&class.de
-11585
- ColoradoBiz.net
- Quentin Perkins
- quinn&quinnperkins.com
-11586
- DLR e.V.
- Juergen Schmidt
- juergen.schmidt&dlr.de
-11587
- epictet AG
- Wolf-Dietrich Seidlitz
- wds&epictet.de
-11588
- ERA a.s.
- Petr Skalicky
- p.skalicky&era.cz
-11589
- Exsior Data & Information Tech. Inc.
- Richard Huang
- rich&edit.com.tw
-11590
- Fortech Ltd.
- Dalibor Toman
- dtoman&fortech.cz
-11591
- Free Software Foundation
- Sergey Poznyakoff
- gray&gnu.org
-11592
- HANGZHOUSUNYARD INFORMATION ENGINEERING CO.,LTD
- Xinbo Yan
- yanxinbo&yeah.net
-11593
- IMISE
- Sebastian Dietzold
- dietzold&imise.uni-leipzig.de
-11594
- LDCOM Networks
- Sebastien Louyot
- sebastien.louyot&ldcom.fr
-11595
- Lightmaze AG
- Christoph Gasche
- c.gasche&lightmaze.com
-11596
- Mediakabel
- J vd Voort
- jvdvoort&mediakabel.nl
-11597
- MFB-Multa spol. s r.o.
- Lukas Blaha
- lukas.blaha&mfb.cz
-11598
- MGIC - Mortgage Guaranty Insurance Corp
- Denise Huempfner
- Denise_Huempfner&mgic.com
-11599
- mille21
- Junyong Jo
- charisma&mille21.com
-11600
- Neogration Inc.
- Jeff Hays
- jeffrey.hays&abnamro.com
-11601
- Netaxs Internet Services
- George Robbins
- grr&netaxs.com
-11602
- New York State Office of the State Comptroller
- Jean Moore
- jmoore&osc.state.ny.us
-11603
- Nexxient Communications
- Andrew Lee
- andrew.lee&nexxient.com
-11604
- NorduGrid
- Anders Wäänänen
- waananen&nbi.dk
-11605
- Optical Wireless Link Inc.
- Paul Tzeng
- ptzeng&opticalwirelesslink.com
-11606
- Pacific Broadbank Networks
- Ger Vloothuis
- ger&pbn.com.au
-11607
- Plumtree Software
- Daniil Khidekel
- daniil.khidekel&plumtree.com
-11608
- Pracom Pty Ltd
- Thomas Price
- thomas.price&pracom.com.au
-11609
- PUSANWEB Ltd
- Woon-uk Lee
- woonuk&pusanweb.co.kr
-11610
- Sandvine Incorporated
- Don Bowman
- don&sandvine.com
-11611
- Secretaria da Fazenda do Estado de Sp
- Waldemar Scudeller Jr.
- wsj&wsj.com.br
-11612
- STT s.r.l.
- Fabio Fedele
- fafed&seeweb.com
-11613
- Vortex Ltd
- Stephen Wong
- admin&vortex.com.hk
-11614
- vrwg
- rb
- user04&vrwg.net
-11615
- Webaronet Technology
- Victor Wong
- wongvic&hkem.com
-11616
- WebPerform Group Ltd
- Pete Shew
- pete_shew&webperform.com
-11617
- Cablevision Systems Holdings
- Bill Dolan
- bdolan&cablevision.com
-11618
- SOLTECH CO., Ltd.
- Dong-Hwa Lee
- soltech&netsgo.com
-11619
- PTC Solutions Ltd
- Peter Blaney
- pblaney&ptc.co.uk
-11620
- PACE Anti-Piracy
- Christopher Taylor
- ctaylor&paceap.com
-11621
- Agrotecnica Arpa scrl
- Carlo Scarfoglio
- scarfoglio&arpacoop.it
-11622
- 3PARData
- PhiDien Nguyen
- snmp&3pardata.com
-11623
- Aegis Software
- Lloyd Mangnall
- lloydm&aegisgrp.com
-11624
- Bit-Lab PTY LTD
- Nick de Sancha
- nick&bitlab.com.au
-11625
- Black Bear Software, LLC
- James M. Turner
- turner&blackbear.com
-11626
- Combol GmbH
- Jean-Pierre Bolengo
- info&combol.ch
-11627
- David Pitts
- David Pitts
- dpitts&mk.net
-11628
- EDIPORT Telecommunication Ltd.
- Attila Molnar
- attila.molnar&ediport.hu
-11629
- Educational Service Unit #2
- Mike Danahy
- mdanahy&esu2.org
-11630
- eircomnet
- Donal Diamond
- donal.diamond&eircom.net
-11631
- EnablingTrust LLC
- Bruce Kiley
- bkiley&enablingtrust.com
-11632
- e-Sec Tecnologia em Seguranca de Dados LTDA
- Luciano da Silva Coelho
- coelho&esec.com.br
-11633
- Europop AG
- Holger Patrick Schebek
- h.schebek&europop.net
-11634
- Exempla
- Kevin Erickson
- kerickso&exempla.net
-11635
- Fiorano Software Inc.
- Rishi Raj Yadav
- rishi&fiorano.com
-11636
- Focal Point Software, Inc.
- Luigi Bai
- lpb+iana&focalpoint.com
-11637
- Generatio GmbH
- Thomas Harmann
- harmann&generatio.com
-11638
- Grapes Network Services
- William Brioschi
- william.brioschi&grapesnet.com
-11639
- Intersys Uruguay Ltda
- Eduardo Roldan
- eduardo&intersys.com.uy
-11640
- Miritek, Inc.
- Seogsoon Ahn
- ssahn&miritek.com
-11641
- NETOVA
- Philippe Martinou
- philippe.martinou&netova.net
-11642
- Nextra Ensure (UK)
- Peter Jestico
- peter.jestico&nextra.co.uk
-11643
- One Stop Consulting, Inc.
- Anthony Cogan
- anthony.cogan&thinkunix.com
-11644
- Orbism Consulting
- Dave OReilly
- daveor&mobiustech.ie
-11645
- Pentalog Inet
- Iulia Talos
- italos&pentalog.fr
-11646
- PentaMedia Co., Ltd.
- Harry Cho
- hscho&pentamedia.com
-11647
- Planetasia Ltd.,
- Ramapriya R.M.
- ramapriyarm&planetasia.com
-11648
- RemoteSite Technologies Inc.
- Eric Sheffer
- eric.sheffer&remotesite.com
-11649
- Ross Stores, Inc.
- Mike O'Connell
- mike.oconnell&ros.com
-11650
- Schnedermann Software-Consulting GmbH
- Ekkard Schnedermann
- Ekkard.Schnedermann&Schnedermann.de
-11651
- SideSpace
- Altaf Mohamed
- altafm&speakeasy.net
-11652
- Sonoma State University
- Jack Ziegler
- ziegler&sonoma.edu
-11653
- Stack Computer Solutions
- Stephen Cobham
- scobham&stack.co.uk
-11654
- Strott Network Solutions
- Christian Strott
- cstrott&snets.de
-11655
- SY.O. srl
- Andrea Spada
- a.spada&syo.it
-11656
- Synapse Systems AB
- Per Bergqvist
- per&synapse.se
-11657
- Taiwan Telecommunication Network Services Co., Ltd.
- Jung Wu
- hostmaster&ttn.com.tw
-11658
- Universite Blaise PASCAL
- Denis Pays
- denis.pays&univ-bpclermont.fr
-11659
- Virtual Security Research
- George D. Gal
- ggal&vsecurity.com
-11660
- VMS Limited
- Isaac Coll
- icoll&vmslimited.co.uk
-11661
- Wahoo International Enterprise Co., Ltd.
- Lord Lee
- lord_li&wahoo.com.tw
-11662
- Marcel Ruff
- Marcel Ruff
- mr&marcelruff.info
-11663
- +X Altaïr Toulouse
- Christophe Garrigue
- christophe.garrigue&altair.fr
-11664
- base2
- Daniel Powell
- daniel&base2.com.au
-11665
- dacom
- Sun Jung
- sjung&dacom.net
-11666
- Institute of Communications Engineering - University of Hanover
- Michael Meincke
- meincke&ant.uni-hannover.de
-11667
- New York State Education Department
- Mark Macutek
- mmacutek&mail.nysed.gov
-11668
- WRLucas
- Bill Lucas
- mrwrlucas&netscape.net
-11669
- Milhouse Technologies USA
- Arnell Milhouse
- arnell_milhouse&usa.com
-11770
- China Sanjiang Space Group
- Jianxing Liu
- liujianxing&263.net
-11771
- 81 Broad Street
- Graeme Defty
- dgefty&attglobal.net
-11772
- Adrock Software
- Chris Crowe
- chris&iisfaq.com
-11773
- AGMODEL, NARC, JAPAN
- Takuji Kiura
- kiura&affrc.go.jp
-11774
- ASYK S.A.
- Fenny Hadjistamatiou
- f.hadjistamatiou&asyk.ase.gr
-11775
- Atchik
- Guillaume Sanchez
- guillaume.sanchez&atchik.com
-11776
- AviBit data processing GmbH
- Tom Leitner
- t.leitner&avibit.com
-11777
- Ayman LLC.
- Davis Mcpherson
- davism&aymanllc.com
-11778
- BlueBridge Technologies AG
- G.Reitberger
- reitberger&bluebridge.de
-11779
- Casedev Active Oy
- Jukka Terho
- jterho&casedev.com
-11780
- CBIM
- Ugo Cei
- u.cei&cbim.it
-11781
- celtro
- Shlomo Hecht
- shlomo.hecht&celtro.com
-11782
- Charles Industries, LTD
- Larry Page
- lpage&charlesindustries.com
-11783
- Canon Software Information Systems Inc.
- Takashi Fukui
- fukui.takashi&canon-js.co.jp
-11784
- Credant Technologies
- Richard Brooks
- rbrooks&credant.com
-11785
- Critical Integration Ltd
- Redvers Davies
- red&criticalintegration.com
-11786
- Daisy Software
- Info
- info&daisysoftware.com
-11787
- Datagate d.o.o.
- Srdjan Srdic
- ssdic&net.yu
-11788
- fluxx.com e-commerce GmbH
- Siegfried Renner
- renner&fluxx.com
-11789
- ForeScout Technologies, Inc.
- Asaf Lavi
- tech&forescout.com
-11790
- GateWay Community College
- Jose Candanedo
- candanedo&gwc.maricopa.edu
-11791
- Giesecke and Devrient
- Karsten Fischer
- karsten.fischer&gdm.de
-11792
- Grant County PUD
- Steven R. Wilson
- swilson&gcpud.org
-11793
- IBM Slovakia (test)
- Viera Uhrinova
- viera_uhrinova&sk.ibm.com
-11794
- Incentive Technologies, Inc.
- Chris Martin
- chrismartin&incentive-tech.com
-11795
- Infoglobe
- John Hermes
- jhermes&infoglobe.com
-11796
- InnoviData GmbH
- Roland Haag
- roland.haag&innovidata.com
-11797
- Kaboom Enterprises
- Chris Ricker
- kaboom&gatech.edu
-11798
- Lateral Sands Pty Ltd
- Phil Sutherland
- phil&lateralsands.com.au
-11799
- Latis Networks, Inc
- David Greenstein
- dave&latis.com
-11800
- Logosoft
- Faruk Telibecirovic
- faruk&logosoft.ba
-11801
- MPSV
- Jiri Nedoma
- mp&mpsv.cz
-11802
- Northwest Airlines, Inc.
- Wendy W Lou
- wendy.lou&delta.com
-11803
- Ohlone Community College
- Tj Webb
- twebb&ohlone.cc.ca.us
-11804
- PCS
- Chandu
- cskumar9&lycos.com
-11805
- Plexus
- Cristian Fernandez
- cristian&plx.com
-11806
- Antonveneta ABN AMRO Bank
- Riccardo Fontana
- riccardo.fontana&aaasgr.it
-11807
- SamuelBalle.com
- Samuel Balle
- sb&samuelballe.com
-11808
- Sifry Consulting
- David L. Sifry
- david-iana&sifry.com
-11809
- Skobeltsyn Institute of Nuclesr Physics, Moscow State University
- Nikolai A. Kruglov
- kruglov&lhc.sinp.msu.ru
-11810
- Solesys SA
- Pascal Roulin
- pascal.roulin&solesys.ch
-11811
- Spaces, Inc.
- Mike Abbott
- mikea&spacesinc.com
-11812
- TDC Internet A/S
- Steffen Winther Soerensen
- stws&int.tele.dk
-11813
- TMT Ltd.
- David Ashkenazi
- david_a&tmt3.com
-11814
- University of Nantes
- Pierre-Olivier Terrisse
- terrisse&cri.univ-nantes.fr
-11815
- Yellow Online Inc.
- Network Administrator
- netadmin&yellow.ca
-11816
- yuantong technology
- Zhaoxin
- masterzhao&263.net
-11817
- Zentrum Informatikdienste, Universitaet Zuerich
- Luzian Scherrer
- lsc&zi.unizh.ch
-11818
- Z-Star Microelectronics Corporation
- Liang Qi
- cliff.liang&zsmc.com.cn
-11819
- ZX Factory
- Andree Toonk
- a.toonk&zx.nl
-11820
- Fonterra Co-operative Group
- Jay Pieren
- jay.pieren&nzmp.com
-11821
- Jet Infosystems
- Andrey Stolyarov
- croco&jet.msk.su
-11822
- SPSU Selinux-LDAP Team
- Patrick Childers
- sublime43z&msn.com
-11823
- WSMicroSystems Inc.
- Ricky Sun
- ysun&atsinai.com
-11824
- Computer & Technologies International Ltd
- Guo Jing Dong
- guoal&163.com
-11825
- Daji Workshop
- Haihan Ji
- daji&public.cc.jl.cn
-11826
- Sistemas Tecnicos de Enseñanza Consultores
- Nuria de la Fuente Teixido
- STEC&STEC.INFO
-11827
- ACUMEN ADVANCED TECHNOLOGIES Inc.
- Nahid Keshmirshekan
- admin&acumentechnologies.com
-11828
- Coast Mountains School District
- Steve Tonnesen
- tonnesen&cmsd.bc.ca
-11829
- Corvil Networks
- Ciaran Mitchell
- ciaran.mitchell&corvil.com
-11830
- F'Arty Crafts Pty Ltd
- Les Carleton
- les&fartycrafts.com
-11831
- Interactive Transaction Services, Inc.
- Chris Hagmann
- chagmann&ipin.com
-11832
- Joerg Preuss
- Joerg Preuss
- joerg&preuss.info
-11833
- nCircle Network Security
- Matthew Condren
- mcondren&tripwire.com
-11834
- PLIVA d.d
- Dobrica Pavlinusic
- pcst&pliva.hr
-11835
- StreamServe, Inc.
- Michael Kajen
- michael.kajen&streamserve.com
-11836
- Swiss National Bank
- Christian Schmid
- christian.schmid&snb.ch
-11837
- Telenor Mobile Communications
- Bjorn Steine
- bjorn.steine&telenor.com
-11838
- Vistaar
- Chandra Shekkar Kumar
- ckumar&vistaar.com
-11839
- WebWayOne Ltd
- Graham Murray
- gmurray&webwayone.co.uk
-11840
- YR CONSEIL
- Yann Romefort
- yann.romefort&yrconseil.com
-11841
- Aaltonen & Vuorela
- Marko Karppinen
- marko.karppinen&aaltonenvuorela.com
-11842
- Anchora
- Ricardo Marimon
- rmarimon&alumni.standord.org
-11843
- Argus Systems Group, Inc
- Mikel Matthews
- mikl&argus-systems.cin
-11844
- Beijing Super Channel Network Limited
- Huang Yuzhen
- huangyuzhen&bj.tom.com
-11845
- Blueair Networks
- Scott Francis
- sfrancis&blueairnetworks.com
-11846
- CITAP
- Alex Peeters
- alex.peeters&citap.com
-11847
- Himnebaugh Consulting, Inc.
- Bruce Himebaugh
- bruce&hcd.net
-11848
- INLINE Corporation
- James Fernandez
- jfernandez&inlinecorp.com
-11849
- Janus Technologies
- George Saad
- gush&janus-tek.com
-11850
- Native Names Corporation
- Ahmed Abd-Allah
- cto&nativenames.net
-11851
- NetEconomist
- Alex Turner
- sysadmin&neteconomist.com
-11852
- New Productivity Initiative Inc
- Paul Foley
- pfoley&newproductivity.org
-11853
- Public Service Company of New Mexico
- Jim Baylor
- jbaylor&pnm.com
-11854
- Healthvision (formerly 'Quovadx, Inc.')
- Jesse Pangburn
- jpangburn&healthvision.com
-11855
- Retirement By Design
- Stephen Bounds
- sbounds&rbd.net.au
-11856
- TNT Logistics North America
- Noli Tablada
- noli_tablada&tntlogistics.com
-11857
- Transmode Systems AB
- Per Borg
- per.borg&infinera.com
-11858
- UANGEL
- Bohun Tak
- bhtak&uangel.com
-11859
- WorldChain Inc.
- Jay Zhou
- jay.zhou&worldchain.com
-11860
- wossname.org.uk
- Graeme Mathieson
- mathie+iana&wossname.org.uk
-11861
- Codenet
- De Pus Gorik
- gorik.depus&codenet.be
-11862
- Columbia University in the City of New York
- Alan Croswell
- alan&columbia.edu
-11863
- TP-Link Technology Co.,Ltd
- Dai Hailong
- daihailong&tp-link.com.cn
-11864
- Böke and Walterfang Electronic Systems Ltd
- Kevin Cordery
- kevin.cordery&bwesl.com
-11865
- Explo-IT Research
- Antonio Capani
- capani&explo-it.com
-11866
- GDTTI
- Francisco Leong
- frleong&gdtti.gov.mo
-11867
- Loop Treinamento em Inform
- Cláudia Viegas
- cviegas&hsbc.com.br
-11868
- Placenet
- Conseil d'administration
- adm&placenet.org
-11869
- Roman Zielinski Metod och systemutveckling
- Roman Zielinski
- roman.zielinski&rozisys.se
-11870
- Sandhills Community College
- Steven Thomas
- thomass&email.sandhills.cc.nc.us
-11871
- SpaceNet AG
- Christian Brunner
- cbrunner-iana&space.net
-11872
- Systemy Mikroprocesorowe
- Krzysztof Blaszkowski
- sysmikro&post.pl
-11873
- Yolke Corporation
- Russ White
- me&russwhite.net
-11874
- Scopus Tecnologia S. A.
- Paulo S. L. M. Barreto
- pbarreto&scopus.com.br
-11875
- Biomet Merck BV
- Christine Simon
- christine.simon&merck.de
-11876
- Siteseers Inc.
- Mark Turner
- markt&siteseers.net
-11877
- 3UP Systems
- Paul Harrington
- pharrington&3upsystems.com
-11878
- Achilles Guard, Inc d.b.a Critical Watch
- Nelson W Bunker V
- nelson_bunker&criticalwatch.com
-11879
- Castel et Fromaget
- Bernard Etienne
- etienne.b&c-et-f.com
-11880
- Custom Business Link, Inc.
- Allan D. Jones
- adjones17&networld.com
-11881
- FiberSpans Corporation
- Bill Hargen
- bill.hargen&fiberspans.com
-11882
- geschke internet consulting
- Ralf Geschke
- ralf&geschke.net
-11883
- Ignite Communications
- Andy Reid
- andy&shakerlane.com
-11884
- Indeed - Visual Concepts GmbH
- Detlev Stalling
- stalling&indeed3d.com
-11885
- MMC Technology
- Ki-Won Kang
- kwkang&mmctech.com
-11886
- Nextcard, Inc.
- Thomas Arthurs
- thomas.arthurs&nextcard.com
-11887
- PSS Systems Inc
- Senthil Supramaniam
- senthil&pss-systems.com
-11888
- Teamlog External
- GODARD Jean-Charles
- god&teamlog.fr
-11889
- The Answer Group, L.L.C.
- Greg Cook
- gacook&webadvisers.com
-11890
- The Nog Network
- Tony Monroe
- tmonroe+iana&nog.net
-11891
- Unified Communications Pte Ltd
- Tan Cheng Ho Colin
- colin_tan&unifiedcomms.com
-11892
- Vodafone Global Platform & Internet Services
- Chris Nelson
- cris.nelson&vodafone-us.com
-11893
- The Pep Boys - Manny, Moe & Jack
- Paul Davis
- paul_davis&pepboys.com
-11894
- Integrity Solutions, Inc
- Joe Hruska
- sysadmin&integritysi.com
-11895
- Globalnet
- Najeh Ben Nasrallah
- najehbn&gnet.tn
-11896
- 3G Lab
- David Holland
- oid-alloc&3glab.com
-11897
- Acantho
- Alessandro Fava
- alessandro.fava&acantho.com
-11898
- Agere Systems, Inc.
- Daniel R. Borges
- dborges&agere.com
-11899
- Bitfone Corporation
- Alex Vinogradov
- avinogradov&bitfone.com
-11900
- BlueSoft
- Somech Ovad
- ovad.somech&bluesoft-inc.com
-11901
- Bonndata GmbH
- Dieter Zysk
- dieter.zysk&db.com
-11902
- Cartel Communication Systems Inc
- John Philpott
- john&cartelsys.com
-11903
- Case Western Reserve University
- Jeffrey A. Gumpf
- gumpf&cwru.edu
-11904
- CirqueDigital, LLC
- Sebastien Boving
- seb&cirquedigital.com
-11905
- Icom Inc
- Hiroshi Kawasaki
- hiroshi_kawasaki&icom.co.jp
-11906
- IF DRAUDIMAS
- Vaidas Damosevicius
- vd&sampo.lt
-11907
- ImaginaryRealities
- Michael F. Collins, III
- mfcollins3&sbcglobal.net
-11908
- Instituto Cubano de Radio y Television
- Carlos A. Carnero Delgado
- carnero&icrt.cu
-11909
- Log On America, Inc.
- James Tavares
- jtavares&loa.com
-11910
- Michael Roettig Consulting
- Michael Roettig
- michael&roettig.de
-11911
- Unassigned
- Returned 4-30-03
- ---none---
-11912
- NetMotion Wireless Inc.
- Julia Renouard
- julia.renouard&nmwco.com
-11913
- netsys.com
- Len Rose
- len&netsys.com
-11914
- National Information Infrastructure Development Institute
- Gabor Kiss
- kissg&niif.hu
-11915
- Oldring & Associates, Inc.
- Mike Bridge
- admin&oldring.ca
-11916
- Pablix
- Pablo Jadot
- webmaster&pablix.de
-11917
- PAR3 Communications
- Rudy Munguia
- rudy.munguia&par2.com
-11918
- PRAJA inc
- Asquith Bailey
- abailey&praja.com
-11919
- QCOM, Inc.
- Shawn Boyce
- shawn&qcominc.com
-11920
- quantumBEAM Ltd.
- Neil Crumpton
- registration&quantumbeam.com
-11921
- Ruprecht & Partner OEG
- Ruprecht Erich
- office&rdcs.at
-11922
- SD Inc.
- Darko Zivkovic
- darko1&rogers.com
-11923
- Spectrum Control, Inc.
- Chuck Drew
- drew&spectrumcontrol.com
-11924
- Techsystem Technologies
- Robert K. Chang
- robert&techsystem.net
-11925
- The IQ Group, Inc.
- Stephen Clouse
- stephenc&theiqgroup.com
-11926
- The United World Colleges (international)
- Nike Ogundana
- uwcio&uwc.org
-11927
- Tytrast Systems Inc.
- Susumu Ueno
- susumu_ueno&tytrast.com
-11928
- Indievisible
- Scot Bontrager
- scot&indievisible.org
-11929
- Veridicom
- James Coughlin
- softwaredev&veridicom.com
-11930
- Vseobecná úverová banka, a.s.
- Ivan Masný
- imasny&vub.sk
-11931
- Staten Island University Hospital
- Vladimir Berezniker
- vberezniker&siuh.edu
-11932
- The Wolf Group
- Angel R. Rivera
- angel&wolf.com
-11933
- University of Alberta
- Peter Karbaliotis
- peter.karbaliotis&ualberta.ca
-11934
- Stadtsparkasse Köln
- Achim Krisinger
- Achim.Krisinger&sk-koeln.de
-11935
- Josuya Technology Corporation
- Danya Kim
- admin&josuya.com
-11936
- Amadeus NMC Holding, Inc.
- Hostmaster
- hostmaster&amadeusboston.com
-11937
- ArcSight, Inc.
- Hector Aguilar
- haguilar&arcsight.com
-11938
- Cominet
- Youster Park
- ykpark&cominet.co.kr
-11939
- Electronic Direct, Inc.
- Gregory Karges
- karges&edirect.ca
-11940
- Medical Coding and Compliance Solutions, L.L.C.
- Karlen Bailie
- doc&flashcode.com
-11941
- Mssu
- Ming-Shan Su
- mssu&ou.edu
-11942
- Muhen Software
- Akira Hangai
- akira&hangai.net
-11943
- Net Partnets Sp. z o.o.
- Marek Turczyniak
- marek&roztocze.com.pl
-11944
- Paulmichl NetWork's
- Juergen Paulmichl
- juergen.paulmichl&gmx.net
-11945
- q-station.net
- Chris Leung
- chris&q-station.net
-11946
- Quanta Network Systems Inc.
- Ted Yu
- ted.yu&qnstw.com
-11947
- Stowarzyszenie FREEZE NET ASK
- Marek Turczyniak
- marek&roztocze.com.pl
-11948
- Syracuse University
- Bonnie Dunay
- badunay&syr.edu
-11949
- Ukrsotsbank
- Alexander Khokhlov
- mailer&cbsd.donetsk.ua
-11950
- VivoCom Inc.
- Ned Krtolica
- ned&vivocom.com
-11951
- VTechnologies Sàrl
- Messerli Reynald
- info&vtechnologies.ch
-11952
- Zeta Broadband Inc
- Kyungsik Kim
- david.kim&zetabroadband.com
-11953
- ZUMtOBEL AG
- Martin Eberle
- martin.eberle&zumtobel.com
-11954
- Elegant solutions consulting Inc.
- Atsushi Ikeda
- aikeda&elegant.ca
-11955
- BeiJing NetPower TECHNOLOGIES Inc.
- LiLian
- gnailil&ihw.com.cn
-11956
- Mobigen Co., Ltd.
- Lee Myung gue
- myung&mobigen.com
-11957
- ITC
- Serge L. Fidorichev
- serko&bignet.ru
-11958
- Premonitia, Inc
- Jonathan Rodin
- jrodin&premonitia.com
-11959
- Coyote Rock
- Terrell Gilliland
- terrell&coyoterock.com
-11960
- Downlode Media
- Earle Martin
- earle&downlode.org
-11961
- LARC-USP
- Fernando Redigolo
- fernando&larc.usp.br
-11962
- Nevala
- Jarno Nevala
- jarno.nevala&iki.fi
-11963
- Propel
- Steve Strnage
- sjs&propel.com
-11964
- Technical Chamber of Greece
- Nikos Panagiotopoulos
- net&central.tee.gr
-11965
- Thomas Monitor Systems
- Thomas Jensen
- tje&thomsystems.com
-11966
- Alstom Power Sweden AB
- Marten Martensson
- marten.martensson&power.alstom.com
-11967
- MLP AG
- Joachim Koch
- joachim.koch&mlp-ag.com
-11968
- SymLABS
- Antonio Navarro
- antonio&symlabs.com
-11969
- Systech Retail Systems Inc.
- Chris Smith
- csmith&srspos.com
-11970
- Watch4Net Solutions
- Louis-Philippe Reid
- info&watch4net.com
-11971
- Peter-Service Ltd.
- Aleksei A. Alekseenko
- alex&billng.ru
-11972
- TAIS, Inc.
- Tim Derby
- tim.derby&tais.com
-11973
- North Central Collge
- Mike Quintero
- helpdesk&noctrl.edu
-11974
- Uffizio Internet Services GmbH
- Daniel Kliche
- daniel.kliche&uffizio.net
-11975
- ALPHA SYSTEMS
- Masayuki Tsuchida
- tsuchima&alpha.co.jp
-11976
- AT&T Labs Intelligent Network Analysis
- Darryl Parker
- parkerd&att.com
-11977
- Backwoods Communications, LLC
- Jeremy McNamara
- jj&indie.org
-11978
- Boxcar Media
- Joshua Nye
- josh&boxcarmedia.com
-11979
- BrainStorm Business Resources, Inc.
- Felix E Quevedo
- fquevedo&columbus.rr.com
-11980
- Bravenet Web Services, Inc
- Brad Knorr
- brad&bravenet.com
-11981
- CAC Ltd
- James Cominsky
- cominskyj&ameritech.net
-11982
- chiz.net
- Paul Chizzo
- paul&chiz.net
-11983
- CollectiveBid Systems Inc.
- Jack Leong
- jleong&collectivebid.com
-11984
- Content Management AG
- Babak Vahedipour-Kunze
- snmpec&cm-ag.de
-11985
- Conysis S.A.
- Ricardo Cárdenes
- ricardo&conysis.com
-11986
- CreekPath Systems
- Craig Reed
- reed&creekpath.com
-11987
- Dakos data & communication co., Ltd.
- Lee Yong Seob
- yslee&dakos.net
-11988
- diCarta Inc.
- Yoav Eilat
- yeilat&dicarta.com
-11989
- DME Corporation
- Michael Caulfield
- mike.caulfield&dmecorp.net
-11990
- gadgeteer.org
- Allen Smith
- allen&gadgeteer.org
-11991
- Greenpeace
- Derek Au
- hotline&greenpeace.org
-11992
- HeliXense Pte Ltd
- Yusdi Santoso
- ysantoso&helixense.com
-11993
- Hilbert Computing, Inc.
- Gary Murphy
- glm&hilbertinc.com
-11994
- Hubert Krause
- Hubert Krause
- hukrause&gmx.de
-11995
- Hybrid Solutions, Inc.
- Ken Breault
- ken-breault&hybridsolutionsinc.net
-11996
- IBSN
- PC Drew
- drewpc&ibsncentral.com
-11997
- iKnowTheAnswer.com
- Mark Mellman
- mellman&iknowtheanswer.com
-11998
- JSC Desarrollos y Aplicaciones
- José Eduardo Mohedano
- jemohedano&jscda.com
-11999
- KFKI Systems
- Miklos Nemeth
- mnemeth&kfkisystems.com
-12000
- Ki Consulting & Solutions AB
- Pekka Rossi
- pekka.rossi&kiconsulting.se
-12001
- Lakefield Telecom, Inc.
- Nicholas Lemberger
- nickl&lakefield.net
-12002
- Lemur Networks, Inc.
- Ryan Moats
- rmoats&lemurnetworks.net
-12003
- luna8 Ltd.
- Sven Huster
- sven.huster&luna8.com
-12004
- MCK Advance Technologies
- Michael Chan
- michaelchan&telus.net
-12005
- MediaGS, Ltd.
- Robert Posel
- posel&d-d.si
-12006
- N.C.H. spa Network Computer House
- Alessandro Riaudo
- alessandro.riaudo&nch.it
-12007
- NAMS
- Iftah Bratspiess
- iftah&web-silicon.com
-12008
- Pacher
- Christian Pacher
- mib-011226&pacher.com
-12009
- Regenstrief Institute for Health Care
- Gunther Schadow
- gschadow&regenstrief.org
-12010
- Schnackelchen
- Carsten Schaedlich
- carsten&schnackelchen.de
-12011
- SEAGULL
- Wico van Helden
- wvanhelden&seagull.nl
-12012
- Seoul National University of Technology
- Kil-Hung Lee
- khlee&duck.snut.ac.kr
-12013
- Softworks Group Inc.
- Dewane Woodley
- dewane_woodley&yahoo.com
-12014
- Studio of Arts And Sciences
- Roger Buck
- rog&powernet.nsw.gov.au
-12015
- TGA Technologies, Inc.
- James Dabbs
- jdabbs&tga.com
-12016
- Universite de Cergy-Pontoise
- Emmanuel Ferey
- Emmanuel.Ferey&cdc.u-cergy.fr
-12017
- VeratNET
- Boris Manojlovic
- steki&verat.net
-12018
- Vivanet Inc.
- Aiman Sawan
- aiman.sawan&vivanet.qc.ca
-12019
- waterford.org
- Aslam Ebrahim
- rmovva&waterford.org
-12020
- Webware Technologies Pvt. Ltd.
- Rajanikant Chirmade
- rajanikant&webwaretech.com
-12021
- Wesley WorldWide Solutions, Inc
- Wesley Ye
- wesleyye&yahoo.com
-12022
- BRECIS Communications
- Terry Donahue
- tld&brecis.com
-12023
- Unassigned
-
- ---none---
-12024
- Miraesys Co., Ltd
- Haeil Kim
- hikim&miraesys.com
-12025
- C-EISA
- Wooseung Kim
- kimws&c-eisa.com
-12026
- Proactive Java Consultancy LLP
- Mr Dyer
- flicker&anduin.net
-12027
- AccelaNET
- Emily Backes
- oid-contact&accela.net
-12028
- AirWave Wireless, Inc.
- Jason Luther
- jason&airwave.com
-12029
- Altawave Inc.
- John Rose
- jrose&altawave.com
-12030
- ANAM Wireless Internet Solutions
- Paul Keogh
- paul.keogh&anam.com
-12031
- BitStream Logic, Inc
- HwaJoon Kim
- otime&bitstreamlogic.com
-12032
- Booz Allen Hamilton
- Kenya Dorsey
- dorsey_kenya&bah.com
-12033
- Checkmate Management
- Anthony Hurry
- anthony_hurry&checkmate.co.uk
-12034
- Czech Certification Authority s.r.o.
- Miroslav Hrad
- hrad&czechca.cz
-12035
- EBJ Consulting
- Michael Steinberg
- steinmj&swbell.net
-12036
- École normale supérieure - Paris
- Alain Fréhel
- alain.frehel&ens.fr
-12037
- Euronet Worldwide, Inc.
- Kenneth Vrana
- kvrana&euronetworldwide.com
-12038
- everyhost.com
- Mark A. Hershberger
- mah&everyhost.com
-12039
- Exalead S.A.
- Patrice Bertin
- contact&exalead.com
-12040
- gull house
- Gary Ogasawara
- garyogasawara&yahoo.com
-12041
- HTL Braunau
- Auer Andreas
- aauer1&gmx.at
-12042
- Infosys Corporation
- John McGloughlin
- johnmac&infosyscorp.com
-12043
- Jasmap Inc.
- Sean Yang
- sean&jasmap.com
-12044
- Lakesoft Consulting & ISP
- Jonathan A. Laub
- laubj&lakesoft.net
-12045
- Medfusion, Inc
- Vikram Natarajan
- vikram&medfusion.net
-12046
- Metro Information Concepts as
- Andreas Lydersen
- al&metroic.no
-12047
- Meylan Consulting
- Volnys Borges Bernal
- volnys&uol.com.br
-12048
- Millennium Microwave Corporation
- Daniel G. Peters
- danielp&microwave2000.com
-12049
- NetPlanetEarth
- Gregory Vovk
- gregory&planetsky.com
-12050
- Ohman IT Consult
- Johan Fredrik Ohman
- johanfo&ohman.no
-12051
- Onix Electronic Systems, LLC
- David George
- david&harktech.com
-12052
- RCN Telecom
- Dex Patel
- dex.patel&rcn.net
-12053
- Skjaerlund Software
- Lars Skjaerlund
- lars&skjaerlund.dk
-12054
- Special Applied Intelligence Corporation
- Fritz Kunstler
- fritz&specialai.com
-12055
- SUDAC
- Johan Andersson
- crew&sudac.org
-12056
- Tadiran Communications
- Svyatoslav Ivantsiv
- slava&tadcomm.com
-12057
- TE Data
- Taymour El Erian
- t.elerian&gega.net
-12058
- The YAK Corporation
- Ebbe Jonsson
- ebx&y2.keilaranta.net
-12059
- Digital Appliance Corp.
- Bob Ellis
- bob.ellis&dig-app.com
-12060
- TruePosition, Inc.
- Mike Amarosa
- mamarosa&trueposition.com
-12061
- University of Western Ontario
- Ed Gibson
- egibson&uwo.ca
-12062
- User Interface Technologies Ltd.
- Niall Mansfield
- snmpreg&uit.co.uk
-12063
- VeriCell, Inc.
- Brian W. Spolarich
- bspolarich&nephrostherapeutics.com
-12064
- Zurich Scudder Investments, Inc
- Avi Deitcher
- avi_deitcher&scudder.com
-12065
- APATON
- Antonio Paton
- apatonpariente&hotmail.com
-12066
- Daedalus Networks
- Paris A. Zafiris
- saphire&daedalusnetworks.com
-12067
- Pajo Networks
- Alexander G. Paoli
- alex.paoli&pajo.com
-12068
- Wroc³aw Centre of Networking and Supercomputing
- Józef Janyszek
- tomasz.kowal&pwr.wroc.pl
-12069
- Corpex Internet GmbH
- Philipp Gaschuetz
- admin&corpex.de
-12070
- WARCO
- Ryan Rounkles
- rrounkles&warco.com
-12071
- @Home Japan Co., Ltd.
- Yusuke Mineno
- minenoy&home.ad.jp
-12072
- Acrowave Systems Co., Ltd
- Hyung-Yeol Yoon
- hryoon&acrowave.com
-12073
- Aer Novo
- Bryan J. Kolodziej
- bryan&aernovo.com
-12074
- Alison Associates
- Garry Argrave
- Garry.Argrave&alisonassociates.com
-12075
- beckhaus consulting
- Markus P. Beckhaus
- markus&beckhaus.com
-12076
- Bonware
- Markus Urponen
- markus.urponen&bonware.com
-12077
- Broadmind Research Corporation
- Chad Attermann
- chad&broadmind.com
-12078
- Circle24 Technologies
- Narendra Desirazu
- narendra&circle24.com
-12079
- dotmaudot
- Maurizio Codogno
- dot.maudot&gmail.com
-12080
- e-peopleserve
- Neal Brett
- neal.brett&e-peopleserve.com
-12081
- Estic & Partners bv
- ing. R.E. Brouwer
- brouwer&estic.com
-12082
- European Computer Telecoms AG
- Hamish Barney
- hamish.barney&ect-telecoms.de
-12083
- Getronics Solutions Italia S.p.A.
- Oronzo Berlen
- oronzo.berlen&getronics.com
-12084
- HighDeal
- Christophe Trompette
- christophe.trompette&highdeal.com
-12085
- KR Consulting
- Richard Dilbone
- rdilbone&krcee.com
-12086
- MKAPIUM
- Khairul Anuar Mohammad
- mkapium&idigi.net.my
-12087
- netdirectory.org
- Marc Giannoni
- marcgiannoni&earthlink.net
-12088
- Newdreamnet Co. Ltd.
- Dae Young Choi
- dychoi&newdreamnet.com
-12089
- o3sis Infomation Technology AG
- Hajo Dieterich
- sysadmins&o3sis.com
-12090
- RCS (formerly 'Prophet Systems')
- Scott Gudgel
- sgudgel&rcsworks.com
-12091
- Real FS Inc.
- Sohail Husain
- suheyl&attglobal.net
-12092
- Rotech Healthcare Inc.
- Matthew Pike
- mpike&rotech.com
-12093
- Severoceska energetika, a.s.
- Martin Horak
- horakm&mail.sce.cz
-12094
- Supélec Campus de Metz
- Patrick Mercier
- patrick.mercier&supelec.fr
-12095
- Telenor Satellite Broadcasting
- Kyrre Simonsen
- kyrre.simonsen&telenor.com
-12096
- Telic Communications, Inc.
- Chad Attermann
- chad&telic.net
-12097
- UZA - Universitair Ziekenhuis Antwerpen
- Peter Praet
- peter.praet&uza.uia.ac.be
-12098
- VooDoo X Solutions
- Ben Maynard
- bmaynard&voodoox.net
-12099
- Woollen Services
- David Woollen
- woollen&computer.org
-12100
- XecureNexus
- Sang Young Oh
- Syoh&xecurenexus.com
-12101
- YCOM SA
- Alexandre Ghisoli
- support&ycom.ch
-12102
- Airport Authority Hong Kong
- Kenny Hui
- huik&hkairport.com
-12103
- 4Tier Software
- Gregoire Huet
- gregh&4tier.com
-12104
- Asis Ltd.
- David Wright
- wright&asis.co.il
-12105
- BISC
- Junxiao Song
- sunknight&371.net
-12106
- BIPOP-CARIRE spa
- Alessandro Casati
- alessandro_casati&bipop.it
-12107
- Caw Networks
- Sanjay Raja
- sraja&caw.com
-12108
- Concordant
- John Croft
- john&concordant.co.uk
-12109
- IT Service Omikron GmbH
- Reindl Sergej
- reindl&itso.de
-12110
- Lifeway Christian resources
- Benny Hauk
- benny.hauk&lifeway.com
-12111
- Mark Schnur Consulting
- Mark Schnur
- mkschnur&pacbell.net
-12112
- NORSYS
- Thomas Leveque
- tleveque&norsys.fr
-12113
- Zox, Inc.
- LingYan Zhao
- zhao_lingyan&yahoo.com
-12114
- noris network AG
- Ingo Kraupa
- info&noris.net
-12115
- Philips MP4Net
- Noam Hoffer
- noam.hoffer&philips.com
-12116
- Advanced Reality
- Derek Ruths
- druths&advancedreality.com
-12117
- Atmel Nantes
- Laurent Menu
- laurent.menu&nto.atmel.com
-12118
- Centrata Inc.
- Philippe Fajeau
- philippe&centrata.com
-12119
- City of Mesquite Texas
- Stan Markham
- smarkham&ci.mesquite.tx.us
-12120
- Defense Supply center Richmond (DSCR)
- David Huet
- dhuet&dscr.dla.mil
-12121
- Fastnet Communications
- Martyn Roberts
- martyn.a.roberts&bt.com
-12122
- Henny Penny Corp.
- Tim A. Landwehr
- tlandwehr&hennypenny.com
-12123
- iProcess Solutions
- Roberto Dominguez
- rdominguez&iprocesssolutions.com
-12124
- Isilon Ststems
- David Dunham
- dwdunham&isilon.com
-12125
- Mediavirtuel
- Eriam Schaffter
- eriam.schaffter&wanadoo.fr
-12126
- Mirafor Associates Oy
- Rainer Ketola
- rainer.ketola&mirafor.com
-12127
- Rambold
- Christoph Rambold
- mail&rambold.com
-12128
- RoDoGu Consulting
- Roberto Dominguez
- rodogu&acm.org
-12129
- Safeweb Ltda
- Luiz Carlos Zancanella Junior
- junior&safeweb.com.br
-12130
- SciQuest, Inc
- Alfred Iacovella
- aiacovella&sciquest.com
-12131
- Siegfried Holding AG
- Thomas Jakob
- ic&siegfried.ch
-12132
- Simutronics Corporation
- Jim Miller
- admin&simutronics.com
-12133
- Talking Blocks, Inc.
- Tim Hall
- tim.hall&talkingblocks.com
-12134
- Tradetrans Inc
- Justin Stevens
- justins&pwi.com
-12135
- Unique Broadbank Systems
- Michael Kang
- michaelk&uniquesys.com
-12136
- Universidad Nacional de San Luis
- Fernando Aversa
- aversa&unsl.edu.ar
-12137
- Universite de Paris-Sorbonne Paris IV
- Thierry Besancon
- Thierry.Besancon&paris4.sorbonne.fr
-12138
- Laboratório de Sistemas Distribuídos /CEFET-PR
- Fábio Henrique Flesch
- fabio&lasd.cefetpr.br
-12139
- Iowa Outdoors
- Tony Bibbs
- tony&iowaoutdoors.org
-12140
- ALCOMA, Ltd
- ing.Vaclav Vacek
- vaclav.vacek&alcoma.cz
-12141
- Aloes
- Yohann Fourteau
- yohann.fourteau&wanadoo.fr
-12142
- bob corbett networks
- Bob Corbett
- bob&bobcorbett.net
-12143
- Chrono-Logic
- Tony Bibbs
- tony&tonybibbs.com
-12144
- Consumer Contact
- Liam Cunningham
- liam&consumercontact.com
-12145
- Core Integrated Tecnologies, Ltd.
- Eric S. Stickel
- eric_stickel&coreinttech.com
-12146
- SFT-Service (formerly 'Dialog.SFT-Service')
- Vitaly Prtosko
- villy&sft.ru
-12147
- Die Weltregierung
- Martin Schobert
- martin&weltregierung.de
-12148
- ELTEK Energy AS
- Harald Johnsen
- harald.johnsen&eltekenergy.com
-12149
- Enalur S.A.
- Pablo Alsina
- noc&multitel.com.uy
-12150
- Finmatica S.p.A.
- Giuseppe Cattaneo
- g.cattaneo&finmatica.com
-12151
- Fyrplus AB
- Marcus Andersson
- maran&fyrplus.se
-12152
- Guru Labs, L.C.
- Dax Kelson
- dax&gurulabs.com
-12153
- HPCinteractive
- Eric Buckhalt
- ebuckhalt&hpcpub.com
-12154
- IKEA IT AB
- Anders Östling
- anders.ostling&neurope.ikea.com
-12155
- Innovay Inc.
- Soonmyung Hong
- sonnet&innovay.com
-12156
- JOINT-STOCK COMPANY"STC CONTACT"
- Andrey Kuptsov
- kontakt&bn.by
-12157
- KC Micro Specialists, Inc.
- Kirk Deweese
- hostmaster&micro.com
-12158
- Mikros Kosmos
- Fotis Georgatos
- Fotis.Georgatos&mikroskosmos.com
-12159
- M-TEC N.V.
- Koen Aerts
- koen.aerts&mtecbroadband.com
-12160
- NetCommplete Pty Lyd
- Scott Muller
- scott&netcommplete.com.au
-12161
- New World Telephone Ltd
- Ray Fung
- ray.fung&newworldtel.com
-12162
- Orsus Solutions
- Alex Grivnin
- alexg&orsus.com
-12163
- Quebeber.com
- Adolfo Gomez
- dkmaster&punto-g.com
-12164
- Ringling School of Art and Design
- Glen Shere
- gshere&ringling.edu
-12165
- SANTIN E ASSOCIATI SRL
- Massimo Santin
- msantin&santineassociati.com
-12166
- ScanPlus GmbH
- Konrad Naumann
- domains&scanplus.de
-12167
- Sequitur Systems
- Chip Yamasaki
- chip&seqsys.com
-12168
- server2000 internet technology gmbh
- Server2000 Tech Role
- tech&server2000.at
-12169
- SHENZHEN MODERN COMPUTER MANUFACTER Co.,Ltd
- DuJin
- duj&mcm.com.cn
-12170
- SZCOM Broadband Network Technology Co.,Ltd
- Xia Ke Qing
- xiakq&szcom.com.cn
-12171
- Tony Bibbs
- Tony Bibbs
- tony&tonybibbs.com
-12172
- Transparent Systems
- John Zoetebier
- john.zoetebier&transparent.co.nz
-12173
- UNICC
- Ray Compton
- compton&unicc.org
-12174
- Consolidated Freightways
- Bob Pfingsten
- pfingsten.robert&cf.com
-12175
- Frontier Internet, Inc.
- Charlie Watts
- network&frontier.net
-12176
- Canon IT Solutions Inc. (formerly 'Sumitomo Metal System Solutions Co.,Ltd')
- Toyoji Mano
- mano.toyoji&canon-its.co.jp
-12177
- Henkel AG & Co. KGaA
- Simon Kubanski
- simon.kubanski&henkel.com
-12178
- 3va.net
- A van Drie
- admin&3va.net
-12179
- Alacris Inc.
- Conrad Bayer
- cbayer&alacris.com
-12180
- ALI Technologies Inc
- Marcel Sutanto
- msutanto&alitech.com
-12181
- Allegheny Energy Global Markets
- Stephen Degler
- sdegler&aeglobalmarkets.com
-12182
- Astrium (UK)
- Kevin Rees
- kevin.rees&astrium.eads.net
-12183
- Baldwin Hackett & Meeks, Inc.
- Scott Boje
- scott.boje&bhmi.com
-12184
- Bamsco
- Bill Petersen
- unix_support&bigfoot.com
-12185
- Ben Nederland BV
- Arjan Landsmeer
- arjan.landsmeer&ben.nl
-12186
- Compagnon AG
- Jörg Puschmann
- jpuschmann&compagnon.net
-12187
- Direct Solutions
- Olivier Gaillard
- ogaillard&directsolution.com
-12188
- GBase Communications
- James Chen
- chenj&gbasecom.com
-12189
- Holoplex Technologies, Inc.
- Laurence Moindrot
- laurence&holoplex.com
-12190
- in medias res
- Peter Kuehl
- kuehl&in-medias-res.com
-12191
- Ins-sure Services Limited
- Andy Edwards
- andy.edwards&ins-sure.com
-12192
- Iron Hill Technology
- Wm Terry Stoneman
- stonemwt&ironhilltech.com
-12193
- Leapstone Systems, Inc
- Rajan Annadurai
- rannadurai&leapstone.com
-12194
- MSS Communications Design GmbH
- Alexander Buchfink
- ab&mss-medien.de
-12195
- Noicom S.p.A.
- Claudio Russo
- c.russo&noicom.it
-12196
- one4net GmbH
- Simon Roach
- simon.roach&one4net.com
-12197
- ProvisionSoft
- Govin Varadarajan
- gvaradarajan&cmgion.com
-12198
- RINET
- Pam Christman
- pchristman&ride.ri.net
-12199
- SAGE SRL
- Emilio Desimoni
- edesi&sage.com.ar
-12200
- Seneca Groep B.V.
- Rick Bakker
- rabakker&seneca.nl
-12201
- University Health Network
- Geoff Hallford
- geoff.hallford&uhn.ca
-12202
- UP3I
- Christian Sack
- christian.sack&ops.de
-12203
- VTT Information Technology
- Kari Seppanen
- kari.seppanen&vtt.fi
-12204
- DevonIT
- Dan Melomedman
- dan&devonitnet.com
-12205
- Allianz Ireland PLC
- Roy Madden
- roy.madden&allianz.ie
-12206
- QinetiQ Ltd
- Adrian Jones
- acjones&qinetiq.com
-12207
- Acme Solutions
- Massimiliano Liccardo
- liccardo&acmesolutions.it
-12208
- actina AG
- Steffen Tschirpke
- st.tschirpke&actina.de
-12209
- ASTOR-PROMOCJA Poland
- Aleksander Slominski
- as10m&hotmail.com
-12210
- Bauer Verlagsgruppe
- Jens Wettermann
- jwettermann&hbv.de
-12211
- Biogem
- Gianluca Busiello
- busiello&biogem.it
-12212
- BlueHaven Services Ltd
- Sherman G. Havens
- havens&bluehavenltd.com
-12213
- CAMIS Inc.
- Gavin Bee
- gavin.bee&camis.com
-12214
- Covenant Retirement Communities
- Dan Brant
- dpbrant&covenantretirement.org
-12215
- CUETS
- Daryle Niedermayer
- niederda&cuets.ca
-12216
- DGT-LAB
- Mariusz Piontas
- mariusz&dgt-lab.com.pl
-12217
- Ecole Polytechnique de Montreal
- Richard Labrie
- richard.labrie&polymtl.ca
-12218
- Glückert, Machelett & Partner
- Mirko Zeibig
- zeibig&gum.de
-12219
- Hamilton and Sullivan, Ltd.
- Rick Seavey
- rick.seavey&hsltd.com
-12220
- Institute of Environment and Development
- Wei He
- hewei&ied.org.cn
-12221
- ITWM
- Christian Peter
- peter&itm.fhg.de
-12222
- Kawatetsu Systems, Inc.
- Hiroyuki Kawakami
- kawakami&kawatetsu-systems.com
-12223
- Kinetics Fluid Systems
- Joe Tuazon
- jtuazon&kineticsgroup.com
-12224
- Knightnet
- Julian Knight
- oid&knightnet.org.uk
-12225
- Korea Embedded Linux Laboratory
- Jackson Kang
- ohmylove&mail.co.kr
-12226
- Max-Planck-Institut fuer Festkoerperforschung
- Michael Wanitschek
- m.wanitschek&fkf.mpg.de
-12227
- Naumen
- Eugene Prigorodov
- eprigorodov&naumen.ru
-12228
- Niedermayer Systems
- Daryle Niedermayer
- daryle&gpfn.ca
-12229
- Nirvana Research
- PEN Administrator
- nirvana&got.net
-12230
- odahoda.de
- Benjamin Niemann
- pink&odahoda.de
-12231
- OpenAdvice IT Services GmbH
- Christian Port
- info&openadvice.de
-12232
- Order N Ltd.
- Mark Burton
- markb&ordern.com
-12233
- OZ Communications, Inc.
- Jean-Marc Serre
- jean-marc.serre&nokia.com
-12234
- ProGuy.dk
- Paul Fleischer
- proguy&proguy.dk
-12235
- Roanoke College
- James R. Dalton
- dalton&roanoke.edu
-12236
- Sena Technologies, Inc.
- InSik Um
- uis&sena.com
-12237
- SILOGIX
- Pierre Chicourrat
- Pierre_Chicourrat&silogix-fr.com
-12238
- Spumoni
- Scott McCrory
- scott&mccrory.us
-12239
- Symsoft AB
- Jonas Wallenius
- jonas&symsoft.se
-12240
- System Solutions
- Brendan Bosman
- brendan.bosman&syssol.ie
-12241
- Szkola Glowna Handlowa
- Piotr Kucharski
- chopin+iana&sgh.waw.pl
-12242
- teamnet GmbH
- Joerg Michels
- michels&teamnet.de
-12243
- Vislink PLC
- Lalith Panditharatne
- lalith&continental-microwave.co.uk
-12244
- Celestica Corporation
- Chris Watson
- clwatson&celestica.com
-12245
- Elvin
- David Arnold
- davida&pobox.com
-12246
- Scottish Qualifications Authority
- Jonathan McCalla
- jonathan.mccalla&sqa.org.uk
-12247
- IDP
- Pascal Bazin
- bazin&idp.fr
-12248
- Availix SA
- Hugo Delchini
- hugo.delchini&availix.fr
-12249
- Escola Universitaria Politècnica de Manresa
- Ramon Navarro Bosch
- ramon&eupm.upc.es
-12250
- Alosys SpA
- Roberto Micarelli
- r.micarelli&alosys.it
-12251
- Avalon Net Ltd
- Samuel Levin
- samuel&avalon-net.co.il
-12252
- BAKU Construction office
- Nobuhito Ozaki
- kozaki&po.ntts.co.jp
-12253
- CN Solutions, LLC
- Christopher Audley
- audley&cnsolutionsllc.com
-12254
- Compubahn, Inc
- Ajit Sowdas
- asowdas&compubahn.com
-12255
- Connecticut Telephone
- Michael Klatsky
- mklatsky&cttel.com
-12256
- Covere
- Stepehen Cawley
- stephen.cawley&cna.com
-12257
- Escosoft Technologies
- Mamta Swaroop Sharan
- mamta_sharan&escosoft-tech.com
-12258
- European Technology Consultants
- Ben Preston
- ben.preston&etc.co.uk
-12259
- Forum des Images
- Bunel Stéphane
- admin&forumdesimages.net
-12260
- Global Telecom, Inc.
- Nicholas Kass
- shadow&gti.net
-12261
- GlobalCenter
- Travis Fitch
- travis&globalcenter.net.au
-12262
- Gnosys S.A.R.L
- Abdallah Deeb
- abdallahdeeb&yahoo.com
-12263
- HDFCBANK
- Rehman S H
- s.h.rehman&hdfcbank.com
-12264
- Imagine-IT
- Sebastian Schoenwetter
- seb&imagine-it.be
-12265
- Indraweb
- Michael Hoey
- mhoey&indraweb.com
-12266
- ircd
- Remi Malnar
- krome&unit.cc
-12267
- Johns Hopkins Applied Physics Laboratory
- Robert Sealock
- Robert.Sealock&jhuapl.edu
-12268
- Liberty Communication Services, Inc.
- Daniel M O'Brien
- dmobrien&lcsi.net
-12269
- Maybaum
- Johannes Maybaum
- gjm&pryde.2053.net
-12270
- Novar
- Marc Griffin
- marc_griffin&novarcontrols.com
-12271
- Pruthvi Soft
- Pruthvi
- pruthvihp&yahoo.com
-12272
- Sacred Bytes
- Michael Wiesner
- mw&sacred-bytes.com
-12273
- State of Minnesota
- Shari Plumb
- shari.plumb&state.mn.us
-12274
- Universite Joseph Fourier - Grenoble 1
- Jacques Eudes
- Jacques.Eudes&ujf-grenoble.fr
-12275
- University of Southampton
- Cédric Devivier
- c.devivier&soton.ac.uk
-12276
- F5 Networks Inc
- Ravi Natarajan
- r.natarajan&f5.com
-12277
- VarySys Technologies GmbH & Co. KG
- Frank Eberle
- technik&varysys.com
-12278
- VTX Technologie
- Joseph Toledano
- toledano&vtx.ch
-12279
- Warp Link GmbH
- Denti Luca
- admin&warplink.ch
-12280
- Western Institute of technology at Taranaki
- Ian Armstrong
- i.armstrong&witt.ac.nz
-12281
- Yumemi, Inc.
- Taiyo Watanabe
- taiyo&yumemi.co.jp
-12282
- Crew Co.,Ltd
- Osamu Yokozeki
- hiko&cmc.crew.ne.jp
-12283
- PLANET internet commerce GmbH
- Sebastian Lehn
- net&planet-ic.de
-12284
- IMAX NETWORKS (SHENZHEN) Ltd.
- William Zhang
- imax&imaxnetworks.com.cn
-12285
- Acclamation Systems, Inc
- Ryan Frantz
- rfrantz&acclamation.com
-12286
- Issaqua
- Marcus Vogt
- mgvogt&bigpond.com
-12287
- Globecomm Systems, Inc.
- Tim Berdon
- tberdon&globecommsystems.com
-12288
- Andern Research Labs
- Alexander Guy
- a7r&andern.org
-12289
- Beeweeb Srl
- Giampiero Recco
- g.recco&beeweeb.com
-12290
- Celestica International Inc.
- C. K. Lung
- cklung&celestica.com
-12291
- Cellular Specialties, Inc.
- Don Mills
- dmills&cellularspecialties.com
-12292
- cindercat
- Robert Wozniak
- wozniak&hist.umn.edu
-12293
- Digital Insight
- James Zappia
- james.zappia&digitalinsight.com
-12294
- Emblaze Systems
- Orit Baharav - Yaron
- orit.baharav&emblaze.com
-12295
- ERCIST
- Gong Wen
- gongwen&ercist.iscas.ac.cn
-12296
- IDDEX Corp
- Andrew Quale
- quale&iddex.com
-12297
- Independent Storage Corporation
- Carl Madison
- carlm&indstorage.com
-12298
- kinge & Co limited
- Kinge Paul
- kinge&t-online.de
-12299
- KTG, Inc.
- Chris Hauck
- chauck&temptrakwireless.com
-12300
- Mennonite.net
- Michael Sherer
- msherer&goshen.edu
-12301
- Mountain Visions P/L
- Robert Foster
- rfoster&mountainvisions.com.au
-12302
- netikos spa
- Alessandro Sinibaldi
- alessandro.sinibaldi&netikos.com
-12303
- New Bridges
- Marcel Witt
- witt&newbridges.nl
-12304
- Next Advisors
- Martin Fisher
- mfisher&nextadvisors.com
-12305
- PetraSync Inc.
- Pete McCormick
- pete&statspack.com
-12306
- PreWorkX (Pty) Ltd.
- Andre du Toit
- andre&preworx.com
-12307
- Red Wagon Solutions Incorporated
- Kelvin Cookshaw
- webreg-iana&redwagonsolutions.com
-12308
- SecLab
- Ahmad Mohammad Shafiee
- shafiee&hadid.sharif.edu
-12309
- self-indulgence.org
- Metta Moore
- metta_moore&yahoo.com.au
-12310
- Simple Access Inc.
- Mark Silverman
- mark.silverman&simple-access.com
-12311
- Strategic Service Alliance
- Cory J. Hill
- coryh&ssal.com
-12312
- Taika Technologies, Ltd
- Ilpo Ruotsalainen
- lonewolf&taikatech.com
-12313
- Tattersalls
- Marcus Vogt
- mgvogt&tattersalls.com.au
-12314
- Universidade Federal de Campina Grande
- Jacques Philippe Sauve
- jacques&dsc.ufcg.edu.br
-12315
- WorldWithoutWire.com
- Adam Montague
- am&wwow.ca
-12316
- Chuo Electroplaters' Cooperative Asscosiation
- Sotaro Hikosaka
- hiko&cmc.crew.ne.jp
-12317
- GL-Trade
- Jean-Paul Lemaire
- jplemaire&gltrade.fr
-12318
- Loomis Chaffee School
- Jesse Cooner
- jesse_cooner&loomis.org
-12319
- HEIWAKOGYO
- Sotaro Hikosaka
- hiko&cmc.crew.ne.jp
-12320
- Aspen Systems, Inc.
- Steve Spring
- steves&aspsys.com
-12321
- Bure Equity
- Support
- support&bure.se
-12322
- Delta Information & Communication
- Hyuck Han
- auriga&netsgo.com
-12323
- Department of Computer Science, Indiana University
- Dennis Gannon
- aslom&cs.indiana.edu
-12324
- Deutsche Lebens-Rettungs-Gesellschaft e.V.
- Reiner Keller
- keller&dlrg.de
-12325
- Fraunhofer FOKUS
- Hartmut Brandt
- brandt&fokus.gmd.de
-12326
- Hermes Precisa Australia
- Mario Veronese
- mariov&hpa.com.au
-12327
- kjsanders professional consulting engineers
- Keith J Sanders
- kjsanders&kjsanders.com
-12328
- LawsIT Pty Ltd
- Dean Law
- dean&presto.net.au
-12329
- Panasonic OWL
- Chris Holman
- chrish&owl.co.uk
-12330
- plan42 gmbh
- Christian Lotz
- cl&plan42.de
-12331
- Presto Pty Ltd
- Dean Law
- dean&presto.net.au
-12332
- Primus Telecommunications Group, Inc.
- Darshan Kaler
- dkaler&primustel.com
-12333
- TE / TM-tiimi
- Matti Kukkonen
- matti.kukkonen&tietoenator.com
-12334
- universal communication platform gmbh
- Mag. Martin Sperl
- martin.sperl&ucpag.com
-12335
- University of York
- Gavin Atkinson
- gavin.atkinson&york.ac.uk
-12336
- BuyWays
- Jaap Bouma
- jaap&buyways.nl
-12337
- Broad band network center of Tsinghua University
- Lin Guangguo
- lgg01&mails.tsinghua.edu.cn
-12338
- Netcore Network Technology
- Gao Qi
- huq&netcoretec.com
-12339
- Empowered Networks
- Caleb Dods
- caleb.dods&empowerednetworks.com
-12340
- Net Facilities Group
- Paul J Stevens
- beheer&nfg.nl
-12341
- NOVOMODO Inc.
- Bob Dulude
- bob&novomodo.com
-12342
- Pivia, Inc.
- Christopher Small
- csmall&pivia.com
-12343
- SK Access Devices
- Gerri Koerner
- gerri.koerner&skaccess.com
-12344
- Teros
- Charlton Sun
- csun&teros.com
-12345
- VWB Group
- Joris Mak
- j.mak&vwbintermedical.nl
-12346
- Hagero
- Per Hagero
- per&hagero.nu
-12347
- Amalgamated Systems, LLC
- Ron Chinn
- ron&amalgasys.com
-12348
- American Radio Relay League
- Jon Bloom
- jbloom&arrl.org
-12349
- AT Consultancy
- Ad Thiers
- ad.thiers&atconsultancy.nl
-12350
- ATMEL Hellas, S.A.n
- Effie Kirkou
- ekirkou&patras.atmel.com
-12351
- Barking Cow
- Jeff Hackert
- jchack&barkingcow.com
-12352
- Central Data Services
- Tyson Boellstorff
- t.boellstorff&gwccnet.com
-12353
- Clariden Bank
- Manuel Hilty
- manuel.hilty&clariden.com
-12354
- Colbourn Associates Ltd
- Charles Colbourn
- charles&colbourn.net
-12355
- CTI PET Systems, Inc
- Ellen Pearson
- ellen.pearson&cpspet.com
-12356
- Fortinet, Inc.
- Michael Xie
- mxie&fortinet.com
-12357
- Generic Media, Inc.
- Michael Kellner
- m&genericmedia.com
-12358
- Imagemedical
- Gabor Horvath
- ghorvath&imagemedical.com
-12359
- Indigo Tango Ltd.
- Ewan Ferguson
- ewan&indigotango.com
-12360
- Instituto Español de Informática y Derecho
- Luis Rodriguez
- lmr&ieid.org
-12361
- KGEx.com Co., Ltd
- Josan Lin
- josanl&kgex.com.tw
-12362
- Lombard Odier & Cie
- Marc BERNEY
- m.berney&lombardodier.com
-12363
- net-labs Systemhaus GmbH
- Ulrich Eck
- ueck&net-labs.de
-12364
- Newbreak LLC
- José Vicente Núñez Zuleta
- josevnz&newbreak.com
-12365
- NTT COMWARE CORPORATION
- Yasutaka Miyaue
- miyaue.y&nttcom.co.jp
-12366
- Pharmacia Corporation
- David Ploch
- david.w.ploch&pharmacia.com
-12367
- QUICK Corp.
- Kazuma Fujimi
- fujimi&quick.co.jp
-12368
- Raesemann Enterprises, Inc.
- Robert Raesemann
- rob_raesemann&yahoo.com
-12369
- Röhrs Stahl- und Metallbau GmbH & Co.KG
- Thomas Wieckhorst
- T.Wieckhorst&roehrs-soltau.de
-12370
- SARD Communications Ltd.
- Angelina Markovic
- ninam&bitsyu.net
-12371
- Scrutiny, Inc.
- Dave Duchesneau
- dave&scrutiny.com
-12372
- TeraCloud Corporation
- Frank Snow
- fsnow&tcloud.com
-12373
- Tetrapod Communications, Inc.
- Robert McKay
- robert&tetrapod.com
-12374
- Texas State Credit Company
- Jason Tessmann
- jtessmann&e-tscc.com
-12375
- Universal Access, Inc.
- Jacob McNutt
- jmcnutt&universalaccess.net
-12376
- University of Technology Dresden, Department of Computer Science
- Stefan Koepsell
- sk13&inf.tu-dresden.de
-12377
- Vivendi Telecom Hungary
- Tripolszky Zsolt
- tripy&mail.vnet.hu
-12378
- WellThot Inc.
- Mark Schwenk
- mas&wellthot.com
-12379
- Wingra Technologies
- Tomas Willis
- tomas.willis&wingra.com
-12380
- WiWo Support
- M.F. van Dorp
- m.vandorp&wiwo.nl
-12381
- Worldcom Asia Pacific
- Glenn Gore
- gore.glenn&wcom.com.au
-12382
- UNIHUB GLOBAL NETWORK
- Xiaochuan Wu
- wuxc&unihub.net
-12383
- Chrysalis-ITS
- Chris Dunn
- lunatech&chrysalis-its.com
-12384
- Commissariat a l'Energie Atomique
- Marie-Christine Plancon
- marie-christine.plancon&cea.fr
-12385
- Common Voices
- Duncan Fisher
- snmp&commonvoices.com
-12386
- InteQ Corporation
- Sushil Menghani
- sushil&inteqnet.com
-12387
- IPDirections
- Bernard Gilles
- gb&ipdirections.net
-12388
- JustThe.net LLC
- Steve Sobol
- sjsobol&justthe.net
-12389
- MacsDesign Studio
- Jonathan Lew
- jlwe&macsdesign.com
-12390
- Microcell Telecommunications Inc.
- Guy Garon
- snmp.master&microcell.ca
-12391
- Universiteit Utrecht
- Kees van Eijden
- k.vaneijden&ict.uu.nl
-12392
- Welcat Inc.
- Yasutomo Sone
- sone&welcat.co.jp
-12393
- Active Hotels
- Judd Muir
- judd&activehotels.com
-12394
- Alvarion Ltd.
- Shai Yaniv
- shai.yaniv&alvarion.com
-12395
- Centro de Informatica da Universidade de Coimbra
- Mário José Bernardes
- mjb&ci.uc.pt
-12396
- Cintech Solutions
- John F. Huber
- jhuber&cintechsolutions.com
-12397
- Gesellschaft fuer Raumbildsysteme mbH
- Carsten Grohmann
- iana&raumbildsysteme.de
-12398
- E. O. Ospedali Galliera
- Marco De Benedetto
- debe&galliera.it
-12399
- FIX Express Corp.
- Frank Proietti
- frankp&fixcorp.com
-12400
- Gatea Ltd.
- John Shaffer
- johns&gatea.com
-12401
- Germinus Solutions
- Javier Fernández-Sanguino Peña
- jfernandez&germinus.com
-12402
- IDLSPM
- Joseph Maldjian, MD
- maldjian&wfubmc.edu
-12403
- Imedia Semiconductor Corp.
- Raju Joag
- raju.joag&imedia.com
-12404
- Indianguide.com
- Devaki Deshpande
- devaki.d&genisys-group.com
-12405
- Matrics Inc.
- Yuxin Jiang
- yjiang&matricsrfid.com
-12406
- Medinet IDG S.A.
- Enrique Santure
- esanture&medinet-igd.es
-12407
- NiceShipping Technology Corporation
- Genie Wang
- genie&mail.niceshipping.com
-12408
- Noordelijke Hogeschool Leeuwarden
- F.J. Bosscha
- f.j.bosscha&nhl.nl
-12409
- Objectivity, Inc.
- Ibrahim Sallam
- ibrahim.sallam&objectivity.com
-12410
- OPS
- Mario Ivankovits
- mario&ops.co.at
-12411
- Plasmedia
- Mark P. Eliasaputra
- mark.eliasaputra&plasmedia.com
-12412
- Portbridge Internet
- Igor Brezac
- igor&portbridge.com
-12413
- Radio Frequency Systems
- Jean-Christophe Detay
- RFS.MIBSupport&rfsworld.com
-12414
- SCRYPTO Systems
- Merlin Pascal
- pmerlin&scrypto.fr
-12415
- SinnerSchrader AG
- Arnim Fluegge
- iana&sinnerschrader.com
-12416
- Summit Place Ales
- Jonathan Brandenburg
- jonathan.brandenburg&lante.com
-12417
- Tata Infotech Limited
- Ajit Kunjal
- ajit.kunjal&tatainfotech.com
-12418
- THALES
- Patrick TAUPIN
- patrick.taupin&fr.thalesgroup.com
-12419
- YAMAHA CORPORATION
- Nobuaki Ohashi
- nobuaki_ohashi&gmx.yamaha.com
-12420
- Yokogawa Blue Star india Ltd
- Sreedhara P.
- psreedhara&ybil.com
-12421
- JWAY GROUP, Inc.
- Tomoo Watanabe
- tomoo&jway.com
-12422
- The Co-operators
- Richard Sizer
- richard_sizer&cooperators.ca
-12423
- Concord Telephone Company
- Kevin Carter
- kevin&ctc.net
-12424
- Congregation of the Sacred Hearts
- Joshua Harding
- jharding&sscc.org
-12425
- ConLingual
- Ed Brady
- ed&ebrady.net
-12426
- E-Control Systems
- Vincent Ferreria
- vincent.ferreria&econtrolsystems.com
-12427
- Equinox Engineering Ltd.
- Ehren Wilson
- ewilson&equinox-eng.com
-12428
- Genie Information Co.
- Chun-chi Wang
- genie&mail.genie.cc
-12429
- Interact, Inc.Software Systems
- Glenn E. Riedel
- glenn&iivip.com
-12430
- I-Silver
- Lee Blakely
- leerb&isilver-inc.com
-12431
- iXus Technologiedienstleistungen GmbH
- Nico Lochner
- offerte&ixus.de
-12432
- Jippi Group Oyj
- Timo Fager
- timo.fager&jippiigroup.com
-12433
- John Sheahan & co.
- John Sheahan
- security&johnsheahan.com
-12434
- Knox College
- Don Hickey
- dhickey&knox.edu
-12435
- M2 Systems Corporation
- Jack Curtin
- jcurtin&m2-corp.com
-12436
- Navosha, Inc.
- Bryce Bingham
- snmp&navosha.com
-12437
- Next Level Design, Inc.
- Elliot Metsger
- emetsger&jhu.edu
-12438
- Paradigm.One Pty Ltd
- Marcel Jeffermans
- mjuffermans&paradigmone.com.au
-12439
- Ritzlmayr Consulting
- Henry Ritzlmayr
- h.ritzlmayr&gmx.at
-12440
- Securenet Ltd
- Yoram Hacohen
- yoram&securenet.co.il
-12441
- SELECTED HOSTING
- Jack Xie
- jackxh1215&yahoo.com
-12442
- TechGemini Inc
- James Benedict
- james.benedict&rogers.com
-12443
- www.TrafficShaper.com
- Bob Mahar
- info&trafficshaper.com
-12444
- Mangolution, Inc.
- Raymond Reeves
- Raymond.Reeves&mangolution.com
-12445
- Teradyne
- Russ Luchinske
- luchinsk&ttd.teradyne.com
-12446
- UNPHU
- Raymond Reeves
- Raymond.Reeves&mangolution.com
-12447
- yc consultant
- Yanic Chausse
- yanic68&hotmail.com
-12448
- 7TH VISION BILLING COMPANY
- Serge Kozhenkov
- 7th_vision&softhome.net
-12449
- Audiofon Chat & Play GmbH
- Burkhard Cruse
- cruse&audiofon.de
-12450
- Australian Department of Employment and Workplace Relations
- Michael Glasson
- michael.glasson&dewr.gov.au
-12451
- Communication Concept GmbH
- Andre Mamitzsch
- a.mamitzsch&ccgmbh.de
-12452
- IntraConnect GmbH
- Eckehart Stamer
- ecki&intraconnect.de
-12453
- Alaska Power & Telephone
- Matthew Schumacher
- matt.s&aptalaska.net
-12454
- Aria Solutions Inc
- Shane Boulter
- sboulter&ariasolutions.com
-12455
- CaCo
- Carsten Ungermann
- carsten.ungermann&caco.de
-12456
- CertiSur S.A.
- Armando Carratala
- register&certisur.com
-12457
- Chunghwa Telecom Laboratories
- James Chen
- jamescja&cht.com.tw
-12458
- GranIT Solutions, LLC
- David D. Dickinson
- dave&thedickinsons.net
-12459
- Global Name Registry Limited
- Rue Turner
- rturner&gnr.com
-12460
- ISG Consultoria e Informatica
- Rodrigo Miranda Terra
- rodrigo&isg.com.br
-12461
- Jamm
- Dave Dribin
- dave&dribin.org
-12462
- Linuxfabrik GmbH
- Stefan Schuermann
- Stefan.Schuermann&linuxfabrik.de
-12463
- Mendosus
- Fredrik Johansson
- fjn&mendosus.org
-12464
- MicroDowell SpA
- Elio Corbolante
- eliocor&microdowell.com
-12465
- MyKitchenTable.net
- Drew Tomlinson
- drew&mykitchentable.net
-12466
- Netfective Technology
- Sébastien Daunit
- sdaunit&netfective.com
-12467
- OneSecure, Inc.
- Ajit Sancheti
- asanchet&onesecure.com
-12468
- Pixion Inc
- John Heng
- jheng&pixion.com
-12469
- QAC - Quality Assurance Consult Ltda
- Gustavo Prado
- gustavo&qaconsulting.com.br
-12470
- Rechberger
- Reinhold Rechberger
- reinhold&rechberger.org
-12471
- Rocket Software, Inc
- Joe Devlin
- Joe.Devlin&rocketsoftware.com
-12472
- ScapeVision AG
- Giuseppe Alagia
- alagia&scapevision.ch
-12473
- UNILANG
- Sebastien Michea
- smichea&free.fr
-12474
- WAC
- Shachar Shmelthzman
- shachar&wireapp.com
-12475
- Webmotion Inc.
- Scott McIntyre
- scott.mcintyre&webmotion.com
-12476
- Carmody Consulting, Inc.
- Rob Davies
- robdavies&intra-connect.com
-12477
- Christian Michelsen Research AS
- Otto Skrove Bagge
- datalab&cmr.no
-12478
- Maryland Department of Transportation
- Jim Moore
- jmoore2&mdot.state.md.us
-12479
- OpenDNS Corp
- Pamela Patterson
- dude&opendns.biz
-12480
- Allied Worldwide
- Rickard Lofberg
- rickard&kontorsspecial.com
-12481
- Altrick
- Derick van der Merwe
- vdmeraj&unjisa.ac.za
-12482
- Departmento Técnico
- Gotor Artajona Jaime
- infosec&areatec.com
-12483
- Ebel
- Uwe Ebel
- info&koboldmaki.de
-12484
- Binary Solutions
- Kenneth Vestergaard Schmidt
- kvs&binarysolutions.dk
-12485
- WUMAG GmbH Werk Ebersbach
- Holger Huebner
- huebner&wumag.de
-12486
- Access Grid
- Robert Olson
- olson&mcs.anl.gov
-12487
- Adam Communication Systems International
- Tim Wright
- tim.wright&adamint.co.uk
-12488
- Ankor Systems
- Michael McManaman
- mgm7&ankorsystems.com
-12489
- Arizona Mail Order Co., Inc
- Network Administrator
- netadmin&amo.com
-12490
- B.Eckstein Systems
- Bernd Eckstein
- be&epost.de
-12491
- BondDesk
- Bill Pfeifer
- bpfeifer&bonddesk.com
-12492
- Cameron Net
- Andrew Cameron
- arcameron&nishanet.com
-12493
- eList eXpress LLC
- James Galvin
- services+oid&elistx.com
-12494
- enigmatec GmbH
- Frank Rogall
- f.rogall&enigmatec.de
-12495
- Eskata Systems, Inc.
- David Liu
- david&eskata.com
-12496
- goSBC
- Arthur M. Gallagher
- Arthur.Gallagher&goSBC.com
-12497
- Holborn Colleg
- John Rowley-Guyon
- johnrg&holborncollege.ac.uk
-12498
- Infofiend
- Ben Giddings
- bg.misc&infofiend.com
-12499
- IPB
- Rui Pedro Lopes
- rlopes&ipb.pt
-12500
- ISRO Satellite Centre
- Rajesh Kumar
- rajesh&isac.ernet.in
-12501
- KeysoftEnterllect
- Yves Galante
- yves.galante&keysoftentellect.com
-12502
- METZEMIX
- Stefan Metzmacher
- stefan.metzmacher&metzemix.de
-12503
- MYUGLYFACE COMPUTING
- Brian Sullivan
- bjs&myuglyface.com
-12504
- Onlight
- Nic Bernstein
- support&onlight.com
-12505
- Photonic Bridges Inc.
- Harrison Zou
- hzou&photonicbridges.com
-12506
- Pinpoint Networks, Inc.
- Frans N. Benders
- benders&pinpoint.com
-12507
- PROFIS SA
- Matei Conovici
- cmatei&profis.ro
-12508
- Scardine & Lopes Ltda
- Paulo Luiz Scardine Silva
- paulo&psi.com.br
-12509
- SecureONE
- Andrew Hatfield
- support&secureone.com.au
-12510
- Slackworks
- Frans N. Benders
- xac&slackworks.com
-12511
- Telesudeste Celular
- Fabio Douek
- fabio.douek&telefonicacelular.com.br
-12512
- University of Utah College of Mines & Earth Sciences
- Daniel Trentman
- trentman&mines.utah.edu
-12513
- XiteMedia I.S. V.O.F.
- E.W. Groot
- egbert&xitemedia.nl
-12514
- Abbott Laboratories
- Michael H. Buselli
- mib-admin&gprd.abbott.com
-12515
- ORGA Kartensysteme GmbH
- Syam Prasad Srikakulam
- sprasad&orga.com
-12516
- ARL HomeCommunications Sdn Bhd
- Zon Hisham Bin Zainal Abidin
- zon&homecomm.net.my
-12517
- MAN Nutzfahrzeuge AG
- Hans Sostak
- hans-peter>sostak&mn.man.de
-12518
- University of Mainz
- Markus Wagner
- wagner&imsd.uni-mainz.de
-12519
- Activa3
- Frederic Alsina
- falsina&activa3.net
-12520
- ASYRES
- Sébastien Durand
- sdurand&asyres.fr
-12521
- Avacue Ltd
- Stephen Wong
- admin&avacue.com
-12522
- California State University, San Bernardino
- Javier Torner
- jtorner&csusb.edu
-12523
- Credit Union Central of Manitoba
- Randy Jung
- randy.jung&creditunion.mb.ca
-12524
- D.I.B.
- Kim Yoon-Hwa
- reno923&dib.net
-12525
- Echostar Solutions
- Aaron Anderson
- aaron&echostar.ca
-12526
- Groupe Eyrolles
- Hussein Metdaoui
- hmetdaoui&eyrolles.com
-12527
- HOPF Elektronik GmbH
- Ruprecht & Partner OEG
- office&rdcs.at
-12528
- PureSight Ltd
- Royi Cohen
- IANA&puresight.com
-12529
- IDG Communications Ltd
- Juha Saarinen
- juha_saarinen&idg.co.nz
-12530
- Informatikdienste, ETH Zuerich
- DAvid McLaughlin
- mclaughlin&id.ethz.ch
-12531
- James K. Fegan Consulting
- James K. Fegan
- jkf82933&pegasus.cc.ucf.edu
-12532
- Neoteris, Inc.
- Shyam Davuluru
- questions&neoteris.com
-12533
- NOX CO.,LTD
- Takashi Ogiwara
- ogiwara&nox.co.jp
-12534
- NZPhone S/A
- Carlos Eduardo Ribeiro do Valle
- cvalle&nztech.com.br
-12535
- Schmidt & Co. (HK) Ltd.
- Charles Luk
- charlesluk&schmidtelectronics.com
-12536
- SIMSAM Consulting Limited
- Simon Barnes
- simon.barnes&simsamconsulting.co.uk
-12537
- Spider Eye Studios
- Gary Wisniewski
- iana_org&gw.spidereye.com
-12538
- Telkom
- Peter Brooks
- peter_brooks&hp.com
-12539
- The Palantir Corporation
- Eric R. Medley
- emedley&xylocore.com
-12540
- T-Systems International
- Michael Schaefer
- mschaefer&t-systems.com
-12541
- Universidad de Carabobo
- Jose Dinuncio
- jdinunci&uc.edu.ve
-12542
- UNIZETO Sp. z o.o.
- Krzysztof Cieplucha
- kcieplucha&unizeto.pl
-12543
- Virgil BV
- Mark van Leeuwen
- mark.van.leeuwen&virgil.nl
-12544
- AEGON Nederland N.V.
- Arthur Wijnschenk
- awijnschenk&aegon.nl
-12545
- is Industrial Services AG
- Holger Gehrmann
- holger.gehrmann&is-ag.com
-12546
- VerySmartPeople Inc
- Joop Cousteau
- golf&hushmail.com
-12547
- Principle Inc.
- Shahriar Aghajani
- aghajani&principle.com
-12548
- HSH Nordbank AG
- Thilo Franz
- thilo.franz&hsh-nordbank.de
-12549
- Air Navigation Services (ANS) of the Czech Republic
- Otakar Liska
- oldi&ans.cz
-12550
- Association for Multidiscipline Education in the Health Sciences
- Donald MacDougall
- dmacdoug&usc.edu
-12551
- CE+T
- Greindl Jacques
- j.greindl&cet.be
-12552
- Corporation of Balcultha
- Alan Milligan
- alan&balclutha.org
-12553
- Dispuut Meteoor
- Michiel Kool
- kool&meteoor.net
-12554
- Ecclesias.net
- Donald MacDougall
- dmacdoug&usc.edu
-12555
- Eduro Technologies, Inc.
- Bill Gibbs
- bgibbs&edurotech.com
-12556
- EmSol LLC
- Martin Green
- martin_green&emsolllc.com
-12557
- GuruMeditations.org
- Jefferson Hunt
- jhunt&gurumeditations.org
-12558
- icoserve information technologies GmbH.
- Markus Gspan
- m.gspan&icoserve.com
-12559
- INRIA
- Olivier Festor
- Olivier.Festor&inria.fr
-12560
- InterEpoch Technology, Inc.
- Yuh-Rong Leu
- yrleu&interepoch.com.tw
-12561
- Khonraad Systems Engineering BV
- A.J.G.H.M. Khonraad
- postmaster&khonraad.nl
-12562
- Marcom Department Shanghai Mitac Research Co. Ltd.
- VL Zheng
- zhengvl&mic.com.tw
-12563
- megatel GmbH
- Bernd Schuette
- admin&megatel.de
-12564
- Natverket
- Magnus Beutner
- beutner&algonet.se
-12565
- Navaho Networks Inc
- Russell Chan
- russ&navahonetworks.com
-12566
- NIKoil Investment Banking Group (joint stock bank)
- Igor N. Kalinskov
- kal_in&nikoil.ru
-12567
- One5 Corporation
- David W. Lewis
- dwlewis&one5.com
-12568
- Ranger Computers
- Alan James
- alan&rangercom.com
-12569
- Rigel Corporation
- Helen Emery
- emery&rigelcorp.com
-12570
- S.I.C.E. s.r.l.
- Valentina Lomi
- info&sicetelecom.it
-12571
- Symnetics Holdings
- Ralph Wong
- ralph88&netvigator.com
-12572
- TCD Enterprise, Inc.
- Tuan Ho
- TQH&onebox.com
-12573
- Telonor Business Solutions
- Bjorn NOrdbo
- bn&nextra.com
-12574
- TMH The Marilyn House srl
- Massimiliano Sellari
- maxe&tmh.it
-12575
- UIC
- Hubert Cheng
- hubertch&uniform.com.tw
-12576
- Unidirect
- Samuel Gautier
- s.gautier&unidirect.fr
-12577
- Unique Interactive
- Tom Gray
- tom.gray&unique.com
-12578
- Viola Systems
- Jari Lahti
- jari.lahti&violasystems.com
-12579
- ZIGZAG Internet Service Provider
- Jaroslaw Ajdukiewicz
- jajdukiewicz&zab.zigzag.pl
-12580
- ZIRION NETWORKS, Inc.
- Takakazu Morioka
- morioka&zirion.co.jp
-12581
- Naruhodo Solutions
- Glenn Connell
- glennconnell&hotmail.com
-12582
- Primerica Financial Services
- Glenn Drawdy
- glenn.drawdy&primerica.com
-12583
- University of California, Irvine Information and Computer Science Department
- Hans Wunsch
- support&ics.uci.edu
-12584
- Butler
- R. Scott Butler
- butlerrscott&mindspring.com
-12585
- Alstom Holdings
- John Bruylant
- john.bruylant&chq.alstom.com
-12586
- Manono Software, Inc. (formerly 'ApiaTech Information Technologies, Inc.')
- Scott Rich
- scott&manonosoft.com
-12587
- 430am
- Al Fleming
- al&430am.com
-12588
- Blueice Research AB
- Thomas Holmstrom
- thomas&blueiceresearch.com
-12589
- Celestial Software LLC
- Bill Campbell
- bill_ld&celestial.com
-12590
- Changi International Airport Services Pte Ltd
- Jason Zhang Xiao
- jason&cias.com.sg
-12591
- Corus group plc.
- Peter Kelder
- peter.kelder&corusgroup.com
-12592
- Dycec
- Juan Luis López Blázquez
- jllopez&dycec.com
-12593
- EKL Solutions LLC
- Oguzhan Eris
- eris&ekls.com
-12594
- Elma Ingenierie Informatique
- Jean-Samuel REYNAUD
- jsreynaud&elma.fr
-12595
- EMS Enterprise Messaging Solutions GmbH
- Armin Schlueter
- armin.schlueter&emsgmbh.de
-12596
- JOUVE S.A.
- Erwan Gaugain
- egaugain&jouve.fr
-12597
- Lightwave Communications
- Martin Green
- marting&lantronix.com
-12598
- Net Vista
- Ashish Bhandari
- abhandari&netvista.net
-12599
- Ordyn Electronic Systems Private Limited
- Sreeraj S
- sreeraj&ordyn.com
-12600
- Peramon Technology Ltd
- Ivor Davies
- ivor.davies&peramon.com
-12601
- Reed College
- Ben Poliakoff
- benp&reed.edu
-12602
- RooNetworks Inc.
- Kevin Bergner
- kevin&roonetworks.com
-12603
- ShadowSupport, Inc.
- Steve Tulloh
- stulloh&shadowsupport.com
-12604
- Spatial Wireless
- Venkat Kadali
- vkadali&spatialwireless.com
-12605
- SHOM
- Bruno Treguier
- bruno.treguier&shom.fr
-12606
- MBB Gelma GmbH
- Christoph Müller
- christoph.mueller&mbb-gelma.de
-12607
- Advance Fiber Optics Inc
- Gerald Kelly
- gkelly&advancefiber.com
-12608
- Ahapala
- Keith Nasman
- keith&ahapala.net
-12609
- Ascella Technologies
- Amith Varghese
- amith.varghese&ascellatech.com
-12610
- Aspen Business Logic Computing
- Gabor Ivan
- ivang&freemail.hu
-12611
- Atlantique Software
- Mario Matos
- mario.matos&mail.com
-12612
- Barco BCI
- Maenhout Koenraad
- koenraad.maenhout&barco.com
-12613
- BroadJump
- Gary Caldwell
- gcaldwell&broadjump.com
-12614
- CiRBA Inc.
- Riyaz Somani
- rsomani&cirba.com
-12615
- Craig F. Donlan
- Craig Donlan
- donlan&acm.org
-12616
- DataCorp
- Lei Wei
- leiwei99&yahoo.com
-12617
- Espedair Systems
- Jonathan King
- jon.king&alphawest6.com.au
-12618
- EZHi Technologies, Inc.
- Kaiji Chen
- kaiji_chen&ezhi.com
-12619
- UFRGS
- Lisandro Zambenedetti Granville
- granville&inf.ufrgs.br
-12620
- Future System Consulting Corp.
- Tooru Kusakari
- kusakari.tohru&future.co.jp
-12621
- GE Medical System Information Technologies SW GmbH & Co.KG
- Stefanie Rempfer
- stefanie.rempfer&med.ge.com
-12622
- Devicescape Software, Inc.
- Bhavani Devi RG
- bhavani&devicescape.com
-12623
- IRCI S.A.
- Philippe Auphelle
- pauphelle&irci.fr
-12624
- Kennesaw State University
- Karen Driscoll
- sysop&ksumail.kennesaw.edu
-12625
- LabBook, Inc
- Steve Roggenkamp
- steve.roggenkamp&labbook.com
-12626
- Ministry of Education, Singapore
- V.N. Naidu
- narayanasamy_v_naidu&moe.gov.sg
-12627
- Morgan Stanley S.V.S.A
- Jesus Martinez
- jmrubio&msdw.es
-12628
- Movielink
- Calvin Poon
- calvin.poon&movielink.com
-12629
- MSE
- Rick Heile
- rick.heile&compaq.com
-12630
- m-solutions Ltd.
- Alex Lam
- alexlam&msolutions.com.hk
-12631
- Nets AG
- Lars Schluckebier
- lars.schluckebier&nets-ag.de
-12632
- Objekt Management
- Martin Roob
- martin&objekt-management.de
-12633
- Oceanbay Internet Services
- Gary Graves
- oceanbay&oceanbay.com
-12634
- PICMG
- Richard Somes
- richard.somes&fci.com
-12635
- Redsonic, Inc.
- Kirk Murrin
- kmurrin&redsonic.com
-12636
- Scripps College
- Jeffrey D Sessler
- jeff&scrippscollege.edu
-12637
- Shazam Entertainments ltd
- Tony Miller
- tony.miller&shazamteam.com
-12638
- Siennax
- Mark Ruijter
- mark.ruijter&siennax.com
-12639
- Supercable
- Gustavo Garcia
- ggarcia&supercable.net.co
-12640
- The Houston-Harris County Immunization Registry
- Bryan Tang
- bytang&texaschildrenshospital.org
-12641
- TRIBUNAL REGIONAL DO TRABALHO da 10ª REGIÃO
- Gilberto Sena Rios
- gsrios&trt10.gov.br
-12642
- University of Southern Mississippi
- David J. Sliman
- david.sliman&usm.edu
-12643
- UTI Systems S.A.
- Victor Dumitrescu
- victor.dumitrescu&uti.ro
-12644
- VISAA
- Manuguru Dhayaleeswaran Vijay
- vijay_dhayal&yahoo.com
-12645
- Vodafone Information Technology and Technology Management
- Kevin Greene
- kevin.greene&vodafone-us.com
-12646
- WideBand Corporation
- Roger E. Billings
- billings&wband.com
-12647
- Lulea University of Technology
- Mattias Pantzare
- pantzer&dc.luth.se
-12648
- Systek Information Technology Ltd.
- Alex Chan
- alex.chan&systekit.com
-12649
- Utfors AB
- Rasmus Aveskogh
- rasmus.aveskogh&utfors.se
-12650
- Administrative Management Group, Inc.
- Abhay Chitre
- abhay.chitre&amgusa.com
-12651
- Alaska Department of Labor
- Paul Hegg
- paul_hegg&labor.state.ak.us
-12652
- Aminor
- Eivind Olsen
- eivind&aminor.no
-12653
- Armitel
- Kevin Chae
- kevinchae&armitel.com
-12654
- ATH system
- Josef Horak
- horak&ath.cz
-12655
- exceet Secure Solutions GmbH (formerly 'AuthentiDate International AG')
- Pierre Kraschinski
- pierre.kraschinski&exceet.de
-12656
- Avest Plc.
- Maxim Kostyshin
- max_kostyshin&avest.org
-12657
- Birmé Consulting
- Jonas Birmé
- jonas&birme.se
-12658
- Blue Star Sustainable Technologies Inc.
- Michael Branch
- unix_wizard&yahoo.com
-12659
- Brazier & Welch
- Bill Welch
- bill&brazier.com
-12660
- CacheWare, Inc.
- Stephen McHenry
- stephen&cacheware.com
-12661
- Caroline Chisholm Catholic College
- Mathew McKernan
- m.mckernan&cccc.vic.edu.au
-12662
- CHM Inc.
- John McDonald
- jmcdonald&chm.net
-12663
- DocFi
- Daniel Moore
- dan&docfi.com
-12664
- DotCall
- Joseph Shanley
- jshanley&link.net
-12665
- Enfotec, Inc.
- Bob Bova
- iana&enfotec.net
-12666
- Etagon
- Yahav Nussbaum
- yahav_nussbaum&etagon.com
-12667
- ETERE
- Fabio Gattari
- fabio.gattari&etere.com
-12668
- Garuda Networks
- Jackie Huen
- jackie&garudanetworks.com
-12669
- Hanenkamp.com
- Andrew Sterling Hanenkamp
- sterling&hanenkamp.com
-12670
- Indigo Development Corp.
- Eric Zidovec
- ericz&indigodevelop.com
-12671
- Institut fuer System-Management
- Mathias Ohlerich
- moh&landhaus-k.de
-12672
- isMobile AB
- Goran Lowkrantz
- goran.lowkrantz&ismobile.com
-12673
- iTelco Communications, Inc.
- Luke Peacock
- lpeacock&i-telco.com
-12674
- Kaon Interactive Inc
- Kevin Russo
- russo&kaon.com
-12675
- Linux Unlimited, LLC
- Scott Sharkey
- ssharkey&linuxunlimited.com
-12676
- Logical
- Kylie MacFadzean
- kylie.macfadzean&au.logical.com
-12677
- Mackeeg, Inc.
- Jim Meincke
- jmeincke&yahoo.com
-12678
- Nankai University Chuangyuan Information Technologies Co., Ltd.
- Hite Lee
- lihaitao&itec.com.cn
-12679
- NextFuture
- Rink Springer
- rink&ikuu.org
-12680
- Objective Dynamics Ltd
- Michael Baker
- michael_baker&objectivedynamics.co.uk
-12681
- Parker Abex NWL
- Pete Miller
- pjmiller&parker.com
-12682
- PC Info Solutions
- Mathew Locke
- mlglobal99&hotmail.com
-12683
- PreCache Inc.
- Roger Leng
- rleng&precache.com
-12684
- Quantum Solutions
- John Gormley
- gormley&qsolutions.com
-12685
- SCS Engineers
- Jerry Keene
- jkeene&scsengineers.com
-12686
- SDS GmbH
- Jens Burger
- burger&sds-hagen.de
-12687
- SiliconLogic Ltd.
- Mark Duszyk
- mduszyk&yahoo.com
-12688
- Sohu.com Inc
- KingYee
- kingyee&sohu.com
-12689
- SUPERONLINE INTERNATIONAL ONLINE INFORMATION AND COMMUNICATION SERVICES Inc.
- Melih Ozdemir
- melih.ozdemir&superonline.net
-12690
- Technology Leaders, LLC
- David T. Smith
- David.Smith&Technology-Leaders.com
-12691
- Terilogy Co., Ltd.
- Yoichi Matsuura
- ymatsu&terilogy.com
-12692
- Think4You IT Services GmbH
- Kim Laue
- it-cgn&t4y-it.com
-12693
- Ti.KOM Tirol Kommunikation
- DI Stephan D'Costa
- stephan.dcosta&tikom.at
-12694
- UNIVERSITÉ DE MARNE-LA-VALLÉE
- Centre de Ressources Informatiques
- contact&univ-mlv.fr
-12695
- VS Vision Systems
- Gruszka Damian
- damian.gruszka&visionsystems.de
-12696
- Xavier College
- Anthony Sutton
- anthony.sutton&xavier.sa.edu.au
-12697
- YoungHome.Com, Inc
- Darren Young
- darren&younghome.com
-12698
- AFRANET Co. Ltd,.
- N. R. Neshaat
- lir&afranet.com
-12699
- Moy Corporation
- Gang Gong Moy
- gg&moy.com
-12700
- UNC Health Care
- John McNulty
- jmcnulty&unch.unc.edu
-12701
- Tuxnology
- Craig Spurgeon
- tuxnology&quiknet.com
-12702
- 724 Solutions Inc
- Andrew Schofield
- andrew.schofield&bluewin.ch
-12703
- Acelet
- Wei Jiang
- wei_jiang&acelet.com
-12704
- ALLTEL Corporation
- Timothy S Hoffman
- Timothy.S.Hoffman&alltel.com
-12705
- BAX Global
- Raed Nashef
- rnashef&baxglobal.com
-12706
- BYTERAGE, INC
- Marshall Sorenson
- marshall&byterage.net
-12707
- Connect Systems Inc
- Gregory D. Newton
- gregn&connectsys.com
-12708
- CyberLancet Corporation
- H. Jeff Tsai
- jefft&cyberlancet.com
-12709
- Davies, Inc.
- Chris Davies
- mcd&daviesinc.com
-12710
- Dedicated Hosting Services
- Sean O'Brien
- sean&dhsmail.com
-12711
- Experian Limited
- Jonathan Deeming
- jon.deeming&uk.experian.com
-12712
- Four Corners Telecommunications Corp
- Ray Moore
- rcm&fourcornerstelecom.com
-12713
- HighSpeed Surfing
- Soo-Hang Ryu
- soohang.ryu&highspeedsurfing.com
-12714
- Ikosaeder
- Andreas Winderl
- winderl&ikosaeder.de
-12715
- Indian Institute of Technology, Bombay
- G Sivakumar
- siva&iitb.ac.in
-12716
- Infologigruppen Norr AB
- Goran Lowkrantz
- goran.lowkrantz&infologigruppen.se
-12717
- InterSAN, Inc
- Barry H. Feild
- barry&intersan.net
-12718
- Rheinische Friedrich -Wilhelms-Universitaet Bonn
- Irina Neerfeld
- oid&uni-bonn.de
-12719
- Open Software Services, LLC
- Joe Koberg
- joe&opensoftwareservices.com
-12720
- Reliant Resources
- Dylan Clark
- dsclark&reliant.com
-12721
- Rendition Networks Incorporated
- Ajay Gummadi
- ajay&renditionnetworks.com
-12722
- Rite Aid Corporation
- Steven P. Swartz
- sswartz&riteaid.com
-12723
- Seisint Inc.
- Glenn Puchtel
- gpuchtel&seisint.com
-12724
- Sensinova AB
- Hans Kalldal
- hans&sensinova.se
-12725
- Santa Clara County
- Jimmy Liang
- jimmy.liang&isd.sccgov.org
-12726
- Sudoeste Serviços de Telemática Ltda
- Antonio Dias
- hostmaster&sst.com.br
-12727
- Supervise Network
- Pierrick Simier
- pierrick.simier&supervise-network.fr
-12728
- SYSWILL
- Kwon Soon-Hong
- shkwon&syswill.com
-12729
- Be Think, Solve, Execute GmbH (formerly 'targit GmbH')
- Martin Hans
- info&be-tse.de
-12730
- TECSys Development, LP
- Clyde T. Poole
- c_poole&tditx.com
-12731
- UTI Systems S.A.
- Mihai Ianciu
- mihai.ianciu&uti.ro
-12732
- VoIP Group Inc.
- Marcelo Garbarino
- mgarbarino&voipgroup.com
-12733
- WildPackets, Inc.
- Mahboud Zabetian
- mahboud&wildpackets.com
-12734
- Northrop Grumman Information Systems
- Ron Smudz
- ron.smudz&ngc.com
-12735
- VFSPIH
- Dirk Dons
- dirk.dons&vlafo.be
-12736
- Elo & Mahout & Co
- Nicholas Wehrmann
- mahut42&t-online.de
-12737
- Algenib Software, Inc.
- Gerald Hewes
- gerald&algenibsoft.com
-12738
- BMW of North America
- Robert Brown
- robert.brown&bmwna.com
-12739
- dgstar co., Ltd.
- Sungmo Yang
- smyang&dgstar.co.kr
-12740
- EqualLogic
- Irina Suconick
- irina&equallogic.com
-12741
- ErgoIntegration AS
- Atle S. Ruud
- atle.ruud&ergo.no
-12742
- HomeConcept
- Pascal Roulin
- info&homeconcept.ch
-12743
- Integrated Service Lab
- Pojen Hsiao
- pojen&guva.com
-12744
- Nakisa Inc.
- Romeo de Leon
- rdeleon&nakisa.com
-12745
- Nordisk Språkteknologi AS
- Lars-Petter Helland
- lars-petter.helland&nst.as
-12746
- Spinoza Technology Inc.
- Josh Doubleday
- josh&sp1n.com
-12747
- Teamsoft Inc.
- Dany Ayotte
- ayotte&teamsoft.com
-12748
- Telenor ASA
- Heming Harnæs
- group-infrastructure&telenor.com
-12749
- UTA Telekom AG
- Heinz Ekker
- heinz.ekker&uta.at
-12750
- xi'an huahai medical info-tech co.,ltd.
- DingYuqi
- dyq&huahai.com.cn
-12751
- e-chiceros
- Javier Moreno
- ciberado&hotmail.com
-12752
- Acta Technology, Inc.
- Matthew Rabuzzi
- matt.rabuzzi&acta.com
-12753
- Biomedical Informatics Laboratory
- Daniel J. Valentino
- dvalentino&mednet.ucla.edu
-12754
- bTurtle
- S. Aeschbacher
- s.aeschbacher&bturtle.ch
-12755
- Cup 2000 spa
- Federico Calo
- federico.calo&cup2000.it
-12756
- Delta Networks, Inc.
- James Liu
- james.sh.liu&delta.com.tw
-12757
- eCubeNet.com
- Atsushi Hosono
- hosono&ecubenet.com
-12758
- ExPet Technologies, Inc.
- Young II Kwak
- ssen76&expet.co.kr
-12759
- Garban Intercapital
- Kenneth Cheung
- kenny.cheung&us.icap.com
-12760
- h00.org
- Frank Hollmann
- frank.hollmann&epost.de
-12761
- Hipbone, Inc.
- Robert Snedegar
- rws&hipbone.com
-12762
- iMpacct Technology Corp.
- Taisan Yang
- taisan&impacct.com.tw
-12763
- ISK Systems Ltd
- Ian King
- isking&ntlworld.com
-12764
- MEDIAOCEAN
- Ross Rankin
- ross&mediaocean.com
-12765
- Mintera Corp.
- Steve Bolton
- steve.bolton&mintera.com
-12766
- Mobixell Networks Inc.
- Asher Besserglick
- asherb&mobixell.com
-12767
- National Computer Helpdesk
- John Harris
- John.Harris&NationalComputerHelpdesk.com.au
-12768
- NaviSite Inc
- David Yee
- dyee&navisite.com
-12769
- netvigator.com
- Spencer KL Wong
- kwok-leung.wong&pccw.com
-12770
- Nyttab Ab / SurfNet
- Artur Signell
- info&surfnet.fi
-12771
- Palfrader
- Peter Palfrader
- iana&palfrader.org
-12772
- PZU Zycie SA
- Pawel Witan
- p.witan&pzuzycie.com.pl
-12773
- Resource Center
- Scott Gifford
- sgifford&suspectclass.com
-12774
- Sengent, Inc.
- Paul Denninger
- pdenninger&sengent.com
-12775
- Shiron Satellite Communications Ltd.
- Salit Drobiner
- salitd&shiron.com
-12776
- The Box IT
- Patrick Bosson
- patrick&thebox-it.com
-12777
- TNG - the net generation GmbH
- Carsten Tolkmit
- ctolkmit&tng.de
-12778
- TranTech, Inc.
- Roy Roebuck
- roy_roebuck&trantech-inc.com
-12779
- University of Vermont
- Frank Swasey
- root&uvm.edu
-12780
- VOLKTEK Corporation
- James Chen
- jameschen&volktek.com.tw
-12781
- Progeny Linux Systems
- John Daily
- jdaily&progeny.com
-12782
- Rost+Oberndoerfer Consulting GbR
- Christian Rost
- cr&rocon.de
-12783
- University of Maine System
- Wayne T. Smith
- wts&maine.edu
-12784
- Teamware Group AB
- Jonas Israelsson
- jis&teamware.se
-12785
- Amacis Ltd
- Kevin Mooney
- kevin_mooney&amacis.com
-12786
- Automatos, Inc.
- Agostinho Villela
- villela&automatos.com
-12787
- AxxessAnywhere
- Greger V. Teigre
- greger&connectivitypartners.com
-12788
- BladeLogic Inc
- Balaji Srinivasa
- balaji&bladelogic.com
-12789
- Centre for Integrated Computer Systems Research
- Jennifer Guo
- jguo&mss.cicsr.ubc.ca
-12790
- CESKY TELECOM a.s. - Imaginet o.z.
- Martin Pala
- martin.pala&hq.iol.cz
-12791
- Data & Control Systems Ltd
- Kozakis Dyonisis
- noc&dcs.com.gr
-12792
- Embarcadero Technologies, Inc.
- Nigel Myers
- nigel.myers&embarcadero.com
-12793
- EUREM GmbH
- Adruni Y. Ishan
- ishan&eurem.de
-12794
- Frank
- Florian Frank
- florianfrank&gmx.de
-12795
- HCC Hobbynet
- Ted Schipper
- ted&hobby.nl
-12796
- I/O Software
- Matt Clements
- matt&bendenajones.com
-12797
- Interactive Payer Network
- Stephanie Rogerson
- stephanie.rogerson&interpaynet.com
-12798
- Internet Kayttajat Ikuisesti - IKI ry
- Timo J. Rinne
- tri&iki.fi
-12799
- IPv6 Research and Development
- Jaco Engelbrecht
- bje&ipv6rd.net
-12800
- iqdoq
- Ferruh Zamangoer
- ferruh.zamangoer&materna.de
-12801
- Linuxmagic
- Michael Spyra
- m.spyra&danzas-euronet.de
-12802
- Mathcom Solutions Inc
- Steve Sullivan
- sullivan&mathcom.com
-12803
- Multitask Consultoria Ltda
- Sergio Fischer
- fischer&multitasknet.com.br
-12804
- National Library of Australia
- Mark Corbould
- mcorbould&nla.gov.au
-12805
- Notnet Webhosting
- Theo Zourzouvillys
- theo&notnet.co.uk
-12806
- Peter Stamfest
- Peter Stamfest
- peter&stamfest.com
-12807
- Rabbit Semiconductor
- Stephan Hardy
- shardy&zworld.com
-12808
- S2IO Technologies Corp.
- Leonid Grossman
- leonid.grossman&s2io.com
-12809
- San Diego Unified School District
- Erik Pitti
- epitti&sandi.net
-12810
- Saratov State University
- Paul P Komkoff Jr
- i&stingr.net
-12811
- SatService GmbH
- Michael Ulbricht
- mu&satservicegmbh.de
-12812
- Trustwave Holdings, Inc.
- OIDAdmin
- OIDAdmin&trustwave.com
-12813
- Speedwise Technologies
- Ofer Yachimovitz
- ofery&speedwise.com
-12814
- Staatliche Studienakademie Leipzig
- Ingolf Brunner
- ingolf.brunner&ba-leipzig.de
-12815
- Terraspring, Inc.
- Benjamin Stoltz
- stoltz&terraspring.com
-12816
- Universität Trier
- Helmut Steffes
- steffes&uni-trier.de
-12817
- Z-World Incorporated
- Joel Baumert
- jbaumert&zworld.com
-12818
- The Key Centre for Human Factors and Applied Cognitive Psychology
- Sarah Hollings
- sysadmin&humanfactors.uq.edu.au
-12819
- Banque Generale du Luxembourg
- Roland Schoenauen
- roland.schoenauen&bgl.lu
-12820
- Electrum Information Technology Co.Ltd
- Cao WeiWei
- vickycao&163.net
-12821
- e-Pie Entertainment & Technology Corporation(Beijing)
- Tony Wang
- wty&epiegame.com
-12822
- icu
- Lee Kye Chan
- cagers96&hanmail.net
-12823
- AMIT, Inc.
- Rupert Li
- iana-pen.mp&amit.com.tw
-12824
- AndTeK GmbH
- Stefan Grossberger
- sgrossberger&andtek.com
-12825
- ATC Information Services
- Joel McCarty
- jmccarty&atcis.com
-12826
- AXL Performance Solutions Ltd
- Steve Jepps
- stevej&axl.co.uk
-12827
- Barco, Inc.
- Elias Chibli
- elias.chibli&barco.com
-12828
- Blue Heron Biotechnology Inc
- IT Systems
- systems&blueheronbio.com
-12829
- Brady Motor Sports
- Tom Brady
- tjbrady&webtv.net
-12830
- Central Florida Main
- Christopher Clai
- contiga&mpinet.net
-12831
- Codemark
- Neil Godfrey
- neil&codemark.com
-12832
- COUNCIL OF EUROPE
- Samuel Chaboisseau
- samuel.chabolisseau&coe.int
-12833
- Covansys
- Bryan Youdan
- byoudan&covansys.com
-12834
- CPE
- Pierre Chifflier
- chifflier&cpe.fr
-12835
- Digitrust - Certificadora Notarial SA
- Jose Luiz Brandao
- brandao&digitrust.com.br
-12836
- E-Advies
- Emile van Bergen
- pec&e-advies.info
-12837
- Polytech'Lille
- Xavier REDON
- Xavier.Redon&polytech-lille.fr
-12838
- Exis Srl
- Andrea Trabucco
- atrabucco&exis.it
-12839
- German Gutierrez
- German Gutierrez
- errare_est&yahoo.com
-12840
- Griffin Plaza Partners, LLC
- Edwin Culp
- eculp&encontacto.net
-12841
- Interactive TKO Inc.
- John Michelsen
- john&itko.com
-12842
- Mediso Ltd.
- Zsolt Hegyi
- hegyizs&mediso.hu
-12843
- MIPTelecom
- Hyuck Kun Choi
- chk0705&miptel.com
-12844
- Northern Michigan University
- John Marra
- jmarra&nmu.edu
-12845
- Oak Lawn School District 229
- Jason Williams
- jwilliams&olchs.org
-12846
- ObjectCode
- Bodo Junlgas
- junglas&objectcode.de
-12847
- Orincon Corporation
- Meng Ngov
- mngov&orincon.com
-12848
- Saddleback College
- Mark Sierakowski
- msierakowsk&saddleback.edu
-12849
- SKYRIX Software AG
- Bjoern Stierand
- bs&skyrix.com
-12850
- Smart Tech Consulting
- Ronie Lima
- ronie&smartech.com.br
-12851
- Syncope Communication Systems GmbH
- Carsten Jenner
- cj&syncope.de
-12852
- SYSPAK
- Paul Pejman
- paul&pejman.dk
-12853
- Technical Toys Limited
- Derek Mulcahy
- derek&technicaltoys.net
-12854
- tellion
- Jongmin Kim
- jmkim&tellion.com
-12855
- Vastweb Technology Ltd.
- Jonathan Essex
- jonathan.essex&vastweb.co.uk
-12856
- Verge Networks
- Simon Horman
- horms&verge.net.au
-12857
- Williams College
- Ashley Frost
- ashley.w.frost&williams.edu
-12858
- eNetrex Inc.
- Son Dong Gi
- dgson&enetrex.com
-12859
- HIGHWAY.RU
- Peter A. Savitch
- support&highway.ru
-12860
- Zaryba Ltd
- Gwyn Evans
- gwyn&zaryba.com
-12861
- Bayerische Beamten Versicherungen
- Siegfried Huber
- siegfried.huber&bbv.de
-12862
- NEEF LAPPCOM GmbH
- Axel Maertens
- axel.maertens&neeflappcom.de
-12863
- AirLink Technology, Inc.
- Ji Young Soo
- quietly&airlinktek.com
-12864
- INCOGEN, Inc
- Pae Choi
- pae&incogen.com
-12865
- Amin Group
- Bryan Dumm
- bryan&bcpub.com
-12866
- CardEngine Inc.
- Alicia da Conceicao
- alicia&engine.ca
-12867
- Cedar Point Communications
- Thor Kirleis
- tkirleis&cedarpointcom.com
-12868
- CET Technologies Pte Ltd
- Francis Ngian Bang Sin
- ngianbs&cet.st.com.sg
-12869
- Codent Networks
- George Zhao
- gzhao&codentnetworks.com
-12870
- Danlab Electronics A/S
- Torben Machon
- tm&danlab.com
-12871
- die netzwerker GmbH
- Alexander Bauer
- abu&netzwerker.de
-12872
- DTE Energy
- Ronald Atkinson
- atkinsonr&dteenergy.com
-12873
- E.C.C. sa
- Stefaan A Eeckels
- stefaan.eeckels&ecc.lu
-12874
- EFM networks Inc.
- In Kim
- inkim&efm-net.com
-12875
- ExperShare
- Gregory S. Messer
- gmesser&expershare.com
-12876
- Fokker Space
- Joeri Bekker
- j.bekker&fokkerspace.nl
-12877
- FORTIS
- Jean-Paul Colard
- jean-paul.colard&fortisbank.com
-12878
- Griffin Network Consulting
- Brett Whinnen
- bmw&griffin.net.au
-12879
- IDNT Integrated Digital Network Technologies
- Marcus Zoller
- marcus.zoller&idnt.net
-12880
- kiwi interaktive medien gmbh
- Edward Bradburn
- bradburn&kiwi.de
-12881
- KnowGeeks
- James Wood
- dns&knowgeeks.com
-12882
- LGC Wireless
- Denny Yim
- dyim&lgcwireless.com
-12883
- Martinsson informationssystem
- Niklas Back
- niklas.back&martinsson.se
-12884
- Moody Bible Institute
- Erik A. Widholm
- noc&moody.edu
-12885
- MyArtic Communities
- Mika Koivisto
- mika.koivisto&myartic.net
-12886
- National Technical Systems
- Mark Tillinghast
- tillinghast&earthlink.net
-12887
- Netplex AB
- Anders Hagman
- anders.hagman&netplex.se
-12888
- Prokom Bilgisayar ve Danismanlik Hizmetleri San. ve Tic. Ltd.Sti.
- Sitki Kamil Karadenizli
- skk&prokom.com.tr
-12889
- PTC
- Jay Sargent
- jsargent&ptc.com
-12890
- Shorty
- Antoine Benoit
- antoine_benoit&gmx.it
-12891
- Syndicat Interhospitalier Limousin
- Alain Meinieux
- alain.meinieux&sil.fr
-12892
- University of Patras
- Victoria Daskalou
- daskalou&upatras.gr
-12893
- VisioWave S.A.
- Jean-Claude Michelou
- jcm&visiowave.com
-12894
- Wmode Inc
- David Cooper
- david.cooper&wmode.com
-12895
- Xsetup
- Mark Pavlyk
- info&xsetup.de
-12896
- Xtria Healthcare
- Jim Lawson
- jlawson&xtriahc.com
-12897
- ZiLOG Inc.
- Murray Baker
- mbaker&zilog.com
-12898
- Sinter Consulting
- Chris Kringel
- cmk007&hotmail.com
-12899
- Visogent Technologies
- William Bondy
- wmb&visogent.com
-12900
- ITEC
- Yan Ming Zhou
- zhouyanming&itec.com.cn
-12901
- Institute of Software,Chinese Academy of Sciences
- Zhijun Liu
- zjliu&otcaix.iscas.ac.cn
-12902
- Advanced Network Technology Laboratories Pte Ltd
- Leonard Ye
- lye&antlabs.com
-12903
- Bayshore Networks, Inc.
- Francis Cianfrocca
- francis&tempest.com
-12904
- EVault, Inc.
- Raymund Estrada
- domainadmins&evault.com
-12905
- Indian Institute of Technology Guwahati
- Gobind Gaurav Bansal
- gobind&iitg.ernet.in
-12906
- japc
- Jose Celestino
- japc&co.sapo.pt
-12907
- Kansai Broadband Planning Corp.
- Hisato Koyama
- koyama&kansai-bb.com
-12908
- Litech Systems Design
- Nathan Lutchansky
- n143&cornell.edu
-12909
- Machine Vision Products, Inc.
- Michael D. Risser
- michael&visionpro.com
-12910
- Next Element
- René van 't Hof
- rvhof&next-element.nl
-12911
- Oce NV
- Peter Strous
- tech-c&oce.com
-12912
- PeerPro
- Charles Meier
- cmeier&peerpro.net
-12913
- Procera Networks, Inc.
- Mick Hansen
- mbhansen&yahoo.com
-12914
- Production Robots Engineering Ltd
- Martin Lafferty
- martinl&prel.co.uk
-12915
- Radio Free Europe/Radio Liberty, Inc.
- Swetal Jariwala
- jariwalas&rferl.org
-12916
- Rockland Community College
- Lin Young
- lyoung&sunyrockland.edu
-12917
- Saber e Lazer, SA
- Jose Celestino
- japc&co.sapo.pt
-12918
- TDI- Transistor Devices, Inc
- Constantino Monroy
- constantino_monroy&tdipower.com
-12919
- XAVi Technologies Corporation
- Gavin Ko
- gavin&xavi.com.tw
-12920
- Xteam Software Co, ltd
- Qu Jianbing
- qjb&xteamlinux.com.cn
-12921
- Yeaman Associates
- John Yeaman
- jyeaman&metrocast.net
-12922
- Your Voice S.p.A.
- Marco Lanzotti
- marco.lanzotti&yourvoice.com
-12923
- Kigyo Zanmai Corp.
- Noboru Kurogouchi
- kuro&zanmai.biz
-12924
- Klon/Jawor Association
- Jerzy Filipowicz
- klon&klon.org.pl
-12925
- 3PAR Data
- An Lam
- an.lam&3pardata.com
-12926
- Anheuser-Busch
- Tim O'Day
- tim.oday&anheuser-busch.com
-12927
- Axiom (Cambridge) Ltd
- Colin McGerty
- sysadmin&mvhi.com
-12928
- Clarus Systems
- Kevin McGowan
- kevin.mcgowan&clarussystems.com
-12929
- Cliff Berg
- Cliff Berg
- cliff.berg&digitalfocus.com
-12930
- CVS Travelhost International Pty Ltd
- Izak Fourie
- izakf&cvs.co.za
-12931
- Dreefs GmbH Schaltgeräte & Systeme
- Manuel Vazquez Lamas
- manuel.vazquez&dreefs.de
-12932
- FESD GmbH
- David Gutman
- d.gutman&fesd.de
-12933
- Global Orchestra
- Dadure Arnaud
- info&globalorchestra.com
-12934
- Hunkeler AG
- Claudio Schiess
- c.schiess&hunkeler.ch
-12935
- i3 micro technology ab
- Arne Jonsson
- arne.jonsson&i3micro.com
-12936
- InCert Software Corporation
- Ruben E. Brown
- rbrown&incert.com
-12937
- Infradig Systems
- Andrew Davison
- andrew&infradig.com
-12938
- Innovative Technology Solutions, Inc.
- Pete Stevenson
- pete&itsits.com
-12939
- Modus (Scotland) Ltd
- Paul Mitchell
- pmitchell&modus-scotland.co.uk
-12940
- Pedestal Networks
- Faye Ly
- faye&pedestalnetworks.com
-12941
- Press-Data
- Andre Konopka
- andre.konopka&presse-data.de
-12942
- SANSHA ELECTRIC MFG.CO.,LTD
- Masaru Nishizuka
- nisizuka&sansha.co.jp
-12943
- Sengena
- Nicolas Dimitrijevic
- n001&sengena.com
-12944
- Sockeye Networks, Inc.
- Bradley Dunn
- bdunn&sockeye.com
-12945
- SoftProject GmbH
- Martin Antes
- martin.antes&softproject.de
-12946
- State Services Commission
- Leighton Corban
- leighton.corban&ssc.govt.nz
-12947
- SyntheSys Secure Technologies Inc.
- Hal Fitch
- hfitch&synthesysusa.com
-12948
- Syred data systems
- Mani Muthiah
- mani&syred.com
-12949
- T-Online France
- Eng Ming Hung
- mheng&t-online.fr
-12950
- Venngo Inc.
- Chris Davis
- chris&venngo.com
-12951
- VerizonWireless
- Joe Convery
- joe.convery&verizonwireless.com
-12952
- warpFactor Inc.
- Doug Grove
- grovedc&warpfactor.com
-12953
- Xandros Corporation
- Matt Maynard
- ldap-admin&xandros.com
-12954
- WM-data SDC a/s
- Leif Albjerg Nielsen
- lenes&wmdatasdc.dk
-12955
- Metarete s.r.l.
- Carlo Todeschini
- tode&metarete.it
-12956
- Aarhus Universitet
- Allan Egesbaek
- ae&adm.au.dk
-12957
- BLUE MARS GmbH
- Christian Bauer
- christian.bauer&bluemars.de
-12958
- Questerra
- Thomas Endo
- tendo&eskimo.com
-12959
- am professional services
- Ferdinand Hoffmann
- hoffmann&amps.de
-12960
- Andelina Corporation
- Kshemendra Paul
- kshemendra&earthlink.net
-12961
- Andrew Hewett Consulting
- Andrew Hewett
- hewett&web.de
-12962
- Decru, Inc.
- Nobu Fukatsu
- nobu&decru.com
-12963
- DIMONsoft
- Masyana Besbashennaya
- daemon&hotbox.ru
-12964
- ftlight.net
- Mattias Nordstrom
- matta&ftlight.net
-12965
- New Media Data Marketing, Inc.
- Scott Goodman
- scott&searchbc.com
-12966
- Next Generation Systems, Inc.
- Martin H Davis Jr
- mdavis&ngs-hq.com
-12967
- Petrobras - Petroleo Brasileiro S.A.
- Antiogenes M. dos Santos
- antiogenes&petrobras.com.br
-12968
- Menno Pieters (formerly 'Stelvio')
- Menno Pieters
- iana-assigned-numbers&menno.pieters.cx
-12969
- The Rockefeller University
- Lawry Persaud
- persaud&rockefeller.edu
-12970
- Urban Development Co.
- Mohamed Azim Ahmed
- azim&udcgroup.net
-12971
- bigdom.com
- Eugene Ventiana
- eventi&hotmail.com
-12972
- Callion Electronics Co., Ltd.
- Yi Zhong
- zhong_yi_ta&hotmail.com
-12973
- Wuhan Public Information Co.Ltd.
- Shicewei
- scwei&whol.com
-12974
- barrigon.com
- Felipe Castro
- felipe.castro&wanadoo.es
-12975
- brainaid
- Eddie C. Dost
- ecd&brainaid.de
-12976
- coWlan
- Philip Julius Florian Poten
- philip&cowlan.at
-12977
- Level II Inc.
- Ron Skinner
- rskinner&leveltwo.com
-12978
- Michael Fromme EDV-Beratung
- Michael Fromme
- fromme&fromme-edv.de
-12979
- Optimacy Corporation
- Tom Costandine
- tom.costandine&optimacy.com
-12980
- Person co., Ltd.
- Yamaguchi Toru
- sm&zenius.co.jp
-12981
- Rotterdam CS
- Aad Nales
- aad.nales&rotterdam-cs.com
-12982
- Synergy International Ltd
- Dan Richardson
- dan.richardson&synergy.co.nz
-12983
- TBS INTERNET
- JP Donnio
- tag-snmp-enterprise&tbs-internet.com
-12984
- Terraplay Systems AB
- Jonas Jonsson
- jonas.jonsson&terraplay.com
-12985
- University of St Andrews
- Duncan Brannen
- dbb&st-andrews.ac.uk
-12986
- Verlagsgruppe Straubinger Tagblatt / Landshuter Zeitung
- Roland Hebertinger
- hostmaster&idowa.de
-12987
- Vineyard.NET, Inc.
- Eric W. Bates
- iana&vineyard.net
-12988
- Vistorm Limited
- Rhodri Davies
- mib&vistorm.com
-12989
- XIP
- Phil Champon
- flah&phess.org
-12990
- Star Communication Network Technology Co., Ltd.
- WeiZhong Li
- liwz&startimes.com.cn
-12991
- California College of Arts & Crafts
- Marvin G. Dunn
- mdunn&ccac-art.edu
-12992
- T&A SYSTEME GmbH
- Till Bockenheimer
- till.bockenheimer&ta-systeme.com
-12993
- weitlandt. Communication
- Klaus Stein
- ks&weitlandt.com
-12994
- Abisoft Ltd.
- Yury Novitsky
- novym&abisoft.spb.ru
-12995
- Accet Network Inc
- Li Wang
- li.wang&accetnetwork.com
-12996
- adconsys AG
- Uwe Ahrendt
- hostmaster&adconsys.de
-12997
- Advanced Biometrics, Inc.
- Alan Chedalawada
- achedalawada&attbi.com
-12998
- Agile Software
- Francis T. Leong
- francis.leong&agile.com
-12999
- Altiris
- Leslie Bonsteel
- lbonsteel&altiris.com
-13000
- Anglia Polytechnic University
- I.M. Kitching
- i.m.kitching&apu.ac.uk
-13001
- Anuvio Technologies
- Jerry Cattell
- jerry.cattell&anuvio.com
-13002
- Augsburg College
- Brad Christ
- christ&augsburg.edu
-13003
- Banca I.M.I.
- Alessandro Pengue
- apengue&bancaimi.it
-13004
- beamNet
- Thomas Viehmann
- beam&beamnet.de
-13005
- Bitrage, Inc.
- Mark Halliday
- mhalliday&bitrage.com
-13006
- CAE-Technik Schmitt
- Nikolaus Schmitt
- n.schmitt&scaet.de
-13007
- California Regional Intranet, Inc.
- John W Davidson
- cto&cari.net
-13008
- CanPrint Communications Pty. Ltd.
- Matthew Horoschun
- mhoroschun&canprint.com.au
-13009
- Coma
- Fredrik Jonson
- fredrik&teamcoma.dhs.org
-13010
- Computer Business Sciences Ltd.
- Igor Altshul
- igor&talkie.co.il
-13011
- Consejo General del Notariado
- Fernando Fernandez Rey
- soporte&notariado.org
-13012
- Cramer Systems Limited
- James Pullen
- james.pullen&cramer.com
-13013
- Denisowski Consulting
- Paul Denisowski
- pdenisowski&nc.rr.com
-13014
- Dreamcode Software Inc.
- Eric Bridgwater
- eric&ericbridgwater.com
-13015
- Eastern Electronics Co., Ltd
- Ford Chen
- ford-chen&mail.eec.com.tw
-13016
- eMagic.com
- Chris Frey
- chris_frey&mgic.com
-13017
- e-Solutionist Inc.
- Joseph Trudeau
- jtrudea&esolutionist.net
-13018
- ETH Zurich, Department of Computer Science
- Peter Bircher
- peter.bircher&inf.ethz.ch
-13019
- ETSI
- Ultan Mulligan
- pex&etsi.fr
-13020
- Florida International University
- Maria Rosa Drake
- maria&fiu.edu
-13021
- Halifax Cetelem Credit Ltd
- Tom Bowman
- tom.bowman&halifaxcetelem.com
-13022
- handhelds.org
- Nick Duffek
- duffekn&handhelds.org
-13023
- Hub2b
- Arnaud Duchamp
- aduchamp&hub2b.com
-13024
- Imagistics International Inc.
- Lee Crystal
- Lee.Crystal&Imagistics.com
-13025
- Inferno Labs
- Geir Thomassen
- snmpadmin&in.fer.no
-13026
- IT Intergroup ApS
- Johnny Schultz
- js&itintergroup.com
-13027
- IXOS Software AG
- Markus Beck
- markus.beck&ixos.de
-13028
- Kuokoa Networks, Inc.
- Ravi Dara
- rdara&kuokoa.com
-13029
- Managed Service Partners International
- Robert Albertson
- ralbertson&mspintl.com
-13030
- Monitor724 Services Limited
- Harman Ng
- harmanng&monitor724.com
-13031
- neix,Inc. (formerly 'Digital Technologies Corporation')
- Takehiko Saito
- takehiko_saitou&neix.co.jp
-13032
- Reach Technologies
- Todd Cochran
- tcochran&reachapps.com
-13033
- shockunit productions
- Lou Hutchinson
- louhutchinson&yahoo.com
-13034
- SoftNet Systems, Inc.
- Samuel Du
- shdu&yahoo.com
-13035
- Sonangol
- Charles Crouch
- charles.crouch&netquotient.com
-13036
- Stradient, Inc.
- Chih-Ang Chen
- cachen&stradient.com
-13037
- Subnetworx Corporation
- Christopher R Straley
- cstraley&subnetworx.com
-13038
- TELE Greenland Inc.
- John Siegstad
- luk&tele.gl
-13039
- Tennessee Technological University
- Annette Littrell
- abl&tntech.edu
-13040
- The Horde Project
- Charles Hagenbuch
- chuck&horde.org
-13041
- Think Dynamics
- Gabriel Iszlai
- giszlai&thinkdynamics.com
-13042
- Trust Company of America
- Kyle Moore
- kmoore&trustamerica.com
-13043
- University of Wisconsin - River Falls
- Marlys Nelson
- marlys.a.nelson&uwrf.edu
-13044
- Unternehmensberatung Rahn
- Frank Rahn
- info&frank-rahn.de
-13045
- Uptime Devices, Inc.
- Jean-Paul Daemen
- jpd&uptimedevices.com
-13046
- VisionShare Inc
- Amy Coulter
- amy.coulter&visionshareinc.com
-13047
- Welliver Enterprises
- Bill Welliver
- hww3&riverweb.com
-13048
- Xorba, Inc.
- Richard Alvarez
- xorba&bellsouth.net
-13049
- Yacc Labs Ltd.
- Simon Standley
- si&yacc.com
-13050
- Ydilo Advanced Voice Solutions S.A.
- Juan Luis Garcia Rodriguez
- JuanLuis.Garcia&ydilo.com
-13051
- MetaSolv Software, Inc.
- Leslie Angus
- langus&metasolv.com
-13052
- Telefonbau Arthur Schwabe GmbH & Co KG
- Dieter Fischer
- dfischer&tas.de
-13053
- TIS System Service Inc.
- Tatsuo Taniguchi
- guchi&tis.co.jp
-13054
- Ram Corp
- Garret Halpin
- gar&dol.ie
-13055
- ShangHai JingLun Technologies CO.,LTD.
- RunBin Ma
- marb.sh&jinglun.com.cn
-13056
- Tai Ping Life Insurance Co, Ltd.
- Xue Zhong Sheng
- xuezs&tplic.com
-13057
- Hays DSIA France
- Gilles Lami
- gilles.lami&hays-dsia.fr
-13058
- National Hockey League
- Grant Nodine
- gnodine&nhl.com
-13059
- Ahold Supermercados
- Juan Antonio Ortega de Oliveira
- juan-antonio.ortega&ahold.es
-13060
- Airpath Wireless, Inc.
- Ed Whitesell
- edw&airpath.com
-13061
- AlphaC srl
- Alessandro Morelli
- alex&alphac.it
-13062
- Ascom
- Bruno Vigier
- bruno.vigier&ascom.fr
-13063
- Cambian
- Nicholas Ardlie
- nardlie&cambian.com
-13064
- Claymountain Solutions Oy
- Mauri Sahlberg
- Mauri.Sahlberg&claymountain.com
-13065
- Colomsat S.A.
- Moisés David Rincón D'Hoyos
- admin&colomsat.net.co
-13066
- Connaught Air Services
- Mike Barlow
- mike.barlow&cas-logistics.com
-13067
- CSH
- Hatano Hirokazu
- tcsh&tcsh.csh.sh
-13068
- CzajSOFT
- Przemyslaw Wegrzyn
- czajnik&czajsoft.pl
-13069
- Diveo do Brasil Telecom. LTDA
- Eduardo G. Coutinho
- ecoutinho&diveo.net.br
-13070
- Drutt Corporation
- Peter Larsson
- peter.larsson&drutt.com
-13071
- ESDS
- Vincent Negrier
- vnegrier&esds.com
-13072
- Gallery IP Telephony Ltd.
- David Rawet
- david.rawet&g-ipt.com
-13073
- gate5 AG
- Jan Ludewig
- nnreg&gate5.de
-13074
- Labyrinth Connections
- Matthew Bretherton
- mrb&labyrinth.net.au
-13075
- My Linux ISP
- Brian Walters
- brian&mylinuxisp.com
-13076
- MyCompany
- Ivo Peksens
- ivo.peksens&energo.lv
-13077
- NetWolves Technologies Corporation
- Steve Clark
- sclark&netwolves.com
-13078
- NSSoft, Inc
- Neeraj Jain
- nsjain2000&yahoo.com
-13079
- Persay LTD
- Michael Salmon
- michael.salmon&persay.com
-13080
- Persona Inc.
- Darren Richer
- dricher&personainc.ca
-13081
- Pretax Systems Oy ltd
- Mauri Sahlberg
- mauri.sahlberg&pretax.net
-13082
- Shanghai Sunrise Electronic Technology Co. Ltd.
- Lizhen
- lizhen&sunrise-sh.com
-13083
- Signal Technology Corporation
- Jeffrey Krukonis
- Jeffrey.Krukonis&sigtech.com
-13084
- Sonae Distribuição Brasil S.A.
- Cleber De Conto Pettinelli
- deconto&sonae.com.br
-13085
- StreamSec
- Henrick Hellstrom
- henrick&streamsec.se
-13086
- Yamagata Prefectural Government
- Yoshikazu Hayashi
- jouhou&hnc.pref.yamagata.jp
-13087
- Vaelit Group.
- Remi Philippe
- r.philippe&vaelit.com
-13088
- Adquira España
- Pablo M. Perez Ayala
- pmperez&adquira.com
-13089
- Aristotle University of Thessaloniki, Department of Physics
- Triantafillos Hantziantoniou
- t.hatziantoniou&physics.auth.gr
-13090
- Artifact Entertainment
- Chris Gray
- chrisg&artifact-entertainment.com
-13091
- Bethel College and Seminary
- Brent J. Nordquist
- ssl-admin&bethel.edu
-13092
- Cellcloud Technologies Pvt Ltd
- Chirag Parekh
- chirag&cellcloud.com
-13093
- College of Education
- Aaron D. Moss
- tri&coe.missouri.edu
-13094
- Contego Solutions LLC
- Jason Loving
- jloving&contego.net
-13095
- Dalhousie University
- Bruce Hudson
- bruce.hudson&dal.ca
-13096
- Dan of Steel
- Dan Campbell
- abuse&danofsteel.com
-13097
- Dascom Technology Co.Ltd
- Song Yantao
- songyt&mail.dascom.com.cn
-13098
- dpa AFX Wirtschaftsnachrichten GmbH
- Thomas Fahle
- technik&dpa-afx.de
-13099
- Drybridge Consulting
- Arthur Colman
- colman&drybridge.com
-13100
- fun communications GmbH
- Achim Stahlberger
- achim.stahlberger&fun.de
-13101
- GETEDES
- Chouki Aktouf
- chouki.aktouf&getedes.com
-13102
- Hauni Maschinenbau AG
- Sven Kleinecke
- sven.kleinecke&hauni.com
-13103
- Ilevo AB
- Lennart Johannesson
- lennart.johannesson&ilevo.com
-13104
- Infraservices Corporation
- Brad Hoyt
- brad&infraservicescorp.com
-13105
- Ingenium Technology Srl
- Pierangelo Repetti
- pierangelo.repetti&ingeniumtech.it
-13106
- JLF Network
- Javier Ledesma
- iana&jlf.ch
-13107
- JMatica Srl
- Mauro Bertapelle
- mauro.bertapelle&jmatica.com
-13108
- Linuxlab
- electuz
- el&linuxlab.co.kr
-13109
- Liontech Co., Ltd.
- Kwangsoo Lee
- kslee&liontech.co.kr
-13110
- Manageable Inc.
- Jeff Hassell
- jeff&b-manageable.com
-13111
- mcgu.net Consulting
- Stephen McGuinness
- mcgu&mcgu.net
-13112
- MDS Proteomics Inc.
- Ken Bantoft
- kbantoft&mdsp.com
-13113
- MindTribe
- Jerry Ryle
- jerry&mindtribe.com
-13114
- Nextra Investment Management SGR S.p.A.
- Delli Zuani Emiliano
- emilianodellizuani&nextrasgr.it
-13115
- Open Connections
- JetPin
- jetpin&tm.net.my
-13116
- P & J Systems Support Station
- JetPin
- jetpin&tm.net.my
-13117
- Plat'Home Co.,Ltd.
- Ichiro Kamiya
- kamiya&plathome.co.jp
-13118
- PointDx, Inc.
- David Ahn
- ahn&pointdx.com
-13119
- RAmEx Ars Medica, Inc.
- Ramesh Rampertab
- ramesh.rampertab&ramex.com
-13120
- RASilient Systems, Inc.
- Starry Chan
- sschan&rasilient.com
-13121
- Signatron Technology Corporation
- James Zagami
- zagami&signatron.com
-13122
- Software Research Associates, Inc.
- Noriyuki Soda
- inet-admin&sra.co.jp
-13123
- Starbak Communications Inc.
- Benjamin Pinkerton
- pinkerton&starbak.net
-13124
- Terra Marketing
- Reed Jackson
- reedjackson&mac.com
-13125
- TEYTEL, S.A.
- JUAN CARLOS FERNANDEZ GARACHANA
- joancarles&sumi.es
-13126
- themountain
- Johan Larsson
- lajo&ds.hj.se
-13127
- Thomas Jefferson University Hospital
- Adam Grochowski
- adam.grochowski&mail.tju.edu
-13128
- Universe Software
- Support
- support&universesoftware.co.uk
-13129
- UPMC
- Jean-Luc Munier
- ldapmaster&jussieu.fr
-13130
- Video Products Group
- Frank Kuo
- fkuo&vpginc.com
-13131
- de Passievruchten
- Erik P. Otto
- epo1968&hotmail.com
-13132
- Softing Europe S.A.
- Maurizio Delmestri
- maurizio.delmestri&softingeurope.com
-13133
- Michelin
- Nicolas Bertolami
- nicolas.bertolami&FR.michelin.com
-13134
- Founder Broadband Network Technology Co.,Ltd
- Xiao Bing
- xbing&founderbn.com
-13135
- SJTeK
- Moon Joon Ko
- mjko317&lycos.co.kr
-13136
- AlexS.DE Private Network
- Alexander Sarreiter
- alexs&alexs.de
-13137
- Biocare sarl
- Elie Feghali
- biocare&inco.com.lb
-13138
- Boiled Frog Trading Co-operative
- Matthew Emmett
- matt&emmett.ca
-13139
- caribNav Holdings, LLC
- Leighton Esdaille
- lfesdail&yahoo.com
-13140
- Cluster File Systems, Inc.
- Peter J. Braam
- braam&clusterfs.com
-13141
- FDK CO.LTD
- Kenji Hanakawa
- kenji_hanakawa&fdk.co.jp
-13142
- I M Consultancy Pty Ltd
- Ismael Matos
- imconsul&bigpond.net.au
-13143
- I&SI S.p.A.
- Fabrizio Rossi
- frossi&isisw.com
-13144
- Jakob Hatteland Computer AS
- Geir Harajuvet
- geir.harajuvet&hatteland.com
-13145
- Klik Systems Inc.
- Gersham Charles
- mail&kliksys.com
-13146
- Klomp
- Vincent Partington
- vinny&klomp.org
-13147
- Leadfly Technologies Co., Ltd.
- Albert Chen
- albertchen&feya.com.tw
-13148
- LeanLogistics
- Andy Bass
- andyb&leanlogistics.com
-13149
- Lee Printing, Inc.
- Chris Lee
- cmlee&leeprinting.com
-13150
- m&m consulting intl
- Kevin Mork
- kevin&pfs1.biz
-13151
- MB Consultants
- Mark Burton
- mark&the-burtons.org
-13152
- Octalis S.A.
- Jean-Francois Gobbers
- iana-oid&octalis.com
-13153
- RFSAW
- William C Bonner
- wbonner&rfsaw.com
-13154
- RPost, Inc.
- Jay Cai
- jcai&rpost.com
-13155
- Shimanek
- Joseph Shimanek
- joe&shimanek.net
-13156
- SwitchPoint Networks, Inc
- Kevin Crandall
- kcrandall&switchpointnetworks.com
-13157
- Tsinghua Unisplendour Bitway Networking Technology Co.,Ltd.
- Yong Chen
- cy&thunis.com
-13158
- Universitaet Muenster
- Michael Kamp
- nic&uni-muenster.de
-13159
- ZF Friedrichshafen AG
- Diana Hodapp
- diana.hodapp&zf.com
-13160
- Cerca.com S.r.l.
- Aldo Armiento
- aldo&cerca.com
-13161
- Quattro Software Limited
- Glenn Robinson
- glenn.robinson&quattroconsulting.co.uk
-13162
- Software Quality Engineering
- Mickey Epperson
- mepperson&sqe.com
-13163
- Ministry of Justice, Finland
- Martti Karjalainen
- martti.karjalainen&om.fi
-13164
- CyberSuperStore, Inc.
- Nico van Niekerk
- nico&cybersuperstore.com
-13165
- 9105 - 1938 Québec Inc.
- Durand Christophe
- christophe.durand&videotron.ca
-13166
- Acamar Systems
- Cheng-Lee Nee
- cnee&acamarsystems.com
-13167
- Oeko.neT Mueller & Brandt
- Toni Mueller
- support&oeko.net
-13168
- Aries e-Publishing
- Glenn Retsky
- tradebullion&netzero.net
-13169
- UNIPOWER, LLC. - IPS (formerly 'C&D Technologies, Inc.')
- Cliff Murphy
- cliff.murphy&unipowerco.com
-13170
- caresys GmbH
- Thomas Lohmueller
- kontakt&caresys.ch
-13171
- Cilys
- Francois Maheux
- francois.maheux&cilys.com
-13172
- Dark Side of the Moon Software
- Harold Abrker
- hvb&dsms.com
-13173
- DILAX Intelcom GmbH
- Denny Gebel
- iana&dilax.com
-13174
- Eglin Air Force Base
- Todd Tuckey
- tuckey&eglin.af.mil
-13175
- Eurofer
- De Leeuw Guy
- G.De_Leeuw&eurofer.be
-13176
- European Bank for Reconstruction and Development
- Martin Marshall
- marshalm&ebrd.com
-13177
- Firmaprofesional, SA
- Jorge Bustos
- jbustos&firmaprofesional.com
-13178
- Fremont Computer Corporation
- Queena Zhou
- queena&tyanchina.com
-13179
- Internet Information Group
- Graham Maltby
- admin&iig.com.au
-13180
- JR Software
- Janne Ruskeeniemi
- janne.ruskeeniemi&kolumbus.fi
-13181
- Junot Systems Inc.
- Pete Slater
- pslater&junotsystems.com
-13182
- kapsch TrafficCom AG
- Walter Pachlinger
- walter.pachlinger&kapsch.net
-13183
- Kevab Thebasestationcompany
- Tauno Ruuska
- tauno.ruuska&kevab.com
-13184
- Lanscape Netzwerkdienste GmbH
- Bastian Bluemel
- b.bluemel&lanscape.de
-13185
- Laqtib, Inc.
- Abdesalam Laqtib
- alaqtib&yahoo.com
-13186
- Light Computing Services Ltd
- Kenneth Duffill
- kd&lightcomputingservices.ltd.uk
-13187
- MDlink GmbH
- Marcel Thranhardt
- support&mdlink.de
-13188
- Miami University Libraries
- Andrew Farler
- drew&lib.muohio.edu
-13189
- MITAKE
- Steven Lee
- steven&mitake.com.tw
-13190
- Northrop/Grumman- INRI division,NTCSS Support System
- Franklin G. Richards
- frichards&logicon.com
-13191
- OneAccess
- Pascal Kesteloot
- pascal.kesteloot&oneaccess-net.com
-13192
- PCLinX snc
- Luigi Noris
- gigi&pclinx.it
-13193
- Portelco (Asia) Limited
- Nelson Sung
- nelson.sung&portelco.com
-13194
- PORTSITE GmbH
- Tim Reuter
- reuter&portsite.de
-13195
- Proditec
- Florent Laudren
- flaudren&proditec.fr
-13196
- SBS GmbH & Co OHG CWS 41
- Markus Preller
- markus.preller&cip.sbs.de
-13197
- Security Crossing
- Ken Graf
- ken&securityxing.com
-13198
- Signtrust
- Eduward van der Zee
- e.vanderzee&dpcom.de
-13199
- SiMind Inc
- Ki-Nam Choi
- kchoi&simind.com
-13200
- BPK Penabur
- Irwan Hadi
- irwanhadi&bpkpenabur.or.id
-13201
- TJH Internet SP
- TJ Hardman Jr
- thardman&earthops.org
-13202
- United States Advanced Network, Inc.
- Lawence K. Newfield
- lnewfield&usaninc.com
-13203
- University of Pretoria
- Trevor Nortje
- tnortje&it.up.ac.za
-13204
- VIA NET.WORKS Deutschland GmbH
- Markus Warg
- m.warg&vianetworks.de
-13205
- WebSwimmer LLC
- Jon Steer
- jsteer&webswimmer.net
-13206
- BSM Consulting
- Brian Moyers
- bsmoyers&hotmail.com
-13207
- NTNU
- Vidar Faltinsen
- faltin&itea.ntnu.no
-13208
- ARGSOFT
- Gabriel Kniznik
- gkniznik&argsoft.com
-13209
- Aptilo Networks AB
- Pontus Soderstrom
- pontus.soderstrom&aptilo.com
-13210
- Armstrong Group of Companies
- Ed Hassler II
- ehassler3&agoc.com
-13211
- AT4.NET INTERNET Y COMUNICACION
- Antonio Mari Vallbona
- hostmaster&at4.net
-13212
- bTrade, Inc.
- Kerri Apple
- kapple&btrade.com
-13213
- Centre Tecnologic de Manresa
- Josep Maria Pinyol Fontseca
- jm.pinyol&upc.es
-13214
- Comunitel Global S.A.
- Fernando Cela Diaz
- fcela&comunitel.es
-13215
- Cougaar
- Sebastien Rosset
- srosset&nai.com
-13216
- Digital Age Design
- Arnaud Geyskens
- arnaud.geyskens&dad.be
-13217
- FH Furtwangen
- Claus-Peter Rohner
- rohner&fh-furtwangen.de
-13218
- Flowring Technology
- J.J. Yang
- jjyang&flowring.com
-13219
- Gliwickie Stowarzyszenie Internautów
- Pawel Zmyslowski
- hocus&dronet.gliwice.pl
-13220
- Interconnected Generation
- Yves De Muyter
- yves&connected.be
-13221
- Kubota Systems Inc.
- Naoki Kawaharasaki
- naoaki&os.ksi.co.jp
-13222
- Millicom Peru
- Felipe Flores
- fflores&millicomperu.com.pe
-13223
- mwain Corp
- Private Mwain
- mwain&freenet.de
-13224
- Net Integration Technologies
- Patrick Patterson
- ppatters&net-itech.com
-13225
- Network Services Group, LLC
- Donald Knopf
- dk&networkservicesgrp.com
-13226
- Network Technology Solutions
- R.Vijayakumar
- ntsvijay&yahoo.co.in
-13227
- Officescape
- James Wood
- jwood&officescape.com
-13228
- Redline Telecommunications SA (pty) Ltd
- Wietz Joubert
- wjoubert&redlinesa.com
-13229
- Samad Pty Ltd
- Alexander Samad
- alex&samad.com.au
-13230
- San Diego Supercomputer Center
- Mason Katz
- mjk&sdsc.edu
-13231
- SchlumbergerSema Japan
- Kenji Nishi
- knishi&tokyo.sema.slb.com
-13232
- SpottedOwlRecipes.com
- Tyler Godfrey
- godfreyt&att.net
-13233
- Vimia GmbH
- Stephen Winnall
- stephen.winnall&vimia.com
-13234
- TELPRO Ltd.
- Bondar Igor
- postmaster&telpro.ru
-13235
- Teralink Communications
- Kang Kyung Wan
- kwkang&teralinkcom.co.kr
-13236
- The Brick Warehouse Corporation
- Darryl Plunkie
- dplunkie&thebrick.com
-13237
- US Process, Inc
- Rick Kitts
- rkitts&usprocess.com
-13238
- Vienna University of Economics and Business Administration
- Alexander Bergolth
- bergolth&wu-wien.ac.at
-13239
- Vodatel
- Darkol Budor
- budor&vodatel.hr
-13240
- VoIP Pty Ltd
- Eric Martin
- emartin&voip.com.au
-13241
- Wieland Gmeiner
- Wieland Gmeiner
- e8607062&stud4.tuwien.ac.at
-13242
- InfoCrypt
- Morgasov Ilya
- infocr&aha.ru
-13243
- Chip PC
- Ronit Pasternak
- ronit&chippc.com
-13244
- Duniya Technologies, Inc.
- Brian Ashburn
- bashburn&duniya.net
-13245
- HST
- Eunki Oh
- eunki75&hismartech.com
-13246
- Alliente, Inc.
- Todd Maeshiro
- todd.maeshiro&alliente.com
-13247
- City of Naantali
- IT Administration
- root&naantali.fi
-13248
- General Electric Power Management
- Maciej Goraj
- maciej.goraj&indsys.ge.com
-13249
- ICEM Technologies GmbH
- Sebastian Berthold
- sysadmin&icem.de
-13250
- INECO
- Hugo Calzada
- hugo.calzada&ineco.es
-13251
- Ingenix
- Timothy Peterson
- timothy.g.peterson&ingenix.com
-13252
- Kodansha Ltd.
- Akio Ito
- digital-admin&kodansha.co.jp
-13253
- ky-on
- Till Toenges
- tt&kyon.de
-13254
- London Stock Exchange
- Sean Foley
- sean.foley&accenture.com
-13255
- net mobile AG
- James Liang
- james.liang&net-m.de
-13256
- Rabid Badgers
- Dustin Tinklin
- dustin&tao.eolith.net
-13257
- Registradores de la Propiedad y Mercantil de España
- Emilio J. Martinez
- emilio&corpme.es
-13258
- Secretaria de Educación del Distrito (Bogota D.C Colombia)
- Miguel Angel Ruiz
- angel&ebstudio.com
-13259
- solution-x Software GmbH
- Florian G. Pflug
- fgp&solution-x.com
-13260
- Study Area Training Center
- Kenny Chen
- netman&study-area.net
-13261
- T-Systems ITS GmbH - DMS/PP
- Sven Schroeder
- sven.schroeder&t-systems.com
-13262
- ZbW - Zentrum fuer berufliche Weiterbildung
- Gerhard Thimm
- gthimm&zbw.ch
-13263
- Professional Systems Integration
- Chris Marschall
- marshal_chris&hotmail.com
-13264
- Atmel Germany GmbH
- Sandra Koehl
- sandra.koehl&hno.atmel.com
-13265
- Atofina
- Selim Baccar
- sbaccar&kernel-networks.fr
-13266
- C2 Creation
- Calvin Seto
- calvin&c2creation.com
-13267
- Urban Traffic Management and Control (UTMC) (formerly 'City of York Council')
- Ian Towner
- ian.towner&york.gov.uk
-13268
- Clark Hill PLC
- Seth L. Blumberg
- sethb&clarkhill.com
-13269
- Complete Network Solutions, Inc.
- Chuck Moss
- cmcnsiana&mossc.com
-13270
- Computing Center of Northeastern Univ.
- Network Center
- fuzw&mail.neu.edu.cn
-13271
- Current Technologies
- Darrell Way
- dway&currenttechnologies.com
-13272
- DaniloMassa
- Danilo Massa
- snmp&danilomassa.it
-13273
- Design IT Solutions Ltd
- Ariel Rodgers
- arielrodgers&yahoo.com
-13274
- Digital Media Lab Corporation
- Toshiaki Kasai
- tkasai&dmlcorp.co.jp
-13275
- Golden Square Post Production
- Dave Stinson
- dave&gspp.co.uk
-13276
- gsta
- Xu Guowang
- xugw&gsta.com
-13277
- IEEE 802.11
- Stuart J. Kerry
- stuart&ok-brit.com
-13278
- iNabling Technologies
- Rati Naren
- rati_naren&yahoo.com
-13279
- Intergate Browser Systems, Inc.
- Andre Cruz
- andre&intergate.com.ph
-13280
- Internet Express, Inc.
- Steve Langasek
- vorlon&netexpress.net
-13281
- IPSYN
- Bergamo Jean-Louis
- jlb&ipsyn.net
-13282
- Kaparel Corporation
- Jacques Houde
- jhoude&kaparel.com
-13283
- Laitilan Puhelinosuuskunta
- Ala-Olla Sami
- sami.ala-olla&laitilanpuhelin.fi
-13284
- London Stock Exchange
- Richard Lister
- richard.lister&accenture.com
-13285
- LYCOS FRANCE
- Philippe Gramoulle
- philippe.gramoulle&mmania.com
-13286
- MDM I&C
- Minsik Kim
- mskim&mdminc.net
-13287
- Membrain Technologies
- Robert Banz
- banz&membrain.com
-13288
- MIS@MHIT
- Tung_Kuang Wu
- tkwu&mis.mhit.edu.tw
-13289
- Neoscale Systems
- Sanjay Sawhney
- sanjay&neoscale.com
-13290
- nextSource, Inc.
- Doug Schmidt
- dschmidt&nextsource.com
-13291
- Ogangi Corporation
- Oscar Anzola
- oanzola&ogangi.com
-13292
- feel3 UG (haftungsbeschraenkt) (formerly 'oneShell Internet Services GmbH')
- Michael Maier
- info&feel3.de
-13293
- OTTO International (Hong Kong) Ltd.
- Albert Wong
- albert.wong&ottoasia.com
-13294
- ph03n1x.net - Development
- Matthew W. Yucha
- ph03n1x&ph03n1x.net
-13295
- Portugalmail
- Nuno Lopes
- nuno.lopes&portugalmail.pt
-13296
- SOFTINTEGRO
- Oleg Shulika
- oleg&softintegro.ru
-13297
- Soliton Associates Limited
- Mike Symes
- msy&soliton.com
-13298
- SYNER S.A.
- Daniel Rey
- daniel.rey&mcrd.ch
-13299
- Syntlogo GmbH
- Giovanni Baruzzi
- giovanni.baruzzi&syntlogo.de
-13300
- Syrén Software AB
- Tomas Carlsson
- tomas.carlsson&syrensoftware.se
-13301
- Teksouth Corporation
- Jay Winks
- jay.winks&teksouth.com
-13302
- The Advantage Media Group
- Gregory S Baker
- greg&dgmedia.net
-13303
- The Gillette Company
- Vincent Perrin
- vincent_perrin&gillette.com
-13304
- T-Systems Solutions for Research GmbH
- Marius-Julian Tamas
- Marius-Julian.Tamas&t-systems.com
-13305
- BFH Berne University of Applied Sciences (formerly 'Berne University of Applied Sciences')
- Philipp Plüss
- ldapmaster&bfh.ch
-13306
- University of Montana
- Roger Holtom
- unixadmin&selway.umt.edu
-13307
- V.R.A.M. Rt.
- Péter Bagári
- peter.bagari&vodafone.hu
-13308
- Városmajori Gimnázium
- Bence Bärnkopf
- barnkopf&debyl.vmg.sulinet.hu
-13309
- Visanti A/S
- Michael Kristensen
- miv&visanti.com
-13310
- wwwolf
- Tim Heap
- tim&wwwolf.co.uk
-13311
- Joys Online, Inc
- Jun Song
- jypsong&hotmail.com
-13312
- Factor-TS Ltd.
- Vladimir D Novikov
- novikov&factor-ts.ru
-13313
- Analog Devices, Inc
- Tuan Hoang
- tuan.hoang&analog.com
-13314
- Blank
- Bastian Blank
- iana&blank.eu.org
-13315
- BlueCat Networks
- Richard Hyatt
- rhyatt&bluecatnetworks.com
-13316
- Byteworks
- Michael Bischof
- mb&byteworks.ch
-13317
- Celite Systems Inc.
- Andrew Kiggins
- andrew.kiggins&celitesystems.com
-13318
- Clarity AG
- Juergen Froese
- juergen.froese&clarity-ag.net
-13319
- Dipartimento di Biochimica e Biotecnologie Mediche
- Vittorio Lucignano
- lucignano&dbbm.unina.it
-13320
- Griffin Development
- Thomas Griffin
- tom&thegrif.net
-13321
- Incard spa
- Vincenzo Palazzo
- vpalazzo&incard.it
-13322
- Peel Teaching Assistants Association
- Darryl Mabee
- admin&darrylmabee.com
-13323
- SoftLogic Solutions
- Kevin McFall
- kevinm&sls.co.nz
-13324
- Web-Addr LLC
- Ray Lance
- rlance&web-addr.com
-13325
- Associated Press
- Tom Eck
- teck&ap.org
-13326
- Bermai
- Paul Edwards
- pedwards&bermai.com
-13327
- htds
- Kristofer Hoelzer
- kh&htds.de
-13328
- Apoapsis Ltd
- Richard Fleming
- richard&apoapsis.com
-13329
- Area51
- Stephan Scheying
- stephan&scheying.de
-13330
- Ceyoniq Incorporated
- Ted Garrett
- t.garrett&ceyoniq.com
-13331
- CICAIA - Universita` di Modena e Reggio Emilia
- Cantaroni Roberta
- roberta.cantaroni&unimore.it
-13332
- Credit Union Central Alberta Limited
- Allen Reid
- areid&cucentral-ab.com
-13333
- ClearSky Technologies, Inc. (formerly 'Data On Air')
- Frank Danielson
- fdanielson&csky.com
-13334
- Hewett Inc.
- Jeff E. Hewett
- jhewett&gi.com
-13335
- Internet Information Services
- Dean Choate
- dch4806&fibernetcc.com
-13336
- IronHide Corp
- Vikram D. Gaitonde
- vikram&ironhide.com
-13337
- Kochan und Partner
- Thomas Paduch
- paduch&kochan.de
-13338
- Krocus Communications Oy
- Mikko Koponen
- mikko.koponen&helsinki.fi
-13339
- Lange Software GmbH
- Benno Lange
- blml&lvsw.de
-13340
- Lee Bradshaw
- Lee Bradshaw
- lee&bigpond.net.au
-13341
- Live Systems Integration
- Ted garrett
- ted.garrett&tedgarrett.com
-13342
- Unassigned
-
- 2002-10-07
-13343
- Networking Laboratory of DMIS, BUTE
- Csaba TÓTH
- toth&mit.bme.hu
-13344
- Ningbo Success Information Industry CO.,LTD.
- Ren ChaoHong
- cyber_cactus&21cn.com
-13345
- Pacificorp
- Scott Kuntz
- scott.kuntz&pacificorp.com
-13346
- Pace France (formerly 'Philips CE STB')
- Bernard Saby
- bernard.saby&pace.com
-13347
- Qbranch
- Marten Gustafson
- magu02&qbranch.se
-13348
- Randall Kunkee
- Randall Kunkee
- randy&randallkunkee.com
-13349
- RMP & Associates
- Richard Neish
- richardn&rmp.com.jm
-13350
- SDN Online, Inc.
- Jim Kimble
- jkimble&zkey.com
-13351
- Shanghai Mining Computer Software Co., Ltd.
- Zhang Yuan
- yuan.zhang&stockstar.com
-13352
- SNS Solutions
- Kyung-mo Kim
- doublekm&snssol.co.kr
-13353
- Sonofon
- Karsten Thygesen
- kay&sonofon.dk
-13354
- SpaceTime Co., Ltd.
- Eunjeong Go
- gowill&ako.net
-13355
- Stodge.org
- Salim Fadhley
- sal&stodge.org
-13356
- Summit Imaging, Inc.
- Darren K. Meyer
- dkmeyer&summit-imaging.com
-13357
- SunGard Bi-Tech
- James Bennett
- james.bennett&sungardbi-tech.com
-13358
- Tim O Callaghan
- Tim O Callaghan
- timo&dspsrv.com
-13359
- TM Ryder Insurance Agency, Inc.
- Ralph W. Maddigan III
- tmryder&msn.com
-13360
- Trinity Convergence
- Jonathan Beattie; Davy Brown
- dbrown&trinityconvergence.com;jbeattie&trinityconvergence.com
-13361
- Université François Rabelais
- Patrice Garnier
- patrice.garnier&univ-tours.fr
-13362
- University of Applied Sciences Stralsund
- Marcus Linke
- Marcus.Linke&fh-stralsund.de
-13363
- University of Southern California
- Shelley Henderson
- shelley&usc.edu
-13364
- ViaBridge
- Jim Greer
- jgreer&viabridge.com
-13365
- ViewBridge Technologies, Inc
- Joe Anderson
- janderson&viewbridge-tech.com
-13366
- W*H Interactive Ltd
- Grant Taylor
- gjt&whi.co.nz
-13367
- Whale Queens Org
- Hubert Quarantel-Colombani
- lurenzu&whale-queens.org
-13368
- Zand Elektronic
- Dan Sandberg
- dan.sandberg&medsci.uu.se
-13369
- Zeta Associates Incorporated
- Scott Zimmerman
- msz&zai.com
-13370
- 7+ Computer Networks Ltd.
- Peter Darvas
- darvas&plus7.hu
-13371
- Qualityware Informática Ltda.
- João Carlos Essenfelder Filho
- joe&qwnet.com.br
-13372
- UGC
- Jean-Marc Weeger
- jmweeger&ugc.fr
-13373
- Apt Minds, LLC
- Matt Midboe
- matt&aptminds.com
-13374
- Axitus
- Hywel Jones
- hywelbowdenjones&hotmail.com
-13375
- Brainzsquare Inc.
- Jeong Hwan Park
- jhpark&brainz.co.kr
-13376
- Carambole
- Fredrik Steen
- fredrik.steen&carambole.se
-13377
- Conceptis Technologies Inc
- Gord R. Lamb
- glamb&conceptis.com
-13378
- Concretio India Private Limited
- Farooque Khan
- farooquek&concretioindia.com
-13379
- Crysec GmbH
- Joerg Villiger
- j.villiger&netprotect.ch
-13380
- DOTSTAR Technology
- Stephen Livezey
- livezeysm&attbi.com
-13381
- DRP Data
- Dirk Prusok
- dprusok&copper.net
-13382
- INTEC International GmbH
- SNMP Admin
- snmp&intec-internatonal.com
-13383
- iNTELEGO
- Zoran Lorencic
- info&intelego.net
-13384
- Letins Corporation
- Keynes Chiang
- keynes&letins.com
-13385
- Mount Saint Mary College
- Arthur Emerson III
- ae3&msmc.edu
-13386
- Nagar
- Raj Vardhan Singh
- raj&shastry.com
-13387
- NeuroStar Solutions
- Arman Sharafshahi
- armand&neurostarsolutions.com
-13388
- Ticoon Technology Inc.
- David Aspinall
- davida&ticoon.com
-13389
- Wraith Computer Systems
- Benjamin C. Brodfuehrer
- jolt-iana&wraithsys.net
-13390
- AV Automotive Group
- Ken speich
- kenny&bmwofarlington.com
-13391
- Callaway Golf
- Paul M Vincent
- paulv&callawaygolf.com
-13392
- Cavena Image Products AB
- Michael Collins
- michael&cavena.se
-13393
- Cite-SI
- David Azoulay
- dazoulay&cite-si.com
-13394
- Colligo Networks
- Nick Sawadsky
- nsawadsky&colligo.com
-13395
- CommerceQuest, Inc.
- Edwin Fine
- efine&commercequest.com
-13396
- DANVILLE ASSOCIATES
- Diran Ajetunmobi
- danville&skannet.com
-13397
- DemandTec Inc.
- Mahesh Tyagarajan
- mahesh.tyagarajan&demandtec.com
-13398
- SicherByte GmbH Dr. Ralf Schwedler
- Dr. Ralf Schwedler
- schwedler&sicherbyte.com
-13399
- Dune Semiconductor
- Assaf Harel
- assafh&dunenetworks.com
-13400
- Emerson Network Power Co.,Ltd.
- Mao Fuhua
- maofuhua&avansys.com
-13401
- ETE Software
- Eric Evans
- etevans&etesoftware.com
-13402
- Exent Technologies Ltd.
- Ami Klein
- aklein&exent.com
-13403
- Foton-2000 Kft.
- Fekete Gyorgy
- fgyuri&foton2000.hu
-13404
- fSONA Communications
- Brian Dewan
- bdewan&fsona.com
-13405
- Inside Products
- Nalini Elkins
- nalini_elkins&inside-products.com
-13406
- Institute of Medical and Veterinary Science
- Warwick Smith
- warwick&imvs.sa.gov.au
-13407
- Link2it Corp.
- Dean Wallraff
- deanw&link2it.com
-13408
- Macrobyte Resources
- Seth Dillingham
- seth&macrobyte.net
-13409
- Mega System Technologies, Inc.
- Sameul Peng
- samuel&megatec.com.tw
-13410
- National Public Radio
- Susan Ator
- sator&npr.org
-13411
- ms Neumann-Elektronik GmbH
- Detlev Hartwich
- dhartwich&neumann-elektronik.com
-13412
- Ophios GmbH
- Thomas Meckel
- meckel&ophios.com
-13413
- Olabisi.com
- Adedayo Olabisi
- adedayo&olabisi.com
-13414
- Pairlink
- An Kee Min
- amin&pairlink.com
-13415
- Schlag&rahm GmbH
- Reto Hirt
- rhirt&schlagundrahm.ch
-13416
- SecurityMatrix, Inc.
- Dawn Hollingsworth
- dawn.hollingsworth&securitymatrix.com
-13417
- silicon broadcasts, Inc.
- Nirmaljit Singh
- nirmaljit&mailcity.com
-13418
- SKKU Information and comunication lab
- Ji-A Ha
- jaha&songgang.skku.ac.kr
-13419
- SRS SAKURA Internet Inc.
- Kunihiro Tanaka
- tanaka&sakura.ad.jp
-13420
- Surgitec Pte Ltd
- Stefan Lippstreu
- sl&surgitec.net
-13421
- Tango Telecom Limited
- Jack Downey
- jack.downey&tango.ie
-13422
- Uniscope
- Carlos Villegas
- cav&uniscope.co.jp
-13423
- universite de valenciennesJean-Luc Petit, Jean-Guy Avelin
- Jean-Luc.Petit&univ-valenciennes.fr,
- avelin&univ-valenciennes.fr
-13424
- UPC Netherlands
- Ronald van den Berg
- rovdberg&upc.nl
-13425
- Virtual Space Research
- Sean Donnellan
- postmaster&donnellan.de
-13426
- WZab Software
- Wojciech Zabolotny
- wzab&acn.waw.pl
-13427
- Artesyn Embedded Technologies (formerly 'Emerson Network Power ')
- Peter Langmann
- peter.langmann&artesyn.com
-13428
- JAPAN STORAGE BATTERY CO., Ltd.
- Yukio Tada
- yukio_tada&gs.nippondenchi.co.jp
-13429
- Queen Elizabeth School Old Students' Association
- Tsoi Heung Sang
- hstsoi&staff.ss.qesosa.edu.hk
-13430
- Shanghai Online Bussiness Co.,Ltd.
- Hong Gang
- hong.gang&onlinebusiness.com.cn
-13431
- A2E Ltd
- Andrew Dobbing
- adobbing&a2etech.com
-13432
- CampusEdge Apartments
- Michael Lewis
- mlewis&gobcg.com
-13433
- CodeZombie.com
- Peter Ford
- p_ford&mindspring.com
-13434
- DYSER S.R.L.
- Jose Fernandez
- dyserfer&caoba.entelnet.bo
-13435
- General Magic, Inc.
- Sandy Joe
- sandy_joe&genmagic.com
-13436
- iControls, Inc.
- Dae-Joo Kim
- amglove&icontrols.co.kr
-13437
- libits
- Robert L. Baer
- robert.baer&libits.com
-13438
- Logic Eastern(I) Pvt Ltd
- Gangadhar Sabat
- gsabat&logiceastern.com
-13439
- Melle Service GmbH
- Steffen Schuetz
- schuetz.steffen&melle.de
-13440
- Network Telephone
- Sunitha Elango
- sunitha.elango&networktelephone.net
-13441
- Norfolk Southern Corp
- Chip Morgan
- chip.morgan&nscorp.com
-13442
- OpenVES
- TS Vreeland
- tvreeland&taconic.net
-13443
- OZIS
- Marcel Settels
- marcel.settels&microbais.nl
-13444
- Robert Bird and Partners
- John Ward
- johnw&robertbird.com.au
-13445
- Silicon Cocoon Pty.Ltd.
- Basil C.P. Borun
- bborun&siliconc.com
-13446
- Singapore Cable Vision Limited
- Matt Ho
- matt&scv.com.sg
-13447
- The Training Mann
- Nigel Mann
- nigel-mann&partners-in-it.co.uk
-13448
- Transat Technologies, Inc.
- David K. Hui
- dhui&transat-tech.com
-13449
- trusdata.com
- Song Ling Han
- songling.han&trusdata.com
-13450
- TT&S Tecnologia e Sistemas Ltda.
- Newton Kiyotaka Miura
- nmiura&ttstelecom.com.br
-13451
- Network Information Center, univ.of buaa
- Wei Li
- liwlych&hotmail.com
-13452
- My Lan Guys
- Michael Klatsky
- michael&mylanguys.com
-13453
- Lanmix Technology Co.
- George Wu
- george&lanmix.com
-13454
- Hays Supply Chain
- Gilles Lami
- gilles.lami&hays-dsia.fr
-13455
- Deutsche Rentenversicherung Rechenzentrum Leipzig
- Norbert H. Kunth
- norbert.kunth&rzleipzig.de
-13456
- A.E.T. Europe B.V.
- Haaino Beljaars
- beljaars&aeteurope.nl
-13457
- ARM Holdings plc
- Nick Stevenson
- nick.stevenson&arm.com
-13458
- ATMedia GmbH
- Diethelm Schlegel
- schlegel&atmedia.de
-13459
- CAIS
- David A Hughes
- da.hughes&cais.com
-13460
- COMELIS
- Eric Bajus
- tech.dir&comelis.fr
-13461
- eBsuccess Solutions Inc.
- Chih Ming Liang
- cmliang&ebsuccess.com
-13462
- estei
- Vincent Demarquez
- admin&estei.fr
-13463
- Fort Wayne Community Schools
- Randall Wert
- randy.wert&fwcs.k12.in.us
-13464
- GCOM Technologies Co.,Ltd. (formerly 'GREENNET TECHNOLOGY CO.,LTD.')
- Deng Yu
- dengyu&szgcom.com
-13465
- Ingate Systems AB
- Per Cederqvist
- ceder&ingate.com
-13466
- Jabber, Inc.
- Joe Hildebrand
- jhildebrand&jabber.com
-13467
- Medasys
- Sebastien Bahloul
- sebastien.bahloul&medasys.org
-13468
- Montclair State University
- Brian Kelly
- brian.kelly&montclair.edu
-13469
- netLibrary, Inc.
- Alan Deger
- adeger&netlibrary.com
-13470
- SecureGUARD GmbH (formerly 'Otto Security & Software Technologie GmbH')
- Martin Rummerstorfer
- mrummerstorfer&secureguard.at
-13471
- PowerWAN, Inc
- Siddana Gouda
- sgouda&powerwan.com
-13472
- RTS Realtimes Systems (Deutschland) AG
- Jan Fiegert
- support.net&rtsgroup.net
-13473
- SafeWeb, Inc.
- Zach White
- zwhite&safeweb.com
-13474
- Sierra Systems Group Inc.
- Nicholas Drayer
- nicholasdrayer&sierrasystems.com
-13475
- SnapTrack, Inc.
- Rajeev Gautam
- plp&palmcorp.com
-13476
- Telemant Corp.
- KD Jung
- kdjung&tmn.co.kr
-13477
- Shanghai HAORUN Technologies Ltd.
- Zhaohua Meng
- mzh&eyou.com
-13478
- Clear2Talk Ltd
- John Deer
- john&encrypt.co.uk
-13479
- dstl
- John Price
- jdprice&dstl.gov.uk
-13480
- Anyware Technology, Inc.
- Ming Huang
- ming&anywareusa.com
-13481
- Appload Nordic AB
- Fredrik Wahlberg
- fredrik.wahlberg&appload.net
-13482
- ATL Telecom
- Martyn Wyatt
- martyn.wyatt&atltelecom.com
-13483
- Aviri
- Bruce Krysiak
- bruce&aviri.com
-13484
- Choice One Communications
- Gregory Rohman
- grohman&choiceonecom.com
-13485
- Comindico
- Matthew Waite
- matthew.waite&comindico.com.au
-13486
- Princeton University
- OIT Network Systems
- networking&princeton.edu
-13487
- CorVu Corporation
- Lloyd Breckenridge
- lloyd&corvu.com.au
-13488
- DNCP, LLC
- Michael Turner
- maturner&lucent.com
-13489
- Eastern Goldfields Senior High School
- Nicholas Robinson
- nickr&egshs.wa.edu.au
-13490
- Eplication
- Barak Azulay
- bazulay&eplication.com
-13491
- EuroMACC Ltd.
- Peter Szemesy
- p.szemesy&euromacc.hu
-13492
- First Data Merchant Services
- Ken Lisagar
- netadmin&firstdata.com
-13493
- Global Science & Technology, Inc.
- James Noles
- noles&gst.com
-13494
- Illinois Mathematics and Science Academy
- Steve Terrell
- spt&imsa.edu
-13495
- INAT GmbH
- Werner Krings
- werner.krings&inat.de
-13496
- Institute of Informatics, Slovak Academy of Sciences
- Miroslav Dobrucky
- dobrucky.ui&savba.sk
-13497
- IT3 Consultants
- Gratien D'haese
- gdha&it3.be
-13498
- KKE, Inc
- John Hermes
- hostmaster&kakde.com
-13499
- Metoda S.p.A.
- Giuseppe Callipo
- g.callipo&lineargruppo.it
-13500
- MPL AG
- Stefan Peter
- s.peter&mpl.ch
-13501
- Nexstar Financial Corporation
- Douglas E. Lecy
- dlecy&nexstar.com
-13502
- OneSquared
- Sam Sargeant
- sam&onesquared.net
-13503
- Orchestria Limited
- Andrew Stickler
- andrew.stickler&orchestria.com
-13504
- Polkomtel S.A.
- Adam Pienczykowski
- adam.pienczykowski&polkomtel.com.pl
-13505
- PROCOS AG
- Torsten Rendelmann
- torsten.rendelmann&procos.com
-13506
- Psionic Software, Inc.
- Craig Rowland
- crowland&psionic.com
-13507
- Radcom Software Romania
- Iulian Pavaloaia
- iulian.pavaloaia&radcom.ro
-13508
- SIGDCI
- David Tassel
- david.tassel&ville-lehavre.fr
-13509
- SKY Computers
- Jim Santos
- santos&skycomputers.com
-13510
- Somoma County Water Agency
- Doug VanLeuven
- doug&scwa.ca.gov
-13511
- SpaceIP
- Victor Klejman
- klejman&attglobal.net
-13512
- TeamWarrior Ltd
- Matt Smuts
- matt.smuts&cartezia.com
-13513
- The Technology Partner
- Massimo Fubini
- Massimo.Fubini&ttpcompany.com
-13514
- Unassigned
- (removed from database 11-11-02)
- ---none---
-13515
- Unitech Networks .Ltd
- David Wang
- davidw2unitechnetworks.com
-13516
- Viloke Oy
- Panu Hallfors
- panu.hallfors&viloke.fi
-13517
- Xi'an Jiaotong University
- Han Bo
- bohan&mail.xjtu.edu.cn
-13518
- ABN AMRO NL/CCC
- Hans van Hattum
- hans.van.hattum&nl.abnamro.com
-13519
- Amsoft Systems India Inc
- Aman Teja
- aman.teja&amsoft.net
-13520
- BizWebApps
- Jean-Pierre Harrison
- jp&selec.net
-13521
- Sysnight
- Jan Pedersen
- jan&sysnight.dk
-13522
- Account Synchronization Project
- Kervin Pierre
- kervin @blueprint-tech.com
-13523
- Australian Industry Group
- Phil Ware
- aigplw&yahoo.com
-13524
- Barham House Publishing, Inc.
- Elizabeth Barham
- soggytrousers&yahoo.com
-13525
- Blarg! Online Services, Inc.
- Marc Lewis
- marc&blarg.net
-13526
- Clickmarks Inc.
- Shailesh Garg
- shailesh&clickmarks.com
-13527
- Digitasaru
- Joseph Pingenot
- ianacontact&digitasaru.net
-13528
- DLESE
- Mike Wright
- mright&ucar.edu
-13529
- DreamLAN Network Consulting Ltd.
- Peter Kuo
- peter&dreamlan.com
-13530
- Fahnestock & Co.
- Chris McElhone
- cmcelhone&fahnestock.com
-13531
- Tryo Communication Systems S.A. (formerly 'Mier Comunicaciones, S.A.')
- Raimon Casals
- raimon.casals&tryocomm.com
-13532
- Pennant Systems
- Calvin Seto
- calvin_seto&hotmail.com
-13533
- Petr Zahradnik Computer Laboratory
- Petr Zahradnik
- clexpert&clexpert.cz
-13534
- Proteus Mobile, Inc
- Gerald Hewes
- it&proteusmobile.com
-13535
- IonPipe. Inc.
- Eric White
- eric.white&ionpipe.com
-13536
- Serome Technology, Inc.
- Tomy Jung
- tomy&serome.co.kr
-13537
- Shine Global
- Stephen Woolerton
- sdw&shineonline.co.nz
-13538
- VideoBureau, Inc.
- Anirban Chowdhuri
- achowdhuri&videobureau.com
-13539
- Voorhout Data Connection BV
- Wim Voorhout
- wim&vdcinfo.nl
-13540
- Shenzhen Keybridge Communications Co.,Ltd.
- Wang Buyun
- buyunmail&163.net
-13541
- DBV-Winterthur Versicherungen
- Stephan Horn
- stephan.horn&dbv-winterthur.de
-13542
- Datapac s.r.o.
- Roman Sladek
- sladek&datapac.sk
-13543
- 100 Percent IT Ltd
- David Blundell
- david.blundell&100percentit.com
-13544
- Acopia Networks, Inc.
- Mike Berger
- mberger&acopianet.com
-13545
- Adverb Software
- Allen Gates
- agates&adverb.com
-13546
- Alta A/S
- Stefan Barfred
- postmaster&alta.net
-13547
- Axiom Systems Limited
- David Gandy
- dgandy&axiomsystems.com
-13548
- BakBone Software Inc
- Richard Potter
- richard.potter&bakbone.co.uk
-13549
- Banque de France
- Jeremy Martinville
- jeremy.martinville&banque-france.fr
-13550
- Celstream Technologies
- Anirudh Mathuria
- anirudh.mathuria&celstream.com
-13551
- Cofunds LTD
- Simon Bennett
- simon.bennett&cofunds.co.uk
-13552
- CQG, Inc
- Andrew Hoying
- farmers&cqg.com
-13553
- Cyber Space Systems, Inc.
- Kalin Dikov
- dikov&c-inc.com
-13554
- DTN SpeedNet Services, LLC
- Rick Nordman
- rick&dtnspeed.net
-13555
- Enterprise Business Solutions
- Hugo Jimenez-Perez
- hjimenez&ebs.com.mx
-13556
- Filtronic plc
- Mike O'Carroll
- snmp&filtronic.com
-13557
- FLOORgraphics, Inc.
- Tobin J Edwards
- toby&floorgraphics.com
-13558
- Gary Reynolds
- Gary Reynolds
- gary&touch.asn.au
-13559
- Global Technology Associates, Inc.
- Paul Emerson
- paul&gta.com
-13560
- Grant County PUD #2
- Steve Wilson
- swilson&gcpud.org
-13561
- Griffith University
- Jolyon Suthers
- j.suthers&mailbox.gu.edu.au
-13562
- Information Sciences Institute, USC
- technical support
- action&isi.edu
-13563
- Integrated Software Technologies Inc.
- Jeff Douglass
- ist&att.net
-13564
- Logistik World GmbH
- Helmut Sailer
- hsailer&lwplus.de
-13565
- Lucent Technologies India Ltd
- Vishnu Vardhan M Reddy
- mvureddy&lucent.com
-13566
- Neolytica
- Ryan Dibble
- rdibble&neolytica.com
-13567
- UBIqube Solutions
- Yves Dumarest
- yves.dumarest&ubiqube.com
-13568
- Neustar, Inc.
- Peter C Davis
- peter.davis&neustar.biz
-13569
- OIZ
- Schuler Marc
- marc.schuler&oiz.stzh.ch
-13570
- Security Integration, Inc.
- George A. Boitano
- gboitano&securityintegration.com
-13571
- TESIS SYSware GmbH
- Rene Bauer
- ren&tesis.de
-13572
- TJEdwards
- Tobin J Edwards
- toby&tjedwards.com
-13573
- Tran Empire Industries
- Duc P Tran
- ducphuc&tranempire.com
-13574
- TVG Technologies Ltd.
- Shalom Crown
- shalom&realvision.co.il
-13575
- University of Windsor
- Robert Mavrinac
- mavrinac&uwindsor.ca
-13576
- WAGO Kontakttechnik GmbH
- Stefan Zudse
- stefan.zudse&wago.com
-13577
- Youjin
- Heechul Kim
- jijisa&airheechul.com
-13578
- apogee solutions
- Arun Mehra
- apogee&vsnl.com
-13579
- LMN Associates
- Lakshmanan Venkataraman
- lakshmanan_v&hotmail.com
-13580
- Europ Assistance France
- Frederic Williams
- frederic.williams&unilog.fr
-13581
- TAMAGAWA UNIV.
- Yuuichi Kamada
- support&tamagawa.ac.jp
-13582
- Nordija A/S
- Kristian Sørensen
- snmp&nordija.com
-13583
- UCBIRL
- David E. Miller
- david.miller&uchsc.edu
-13584
- Schering AG
- Sabine Demitrowitz
- sabine.demitrowitz&schering.de
-13585
- Mangalore Refinery And Petrochemicals Limited
- S.M. Khare
- smk&mrplindia.com
-13586
- Woodside Networks, Inc.
- Ashok Ranganath
- AshokRanganath&woodsidenet.com
-13587
- Universite de Franche-Comte
- Patrice Koch
- patrice.koch&univ-fcomte.fr
-13588
- Acegi Technology Pty Limited
- Ben Alex
- ben.alex&acegi.com.au
-13589
- Air Traffic Control & Business Systems GmbH
- Ulrich Bertsch
- ulrich.bertsch&ac-b.de
-13590
- Americredit Corp
- Jay Lentz
- jay.lentz&americredit.com
-13591
- BE Intelligent Systems
- Dan Crowson
- dcrowson&crowson.com
-13592
- Blunk Microsystems
- Tim Stoutamore
- stout&blunkmicro.com
-13593
- CommerceFlow, Inc.
- Inder Sabharwal
- inder&commerceflow.com
-13594
- Company Watch Limited
- Lance French
- lfrench&companywatch.net
-13595
- EMKA electronic AG
- Heiko Fischer
- h.fischer&emka-electronic.de
-13596
- Fachhochschule Bingen
- Klaus Lang
- lang&fh-bingen.de
-13597
- FEIS, University of Hertfordshire
- Matt Ross
- m.g.ross&herts.ac.uk
-13598
- General Dynamics Canada
- Allan Bray
- allan.bray&gdcanada.com
-13599
- Golden Triangle Online
- Martin Kokkelink
- iana&golden.net
-13600
- greenmokey.net
- Aaron Forster
- omadawn&sonic.net
-13601
- Hwa Chong Junior College
- Chen Shiyuan
- csy&hjc.edu.sg
-13602
- IS4-O
- Thomas Hefner
- thomas.hefner&is4-o.com
-13603
- KPNQwest Czechia s.r.o.
- Jakub Kopecky
- jakub.kopecky&kpnqwest.com
-13604
- Liberate Technologies
- Przemek Struminski
- przemeks&liberate.com
-13605
- Maverick workgroup
- Wei Bohua
- grayhare&public.nn.gx.cn
-13606
- Nicomaque
- Ronan Amicel
- technique&nicomaque.org
-13607
- Unassigned
- Returned 28 May 2004
- ---none---
-13608
- OpenHandHome Inc
- Michael Bell
- mikebell90&yahoo.com
-13609
- Palladium Consulting Inc.
- Sebastian Good
- sebastian&palladiumconsulting.com
-13610
- Q Solutions
- Martin Colley
- qsolutions&telkomsa.net
-13611
- RBC Data
- Rene Bechmann
- rene&rbcdata.com
-13612
- Schlund + Partner AG
- Rene Schumann
- rene&schlund.de
-13613
- StrataVerio
- James Davidson
- james&strataverio.com
-13614
- Tartu Kõrgem Kunstikool
- Lemmit Toomet
- lemmit&art.tartu.ee
-13615
- TH
- Thomas Hefner
- thomas.hefner&is4-o.com
-13616
- THALES SYSTEM INTEGRATION GmbH
- Ingmar Schmnidt
- ingmar.schmidt&de.thalesgroup.com
-13617
- Those Interactive Guys
- Scott Dukes
- scott&dukes.co.za
-13618
- Transim Technology Corp.
- Matthew Richardson
- mrichardson&transim.com
-13619
- UnderCoverWear Collection
- Craig O'Shannessy
- craig&ucw.com.au
-13620
- University of Wisconsin - Eau Claire
- Thomas Paine
- paineta&uwec.edu
-13621
- Wind Telecom
- Tomasz Kiraga
- t.kiraga&wind.pl
-13622
- Yaina
- Joerg Reuter
- jreuter&yaina.de
-13623
- point it GmbH
- Oliver Jaenicke
- contact&point-it.de
-13624
- EASTCOM-BUPT INFORMATION TECHNOLOGY CO.,LTD.
- Chengfei Yang
- yangchengfei&ebupt.com
-13625
- pohlcity.de
- Christian Pohl
- chris&pohlcity.de
-13626
- Rastel
- Dmitry Khazov
- market&rastel.ru
-13627
- Netfor, Inc.
- Jeff Seifert
- jseifert&netfor.com
-13628
- SerCon GmbH
- Carsten Horst
- carsten.horst&sercon.de
-13629
- A.G.Tech Network Service
- Akihiko Gotanda
- a-gota&agt.ne.jp
-13630
- AFX News Ltd
- Neil Fitzpatrick
- neil.fitzpatrick&afxnews.com
-13631
- Arax Communications
- Jilkin Yuri
- yuri&araxinfo.com
-13632
- ATOMiX DESiGN
- Henry Studenborg
- hjstukenborg&mac.com
-13633
- AVA Afzar Co.
- Anooshiravan Merat
- merata&avadom.com
-13634
- B&B Computersysteme GbR
- Dieter Brandmeier
- Dieter.Brandmeier&bbcomputer.de
-13635
- BSWS
- Henning Brauer
- hb-iana&bsws.de
-13636
- Corestreet, Ltd.
- David Engberg
- dave+iana&corestreet.com
-13637
- Cresent Software Products (PVT) Ltd.
- Faried Nawaz
- faried.nawaz&cressoft.com.pk
-13638
- Expert Systems IVR (Asia) Co., Ltd.
- Wilson Fan
- wilson.fan&esi-asia.com
-13639
- FibroTEC
- Stephan Fink
- stephan.fink&gmaare.migros.ch
-13640
- Jon Wood
- Joh Wood
- jon&jellybob.co.uk
-13641
- Kremlin Computing Limited
- Simon Devlin
- simon.devlin&kremlin-computing.com
-13642
- LITAS, s.r.o.
- Ludovit Launer
- litas&stonline.sk
-13643
- MIMOS Berhad
- Syahrul Sazli Shaharir
- sazli&mimos.my
-13644
- Netgate
- Jim Thompson
- jim&netgate.com
-13645
- OKB MEI
- Vladimir Moshkin
- moshkin&okbmei.msk.su
-13646
- Oninit Ltd
- Paul Watson
- paul&oninit.com
-13647
- Ostsee-Zeitung GmbH & Co. KG
- Torsten Eymann
- torsten.eymann&ostsee-zeitung.de
-13648
- Pointred Technologies, Inc
- Rick Balocca
- rbalocca&enhancelon.com
-13649
- Polizei Rheinland-Pfalz
- Horst Barth
- horst.barth&polizei.rlp.de
-13650
- Relativity
- Bouten,R.J.
- r.bouten&hccnet.nl
-13651
- RexKramer
- Sven Gerlach
- sven.gerlach&rexkramer.de
-13652
-
- G.E. de Jong
- g.e.dejong&student.utwente.nl
-13653
- Seoul Mobile Telecom, Inc.
- Seong Geun Lee
- leesg&seoultel.co.kr
-13654
- SHENZHEN XIFENG NETWORK TECHNOLOGIES CO.,LTD
- Li WeiMing
- limingstart&263.net
-13655
- SpaceMonster Gaming Network
- Bryn Moslow
- bryn&spacemonster.org
-13656
- SUNNYbell Technology
- sunnybelltech support
- proman2k&sunnybelltech.com
-13657
- Tango SA
- Vincent Piocel
- vpiocel&tele2.com
-13658
- Teddy's Network
- Junzo Sato
- jsato&fc.kuh.kumamoto-u.ac.jp
-13659
- The Worley Companies
- John McCawley
- jmccawley&worleyco.com
-13660
- U.S. Army CECOM
- William Duncan
- william.duncan&mail1.monmouth.army.mil
-13661
- The University of Manchester (formerly 'UMIST')
- Rachid Chalabi
- r.chalabi&manchester.ac.uk
-13662
- Universidad de Palermo
- Alejandro Popovsky
- apopov&palermo.edu.ar
-13663
- VRGroup.com
- Victor G. Bonilla
- victor&bonilla.com
-13664
- VSS KB, a.s.
- Martin Petak
- mpetak&vsskb.cz
-13665
- Webs-are.us
- Erin Fortenberry
- kahn&deadbbs.com
-13666
- Wolf Hill, s.r.o.
- Jiri Gubik
- vjisa&wolfhill.cz
-13667
- Wozzle Internet Solutions
- Zac DeLesDernier
- zac-iana&wozzle.com
-13668
- Yes Technology
- SangHo Kim
- mercury&yestech.co.kr
-13669
- Cubic Transportation Systems, Inc.
- Pradip Mistry
- pradip.mistry&cubic.com
-13670
- San Diego Data Processing Corporation
- Bill Reynolds
- breynolds&sddpc.org
-13671
- TechTV
- Dan Benson
- danbenson&techtvcorp.com
-13672
- General Dynamics - Decision Systems/Secure Products
- Phil Barker
- Phil.Barker&gd-decisionsystems.com
-13673
- Internet Czêstochowa
- Piotr Steclik
- master&icz.com.pl
-13674
- PESA Switching Systems, Inc.
- Doug Bailey
- dbailey&pesa.com
-13675
- bandwave internet
- Benjamin Polson
- bsp&bandwave.net
-13676
- French Data Network
- Sylvain Vallerot
- bureau&fdn.org
-13677
- Kb/TEL Telecomunicaciones SA de CV
- Fernando Bracho
- fbracho&kbtel.com
-13678
- acter AG
- Andreas Petralia
- petralia&acter.ch
-13679
- AltiGen Communications Inc.
- Hui Yang
- hyang&altigen.com
-13680
- Aviva Solutions Inc.
- Jean-Francois Levesque
- jeanl&avivasolutions.com
-13681
- CHILDLOCK solutions
- Marcus Huenerbein
- huenerbe&childlock.de
-13682
- Ecole des Mines de Nantes
- Laurent Menu-Kerforn
- laurent.menu-kerforn&emn.fr
-13683
- EFTechnologies, Inc.
- Joseph Schwarz
- is&eftech.net
-13684
- ELPROMA Elektronika
- Piotr Trojanek
- trojanek&elproma.com.pl
-13685
- Faculty of Mathematics and Computer Science, Nicholas Copernicus University of Torun
- Rafal Metkowski
- rafmet&mat.uni.torun.pl
-13686
- go win
- Wheib Bendjebbour
- wheib&gowin.fr
-13687
- Humboldt-Universitaet zu Berlin
- Burckhard Schmidt
- hostmaster&hu-berlin.de
-13688
- Icequake Networks
- Philip Thiem
- ptt&umr.edu
-13689
- In Town Consulting LLC
- Michael Mendelson
- mmendelson&intowndenver.com
-13690
- Madras Computer Vertriebsges.m.b.H.
- Daniel Himler
- d.himler&madras.at
-13691
- Maison d'en France
- Robert Silve
- robert&mtice.fr
-13692
- mediface
- Chul Hyun Park
- licence&mediface.com
-13693
- Mirage Networks, Inc
- Michael J. McDaniels
- mjmcdaniels&yahoo.com
-13694
- Nervus Systems Ltd
- Rob Macgregor
- rob.macgregor&dial.pipex.com
-13695
- Neurosphere Consulting
- Stephen J. Scheck
- steves619&yahoo.com
-13696
- Ohio Wesleyan University
- Anthony J. Smith
- ajsmith&owu.edu
-13697
- Paul Dlug
- Paul Dlug
- paul&nerdlabs.com
-13698
- RunCircle Ltd
- Roger McCalman
- snmp&runcircle.co.uk
-13699
- Sarvega Inc.
- Nagendra Kolluru
- nkolluru&sarvega.com
-13700
- Scale Eight
- Brian Lanier
- blanier&s8.com
-13701
- Sonic Software
- Matt Rothera
- mrothera&sonicsoftware.com
-13702
- Store Media Engineering
- Mark Williams
- mark&dimm.de
-13703
- SunDataCom pvt.Ltd.,
- Krishna L Baisetti
- krishna&sundatacomm.net
-13704
- TNO
- ing. F. (Frederik) Bonte
- f.bonte&telecom.tno.nl
-13705
- Universitas Indonesia
- Maman Sutarman
- maman&cs.ui.ac.id
-13706
- Volvo Event Management
- Darren Hampton
- Darren.Hampton&volvooceanrace.org
-13707
- wasiliana solutions
- Claude Nanjo
- nanjoc&wasilianasolutions.net
-13708
- AIC NETWORK
- Molines Jacques
- tech&aic.fr
-13709
- The Bank of New York
- Oryst N. Kunka
- okunka&bankofny.com
-13710
- LVM Versicherungen
- Stephan Terhorst
- s.terhorst&lvm.de
-13711
- Primus Telecommunications Australia Pty Ltd
- Tristan Goode
- netops&iprimus.com.au
-13712
- ARINC (Aeronautical Radio, Inc.) Roy L. Courtney
- rcourtne&arinc.com
- ---none---
-13713
- Gateweaver
- Chris Macwell
- cmaxwell&themanor.net
-13714
- Reea
- Adrian Tofan
- adi&reea.net
-13715
- Alescere
- Greg Fitzgerald
- gregfitzgerald&prodisinc.com
-13716
- Caja Madrid
- Javier Ripoll
- jripoll&cajamadrid.es
-13717
- Carreker Corporation
- Jerry Bowman
- jbowman&carreker.com
-13718
- CCITRIAD
- Denise Gimarc
- denise.gimarc&ccitriad.com
-13719
- CEGETEL SI
- Denis Liotard
- smpsbo&cegetel.fr
-13720
- CoreMedia AG
- Rolf Watermann
- rolf.watermann&coremedia.com
-13721
- Corning Cable Systems
- Derek Whitehurst
- derek_whitehurst&corning.com
-13722
- deot.net
- Oren Held
- oren&deot.net
-13723
- Division of BITL
- John Crowe
- j.crowe&murdoch.edu.au
-13724
- Erasmus University Rotterdam
- Paul Kranenburg
- kranenburg&few.eur.nl
-13725
- EuroNetics
- Tomas Fasth
- iana-contact&euronetics.com
-13726
- FH Bonn-Rhein-Sieg
- Steffen Kaiser
- skiana&mail.inf.fh-bonn-rhein-sieg.de
-13727
- Fundação CPqD - Centro de Pesquisa e Desenvolvimento em Telecomunicações
- Isidro Lopes da Silva Neto
- isidro&cpqd.com.br
-13728
- Fundació> Aplicació
- Ramon Fons
- fundacio&callusdigital.org
-13729
- Funktional Solutions Group
- Julian Coyne
- julianc&funktional.com.au
-13730
- Geobot, Inc
- Sharad Raisinghani
- sharad&geobot.com
-13731
- Huth Engineering Inc
- Edward Huth
- edhuth&huthengineering.com
-13732
- iDirect
- Brian Snyder
- bsnyder&idirect.net
-13733
- IMServ Europe Ltd
- Geoff Hamilton
- geoff.hamilton&imserv.invensys.com
-13734
- Institut fuer Theorie der Elektrotechnik, Universitaet Stuttgart
- Ralf Lederle
- ralf.lederle&ite.uni-stuttgart.de
-13735
- Integra5 Ltd.
- Nimrod Gal-Oz
- nimrod.gal-oz&integra5.com
-13736
- Manufacture des Montres Rolex SA
- Raphael Colliard
- raphael.colliard&rolex-bienne.ch
-13737
- Mark Wilcox & Associates
- Mark Wilcox
- mark&mjwilcox.com
-13738
- MindMatics AG
- Armin Barbalata
- armin.barbalata&mindmatics.de
-13739
- Pacesetter Electronics
- Dale Puls
- dpuls&pacesetterelectronics.com
-13740
- Popwire Technology AB
- Martin Akesson
- hostmaster&popwire.com
-13741
- Proinos, INC
- Thu R Kyaw
- tkyaw&proinos.com
-13742
- Raritan Computer, Inc.
- Allen Yang
- allen&raritan.com
-13743
- SGTE-IES
- Isaert Nicolas
- nicolas.isaert&sgte-ies.com
-13744
- SkyTel, Inc.
- Scott Humphries
- scott.humphries&wcom.com
-13745
- Plixer International, Inc. (formerly 'Somix Technologies, INC')
- Marc Bilodeau
- marc&plixer.com
-13746
- UNIversity of Detroit Mercy
- William F Allmendinger
- allmenwf&udmercy.edu
-13747
- Virtual Health Networks, Inc.
- Donald K Bruce
- drbruce&hc-vita.com
-13748
- Wizzbit
- Onno Gort
- postmaster&wizzbit.nl
-13749
- Madison Consulting Inc.
- Hung Pham
- hung.g.pham&verizon.net
-13750
- Juergen Weber Unternehmensberatung
- Juergen Weber
- juergen&weber-falkensee.de
-13751
- AGY Therapeutics Incorporated
- Scott C. Lohr
- slohr&agyinc.com
-13752
- Amarna Software Productions
- Michael Bell
- mikebell90&yahoo.com
-13753
- Ascent Computing Group Inc
- Varghese Samuel
- vsam&ascent-inc.com
-13754
- Banco Zaragozano
- Antonio Gascón Dominguez
- agascon&bancozaragozano.es
-13755
- Carleton College
- Richard L. Goerwitz III
- richard.goerwitz&carleton.edu
-13756
- C-LOG International
- Francisco Guiomar
- dns&c-log.com
-13757
- COXnet
- COXnet Engineers
- eng-disc&coxnews.com
-13758
- cr-team.de
- Thomas Bilger
- thomas.bilger&cr-team.de
-13759
- Examen, Inc
- Richard Hanschu
- richardh&examen.com
-13760
- Fourth House Security Inc
- Basit Hussain
- basit&fourthhousesecurity.com
-13761
- Glencore International AG
- Thomas Traxel
- thomas.traxel&ch.glencore.com
-13762
- Innovery
- Andrea Caccia
- andrea.caccia&innovery.net
-13763
- Johannes Passing Softwareentwicklung
- Johannes Passing
- jp&baernetwork.com
-13764
- Khodayss Systems Limited
- Manohar J
- ess&khodayss.net
-13765
- Life Time Fitness, Inc.
- Jud McKee
- jmckee&lifetimefitness.com
-13766
- LOEWE Opta GmbH
- Peter Wächtler
- pwaechtler&loewe-komp.de
-13767
- Metalogue Communications
- Mike McCallister
- iana&metalogue.com
-13768
- Movaris
- Malay Verma
- mverma&movaris.com
-13769
- mozilla.org
- Dan Mosedale
- ldap-schema&mozilla.org
-13770
- MTA Solutions
- Sergie Voropay
- sergeiv&mtasolutions.com
-13771
- Navic Systems, Inc., d/b/a Navic Networks, Inc.
- Michael Byrnes
- mbyrnes&navic.tv
-13772
- NPULSE Software, Inc.
- Stephen Earl
- searl&npulse.com
-13773
- NTELOS Inc.
- Landon McDowell
- smicontact&ntelos.net
-13774
- Onetta, Inc.
- Hao Li
- hli&onetta.com
-13775
- Pomona College
- Michael Dickerson
- mikey&cs.pomona.edu
-13776
- Potlatch Corporation
- Ed Moses
- ed.moses&potlatchcorp.com
-13777
- Rakuten Inc.
- Neal Sato
- ops-corp-pen&mail.rakuten.com
-13778
- Sociedade Diginet, LdaJacques
- ludovico Zacarias
- jack_ludov&ebonet.net
-13779
- SUMIX Corporation
- Artem Malyshev
- artem&sumix.com
-13780
- ubernul projekt
- Drew Miller
- xerox&ubernul.com
-13781
- Universite d'AUVERGNE
- Denis Pays
- denis.pays&u-clermont1.fr
-13782
- University of Dortmund, Department of Mathematics
- Christian Becker
- christian.becker&mathematik.uni-dortmund.de
-13783
- Viking Society of SA
- David de Groot
- david.degroot&viking.org.au
-13784
- WhidbeyNet
- Mike Denka
- mdenk&whidbey.net
-13785
- YH
- Min Zhu
- minzhu&nudt.edu.cn
-13786
- ZP system
- Won-Sik Kim
- wonsikkim&zpsys.com
-13787
- PageMail Inc.
- Scott Tulk
- scott&page.ca
-13788
- Dev-Labs Ltd.
- Daniel Marczisovszky
- marczi&dev-labs.com
-13789
- Innovations GmbH
- Markus Schaertel
- markus.schaertel&innovations.de
-13790
- U-King Communications Corp.
- Alex Huang
- frank&uking.com.tw
-13791
- Associação dos Estudantes
-da Faculdade de Ciências e Tecnologia da Universidade Nova de Lisboa
- Hugo Monteiro
- adm&ae.fct.unl.pt
-13792
- Active Telecom
- Marc Alzina
- malzina&net-tone.com
-13793
- Acumen Sciences, LLC.
- Brett Eisenberg
- beisenberg&acumen-sciences.com
-13794
- Beijing Educational Information Network
- Kevin Chen
- kevin&bjedu.com.cn
-13795
- Blue Edge Bulgaria
- Dimiter Dimitrov
- dimiter&blue-edge.bg
-13796
- Caliari Research S.p.A. Nicola
- Babieri
- customer.service&caliari.it
-13797
- CIRAD
- Bertrand Pitollat
- bertrand.pitollat&cirad.fr
-13798
- Globenet
- Benjamin Sonntag
- benjamin&globenet.org
-13799
- Internet 78
- Michael Suszko Jr.
- msuszko&fast.net
-13800
- IS Services
- Paul Reilly
- paul.reilly&tcd.ie
-13801
- IUFM des Pays de la Loire
- Aït Omar Saâd
- saad.aitomar&paysdelaloire.iufm.fr
-13802
- Mundee Internet Services
- Shane Mundee
- shanemundee&hotmail.com
-13803
- Navajo Law Enforcement Training Academy
- George John
- gj86025&aol.com
-13804
- Pontifical College Josephinum
- Ming Li
- mli&pcj.edu
-13805
- Southland Christian Church
- Vic Mollett
- vmollett&southlandchristian.org
-13806
- SysOpen Plc
- Jarkko Lietolahti
- jarkko.lietolahti&sysopen.fi
-13807
- Tpack
- Søren Heilmann
- sth&tpack.net
-13808
- ubernul projekt
- Drew Miller
- xerox&ubernul.com
-13809
- Université Jean Monnet Saint Etienne
- Hervé GILIBERT
- criter&univ-st-etienne.fr
-13810
- University of Alaska
- David Bantz
- david.bantz&alaska.edu
-13811
- Israel Discount Bank
- Michael Koenigstein
- xmk&il.ibm.com
-13812
- SmartPrice SA
- Marco Aurelio Vilaca
- operacao&smartprice.com.br
-13813
- Evalesco Systems ApS
- Jakob Oestergaard
- joe&evalesco.com
-13814
- alfa Media Partner GmbH
- Tobias Haas
- tobias.haas&linopress.com
-13815
- Angel Iglesias, S.A.
- Imanol Silva
- doi&ikusi.es
-13816
- AppSense Technologies
- Kevin Stone
- kevin.stone&appsense.com
-13817
- Auswärtiges Amt
- Josef Mecklenburg
- josef.mecklenburg&auswaertiges-amt.de
-13818
- BHI
- Phil Anderson
- pandersen&hotmail.com
-13819
- BTI Communications Co.
- Jarrod Kinsley
- jkinsley&bticc.net
-13820
- CESKY TELECOM, a.s.
- Tomas Sekera
- tomas.sekera&ct.cz
-13821
- CNI/Prairienet
- Brynnen Owen
- owen&uiuc.edu
-13822
- Command Software Systems, Inc
- Helmuth E. Freericks
- hfreericks&commandsoftware.com
-13823
- Comtarsia IT Services
- Stefan Pfingstner
- stefan.pfingstner&comtarsia.com
-13824
- Consus Ltd
- Rob Lyle
- rob&consus.co.uk
-13825
- Crisp Hughes Evans LLP
- John B Bowles
- jbowles&che-llp.com
-13826
- Dept of Veterans Affairs
- Leslie L Henderson Jr
- leslie.henderson&mail.va.gov
-13827
- EndRun Technologies LLC
- Bruce M. Penrod
- bmpenrod&endruntechnologies.com
-13828
- ETM International / Austria
- Wolfgang Frühwirth
- wfrueh&etm.at
-13829
- Flecha de Lima Associados
- Paulo Tarso Flecha de Lima
- ptarso&FlechadeLima.com
-13830
- GED-SOFTWARE
- Mathieu Chappuis
- mathieu.chappuis&ged-software.com
-13831
- Geo-Marine, Inc.
- Randall Mundee
- smundee&geo-marine.com
-13832
- The Go Daddy Group, Inc.
- Network Operations Center
- noc&godaddy.com
-13833
- Gobierno de Canarias
- Octavio Ascanio
- oascsua&gobiernodecanarias.org
-13834
- iMach, Ltd.
- Forrest W. Christian
- forrestc&imach.com
-13835
- inet-logistics GmbH
- Reinhold Gander
- tik&inet-logistics.com
-13836
- Information and Logistics Consultancy
- Eddie Victor
- eddiev&ilc.co.za
-13837
- IntroTec
- Peter Salvisberg
- peter.salvisberg&introtec.ch
-13838
- KadeL Data Servis s.r.o.
- Jirka Svetlik
- svetlik&kadel.cz
-13839
- MarkitServFX (formerly 'Logicscope Realisations Ltd')
- Lance White
- lance.white&markitserv.com
-13840
- Media Driver, LLC
- Matthew Pavlovich
- matt&mediadriver.com
-13841
- MetiLinx
- Larry Ketchersid
- lketchersid&metilinx.com
-13842
- Moser-Baer AG
- Andreas Scheidegger
- as.mb&mobatime.com
-13843
- Ned Davis Research Group
- Brett Lee
- root&ndr.com
-13844
- North East Worcestershire College
- Chris Hills
- chills&ne-worcs.ac.uk
-13845
- Ohio Northern University
- Robert Beer
- r-beer&onu.edu
-13846
- PatientKeeper, Inc.
- Craig Fields
- iana-contact&patientkeeper.com
-13847
- Pearco Services
- Benjamin Collins
- bcollins&granderiver.net
-13848
- rnix.com
- Robert C. Nix
- org.iana&rnix.com
-13849
- Sepro Telecom
- John Healy
- john.healy&seprobilling.com
-13850
- Static
- Soyoung Ju
- lorien&static.co.kr
-13851
- Swisscom IT SErvices AG
- Johannes Schneider
- johannes.schneider1&swisscom.com
-13852
- TopoLogica
- Eduardo Moscoso Rubino
- moscoso&moscoso.org
-13853
- Tularik
- Aaron Forster
- ianainfo&tularik.com
-13854
- Universitaet Mannheim, Rechenzentrum
- Heide Hiltscher
- heide.hiltscher&rz.uni-mannheim.de
-13855
- Universitaet Oldenburg
- Juergen Weiss
- juergen.weiss&uni-oldenburg.de
-13856
- University of Michigan Health System
- David Hasselbach
- davidch&med.umich.edu
-13857
- Ursys Pty Ltd
- Patrick Duff
- patrick.duff&ursys.com.au
-13858
- Eltek Valere Inc. (formerly 'Valere Power Inc')
- Bill Dempsey
- bill.dempsey&eltekvalere.com
-13859
- Voxpilot
- Dave Burke
- david.burke&voxpilot.com
-13860
- WASKO
- Andrzej Bankowski
- a.bankowski&wasko.pl
-13861
- Wolf IT Concepts
- Felix Wolf
- wolf&it-concepts.info
-13862
- XTec, Incorporated
- Alberto Martin
- amartin&xtec.com
-13863
- Airwolf Systems, Inc.
- Frederick Nwokobia
- nwokobia&msn.com
-13864
- MAMINOS, Inc.
- Steve Jacks
- sjacks&maminos.com
-13865
- Université Charles de Gaulle - Lille 3
- Arnaud Jayet
- jayet&univ-lille3.fr
-13866
- ACE TIMING
- Charlie LE HOANGAN
- charlie.lehoangan&acetiming.com
-13867
- Adfinis SyGroup AG
- Daniel Aubry
- info&adfinis-sygroup.ch
-13868
- Bahrain Credit
- Adel Darwish
- darwish&bahraincredit.com.bh
-13869
- Blum Capital Partners, LP
- Johan Martin
- jmartin&blumcapital.com
-13870
- Corporate Oxygen
- Rakesh Aggarwal
- raggarwal&coxygen.com
-13871
- Falcon Software NV
- Tijl Dullers
- tijl.dullers&anubex.com
-13872
- Federal University of Sao Paulo
- Network Group
- rede&dis.epm.br
-13873
- FMC
- Francois Monnet
- noc&eurofmc.com
-13874
- goepp.net
- Daniel Goepp
- iana&goepp.com
-13875
- Interact
- David Riccitelli
- david.riccitelli&interact.it
-13876
- Ionic Productions LLC
- Brent A. Thompson
- bat&ionicproductions.com
-13877
- Kanda Tsushin Kogyo Co., Ltd.
- Yoshio Nagasaki
- nagasaki_y&at.kanda.co.jp
-13878
- Kariboo Technologies SA
- Maurice Galland
- maurice.galland&kariboo.com
-13879
- Natural Soft S.A.
- Jaume Juni Estany
- jaume.juni&natural-soft.es
-13880
- ADS Networks Pvt. Ltd
- K. Srinivas Aithal
- ksaithal&ads-networks.com
-13881
- neobee.net
- Viktor Varga
- vile&neobee.net
-13882
- Netilla Networks
- Paul Douglas
- paul_douglas&netilla.com
-13883
- New Morning Windows
- Mike Forsman
- mikef&newmorningwindows.com
-13884
- Pepco AS
- John Berntsen
- john&pepco.no
-13885
- Polycom, Inc.
- Matt Parker
- matt.parker&polycom.com
-13886
- Prosodic Communications Inc.
- Ian A. Marsman
- imarsman&webstove.com
-13887
- Red Roby Software, Inc.
- Robert DeLuca
- redroby&tampabay.rr.com
-13888
- South Texas Lighthouse for the Blind
- John Francis Lee
- johnl&sotxlighthouse.org
-13889
- Spriral Designs Inc.
- Dan Pringle
- digitals&netone.com
-13890
- Teltier Technologies Inc.
- Murali Swaminathan
- murali&teltier.com
-13891
- The Advantage Group
- Dave Cole
- davec&taglim.com
-13892
- University of New Hampshire
- William F. Costa
- Bill.Costa&unh.edu
-13893
- International Truck and Engine Corporation
- Regina Goeing or Paul Munsen
- regina.goeing&nav-international.com, paul.munsen&nav-international.com
-13894
- LGNsys
- Sora Son
- sora&lgnsys.com
-13895
- LaGrange School District 102
- Al Kirkus
- al&dist102.k12.il.us
-13896
- Atos Origin CMS / TSP
- Bernard Bosse
- bernard.bosse&atosorigin.com
-13897
- Advanced Technologies Lab
- Josef D. Allen
- josallen&cs.fsu.edu
-13898
- Alexander Horsch und Thomas Balbach IT Solutions
- Alexander Horsch
- label&flying-stone.de
-13899
- Anka Systems, Inc
- Young Kim
- ykim&ankasystems.com
-13900
- Blue Gargoyle Consulting, LLC
- Marko A. Jennings
- marko&bluegargoyle.com
-13901
- Broadwave Inc.
- Ken Roser
- ken_roser&fastmail.fm
-13902
- Business Internet Trends
- Sabri Berisha
- sabri&bit.nl
-13903
- CAMH PET Centre
- Sylvain Houle
- shoule&camhpet.ca
-13904
- Caymas Systems
- Ashwin Baskaran
- baskaran&caymas.com
-13905
- Cemagref
- Pierre Farissier
- pierre.farissier&cemagref.fr
-13906
- Chantry Networks Inc.
- Mark Leonard
- leonam&chantrynetworks.com
-13907
- Compera
- Alysson Prado
- alysson.prado&compera.com.br
-13908
- Croatian Physical Society, Student Section
- Mario Juric
- majuric&fizika.org
-13909
- CTTC - Centre Tecnològic de Telecomunicacions de Catalunya
- Carolina Pinart Gilberga
- carolina.pinart&cttc.es
-13910
- Das Büro am Draht
- Fabian Hahn
- fh&dasburo.com
-13911
- Epsilon d.o.o.
- Alem Orlic
- alem&epsilon.hr
-13912
- Everest Connections
- Ryan Pool
- ryan.pool&everestgt.com
-13913
- EVoto Team
- Sergio Avila Jiménez
- sergio&evoto.org
-13914
- FreakySoft
- Richard Perfect
- richard.perfect&freakysoft.co.nz
-13915
- Harry Rüter Software Solutions
- Harry Rüter
- h.rueter&gmx.net
-13916
- Heimat di Andrea Rota
- Andrea Rota
- support&heimat.it
-13917
- Hostcentric
- Fred Im
- fred.im&hostcentric.com
-13918
- Inkasbank
- Dmitry Chernyak
- cdl&inkasbank.ru
-13919
- Instinct Internet Solutions
- Peter Lowe
- pgl&instinct.org
-13920
- Magic Hosting
- Gerard Grommek
- gery&rewt.de
-13921
- NEBS
- Frank Cini
- hostmaster&nebs.com
-13922
- nologin
- Chad Thunberg
- chadth&nologin.org
-13923
- Peter Verhas
- Peter Verhas
- peter&verhas.com
-13924
- Powell's Bookstores
- Paul Buder
- paulb&burnside.powells.com
-13925
- Real Time Productions
- Peter Lowe
- peter&prague.tv
-13926
- Road Tech Compter Systems Ltd
- Mike Rattee
- mikey&roadrunner.uk.com
-13927
- SCCNET SOHO Consulting
- Mario Oberli
- mario.oberli&sccnet.ch
-13928
- TC Communications
- Ben Huai
- bh&tccomm.com
-13929
- Teragen Pty Ltd
- Sebastian Filzek
- sebastian&teragen.com.au
-13930
- The Aquarius Network
- Aaron Angel
- aangel&myrealbox.com
-13931
- uberLAN Technologies
- Duane Powers
- duane&uberlan.net
-13932
- Vogon.Net
- Philip Peake
- philip&vogon.net
-13933
- Alstom Transport
- Paul Steane
- paul.steane&transport.alstom.com
-13934
- Micchi
- Michael Doyle
- michael.doyle&micchi.co.uk
-13935
- 100comm
- Feng Wang
- wangf&100comm.com
-13936
- AEGIS Mortgage Corp
- Ken Cumbus
- ken.cumbus&aegismtg.com
-13937
- Art Global Limited
- Xinjun Wu
- michael&aglworld.com
-13938
- Ashton Raggatt McDougall
- Cameron Maxwell
- c.maxwell&a-r-m.com.au
-13939
- automatX
- Hannes Fremann
- hg&automatx.de
-13940
- COE Ltd
- Sam Kingsbury
- samk&coe.co.uk
-13941
- Communicator Inc.
- Dmitriy Fedorov
- dfed&cihub.com
-13942
- Candera Inc
- Lai-King Mau
- mau&candera.com
-13943
- Datanet
- Andrew Jeanmonod
- aj&data.net.uk
-13944
- Denali SA
- Pascal Platteeuw
- pascal&denali.be
-13945
- Deutsche Forschungsgemeinschaft
- Dominik Sack
- dominik.sack&dfg.de
-13946
- Educational Systems Ltd
- Rob Lyle
- rob&garf.co.uk
-13947
- EEMA
- Jane Hebson
- jane.hebson&eema.org
-13948
- Exostar LLC
- Jeff Nigriny
- security&exostar.com
-13949
- FRANK-EDV-SERVICE Gesellschaft m.b.H.
- Alfred Frank
- office&frankedv.at
-13950
- Galileo, Inc.
- Norihito Shinzan
- shinzan&galileo.co.jp
-13951
- Gentek Marketing Inc.
- Jeffrey Freedman
- jfreedman&gentek.com
-13952
- GLOBAL SUN TECHNOLOGY
- Peter Lin
- peterlin&globalsuntech.com
-13953
- HelioGraph Limited
- Graham Britten
- graham.britten&heliograph-global.com
-13954
- IT Guardian Ltd
- Sang Young
- wsyoung&it-guardian.net
-13955
- JPConsulting
- J. Paul Connolly
- jpaulconnolly&yahoo.com
-13956
- KATCH Network Inc
- Hiroyuki Ohmiya
- admin&katch.co.jp
-13957
- Liquidsite, Inc.
- Victor Owuor
- owuor&zelotech.com
-13958
- M.N. Ramos Ferreira, Electricidade e Mecânica, Lda
- Joao Ferreira
- score&netcabo.pt
-13959
- MLA Power Systems
- Neill Truter
- neill&mlapower.co.za
-13960
- NESTAR
- You-Er Tai
- u2tai&nestar.com.tw
-13961
- NLIP - Dutch ISP Association
- Pim van Stam
- pim.van.stam&nlip.nl
-13962
- QoS Labs
- Victor Tapia
- vtapia&qoslabs.com
-13963
- R.V.R. Elettronica SpA
- Alessandro Franceschi
- afranceschi&rvr.it
-13964
- SWCS Chan Pak Sha School
- Anderson Tung
- noc-admin&cpss.edu.hk
-13965
- tpgpost
- Ronald van Aalst
- r.vanaalst&tpgpost.nl
-13966
- University of Bath
- Computing Services
- support&bath.ac.uk
-13967
- Vaporware
- Oliver Wagner
- owagner&vapor.com
-13968
- Verlag Fur Neue Medien
- Daniel Chabrol
- chabrol&vfnm.de
-13969
- VOXSIS Informática
- Guido Malato
- guido&voxsis.com.br
-13970
- Aerostrong Science & Technology Co., Ltd.
- Li Jingyu
- ljingyu&public.hh.nm.cn
-13971
- ChinaBizone Infomation Technology Co., Ltd.
- Chung Zhong Zhang
- zcz&chinabizone.com
-13972
- Varga Limited
- Gary Varga
- iana&vargaltd.freeserve.co.uk
-13973
- investir publications
- Sebastien Pacreau
- spacreau&investir.fr
-13974
- Epigenomics AG
- Robert Sander
- hostmaster&epigenomics.net
-13975
- Naval Global Directory Service
- F. Peter Z. Cruikshank
- peter.cruikshank&navy.mil
-13976
- Interaktivna Consulting
- V. Donchenko
- info&interaktivna.com
-13977
- SHAYNE ENTERPRISES
- Jeff Metzger
- shayne_ent&msn.com
-13978
- GuardedNet, Inc.
- Kevin J. Schmidt
- snmp&guarded.net
-13979
- Mintact Software Inc (formerly 'CompuCS Inc.')
- Min Chen
- min.chen&mintact.com
-13980
- Platinum Web Pages
- Ron Pfingsten
- ron&platinumwebpages.com
-13981
- INGCHEM
- Peter Luby
- lubyp&pobox.sk
-13982
- FibreSpeed Ltd.
- Michael T. Babcock
- mbabcock-snmp&fibrespeed.net
-13983
- WWR Development, Inc.
- David Witten
- wittend&wwrinc.com
-13984
- Cybrick Information Systems
- Richard Clark
- richardc&cybrick.com
-13985
- TAE KWANG INDUSTRIAL CO., Ltd.
- Yong-Pil Huh
- yphuh&daintelecom.com
-13986
- Larry Drummond,Consulting Engineer
- Larry Drummund
- spud&nwcerts.com
-13987
- C. Plath GmbH
- Michael Gaudlitz
- michael.gaudlitz&plath.de
-13988
- tele-akademie der Fachhochschule Furtwangen
- Joachim Saleyka
- sysadmin&tele-ak.fh-furtwangen.de
-13989
- Markus Heiden SAP / EC Consulting
- Markus Heiden
- iana&heiden-online.com
-13990
- Coloma Community Schools
- Justin Noack
- noackje&yahoo.com
-13991
- Accellence Technologies GmbH
- Jochen Noelle
- jochen.noelle&accellence.de
-13992
- M-Net Sys
- Miryawan
- miryawan&telkom.net
-13993
- ITWorx
- Tarek Nabhan
- standards&itworx.com
-13994
- STN ATLAS Elektronik GmbH
- Holger Behm
- behm&stn-atlas.de
-13995
- Amperion, Incorporated
- Jay Brothwell
- jay&amperion.com
-13996
- kbox
- Cheolman Park
- ddaul&hanmail.net
-13997
- Invisible Industries
- Wade Mealing
- wmealin1&bigpond.net
-13998
- Conceptual MindWorks, Inc.
- Cary Brown
- cary&teamcmi.com
-13999
- ItsNotA.com
- Thomas MacNeil
- thomasmacneil&yahoo.com
-14000
- Michail Kamprianis
- Michail Kamprianis
- michalis.kamprianis&gmail.com
-14001
- DRS Technologies Canada Ltd. (formerly 'DRS Flight Safety and Communications')
- Nikola Vladisavljevic
- nvladisa&drs.ca
-14002
- University of Wisconsin - Whitewater
- Bradley Schwoerer
- schwoerb&uww.edu
-14003
- Saint Mary's College
- Steve Hideg
- hideg&saintmarys.edu
-14004
- Gap Inc.
- Navin Argulkar
- navin_argulkar&gap.com
-14005
- Kelly
- Ronan Kelly
- iana-requests&haven.at
-14006
- Thomas Melzer Softwareentwicklung
- Thomas Melzer
- tmelzer&tomesoft.de
-14007
- IMPACT Science & Technology, Inc.
- Charles Barker
- cjbarker&impactsci.com
-14008
- KT
- Song Soonyong
- skull&kt.co.kr
-14009
- onSynergy Solutions
- Daniel Hoang
- danielh&onsynergy.com
-14010
- Cirrus Real Time Processing
- Brett Haynes
- brett.havnes&cirrusrtps.com.au
-14011
- Cyber-Project
- Viktor V. Buiny
- adm&kem.ru
-14012
- net-safe Co., Ltd.
- Ryu Yong Sik
- system&net-safe.co.kr
-14013
- Tata Consultancy Services
- B.Narendra Kishore
- bn.kishore&tcs.com
-14014
- TP EmiTel Sp. z o.o.
- Janusz Baluka
- jnbaluka&emitel.pl
-14015
- Unet Ltd.
- Victor O Ponomarev
- vick&unet.ru
-14016
- HG-France
- Jean-Louis Mounier
- jlmounie&club-internet.fr
-14017
- Fachhochschule Technikum Wien
- Alexander Nimmervoll
- nimm&technikum-wien.at
-14018
- Bryan Bellamy
- Bryan Bellamy
- bryan.bellamy&lineone.net
-14019
- Betronic Design BV
- H.A. Dijkstra
- henkdijkstra&betronic.nl
-14020
- Zencod
- Sergio Loureiro
- sergio.loureiro&zencod.com
-14021
- Shapers
- J.W. Penterman
- jw&shapers.nl
-14022
- Arachne (Poland)
- Artur Stepien
- muczachan&hell.pl
-14023
- KCOM Service Provider Network (formerly 'Mistral Internet Group')
- Phil Edwards
- phil.edwards&kcom.com
-14024
- fiscus GmbH
- Georg von Lachemair
- g.von-lachemair&fiscus.info
-14025
- Landesversicherungsanstalt
- Volker Bertermann
- volker.bertermann&lva-westfalen.de
-14026
- Slapd.Net
- John P. Hoke
- john.hoke&epresence.com
-14027
- RiverNorth Systems, Inc.
- Randy Bey
- randy.bey&rivernorthsys.com
-14028
- Real Time Engineering
- Greg Garner
- greg&rt-eng.com
-14029
- Netzwerk-Lehmann
- Thomas Lehmann
- info&netzwerk-lehmann.de
-14030
- Smartology vof
- Remy C. Cool
- remy.cool&smartology.nl
-14031
- STATO MAGGIORE DIFESA - COMANDO C4
- Roberto ALOE'
- c4.cspkiff&smd.difesa.it
-14032
- SUNY Geneseo
- Kirk Anne
- systems&geneseo.edu
-14033
- Samart Info Media Co.,Ltd.
- Panot Hunwan
- panot&samarts.com
-14034
- OU Artaxis
- Antti Helemets
- annti&artaxix.ee
-14035
- CyberStar
- Dan Zak
- dzak&cyberstar.com
-14036
- LineCom Ltd
- Tamas Kuti
- kuti.tamas&linecom.hu
-14037
- DasW:Lab
- Frank Brandewiede
- brande&cryptix.de
-14038
- Karns Technology
- Scott Karns
- scott&karnstech.com
-14039
- Gagliano & Cia
- Roque Gagliano
- rgaglian&adinet.com.uy
-14040
- Branda Tech.
- Kuei-Feng Li
- thinker&branda.to
-14041
- Railway Information Systems Co.,Ltd
- Toshikazu Masano
- oid&jrnet.ne.jp
-14042
- Freudenberg Haushaltsprodukte KF
- Steffan Haas
- steffan.haas&fhp-ww.com
-14043
- Sociedad Andaluza para el Desarrollo de la Sociedad de laInformacion, S.A.U.
- SADESI
- soporte.funcional.correo.sadesi&juntadeandalucia.es
-14044
- Kernfysisch Versneller Instituut
- Peter A. Kroon
- p.a.kroon&kvi.nl
-14045
- iServe (Pty) Ltd.
- Willem Brown
- willemb&iserve.co.za
-14046
- Statens Bostadsfinansierings AB
- Roland Magnusson
- roland.magnusson&sbab.se
-14047
- ISET
- David Chia
- rsedc&atlantic.gse.rmit.edu.au
-14048
- Lyse Energi
- Oddbjorn Sorseth
- oddbjorn.sorseth&lyse.no
-14049
- ProactiveThought Technologies Ltd.Inc.
- Scott Tarone
- starone&proactivethought.com
-14050
- Desert Academy at Sante Fe
- Scott Karns
- skarns&desertacademy.org
-14051
- NetMaster Digital Security
- Dana M. Epp
- depp&netmaster.com
-14052
- Profluent systems Australia
- Brad Vonarx
- snmp&profluent.com.au
-14053
- Prosum Solutions, LLC
- Steven F. Davis
- iana&prosumsolutions.com
-14054
- Fibercom
- JungHee-Won
- jhwon&fibercom.co.kr
-14055
- IP Mobile Net, Inc.
- Russell Markus
- rmarkus&ipmobilenetinc.com
-14056
- CEGELEC
- Roland Stader
- roland.stader&cegelec.com
-14057
- Longhill High School
- Kristyan Osborne
- kris&longhill.brighton-hove.sch.uk
-14058
- Excogita S.r.l.
- Bruno Castellani
- info&excogita.net
-14059
- Oberoesterreichische Versicherung AG
- Stefan Vetter
- s.vetter&ooev.at
-14060
- ENS GmbH
- Nick Baile
- nick_baile&ens.com
-14061
- Conectiva S.A.
- Andreas Hasenack
- andreas&conectiva.com.br
-14062
- Escritorio Juridico Alcala Rhode & Asociados
- Jose Luis Alcala Rhode
- jlalcalar&cantv.net
-14063
- SeaFire Networks Inc.
- Kioma Valenzuela Aldecoa
- kioma&seafirenet.com
-14064
- UC Berkeley Residential Computing
- Jennifer Ly
- jenly&rescomp.berkeley.edu
-14065
- Shanghai FOCI Fiber Optic Communication Equipments Inc.
- yongfeng zhang
- zhyfeng&eastday.com
-14066
- pit.at
- Peter Neumaier
- pit&pit.at
-14067
- allied networks GmbH
- Oliver Skiebe
- oliver.skiebe&alliednetworks.de
-14068
- Thueringer Netkom GmbH (formerly 'TEAG Netkom GmbH')
- Thomas Voigt
- thomas.voigt&netkom.de
-14069
- Syngenio AG
- Ullrich Rieger
- ullrich.rieger&syngenio.de
-14070
- C3T
- Sebastien Annedouche
- sannodouche&c3t.fr
-14071
- Bohr- und Rohrtechnik GmbH
- Michael Monschein
- michael.monschein&bur.at
-14072
- Mistral Software Private Ltd.
- Athif Allam
- athif&mistralsoftware.com
-14073
- SMART Technology
- Joshua Giles
- joshua_giles&dell.com
-14074
- Shorcan Brokers Ltd.
- Gord Shier
- gshier&shorcan.com
-14075
- Rational Software Corporation
- James Washington
- jwashing&rational.com
-14076
- Marsh Inc.
- Winston Lawrence
- winston.l.lawrence&marsh.com
-14077
- Esial
- Samson Bisaro
- samson.bisaro&esial.uhp-nancy.fr
-14078
- ANECT a. s.
- Daniel Fiser
- dfiser&anect.com
-14079
- Active Tools
- Miha Vuk
- miha&activetools.si
-14080
- Brivo Systems, Inc.
- Seth Ladd
- seth&brivo.net
-14081
- Armstrong World Industries
- Dan Conrad
- daconrad&armstrong.com
-14082
- uplink coherent solutions
- Rupert Roesler-Schmidt
- iana-requests&uplink.at
-14083
- Thomas Enterprises
- Kenny Thomas
- shop&kenthom.org
-14084
- Cochran Consulting, Inc.
- Charlie Sherman
- sysadmin&divecochran.com
-14085
- ADVFN.com PLC
- Jonathan Tullett
- jont&advfn.com
-14086
- ESHA Research
- Christopher Elkins
- chrise&esha.com
-14087
- Zultys Technologies
- Amir Fuhrmann
- amir.fuhrmann&zultys.com
-14088
- Navis LLc
- Scott Marshall
- is&navis.com
-14089
- City of Ontario, Oregon
- Dan Stieneke
- dan.stieneke&ontariooregon.org
-14090
- Powerview Systems
- Jeffrey Kessler
- jkessler&powerviewsys.com
-14091
- Hawker College
- Andrew Bartlett
- hostmaster&hawkerc.net
-14092
- University of Rhode Island
- David E. Tetreault
- davet&uriacc.uri.edu
-14093
- Medibase Technologies Co., Ltd.
- Dr. Weng Kong Tam
- ceo&medibase.org
-14094
- Snow B.V.
- Joost Helberg and/or Jos Jansen
- techniek&snow.nl
-14095
- TechDirection
- Matthew Allison
- matt&techdirection.net
-14096
- Forlink Software Corporation Inc.
- Chen Chuan
- chenchuan&softhouse.com.cn
-14097
- ITW-Informationstechnik GmbH
- Franz Wagner
- office&itw.at
-14098
- Hotelequip Ltd.
- Andy Turner
- andyt&hotelequip.com
-14099
- Butchwax Software
- John Morris
- iana&butchwax.com
-14100
- WLAN Alliance AB
- Rickard Gunnarsson
- rickard.gunnarsson&wlanalliance.com
-14101
- D.A.Tsenov EA
- Angelin Lalev
- lalev&uni-svishtov.bg
-14102
- dacore Datenbanksysteme AG
- Werner Fink
- werner.fink&dacore-dbs.de
-14103
- ICE Systems
- Emir Mameledzija
- emir.mameledzija&icesystems.hr
-14104
- tetronik GmbH AEN
- Michael Mahler
- michaelm&tetronik.com
-14105
- Business interactif
- Laurent Foinel
- laurent.fionel&businessinteractif.fr
-14106
- Syndicat Interhospitalier de Bretagne
- Claudie David
- claudie.david&sib.fr
-14107
- WIENSTROM
- Thomas Fuchs
- thomas.fuchs&wienstrom.at
-14108
- Odense Kommune
- John Bonnerup
- jobn&odense.dk
-14109
- Jaguar Cars Limited
- Ewen Phillips
- ephilli5&jaguar.com
-14110
- ORIMOS
- Guy Hindell
- guy.hindell&orimos.com
-14111
- Oxspring Network Solutions Ltd.
- Chris Andrew
- candrew&oxspring.com
-14112
- hzw design
- Juri Paern
- paern&hzw.de
-14113
- MagneTek
- Filippo Vernia
- vernia&magnetek.it
-14114
- Aepona England
- Sean Cronin
- sean.cronin&aepona.com
-14115
- Platespin
- Deepak Lal
- deepakl&platespin.com
-14116
- Telecore, Inc.
- John Palmquist
- jpalmquist&telecore-inc.com
-14117
- aostar
- Jing.run Xian
- xianjingrun&aostar.com
-14118
- Hanover College
- John W. Collins
- collins&hanover.edu
-14119
- Netlife AG
- Dr. Thomas Tautenhahn
- tautenhahn&netlife.de
-14120
- Letifer.org
- Jeremy Jones
- jeremyj&letifer.org
-14121
- Stone-IT
- Yvan Cottyn
- technical&stone-it.be
-14122
- Wireless Broadband Alliance Ltd (formerly 'Wi-Fi Alliance')
- Bhavani Prasad Yerrapalli
- bhavaniprasad&wballiance.net
-14123
- Expertcity Inc.
- Anshuman Kanwar
- anshuman&expertcity.com
-14124
- UK/CA/JN Joint Astronomy Centre
- Henry Stilmack
- h.stilmack&jach.hawaii.edu
-14125
- SENAO INTERNATIONAL CO., Ltd.
- Patrick Cheng
- patrickcheng&senao.com.tw
-14126
- New World PCS Limited
- Daniel Chan
- dkhchan&nwmobile.com
-14127
- OneChannel
- Mike Claussen
- mclaussen&onechannel.net
-14128
- Programming Arts, Inc.
- D Whitehorn-Umphres
- wumail&progarts.com
-14129
- Sevan Networks, Inc.
- Andre Melkoumian
- andre&sevannetworks.com
-14130
- Bifco
- Tarrie Joniec
- tarrie.joniec&bifco.com
-14131
- Ifoundry Systems
- Alvin Loh
- alvinl&ifoundry.com.sg
-14132
- CS Systemes d'Information
- Philippe Pasquereau
- oid.admin&c-s.fr
-14133
- Buergernetz Weihenstephan e.V.
- Marc von Jaduczynski
- marc&will-mail.de
-14134
- University of Szeged
- Mihaly Toth-Abonyi
- m.toth-abonyi&cc.u-szeged.hu
-14135
- SysDM
- Jim McDonald
- jim.mcdonald&sysdm.com
-14136
- PONTON GmbH
- Jörg Eichhorn
- admin&ponton.de
-14137
- Karis
- Jarl Jansen
- jarl.jansen&karisweb.de
-14138
- TGM
- Markus Schnabel
- markus.schnabel&tgm.ac.at
-14139
- City of Nottingham Council
- Richard Heggs
- richard.heggs&nottinghamcity.gov.uk
-14140
- Fachhochschule Lippe und Hoexter
- Carsten Halm
- carsten.halm&fh-luh.de
-14141
- ERECA
- Olivier Stockemer
- ereca3&wanadoo.fr
-14142
- ALPWARE
- Andrei Vitiazev
- info&alpware.com
-14143
- FimOSSchober & Hartl OEG
- Franz Schober
- office&firmos.at
-14144
- Malkom S.J.
- Marek Marcola
- root&malkom.pl
-14145
- Society for Humanity and International Trancendentalism
- Daniel Storm
- daniel&shit.co.uk
-14146
- Blackbox Consulting Corporation
- James D. Nurmi
- jnurmi&blackboxcorporation.com
-14147
- Fermi National Accelerator Laboratory
- Igor Terekhov
- terekhov&fnal.gov
-14148
- Officina di idee
- Riccardo Carrai
- riccardo&offidee.com
-14149
- Waddell & Reed Services
- Mark Lonergan
- mlonergan&waddell.com
-14150
- Transaction Auditing Group
- Andrew Dean
- adean&tagaudit.com
-14151
- Splentec Ltd.
- James Lee
- jlee&splentec.com
-14152
- Dyncorp Systems and Solutions
- Kirby Vaughan
- kirby.vaughan&dyncorp.com
-14153
- Sigma SaA
- Fabio Filipponi
- ffilipponi&sigmaspa.com
-14154
- NTKO Network Co., Ltd.
- John Tanger
- dominoreg&sina.com
-14155
- TIL TECHNOLOGIES
- Jean Marc Mesona
- jm.mesona&til-technologies.fr
-14156
- University of Reading
- Andy Gatward
- noc&reading.ac.uk
-14157
- FHLBank Topeka
- John Thompson
- john.thompson&fhlbtopeka.com
-14158
- Consultoria y estrategia electrónica para internet, S.L.(TestaNet)
- Evelio Martinez
- evelio.martinez&testanet.com
-14159
- Fluent Inc.
- Paul Rossman
- pdr&evanston.fluent.com
-14160
- Tribune Interactive
- Alan Pitcher
- apitcher&tribune.com
-14161
- EPCNet GmbH
- Jochen Dolze
- jd&epcnet.de
-14162
- IT Solution GmbH
- Rainer Gundacker
- rainer.gundacker&itsolution.at
-14163
- SAGA D.C. GmbH
- Jochen Grotepass
- jochen.grotepass.sagadc.de
-14164
- SANavigator, Inc.
- Robert Pulley
- rpulley&sanavigator.com
-14165
- iReady
- Charles Andrews
- charlesa&iready.com
-14166
- Saviso Consulting Ltd.
- Adam Twiss
- adam&saviso.com
-14167
- Seattle University
- David Dennis
- dmd&seattleu.edu
-14168
- Owl River Company
- R.P. Herrold
- herrold&owlriver.com
-14169
- INFORMEDIA
- Shashi Shekhar S
- shashishekhars&yahoo.com
-14170
- Australian Research Centre for Medical Engineering
- James Devenish
- devenish&arcme.com
-14171
- Memorial University of Newfoundland
- Randy Dodge
- randy&mun.ca
-14172
- Boca Software, Inc.
- Jim Skoog
- jskoog&bocasw.com
-14173
- ETRI
- Daeha Lee
- bigsum&etri.re.kr
-14174
- Softforum Co., Ltd.
- Yeonyeol Jeong
- yjy&softforum.com
-14175
- Hospital La Fe
- Ricardo Garcia Mataix
- garcia_ric&gva.es
-14176
- Katholieke Hogeschool Leuven
- Vital Coenegrachts
- vital.coenegrachts&khleuven.be
-14177
- implementa GmbH
- Bernd Kischnick
- kisch&implementa.com
-14178
- JNI Corporation
- Larry Butler
- lbutler&jni.com
-14179
- Airespace, Inc (formerly 'Black Storm Networks')
- Bhautik Doshi
- bdoshi&airespace.com
-14180
- DS Consulting
- Dan Shinton
- snmp&shinton.net
-14181
- Cygnus Technologies
- Egidio Cianciosi
- ec&cygnus-technologies.com
-14182
- GlobalLocate
- Myvan Quoc
- mquoc&globallocate.com
-14183
- Arezzo Telecomunicazioni Srl
- Giampaolo Tomassoni
- g.tomassoni&ar-tel.it
-14184
- Getabigger Network
- David J Blackburn
- admin&getabigger.net
-14185
- CYBER SERVICE
- Maciej Skalski
- maciek&cs.net.pl
-14186
- Gallant Technologies, Inc.
- Michael Fowler
- support&gallanttech.com
-14187
- China Netcom Corporation Ltd.
- Dashen Wang
- dashen&sd.cn.net
-14188
- Thomas K. Williams, Ltd.
- Thomas K. Williams
- koyote&goodnet.com
-14189
- probusiness AG
- Andreas Schiller
- aschiller&probusiness.de
-14190
- Western Outdoor Interactive
- Keith Fernandez
- keith&w-o-i.com
-14191
- MNOFBB
- Marcellius Smith
- marcellius.smith&mnofbb.org
-14192
- Granite Technologies
- Kenny Dorr
- kdorr&osnetwork.com
-14193
- Strabon
- Nader Boutros
- boutros&msh-pairs.fr
-14194
- Ministry of Social Development
- William Young
- bill.young002&msd.govt.nz
-14195
- Now Software
- Corey Johnson
- corey&poweronsoftware.com
-14196
- California State University, Monterey Bay
- Isaac Davis-King
- isaac_davis-king&csumb.edu
-14197
- SISNEMA Informatica Ltda.
- Giani Antonio Leichtweis Maldaner
- giani&sisnema.com.br
-14198
- PANNAWAY Technologies Incorporated
- Victor Novikov
- novikov_ve&pannaway.com
-14199
- Accelrys Inc.
- Thomas Helvey
- helvey&accelrys.com
-14200
- HCL Comnet Ltd.
- Sanjay Saxena
- sanjays&hclcomnet.co.in
-14201
- Daxworld
- Tommy Wilson
- daxboy&mac.com
-14202
- Dottech International Inc.Ltd.
- Hubert Yeh
- pest_yeh&dottech.com.tw
-14203
- AQL
- Vincent Meuric
- vincent.meuric&aql.fr
-14204
- Reksoft Ltd.
- Michael Gusev
- gusev&reksoft.ru
-14205
- MAI Insurance Brokers Ltd.
- Laszlo Vagasi
- l.vagasi&mai-cee.com
-14206
- Informatie Beheer Groep
- J. T. Schuilenga
- j.t.schuilenga&ib.groep.nl
-14207
- Leroy Somer
- Stephane Couvy
- stephane.couvy&leroysomer.com
-14208
- OpenWide
- Benjamin Cleyet-Marrel
- benjamin.cleyet-marrel&openwide.fr
-14209
- Accellent
- Christian Berge
- christian.berge&accellent-group.com
-14210
- The Storyteller's Place
- Adam Strallen
- avstrallen&btinternet.com
-14211
- Tiffany and Company
- Jose Rosario
- jose.rosario&mycroftinc.com
-14212
- Universitaet Muenchen
- Robert Hofer
- oidmaster&ifi.lmu.de
-14213
- Scitech it solutions GmbH
- Sven Rudolph
- s.rudolph&scitech-gmbh.de
-14214
- Tyco Services
- Howard Alexander
- halexander&tycoint.com
-14215
- Interactive Visuals, Inc.
- Mike Schienle
- mgs&ivsoftware.com
-14216
- Sendfar Technology Co., Ltd.
- Robinson Tu
- robinson&sendfar.com.tw
-14217
- Wuestenrot Datenservice GmbH
- Hubert Hoffmann
- hubert.hoffmann&wueestenrot.at
-14218
- Facultes Universitaires Notre-Dame de la Paix
- Richard Mairesse
- snmpmaster&fundp.ac.be
-14219
- Hapag-Lloyd Container Linie AG
- Ralf Kaemper
- ralf.kaemper&hlcl.com
-14220
- Akaflieg Munchen e.V.
- Dominik Kreutzer
- kreutzer&akaflieg-muenchen.de
-14221
- Prodigy Labs
- Shekhar Borgaonkar
- prapandit&yahoo.com
-14222
- Electric Reliability Council of Texas, Inc.
- Dennis Wright
- dwright&ercot.com
-14223
- Sourcefire, Inc.
- Chris Green
- snmp&sourcefire.com
-14224
- Software Machine
- Ozair Garcia Campos Jr.
- ozairjr&yahoo.com
-14225
- SPL / ACT Wireless
- Yvon Belec
- yvon.belec&advantechamt.com
-14226
- Vizafone
- Matthew Dalby
- matthewdalby&yahoo.com
-14227
- Tampere Polytechnic
- Jarmo Sorvari
- jarmo.sorvari&tpu.fi
-14228
- Flanders Electric
- Mike Engler
- ldap-oid&flanderselectric.com
-14229
- University of Arkansas-Fayetteville
- Elon Turner
- uarktech&uark.edu
-14230
- Engine GmbH & Co. KG
- Thomas Warnick
- tw&engine.de
-14231
- The Shmoo Group
- Tina Bird
- tbird&shmoo.com
-14232
- Exelon Corporation
- Christopher Olmsted
- christopher.Olmsted&exeloncorp.com
-14233
- Sonag Company
- James Urbas
- jimu&sonag.com
-14234
- Isotomic Technologies
- Jay Haskins
- jhaskins&isotomic.com
-14235
- SpinCircuit Inc.
- Jagan Bhamidipati
- jagan_bhamidipati&spincircuit.com
-14236
- Banco de la Republica
- Samuel Gutierrez
- sgutieti&banrep.gov.co
-14237
- Sarawak Information Systems Sdn. Bhd.
- Shahmat Dahlan
- shahmatd&sains.com.my
-14238
- Dilithium Networks
- David Jack
- david.jack&dilithiumnetworks.com
-14239
- SPRITEInc.
- Masashi Soda
- i ana&sprite.ad.jp
-14240
- Top Global Technology Ltd
- Achilles Newman
- liuxc&chinatopglobal.com
-14241
- Mentorgen, LLC
- Ken Bradley
- ken.bradley&mentorgen.com
-14242
- AOSA Telekom GmbH & Co.
- Elisabeth Jaeger
- elisabeth.jaeger&aosa.at
-14243
- RTS Real Time Computersoftware Ges.mbH.
- Peter Goetzl
- gop&rts.co.at
-14244
- Bjerkeset Consulting
- Svein Bjerkeset
- sob&jerkeset.com
-14245
- The Caudium Group
- Xavier Beaudouin
- kiwi&caudium.net
-14246
- Natural Convergence
- Yves Gilles
- yves.gilles&naturalcomvergence.com
-14247
- signaflex Inc.
- Pascal Poudrier
- pascal_poudrier&signaflex.qc.ca
-14248
- Gemini Security Solutions, Inc.
- Peter Hesse
- jobs&geminisecurity.com
-14249
- Vienne Informatique
- Philippe Marasse
- admin&vienneinfor.org
-14250
- Conseil General de la Vienne
- Philippe Marasse
- p-marasse&cg86.fr
-14251
- Stellar Craft Inc.
- Hideo Morishita
- manmos&stellar.co.jp
-14252
- Prime Solutions Ltd.
- Ari Vaha-Erkkila
- ari.vaha-erkkila&primesolutions.fi
-14253
- GridXpert
- Olivier Petit
- oliver.petit&gridxpert.com
-14254
- enhansiv
- Farzin Mohammadi
- farzin.mohammadi&enhansiv.com
-14255
- brvenik.com
- Jason Brvenik
- jason&brvenik.com
-14256
- Arlys S. A.
- Phillipe Guillaubez
- phillipe.guillaubez&arlys.com
-14257
- Link Margin, Inc.
- Andy Warner
- andyw&linkmargin.com
-14258
- Northern Trust Company
- Stephen Bonine
- spb&ntrs.com
-14259
- Groupe ECE Paris
- Christophe Kern
- kern&ece.fr
-14260
- Linux Systemberatung
- Eric Weiss
- iana-oid&eric-weiss.de
-14261
- Bank Leumi LeIsrael Ltd.
- Shmuel Mishali
- shmuelm&bll.co.il
-14262
- Dipl. Ing. Felix Beer
- Felix Beer
- f.beer&indec.at
-14263
- Sven Meinhardt EDV-Service
- Sven Meinhardt
- admin&meinhardt-edv-service.de
-14264
- OutPost Sentinel
- Christopher Fowler
- cfowler&outpostsentinel.com
-14265
- itouch
- Andrew Thomson
- andrew.thomson&itouch.com.au
-14266
- Bulletproff Networks
- John Ferlito
- johnf&bulletproof.it
-14267
- WrjTec
- RuiJun Wu
- wrj5&sohu.com
-14268
- Projekt Avalon
- Michael Weisbach
- iana&tuts.nu
-14269
- Beijing Vanlink Communication Co. P.R.China Yu
- Yu Wei
- yuwei&vl.com.cn
-14270
- Technology Hackworks, Inc.
- Randy Nott
- jecky1&pacbell.net
-14271
- Iliad
- Cedric Lecourt
- hostmaster&iliad.fr
-14272
- AWO Kreisverband Essen e.V.
- Werner Opriel
- werner.opriel&awo-essen.de
-14273
- IFEN
- W. Werner
- w.werner&ifen.com
-14274
- BDILukasz Tylski
- Lukasz Tylski
- lukasz.tylski&bdi.net.pl
-14275
- Deutsche Bundeswehr
- Michael Lensch
- michaellensch&bwb.org
-14276
- Osystem AB
- Ola Sigurdson
- hostmaster&osys.se
-14277
- tylerfam.net
- Craig Tyler
- ctyler&tylerfam.net
-14278
- DINX GmbH
- Stephan Schwab
- schwab&dinx.net
-14279
- NetHere Internet Services, Inc.
- Henry Chan
- htchan&nethere.net
-14280
- All Optical Networks, Inc.
- David Mc Coll
- dbmccoll&alloptical.net
-14281
- RCAT.net
- Michael Weeatherlight
- rcat&woofcat.com
-14282
- Vertrian
- Ed Frigo
- marketing_vertrian&yahoo.com.br
-14283
- Webraska
- Antoine Martin
- amartin&webraska.com
-14284
- Technische Universitat Chemnitz
- Guenther Fischer
- fischer&hrz.tu-chemnitz.de
-14285
- Cegetel SI
- Denis Loitard
- smpsbo&cegetel.fr
-14286
- nVISIA
- Stuart Schrader
- sschrader&nvisia.com
-14287
- Aegis:Net
- Andreas Brenk
- ab&aegisnet.biz
-14288
- Lucterra Informatica Ltda
- Luciano Terra
- luciano&lucterra.com.br
-14289
- A3 Design
- Mars Hall
- mars&A3online.com
-14290
- Infocorp Computer Solutions, Inc.
- Jessie Chen
- jessie&infocorpnow.com
-14291
- Stefan Lefnaer
- Stefan Lefnaer
- stefan&lefnaer.com
-14292
- The Document Academy
- Lars Nooden
- lars.nooden&hum.uit.no
-14293
- Aditel nv
- Evgeniy Smoliar
- sem&aditel.be
-14294
- Collax GmbH
- Falk Kraemer
- falk.kraemer&collax.com
-14295
- DOP Systems Ltd.
- Diego Oliveria
- diego&audisoft.com.br
-14296
- Confmon Corp
- Erik Dahl
- edahl&mindspring.com
-14297
- One.Tel.UK
- Anthony Dervish
- anthony.dervish&onetel.co.uk
-14298
- Control Products, Inc.
- Gary Olson
- golson&controlproductsinc.com
-14299
- SiteSuite Australasia
- David Baxter
- david&sitesuite.com.au
-14300
- Cyber Switching Inc.
- Ron Silorio
- rons&cyberswitching.com
-14301
- Pro Medicus Ltd.
- Zane Francis
- smi&promed.com.au
-14302
- papiNet.org
- Tom Meniga
- tom.meniga&papinet.org
-14303
- Nextgen, Inc.
- Akio Nonaka
- tech&nextgen.co.jp
-14304
- ScenPro Inc.
- Luke Harms
- lharms&scenpro.com
-14305
- Kora Institute of Science and Technology Information (KISTI)
- MinYeol Lim
- mylim&hpcnet.ne.kr
-14306
- FOCI Fiber Optic Communications, Inc.
- Chiang Feng-Shih
- chiang&mailsrv.foci.com.tw
-14307
- Kawamura Electric Inc.
- Takuo Ito
- ta-itou&kawamura.co.jp
-14308
- REP
- Fabrice Cetre
- fcetre&repgroup.net
-14309
- Technische Universitaet Clausthal, Rechenzentrum
- Ralf Kalwa
- kalwa&rz.tu-clausthal.de
-14310
- Adjoin Solutions, Inc.
- Vladimir Umansky
- vumansky&adjoin.com
-14311
- Technion Communications Corporation
- Prashant Cherukuri
- Prashant&Technion.com
-14312
- Skypath Networks, Inc.
- James Tavares
- jtavares&skypath.com
-14313
- Proceda Tecnologia e Informatica SA
- Evandro Dantas Camargo
- evandroc&proceda.com.br
-14314
- Imaginet
- Bret Otzenberger
- botzenberger&imaginet.com
-14315
- UBServices
- J. Unterberger
- j.unterberger&ubservices.de
-14316
- Shanghai Huateng Software System Co., Ltd.
- Xu Feng
- xu_feng&huateng.com
-14317
- Ratwater
- Jim Maynard
- ratwater&aol.com
-14318
- Alstom T&D P&D
- Luc Hossenlopp
- luc.hossenlopp&tde.alstom.com
-14319
- DDD Design GmbH
- Clau Zimmerman
- hostmaster&dd.de
-14320
- Credit Lyonnais DSTI/DSAT/PLANET
- Marco Helloco
- marc.helloco&creditlyonnais.fr
-14321
- Techelp Ky
- Mikko Kortelainen
- mikko.kortelainen&techelp.fi
-14322
- Arnold Design & Informatica Ltda.
- Christiano Levi Arnold
- cristiano.arnold&bol.com.br
-14323
- Dennis IT
- Trevor Dennis
- tdennis&trevordennis.com
-14324
- The Written Word, Inc.
- Albert Chin-A-Young
- iana&thewrittenword.com
-14325
- PuceBaboon
- Miyoko Little
- gaijin&pobox.com
-14326
- Sirius Satellite Radio
- Alan Pate
- apate&sirusradio.com
-14327
- VA Linux Systems Japan K.K.
- Junjiro Okajima
- jro&valinux.co.jp
-14328
- JAG Productions, Inc.
- Alan Gates
- agates&eddinc.net
-14329
- TimeCertain, LLC
- Jeff Powers
- jeff&timecertain.com
-14330
- Shanghai Ewaytek Co., Ltd.
- Liewen
- liewen&ewaytek.com
-14331
- Beijing Topsec Network Security Technology Co., Ltd.
- Wang Xue
- wx&ccert.com
-14332
- DeadSquid Communications
- Kevin Needham
- kneedham&deadsquid.com
-14333
- Phonologies (India) Pvt. Ltd.
- Prashant Lamba
- raj&phonologies.com
-14334
- Milton Keynes Council
- Paul Sansom
- paul.sansom&milton-keynes.gov.uk
-14335
- Econnect
- Jiri Reisching
- jiri.reischig&ecn.cz
-14336
- The Chesapeake Computer Group, Incorporated
- Bruce Wahl
- bruce&ccgi.com
-14337
- Superintendencia de Servicios de Salud
- Aureliano Chavarria
- aureliano&sssalud.gov.ar
-14338
- ImpSat S.A.-Colombia
- Ivan Otero
- iotero&impsat.net.co
-14339
- Hioptel
- Mark Duan
- misoso@963net
-14340
- LinuxTek, Inc.
- Sharif Alexandre
- virtualgypsy&yahoo.com
-14341
- Ministry of Pacific Island Affairs
- Mike Mylonas
- mike.mylonas&minpac.govt.nz
-14342
- Netway Networks Pty. Ltd.
- Marty Richards
- marty&netwaynetworks.com.au
-14343
- Osprey Network Technologies, Inc.
- David Morton
- oidmaster&osprey.net
-14344
- Electronic Commerce Technologies
- Steven Cockerill
- infor&e-teq.com
-14345
- ETG
- Stacy Minkin
- stacy&eutechgroup.com
-14346
- Erich Jaeger GmbH
- Mark Carolan
- mark.carolan&jaeger-toennies.com
-14347
- RealNet Kft.
- Lorant Kurthy
- root&real-net.sk
-14348
- Swist Group Technologies (Pty.) Ltd.
- Max Clements
- clementsm&swistgroup.com
-14349
- Dyband Corporation
- Walter Capitani
- wcapitani&dyband.com
-14350
- Storbit
- John Reynolds
- reynoldsj&hotmail.com
-14351
- Applied Engineering, Inc.
- Scott Moorhouse
- smoorhouse&ae-solutions.com
-14352
- Penn State University
- Eric Reischer
- emr&engr.de.psu.edu
-14353
- Alessandro Bertela
- Alessandro Bertela
- ale.78&tin.it
-14354
- Menlo Park Presbyterian Church
- Aaron Mapes
- amapes&mppc.org
-14355
- Chapman University
- John Stauffacher
- stauffacher&chapman.edu
-14356
- Bank of Bermuda
- Robert Rodger
- robert.rodger&bankofbermuda.com
-14357
- WORLDPAC
- John Woodell
- woodie&worldpac.com
-14358
- SnapGear Pty Ltd
- Tom Essebier
- tom&snapgear.com
-14359
- Abacus
- Jae Shin
- newguy&iabacus.co.kr
-14360
- Routrek Networks, Inc.
- Shinichi Matsushita
- matsushita&routrek.co.jp
-14361
- Foresearch
- Woo-jin Yang
- uyang&popeye.snu.ac.kr
-14362
- Telekom Slovenije d.d.
- Srecko Mandelj
- srecko.mandelj&telekom.si
-14363
- Blue Oak Wireless (Pty) Ltd.
- Max Clements
- max&simonsberg.com
-14364
- CLG
- Alexandre Pachot
- alexandre.pachot.clg.fr
-14365
- IgH Essen GmbH
- Torsten Finke
- fi&igh-essen.com
-14366
- Energy Research Foundation
- D. Voetelink
- voetelink&ecn.nl
-14367
- Ironic Design, Inc.
- Michael Dorman
- mdorman&ironicdesign.com
-14368
- PUBLIC.AT Internet
- Christian Schmied
- christian&schmied.cc
-14369
- TSI
- Bob McClure
- bmcclure&tsiconnections.com
-14370
- GeoTrust Inc.
- Kefeng Chen
- kefengc&geotrust.com
-14371
- IOTAC
- Jed Liu
- jed-zz4572&uma.litech.org
-14372
- Universidad Simon Bolivar
- Patrick O'Callaghan
- poc&usb.ve
-14373
- MystroTV
- IT Director
- it&mystrotv.com
-14374
- International Software Solutions
- John Uhler
- john.uhler&issnet.com
-14375
- Wireless Services Corp.
- Frederick Wamsley
- 3dlvjj001&sneakemail.com
-14376
- Applied Signal Technology, Inc.
- James Israni
- izzy&appsig.com
-14377
- CORE SECURITY TECHNOLOGIES
- Javier Kohen
- jkohen&corest.com
-14378
- lmjn.com
- Michael Sheldon
- msheldon&lmjn.com
-14379
- VarioSecure Networks, Inc.
- Tim Burress
- tim&variosecure.net
-14380
- KT ICOM
- Jae Kyoung Ryu
- yousee&kticom.com
-14381
- TeleCIS, Inc.
- Dooseok Kim
- dskim&telecis.com
-14382
- Superlong IT Ltd.
- Alasdair Thomson
- alasdair.thomson&gzunk.com
-14383
- Openexpertise Pty. Ltd.
- Chris Forkin
- chris&openexpertise.com.au
-14384
- Romsym Data
- Razvan Mititeanu
- razvanm&romsym.ro
-14385
- RTE Software
- Olivier Matrot
- olivier.matrot&rte.fr
-14386
- soLNet, s.r.o
- Ales Horak
- info&solnet.cz
-14387
- Absolute Systems (PTY) Ltd
- Raimund Hook
- root&absolutesys.com
-14388
- Toll Collect
- V. Siftar
- ahmet.kaskir-hoepfel&ncr.com
-14389
- Spider Internet Technologies, Inc.
- Roger Hardwicke
- rogerch&spiderintertech.com
-14390
- QRS Healthcare Solutions
- Kent Rankin
- krankin&qrsparadigm.com
-14391
- Ace Suares
- Ace Suares
- iana-oid&suares.com
-14392
- SI-Solucoes de Informatica
- Claudio Lamberti
- claudio&si.psi.br
-14393
- PRODASAL Companhia de Processamento de Dados de Salvador
- Henrique Wendell Sales de Abreu
- henrique&salvador.ba.gov.br
-14394
- New Mass Media, Inc.
- Troy Lemieux
- itdept&newmassmedia.com
-14395
- University of Oregon
- Noreen Hogan
- noreenh&oregon.uoregon.edu
-14396
- c4net
- Byung-Mu Lee
- bmlee&c4net.co.kr
-14397
- ICSS
- Vivid Qian
- vivid&icss.com.cn
-14398
- Behavioral Informatics Inc.
- Emilio Recio
- emrecio&netscape.net
-14399
- NEC Platforms, Ltd.
- Shinsuke Shiota
- shiotas&pb.jp.nec.com
-14400
- VentureTechs Corp.
- Miles Zhou
- miles&venturetechs.com
-14401
- Joint Stock Company Volgatelecom, Penza region
- Michael Fomin
- fmikle&penza.net
-14402
- University of Geneva
- Dominique Petitpierre
- dominique.petitpierre&adm.unige.ch
-14403
- Gymnasium Hermann-Boese-Str.
- Roland Bauerschmidt
- roland&hbg-bremen.de
-14404
- Spediant Systems Ltd.
- Einat Shlengel
- einat&orckit.com
-14405
- Charon Systems Inc.
- Mike Shareski
- mike.shareski&charon.com
-14406
- United Land Services, Inc.
- Michael Lee
- mikelee&optonline.net
-14407
- Xidus.Net
- Jeremy Weatherford
- xidus&xidus.net
-14408
- nDosa Technologies, Inc.
- Jihong Kim
- jkim&ndosatech.com
-14409
- DCANet
- Phil Banh
- iana-contact&dca.net
-14410
- TSSX
- Li Tao
- litao&tssx.com.cn
-14411
- Beijing QXCOMM Technology CO., Ltd.
- Zhao Quan Wang
- zqw&qxcomm.com
-14412
- European Transaction Bank AG
- Michael Grom
- michael.grom&etb-ag.com
-14413
- Comfone AG
- Stefan Renfer
- stefan.renfer&comfone.com
-14414
- Regio Ltd.
- Jaak Laineste
- jkl&regio.ee
-14415
- e-mobilizer
- Hakan Sjogren
- hasjg&wmdata.com
-14416
- ntl
- Andrew Buckley
- andrew.buckley&ntl.com
-14417
- Continentale Krankenversicherung A.G.
- Manfred Dengjel
- manfred.dengjel&continentale.de
-14418
- Centro de Tecnologia da Informação "Luiz de Queiroz"
- Fabio Rogero
- frogero&usp.br
-14419
- EMIGRATUS Communications Inc.
- Sid Siddiqui
- sid&emigratus.com
-14420
- ltinetworks.com
- Bradley White
- brad&ltinetworks.com
-14421
- Mocana Corporation
- James Blaisdell
- james&mocana.com
-14422
- Tazmen Technologies
- Chris Waters
- chris&waters.co.nz
-14423
- Rondosoft, Inc.
- Sergey Armishev
- sergey&rondosoft.com
-14424
- humatix
- Hugo Burm
- hugob&humatix.nl
-14425
- Telkonet Inc.
- Eva Wang
- ewang&telkonet.com
-14426
- Enterprise Innovations Corporation
- Jonathan Griggs
- jfgriggs&enterpriseinnovations.com
-14427
- NACT Telecommunications Inc.
- Brian Minert
- bminert&nact.com
-14428
- Welstand
- Krzysztof Wychowalek
- info&welstand.six.pl
-14429
- McLuckie and Associates
- Jacob Rush
- jacobr&mcluckieco.com
-14430
- PoliVec Inc.
- Bill Birnbaum
- bbirnbaum&polivec.com
-14431
- Universitas Kristen Krida Wacana
- Irwan Budiman
- irwanhadi&bpkpenabur.or.id
-14432
- Reserved
- Updated 2013-08-09
- ---none---
-14433
- China Financial Certification Authority
- Zhiyuan Shao
- zyshao&cfca.com.cn
-14434
- Network Systems and Technologies
- Ravindranath
- raviav&yahoo.com
-14435
- Vrije Universiteit Amsterdam
- Hans Leidekker
- hans&it.vu.nl
-14436
- Quiconnect.com
- Lawrence Baltz
- larry.baltz&quiconnect.com
-14437
- baltz.org
- Larry Baltz
- larry&baltz.org
-14438
- PolarLake
- Warren Buckley
- warren.buckley&polarlake.com
-14439
- Hit Internet Technologies S.p.A
- Roberto Taccon
- roberto.taccon&hit.it
-14440
- Longship Scout Group
- Chris Searle
- postmaster&longship.org
-14441
- Miller Zell
- Andrew Boring
- andrew.boring&millerzell.com
-14442
- XYBASE (Malaysia) Sdn Bhd
- Shahada Abubakar
- shahada&xybase.com
-14443
- July Systems
- Ramesh Varma
- ramesh&julysystems.com
-14444
- Redback IT Pty Ltd
- Rodney Chan
- rbcc&redback.com.au
-14445
- Elecs Industry Co., Ltd.
- Shinji Yokoi
- yokoi&elecs.co.jp
-14446
- INDEO GmbH
- Marian Sopko
- marian.sopko&indeo.at
-14447
- Spektra Group Ltd
- Allan MacLean
- allan.maclean&spektra.co.uk
-14448
- Iatrogenix.com
- Ray Deiniger
- ray&iatrogenix.com
-14449
- HitNet e.V.
- Thomas Deselaes
- thomasd&hitnet.rwth-aachen.de
-14450
- Twicom
- Kevin Twidle
- kevin&twicom.com
-14451
- Industrial Computing Ltd
- William Dean
- will-snmp&indcomp.co.uk
-14452
- Everyone.net
- Network Operations
- netops&everyone.net
-14453
- ISIS Networks
- Ryan Hoegg
- rhoegg&isisnetworks.net
-14454
- Tel-Aviv University
- Koby Schwartz
- schwartz&aristo.tau.ac.il
-14455
- IntercontinentalExchange
- Greg Hamamgian
- ghamamgian&intcx.com
-14456
- Lemuria Asesores Informaticos C.A.
- Ivan Aponte
- iaponte&cantv.net
-14457
- Lorex Industries, Inc.
- Mu Wu
- wum&lorex.com
-14458
- ILIENT
- Israel Lifshitz
- israel&ilient.com
-14459
- Hennessy Digital
- John Hennessy
- john&hennessy.net.au
-14460
- B Digital
- John Hennessy
- john.hennessy&b-online.com.au
-14461
- Keyware Solutions Inc.
- Takayuki Sonobe
- c-editor&keyware.co.jp
-14462
- Psgue Corporation
- Lyno Sullivan
- lls02m&psgue.com
-14463
- Tour2000 co., LTD
- Ahn Jun-Mo
- webmaster&tour2000.co.kr
-14464
- ValueCommerce
- Nathan Ollerenshaw
- iana&valuecommerce.ne.jp
-14465
- NOC Grove
- Stefan Immel
- si&grove.de
-14466
- Heinrich-Heine-Universitaet Duesseldorf
- Klaus Szymanski
- szymanski&uni-duesseldorf.de
-14467
- STIME
- Georges Fointiat
- gfointiat&mousquetaires.com
-14468
- Marconi Integrated Systems
- Dave Crooks
- dave.crook&marconi.com
-14469
- Cyclone Computer Consultants Ltd
- Stuart Slade
- stuartslade&hotmail.com
-14470
- Plahl Karl Consult
- Joachim Plahl
- joachim&plahl-karl.de
-14471
- Wasabi Systems
- William Studenmund
- wrstuden&wasabisystems.com
-14472
- VIA NET.WORKS Services AG
- Markus Wild
- mw&viaservices.ch
-14473
- Queen's University
- Andrew Hooper
- hooper&post.queensu.ca
-14474
- NextAxiom Technology, Inc.
- Dave Clifford
- dave_clifford&nextaxiom.com
-14475
- Ralph DeHart
- Ralph DeHart
- rdehart&speakeasy.net
-14476
- Network Executive Software, Inc.
- Dave Reiland
- dave.reiland&netex.com
-14477
- RELIX
- Markus Heller
- heller&relix.de
-14478
- University of Melbourne
- Shane Hjorth
- shane.hjorth&unimelb.edu.au
-14479
- Korea National Defence University
- Kwang Young Kim
- kykim12&kndu.ac.kr
-14480
- norisbank AG
- Torsten Greiner
- torsten.greiner&norisbank.de
-14481
- KOBIL Systems GmbH
- Markus Tak
- tak&kobil.de
-14482
- System 5
- Andrea Albarelli
- andrea&system5.it
-14483
- UNIC Internet Consulting
- Rudolf Meyer
- rudolf.meyer&unic.ch
-14484
- Digital V6 Corp.
- Jimmy Lee
- jimmy.lee&digitalv6.com
-14485
- Sanmina-SCI Inc
- Amy Arnts
- amy.arnts&sanmina-sci.com
-14486
- Marlboro College
- Jared Benedict
- jared&marlboro.edu
-14487
- Erkkila Consulting
- Paul Erkkila
- pee&erkkila.org
-14488
- Darkmist
- Ed Schaller
- schallee&darkmist.net
-14489
- mcgrew.net Inc.
- Kelly McGrew
- kelly&mcgrew.net
-14490
- Ariadne Internet Services, Inc.
- Dale Worley
- worley&ariadne.com
-14491
- Standard School District
- Jeff Davis
- jdavis&standard.k12.ca.us
-14492
- Dialogue Technology Corporation
- Jimmy Leu
- jimmy&mail.dialogue.com.tw
-14493
- Aurigo Software Technologies
- Anupam Singh
- anupam&aurgio.com
-14494
- ASPedi GmbH
- Kay Melchinger
- kme&aspedi.com
-14495
- Hans Lie
- Hans Lie
- hans.lie&start.no
-14496
- SwedishAmerican Health System Corporation
- Roger Cook
- inetadmin&swedishamerican.org
-14497
- Gist Communications, Inc.
- Kristofer Spinka
- kspinka&gist.com
-14498
- Style Networks, Inc.
- Kristofer Spinka
- kspinka&style.net
-14499
- e-Bank
- Michael LeWinter
- michael.lewinter&ebancllc.com
-14500
- Warsaw University
- ICM Networking Group
- info&net.icm.edu.pl
-14501
- Blue Coat Systems
- Mihir Lala
- mihir.lala&bluecoat.com
-14502
- Sam Asher Computing Services, Inc.
- Tim Oertel
- t_oertel&samasher.com
-14503
- Asylum Visual Effects
- Kelly Bergougnoux
- kelly&asylumfx.com
-14504
- Packet Signal Corporation
- Doug Bolling
- ddjbolling&charter.net
-14505
- Spiral Designs Inc.
- Dan Pringle
- digitals&netone.com
-14506
- Ministerul Apararii Nationale
- Ion Ciobanu
- svsi&mapn.ro
-14507
- Russian American Glass Company - RASKO Ltd
- Dmitry Glushenok
- glush&rasko.ru
-14508
- Teknovus
- Manoj Punamia
- manoj.punamia&teknovus.com
-14509
- Mercateo AG
- Jurgen Rudolph
- iana&mercateo.de
-14510
- Astra Datentechnik GmbH
- Georg Stenzel
- annette.schoene&astra-gmbh.de
-14511
- London Metropolitan University
- Paul Walk
- p.walk&londonmet.ac.uk
-14512
- Aspivia (Pty) Ltd.
- Jaun Terblanche
- jterblanche&aspivia.com
-14513
- Webflex
- Robert Wielinga
- rwielinga&bigfoot.com
-14514
- DAVE s.r.l.
- Stefano Dal Poz
- stefano.dalpoz&dave.eu
-14515
- GenoGRID
- Michel Mac Wing
- mmacwing&irisa.fr
-14516
- Sanoma Budapest Publishing Ltd.
- Zsolt Magyar
- zs.magyar&sanomabp.hu
-14517
- Tactel AB
- Pontus Fuchs
- pontus.fuchs&tactel.se
-14518
- Pihana Pacific, Inc.
- Michael Warne
- mike.warne&pihana.com
-14519
- Washington University
- Dan Zweifel
- pen&aismail.wustl.edu
-14520
- Wolfram Research Inc.
- Ken Miller
- netadmin&wolfram.com
-14521
- H K Moore Limited
- William Moore
- wmoore&hkmoore.com
-14522
- GVI Medical Devices
- William Greathouse
- william.greathouse&gvimd.com
-14523
- hermit.org
- Ian Smith
- clint&hermit.org
-14524
- Pharos Systems
- Paul Reddy
- paul&pharos.com
-14525
- Trapeze Networks, Inc
- Lol Grant
- lol&trpz.com
-14526
- Safenet Informatica Ltda
- Fernando Albuquerque de Araujo Filho
- safenet&bol.com.br
-14527
- iWiring
- Dan Shoop
- shoop&iwing.net
-14528
- Newlands College
- John Topp
- jtopp&newlands.school.nz
-14529
- FHPWireless
- Peter Sugiarto
- peter.sugiarto&fhpwireless.com
-14530
- Robert Baptista
- Robert Baptista
- robert&thebabtistas.com
-14531
- Blackwell Consulting Services
- John O'Leary
- john.oleary&bcsinc.com
-14532
- The Asylum
- Sean Hanson
- admin&theasylum.org
-14533
- Apoteket AB
- Bjorn Sjoholm
- bear&europoint.se
-14534
- SCHIFFKO GmbH
- Axel Pruin
- axel.pruin&schiffko.com
-14535
- Europoint Networking
- Jan Wunsche
- jan&europoint.se
-14536
- Inceritus
- Dan Karlsson
- dan.karlsson&inceritus.com
-14537
- TMP Consultoria de Informatica S/C Ltda
- Sergio de Souza Prallon
- iana&tmp.com.br
-14538
- Beijing SinceTimes Communication Co., Ltd.
- Eric Zhao
- gzhao&sincetimes.com.cn
-14539
- realprogrammers.com
- Paul Makepeace
- cid&realprogrammers.com
-14540
- Leszek Pisarek
- Leszek Pisarek
- leszek&man.poznan.pl
-14541
- DeanO
- Dean Rochester
- rockie12&dtnspeed.net
-14542
- Verizon ESG
- Alan Watt
- alan.watt&verizon.com
-14543
- N30D
- Ivan Aguilar
- aguilar&n30d.com
-14544
- Shanghai Posts&Telecommunications Equipment CO., Ltd.
- Rison Han
- jishuzx&shpte.com
-14545
- ICT, Academy of Science, CHINA
- Li Zonghai
- lzh&ncic.ac.cn
-14546
- NTO "IRE-POLUS"
- D.E Kondrashin
- dkondrashin&ntoire-polus.ru
-14547
- Neue Zurcher Zeitung
- Giovanni Pelliccia
- g.pelliccia&nzz.ch
-14548
- Autovalley
- Dominique Garnier
- dominique.garnier&autovalley.fr
-14549
- Awanim
- JP Speyart van Woerden
- europe&awanim.com
-14550
- Metaware S.p.A
- C. Calisti
- c.calisti&metaware.it
-14551
- GSI mbH
- Joerg-Uwe Diener
- gsi&gsi-berlin.de
-14552
- Rison Craft
- Rison Han
- risonhan&sina.com
-14553
- DaimlerChrysler Corp.
- Simon H. Wu
- suw&daimlerchrysler.com
-14554
- VU MIF
- Vilius Alisauskas
- vi&uosis.mif.vu.lt
-14555
- CMGCC
- Brent Calder
- calder&uthscsa.edu
-14556
- Graven Software
- S. Edward Kelly
- sekelly&gravensoftware.com
-14557
- Infowave Software Inc.
- Alex Cruise
- acruise&infowave.com
-14558
- SunGard BSR, Inc.
- Jonathan Carpenter
- jonathan.carpenter&sungardbsr.com
-14559
- Mondru AB
- Jens Jakobsen
- info&mondru.com
-14560
- TSCNet, Inc.
- Mike Jackson
- mhjack&tscnet.com
-14561
- Vocent Solutions
- Ian Forde
- sysadmin&vocent.com
-14562
- e-Project Solutions Pte Ltd
- Tan Hau Jye
- haujye&epsoln.com
-14563
- National Information and Communication Technology Australia
- Kim Holburn
- kim.holburn&anu.edu.au
-14564
- elbers.com
- Henk Elbers
- henk&elbers.com
-14565
- Z-Force, Inc.
- Peter Nickolov
- peter&z-force.com
-14566
- BMF
- Heike Fehlau
- heike.fehlau&bmf.bund.de
-14567
- Coventry University Enterprises Ltd
- Dave Boyton
- d.boyton&cad.coventry.ac.uk
-14568
- Weiser
- Michael Weiser
- michael&weiser.saale-net.de
-14569
- Heidelberger Druckmaschinen AG
- Dieter Meergraf
- dieter.meergraf&heidelberg.com
-14570
- Majentis Technologies Inc.
- Gerald Brandt
- gbr&majentis.com
-14571
- Atomz Corporation
- Ben Smith
- support&atomz.com
-14572
- EDIWISE
- Eric Wee
- ericw&ediwise.com
-14573
- Abest Research Corp.
- Eric Wong
- ewong&abestrch.com
-14574
- Cellicium SA
- Patrick Remy
- support&cellicium.com
-14575
- Attention Software, Inc.
- Kelly Oglesby
- koglesby&attentionsoftware.com
-14576
- Total Network
- Hugo Martinez
- hmartinez&cti.com.ar
-14577
- ForestExpress, LLC
- John Goetzman
- jgoetzman&forestexpress.com
-14578
- Geac Library Solutions
- Ben Fersenheim
- ben.fersenheim&geac.com
-14579
- Q Linux Solutions, Inc.
- Michael J. Maravillo
- mike.maravillo&q-linux.com
-14580
- The Manticore Group
- Devin Watson
- dmwatson&comcast.net
-14581
- ManaSoft
- Jeff Barnes
- jeff.barnes&mnsft.com
-14582
- LUZ Engenharia Financeira
- Ailton Andrade de Oliveria
- ailton&luz-ef.com
-14583
- TruTeq Wireless
- Deon van der Merwe / Tiann van Aardt
- ianasnmp&truteq.co.za
-14584
- Celestix Networks
- KokMeng Loh
- kokmeng&celestix.com
-14585
- Compass Internet
- Ronald C. Rivera
- ronald&compass.com.ph
-14586
- Tmax soft
- Hyunik Na
- hina&tmax.co.kr
-14587
- Technological Centre "Tushino" CB RF
- Leonid Toker
- tlb&cbr.ru
-14588
- Neosymmetria
- Aurimas Valionis
- av&neosymmetria.com
-14589
- Sicap Ltd
- Louis-Pierre Gagnaux
- louis-pierre.gagnaux&sicap.com
-14590
- Passave Inc.
- Ariel Maislos
- ariel.maislos&passave.com
-14591
- ncc network consulting GmbH
- Melhem El-Achkar
- mel&ncc-consulting.de
-14592
- iOrange - Internet Software and Service GmbH
- Bernhard Lukassen
- bernhard.lukassen&iorange.net
-14593
- Dyode
- David Jones
- djjones419&aol.com
-14594
- Rudolf Bahr
- Rudolf Bahr
- quasi&web.de
-14595
- BillReilly
- William Reilly
- william.j.reilly&verizon.net
-14596
- Martin Wismans GmbH
- Benedikt Wismans
- benedikt.wismans&wisnams.com
-14597
- DolphinSearch, Inc.
- Kelly Roestel
- kelly&dolphinsearch.com
-14598
- USDS
- Kay Schaefer
- kay.schaefer&web.de
-14599
- Corman
- Tome Serge
- serge.tome&corman.be
-14600
- CryptAll Limited
- Dermot Dunnion
- ddunnion&cryptall.com
-14601
- Baazee.com
- Sureshbabu Nair
- suresh&baazee.com
-14602
- Interval Media
- Jean-Marie White
- jmwhite&interval.com
-14603
- Cyberport.de GmbH
- Silvio Krah
- skrah&cyberport.de
-14604
- Commvault Systems
- Muath Ali
- mali&commvault.com
-14605
- Wesleyan University
- Vasilios Hoffman
- vhoffman01&wesleyan.edu
-14606
- Hewlett-Ward Inc.
- Stephen Ward
- stephen.ward&hewlett-ward.com
-14607
- Futuro Technologies Inc
- Jose Valverde
- jose&futurotech.com
-14608
- Transfinity Corp
- Robert Dempsey
- bdempsey&transfinity.com
-14609
- Todito.com S.A. de C.V.
- Elias Ortiz Lopez
- elias&iscor.com.mx
-14610
- Solutions First
- David Kempe
- david&solutionsfirst.com.au
-14611
- Web-Alm GmbH
- Wolfgang Ocker
- weo&web-alm.net
-14612
- Linköping University
- Kent Engström
- komm&unit.liu.se
-14613
- Ecora
- Debbie Glidden
- debbie.glidden&ecora.com
-14614
- AvantCom Corporation
- Larry Simmons
- lsimmons&avantcom.com
-14615
- Vivato Inc.
- Larry Simmons
- larry_simmons&vivato.net
-14616
- University of Arkansas at Little Rock
- Rogers Davis
- redavis1&ualr.edu
-14617
- Diseños Electronicos
- Juan C Galvez
- jcgalvez&telesal.net
-14618
- Mennen Medical
- Nurit Weiss
- nurit&mmi.co.il
-14619
- Quadrox Inc.
- Luc Vancraen
- luc&quadrox.be
-14620
- Saint-Gobain
- Marc Pietrala
- marc.pietrala&saint-gobain.com
-14621
- Wendy's International
- Becky Bramble
- becky_bramble&wendys.com
-14622
- VTLS Inc
- Fred A. Miller
- millert&vtls.com
-14623
- Riverstyx Internet
- Alan Evetts
- alan&riverstyx.net
-14624
- vergerus
- Erik Lickerman
- elickerman&ameritech.net
-14625
- Servecomm
- Janus Hao
- janush&pacbell.net
-14626
- Reuters
- Deyan Bektchiev
- deyan.bektchiev&reuters.com
-14627
- Idt Corp
- Serge Aleynikov
- serge&hq.idt.net
-14628
- ResEl
- Benoit Peccatte
- benoit.peccatte&enst-bretagne.fr
-14629
- SourceTech AB
- Bjarne Ingelsson
- bjarne&sourcetech.se
-14630
- Binary Systems Inc
- Gerry Dubois
- gerry&binary-systems.com
-14631
- American Institute of Physics
- Eileen Coles
- ecoles&aip.org
-14632
- Via Internaathional
- Rodrigo Zarth
- rodrigo&via-intl.com.br
-14633
- Nuberry Ltd
- David S Roberts
- dsroberts&nuberry.co.uk
-14634
- Itool Systems
- Bruno Medici
- bmedici&atomis.com
-14635
- daviesco
- Derek Davies
- ddavies&ddavies.net
-14636
- Ontain Corporation
- Dave Edelstein
- dave.edelstein&ontain.com
-14637
- Solectron
- Trevor MacHattie
- TrevorMacHattie&solectron.com
-14638
- Concurrent Reality Pty Ltd
- Andrew Kent
- andrew&reality.com.au
-14639
- HXTP
- John Havard
- jhavard&hxtp.com
-14640
- Wurley Solutions
- Deon George
- dizzy&wurley.net
-14641
- Raymond James Financial
- Don Richmond
- drichmond&it.rjf.com
-14642
- 104.com
- Nobuhiro Shitoh
- ns&104.com
-14643
- Future Beacon, Inc.
- Jim Trek
- admin&futurebeacon.com
-14644
- HiFlyCom Corp.
- Lei Xiang Dong
- lmd&hiflycom.com.cn
-14645
- W-ibeda High Tech. Develop. Co. Ltd.
- Yang Aihe
- amyyang&w-ibeda.com
-14646
- buptNKL
- Zhang Lun Yong
- folke&sohu.com
-14647
- Rossberry Consulting
- Jim Wildman
- jim&rossberry.com
-14648
- SurfNShop E-Commerce Inc.
- Denis Gilbert
- denis.gilbert&surfnshop.com
-14649
- holleyism.com
- Adam Holley
- snmp&holleyism.com
-14650
- Lead Up Software
- David Horton
- david_horton&acslink.net.au
-14651
- T-Systems International GmbH SL NWS
- Volker Görg
- V.Goerg&t-online.de
-14652
- University of St. Thomas
- Peter Downs
- padowns&stthomas.edu
-14653
- Metaways Infosystems GmbH
- Hermann Thaele
- h.thaele&metaways.de
-14654
- MUZO, a.s.
- Tomas Fencl
- tfencl&muzo.com
-14655
- Gatespace
- Björn Johansson
- bjorn.johansson&gatespace.com
-14656
- 4IT S.A.
- Krzysztof Woznica
- kw&b3.4it.pl
-14657
- Universita' degli Studi di Parma
- Fausto Pagani
- postmaster&unipr.it
-14658
- Dieter Kluenter System Beratung
- Dieter Kluenter
- dkluenter&gmx.de
-14659
- Vividlink Detlef Ingendorf
- Detlef Ingendorf
- inge&vividlink.de
-14660
- Fachhochschule Wiesbaden
- Markus Schmid
- schmid&informatik.fh-wiesbaden.de
-14661
- KAV-EMB
- Franz Hoheiser-Pförtner
- franz.hoheiser-pfoertner&wienkav.at
-14662
- Bid-Owl Bildung im Dialog Ostwestfalen-Lippe
- Harald Selke
- hase&upb.de
-14663
- IXIF Limited
- Mark Gillett
- info&ixif.com
-14664
- Init Systems
- Brian Jonnes
- brian&init.co.za
-14665
- Comlab Telecommunications inc
- John Ahern
- jahern&comlab.com
-14666
- McLeod Lake Indian Band
- Keith Mastin
- kmastin&mcleodlake.com
-14667
- NextiraOne LLC
- Jose Rodriguez
- jose.rodriguez&ctilab.com
-14668
- ViaSat, Inc., Acceleration Research and Technology (formerly 'Intelligent Compression Technologies')
- David Lerner
- dlerner&viasat.com
-14669
- Systemhaus x-Team
- Adalbert Michelic
- am+iana&x-team.at
-14670
- MTX Networks Inc.
- Shawn Clark
- sc&mtxnet.com
-14671
- GenFour Communications, LLC
- Kurt Wise
- kurt.wise&blueshifttelecom.com
-14672
- Datamaxx Applied Technologies Inc
- Tuomo Stauffer
- Tuomo.Stauffer&datamaxx.com
-14673
- Prefeitura Municipal de Alegrete
- Júlio César de Carvalho Lopes
- jccl&via-rs.net
-14674
- InfoQuality Consultoria em Informática
- Júlio César de Carvalho Lopes
- jccl&via-rs.net
-14675
- Centell Kingdom Technologies Corporation Shanghai Branch
- Qianjun
- lanziqian&hotmail.com
-14676
- Obsidian Systems
- Elardus Viljoen
- elardus&obsidianlabs.com
-14677
- geekhosting
- F Meijer
- frank&geekhosting.nl
-14678
- BFW Informationssysteme GmbH
- Markus Felten
- Markus.Felten&bfw-informationssysteme.de
-14679
- Hansard International Ltd
- Kevin Luff
- kevin.luff&hansard.com
-14680
- Bright Grey
- Jim McCann
- JMCCANN&SCOTTISHLIFE.CO.UK
-14681
- Tixoronet Vertriebsgesellschaft mbH
- Karsten Beckmann
- snmp&tixoro.net
-14682
- Asopos de Vliet
- Remco Nabuurs
- rnabuurs&liacs.nl
-14683
- Centell Kingdom Technologies Corporation Shanghai
- Li Ying
- liying&centellkingdom.com
-14684
- System Management Network
- Thomas Wahl
- ThomasWahl&system-management.dk
-14685
- DataPower Technology, Inc.
- Eugene Kuznetsov
- eugene&datapower.com
-14686
- Megasoft Limited
- Srilalitha GowriSankaran
- srilalitha.gowrisankaran&megasoft.com
-14687
- Halion Systems
- John Brinnand
- john_brinnand&yahoo.com
-14688
- Systems Experience
- Jason J. Penn
- penn&netcom.com
-14689
- Urbancode Software Development, Inc.
- Maciej Zawadzki
- mbz&urbancode.com
-14690
- Greymoose
- Gary Bailey
- gary&greymoose.co.uk
-14691
- Fingerlos
- Gerald Fingerlos
- gerald&fingerlos.at
-14692
- Integrators AG
- Patrick Spruyt
- ps&integrators.ch
-14693
- CISL Systems Ltd.
- Juan Borrás
- juan.borras&cislgroup.com
-14694
- bmd wireless AG
- Marc Woog
- marc.woog&bmdwireless.com
-14695
- Herrmannsdoerfer Software Entwicklung
- Harald Herrmannsdörfer
- harry&herrmannsdoerfer.de
-14696
- Absolut OK
- Nenad Radosavljevic
- nenadr&absolutok.com
-14697
- RRDtool
- Tobias Oetiker
- tobi+rrdtool&oetiker.ch
-14698
- CSRI "Elektropribor"
- Ivan Stepanov
- elprib&online.ru
-14699
- Hagen Software Inc.
- Colin Keith
- snmpadmin&hagenhosting.com
-14700
- frontiertech
- Shen cheng
- shencheng&frontiertech.info
-14701
- Persist Technologies
- Gagan Bhatia
- gbhatia&persistcorp.com
-14702
- Neusoft Digital Medical System CO., LTD.
- Huaizhi Wang
- wanghz&neusoft.com
-14703
- MIYAKAWA ELECTRIC WORKS LTD.
- Masayoshi Soga
- m.soga&msk.co.jp
-14704
- PingoS e.V.
- Andreas Kalbitz
- felix&schulnetz.org
-14705
- Province of British Columbia
- Colin Kopp
- ipadmin&gov.bc.ca
-14706
- sFlow.org
- Peter Phaal
- peter.phaal&sflow.org
-14707
- Tatara Systems, Inc.
- Christine Ross
- chris&tatarasystems.com
-14708
- Graceland University
- James S. Jones
- jsjones&graceland.edu
-14709
- Reactivity, Inc.
- Jared Smith-Mickelson
- jaredsm&alum.mit.edu
-14710
- Taua Biomatica
- Eduardo Rosemberg
- eduardorosemberg&taua-biomatica.com.br
-14711
- Vaka Technology Limited
- Owen Wong
- owen.wong&vaka.com
-14712
- Sascha Growe
- Sascha Growe
- growe&webflash.dyndns.org
-14713
- Blacksburg Electronic Village
- Richard Phipps
- hostmaster&bev.net
-14714
- Questra Corporation
- Scott Mcdermott
- oidadmin&questra.com
-14715
- ManyStreams Inc.
- Jyoti Soni
- jyoti&noida.manystreams.com
-14716
- British Columbia Institute of Technology
- Bruce Link
- bruce_link&bcit.ca
-14717
- sunHosting company
- Alex Lam Kam Chor
- alexlam&msolutions.com.hk
-14718
- BKit Gruppen AB
- Stefan Bystam
- stefan.bystam&bkit.se
-14719
- Harmony Gold Operations
- Murray Bryant
- murray.bryant&harmonygold.com.au
-14720
- HD-info
- Zoran Hrvoic
- zoran&hdinfo.hr
-14721
- Techem AG
- Florian Racky
- florian.racky&techem.de
-14722
- Peter Shillan
- Peter Shillan
- objectwiz&lycos.co.uk
-14723
- canal systems GmbH
- Mauro Canal
- mcanal&canalsystems.net
-14724
- Business Objects
- Marcel Hassenforder
- marcel.hassenforder&businessobjects.com
-14725
- SaM Solutions
- Alexey Yantchuk
- a.yantchuk&sam-solutions.net
-14726
- Server Side S.A
- Alejandro Guerrieri
- aguerrieri&digimedia.com.ar
-14727
- Henrik Edlund
- Henrik Edlund
- henrik&edlund.org
-14728
- Pronet sp. j.
- Dariusz Mizerny
- dmizerny&pronet.pl
-14729
- Innerwall
- Steve Carlander
- scarlander&innerwall.com
-14730
- Telecom Italia Lab
- Galliano Sergio
- Sergio.Galliano&tilab.com
-14731
- Christian Kuelker
- Christian Kuelker
- ckuelker&rpm.uni-bielefeld.de
-14732
- Nodots Development, Inc.
- Ken Riley
- kenr&nodots.com
-14733
- YASKAWA INFORMATION SYSTEMS Corporation
- WATANABE Daisuke
- watanabe&ysknet.co.jp
-14734
- FLOW Communications
- Michael S Cox
- mcox&flow.com.au
-14735
- ESOO
- Victor V Ismakaev
- vic&mail.esoo.ru
-14736
- ghip systems GmbH
- Astrid Hanssen
- astrid.hanssen&ghipsystems.com
-14737
- Global Grid Forum
- Thomas Brown
- tbrown&gridforum.org
-14738
- Henderson & Co
- Philip Henderson
- philhenderson&onetel.com
-14739
- rleague.com
- Chris Riediger
- chris&rleague.com
-14740
- TechAngle Inc.
- David Hahn
- dhahn&techangle.com
-14741
- Catalyst International, Inc.
- Toby Meehan
- tmeehan&mke.catalystwms.com
-14742
- Digital Multitools Inc.
- Peter D. Gray
- peter&dmtz.com
-14743
- Wachovia Bank
- Steven H. Roberts
- Steven.Roberts&wachovia.com
-14744
- TeleNova Research and Development Centre
- Eduardo D'Avila
- edavila&telenova.net
-14745
- Pumpkin Networks
- Eunsoo Park
- espark&pumpkinnet.com
-14746
- Interstorm, Inc.
- Michael D. Warner
- michael.warner&interstorm.com
-14747
- Vision Internet Services
- Andrew Veitch
- ajv-iana&visn.co.uk
-14748
- Computer Support Systems Pty. Ltd.
- Michael Leggett
- mleggett&csspl.com.au
-14749
- University of Rochester
- Sean Singh
- sean.singh&rochester.edu
-14750
- Aware Servers, Inc.
- Amit Shah
- shahamitj&hotmail.com
-14751
- SkyWare Communications Limited
- Nelson Lee
- nelson&sky-ware.com
-14752
- Proware Technology Corp.
- Tony Chang
- tony&proware.com.tw
-14753
- ppyworld
- Patrick Pyfferoen
- patrick&ppyworld.com
-14754
- Koch Mikrosysteme AG
- Sebastiaan Krist
- skr&kms.ch
-14755
- LYNX Technik AG
- Henning Schmidt
- Henning.Schmidt&lynx-technik.com
-14756
- ProgTec GmbH
- Markus Ribi
- mribi&progtec.ch
-14757
- Groiss Informatics GmbH
- Michael Dobrovnik
- michi&groiss.com
-14758
- BPS Co. Ltd.
- Hersonsky Mihail
- hmike&smeda.ru
-14759
- Adesium Réseaux et Services
- D'Aversa Pascal
- pascal.d_aversa&adesium.com
-14760
- Wincor Nixdorf International GmbH
- Rolf Müller
- rolf.mueller&wincor-nixdorf.com
-14761
- Ubisecure Solutions
- Petteri Stenius
- petteri.stenius&ubisecure.com
-14762
- intarsys consulting GmbH
- Dr. Bernd Wild
- bernd.wild&intarsys.de
-14763
- Video-Net Systems
- Gaetan Gilliot
- gaetan.gilliot&video-net.co.za
-14764
- MisrNet, S.A.E.
- Ihab Hussein
- ihussein&misrnet.com.eg
-14765
- Grafix Profesional S.R.L.
- Ciprian Asmarandei
- ciprian.asmarandei&grafix.ro
-14766
- AVICONSULT
- Eric PARTHUISOT
- eric.parthuisot&aviconsult.fr
-14767
- BWXT-PANTEX
- Edward Claxton
- eclaxton&pantex.com
-14768
- AGMarine, Inc.
- Devon Liles
- devonl&agmarine.com
-14769
- Sybari Software, Inc.
- Joseph Barilla
- jbarilla&sybari.com
-14770
- Teleport Consulting and Systemmangement
- Rainer Rudigier
- rainer&tele.net
-14771
- Computer Sciences Corporation
- Bill Annocki
- wannocki&csc.com
-14772
- Neptune Project
- Michael Kenney
- mikek&apl.washington.edu
-14773
- Engitech Ltd.
- Andrea Bacchetta
- andrea.bacchetta&engitech.ie
-14774
- GNU Internet
- James Golovich
- james&gnuinter.net
-14775
- Peak Internet
- Peak Hostmaster
- hostmaster&peak.org
-14776
- Mystic Coders
- Andrew Lombardi
- andrew&mysticcoders.com
-14777
- izenpe s.a.
- Iñigo Barreira
- inigo_barreira&hotmail.com
-14778
- GEV - Ecole des Mines
- Laurent Menu-Kerforn
- laurent.menu-kerforn&emn.fr
-14779
- e2 Technology Inc.
- Yen-Shuo Su
- MichaelSu&e2Tech.com
-14780
- KAEVEE
- Venkatesh. K
- venkatesh&kaevee.com
-14781
- ThoughtPort Authority of Chicacgo
- Matthew Sayler
- sayler&speedsite.com
-14782
- Cole Innovations, Inc.
- Frank R. Cole, Jr.
- frank&coleinnovations.com
-14783
- Asociacion para la Promocion del Arte a traves de Internet
- Manuel Mollar
- mollar&mobelt.com
-14784
- AltaTrust
- Herve Doreau
- herve.doreau&alta-trust.com
-14785
- Five4321
- James Ruthven
- james&fusionit.com
-14786
- Open Network Solutions Ltd
- Les Smithson
- lsmithso&hare.demon.co.uk
-14787
- ZYM Linux
- Zhao yongming
- condor&webmaster.com.cn
-14788
- William D. Petitt
- Bill Petitt
- wdpetitt&yahoo.com
-14789
- Principal Financial Group
- Craig Treptow
- treptow.craig&principal.com
-14790
- Statsbiblioteket
- Jens Henrik Leonhard Jensen
- jhlj&statsbiblioteket.dk
-14791
- Nakua Technologies
- Luis Rodriguez Berzosa
- lrodriguez&nakua.com
-14792
- Data Conseil
- Michael Monserrat
- mmonserrat&dataconseils.fr
-14793
- System-Entwicklung Dietrich Schulten
- Dietrich Schulten
- info&system-entwicklung.de
-14794
- Banco Herrero
- David Soler
- dsoler&lacaixa.es
-14795
- Intellocity
- Thomas Lemmons
- tom&intellocity.com
-14796
- AUCOS elektronische Geraete GmbH
- Mr. Pelstring
- franz-josef.pelstring&aucos.de
-14797
- DynaStar Communications
- Ed Page
- epage&dynastarcom.com
-14798
- NETdelivery Corporation
- Andrew Diederich
- andrew&netdelivery.com
-14799
- StarNET Services
- Marc-Andre' Husyk
- MA.Husyk&starnet-services.biz
-14800
- Legra Systems
- Michael R. Cook
- cook&legra.com
-14801
- tangro software components gmbh
- Hans-Ulrich Teufel
- hut&tangro.de
-14802
- Inder.Net
- Mads Peter Bach
- iana-contact&inder.net
-14803
- Schubert Informationssysteme
- Thomas Schubert
- thomas&thomas-schubert.de
-14804
- Innotrac Diagnostics Oy
- Tom Javen
- tom.javen&innotrac.fi
-14805
- AFP7
- Klaus Pedersen
- 9830&e.iha.dk
-14806
- Tadiran Electronic Systems
- Amir Berkovich
- amirb&tadsys.com
-14807
- FrIc-Net
- Frank Ickstadt
- frank.ickstadt&fricnet.de
-14808
- The Sage Colleges
- John Chao
- chaoj&sage.edu
-14809
- Datasul MED S.A.
- Ricardo Alexandre de Oliveira
- dcc2jsd&udesc.br
-14810
- Advanced Digital Broadcast Ltd.
- Jaroslaw Mirkowski
- J.Mirkowski&adbglobal.com
-14811
- Xilith LLC
- Robin Berjon
- robin.berjon&expway.fr
-14812
- Cedars-Sinai Health Systems
- Spencer L. SooHoo
- spencer.soohoo&cshs.org
-14813
- Fujitsu Transaction Solutions Inc.
- Gerry Rice
- grice&ftxs.fujitsu.com
-14814
- CaroTechnology BV
- Jeroen Wortelboer
- info&carotechnology.com
-14815
- Datasul S.A.
- Ricardo Alexandre de Oliveira
- ricardo_oliveira&datasul.com.br
-14816
- Thomas Polnik
- Thomas Polnik
- polnik&web.de
-14817
- 4RF Communications Ltd.
- Richard Laing
- richard.laing&4rf.com
-14818
- Voice Mobility, Inc.
- Cliff McCollum
- snmp&voicemobility.com
-14819
- University of Cyprus
- Marios Dikaiakos
- grid&ucy.ac.cy
-14820
- net outremer caledonie
- Alain Cocconi
- cocconi&net-outremer.nc
-14821
- Stibo
- Jorgen Bjerg
- jbje&stibo.com
-14822
- FaJo.de
- Falk John
- falk.john&fajo.de
-14823
- Aruba Networks Inc
- Ravi Mulam
- rmulam&arubanetworks.com
-14824
- Centaur Technology Inc
- Eric Anderson
- anderson&centtech.com
-14825
- Aldata Solutions S.A.
- Robert Bakic
- rbakic&gold-solutions.com
-14826
- Adage Networks
- Jaswant Pujari
- jpujari&adagenetworks.com
-14828
- Sonorys Technology GmbH
- Günther Niedoba
- Guenther.Niedoba&sonorys.at
-14829
- Centra Software
- Vikas Sinha
- vsinha&centra.com
-14830
- UPtime Systemlösungen
- David Höhn
- dh&uptime.at
-14831
- voetter.at
- Armin Voetter
- armin&voetter.at
-14832
- ESO Consortium
- Jeff Case
- case&snmp.com
-14833
- Portal Solutions Technology, Inc.
- Ken Geng
- kgeng&1088.net
-14834
- Konsec GmbH (formerly 'mediales GmbH')
- Andreas Mack
- registry&konsec.com
-14835
- INFOTEC
- Sergio Martinez
- serch&infotec.com.mx
-14836
- VARTA Microbattery GmbH
- Rainer Wegrath
- rainer.wegrath&varta.com
-14837
- Trenchant Consulting, LLC
- Kevin Wanner
- wanner&trenchantconsulting.com
-14838
- National Management & Organization SA
- Mr. Kostas Papageorgiou
- kpapag&ethnokarta.nbg.gr
-14839
- Newtech-BT Ltd
- Georgi Manev
- office&newtech-bt.bg
-14840
- Smartwave SA
- alban meunier
- ameunier&smartwavesa.com
-14841
- LEA (Laboratoire Europeen ADSL)
- Regis Urvoy
- regis.urvoy&leacom.fr
-14842
- LANergy
- David Webster
- davidw&lanergy.com
-14843
- Satnet SARL
- Alain Cocconi
- cocconi&satnet.nc
-14844
- Upfront Systems
- Roché Compaan
- roche&upfrontsystems.co.za
-14845
- Engineering Ingegneria Informatica S.p.A.
- Sergio Raspaolo
- sysman&eng.it
-14846
- Padtec Optical Components and Systems
- Daniel Araujo
- daniel&padtec.com.br
-14847
- Order of Preachers
- Michael J O'Rourke
- mike.orourke&op.org
-14848
- better networks
- Lutz Schulze
- lschulze&betternetworks.de
-14849
- Corporate Computer Services, Inc.
- Gary Roediger
- roediger&fnal.gov
-14850
- Arc Solutions Limited
- Muhammad Usman
- umuhammad&arcsolutions.com
-14851
- Storage Networking Industry Association
- Arnold Jones
- td&snia.org
-14852
- Kinpo Electronics, Inc.
- WU WU-HSIAN
- stn&kinpo.com.tw
-14853
- CipherQuest Ltd.
- Michael Garceau
- mgarceau&cipherquest.com
-14854
- Beijing Hisense Digi_Tech Co.,Ltd.
- JiangBin
- jiangbin&hisencyber.com
-14855
- CERAMISTA Recom Serviex
- Marco Antonio Reginatto
- reginato&tnsys.com.br
-14856
- Trinitel Corporation
- Eric Anderson
- eric&trinitel.com
-14857
- XCAT Co.,Ltd.
- Takehiko Senoo
- tseno&xcat.co.jp
-14858
- Azundris Consulting
- Tatjana Azundris von Nürnberg
- ldap&azundris.com
-14859
- Lawo AG
- Stefan Mutschler
- stefan.mutschler&lawo.de
-14860
- GWS mbH
- Ludger Fuehner
- xgwsfue&gws-muenster.de
-14861
- Britannia Building Society
- Jack Dempsey
- jack.dempsey&britannia.co.uk
-14862
- Ministerio de Administraciones Públicas
- Isabel Fábregas Reigosa
- isabel.fabregas&map.es
-14863
- ATMAVA Ltd
- Joseph Lee
- info&atmava.org
-14864
- TNCE
- Jason Tsai
- jason_tsai&tnce.com.tw
-14865
- Interplex Telecom
- Dominic Blais
- db&interplex.ca
-14866
- Cottonwood Technology Group, Inc.
- Marian Cantu
- cantu&ctgi.com
-14867
- Halcyon Software Limited
- Richard Harriss
- richard.harriss&halcyonsoftware.com
-14868
- MAV INFORMATIKA Ltd.
- Róbert Kisteleki
- kistelekir&mavinformatika.hu
-14869
- Saudi Telecom
- Majed S. Alsubaie
- mssubaie&stc.com.sa
-14870
- AVAYA
- Vasanth Ignaci
- vignaci&avaya.com
-14871
- Inter-Land.Net
- Frederic Rouyre
- rfr&inter-land.net
-14872
- AVK-AdherSIS Inc.
- Jean-Philippe Dionne
- jp.dionne&adhersis.ca
-14873
- Broadband services
- Larry Benson
- lbenson&bsi-maps.com
-14874
- Rockstorm Technology AB
- Jens Nilsson
- jens&rockstorm.se
-14875
- Leadglobe
- John Wagner
- jsmwagner&yahoo.com
-14876
- Open Text Corporation
- Jason McPeak
- jmcpeak&opentext.com
-14877
- Plexus Technology Ltd.
- Alun Mills
- alun&plexus-technology.com
-14878
- vcrDev
- Vasco Rocha
- ei97028&fe.up.pt
-14879
- woko
- Frank Sykes
- frank&woko.net
-14880
- Systemhaus Kalkhoff
- Christian Kalkhoff
- info&kalkhoff.net
-14881
- QunaTech
- Paul Wilson
- elviscious&rmci.net
-14882
- smartBridges
- Nimesh Parikh
- Nimesh&smartbridges.com
-14883
- antek networks INC.
- Howard Chang
- howard&antek.com.tw
-14884
- Exelmon Technologies
- Makis Gaitanidis
- makis&exelmon.com
-14885
- JSC RPE "Polygon"
- Andrey Lyubimcev
- alyubimcev&plgn.ru
-14886
- AIR Co., Ltd.
- Soumu Team
- admin-g&air.co.jp
-14887
- Nomura Research Institute, Ltd.
- Yuzo Ishida
- y-ishida&nri.co.jp
-14888
- Das Werk
- Marcus Herbert
- m.herbert&das-werk.de
-14889
- openforum.us
- George Scott
- glscott&openforum.us
-14890
- Team-Konzept Informationstechnologien GmbH & Co KG
- Peter Ritter
- domadm&team-konzept.de
-14891
- Lawseal
- Gordon Brewster
- gordonbrewster&lawscot.org.uk
-14892
- Netsynt S.p.A.
- Gennaro Brosco
- a.borioni&netsynt.it
-14893
- NOXA
- Bjoern Swierczek
- bsw&noxa.de
-14894
- Teatica
- Felipe Camargo Machado
- felipecm&zipmail.com.br
-14895
- Propel Software Corporation
- Steve Halliburton
- shallib&propel.com
-14896
- Attingo
- Wichert Akkerman
- iana&attingo.nl
-14897
- York Consulting
- Brent York
- brent&york-consulting.com
-14898
- Access Communications
- Scott Wunsch
- scott.wunsch&accesscomm.ca
-14899
- Town of Suffield
- Rob Hepner
- rhepner&suffieldtownhall.com
-14900
- Integrated Concepts International
- Salina Fung
- salina&icil.net
-14901
- Vodafone Libertel NV
- Edwin vd Heuvel
- edwin.van.den.heuvel&vodafone.nl
-14902
- DATAmark
- Xavier Trochu
- xavier&datamark.fr
-14903
- Digirose Technology Co., Ltd.
- Wenshan Liou
- wsliou&digirose.com
-14904
- TwTec
- Tim Woermann
- tw&outerworld.de
-14905
- DEVAU Lemppenau GmbH
- Prof. Dr. Lemppenau
- wle&bocholt.fh-ge.de
-14906
- NVISION, INC.
- Bonnie A. Galvin
- BonnieGalvin&nvision1.com
-14907
- NOC-CCE-USP
- Isabel Chagas
- mit&usp.br
-14908
- Upcast Inc
- Chip Vanek
- chip&upcast.com
-14909
- Igenda Software
- James Shipley
- jshipley&igendasoft.com
-14910
- IP Solutions, Inc.
- Timothy Carter
- tim&ipsolutionsinc.com
-14911
- RFP Depot, LLC.
- John Koyle
- jkoyle&rfpdepot.com
-14912
- Smiths Aerospace
- Gerald Van Baren
- gerald.vanbaren&smiths-aerospace.com
-14913
- Retriever Communications
- Graham Carey
- Graham.Carey&retriever.com.au
-14914
- Vexus Consulting Group
- Mike Glover
- mike&vexus.ca
-14915
- ASPire Technologies(Shenzhen) Ltd
- Zhang Jin
- zhangjin&aspire-tech.com
-14916
- Utah Interactive, Inc.
- Lin Salisbury
- lin&utahinteractive.org
-14917
- SimpleTech
- Glenn Jystad
- gjystad&simpletech.com
-14918
- Algar Telecom Leste
- Guilherme Freitas
- guilherme.freitas&atl.com.br
-14919
- Singlestep Technologies
- Joshua McClintock
- noc&singlestep.com
-14920
- Mineco
- Mikel Nelson
- iana&mikelnelson.net
-14921
- CTW Computer
- Christian Ullrich
- chris+ctw&chrullrich.de
-14922
- Realnode Ltd
- Mattias Nordstrom
- nordstrom&realnode.com
-14923
- Abilene Christian University
- Hab Adkins
- oid_info&acu.edu
-14924
- The NewSof Group, Inc.
- Mark A. Garcia
- dnstech&newsof.com
-14925
- Wavecentral, L.L.C.
- Mark A. Garcia
- mag&wavecentral.com
-14926
- atraia.com
- R. L. Menefee
- randy&scheets.com
-14927
- DISC, Universidad Católica del Norte
- Eric Ross
- eross&disc.ucn.cl
-14928
- Unipulse
- Carlos Takahashi
- t-takahashi&unipulse.co.jp
-14929
- Onscom Co., Ltd.
- Kim Tae Woo
- webmaster&onscom.co.kr
-14930
- Solar Telecom. Technology Inc.
- Chung Hyun Jang
- chjang&solartt.co.kr
-14931
- Victoria University of Technology
- Director of IT
- helpdesk&vu.edu.au
-14932
- GuangZhou TopTeam Software Technology Co., Ltd.
- Jimmy Leung
- jimmy&gztt.net
-14933
- Chung Yuan Christian University
- eritta lin
- eritta&seed.net.tw
-14934
- Vodafone IT (Turkey)
- Murat Balkas
- o2.it&vodafone.com
-14935
- FS Walker Hughes Limited
- Norm Almond
- norm.almond&fswalkerhughes.com
-14936
- Eurotux Informática, SA
- Ricardo Oliveira
- info&eurotux.com
-14937
- Itech
- j.champliaud
- j.champliaud&itech.fr
-14938
- Exacom, Inc.
- William Haskett
- whaskett&exacom.com
-14939
- StyleeB LLC
- Austin Conger
- styleegirl&yahoo.com
-14940
- BlueCross and BlueShield of North Carolina
- Jason Weinstein
- Jason.Weinstein&BCBSNC.COM
-14941
- Inflection Systems
- Elizabeth Dougherty
- edougherty&inflectionsystems.com
-14942
- Avvio Networks
- Leo Goyette
- lgoyette&avvionetworks.com
-14943
- INNOVATION Data Processing
- Thomas J Meehan
- tmeehan&fdrinnovation.com
-14944
- Primal Technologies
- Ravindra Conway
- rconway&primaltech.com
-14945
- JBX Designs Inc
- John Boudreaux
- johnb&jbx.com
-14946
- Gothenburg University
- Jonas Öberg
- jonas&informatik.gu.se
-14947
- Kyrgyz-Russian Slavic University
- Sergey Ushakov
- sergey&verify.kg
-14948
- Hungarian Foreign Trade Bank
- Mr. Andras Hargitai
- hargitai.andras&mkb.hu
-14949
- North Building Technologies Ltd.
- Trevor Marson
- tmarson&northbt.com
-14950
- Servicios Digitales de Certificacion, S.L.
- Alberto Marco Montoya
- mollar&mobelt.com
-14951
- EFACEC SISTEMAS DE ELECTRÓNICA, S.A.
- Nuno Costa
- nfcosta&se.efacec.pt
-14952
- Eyeheight Ltd.
- Simon Pegg
- simon&eyeheight.com
-14953
- Serio Ltd
- Pete Williams
- petew&seriosoft.com
-14954
- Cingular Wireless
- Judy Espejo
- judy.espejo&cingular.com
-14955
- CANAM
- OLIVIER DELAVEAU
- oid&canam.fr
-14956
- NetGate SL
- Pablo Raíz
- wombatpal&hotmail.com
-14957
- Nissan North America
- Fred Goure
- fred.goure&nissan-usa.com
-14958
- PSC technology GmbH
- Kay Schäfer
- kay.schaefer&web.de
-14959
- CBR Yazýlým danýþmanlýk A.Þ
- Özden Turan
- ertugrul&cbr.com.tr
-14960
- Undernet
- Perry Lorier
- isomer&undernet.org
-14961
- Millennium Technology Limited
- Andrew N Dowden
- iana-oid&millentech.com
-14962
- Ingosstrakh Ltd.
- Vitaly A. Sergienko
- vitalyas&ingos.ru
-14963
- Telemetry & Communications Systems, Inc.
- David Bendrihem
- davidb&tcs.la
-14964
- Cogenit
- Francois Romieu
- romieu&cogenit.fr
-14965
- Wideinfo Corporation
- Zhenghui Zhou
- zhouzhenghui&163.net
-14966
- Linos Photonics GmbH & Co KG
- Carsten Schaub
- Schaub&Linos.DE
-14967
- horsfall.org
- Dave Horsfall
- dave&horsfall.org
-14968
- WYNIWYG
- Xiao Hui LOO
- xh.loo&wyniwyg.com
-14969
- Columbia Ultimate
- Jason Hurst
- jasonh&colubs.com
-14970
- CAM Internet
- Jean-Simon Durand
- noc&cam.org
-14971
- dlh services
- Donald Huebschman
- dhuebsch&mac.com
-14972
- Jeb
- Jean-Edouard BABIN
- Jeb&jeb.com.fr
-14973
- Deeming.net
- Jon Deeming
- jon&deeming.net
-14974
- Data Telecom OÜ
- Marko Veelma
- marko.veelma&data.ee
-14975
- BRy Tecnologia S.A.
- Marcelo Luiz Brocardo
- brocardo&bry.com.br
-14976
- softmillennium
- Mark Braksator
- mbraksator&softmillennium.com
-14977
- Wuerth Elektronik
- Oliver Windt
- oliver.windt&we-online.de
-14978
- Commerzbank AG
- Rainer Strobel
- rainer.strobel&commerzbank.com
-14979
- Core Tec Communications, LLC
- John Anderson
- john&gocoretec.com
-14980
- Guidant Corporation
- Mark Pramann
- mark.pramann&guidant.com
-14981
- Cogent Logic Corporation
- Jeff Lawson
- jeff&cogentlogic.com
-14982
- iKu Systemhaus AG
- Kurt Huwig
- iana&huwig.de
-14983
- Woaf Tech Ltd
- David Flynn
- davidf&woaf.net
-14984
- PoCo
- Bill Powell
- snmp&poco.co.uk
-14985
- Hsi Hu Serion High School
- KoChen Hu
- rex&mail.hhsh.chc.edu.tw
-14986
- Nextreaming Corporation
- Tomy Jung
- tomy&nextreaming.com
-14987
- E3Networks,LTD
- Naofumi Tamura
- tamura&e3net.co.jp
-14988
- MikroTik
- John Tully
- tully&mikrotik.com
-14989
- Cinesite Europe Ltd
- Justin davies
- support&cinesite.co.uk
-14990
- inm magic
- Danny Thuering
- danny&inm-magic.de
-14991
- RESA Airport Data Systems
- Mikael Hallkvist
- Mikael.Hallkvist&resa.fr
-14992
- Stagira
- Philippe Hermoso
- philippe&stagira.net
-14993
- IGD
- Dragana Likavec
- dragana&igd.fhg.de
-14994
- MITEQ, Inc.
- Jeff Gorman
- jgorman&miteq.com
-14995
- Netinary
- Gérard R. MICHEL
- gerard.michel&netinary.com
-14996
- Stille Design
- Sevo Stille
- Sevo_Stille&gmx.de
-14997
- SOHOware, Inc.
- Gale H. Moyer
- gmoyer&sohoware.com
-14998
- Transportation Security Administration
- James Shipley
- james.shipley&tsa.dot.gov
-14999
- Codesic
- Steve Ingersoll
- steve.ingersoll&codesic.com
-15000
- Kontron Canada Inc
- Benoit Robert
- Benoit.Robert&ca.kontron.com
-15001
- Seward Designs, Inc.
- Christopher A. Seward Sr.
- c.seward.sr&SewardDesigns.com
-15002
- Intentional Software Corporation
- Derek Simkowiak
- dereks&intentsoft.com
-15003
- IPonWEB Ltd
- Boris Mouzykantskii
- boris&iponweb.net
-15004
- RuggedCom Inc.
- Vesna Anusic
- VesnaAnusic&ruggedcom.com
-15005
- Fiba Software srl
- Alexandru Taracila
- alextara&netconsulting.ro
-15006
- P.W.P.T. Wasko sp. z o.o.
- Piotr Rybok
- p.rybok&wasko.pl
-15007
- Metro Ethernet Forum
- Dan Romascanu
- dromasca&avaya.com
-15008
- Tilaria Inc.
- Jim Tilley
- jtilley&tilaria.com
-15009
- Gplicity
- Glenn Puchtel
- gpuchtel&gplicity.com
-15010
- LogiTEL Ltd
- Mr. Andrew Henderson
- andrew.henderson&logitel.co.uk
-15011
- Revivio Incorporated
- Greg Panarello
- gregp&revivio.com
-15012
- Bernard Madoff Investment Securities
- Richard Caputo
- rcaputo&madoff.com
-15013
- Quantec, LLC
- Michael Luevane
- mikel&quantecllc.com
-15014
- 8004 Limited
- Architect Justus O. Okah-Avae
- okahavae8004&yahoo.com
-15015
- Integrated Modular Systems, Inc.
- John Mazur
- johnmazur&integratedmodular.com
-15016
- Nettiportti OY
- Matti Aarnio
- matti.aarnio+oid-registry&nettiportti.fi
-15017
- Johns Hopkins Singapore
- Matthew Seow
- matthew&jhs.com.sg
-15018
- DayDay Software LTD.
- Chen TiMeng
- iright&163.net
-15019
- Bazy i Systemy Bankowe Sp. z o.o.
- Wojciech Kosmowski
- koswoj&pro.bsb.com.pl
-15020
- Productos Profesionales de Telecomunicacion
- Daniel Fraile Vergel
- daniel&protelsa.net
-15021
- mobidot
- J.M. Hietbrink
- info&mobidot.com
-15022
- Golden Gate University
- Sanjeev Mohan
- smohan&ggu.edu
-15023
- tremium
- Udo Bremer
- udo.bremer&tremium.de
-15024
- Tougas.NET
- Damien Tougas
- damien&tougas.net
-15025
- Studentersamfundet i Trondhjem
- Bjørn Ove Grøtan
- bog&samfundet.no
-15026
- centre hospitalier de roanne
- Mr Pillet
- christophe.pillet&ch-roanne.fr
-15027
- SecCommerce Technologies AG
- Tilo Kienitz
- tk-iana&seccommerce.de
-15028
- James Collings
- Jim Collings
- jcllings&tsunamicomm.net
-15029
- Jareva Technologies, Inc
- Peter Henriksen
- phenriksen&jareva.com
-15030
- Guangzhou RCOM Communication Co., Ltd
- xiaoli
- mpnm&mail.maipu.com
-15031
- University of Melbourne, Computer Science/Grid Computing
- Steve Melnikoff
- stevexm&cs.mu.oz.au
-15032
- INQGEN Technology Co., Ltd.
- Charlie Feng
- charlie.feng&inqgen.com
-15033
- Realtime Embedded AB
- Mats Loman
- mats.loman&realtimeembedded.se
-15034
- KSolutions S.p.A.
- Gianugo Rabellino
- networking&ksolutions.it
-15035
- Partner Voxtream
- Jens Fischer
- jkf&voxtream.com
-15036
- Logical
- Niels Bech Nielsen
- nbn&logical.dk
-15037
- Shands Healthcare and Teaching Clinics, Inc.
- Gary Bennett
- gary.bennett&shands.ufl.edu
-15038
- Charles Stark Draper Laboratory, Inc
- Patrick M. Sharkey
- psharkey&draper.com
-15039
- Armedia
- Jim Nasr
- jnasr&armedia.com
-15040
- Global Aeon Pty.Ltd.
- Basil C.P. Borun
- bborun&globalaeon.com
-15041
- Poznan University of Technology
- Tomasz Kokowski
- Tomasz.Kokowski&put.poznan.pl
-15042
- vsecure
- Lior Ben Naon
- lior&v-secure.com
-15043
- Jeng-Ye Tech. Enterprise Co.,LTD.
- Ren-Han Tsou
- rhtsou&jytec.com
-15044
- Transatel
- Durand
- romain.durand&transatel.com
-15045
- MoneyAM Ltd
- Jonathan Tullett
- jonathan&moneyam.com
-15046
- ClickFox, LLC
- Ami Feinstein
- ami&clickfox.com
-15047
- Java Software Foundry
- md wills
- mdw&javasoftwarefoundry.com
-15048
- Startek Engineering, Inc.
- Kuo Meng Lu
- mlkuo&mail.startek-eng.com
-15049
- Seattle Central Community College
- Brett McCormick
- brett&nodetree.net
-15050
- Waycom International
- Philippe Muller
- pm&waycom.net
-15051
- Finkle Enterprises
- Frank Koenen
- fkoenen&vonworld.com
-15052
- Gemini Technologies Inc.
- Jason Vas Dias
- jvasdias&earthlink.net
-15053
- MeriTek Systems, Inc.
- Shabbir Chowdhury
- shabbir&meritek.com
-15054
- PASS-K
- Gerald L. Gay
- glgay&pass.korea.army.mil
-15055
- Ikegami Tsushinki Co., Ltd.
- Mitsuharu SATOH
- mituharu&rd.ikegami.co.jp
-15056
- anthonyhan.org
- anthony han
- anthonyhan&msn.com
-15057
- MORAVIAPRESS a.s.
- Radek Hnilica
- Radek&Hnilica.CZ
-15058
- CEISEC
- David Rodriguez Fernandez
- drodriguez&ceisec.com
-15059
- Baptiste Malguy
- Baptiste Malguy
- baptiste&malguy.net
-15060
- Zentic
- Francois-Xavier Cormontagne
- fxcormontagne&zentic.com
-15061
- ServuS A.S
- Faik UYGUR
- faiku&servus.com.tr
-15062
- Million Corporation
- Katsuhiko Hino
- hino&mln.co.jp
-15063
- eko systems inc
- Christopher Koelbl
- chris&ekosystems.com
-15064
- MANY sa
- Nicolas Jungers
- nj&many.be
-15065
- Mantas, Inc.
- Mona Mehta
- mona_mehta&mantas.com
-15066
- James Richardson Enterprises
- James Richardson
- james.richardson&htcinc.net
-15067
- SMTMS
- Sebastien MENANT
- s.menant&free.fr
-15068
- Beijing CAPE Computer Software Engineering Corp.
- Yujian
- yuj&cape.com.cn
-15069
- Elasto Centro
- Emiliano Beronich
- elastocentro&arnet.com.ar
-15070
- YESComm
- Gemini Ahn
- geminigem&yescomm.com
-15071
- Frontier Solution Co., Ltd.
- JB. Park
- jeibi&frontiers.co.kr
-15072
- HSB Bank AB
- Lennart Jonsson
- lennart.jonsson&bank.hsb.se
-15073
- Synad Technologies Ltd.
- Mike Moreton
- mike.moreton&synad.com
-15074
- Thus Plc.
- Ashley Burston
- ashleyb&demon.net
-15075
- Icom
- Richard De Falco
- rdefalco&icominfo.fr
-15076
- Fresenius AG
- Hendrik Stahl
- ad.support&fresenius-netcare.com
-15077
- Thermeon Corporation
- Scott Nelson
- sbnelson&thermeon.com
-15078
- Sysnet Telematica srl
- Ezio Dozio
- edozio&siweb.it
-15079
- Remark! Internet Limited
- Mr Reece Dylan
- reece&remark.uk.com
-15080
- XAIDAT
- Thomas Bauer
- bauer&xaidat.com
-15081
- Screwage, Inc.
- Michael Kaufman
- walker&screwage.com
-15082
- Carey International, Inc.
- J. Lau
- domains&ecarey.com
-15083
- RentPayment.com
- Daniel Chester
- dan&rentpayment.com
-15084
- Mobile Radius USA, Inc.
- Derek Jean
- djean&mobileradius.com
-15085
- AFPA DSIS
- Hichem MRABET
- hichem.mrabet&afpa.fr
-15086
- Omega-Trin Ltd.
- Gennadiy Tschegolev
- omega&linia.ru
-15087
- projekt13
- Gregory J. Goodman
- gregory&projekt13.com
-15088
- AdvizeX Technologies LLC
- Gregory J. Goodman
- ggoodman&advizex.com
-15089
- Scientific Systems Company, Inc.
- Sanjeev Seereeram
- Sanjeev.Seereeram&ssci.com
-15090
- teamix GmbH
- Oliver Kügow
- ok&teamix.net
-15091
- Boyd Consulting Services, LLC
- David Boyd
- David.Boyd&insightbb.com
-15092
- Perfcap Corpoation
- Prem Sinha
- prem.sinha&perfcap.com
-15093
- Novartis International AG
- Hans Kohler
- hans.kohler&pharma.novartis.com
-15094
- Linetec Gmbh
- Dirk Rappl
- lyeburn&hotmail.com
-15095
- TDC Services A/S
- Jack Marquart
- jamar&tdc.dk
-15096
- Agència Catalana de Certificació
- Jordi Masias Muntada
- jmasias&oliverascoll.com
-15097
- SevenSpace
- Jon Greaves
- jgreaves&sevenspace.com
-15098
- Smithsonian Institution
- Michael Press
- pressm&si.edu
-15099
- Loma Linda University
- Larry Bishop
- lbishop&univ.llu.edu
-15100
- Grupo de Arquitectura y Concurrencia (GAC)
- David Sanchez
- david&dit.ulpgc.es
-15101
- Volt Delta Resources Inc.
- Daniel Riscalla
- daniel.riscalla&gotocme.com
-15102
- US LEC
- Eric Kilfoil
- sysmaster&uslec.net
-15103
- EIVD
- Markus Jaton
- markus.jaton&eivd.ch
-15104
- ModLink Networks
- Donald Russell
- don&modlinknetworks.com
-15105
- 503 Integrated Systems
- Phill Hardy
- pwth503&gmail.com
-15106
- Wificom Technologies Ltd
- Veli-Matti Riepula
- vmr&wificom.com
-15107
- Siraya Inc.
- Chih-Peng Yang
- cpyang&siraya.com
-15108
- Macao Post eSignTrust Certification Authority
- Carlos A. Roldão Lopes
- macpost&macau.ctm.net
-15109
- Psytechnics
- Xiaoyi Gu
- support&psytechnics.com
-15110
- Savantis Systems, Inc.
- Paul Campaniello
- paulc&savantis.com
-15111
- Dennis Eriksson
- Dennis Eriksson
- Dennis.Eriksson&Ericsson.Com
-15112
- Whack Productions
- Bruno Connelly
- bruno&whack.org
-15113
- MagTek
- Jeff Duncan
- jeff.duncan&magtek.com
-15114
- Stabilizer AB
- Jan Carlsson
- janne.carlsson&telia.com
-15115
- Obvius LLc
- Stephen Herzog
- herzogs&obvius.com
-15116
- Liberty IT Solutions
- Wesley Chong
- wesley&libertyitsolutions.com
-15117
- Protection One Inc.
- Ned Fleming
- Ned_Fleming&wr.com
-15118
- Westar Energy
- Ned Fleming
- Ned_Fleming&wr.com
-15119
- Fidelity National Information Solutions
- Jason Raneses
- jraneses&fnis.com
-15120
- CRCnet Wireless Network
- Murray Pearson
- crcnet-admin&crc.net.nz
-15121
- Mentata Systems
- Jon Roberts
- jon&mentata.com
-15122
- Interface Web Hosting
- Federico Contreras
- federicoac&softhome.net
-15123
- Fachhochschule Oldenburg/Ostfriesland/Wilhelmshaven
- Henning Früchtenicht
- fruechtenicht&rz.fh-wilhelmshaven.de
-15124
- Rodan Systems S.A.
- Dariusz Tyszka
- darek&rodan.pl
-15125
- Vectura
- Martyn Smith
- martyn.smith&vectura.com
-15126
-
- Andreas Damm
- oidadmin&dwl.co.uk
-15127
- CUNY/CIS
- Arthur Ecock
- eckcu&mail.cuny.edu
-15128
- Vergata EDV-Beratung
- Sergio Vergata
- sergio&vergata.de
-15129
- E-CARD Ltd.
- Valentin Zahariev
- curly&e-card.bg
-15130
- Gens Software Ltd.
- Radik Gens
- radikg&genssoft.com
-15131
- EDGEACCESS
- Haysam Rachid
- hrachid&edgeaccess.net
-15132
- Six Continents Hotels
- Steve Francis
- Steve.Francis&6c.com
-15133
- Illinois Institute of Technology
- Mrinal Virnave
- virnave&iit.edu
-15134
- Christian Boesch
- Christian Boesch
- boesch&fhv.at
-15135
- omatis
- kwame
- kwame&omatis.com
-15136
- Sukumar Patel
- Sukumar Patel
- patel301&comcast.net
-15137
- ENOVIA
- Joe Lannom
- Joe_lannom&enovia.com
-15138
- Sim Freaks
- Mark Castillo
- markc&webfreak.com
-15139
- LandTime, Inc
- Eric Weitzman
- eweitzman&acm.org
-15140
- YoYoWeb
- Thornton Prime
- thornton&yoyoweb.com
-15141
- Infotropic AB
- Patrik Nilsson
- patrik&infotropic.com
-15142
- comunicando società per azioni
- fabrizio trovato
- fabrizio.trovato&comunicandospa.net
-15143
- Synergy Business Solutions, Inc.
- Vivek S. Bagal
- vivek.bagal&sbsconnect.net
-15144
- Binary Wave Technologies Inc.
- Waichi Lo
- waichilo&binarywave.ca
-15145
- iReasoning Networks
- Robin Lin
- info&ireasoning.com
-15146
- M444 Systems, Inc.
- Ulrich Wiedmann
- ulrich&m444.com
-15147
- Hrvatske Autoceste d.o.o (HAC)
- Miroslav Zubcic
- mvz&hac.hr
-15148
- Witteveen+Bos
- J. Boone
- J.Boone&witbo.nl
-15149
- xantury.com
- florian stahl
- fstahl&xantury.com
-15150
- EXOSEC
- Christophe Pouillet
- cpouillet&exosec.net
-15151
- Spyderworks Ltd
- Dr Ramen Sen
- r.sen&spyderworks.co.uk
-15152
- Scholl Engineering
- Eric Scholl
- eric_scholl&scholl.ch
-15153
- DMSfactory GmbH
- Jens Bieler
- Jens.Bieler&dmsfactory.com
-15154
- ActiVia Networks
- Sacha Fosse-Parisis
- snmp&ActiVia.net
-15155
- IPSQUARE Inc.
- Hiroshi Satoh
- hsato&ip-square.com
-15156
- Accusys
- Paul Chu
- paulchu&accusys.com.tw
-15157
- dL_s
- Deng Lor
- deng_lor&hotmail.com
-15158
- SCA
- Enrico Sessler
- enrico.sessler&sca.com
-15159
- ultraDyne
- Kent Swanson
- kents&ultradyne.org
-15160
- Interactive Northwest, Inc.
- Gary Van Gordon
- gvg&interactivenw.com
-15161
- Idealab
- Idealab Hostmaster
- hostmaster&idealab.com
-15162
- Movilok Interactividad Movil S.L.
- Luis del Ser
- ldelser&movilok.com
-15163
- NetKingCall Co., LTD.
- Choi, Young-hwan
- choiyh44&hotmail.com
-15164
- Open Point Networks
- Robert McIntyre
- bmcintyre&openpoint.net
-15165
- NT-SYSTEMS
- Mr. PHAM
- tpham&ntsystems.de
-15166
- Brian Bunnell
- Brian Bunnell
- BrianBunnell&hotmail.com
-15167
- Chapcom
- Ben Brown
- ben&chapcom.org
-15168
- Vossloh Information Technologies Karlsfeld GmbH
- Robert Michelsen
- robert.michelsen&vitk.vossloh.com
-15169
- IIZUKA Software Technologies
- Mike Atkin
- mike&iizuka.co.uk
-15170
- Crinis Networks
- Eric McMurry
- emcmurry&crinisnetworks.com
-15171
- Landmark Graphics Corporation
- Nick White
- nwhite&lgc.com
-15172
- Supcik.net
- Jacques Supcik, PhD
- jacques&supcik.net
-15173
- Hammerhead Systems
- Loanne Cheung
- lcheung&hammerheadsystems.com
-15174
- Safescrypt Limited
- Sharath Jeppu
- SJeppu&safescrypt.com
-15175
- Lonny Software
- Lonny May
- lonny&lonny-m.net
-15176
- Advanced Info Service PLC.
- Supawadee Opasnipat
- supawado&ais900.com
-15177
- ADMtek Incorporated
- Joy Lin
- joyl&admtek.com.tw
-15178
- Axtion Systems Corporation
- Chris Roberts
- chris&axtionsystems.net
-15179
- Seance Software Inc.
- Jingyu Liu
- jliu&seancesoft.com
-15180
- City of Bloomington, IN
- Daniel S. Neumeyer
- neumeyed&city.bloomington.in.us
-15181
- IneoQuest Technologies Inc.
- Christopher Crotty
- christopher.crotty&ineoquest.com
-15182
- ads-tec GmbH
- Armin Bossler
- a.bossler&ads-tec.de
-15183
- objectlab, llc
- chris mollis
- cmollis&objectlab.com
-15184
- ITXC
- Jonathon Brenner
- jbrenner&itxc.com
-15185
- Phantasia Broadcast Ltd.
- Donald Pickett
- donaldp&phantasia.net
-15186
- SolumSTAR
- Wolfgang Dotzauer
- dotzauer&siemens.com
-15187
- NYS Department of Civil Service
- Marty Gardner
- marty.gardner&cs.state.ny.us
-15188
- Gemfor s.r.o.
- Bedrich Svoboda
- info&gemfor.cz
-15189
- objectlab, llc
- chris mollis
- cmollis&objectlab.com
-15190
- incNETWORKS, Inc.
- Ken Roser
- ken_roser&sent.com
-15191
- Voice Print International, Inc.
- Ryan Pfeifle
- rpfeifle&vpi-corp.com
-15192
- Evergreen Assurance, Inc.
- Michael Chiang
- mchiang&evergreenassurance.com
-15193
- Tacit Networks
- Pedrum Mohageri
- pedrum&tacitnetworks.com
-15194
- Alan Flett
- Alan Flett
- flett&nodanger.co.uk
-15195
- privat
- Andreas Rudloff
- andreas.rudloff&gmx.de
-15196
- Liqwid Networks
- Scott Brickner
- sbrickner&liqwidnet.com
-15197
- HOW CO.,LTD
- Koji Mizumura
- mizumura&how.jp
-15198
- FNET Co., Ltd
- Gye Tai, Lee
- dolson&f-net.co.kr
-15199
- Infologic Nederland B.V.
- Theo Viset
- tviset&infologic.nl
-15200
- Flexibix Inc.
- Frank Kuo
- frankkuo&attbi.com
-15201
- UpSync Software India Private ltd.
- Maheshwara.Hampasagar
- mhampasagar&upsync.com
-15202
- Oe-Consult Software GmbH
- Matthias Bauernberger
- matthias.bauernberger&oe-consult.at
-15203
- TDC Mobile A/S
- Kristen Nielsen
- krn&tdc.dk
-15204
- Mobilethink A/S
- Kenth Hvam
- domain&mobilethink.dk
-15205
- Nordsan Technology Co., Ltd.
- Ma Quan
- quan.ma&nordsan.com
-15206
- Visualpix SA
- Michel Stempin
- mstempin&visualpix.com
-15207
- Modul 1
- Roger Lindholm
- roger.lindholm&modul1.se
-15208
- Ombre et Pixel
- David ROBERT
- david&ombrepixel.com
-15209
- Precision Therapy International
- Jeffery Tillotson
- jeffery.tillotson&elekta.com
-15210
- Shinkuro Inc.
- Jeffrey Kay
- jeff&shinkuro.com
-15211
- North Country Internet Access
- Ryan J. Taylor
- rj&ncia.net
-15212
- ITAU
- Dionísio Ghelardi
- dionisio.ghelardi&itau.com.br
-15213
- ITAUSA
- Tarcisio L. Hespanhol
- tarcisio.hespanhol&itau.com.br
-15214
- Global Network Operations Ltd.
- Andy Coates
- andy&NocOps.com
-15215
- Agilejava.com
- Wilfred Springer
- wilfred&agilejava.com
-15216
- White Rabbit
- Jeff Goris
- jeff.goris&whiterabbit.com.au
-15217
- AltaVista
- Bret McGinnis
- bmcginnis&av.com
-15218
- KSC Commercial Internet Co.,Ltd.
- Jaruwat Boonmee
- srvadmin&ksc.net
-15219
- SEVOI Co. Ltd
- David Jung
- sdjung&sevoi.net
-15220
- n.v. QWENTES s.a.
- Mathieu Laurent
- mathieu.laurent&qwentes.be
-15221
- Lorus Inc.
- Jim St. Onge
- jws&lorusinc.com
-15222
- Rastar Digital Marketing
- Peter J. Robbins
- probbins&rastardm.com
-15223
- Andago
- Carlos Lozano
- clozano&andago.com
-15224
- OZTECH
- Ernest Rider
- ozialien&cox.net
-15225
- NightStar Corporation
- Jonah H. Harris
- jharris&nightstarcorporation.com
-15226
- Etronics
- Jae-Won Jeong
- joj&etronics.co.kr
-15227
- Venus Info Tech Inc.
- Patrick Jiang
- jiangpeng&venustech.com.cn
-15228
- Damm Cellular Systems A/S
- Dennis Boy
- db&damm.dk
-15229
- T-Systems Schweiz AG
- Stefan Steinemann
- stefan.steinemann&t-systems.ch
-15230
- SecurIT BV
- Michael van Dorp
- mvd&securit.biz
-15231
- schulz engineering
- sven schulz
- sven.schulz&netallied.net
-15232
- COM.BOX Fotofinder GmbH
- Alexander Finger
- finger&fotofinder.net
-15233
- Regenative Inc.
- William Lee
- wlee&regenative.com
-15234
- SoftSwitching Technologies
- Roger Hayes
- rhayes&softswitch.com
-15235
- Xpoint Technologies, Inc.
- Howard Helbein
- hhelbein&xpoint.com
-15236
- R & K Global Business Services, Inc.
- Michael Grubb
- mgrubb&000domains.com
-15237
- Intellinger Software Corporation
- Thomas Wintschel
- tom&intellinger.com
-15238
- Collins Enterprises LLC.
- Benjamin F. Collins
- bcollins&mail.granderiver.net
-15239
- Applico Security, Inc.
- Jessie Chen
- jchen&applicosecurity.com
-15240
- AHB Internet Solutions
- Achim Breuer
- ahb&ahb.net
-15241
- nimel
- Meunier
- om&neokraft.net
-15242
- ToolCASE LLC
- Jacob Gore
- jacob.gore&toolcase.com
-15243
- gav-lv
- John Marquart
- jomarqua&techie.com
-15244
- Essential Systems, Inc.
- Dan Gynn
- dan.gynn&essensys.com
-15245
- INFNIS
- seung hak Lee
- shlee&infnis.com
-15246
- EDV Beratung & Netzwerktechnik Dipl.-Ing. Matthias Kahle
- Matthias Kahle
- mka&gdnsc.de
-15247
- Rocksoft Limited
- Ross Williams
- tech&rocksoft.com
-15248
- Quantel Ltd
- David Lane
- david.lane&quantel.com
-15249
- x-cellent technologies GmbH
- Stephan Tesch
- Stephan.Tesch&x-cellent.com
-15250
- Morse Group Ltd
- Dale Douglas
- dale.douglas&morse.com
-15251
- Deutsche Telekom T-Com
- Herbert Eisenbeis
- eisenbeis&telekom.de
-15252
- SB&C, Ltd.
- Dale Hirt
- administrator&sbcltd.com
-15253
- Ceyba
- Dan Fossum
- dfossum&ceyba.com
-15254
- Kaseya Sweden AB (formerly 'Intellipool AB')
- Robert Aronsson
- robert.aronsson&kaseya.com
-15255
- Reliable Controls Corporation
- Roland Laird
- rlaird&reliable-controls.com
-15256
- United Nations
- Scott T Skinnider
- Scott.Skinnider&UN.Org
-15257
- City Computing Limited
- Lackel Hung
- lackel&citycomputing.com
-15258
- Exers Technologies, Inc.
- Kitae Kim
- ktkim&exers.com
-15259
- Saarländischer Rundfunk
- Oliver Pabst
- opabst&sr-online.de
-15260
- Université Cahtolique de l'Ouest
- Alain RAYMOND
- OID.Admin&uco.fr
-15261
- UniCon Software GmbH
- Siegbert Teuscher
- OID.Admin&unicon-ka.de
-15262
- Data Display Limited.
- Erich Muller
- emuller&data-display.com
-15263
- DLRG Landesverband Rheinland-Pfalz
- Kai Burkhardt
- kburkhardt&gmx.de
-15264
- Anonymizer Inc.
- Austin Hill
- austin&anonymizer.com
-15265
- Telelogic AB
- Jeff Steele
- jeff.steele&telelogic.com
-15266
- Omnibus Systems Ltd
- Mark Birks
- mark.birks&omnibus.co.uk
-15267
- Damage Prevention Systems
- Martijn Moeling
- martijn&xs4us.nu
-15268
- Oy NetItBe Ltd
- Eino Mäkitalo
- support&netitbe.fi
-15269
- Craniac Entertainment
- Chuck Bueche
- chuckb&craniac.com
-15270
- Printcafe Software, Inc.
- Aaron Siri
- asiri&printcafe.com
-15271
- Oberfinanzdirektion Koblenz
- Herbert Meyers
- Herbert.Meyers&ofd-ko.fin-rlp.de
-15272
- MaaTec
- Alexander Maack
- Alexander.Maack&MaaTec.com
-15273
- The Paloma Group, Inc.
- David Dove
- david.dove&ThePalomaGroup.Com
-15274
- Paul Scherrer Institut
- Roland Blaettler
- roland.blaettler&psi.ch
-15275
- AAE Systems
- GovindaRajan
- govivs&aaesys.com
-15276
- BearASP
- William C. Landolina
- wcl&techatl.com
-15277
- SoftTree Technologies, Inc.
- Dmitriy Evinshteyn
- devinshteyn&softtreetech.com
-15278
- Oblicore Inc.
- Salomon Barak
- barak&oblicore.com
-15279
- WFI
- Doug Lawson
- doug.lawson&wfinet.com
-15280
- Relapixity, LLC
- Troy Lemieux
- tlemieux&relapixity.com
-15281
- ZeOmega Infotect
- Deb
- dhazarika&zeomega.com
-15282
- GCom
- Uffe Gavnholt
- uffe&gavnholt.com
-15283
- Mikroliitti Oy
- Pertti Heikkinen
- pjh&iki.fi
-15284
- POSTA SLOVENIJE
- Bostjan LAVUGER
- bostjan.lavuger&posta.si
-15285
- iSolv Technologies cc
- Jayesh Nana
- jayesh&isolv.co.za
-15286
- ADPM
- Peter Marschall
- peter.marschall&adpm.de
-15287
- Joachim Bauch (formerly 'FOB Team')
- Joachim Bauch
- mail&joachim-bauch.de
-15288
- REGISTER.IT S.p.a.
- Marco Piarulli
- marco.piarulli&register.it
-15289
- Advanced Broadband Communications Center (CCABA-UPC)
- Jordi Domingo Pascual
- jordi.domingo&ac.upc.es
-15290
- Ordway Center for the Performing Arts
- Bryce T Pier
- btpier&ordway.org
-15291
- Mach Technology, Inc.
- Michael Chiang
- mschiang&yahoo.com
-15292
- American City Business Journals
- Jared Watkins
- jwatkins&bizjournals.com
-15293
- Coderanger inc.
- Noah Kantrowitz
- coderanger&yahoo.com
-15294
- EP Imaging Concepts, Inc.
- Richard Nelson
- rnelson&eugeneprint.com
-15295
- Metrima
- Giancarlo Bazzi
- gbazzi&racine.ra.it
-15296
- Plum Financial Service Pty Ltd
- Terence Tsakiris
- Terence.Tsakiris&plumfs.com.au
-15297
- Sonera Solutions Oy
- Sami Mäntyharju
- sami.mantyharju&sonera.com
-15298
- Volkswagen Bank GmbH
- Andreas Koch
- andreas.koch&vwfsag.de
-15299
- Elcoteq Network Corporation
- Mr. Sami Masalin
- sami.masalin&elcoteq.com
-15300
- Wireless Independent Provider AB
- Per Werelius
- perw&wip.se
-15301
- KFKI RMKI SzHK
- Bedö Sándor
- bsanyi&sunserv.kfki.hu
-15302
- GalaxE.Solutions, Inc
- Sandipan Gangopadhyay
- sandipan&galaxysi.com
-15303
- accelerate IT services
- eric woelkerling
- ericw&accelerate-it.com.au
-15304
- TakeIT
- Take Knol
- take&takeit.nu
-15305
- MBUF
- Mathieu Mourez
- matt&mbuf.ca
-15306
- Mount Royal College
- James Bourne
- jbourne&mtroyal.ab.ca
-15307
- Esphion Ltd
- Nathan Ward
- admin&esphion.com
-15308
- Peace Software
- Craig Bishell
- craig.bishell&peace.com
-15309
- e-Dynasty Limited
- Peter Loo
- peterloo&dynasoft.freeserve.co.uk
-15310
- Exodus Communicaitons
- Jian Zhen
- jian.zhen&exodus.net
-15311
- misTrust Certification Authority
- Bernd Rudack
- bernd.rudack&mistrust.de
-15312
- Jozef Stefan Institute
- Janez Jezersek
- Janez.Jezersek&ijs.si
-15313
- REDLINK Mediendienste GmbH
- Olav Roth
- roth&redlink.de
-15314
- IT+ A/S
- Soeren Hilmer
- sh&itplus.dk
-15315
- Internet Business News
- Giancarlo Bazzi
- giancarlo.bazzi&ibn-italy.com
-15316
- Hub Hill Software
- A D Thomson
- sandy.thomson&btinternet.com
-15317
- Wells Fargo
- Joachim F. Kainz
- kainzjf&wellsfargo.com
-15318
- Edu4 France S.A.
- Jerome SIDDI
- jerome.siddi&edu4.com
-15319
- SkyPilot Network, Inc.
- Marvin Chan
- mchan&skypilot.com
-15320
- Custom7
- Brad Lowe
- brad&custom7.com
-15321
- Transcor, Inc
- Kipland Iles
- kiles&etranscor.com
-15322
- Echopass Corporation
- Derek Burdick
- Derek_Burdick&echopass.com
-15323
- INP-net
- Lionel Porcheron
- inp-net&bde.inp-toulouse.fr
-15324
- Walter E. Helmke Library
- Kevin Fredrick
- fredrikr&ipfw.edu
-15325
- STVA
- Edouard Chevtchouk
- echevtchouk&stva.com
-15326
- Mobicus Oy
- Juho-Pekka Virolainen
- jpv&mobicus.com
-15327
- Halden Dataservice AS
- Vegard Svanberg
- vegard&svanberg.no
-15328
- Svanberg Consulting
- Vegard Svanberg
- vegard&svanberg.no
-15329
- Dalian University of Technology
- Li Yingzhuang
- lyz&dlut.edu.cn
-15330
- KLEEGROUP
- CONSTANTIN François
- fconstantin&kleegroup.com
-15331
- Indagon Oy
- Markus Mikkolainen
- markus.mikkolainen&indagon.com
-15332
- Logica UK Ltd
- Tony Catley
- catleyt&logica.com
-15333
- Global Communication Technologies,Inc.
- Stilian Tcholakov
- steve&globaltech-us.com
-15334
- MWVCAA
- Gary Winters
- wintersg&mwvcaa.org
-15335
- ITXC
- Matthew Krokosz
- mkrokosz&itxc.com
-15336
- Telemet America, Inc
- Alex Kotliarov
- alex&taquote.com
-15337
- Photronics, Inc.
- Peter Tlasky
- ptlasky&brk.photronics.com
-15338
- PalmSource, Inc
- Matthew Jordan
- matthew.jordan&palmsource.com
-15339
- ilse media groep b.v.
- Mathijs Brands
- mathijs&ilse.nl
-15340
- George Furniture
- George Ameller
- ameller&earthlink.net
-15341
- Wuhan Yangtze Communications Industry Group Co.,Ltd.,China.
- Xie Qiaojun
- qj.xie&ycig.com
-15342
- Vitalect Technologies India Pvt. Ltd.
- S. Subin
- subin&vitalect-india.com
-15343
- FUNDACION INASMET
- JOKIN RUBIO
- jokin&inasmet.es
-15344
- Yomi PLC.
- Tero Kalavainen
- tero.kalavainen&yomi.com
-15345
- Dansk Røde Kors
- Bill Edgington
- bill&mail2.redcross.dk
-15346
- Viking Systems
- Leon Hauck
- leon&vikingsystems.com
-15347
- IGH Ingenieurgesellschaft Höpfner mbH
- Rene Etzweiler
- rene.etzweiler&igh.com
-15348
- Precision Interop, LLC
- Scott Overholser
- sover&precision-interop.com
-15349
- Andreas Bartsch IT Solutions
- Andreas Bartsch
- ab&bartsch-web.de
-15350
- Jatosoft LLC
- Ben Gollmer
- ben&jatosoft.com
-15351
- ForeverLiving.com
- Murray Johnston
- hostmaster&foreverliving.com
-15352
- University of Arkansas at Fort Smith
- Brian Scott
- bscott&uafortsmith.edu
-15353
- Integrated Digital Solutions Inc.
- Steve Marmer
- steve&ids.ca
-15354
- Number 1 Customer, LLC
- Peter Chernin
- peter&easy-as-toast.com
-15355
- Integan
- Mestdag Nico
- nm&integan.be
-15356
- BartNET
- Gil DuPont
- gdupont&bartnet.net
-15357
- Diversified Systems Resources, LTD
- Gil DuPont
- gdupont&dsrglobal.com
-15358
- Cygnetron, Inc.
- Piyush Sinha
- piyush.sinha&cygnetron.com
-15359
- Multidas Technologies, Inc.
- Alex Pan
- apan&multidas.com
-15360
- CENTRE DE SANTE MENTALE
- DENIS ROUME
- NOC&eurofmc.com
-15361
- RPA Research Co., Ltd.
- LEE WON SOO
- wonsool&rpa.co.kr
-15362
- Digital on net Co., Ltd.
- I.K. Lee
- ilee&digitalonnet.com
-15363
- Hotel Interski ****
- Lukas Demetz
- lukas&hotel-interski.com
-15364
- Sibsnet Technologies
- Sibeuwou bertin
- sibeuwou&yahoo.fr, sibeuwou&sibsnet.com
-15365
- INFOSTEP
- Gerhard Mueller
- office&infostep.at
-15366
- Dunhuang Academy
- Liu Gang
- liugang&dha.ac.cn
-15367
- ZlanTec
- Zlan
- zlan&163.com
-15368
- UnixAG Siegen
- Tjabo Kloppenburg
- tjabo.kloppenburg&unix-ag.org
-15369
- Cititech Australia
- Michael Bochner
- michael.bochner&ssmb.com.au
-15370
- GIGA-BYTE TECHNOLOGY CO., LTD
- Brad Huang
- brad.huang&gigabyte.com.tw
-15371
- Horry Telephone Cooperative
- James Richardson
- james.richardson&htcinc.net
-15372
- Max-Planck-Institute for evolutionary Anthropology
- Holger Bochmann
- bochmann&eva.mpg.de
-15373
- NASK
- Franciszek Lewenda
- F.Lewenda&nask.pl
-15374
- Enfo Oy
- Hannu Jauhiainen
- hannu.jauhiainen&enfo.fi
-15375
- HSB Systemhaus GmbH
- Floegel Christian
- christian.floegel&hsb-systemhaus.de
-15376
- De Nayer
- Bart Coosemans
- bart.coosemans&denayer.wenk.be
-15377
- ChiliMoon Foundation
- Honza Petrous
- hop&pike.ida.liu.se
-15378
- CSI Piemonte
- Fabio Cavallo
- CA-CSIPiemonte&csi.it
-15379
- Allocity
- Robert W. Lennie
- rlennie&aciesnetworks.com
-15380
- AlterPoint, Inc.
- Bryan J. Rollins
- brollins&alterpoint.com
-15381
- Wilkes University
- Steven Reppert
- reppert&wilkes.edu
-15382
- Bit Hosting
- Okke Timm
- okke.timm&bit-hosting.de
-15383
- BlueJavelin, Inc.
- Frank Solensky
- fsolensky&bluejavelin.net
-15384
- NCARP.COM
- Nuno Carpentier
- nc&ncarp.com
-15385
- Genasys II Spain
- Alberto Bambala Arbea
- abambala&genasys.com
-15386
- Ibis Tecnologia e Informacao
- Tales Costa
- tales&ibistec.com.br
-15387
- Industri Telekomunikasi Indonesia (INTI)
- Aji P. Reksoprodjo
- apr&inti.co.id
-15388
- MagiNet Company, Ltd.
- Gregory K Rutledge
- greg&maginet.net
-15389
- Bestway Telecom
- Lim Hyuk
- hlim&bwtelecom.co.kr
-15390
- Silu co.
- Precilla Luo
- precilla&163.com
-15391
- iei
- libhaohua
- tt&iei-china.com
-15392
- OLVIKO
- Anatoly Davidov
- noc&olviko.ru
-15393
- AvestaPolarit AB
- Ronny Karlsson
- ronny.karlsson&avestapolarit.com
-15394
- P.T Sigma Cipta Caraka
- Fajar Hartanto
- fajar_hartanto&sigma.co.id
-15395
- CrossML
- John Matthews
- john.matthews&crossml.com
-15396
- Alfa & Ariss b.v.
- Peter Boevink
- peter.boevink&alfa-ariss.com
-15397
- Netintact AB
- Tobias Rundström
- tobias&netintact.se
-15398
- IC3S AG
- Steffen Weinreich
- admin&ic3s.de
-15399
- Universite de Poitiers
- Jean-Claude Ben
- jean-claude.ben&univ-poitiers.fr
-15400
- Post Consult International
- Caoimhin Blake
- caoimhin.blake&pci.ie
-15401
- EUnet EDV und Internet Dienstleistungs AG
- Michael Lausch
- michael.lausch&eunet-ag.at
-15402
- Proximity Corp
- Brendan Bouffler
- brendan&proximitygroup.com
-15403
- T-Systems CDS GmbH
- Claudia Dübbelde
- Claudia.Duebbelde&t-systems.com
-15404
- PenTeleData Inc
- Frank Clements
- frankc&corp.ptd.net
-15405
- Comunicaciones NetPeople C.A.
- Orlando Carvallo
- alejandro&net-people.com
-15406
- Axiom Integration, Inc.
- Terry Inzauro
- tinzauro&axiomintegration.com
-15407
- Ambicom, Inc.
- Alex Chen
- alex_chen&ambicom.com
-15408
- TrueContext Inc.
- Richard Dumas
- rdumas&truecontext.com
-15409
- Customized Database Systems
- Seth Rothman
- srothman&cds-software.com
-15410
- Seaway Networks
- David Lapp
- lapp&seawaynetworks.com
-15411
- Lasipalatsin Mediakeskus Oy
- Egil Silfver
- egil&lasipalatsi.fi
-15412
- Cotagesoft Inc.
- Joyo Wijaya
- jwijaya&cotagesoft.com
-15413
- Oden Oden Wireless Networks Technology (Shanghai) Ltd
- Tod kang
- kang.tao&odenwireless.com
-15414
- BillHusler.com
- Bill Husler
- BHusler&PacBell.net
-15415
- Openet Information Technology (Shenzhen) Co.,Ltd
- Jiancheng He (ºÎ½¨³É)
- hejc&openet.com.cn
-15416
- Saft Power Systems
- Gerard Gauthier
- gerard.gauthier&alcatel.fr
-15417
- IMA - Informatica de Municipios Associados
- Henrique de Moraes Holschuh
- hmh&ima.sp.gov.br
-15418
- Forum Systems Inc.
- Chad L. Cook
- ccook&forumsys.com
-15419
- Forest Siding Supply
- Michael Mattice
- mike+iana&forestsidingsupply.com
-15420
- Lightsurf Technologies
- Steve Phillips
- sphillips&lightsurf.com
-15421
- Chiemgau Gymnasium Traunstein
- Stefan Schuch
- schuch&stefan-schuch.de
-15422
- ARTIFintelligence, LLC
- Edgart F Gonzalez
- egonzalez&webbox.com
-15423
- NetSpace - Soluções Informáticas
- José Rocha
- suporte&netspace.pt
-15424
- Storeimage Programs Inc.
- IT Manager
- gregs&storeimage.com
-15425
- ImageStream Internet Solutions
- Doug Hass
- domreg&imagestream.com
-15426
- Korea Internet Data Center
- Kim, Jong-Shin
- jongshin&kidc.net
-15427
- Hwa-jin Seo
- Hwa-jin Seo
- freenickey&hotmail.com
-15428
- Cybertec Pty Ltd
- Chris Johns
- cjohns&cybertec.com.au
-15429
- Future Computing Solutions India Pvt. Ltd.
- Gurinderjit Singh Mond
- gjsingh&fcsindia.com
-15430
- JIN Information Systems
- Naveen
- naveen&jinis.com
-15431
- Xion IT Systems AG
- Peter Ott
- peter.ott&xion.at
-15432
- Cybcon Industries
- Michael Oberdorf
- michael.oberdorf&cybcon-industries.de
-15433
- Landespolizei Mecklenburg- Vorpommern
- Schwarz, Thomas
- thomas.schwarz&polmv.de
-15434
- Chebucto Community Net
- Jeff Warnica
- jeffw&chebucto.ns.ca
-15435
- worldnet21
- Jesus Garcia Rodriguez
- jesus&worldnet21.es
-15436
- OsiTools
- Marion Maack
- info&ositools.de
-15437
- SSO
- Markus Faltin
- marfal&gmx.de
-15438
- RTL Television
- Ingo Rueber
- ingo.rueber&rtl.de
-15439
- PASS Technologie
- Pierre Dittgen
- pierre.dittgen&pass-tech.fr
-15440
- ZPH Litex
- Michal Wegrzynek
- mwegrzynek&litex.pl
-15441
- Karell
- Karell Ste-Marie
- stemarie&brainbankinc.com
-15442
- Orchestel Systems
- Yanjun Huang
- yanjun.huang&orchestel.com
-15443
- JP Sync
- Paul Chen
- paulkchen&yahoo.com
-15444
- Saffron Solutions, Inc
- Jason Parsons
- registry&saffron.net
-15445
- SBS
- MyungKook Yang
- mkyang&sbs.co.kr
-15446
- CyberPower Systems, Inc.
- Ming-Hsien Huang
- ming&cyberpowersystems.com.tw
-15447
- SEM Ltd
- Iakovos Panayiotou
- ssd&semltd.com.cy
-15448
- DAMOVO Ceska Republika
- Petr Foltyn
- petr.foltyn&damovo.com
-15449
- Foursys, Inc.
- Don Class
- dclass&foursys.net
-15450
- Innominate Security Technologies AG
- Lutz Jänicke
- ljaenicke&innominate.com
-15451
- Realitatea TV
- Catalin Dinu
- catalin.dinu&realitatea.tv
-15452
- Geovariances
- Ludovic Robinot
- robinot&geovariances.fr
-15453
- ABZ Nederland
- A. Wollaars
- AWollaars&abz.nl
-15454
- Arbor AudioCommunications
- J. Hendrix
- jh&arbor-audio.com
-15455
- Unassigned
- Removed 2008-04-25
- ---none---
-15456
- La cocina
- Ronald van Engelen
- ronalde&xs4all.nl
-15457
- Ackernet
- Ulrich Ackermann
- UlleAckermann&t-online.de
-15458
- Mark McKenzie
- Mark McKenzie
- mark&errai.net
-15459
- M-Systems
- Amir Shinar
- amir_shinar&aquanet.co.il
-15460
- Orchestel Systems
- Yanjun Huang
- yanjun.huang&orchestel.com
-15461
- Corybant
- Wayne Sheppard
- wayne&corybant.com
-15462
- Rupprecht & Patashnick Co., Inc.
- Matthew Bivans
- mbivans&rpco2.com
-15463
- Huron Superior Catholic District School Board
- Dave O'Hare
- dohare&hscdsb.on.ca
-15464
- Muskoka.com
- Shayne Lebrun
- support&muskoka.com
-15465
- University of Toronto
- Russell Sutherland
- russ&madhaus.cns.utoronto.ca
-15466
- Peacefulhaven
- Gordon Shepherd
- gordon.shepherd&peacefulhaven.net
-15467
- Digibel
- Arjen van Drie
- arjen&digibel.be
-15468
- Siege.org
- CJ Niemira
- siege&siege.org
-15469
- Internet Connection
- Geo Carncross
- geocar&internetconnection.net
-15470
- Digital System Resources
- Jeff Schuyler
- jschuyler&dsrnet.com
-15471
- Nucleo de Pesquisa em Redes e Sistemas Abertos
- Jose Marcos F. Araujo
- jmarcos&dcc.uesb.br
-15472
- SOA Software, Inc.
- Herman D'Costa
- herman.d'costa&soa.com
-15473
- Spring Worth Inc.
- Noel D. Kendall
- noeldkendall&hotmail.com
-15474
- Lighthouse Software Group
- Bill Myerly
- bill&myerly.com
-15475
- Zhongguang Telecommunications
- Chengchao
- chengchao&wri.com.cn
-15476
- Fareastone telecommunication Corp.
- Brad Chao
- rchao&fareastone.com.tw
-15477
- Bank for foreign trade
- Popugaev Yuri
- popugaev&vtb.ru
-15478
- Höft & Wessel AG
- Joachim Meyer
- jm&hoeft-wessel.de
-15479
- dudley.org
- James Dudley
- jed&dudley.org
-15480
- Trillion Digital Communications
- Nathan Dial
- ndial&trillion21.com
-15481
- Capital Channel Information Co. Ltd.
- Andy Poon
- andy&xchannel.com.cn
-15482
- Tian En
- Topspinner Ace
- ahlek&hotmail.com
-15483
- O.C.A. S.A.
- Fernando Vallarino
- fernando.vallarino&oca.com.uy
-15484
- Lux Technologies
- Michael Fleet
- michael&luxtechnologies.com
-15485
- University of Otago
- Simon Brady
- ldap.admin&otago.ac.nz
-15486
- keyon
- Martin Christinat
- christinat&keyon.ch
-15487
- Daisy Technologies Inc.
- Bojan Likar
- bojan.likar&daisy-tech.com
-15488
- Pure Matrix, Inc.
- Alain Penders
- alain&purematrix.com
-15489
- Home SE AB
- Hans Eric Sandström
- hes&xinit.se
-15490
- Prasanna Technologies
- Maheswara Rao.A.V.
- raoavm&yahoo.com
-15491
- Protegrity Inc.
- Jonas Berglin
- jonas.berglin&protegrity.com
-15492
- Sichuan Changhong Electric Group Co,Ltd.
- Mr. Dongjing Huang
- ren.fei&changhong.com
-15493
- Goll Enterprises
- Michael George Goll
- michael&goll.com
-15494
- Helium LLC
- Francis Potter
- iana&meadowbase.com
-15495
- eHouse
- Yuri Ryazantsev
- yuri&ehouse.ru
-15496
- LaScoala
- Lucian Parvu
- lucianparvu&yahoo.com
-15497
- IronPort Systems, Inc.
- Charles Slater
- cslater&ironport.com
-15498
- TESI S.p.A
- Francisco Mancardi
- francisco.mancardi&gruppotesi.com
-15499
- The King's University College
- Jacob Modayil
- admin&kingsu.ca
-15500
- eWings Technologies, Inc.
- Max Chan
- max@.ewingstech.com
-15501
- M&C Laboratory Inc.
- Takashi Okada
- okada&mac-lab.co.jp
-15502
- Animezone
- Andrew Ho
- andrewho&animezone.org
-15503
- University of Berne
- Peter M. Studer
- aai&id.unibe.ch
-15504
- Ministère de l'équipement, des transports, du logement, du tourisme et de la mer
- Christian Paquet
- SI2.DPSM&equipement.gouv.fr
-15505
- Echoworx Corporation
- Michael Roberts
- iana-priventnum-contact&echoworx.com
-15506
- Akiratech Limited
- James Alderman
- james.alderman&akiratech.com
-15507
- TierOne OSS Technologies, Inc.
- Ion Moraru
- imoraru&tieroneoss.com
-15508
- PacketIQ Corp.
- James H. Baxter
- jim.baxter&packetiq.com
-15509
- direto.org.br
- Marcio pompermayer
- contato&direto.org.br
-15510
- Rhetorical Systems, Ltd.
- Alexander Gutkin
- sasha&rhetoricalsystems.com
-15511
- Groupe ERMEWA S.A.
- Philippe Lelédy
- p.leledy&ermewa.com
-15512
- COMAX INC.
- Komaki Takashi
- komaki&comax.co.jp
-15513
- Gendac
- Hein Loest
- hein&gendac.com
-15514
- Financijska agencija
- Fani Beros
- leopold.eke&fina.hr
-15515
- DGET
- Tariq Noor Ellahi
- Tariq.Ellahi&ucd.ie
-15516
- SoftWorks Australia Pty Ltd
- Gavin Glynn
- Gavin_Glynn&softworks.com.au
-15517
- Entri ltd
- Andrew Kozachenko
- andrew&entri.com.ua
-15518
- Vocalocity, Inc.
- Jeff Haynie
- jhaynie&vocalocity.net
-15519
- Results Computing Corporation
- John K. Edwards
- john&results-computing.net
-15520
- actiSwitch, Inc.
- Rajesh Srivastava
- rajesh&actiswitch.com
-15521
- signalkontor GmbH
- Olav Groehn
- olav.groehn&signalkontor.com
-15522
- Whitman College
- Michael Osterman
- ostermmg&whitman.edu
-15523
- Equine.com
- Jeff Little
- jeff&equine.com
-15524
- Access Point Inc
- Bob Poliachik
- bob.poliachik&accesspointinc.com
-15525
- Braum's Ice Cream
- Paul Enright
- penright&braums.com
-15526
- Mixmobile
- Kimmo Vayrynen
- kimmo.vayrynen&mixmobile.com
-15527
- ANIENIB
- Emmanuel Blot
- emmanuel.blot&anciens.enib.fr
-15528
- Naviair
- Rasmus Sindum
- sin&naviair.dk
-15529
- Universidad del Valle
- Luis Felipe Rodriguez
- felipro&univalle.edu.co
-15530
- Integrated Technology S.C.
- Humberto Hernandez
- hhernandez&itweb.com.mx
-15531
- VPNChina Tech-Development Corp.
- Jing weijun
- jingwj&vpnchina.com
-15532
- hollomey consultants gmbh
- Joachim Ortner
- ortner&hollomey.com
-15533
- Mobile Tornado
- Israel Shainert
- israel&mobiletornado.com
-15534
- Linup Front GmbH
- Anselm Lingnau
- anselm.lingnau&linupfront.de
-15535
- Vereniging Milieudefensie
- Zenon Panoussis
- webmaster&milieudefensie.nl
-15536
- PTM.com
- Jose Celestino
- japc&co.sapo.pt
-15537
- EMK Design
- Waitman C Gobble II
- waitman&emkdesign.com
-15538
- ASIGRA Inc.
- David Farajun
- dfarajun&asigra.com
-15539
- Media 4 Sp. z o.o.
- Jakub Jakacki
- admin&md4.pl
-15540
- AM Corporation
- David Ford
- davidford&amcorp.com.au
-15541
- RH Ministarstvo gospodarstva
- Ema Culi
- ema.culi&mingo.hr
-15542
- EMK Design
- Waitman C Gobble II
- waitman&emkdesign.com
-15543
- Illinois Power Company
- Jimmy Hu
- domreg&illinoispower.com
-15544
- American Mensa, Ltd.
- Howard Prince
- isdirector&americanmensa.org
-15545
- Probix
- Edmund Jay
- edmund&probix.com
-15546
- eleven.am
- D Harmison
- dh&miami.edu
-15547
- Onaras AG
- Ramon Amat
- amat&onaras.ch
-15548
- Pillar Data Systems
- Shang Hua Wang
- swang&pillardata.com
-15549
- XCache Technologies, Inc.
- Steve Work
- support&xcache.com
-15550
- La Sierra University
- Marc Thomas
- ianaoid&lasierra.edu
-15551
- Object Engineering GmbH
- Andi Koch
- akoch&objeng.ch
-15552
- Statmon Technologies Corp.
- Peter Upfold
- peter&statmon.com
-15553
- SnarlSNMP Dynamic Web Application Monitor Developers Group
- Stephan Wenzel
- stephanwenzel&users.sourceforge.net
-15554
- Democratic National Committee
- Chuq Yang
- chuq&dnc.org
-15555
- Gold Coast City Council
- Patrick Clancy
- pclancy&goldcoast.qld.gov.au
-15556
- Chuq Yang
- Chuq Yang
- chuq&bigfoot.com
-15557
- Inflection Technologies
- Steve Varley
- steve.varley&inflection.com.au
-15558
- Institute of Chemical Process Fundamentals
- Radek Nezbeda
- nezbeda&icpf.cas.cz
-15559
- Orionet
- Danil Pismenny
- dapi&mail.ru
-15560
- Yanfa
- Xuelong, Li
- samside&263.net
-15561
- Coleman Family Camps
- Christopher Masto
- chris&colemanfamilycamps.com
-15562
- mbrace.org
- Juergen Fiedler
- juergen&fiedlerfamily.net
-15563
- Adtron
- Chris Budd
- CBudd&Adtron.com
-15564
- Aselia Technologies, Inc.
- Jeff Hays
- jshays&interaccess.com
-15565
- Great Plains Mall.net
- Theodore Reph
- ted&reph.org
-15566
- Experian Japan Co., Ltd (formerly 'A-Care Systems, Inc.')
- Hideki Yamashita
- Hideki.Yamashita&jp.experian.com
-15567
- Neople Ltd.
- Jeongyun Lee
- system&neople.co.kr
-15568
- Center for Development of Information Technology - CDIT
- Dinh Kim Cuong
- dinhkc&cdit.com.vn
-15569
- Krasnoyarsk ICC subdivision of MCC, JSC "Russian Railways"
- Vladimir Panfilov
- admins&krw.ru
-15570
- Bayerische Landesbank
- Georg Michi
- Georg.Michi&blb.de
-15571
- Schuler Electronics
- Manfred Schuler
- M.Schuler&schuler-electronics.de
-15572
- Tcom&dtvro
- Jong M. Sohn
- jmson&tcom-dtvro.com
-15573
- Apertio Ltd
- Kevin Wakefield
- kevin.wakefield&apertio.co.uk
-15574
- E-milio Internet Services, S.L.
- Ramon Corominas
- rcorominas&citec.es
-15575
- Chimes, Inc.
- Tom Carroll
- tcarroll&chimesnet.com
-15576
- Pompoen B.V
- Oscar Steenmann
- oscar&steenmann.nl
-15577
- AirPrism
- Kap J Shin
- kap&airprism.com
-15578
- DeepRoot Linux
- Abhas Abhinav
- abhas&deeproot.co.in
-15579
- Saeson Telecom co., ltd
- Andrew Choi
- hoidoori&mail.co.kr
-15580
- VNIINS
- Dmitry V. Efanov
- defanov&pisem.net
-15581
- Telemed Communications Services GmbH
- Robert Schmoelzer
- hostmaster&tmc.at
-15582
- Xtradyne Technologies AG
- Joerg Bartholdt
- Joerg.Bartholdt&Xtradyne.com
-15583
- EUREG
- Stephane Bortzmeyer
- bortzmeyer&eureg.org
-15584
- de Werknaam
- Jeroen de Kreek
- Jeroen&deKreek.nl
-15585
- Northern Light Technology
- Tracy Williams
- pekoe18&hotmail.com
-15586
- Response Mechanics, Inc.
- Ranny Meier
- Support&RespMech.com
-15587
- Humboldt State University
- Peter Johnson
- paj1&humboldt.edu
-15588
- WetWebMedia
- Jason Chodakowski
- jasonc&wetwebmedia.com
-15589
- IntiGate Inc.
- Kyungwon Kim
- kwkim&intigate.com
-15590
- Catboy Technologies
- Steven R. Currie
- srcurrie&currieweb.com
-15591
- Alex Shepard
- Alex Shepard
- acidic&li.com
-15592
- Viking Telecom
- Jens Corneliusson
- jens.corneliusson&viking-telecom.com
-15593
- Kore Systems GmbH
- Nick Baile
- nick.baile&koresystems.com
-15594
- Causeway Technologies
- Javeria Aijaz
- javeria.aijaz&causeway.com
-15595
- MEAG MUNICH ERGO AssetManagement GmbH
- Dr. Roman Prikryl
- RPrikryl&meag.com
-15596
- SONORK S.R.L.
- Sr. Bruno Ricardo Sacco
- bsacco&hypernet.com.py
-15597
- Avamar
- Viet LaMore
- snmpoid&avamar.com
-15598
- Compro Technologies, Inc.
- Brian Thornton
- brian&comprotech.com
-15599
- Groom Lake Laboratories
- Todd E. Johnson
- tejohnson&groomlakelabs.com
-15600
- Xeta Technologies
- James Middleton
- jim.middleton&xeta.com
-15601
- Velocity Software
- Barton Robinson
- barton&velocitysoftware.com
-15602
- lottasophie.de
- Jörg Napp
- joerg&lottasophie.de
-15603
- Sunhillo Corporation
- Ned Gubbi
- ned&sunhillo.com
-15604
- Kuopio Telephone PLC
- Timo Hopponen
- timo.hopponen&kpy.fi
-15605
- Gray Laboratories, Inc.
- Michael Sparks
- msparks&graylabs.com
-15606
- TopPioneer Technologies Limited
- Alexander Chow
- alex.chow&toppioneer.com
-15607
- Encentuate, Inc.
- Boon K. Law
- boon&encentuate.com
-15608
- Anders & Rodewyk
- Nils Kaczenski
- NKaczenski&ar-hannover.de
-15609
- Iskon Internet d.d.
- Jerko Klarica
- jerko.klarica&iskon.hr
-15610
- Herbert Retail Ltd.
- Rowan Bradley
- rowan.bradley&herbertgroup.com
-15611
- MIC Electronics Limited
- Chandra Sekhar Vallabhaneni
- chandu&micsoft.com
-15612
- SoftWare Services
- Tom Young
- tom&twyoung.com]
-15613
- gen-i limited
- Robert Hunter
- robert.hunter&gen-i.co.nz
-15614
- Rick Bauman Consulting
- Rick Bauman
- rick&lowcountry.net
-15615
- kma, inc.
- brawnski l. armstrong jr
- iana&brawnski.com
-15616
- Dullroar Enterprises
- James Lehmer
- lehmer&dullroar.com
-15617
- newlimits
- Henry jean-luc
- hertz&securify.ddts.net
-15618
- Adrenalize, Inc.
- Corey Leong
- corey&adrenalize.com
-15619
- Delean Vision
- Nicolas Vandenberghe
- nvandenberghe&deleanvision.com
-15620
- Ceiva Logic
- Aaron Shively
- hostmaster&ceiva.com
-15621
- ZP Technologies
- Simon Newton
- zpt&iinet.net
-15622
- APTARE
- Rick Clark
- rick&aptare.com
-15623
- Bachblue Pty Ltd t/a AFOYI
- Darryl Ross
- darryl&afoyi.com
-15624
- Skopeo LLC
- Vanson Samuel
- admin&skopeo.com
-15625
- Excedent Technologies
- Bill Boebel
- bill&webmail.us
-15626
- Campus Crusade Asia Ltd
- Leslie Chiang
- leslie&sccc.org.sg
-15627
- Spezifikum
- Malte Mueller
- mm&spezifikum.de
-15628
- LAMARC GmbH
- Lars Eisenblatt
- lars.eisenblatt&lamarc.com
-15629
- IQSoft Rt
- Kiss Árpád
- kissa&iqsoft.hu
-15630
- InfoGuard HB
- Magnus Petersson
- magnus.petersson&infoguard.se
-15631
- Vivista Limited
- Caroline Andrewes
- caroline.andrewes&vivista.co.uk
-15632
- prime factory Gmbh & Co KG
- Michael Juergens
- michael.juergens&prime-factory.de
-15633
- Tonisoft
- Antoine Levy-Lambert
- levylambert&tiscali-dsl.de
-15634
- d3.net internet - technologien gmbh
- Stephan Ahrensfeld
- stephan.ahrensfeld&d3.net
-15635
- China PKI
- Han Song Ling
- pki&pki.com.cn
-15636
- Althea Technical
- Simon Brown
- simontst&cs.toronto.edu
-15637
- Spinlock Network LLC
- Kurt Sauer
- kurt.sauer&spinlock.com
-15638
- commissaire.net
- Kurt Sauer
- kurt.sauer&spinlock.com
-15639
- e-solutions, lda
- Rui Vitória
- rui&e-solutions.pt
-15640
- Clear Technology, Inc.
- Ray Wee
- dave.tyler&clear-technology.com
-15641
- Masobit SRL
- Marco Masoni
- marco&masobit.net
-15642
- Transplace, Inc.
- William Ash
- william.ash&transplace.com
-15643
- Hallway Software Design Corp.
- Brendan McKenna
- brendan&hallwaysdc.com
-15644
- Brenda Bell
- Brenda Bell
- b311b-iana20150809&theotherbell.com
-15645
- pixell daten & design GmbH
- Arndt Lückerath, technical contact
- arndt&pixell.de
-15646
- Pjusarafelag Islands
- Ingimar Robertsson
- iar&pjus.is
-15647
- thesysadmin
- Murat Bicer
- murat&thesysadmin.com
-15648
- Atlantis Services
- Paul Pathiakis
- paul&pathiakis.com
-15649
- VOSGAMES
- Take Vos
- Take.Vos&vosgames.nl
-15650
- Citrenesys Corporation
- Jerry Walling
- jerry.walling&citrenesys.com
-15651
- Seventh Moon Co., Ltd.
- Jun Miyata
- jun&7moon.co.jp
-15652
- SHE Informationssysteme AG
- Claus Bayer
- claus.bayer&she.net
-15653
- Intesys
- Miguel de Lucas Manzano
- miguel_de_lucas_manzano&hotmail.com
-15654
- Max Momentum
- Dirk Beele
- beele&maxmomentum.de
-15655
- SITADELLE
- Olivier LAFONT
- olivier.lafont&sitadelle.com
-15656
- Computer Park Ltd
- Andrew Ray
- aray&computerpark.co.uk
-15657
- Macrocall
- Lian Ngian
- lngian&hotmail.com
-15658
- Fillmore Labs
- Oliver Eikemeier
- eikemeier&fillmore-labs.com
-15659
- Alaska Airlines
- Brian Ferderer
- Brian.ferderer&alaskaair.com
-15660
- TLM Software
- Kevin Carter
- bilbo&tlm.us
-15661
- 0x2.net
- E. de Veij
- deveij&xs4all.nl
-15662
- fumph.com
- John Bair
- jbair&fumph.com
-15663
- Aswan Co. Ltd.
- Aswan
- superaswan&yahoo.com
-15664
- Aractel Networks Ltd
- Ruban Selvarajah
- ceo&aractelnetworks.net
-15665
- Eastern Communication Technology Development CO.LTD
- gaofeng
- gaof&mail.eastcomtd.com
-15666
- orgatech Ulrich Tiemann GmbH
- Christian Nordmann
- nordmann&orgatech.de
-15667
- Lechner-Rau Haustechnik
- Axel Rau
- Axel.Rau&Chaos1.DE
-15668
- ZHONGFANG Information Co.,Ltd
- Smith Zhang
- zzh998&hotmail.com
-15669
- Lifecycle Software
- John Leonardis
- tauceti&optonline.net
-15670
- The Internet Marketing Center
- Gary Richardson
- gary.richardson&marketingtips.com
-15671
- Wardega Consulting
- Tomek Wardega
- tomek&wardega.com
-15672
- Javno preduzece "Posta Srbije" (formerly 'Javno preduzece PTT saobracaja "Srbija"')
- Dragan Spasic
- dspasic&ptt.rs
-15673
- Codeangels Solutions
- Kirill Alder
- kirill&codeangels.com
-15674
- Valente CC
- Antonio Valente
- antonio&valente.cc
-15675
- StoneDonut, LLC
- Charles W. Loughry
- cloughry&stonedonut.com
-15676
- baede
- daniel baede
- daniel&baede.net
-15677
- Thomson-Thomson
- Wei Lin
- wei.lin&t-t.com
-15678
- Software Projects Pty Ltd
- John Jeffery
- JJeffery&sp.com.au
-15679
- Cape Com Inc
- Vernon Grabel
- sysop&cape.com
-15680
- Digirati
- Michel Silva Machado
- michel&digirati.com.br
-15681
- ROSCO Associates Technology Staffing Ltd.
- Roger Walker
- roger&rope.net
-15682
- pkiclue.com, Inc.
- Rodney Thayer
- rodney&pkiclue.com
-15683
- Acrosonic Corporation
- Anthony C Moulton
- tmoulton&acrosonic.com
-15684
- Macro Technology
- Naekyu Dan
- nkdan&macrotek.co.kr
-15685
- agala.net
- Frank J. Beckmann
- agala.net-admin-c&barda.agala.net
-15686
- Mei Communication Co.
- Mei Jingping
- wh_angel&263.net
-15687
- Magic Software Enterprises Ltd.
- Rina Vinokurov
- rinav&magicsoftware.com
-15688
- Practical Labs
- James Copher
- jec&practicallabs.com
-15689
- Heinz Family Germany
- Tobias Heinz
- tobias&formelheinz.de
-15690
- LIISP
- Dongwan Shin
- doshin&uncc.edu
-15691
- NetPower Solutions
- Bart Vantieghem
- bart&netpowersolutions.net
-15692
- Minnigerode
- David Minnigerode
- minniger&minnigerode.com
-15693
- IonIdea
- Vasyl Rublyov
- vasyl.rublyov&ionidea.com
-15694
- Silicom
- Ezra Koper
- ezra&silicom.co.il
-15695
- A. Pomerantz & Company
- Andrew Paprocki
- paprocki&pomerantz.com
-15696
- Bayer AG
- Stephan Herbertz
- stephan.herbertz.sh&bayer-ag.de
-15697
- Cellon Inc
- Paul M. Moriarty
- paul.moriarty&cellon.com
-15698
- NLoci
- Luke Renn
- luke@terminaltechnologies
-15699
- Renesys Corporation
- James Cowie
- cowie&renesys.com
-15700
- Henrici IT-Consulting
- D. Henrici
- info&henrici.biz
-15701
- Schmut
- Mario Theodoridis
- mario&schmut.com
-15702
- Computer Image Technology
- David Carroll
- dwcar49us&yahoo.com
-15703
- Software Diversified Services
- Tim Full
- tfull&sdsusa.com
-15704
- Cyan Worlds, Inc.
- Robert J. Emanuele
- rje&cyan.com
-15705
- Multitalents
- Tim Rice
- tim&multitalents.net
-15706
- IGLOO SECURITY, Inc.
- Dae-Soo, Choi
- dschoi&igloosec.com
-15707
- silve.net
- Robert Silve
- robert&silve.net
-15708
- Beijing Westman Automation Ltd. Co.
- Yanjun Wang
- yjwang&btamail.net.cn
-15709
- CBOSS
- Boris Gribovsky
- bgribovsky&cboss.ru
-15710
- Megasoft
- Andrew Mikhnevich
- zcho&megasoft.ru
-15711
- Euro DB
- Didier Dubuisson
- system.team&eurodb.be
-15712
- Taringold Ltd.
- Brendan McKenna
- mckennab&taringold.ie
-15713
- Drinsama GmbH
- Erich Schubert
- erich.schubert&drinsama.de
-15714
- Lenel Systems International, Inc.
- Ed Gauthier
- ed&lenel.com
-15715
- Blue Tree Systems
- Kenn Humborg
- kenn&bluetree.ie
-15716
- gogo6 (formerly 'Hexago')
- Mikael Lind
- support&gogo6.com
-15717
- Cegetel Net
- Stephane Clodic
- stephane.clodic&cegetel.net
-15718
- Loyalty Management Group Canada, Inc.
- Michael Kennedy
- mkennedy&loyalty.com
-15719
- Mass College of Liberal Arts
- Peter Allmaker
- pallmaker&mcla.edu
-15720
- binaryMedia
- Darnell Gadberry
- darnell&binmedia.com
-15721
- 7COMm
- Edson Watanabe
- edsonw&7comm.com.br
-15722
- Concare
- Bent Larsen
- bent.larsen&concare.dk
-15723
- Holoscenes.com
- Jim Irwin
- jimirwin&acm.org
-15724
- VisionBank Corp.
- Kate Lee
- kate_lee&visionbank.com
-15725
- ZyFLEX Technologies, Inc.
- Tommy Chen
- Tommy <tommy_chen&zyflex.com.tw>
-15726
- Klug GmbH integrierte Systeme
- Manfred Pausch
- mpausch&klug-is.de
-15727
- hofen.org
- Kai Hofen
- einkauf&hofen.org
-15728
- Sentry Information and Alert Systems Corp
- Gary Murphy
- garym&teledyn.com
-15729
- SyTrust GmbH
- Florian Oelmaier
- oelmaier&sytrust.com
-15730
- Lulu Enterprises, Inc.
- Mark Turner
- iana&lulu.com
-15731
- EasyPax Inc.
- Igor Kravchenko
- igor&easypax.com
-15732
- ZIV Aplicaciones y Tecnología S.A. (formerly 'uSysCom')
- Miguel Ángel Álvarez Cabanes
- ma.alvarez&ziv.es
-15733
- Washington State University
- Rick Wegner
- rick&wsu.edu
-15734
- AION Systems
- John Brinnand
- john_brinnand&yahoo.com
-15735
- Secure Technology Hawaii
- Duane Takamine
- support&sthi.com
-15736
- Emergepoint
- Duane Takamine
- support&sthi.com
-15737
- Zozoa Inc
- Clodic Stephane
- sc&clodic.com
-15738
- Business Network Communications
- Patrik Schilt
- patrik&bnc.ch
-15739
- Ruzz Technology Pty Ltd
- Robert Rutherford
- ruzz&ruzz.com
-15740
- Digital Vision Technology Ltd
- Tony Choi
- tony.choi&dvm.com.hk
-15741
- Softerra, LLC
- Kirill Kovalenko
- kirill&softerra.com
-15742
- DiskSites Ltd.
- Gavrie Philipson
- gavrie&disksites.com
-15743
- VTL (UK) Ltd
- Systems Administrator (Daniel Siechniewicz)
- systemsadmin&viatel.com
-15744
- NetRatings, Inc.
- Paul Petricevich
- ppetricevich&netratings.com
-15745
- Schoren NMS Solutions
- Craig Rendon
- c.rendon&attbi.com
-15746
- ZONER software, s.r.o.
- Petr Herman
- herman&zoner.com
-15747
- Locus Portal Corporation
- Tero Heinonen
- tero.heinonen&locusportal.com
-15748
- NetGhost Communications
- Steven Palmer
- steelhawk&mail.com
-15749
- Ingersoll-Rand Co Inc
- Benjamin L Pugh
- ben_pugh&thermoking.com
-15750
- University of Tromsø
- Børge Brunes
- borge&cc.uit.no
-15751
- TRC Fiord, JSC
- Alexander Amelkin
- noc&fiord.ru
-15752
- slamb.org
- Scott Lamb
- slamb&slamb.org
-15753
- APPServer
- Antonio Pavanetto
- antonio&appserver.com.ar
-15754
- Vancouver Community Network
- Steven Chan
- dns-admin&vcn.bc.ca
-15755
- PIVoD Technologies
- Phillip Jenkins
- OID.Admin&pivod.com
-15756
- Wistron NeWeb Corporation
- Nanping Houl
- nanping_houl&wneweb.com.tw
-15757
- MITSUBISHI ELECTRIC INFORMATION TECHNOLOGY CORPORATION(MDIT)
- HITOSHI WATANABE
- watanabe-hi&mdit.co.jp
-15758
- suntek beijingyanjiuyuan
- tianxiaoyan
- t800519&sina.com
-15759
- Greener Pastures Innovations
- John Wagner
- john.wagner&gpinno.com
-15760
- NMSWorks Software Limited
- Dr. N. Usha Rani
- usha&nmsworks.co.in
-15761
- ATS Elektronik GmbH
- Gerald Schroth
- Gerald.Schroth&ATSonline.de
-15762
- Khety
- Ismaël Ruau
- ismael.ruau&khety.com
-15763
- Lagan
- Gordon Collins
- gordon_collins&lagan.com
-15764
- REPSOL YPF, S.A.
- MANUEL DATO BRIONES
- seguridadlogicacorporativa&repsolypf.com
-15765
- JX Solutions Ltd.
- Phil Bluer
- phil.bluer&jxsolutions.com
-15766
- Matrix Mailing, LLC
- Jon Foster
- jon&matrixmailing.com
-15767
- Triblen
- Josef Brunner
- josef.brunner&triblen.de
-15768
- Ericsson Inc. (formerly 'BelAir Networks')
- Ryan Greer
- ryan.greer&ericsson.com
-15769
- Argecy Computer Corporation
- Steve Lee
- stevewlee&aol.com
-15770
- Zeera Networks, Inc.
- Dennis Marti
- dennis&zeera.net
-15771
- JF Possibilities
- Jon Foster
- jon&jfpossibilities.com
-15772
- Fachhochschule Landshut
- Peter Bauer
- ba&fh-landshut.de
-15773
- e-BS, a.s.
- Michal Pøíhoda
- mph&e-bs.cz
-15774
- DesigNET, INC.
- Kimiyoshi Ohno
- admin&designet.co.jp
-15775
- HEIDENHAIN
- Juergen Kaesberg
- kaesberg&heidenhain.de
-15776
- Advanced Data Integration
- Mick O'Neill
- mick.oneill&advdata.com.au
-15777
- Openin
- Stephen Francis
- stephenf&openin.com.au
-15778
- DaxNetwork
- xiaoli
- mpnm&mail.maipu.com
-15779
- Novel TongFang
- Huang you sheng
- yshuang&novel-tongfang.com
-15780
- Kiloutou
- Flamant
- jmflamant&kiloutou.fr
-15781
- TRANSFLOW Informationslogistik GmbH
- Christoph Amann
- christoph.amann&transflow.com
-15782
- VIA MAT MANAGEMENT AG
- Christoph Amann
- christoph.amann&transflow.com
-15783
- HRsmart, Inc
- Daniel Pruessner
- daniel&hrsmart.com
-15784
- ELB Consulting
- Eduardo Brito
- elimabrito&hotmail.com
-15785
- Montrusco Bolton Investments Inc.
- Tim Colby
- colbyt&montruscobolton.com
-15786
- NetLedger, Inc.
- Ted Rice
- trice&netledger.com
-15787
- DGN Service GmbH
- Knut Goldberg
- knut.goldberg&dgn-service.de
-15788
- The Elders of the Universe
- Richard L. Allbery
- rla&arcologies.org
-15789
- Infineon Technologies AG
- Roger Uebel
- roger.uebel&infineon.com
-15790
- Wideray Corporation
- Clinton Wong
- clintdw&wideray.com
-15791
- La Canada Wireless Association
- Bob Knight
- bob&bobknight.net
-15792
- Interlink Group Incorporated
- Paul Chizzo
- paul.chizzo&ilg.com
-15793
- Pittig Software & Internet Services
- Klaus Pittig
- klaus&pittig.de
-15794
- DeGeorge Family
- David L DeGeorge
- dld&degeorge.org
-15795
- Vandelay Internet Services, Inc.
- Josh Hogle
- josh.hogle&vandelay-inc.com
-15796
- ImageONE Co., Ltd.
- Yanan Yin
- yy&imageone.co.jp
-15797
- Infosys Technologies Limited
- Shiv Kumar Sharna
- shivkumar_sharma&infosys.com
-15798
- Rato International Communication Co
- James Wung
- peasantry&163.com
-15799
- Cesky Mobil a.s.
- Vaclav Moucha
- vaclav.moucha&oskarmobil.cz
-15800
- JN Data A/S
- Steen Bank Johnsen
- sbj&jndata.dk
-15801
- Huitsing Embedded Systems
- Albert Huitsing
- snmp&huitsing.com
-15802
- Farlep
- Michael Musikhin
- moderatto&cetus.farlep.net
-15803
- mercatis information systems gmbh
- Volker Fritzsch
- volker.fritzsch&mercatis.de
-15804
- DLR SISTEC
- Volker Padur
- Volker.Padur&dlr.de
-15805
- Sweetheart Cup Company, Inc.
- Scott MacLellan
- smaclellan&sweetheart.com
-15806
- ConnecTalk Inc.
- Tim Colby
- tcolby&connectalk.com
-15807
- DGN Service GmbH
- Knut Goldberg
- knut.goldberg&dgn-service.de
-15808
- DGN Service GmbH
- Knut Goldberg
- knut.goldberg&dgn-service.de
-15809
- WNET ISP
- Sergey Gulchuck
- goo&wnet.ua
-15810
- Bank Severnaya Kazna OAO
- pavel Pokrovsky
- paul&kazna.ru
-15811
- Digital Control, LLC
- Weston Bustraan
- wbustraan&mac.com
-15812
- Radical Corporation
- Thomas George
- thomas.george&radicalcorp.com
-15813
- AIS.PL
- Romuald Dabrowski
- rdab&ais.pl
-15814
- Applied Concepts
- Richard L. Melton
- rmelton&electronicbingo.com
-15815
- NetQA
- Mark Trumpold
- markt&tachyon.net
-15816
- Infra 911, Inc.
- Jaewoon Lee
- ds1mgc&hanmail.net
-15817
- Falcon System Consulting, Inc.
- Toru Isogai
- isogai&falconsc.com
-15818
- Stadt Braunschweig
- Sven Rethmann
- sven.rethmann&braunschweig.de
-15819
- Cryptolog International
- Alexandre Stern
- alexandre.stern&cryptolog.com
-15820
- CASTOR Informatique
- C. MACRIDIS
- castor.telecom&wanadoo.fr
-15821
- FreeBSD-CN Project
- LI Dong
- ld&freebsdchina.org
-15822
- I-ST.net GmbH
- Robert Niess
- niess&i-st.net
-15823
- LinuxWithin.com
- John Lombardo
- jl&linuxwithin.com
-15824
- InaSoft
- Dexter Lu
- dlu&inasoft.com
-15825
- ClearMetrix, Inc.
- Erich Morisse
- emorisse&clearmetrix.com
-15826
- Cryptek, Incorporated
- Andrew Scholnick
- AScholnick&cryptek.com
-15827
- Crocker Communications, Inc.
- Matthew Crocker
- matthew&crocker.com
-15828
- H3G Italia S.p.A. - Enterprise C.A.
- Lorenzo Giltri
- lorenzo.giltri&h3g.it
-15829
- DIGITAL PRODUCTION SARL
- François FIGAROLA
- sysadmin&digital-production.fr
-15830
- Robinlea
- John Francis Lee
- jfl&robinlea.com
-15831
- DENSO IT LABORATORY, INC.
- Tomokatsu Okuya
- tokuya&d-itlab.co.jp
-15832
- BT Ignite solutions
- Alan Taylor
- alan.g.taylor&bt.com
-15833
- SIGEC
- Francis MARTINEZ
- francis.martinez&sigec.fr
-15834
- Tigard-Tualatin School District
- Selena Brewington
- sbrewington&ttsd.k12.or.us
-15835
- M&S Systems
- David Ornelas
- dornelas&mssystems.com
-15836
- Marcor Associates, Ltd.
- Stuart Marks
- stu&marcorassociates.com
-15837
- Investment Technology Group
- Derek Ealy
- ealy&itgssi.com
-15838
- AKA
- Alex RENAULT
- renault&aka.fr
-15839
- The E.W. Scripps Company
- Jamey Maze
- jmaze&scripps.com
-15840
- GEIDAX
- jeremy wilson
- jeremy.wilson&ps.ge.com
-15841
- Daniel Ritter
- Daniel Ritter
- daniel.ritter&moonx.de
-15842
- Blasberg-Computer-Systeme GmbH
- Hagen von Eitzen
- hostmaster&blasberg-computer.de
-15843
- Massenbach
- Christian von Massenbach
- christian.von.massenbach&gmx.net
-15844
- SELEX Communications S.p.A.
- Leonardo Bertorello
- leonardo.bertorello&selex-comms.com
-15845
- DixPER Systems
- Diego Perez
- diper&dixper.com.ar
-15846
- IP Fabrics
- Rick Marion
- rick.marion&ipfabrics.com
-15847
- Harvard Law School
- Nathan Logus
- logus&law.harvard.edu
-15848
- Sensorsoft Corporation
- Hari Kosaraju
- md&sensorsoft.com
-15849
- Evans Companies
- Richard Felix
- richardf&evanscompanies.com
-15850
- ReShape
- Sarah Clatterbuck
- it-staff&reshape.com
-15851
- Computerized Medical Systems
- David Harfst
- harfst&cms-stl.com
-15852
- Legion Interactive
- Damien O'Rourke
- dorourke&legioninteractive.com.au
-15853
- Computer Center, Hitotsubashi university
- Hiroaki Nagoya
- nagoya&cc.hit-u.ac.jp
-15854
- RIPE NCC
- Bruce Campbell
- ops&ripe.net
-15855
- Luleå Segelsällskap
- Michael Kolmodin
- michael&kolmodin.net
-15856
- Open Power Network, R.Schär
- Ralf Schär
- ralf.schaer&opn.ch
-15857
- Administracion del Principado de Asturias
- Jose Maria Alonso Fernandez
- jmalonso&princast.es
-15858
- all-in-green.com GmbH
- Yan Hackl-Feldbusch
- y.hackl&all-in-green.com
-15859
- City of Tampere
- Leo Lehtinen
- Leo.Lehtinen&tt.tampere.fi
-15860
- ParTec
- Jens Hauke
- hauke&par-tec.com
-15861
- KiNETiK GmbH
- Andreas Kurzac
- a.kurzac&kinetik.de
-15862
- BankService Plc.
- Boian Baev
- bbaev&bsbg.net
-15863
- Innovative Navigation
- Heiko Jaberg
- heiko.jaberg&innovative-navigation.de
-15864
- Unicity Pty. Ltd.
- Jim Crumpler
- Jim.Crumpler&unicity.com.au
-15865
- cab Produkttechnik GmbH & Co KG
- Jörg Falkenberg
- j_falkenberg&cabgmbh.com
-15866
- Joe Rhodes Consulting LLC
- Joe Rhodes
- joe&joerhodes.com
-15867
- IXI Mobile (R&D) Ltd.
- Amit Shachak
- AmitS&ixi.com
-15868
- Cybris Network Information Systems
- Christopher Fernando
- cybris-iana&cybris.net
-15869
- Tijd Beursmedia
- Afdeling AOB
- aob&tijdbeursmedia.nl
-15870
- Egon Technologies
- James Downs
- james.downs&egon.cc
-15871
- Omnilux
- Carter Moursund
- carter&omnilux.net
-15872
- IT Merge Inc.
- Gavin Barnard
- gavin&itmerge.com
-15873
- Guardian Life Insurance Inc
- Omer Kose
- omer_f_kose-shahul&glic.com
-15874
- MDS Proteomics A/S
- Rob Rankin
- rrankin&mdsp.dk
-15875
- M-PLIFY S.A.
- David Tonhofer, M-PLIFY S.A.
- d.tonhofer&m-plify.com
-15876
- Microprogram Information LD. CO.
- luke shei
- luke&program.com.tw
-15877
- API Technologies, LLC
- Scott Meeuwsen
- scottm&api-tech.com
-15878
- AZTECH SYSTEMS LTD
- Sun Zhengke
- sun.zheng.ke&cn3.aztech.com
-15879
- WaveIP Ltd.
- Danny Erez
- dannye&waveip.com
-15880
- MONEYLINE BANKING SYSTEMS
- Philippe FUMANERI
- fumaneri&moneyline.fr
-15881
- Thomas Fahle
- Thomas Fahle
- info&thomas-fahle.de
-15882
- smart ip
- Carlos J. Garcia
- cjgarcia&smartip.es
-15883
- Getronics France
- Pierre Chavas
- pierre.chavas&getronics.com
-15884
- Noble Turkey Software
- Eileen Boer
- louboer&earthlink.net
-15885
- ESAG Energieversorgung Sachsen Ost AG
- Uwe Höger
- Uwe_Hoeger&esag.de
-15886
- Manhattan Associates
- Don Ruby
- druby&manh.com
-15887
- Cosini Networks, Inc
- George Lin
- glin&cosini.com
-15888
- TAI S.r.l.
- Claudio Montanari
- c.montanari&tai.it
-15889
- Q-Free ASA
- Audun Myrhol
- audun&q-free.com
-15890
- Prairie Grove Telephone Co.
- Steven Karp
- admin&pgtc.com
-15891
- Panda Restaurant Group, Inc.
- William Yu
- William.Yu&PandaRG.com
-15892
- Openmodes Technology Group Inc.
- Neil Sequeira
- nsequeira&openmodes.com
-15893
- Emerson Climate Technologies Retail Solutions, Inc. (formerly 'Computer Process Controls')
- David Rohn
- David.Rohn&Emerson.com
-15894
- AstroStage Inc.
- Masatoshi Nakamura
- nakamura&astrostage.co.jp
-15895
- 4Linux
- Alessandro Kenji Urakawa
- alessandro&4linux.com.br
-15896
- Southern Federal University (formerly 'Rostov State University, Computer Center')
- Andrey Berezovskiy
- noc&r61.net
-15897
- Guangzhou GaoU S & T Development Co. Ltd.
- Jiming Pan
- jiming_pan&hotmail.com
-15898
- Polizei Brandenburg
- Mike Peter
- mike.peter&polizei.brandenburg.de
-15899
- inubit
- Stephan Kahnt
- stephan.kahnt&inubit.com
-15900
- OpenWeb
- Jens Reinemuth
- jens&openos.de
-15901
- Valsimmon Technology Group
- G. RIchard Raab
- Richard.Raab&valsimmon.com
-15902
- MEN@NET
- Jan Bartels / Niels Gustaebel
- jan.bartels&menatnet.de
-15903
- Seebek Ingeniería S.R.L.
- Marcelo Ovando
- zlimit&seebek.com
-15904
- Peter Eckel, System and Network Management
- Peter Eckel
- Peter.Eckel&Eckel-EDV.de
-15905
- Defero Systems AB
- Rasmus Aveskogh
- rasmus&lantech.se
-15906
- WLAN AG
- Christoph Kowalczyk
- christoph.kowalczyk&wlangroup.com
-15907
- Canyon Networks
- Craig Scheets
- cscheets&canyon-net.com
-15908
- Business Technology Associates, Inc.
- Dirk Huizenga
- netadmin&BusinessTechnologyAssociates.com
-15909
- MRX Solutions
- Charles Hsiao
- chsiao&mrxsolutions.com
-15910
- AutoTrader.com
- Larry Korb
- larry.korb&autotrader.com
-15911
- he chuan
- he chuan
- h-chuan&jaist.ac.jp
-15912
- BlueCom AS
- Chris Qvigstad
- hostmaster&bluecom.no
-15913
- Networking Support Services
- Jeff Morrison
- jmorrison&networkingss.com
-15914
- Netreo Incorporated
- James Mancini
- netreo-mibs&netreo.net
-15915
- High Tower Software
- Jeff Wong
- jwong&high-tower.com
-15916
- LANDesk Software
- Alan Butt
- alan.butt&landesk.com
-15917
- Expedient Communications
- Barnaby Brown
- isops&expedient.com
-15918
- the MORROW group
- Patrick S. Morrow
- pat&themorrowgroup.com
-15919
- Hitachi Storage Software Incorporated
- Jean Stein
- j.stein&hitachissi.com
-15920
- Switch Management
- Brian Strand
- bstrand&switchmanagement.com
-15921
- MobileAccess
- Yossi Appleboum
- iftah&web-silicon.com
-15922
- YISHANG INNOVATION TECHNOLOGY CO.,LTD
- Nick
- ningkg&yishang.com.cn
-15923
- ICS GmbH
- Markus Heller
- heller&ics.de
-15924
- Kuwait Linux Company
- Vineet Mehta
- vineet&linux.com.kw
-15925
- Cadence Design Systems
- Kaijun Zhan
- kzhan&cadence.com
-15926
- Cartier Partners Financial Group Inc.
- Derek Schenk
- schenkd&cartierpartners.ca
-15927
- Point Loma Nazarene University
- Corey Fling
- oid-admin&pointloma.edu
-15928
- SNB
- Egon Barfuss
- egon.barfuss&snb.at
-15929
- Cambodia Samart Communication
- Atthaya Pumsawai
- atthaya.p&hello016-gsm.com
-15930
- Lucasfilm Ltd.
- Robert Jordan
- robert.jordan&lucasfilm.com
-15931
- Center for International Rehabilitation
- Mike Traum
- mtraum&cirnetwork.org
-15932
- Wuertele
- Martin Wuertele
- iana&wuertele.net
-15933
- Cyanea Systems Corp.
- Robert Lam
- robert.lam&cyanea.com
-15934
- Multip Kft.
- Thomas Rottler
- tom-iana&multip.hu
-15935
- Centerplex
- Daniel J. Wilson
- djw&centerplex.net
-15936
- Koreadotcom
- Sunhwa Han
- ellesis&koreadotcom.com
-15937
- Svyazinform of Republic Mordovia Joint Stock Company
- Alex Macaroff
- macaroff&moris.ru
-15938
- JOINT-STOCK COMPANY IMPORT-EXPORT BANK "IMPEXBANK" , Moscow
- Petrov Vladimir
- petrov&impexbank.ru
-15939
- Coral Telecom Ltd
- Rajeev Vats
- rajeevvats&coraltele.com
-15940
- Factoria de iniciativas internet fi2, s.a
- Ramón Gutiérrez
- info&fi2net.com
-15941
- Galena Park ISD
- Greg Payne
- gpayne&galenaparkisd.com
-15942
- Cabildo de Gran Canaria
- Esther Mª Pulido
- iana&grancanaria.com
-15943
- CONEXUS Credit Union
- Trevor Allen
- tallen&conexuscu.com
-15944
- Agence de la Francophonie
- Pierre OUEDRAOGO
- pierre.ouedraogo&francophonie.org
-15945
- Ascertia
- Liaquat Khan
- liaquat.khan&ascertia.com
-15946
- Calypso Networks
- Carl Madison
- carl.madison&calypsonetworks.com
-15947
- New Jersey Institute of Technology
- Dean Knape
- knape&njit.edu
-15948
- TREVSPLACE.COM
- Trevor Allen
- tallen&trevsplace.com
-15949
- Fábrica de Idéias
- Rodrigo Severo
- rodrigo&fabricadeideias.com
-15950
- 4am Media, Inc.
- Michael Bartosh
- mbartosh&4am-media.com
-15951
- Axent Global
- Michael Zammit
- michael&axentglobal.com.au
-15952
- Advanced Computer Resources
- Matt Leo
- matt&acrcorp.com
-15953
- Aaron Spangler
- Aaron Spangler
- aaron&spangler.ods.org
-15954
- Filesure Pte Ltd
- Benjamin Har
- benjamin&file-sure.com
-15955
- OmniComp Technology Services
- Alan Dobkin
- IANA&OmniComp.Org
-15956
- InCore Technology Ltd
- Bernard Guillot
- bguillot&incoretech.com
-15957
- Muonics, Inc.
- Michael Kirkham
- support&muonics.com
-15958
- TREVSPLACE.COM
- Trevor Allen
- tallen&trevsplace.com
-15959
- Sue's Sound cc
- Mr. R. Gush
- robert&suesound.co.za
-15960
- eAirports
- Dawie Möller
- dawie&eairports.aero
-15961
- Cocking and Co. Ltd.
- Romilly Cocking
- romilly&cocking.co.uk
-15962
- ASML
- Michael Grasskamp
- michael.grasskamp&asml.com
-15963
- INFORMA COLOMBIA
- SANTIAGO ROJO
- srojo&informasa.es
-15964
- Instituto Nacional de Astrofísica, Optica y Electrónica
- Moisés Reyes M.
- moises&inaoep.mx
-15965
- Public Resources Management Group, Inc.
- Gordon Threlkeld
- gthrelkeld&prmginc.com
-15966
- Visa, International.
- Larry Liu
- larryliu&visa.com
-15967
- NCast Corporation
- H. S. Magnuski
- hankm&ncast.com
-15968
- Emico Vero
- Konrads Smelkovs
- konrads&emicovero.com
-15969
- Vindigo, Inc.
- Marc Poulin
- mcp&vindigo.com
-15970
- Aspen Networks Inc
- Sajit Bhaskaran
- sajit&aspen-networks.com
-15971
- Advanced Biometric Controls, LLC
- Tuomo Lampinen
- tlampinen&actechnology.com
-15972
- Disaster Kleenup International, Inc
- Ken Bowman
- kbowman&disasterkleenup.com
-15973
- JCorporate Ltd
- Sandra Cann
- scann&jcorporate.com
-15974
- Skywave Corporation
- Nathan Le Nevez
- npl&acis.com.au
-15975
- MEIKYO ELECTRIC CO.,LTD.
- Mitsuo Yoshida
- yoshida&meikyo.co.jp
-15976
- Adacom S.A.
- Kostas Noussias
- knousias&adacom.com
-15977
- ComPol II
- Janek Gasiorowski
- jg&compol2.com.pl
-15978
- IT=it
- Joris Schouten
- joriss&itisit.nl
-15979
- Tomsoft
- Thomas-Henning von Kamptz
- tom&tomsoft.com
-15980
- TrackWell Software hf
- Agust Einarsson
- info&trackwell.com
-15981
- Anillo Networks, Inc.
- Terry Porter
- anillonet&aol.com
-15982
- Hubbub IT Services
- Vincent Trinh
- vincent.trinh&hubbub.com.au
-15983
- Meru Networks
- Damien Toledo
- dtoledo&merunetworks.com
-15984
- Authenex, Inc.
- Ernesto Frutos
- efrutos&authenex.com
-15985
- The University of Lethbridge
- Jeff Oliver
- jeff.oliver&uleth.ca
-15986
- Binara, Inc.
- Daniel Wolk
- dan&binara.com
-15987
- Topoz Pty Ltd
- Alan Kennington
- topoz.snmp&topology.org
-15988
- Cymes GmbH
- Arnd Ben Otto
- info&cymes.net
-15989
- Torsten Schneider
- Torsten Schneider
- ldap&tschneider.org
-15990
- x9 (formerly 'MikroBitti')
- Antti Nilsson
- muut&antion.fi
-15991
- Raso
- Raso Luciano
- luciano&raso.org
-15992
- Tracerdigital, LLC
- Joel Peach
- jpeach&tracerdigital.com
-15993
- Net-Scale Technologies, Inc.
- Urs Muller
- urs&net-scale.com
-15994
- XCOM Comunicacao Segura
- Artur Romao
- artur.romao&isp.novis.pt
-15995
- it consultant Henning Follmann
- Henning Follmann
- hfollmann&itcfollmann.com
-15996
- RNP Rede Nacional de Ensino e Pesquisa
- Eduardo C. Grizendi
- eduardo.grizendi&rnp.br
-15997
- Wave Systems Corp.
- Mihran Mkrtchian
- mmkrtchian&wavesys.com
-15998
- University of Glamorgan
- Kevin Sewell
- khsewell&glam.ac.uk
-15999
- CPS Technology Group
- Paul Johansen
- pjohansen&cpstg.com
-16000
- Syrea s.r.l.
- Sala Renato
- renato.sala&syrea.it
-16001
- Ministry of Finance, Czech Republic
- David Hrdy
- David.Hrdy&mfcr.cz
-16002
- Glyphix
- Erik Riffel
- riffel&glyphix.com
-16003
- Zschimmer GmbH
- Joacim Zschimmer
- info&zsch.de
-16004
- Intrusec, Inc.
- David Meltzer
- djm&intrusec.com
-16005
- Durham University
- David Griffith
- d.e.griffith&durham.ac.uk
-16006
- CodeFab Inc
- Charles Swiger
- chuck&codefab.com
-16007
- Native Instruments
- Andreas Roedl
- andreas.roedl&native-instruments.de
-16008
- Consolidated Communications Inc
- Robert Koester
- robert.koester&consolidated.com
-16009
- TelemaxX Telekommunikation GmbH
- Jan Rischmueller
- rischmueller&telemaxx.de
-16010
- Kapsch BusinessCom AG
- Armin Aichholzer
- armin.aichholzer&kapsch.net
-16011
- State of Utah DAS/ITS
- Forrest Nielson
- fnielson&utah.gov
-16012
- MEMSCAP
- Khalid Shaheen
- khalid.shaheen&memscap.com
-16013
- byteCentric
- Paul Taylor
- paul.taylor&bytecentric.com
-16014
- Applied Materials Inc.
- Monil Naicker
- monil_naicker&amat.com
-16015
- Primary Objective, LLC
- Daniel A. Torrey
- daniel&primaryobjective.net
-16016
- Simmey Limited
- Robert Allan
- rob&simmey.com
-16017
- CEW Co Ltd
- Jun Yamada
- jun&cew.co.jp
-16018
- punker.org
- Max Malkov
- max&punker.org
-16019
- Reitek
- Giovanni Carbone
- itadmin&reitek.com
-16020
- Wasadata System AB
- Tor Borrhed
- tor&wasadata.com
-16021
- cassava Enterprises
- John Jacks
- john.jacks&gib.cassava.net
-16022
- Minicom Advanced Systems Ltd.
- Ofer Weisz
- Ofer.weisz&minicom.com
-16023
- inetadmin
- Ayumu Sanada
- admin&inetadmin.com
-16024
- Netzwert Aktiengesellschaft
- Jim Martin
- jim&netzwert.ag
-16025
- CIBLIS Engenharia S/C
- Philippe de M. Sevestre
- psevestre&ciblis.net
-16026
- SoftAplic S/C Ltda.
- Edesio Costa e Silva
- edesio+snmp&ieee.org
-16027
- Shah-USA
- Rajesh B Shah
- shah&shah-usa.com
-16028
- XAOS Systems
- Mario Scarpa
- m.scarpa&xaos.it
-16029
- Westleader International Inc.
- Sun, Yuxi
- sun&wltechnologies.com
-16030
- Hongkong Post
- LAM, Yuk Chiu
- enquiry&hongkongpost.gov.hk
-16031
- Atmark Techno, Inc.
- Yasushi SHOJI
- yashi&atmark-techno.com
-16032
- Uraltransbank
- Nikolay Popov
- Nikolay.Popov&utb.ru
-16033
- Telemic Oy
- Timo Rissanen
- timo.rissanen&telemic.fi
-16034
- Opus Hadsel
- Runar Lyngmo
- runar.lyngmo&melbu.vgs.no
-16035
- Icom Mobile
- Niall Teskey
- Niall.Teskey&icommobile.com
-16036
- InfoCentre Ltd.
- Anatoli Routchiev
- agr&infosite.ru
-16037
- em|Motion GmbH
- Robert Linden
- rl&em-motion.com
-16038
- ORAYLIS GmbH
- Thomas Strehlow
- T.Strehlow&oraylis.de
-16039
- Automated Systems Engineering, Inc.
- Dan Mullin
- d.mullin&goase.com
-16040
- dataparty.net
- Alex Brasetvik
- alex&brasetvik.com
-16041
- Hogeschool Brabant
- P.M. Schoot
- schoot.pm&hsbrabant.nl
-16042
- JMP SYSTEMS
- Lee, Hyoung-Geun
- cujo&jmpsystem.com
-16043
- Viasec, s.r.o.
- Jozef Dlhy
- dlhy&viasec.sk
-16044
- todo Gesellschaft fuer Informationstechnik mbH
- Thomas Kuehne
- tkuehne&todo.de
-16045
- Ocaco Finland Oy
- Antti Pennanen
- antti.pennanen&ocaco.com
-16046
- DSD S.A.
- Sergi Sanchez
- ssanchez&dsdga.com
-16047
- IT Practice
- Jens Bo Friis
- jbf&it-practice.dk
-16048
- BOFRIIS
- Jens Bo Friis
- bofriis&get2net.dk
-16049
- Flamenco Networks, Inc.
- David Pawloski
- dpawloski&flamenconetworks.com
-16050
- Krupczak Org
- Bobby Krupczak
- rdk&krupczak.org
-16051
- CORETEAM AB
- Joakim Eberlund
- joakim .eberlund&coreteam.se
-16052
- Chris Rauschuber
- Chris Rauschuber
- crauschuber&yahoo.com
-16053
- Burger King Corporation
- Hector Mir
- EIN&whopper.com
-16054
- Resource Data Management Ltd
- Alan McBride
- alan&resourcedm.co.uk
-16055
- Blandsite
- Brandon Knitter
- knitterb&blandsite.org
-16056
- okazaki city office
- kikakubu itsuisinka
- it&city.okazaki.aichi.jp
-16057
- EventGnosis, Inc.
- Lars Graf
- lars&eventgnosis.com
-16058
- GENKEY
- Andrey
- genkey&col.ru
-16059
- Tsinghua TongFang Software Co. Ltd.
- FENG Chang
- fengc&ttsoft.com.cn
-16060
- Lighthouse Information Systems, Inc.
- Ken Harris
- kharris&lhinfo.com
-16061
- Adhersis North America
- Dominic Grégoire
- dominic.gregoire&avk-adhersis.ca
-16062
- ZINCNetworks
- xiaoli
- mpnm&mail.maipu.com
-16063
- DC Technologies
- Bene Tam
- bene-tam&dctechnologies.com
-16064
- Perspectix AG
- William Harris
- harris-web-iana&perspectix.com
-16065
- softArk Solutions
- Ismaël RUAU
- iruau&free.fr
-16066
- NEC Telenetworx,Ltd
- Tetsuya Obayashi
- t_obayashi&mail.ntwx.nec.co.jp
-16067
- BarcoIntelligentDisplays
- Lode Leroy
- lode.leroy&barco.com
-16068
- Repeatit AB
- Magnus Bergsten
- magnus.bergsten&repeatit.se
-16069
- MINEFI/SP
- Francois Gerbaud/Martial David
- sp-administration-systeme&sp.finances.gouv.fr
-16070
- Bundesamt für Finanzen
- Jochen Ritter
- jochen.ritter&bff.bund.de
-16071
- Pictet & Cie, Banquiers
- Jean-Michel PULFER
- jpulfer&pictet.com
-16072
- Linkeo.com
- David Gourdelier
- support&linkeo.com
-16073
- Edith Cowan University
- Lee Sanders
- registration&scis.ecu.edu.au
-16074
- VBL Karlsruhe
- Andrea Ebeling
- or50a&vbl.de
-16075
- Uninet, S.A.
- Consuelo Sanchez
- chelos&reduno.com.mx
-16076
- Dominion Diagnostics
- Mike Muzzy
- mis&dominiondiagnostics.com
-16077
- Witbe
- Paul Rolland
- rol&witbe.net
-16078
- Mouvement Républicain et Citoyen
- Emmanuel Motchane
- admin&mrc-france.org
-16079
- bitMaster
- Giovanni Piacentini
- info&bitmaster.it
-16080
- Software Logistics, LLC
- Kevin D. Wolf
- kevinw&software-logistics.com
-16081
- KTALAND
- GIQUELLO Cyrille
- cyrille&ktaland.com
-16082
- Bechtel Corporation
- Michael B. McCaffrey
- mmccaffr&bechtel.com
-16083
- MaineBase
- Robert Roux
- prsman37&yahoo.com
-16084
- House of Noise
- Piotr Halasa
- noise&linart.pl
-16085
- Telexpertise de Mexico S.A. de C.V.
- Edwin Solis
- esolis&txm.com.mx
-16086
- MITSUMI ELECTRIC CO.,LTD
- IKUO NAKAJIMA
- i_nakajima&atg.mitsumi.co.jp
-16087
- Zayed University
- T.R.Shinoy
- shinoy.thachapully&zu.ac.ae
-16088
- Groats Laboratories
- Brian Musker
- bmusker&groatslabs.com
-16089
- eXwavecom Co.,Ltd.
- Young Rok Jung
- yrjung&eXwavecom.com
-16090
- Estweb Ltd.
- Ivari Horm
- admin&estweb.ee
-16091
- ECR
- Urban Engemyr
- urban.engemyr&ecr-consulting.se
-16092
- AirWalk Communications, Inc.
- Jay Park
- JayPark&airwalkcom.com
-16093
- AW Software
- Andreas Willert
- willert&awillert.com
-16094
- Stacken
- Richard Levitte
- levitte&stacken.kth,se
-16095
- Fluency Voice Technology Ltd.
- Martin Wren-Hilton
- martin.wren-hilton&fluencyvoice.com
-16096
- RCS-TECHNOLOGY
- Rene Stepanek
- rene.stepanek&rcs-technology.at
-16097
- voice robots GmbH
- Lewis Graham
- lewis.graham&voicerobots.de
-16098
- SCA Graphic Sundsvall AB
- Lars Olofsson
- Lars.Olofsson&sca.com
-16099
- Pinion Group, LLC
- Peter Banka
- peter&piniongroup.com
-16100
- Iron Mountain
- Christopher Twombly
- christopher.twombly&imrm.com
-16101
- Cadero, Inc.
- Jeffrey T. Lucas
- lucasjt&cadero.com
-16102
- Miharu Communications Inc.
- Masayuki Sugai
- snmp&miharu.co.jp
-16103
- Nilgiri Networks
- Dr. Timothy A. Gonsalves
- tag&ooty.tenet.res.in
-16104
- KeyCOM Information Technology CO.,Ltd
- ZhiFu Xiong
- xiezhijun99&vip.sina.com
-16105
- Standard Information Data Centre of Ministry of Education P.R.C
- ZhiFu Xiong
- xiezhijun99&vip.sina.com
-16106
- ICCS
- ZhiFu Xiong
- xiezhijun99&vip.sina.com
-16107
- Enea Data AB
- Magnus Svantesson
- Magnus.Svantesson&enea.se
-16108
- Garderos Software Innovations GmbH
- Hubert Euzenot
- hubert.euzenot&garderos.com
-16109
- Pfannenberg
- Rudolf Malicki
- rudolf.malicki&pfannenberg.com
-16110
- InfoCentre Ltd.
- Anatoli Routchiev
- agr&infosite.ru
-16111
- Beaumont Hospital
- Niambh Scullion
- niambh.scullion&beaumont.ie
-16112
- Valentine KOUTCHERBAEV
- Valentine Koutchegbaev
- val&vikax.com
-16113
- Network Dweebs Corporation
- Jonathan A. Zdziarski
- jonathan&networkdweebs.com
-16114
- Qualstar Corporation
- Richard Nelson
- RANelson&qualstar.com
-16115
- CyberSarge, Inc.
- Ron Cooper
- roncooper&cybersarge.com
-16116
- Enforcer Group, Inc.
- Masuo Gates
- mgates&copweb.com
-16117
- Rev D Networks
- John Chen
- john.chen&revdnetworks.com
-16118
- 3gfp
- Richard H. Chapman
- hchapman-oid&3gfp.com
-16119
- Catalog.com
- Bill Miller
- bcmiller&catalog.com
-16120
- SIMCON
- Karl-Heinz Oliv
- Karl-Heinz.Oliv&Simcon-MT.de
-16121
- Caliber Technoloigies & Consultancy
- Mangesh Bendre
- mangeshbendre&yahoo.com
-16122
- Netguild
- Tom McComb
- tmccomb&netguild.net
-16123
- University of Florence
- Valdo Pasqui
- valdo.pasqui&unifi.it
-16124
- X32 Pty Ltd
- Dan Irwin
- admin&x32.com.au
-16125
- NET SPACE
- Daniel Kiper
- dkiper&netspace.com.pl
-16126
- Parliament of Finland
- Antti Aaltonen
- antti.aaltonen&eduskunta.fi
-16127
- Fathom Technology KFT
- Tibor Borzak
- administrator&fathomtechnology.com
-16128
- A LAWRENCE RIEDEL
- A LAWRENCE RIEDEL
- Larry&Riedel.org
-16129
- LightHouse Training and Consulting srl
- Andrea Martano
- andrea.martano&sinapto.com
-16130
- NEC Australia P/L
- Michael Knox
- michael_knox&nec.com.au
-16131
- Humax Co., Ltd.
- In Kyun Lee
- iglee&humaxdigital.com
-16132
- Pham Kim Binh Nguyen
- Pham Kim Binh Nguyen
- midnight&midnight.org
-16133
- Artur Sabik
- Artur Sabik
- asabik&softsystem.pl
-16134
- CIRTI de Nantes
- BAJET Jean-Marc
- Jean-Marc.BAJET&urssaf.fr
-16135
- Coherent Light
- Vincent Wallet
- iana&clight.fr
-16136
- FT Interactive Data
- John Cawsey
- john.cawsey&ftid.com
-16137
- Dr. Huggle & Partner GmbH
- Felix Huggle
- felix&huggle.de
-16138
- E*Trade Financial Inc.
- Duc Doan
- ddoan&etrade.com
-16139
- Compellent Technologies
- Michael Shishkin
- mshishkin&compellent.com
-16140
- MozApps.org
- Shaun Savage
- savages&mozapps.org
-16141
- A-NeT Internet Services bv
- Hans Bakker
- info&a-net.nl
-16142
- Network Technology and Engineering Institute of Xi'an Jiaotong University
- Cao Jiuxin
- cjx&xanet.edu.cn
-16143
- Gina & Jonathan Oberg
- Jonathan Oberg
- jonathan&oberg.net
-16144
- KERBEROS
- Alain MOUILLERON
- alain.mouilleron&kerberos.fr
-16145
- DResearch Digital Media Systems GmbH
- M. Rothe
- rothe&dresearch.de
-16146
- United Bulgarian Bank
- Desimira Milusheva
- milusheva_d&ubb.bg
-16147
- intY Ltd
- Stefan Kruger
- stefan&inty.net
-16148
- JavaRealm Software Development Team
- Sergey Skugarev
- s.skugarev&javarealm.com
-16149
- Del Mar Analytical
- Leslie VanExel
- les&dmalabs.com
-16150
- White Wolf Camarilla
- Jerry Spaulding
- camtech&white-wolf.com
-16151
- Pima Community College
- Betsy Hasman
- nettechcontact&pima.edu
-16152
- The Cincinnati Insurance Companies
- Joshua Landin
- josh_landin&cinfin.com
-16153
- Snert
- Anthony Howe
- achowe&snert.com
-16154
- Network Resource Technologies Corp
- Gregory Wendel
- gwendel&nrtc.biz
-16155
- HalcyonFlame
- Ranju Mathew
- ranju_mathew&hotmail.com
-16156
- Feral Nerds Enterprises
- Andrew Stalker
- andrew_stalker&hotmail.com
-16157
- RDI
- Jacques GRILLOT
- grillot&rdipc.com
-16158
- CiTR Pty Ltd
- Shane Hughes
- shane.hughes&citr.com.au
-16159
- UQ Business School
- Andy Jones
- oid-admin&business.uq.edu.au
-16160
- Sphere Systems
- Christopher Smith
- iana&christophersmith.net
-16161
- CSC - Scientific Computing Ltd
- Janne Kanner
- Janne.Kanner&csc.fi
-16162
- RM-System Holding, a.s.
- Pozgay Viktor
- pozgay&rms.sk
-16163
- Elettronika S.r.l.
- Modugno Giuseppe
- g.modugno&elettronika.it
-16164
- zylk
- gustavo fernanadez
- gus&zylk.net
-16165
- Crescendo Networks
- Yiftach Shoolman
- yiftach&crescendonetworks.com
-16166
- University of Sheffield
- Richard Gilbert
- R.Gilbert&sheffield.ac.uk
-16167
- Repsol Quimica
- Manuel Dato Briones
- seguridadlogicacorporativa&repsolypf.com
-16168
- MediSync Midwest Limited
- Roger Cass
- rogercass&medisync.com
-16169
- Teleredes
- Luis Casamayou
- lcasamayou&teleredes.com.uy
-16170
- totaleasy
- kuman
- kumanc&hananet.net
-16171
- Zucchetti.com srl
- Maurizio Boriani
- boriani&zucchetti.com
-16172
- Danger Incorporated
- Jeff Bush
- jeffbush2002&yahoo.com
-16173
- Arizona Western College
- Seth Hollyman
- seth.hollyman&azwestern.edu
-16174
- Sensatronics LLC
- Keith Wright
- kwright&sensatronics.com
-16175
- TRIADE Beratungsgesellschaft für Informationstechnologie mbH
- Dr. Nuhn
- nuhn&triade.de
-16176
- Zephra Corp.
- Fidel Salas
- fisal&zephra.com
-16177
- Westermo Teleindustri AB
- Daniel Rooth
- daniel.rooth&westermo.com
-16178
- WellPoint Health Networks
- Timothy R. Robnett
- timothy.robnett&wellpoint.com
-16179
- WAN Norway
- Sten Daniel Sørsdal
- sten.daniel.sorsdal&wan.no
-16180
- Blue Data Networks Ltd
- Graeme Carpenter
- graeme.carpenter&blue-data.net
-16181
- E3Switch LLC
- Tad Artis
- e3mib_removethispart&e3switch.com
-16182
- Whitesmiths Australia Pty Ltd
- Peter Marks
- marksp&whitesmiths.com
-16183
- Hanaro Telecom
- Kong Jun Woong
- kong&hanaro.com
-16184
- PT. Indorama Synthetics Tbk
- Bambang Budiharto
- budhi&indorama.com
-16185
- NM Systems Co.,Ltd.
- Chang Gi Yun
- ylemyun&nmsys.co.kr
-16186
- Peter Schneider EDV
- Peter Schneider
- peter&psch.de
-16187
- Aedilis UAB
- Donatas Cerniauskas
- donatas.cerniauskas&aedilis.lt
-16188
- Materials Science and Technology Dept. - Univ. of Crete GREECE
- Dimitris Stefanakis
- dimstef&materials.uoc.gr
-16189
- Assured Communications Group Limited
- Jamie Craig
- jcraig&apxhub.com
-16190
- Colegio Oficial de Arquitectos de Madrid
- Alfonso Rodriguez
- arodriguez&coam.org
-16191
- NightFire Software, Inc.
- Frank Seidel
- fseidel&nightfire.com
-16192
- BCN Associates, Inc.
- John Anderson
- janderson&bcnassociates.com
-16193
- Eagle Mountain International Church Inc.
- Dave Augustus
- davea&support.kcm.org
-16194
- Rancho Morado
- Wendy Jacobs
- no-spam&rancho-morado.net
-16195
- Thomson Corp Switzerland AG
- Mario Widmer
- mario.widmer&dialog.com
-16196
- Washington Mutual
- Dave McKinnon
- david.mckinnon&wamu.net
-16197
- Scoobtec
- Thomas Hedler
- thomas.hedler&fen-net.de
-16198
- Investment Company Institute
- Matthew R. Briggs
- mbriggs&ici.org
-16199
- openForce Information Technology GesmbH
- Gerhard Hipfinger
- gerhard.hipfinger&openforce.at
-16200
- Casero Inc.
- Aaron Cullum
- acullum&casero.com
-16201
- TI Telecomunicazioni & Informatica
- Marco Cocchis
- mcocchis&tandi.it
-16202
- Oakland University
- Theresa Rowe
- rowe&oakland.edu
-16203
- Sysdata Kft.
- Laszlo Baroczi
- laszlo.baroczi&siemens.com
-16204
- Westinghouse Electric Company
- Darlene Gonta
- gontads&westinghouse.com
-16205
- T-Systems GCF MSY
- Axel Eberhardt
- Axel.Eberhardt&T-Systems.com
-16206
- Mobile TeleSystems Limited libility company
- Solodukho Alexander
- admin&mts.by
-16207
- Splicecom Ltd
- Brian Frampton
- brian.frampton&splicecom.com
-16208
- Universidade Lusiada
- Nuno Beirão
- nbeirao&por.ulusiada.pt
-16209
- Collaborative Network Technologies Inc.
- Les Cuff
- lez&colabnet.com
-16210
- Delta Piktori Oy
- Rami Heinisuo
- rami.heinisuo&eduix.com
-16211
- Certified Security Solutions
- Joe Kovara
- joe.kovara&certifiedsecuritysolutions.com
-16212
- wang
- mrwant
- mrwant&163.com
-16213
- CEN/ISSS XFS Workshop
- Antonio Prevignano
- PrevigA&diebold.com
-16214
- Pehkonen Family
- Harry Pehkonen
- harry.pehkonen&hotpop.com
-16215
- Elbit Systems Ltd.
- Shimon Rapoport
- shimonr&elbit.co.il
-16216
- Trinity CC Consulting, Inc.
- Dan Haligas
- haligasd&adelphia.net
-16217
- KDDI Media Will Corporation
- Fuminori Watanabe
- fuminori-w&kmw.co.jp
-16218
- Talkline GmbH
- Jan Andres
- andres.jan&talkline.de
-16219
- DB Telematik GmbH
- Andreas Ziegenbein
- andreas.ziegenbein&db-telematik.de
-16220
- LANDMAT
- Bergur Heimisson
- bergur&landmat.com
-16221
- Strodl
- Andreas Strodl
- andreas&strodl.org
-16222
- DONOBi, Inc.
- Wayne Tucker
- wtucker&donobi.com
-16223
- Global Messaging Solutions, Inc.
- Trey Keifer
- tkeifer&gmsi1.com
-16224
- HTBLuVA Wiener Neustadt
- Christian Hofstaedtler
- christian&hofstaedtler.com
-16225
- PaeTec Communications
- Scott Pause
- oidadmin&paetec.com
-16226
- Public Service Enterprise Group
- Jeffrey S. Intravaia
- jeffrey.intravaia&pseg.com
-16227
- VitalStream, Inc.
- Rick Stevens
- rstevens&vitalstream.com
-16228
- AuriQ Systems, Inc.
- Hubert Fong
- hfong&auriq.com
-16229
- NU Informationssysteme GmbH
- Thomas Witt
- witt&nugmbh.de
-16230
- eCornell
- Matthew Willis
- noc&ecornell.com
-16231
- Introspect Consulting, Inc.
- Michael Welter
- mike&introspect.com
-16232
- netMANj Project
- Vijayaraghavan Kalyanapasupathy
- vijayaraghavan.k&acm.org
-16233
- Tukcedo Services
- Michel J.L. van der Kleij
- michel&tukcedo.nl
-16234
- Dogico
- Guillaume Huet
- guillaume.huet&dogico.com
-16235
- insignia financial group, inc.
- kwan ng
- kwan.ng&iesg.com
-16236
- Andrew Maldonado Consulting
- Andrew Maldonado
- andy&amaldonado.com
-16237
- Mantis Technology LLC
- Lewis A Stahl
- techwiz&nymed.net
-16238
- TheCartCompany.com
- Brett Doyle
- brett_doyle&charter.net
-16239
- Corbett Systems Development, Inc.
- Steve Dickey
- scd&corb.net
-16240
- skinoske tech
- Mursel Karabiyik
- mursel.karabiyik&gantek.com
-16241
- butlerNetworks AS
- Robert Ker
- rke&butlernetworks.com
-16242
- Thames Valley University
- Cossy Cosmas
- cossy.cosmas&bydeluxe.com
-16243
- AVS Consulting
- Philippe Lagente
- pla&avs-consulting.com
-16244
- Ecole des Mines d'Alès
- Laurent PELLISSIER
- Laurent.Pellissier&ema.fr
-16245
- Humanor
- Lauri Jutila
- lauri&jutila.net
-16246
- Hertz Comunicaciones
- Fermin Telleria
- hertztuc&arnet.com.ar
-16247
- eServGlobal
- Allan Lawrie
- allan.lawrie&eservglobal.com
-16248
- litus.at
- Gerald Aigenbauer
- ga&litus.at
-16249
- Italtel S.p.A.
- LORIO GUIDO
- Guido.Lorio&italtel.it
-16250
- NetPrecept Ltd.
- Ross Patterson
- Ross.Patterson&NetPrecept.Com
-16251
- Bonuso Industries
- Patrick Bonuso
- pat&bonuso.com
-16252
- Mätäsahon suku
- Mikael Mätäsaho
- mixu&matasaho.net
-16253
- Mätäsahon suku
- Mikael Mätäsaho
- mixu&matasaho.net
-16254
- Holmen Paper AB
- Björn Jonsson Dannetun
- bjorn.jonsson&holmenpaper.com
-16255
- Action Engine Corp.
- Jeff Clark
- jeff&actionengine.com
-16256
- Develtech
- GILLES Alexandre
- ag&develtech.com
-16257
- The Hong Kong Polytechnic University
- Catherine Chan
- itkychan&polyu.edu.hk
-16258
- FeelingK
- YoungGwon Choi
- shyoon&feelingk.com
-16259
- KOWA COMPANY,LTD. RESEARCH CENTER FOR ADVANCED TECHNOLOGY
- Yasushi Kikukawa
- y-kikukw&kowa.co.jp
-16260
- The FreeBSD China Community
- LI Dong
- ld&FreeBSDChina.ORG
-16261
- Kopint-Datorg Rt.
- Csaba Lengyel
- csaba.lengyel&kopdat.hu
-16262
- Repsol Petroleo
- Manuel Dato Briones
- seguridadlogicacorporativa&repsolypf.com
-16263
- swisswebgroup gmbh
- jakub svoboda
- jakub.svoboda&swisswebgroup.com
-16264
- Itheon
- Paul Snook
- paul.snook&itheon.com
-16265
- Open Methods
- Nigel Runnels-Moss
- nigel.runnels_moss&openmethods.com
-16266
- The Optym Group
- Jay Mosser
- jaym&optymgroup.com
-16267
- American Network Communications, Inc
- John Coy
- jcoy&anc.net
-16268
- US Linux Networks, LLC
- Geoffrey M. Silver
- gsilver&uslinux.net
-16269
- iomart ltd
- Bill Strain
- bill.strain&iomart.com
-16270
- GravityRock.com
- Karl Sola
- karl.sola&gravityrock.com
-16271
- New South Wales Fire Brigades
- John Simonides
- john.simonides&fire.nsw.gov.au
-16272
- Legend (Beijing) Limited
- Liu Tao
- liutaof&legend.com
-16273
- Nexge technology p ltd
- Ramachandran.G
- ramachandran&nexge.com
-16274
- TELMAT Industrie
- Denis RUHLAND
- ruhland&telmat-net.fr
-16275
- University of Kuopio
- Olavi Manninen
- Olavi.Manninen&uku.fi
-16276
- Communications Regulation Commission
- E. Rafailov
- info&crc.bg
-16277
- Mobile Internet Limited
- John Bourke
- john.bourke&mobileinternet.com
-16278
- sLAB Informationssysteme
- Lars Soltau
- lars.soltau&slab.de
-16279
- St. Francis Borgia RHS
- Stefan Adams
- stefan&borgia.com
-16280
- OLTPCorp
- Stefan Jon Silverman
- sjs&sjsinc.com
-16281
- SYSLOG Gmbh
- Harald Strassberger
- harald.strassberger&syslog.at
-16282
- H5 Technologies
- Peter Mei
- pmei&h5technologies.com
-16283
- OM
- Aashish Jha
- hariom_jha&sify.com
-16284
- QuadFore Corporation
- jaap schuijt
- jaap&quadfore.com
-16285
- ibpsearch
- xiatian
- xtllee&hotmail.com
-16286
- Hungarocom Ltd
- Gyula Bakos
- hc_bgy&axelero.hu
-16287
- Swiss Federal Institute of Technology
- Nick Heim
- heim&id.ethz.ch
-16288
- EDV-Beratung
- Peter Koenig
- pkoenig&aon.at
-16289
- Mediva Inc.
- Akikazu Takada
- mediva&mediva.co.jp
-16290
- SIAT
- Jordi Pineiro
- jpineiro&siat.es
-16291
- Meeting Maker, Inc.
- Andrew H. Derbyshire
- ahd&meetingmaker.plus.kew.com
-16292
- Susurro
- Kevin Crandell
- kevin&susurro.com
-16293
- BRVL Technology Ltd.
- Jan Bruvoll
- jan&brvl.com
-16294
- Applied Instruments Inc
- Jeff Haas
- jhaas&appliedin.com
-16295
- Ormond college
- Ben
- ben&unicol.unimelb.edu.au
-16296
- Vindicia
- Brett A. Thomas
- iana-contact&vindicia.com
-16297
- Semnode
- Wiliam Dulin
- willie&semnode.com
-16298
- hanbang-soft technology co.,Ltd
- Danhong Zhao
- danhong_zhao&163.com
-16299
- corega K.K.
- Masaki Matsuka
- matsuka&corega.co.jp
-16300
- Penguin Infotech Pvt. Ltd. (formerly 'Penguin India Linux Solutions Pvt. Ltd.')
- Vishwanath T. K.
- vishwanath.tk&penguin-infotech.com
-16301
- Silesian University in Opava
- Lukas Kubin
- kubin&opf.slu.cz
-16302
- intrae
- Jong Chung Yee
- intrae&pchome.com.tw
-16303
- Sans Serif
- Janos Almasi
- info&sansserif.hu
-16304
- EADS
- Dirk Kronenfeld
- dirk.kronenfeld&airbus.com
-16305
- KIBS AD Skopje
- Marin Piperkoski
- marinp&kibs.com.mk
-16306
- Repsol Distribucion
- Manuel Dato Briones
- seguridadlogicacorporativa&repsolypf.com
-16307
- StreamScale
- Andrew Heaton
- andrew.heaton&streamscale.net
-16308
- RHOEN-KLINIKUM AG
- Ulrich Simon
- edvorg.simon&rhoen-klinikum-ag.com
-16309
- NTT Software Corporation
- Kikuchi Nobuyuki
- isd-wan-staff&sl.ntts.co.jp
-16310
- Marketline Rt.
- Buglos Tamás
- buglos.tamas&marketline.hu
-16311
- Alatec, S.A.
- Miguel Angel Moreno Menendez
- mmoreno&alatec.es
-16312
- Register.com
- Nathaniel A.F. Clark
- nclark&register.com
-16313
- Valemount Networks Corp
- Lonnie Nunweiler
- networks&valemount.com
-16314
- Bureautique Services Developpement
- Philippe LAMBERT
- bsd&bsd.fr
-16315
- X|support
- Frans H. Schippers
- frans.schippers&xsupport.nl
-16316
- HSBC Bank North America
- James Donn
- james.donn&us.hsbc.com
-16317
- Quebecor World North America
- David Diaz
- david.diaz&quebecorworld.com
-16318
- empuron
- Winfried Bergmann
- winfried.bergmann&empuron.de
-16319
- ViaVis Mobile Solutions Inc.
- John Taschereau
- john&viavis.com
-16320
- The Brain Room Ltd
- Wez Furlong
- wez&thebrainroom.com
-16321
- ZOOM INTERNATIONAL s.r.o.
- Tibor Marchyn
- isupport&zoomint.com
-16322
- Leading Edge Telemetry, LLC
- Ed Nowicki
- enowicki&letllc.com
-16323
- Trax Holdings
- Tim Omta
- websupport&filex.com
-16324
- Itelsys
- Fernando Marin
- fmarin&itelsys.com
-16325
- NESCO CO., LTD.
- kazutoshi tanaka
- tanaka&nesco.co.jp
-16326
- iyaburo.com
- Deji Ako
- deji&akomolafe.com
-16327
- Mark Chesney
- Mark Chesney
- hostmaster&chesney.net
-16328
- NARI Corp. (Nanjing Automation Research Institute)
- Yang Wenqing
- yangw&naricom.com
-16329
- AdiSyS Oy
- Peter Koski
- Peter.Koski&adisys.fi
-16330
- Reutech Radar System
- Derick Thiart
- dthiart&rrs.co.za
-16331
- cosmocode GmbH
- Andreas Gohr
- gohr&cosmocode.de
-16332
- Longshine Technologie Europe GmbH
- Thomas Grashoff
- thomas&longshine.de
-16333
- bitmine AB
- Bjorn Lofdahl
- bjorn&bitmine.se
-16334
- Northrop Grumman
- Mark Foley
- mark.foley&trw.com
-16335
- Seoul Electric Power System co.,ltd
- Hoon-yong Lee
- lsee&mpupower.co.kr
-16336
- Alatec, S.A.
- Miguel Angel Moreno Menendez
- mmoreno&alatec.es
-16337
- Canadian National Railway Company
- Vicki Gillis
- vicki.gillis&cn.ca
-16338
- IPOne
- John Patton
- patton.consulting&rogers.com
-16339
- GlobeOp Financial Services, LLC
- Pankaj Jain
- pjain&globeop.com
-16340
- White Rock Networks
- Richard Wank
- rwank&whiterock.com
-16341
- Biomedical Informatics Research Network (BIRN)
- Mark James
- mjames&ncmir.ucsd.edu
-16342
- Menta Group
- Scott Marquardt
- scott.marquardt&menta.com
-16343
- UTTC United Tri-Tech Corporation
- Gilles Therriault
- gillest&uttc.ca
-16344
- Perfigo
- Carl Schroeder
- cschroeder&perfigo.com
-16345
- The Anvil Organisation Ltd.
- Andrew Meredith
- andrew&anvil.org
-16346
- Farabi Technology
- Charles Machalani
- cmachalani&farabi.com
-16347
- IPCAST
- Kim Gill Joong
- gjkim&ipcast.co.kr
-16348
- Shanghai Transfiber Science&Technology Co.,Ltd.
- Yuan Quan
- yuanquan&transf.net
-16349
- ComGear
- Jason Tobler Abraham
- meej321&yahoo.com
-16350
- TOT Corporation Public Company Limited
- Mr. Tinnakorn Itsrangkul Na Ayuthaya
- tinnakoi&tot.co.th
-16351
- Caixa Bank S. A.
- David Soler
- dsoler&lacaixa.es
-16352
- Newman College of HE
- Philip Turner
- p.turner&newman.ac.uk
-16353
- Howaldtswerke - Deutsche Werft AG
- Ralph Genz
- Ralph.Genz&HDW.de
-16354
- Gruppennest
- Knut-Henrich Schubach
- k_schubach&yahoo.de
-16355
- MIDRAY GmbH
- Wolfgang Heinemann
- pen&hud.li
-16356
- Transfer Limited
- Meder Bakirov
- m.bakirov&transfer.kg
-16357
- Hain Celestial Group
- Ben Church
- bchurch&hain-celestial.com
-16358
- United Carrier Networks
- Greg Bailey
- gbailey&ucn.net
-16359
- Miller Samuel, Inc.
- Christopher Miles
- cmiles&millersamuel.com
-16360
- Contraloría General de la República
- Jaime Romero
- jaime.romero&eds.com
-16361
- Progressive Linux Consultants LLC
- Todd Lyons
- ldap&progressivelinux.com
-16362
- Waters Network Systems
- Gary E. Carlson
- garyc&wtrs.com
-16363
- SCHOLZ & VOLKMER Intermediales Design, GmbH
- Andreas Klinger
- a.klinger&s-v.de
-16364
- SMARTDATA
- Frédéric Gobry
- frederic.gobry&smartdata.ch
-16365
- Dion Global Solutions GmbH (formerly 'Swissrisk Financial Systems GmbH')
- Holger Kuest
- holger.kuest&dionglobal.com
-16366
- INFORMA DEL PERU, INFORMACION ECONOMICA SA
- Javier Terrón
- jterron&informasa.es
-16367
- saarstahl
- Christian Jung
- christian.jung&saarstahl.de
-16368
- Sysapex Communications Inc.
- Ashwin Rao
- raov&sysapex.com
-16369
- Clark University
- Joe Kalinowski
- jkalinowski&clarku.edu
-16370
- DASS Consulting Group Inc.
- Jake Gibbons
- jgibbons&citocognito.com
-16371
- tygrysek.com
- Bartosz Porzezinski
- bloob&tygrysek.com
-16372
- T-Mobile Czech Republic a.s.
- Marek Uher
- itwebadmin&t-mobile.cz
-16373
- Federal Public service Transport & Mobility
- Philippe Brackeleire
- philippe.brackeleire&mobilit.fgov.be
-16374
- NV Multikabel
- Eric Remijn
- eric.remijn&multikabel.nl
-16375
- University Of Athens
- Chris Stavrogiannis
- chriss&noc.uoa.gr
-16376
- ACOSS
- Olivier DANOFFRE
- olivier.danoffre&acoss.fr
-16377
- IMCTech
- Sang-Jin Park
- jinynet9&imctech.co.kr
-16378
- Sarian Systems Limited
- Andy Hood
- andy&sarian.co.uk
-16379
- River Cities Reader
- Nick Welch
- nick&rcreader.com
-16380
- NEXVU Technologies
- Robert Eden
- reden&nexvu.com
-16381
- Verifiber, LLC
- Mark Barton
- mbarton&verifiber.com
-16382
- InterBox Internet
- Erwin Lubbers
- noc&box.nl
-16383
- HP GSE Security
- Jeff Parker
- jeff.t.parker&hp.com
-16384
- California State Polytechnic University, Pomona
- Paul B. Henson
- henson&csupomona.edu
-16385
- Hudli
- Wolfgang Heinemann
- haus&hud.li
-16386
- Daxiongmao
- Lionel Sausin
- lionel.sausin&free.fr
-16387
- OEone Corporation
- Todd Kelley
- toddk&oeone.com
-16388
- Jörg Eichhorn
- Jörg Eichhorn
- joerg&joerg-eichhorn.de
-16389
- Pegasus EDV-Betreuungs-GmbH
- Klaus Schleicher
- ks&pegasus-edv.de
-16390
- VineSys Technology
- Bo Li
- bli&vinesystech.com
-16391
- RouteOne
- Chris Irving
- cirving&routeone.com
-16392
- Cortland Communications
- Evan Webb
- evanw&cortland.com
-16393
- Sean Champ Enterprises
- Sean Champ
- schamp&users.sourceforge.net
-16394
- Pentair Technical Products (formerly 'Pigeon Point Systems')
- Rich Vasse
- Richard.Vasse&pentair.com
-16395
- William R Sowerbutts
- William R Sowerbutts
- will&sowerbutts.com
-16396
- justinknash.com
- Justin Knash
- jmk&justinknash.com
-16397
- U.S. Army ALTESS
- Bobby Jones
- bobby.d.jones&us.army.mil
-16398
- Metallect Corp.
- Bill McGrane
- bill.mcgrane&metallect.com
-16399
- Greyhavens
- Neil Hemingway
- neil.hemingway&greyhavens.org.uk
-16400
- Singapore Telecommunication Limited
- Richard Ng Swee Siah
- richardng&singtel.com
-16401
- Hewlett-Packard Slovakia
- Ladislav Rusnak
- ladislav_rusnak&hp.com
-16402
- Teleformix, LLC
- Jim Croci
- jcroci&teleformix.com
-16403
- Brobus International, Inc.
- Tamir Halperin
- tamir&brobus.net
-16404
- NeuralWorx
- Edward Curren
- ecurren&hotmail.com
-16405
- CPEG.Net
- Huang Chun Kiu
- cckiu&ust.hk
-16406
- ADWIN
- OTHO FRANCOIS
- f.otho&adwin.fr
-16407
- Lanux Limited
- Steve Kennedy
- iana&lanux.com
-16408
- Leo Consulting
- Hamid Yousaf
- hamid_yousaf&gmx.net
-16409
- Futuri Ltd
- Gary Ford
- gary_ford&hotmail.com
-16410
- NEC COMPUTERS INTERNATIONAL B.V.
- Marc ENGELSTEIN
- marc.engelstein&nec-computers.com
-16411
- Indicia Nederland bv
- Leon Schuurbiers
- ict&indicia.nl
-16412
- Home Health Corporation of America
- William OMalley
- womalley&angelfire.com
-16413
- rahbany.com
- David Rahbany
- drahbany&earthlink.net
-16414
- itsanaddiction.org
- Jeremy Hasty
- jhasty&itsanaddiction.org
-16415
- B.Bradenahl & H.Eggers
- Bernd Bradenahl
- bradenahl&ib2be.de
-16416
- REAL DATA S.C.
- Piotr Orlewicz
- porlewicz&real-data.pl
-16417
- TMC HealthCare
- Paul Lemmons
- paul.lemmons&tmcaz.com
-16418
- ULYSSIS
- Mathieu De Zutter
- slicks&ulyssis.org
-16419
- PINBOARD
- Kurt Keller
- Kurt&pinboard.com
-16420
- SRA International
- Lauren Halverson
- lauren_halverson&sra.com
-16421
- Christian Albrechts Universitaet
- Peter Wick
- wick&rz.uni-kiel.de
-16422
- MUMPK limited partnership
- TSUCHIDA Takeo
- takeo&mumpk.com
-16423
- ABACUS Research AG
- Remo Inverardi
- inverardi&abacus.ch
-16424
- Alanta
- Borja Prieto
- borja.prieto&alanta.info
-16425
- City Utilities of Springfield MO
- Jason Holcomb
- jholcomb&cityutilities.net
-16426
- Lawrence Technological University
- Edward Donley Computer Center
- edcc&ltu.edu
-16427
- Internet Access Facilities BV
- P. Middelink
- info&iaf.nl
-16428
- Dial Assurance, Inc.
- Hal Finkel
- half&dialassurance.com
-16429
- Lindorff Holding AS
- Thomas Albertsen
- thomas.albertsen&lindorff.com
-16430
- Mutiny Limited
- Dr Andy Murray
- A.Murray&Mutiny.com
-16431
- Engineering.MO S.p.A. (formerly 'T-Systems Italia S.p.A.')
- Stefano Mason
- stefano.mason&eng.it
-16432
- PKI Innovations Inc.
- Paul Wiebe
- pwiebe&pk3i.com
-16433
- Moorehead Communications
- Andy Thompson
- athompson&mooreheadcomm.com
-16434
- Jenzabar, Inc
- Andrew Katz
- andrew.katz&jenzabar.net
-16435
- Clearswift Corporation
- Neil Burgess
- neil.burgess&clearswift.com
-16436
- Bookham Inc.
- Joseph Olajubu
- joseph.olajubu&bookham.com
-16437
- Bart
- bartek
- tatrolaz&poczta.onet.pl
-16438
- Kansas Information Consortium
- Michael Cook
- michael&ink.org
-16439
- PNX Pty Ltd
- Peter Walsh
- peterw&pnx.com.au
-16440
- netINS, Inc.
- Jim Turner
- noc&netins.net
-16441
- ENST
- Pierre Beyssac
- pb+iana&enst.fr
-16442
- ProActive A/S
- Henrik Kim Christensen
- hkc&proactive.dk
-16443
- P&O Nedlloyd Limited
- Martin Glassborow
- m.glassborow&ponl.com
-16444
- UPTI
- Danpo Zhang
- dpzhang&upti.com
-16445
- Kineto Wireless
- Randy Turner
- rturner&kinetowireless.com
-16446
- Adlink
- G. Warrick
- uadmin&adlink.com
-16447
- epix Internet Services
- Philippe Levan
- levan&epix.net
-16448
- Neogate Co., Ltd
- Ki-tae Park
- ktpark&neo-gate.co.kr
-16449
- Charcoal Generation Limited
- Albert Kwong
- albert&charcoalgeneration.com
-16450
- IT-Concepts GmbH
- Frank Allwicher
- info&it-concepts.biz
-16451
- SMC Pneumatics (N.Z.) Limited
- Tony Farrell
- tfar&smc.co.nz
-16452
- Infocomp Pty Ltd
- Darren Morton
- dmorton&infocomp.com
-16453
- Beijing Municipal Local Taxation Bureau
- LI LongJiang
- llj&tax861.gov.cn
-16454
- AXWAY
- Christian MAURIERAS
- cmaurieras&axway.com
-16455
- DFS Deutsche Flugsicherung GmbH
- Thorsten Kisters
- thorsten.kisters&ast.dfs.de
-16456
- GPL Eletro Eletronica S/A
- Mr. Alessandro de Oliveira Santos
- gpl_engenharia&yahoo.com.br
-16457
- Opera Logic, Inc.
- Emilio F Panighetti
- emilio&operalogic.com
-16458
- Gemini Mobile Technologies, Inc.
- Andy Dunlap
- domain-admin&geminimobile.com
-16459
- Epygi Technologies Ltd.
- Mario Cuello
- mario.cuello&epygi.com
-16460
- Convertronic GmbH
- Jörg Becker
- j.becker&convertronic.de
-16461
- Eurofluxo-Suporte a Novas Tecnologias, Lda.
- Reis Pinto
- reis.pinto&eurofluxo.pt
-16462
- JAVCO Consulting
- James A. Vasil
- javcoconsulting&att.net
-16463
- Metavante Corporation
- Larry Strickland
- lawrence.strickland&metavante.com
-16464
- Pangolin Software Industries Ltd
- Tim Barnett
- snmp&hekate.org.uk
-16465
- State College Area School District
- Damian Futrick
- daf14&scasd.org
-16466
- Sonartech Atlas Pty Ltd
- Julius Malkiewicz
- julius&sonartech.com.au
-16467
- Gigaworks
- Christian Schroeder
- webmaster&gigaworks.de
-16468
- Deriva GmbH
- Christian Schroeder
- cs&deriva.de
-16469
- Coastal Wave Internet
- Shad Gunderson
- shadgun&coastalwave.net
-16470
- KEBA AG
- G. Danczul
- georg&keba.co.at
-16471
- SCAN ASSOCIATES SDN BHD
- Nik Khairul Raja Abdullah
- nik&scan-associates.net
-16472
- QMedit
- Maarten Coene
- Maarten.Coene&qmedit.com
-16473
- Terranet Ltd.
- Wilhelm Farrugia
- techmaltanet&maltanet.net
-16474
- mencial
- Ezequiel Martín Cámara
- ezequielmartin&yahoo.com
-16475
- Hays IMS
- Peter Nicholson
- Peter.Nicholson&Hays-IMS.com
-16476
- awsys gmbh
- Andreas Woerner
- info&awsys.net
-16477
- SYSLINE S.p.A.
- Dario Gerosa
- dario.gerosa&sysline.it
-16478
- eiwei Training & Consulting
- Helge Weickardt
- weickardt&eiwei.de
-16479
- P4 Tecnologia Ltda.
- Alexandre Rocha Lima e Marcondes
- alexandre&p4tecnologia.com
-16480
- Ministry of Transportation of Ontario
- Emmanuel Morala
- emmanuel.morala&mto.gov.on.ca
-16481
- JOutfitters LLC
- Jason Ellinwood
- Jason&ellinwoodcomputing.com
-16482
- Old Dominion University
- David Dandar
- ddandar&odu.edu
-16483
- Pure Networks
- Roxanne Skelly
- roxanne&purenetworks.com
-16484
- Gavin Newman
- Gavin Newman
- gavnewman&optusnet.com.au
-16485
- Advanced Multifake Systems
- Andreas Gaiser
- agaiser&multifake.de
-16486
- Dauphin MultiMedia
- Peter Nieuwpoort
- info&dauphin-mm.nl
-16487
- THALES NL
- Heidrun Laude-Lauber
- heidrun.lauber&nl.thalesgroup.com
-16488
- Electralink Ltd
- S. Boyce
- s_boyce&hotmail.com
-16489
- The Hanover Company
- Joseph Frolick
- jfrolick&hanover-co.com
-16490
- Sentryware
- Lluis Mora Hidalgo
- llmora&sentryware.com
-16491
- INMETRICS LTDA - EPP
- Eric Daniel Mauricio
- ericmau&inmetrics.com.br
-16492
- Scitor Corporation
- Stan Barton
- sbarton&scitor.com
-16493
- AutoCell Laboratories, Inc.
- Larry Stefani
- lstefani&autocell.com
-16494
- MassMutual
- Steve Erickson
- serickson&massmutual.com
-16495
- iafrica.com
- Andrew Glen-Young
- sysadmin&metropolis.co.za
-16496
- ACU-RITE COMPANIES INC.
- Thomas L. Joneson
- tjoneson&acu-rite.com
-16497
- Repsol Exploracion
- Manuel Dato Briones
- seguridadlogicacorporativa&repsolypf.com
-16498
- MEDIUM SOFT a.s.
- Ing. Antonin Vesely
- antonin.vesely&mediumsoft.cz
-16499
- Graburn Technology
- Ron Hiller
- ron&graburn.com
-16500
- S.W.A.C. GmbH
- Hynek Petrak
- hynek&swac.cz
-16501
- S&H Greenpoints
- Hasan A. Charania
- hcharania&greenpoints.com
-16502
- LGB PhOeNiX
- Lisci Gianni Battista
- phoenix.burn&email.it
-16503
- Prairie Fire Internet Technologies
- Erik Stave
- erik&pfbiz.com
-16504
- SindhSoft
- Shahnawaz Soomro
- ssoomro&onebox.com
-16505
- TeamStaff Inc
- Greg Haygood
- ghaygood&brightlane.com
-16506
- NeXtorage, Inc.
- Danilo Florissi
- df&NeXtorage.com
-16507
- Evanz Enterprises
- Peter Evans
- pete&evanz.net
-16508
- Progel srl
- Alberto Trigari
- alberto.trigari&progel.it
-16509
- Association des Medecins de Saint-Hilaire
- MILLET Alain
- millet&omega.amsh.org
-16510
- The Pepsi Bottling Group
- John Fortin
- john.fortin&pepsi.com
-16511
- Sentor Managed Security Services AB
- Kenny Jansson
- iana&sentor.se
-16512
- Medienzentrum Osnabrueck
- Wolfgang Ebneter
- eb&medienzentrum-osnabrueck.de
-16513
- Monaco Interactive
- Sander Kruger
- s.kruger&monaco-interactive.com
-16514
- UUNET SA
- Mustapha Baboo
- sys-admin&za.uu.net
-16515
- GRNET S.A.
- Tryfon Chiotis
- tchiotis&grnet.gr
-16516
- elipsan
- Pat Knight
- pknight&elipsan.com
-16517
- Partners HealthCare System Inc.
- Scott Rogala
- srogala&partners.org
-16518
- New Particles Corporation
- Lance Nehring
- nehring&newparticles.com
-16519
- Microdasys Inc.
- Peter Pendelin
- peter.pendelin&microdasys.com
-16520
- pg-cs
- peter grotz
- pegr&gmx.net
-16521
- Pronto Networks
- Ram P Rustagi
- ram.rustagi&prontonetworks.com
-16522
- Telefonica Publicidad e Informacion S.A.
- Juan Angulo
- jangulo&tpi.es
-16523
- Eric Yeo
- Eric Yeo
- oid&yeo.id.au
-16524
- Morty Abzug
- Morty Abzug
- morty&frakir.org
-16525
- Unicorn
- James Huang
- jhuang&seed.net.tw
-16526
- KYA group
- Teruhito Kanazawa
- tkana&kyagroup.com
-16527
- Internet Pictures Corporation
- John Koehler
- john.koehler&ipix.com
-16528
- Leadtek Research Inc.
- Daniel Miao
- daniel.miao&leadtek.com.tw
-16529
- HCL Infosystems Limited
- RABI KUMAR SAHA
- rksaha&hclinsys.com
-16530
- Exalt Technologies
- Ibrahim Kharman
- ibrahimk&exalt-tech.com
-16531
- brico dépot
- Laurent Courtet
- lcourtet&bricodepot.com
-16532
- Sparda-Datenverarbeitung eG
- Markus Volk
- markus.volk&spb.de
-16533
- Consejo General de la Abogacia Española
- Maximiliano Gonzalez-Fierro
- max.fierro&cgae.es
-16534
- Mycom International
- Philippe BONNEAU
- philippe.bonneau&mycom-int.com
-16535
- BitBand Technologies Ltd.
- Chagai LEVAVI
- chagai&bitband.com
-16536
- Tiscali UK
- Jeff Cadman
- jeff.cadman&uk.tiscali.com
-16537
- Wireless Data Services
- Clive Lawrence
- clive.lawrence&uk.wdsglobal.com
-16538
- Progressive Electrical Services, Inc.
- Randall S. Graber
- RGraber&rsgnic.com
-16539
- Graber Enterprises, Inc.
- Randall S. Graber
- RGraber&rsgnic.com
-16540
- E.D.S. Pubblica Amministrazione S.p.A.
- Massimiliano Pullo
- massimiliano.pullo&edspa.it
-16541
- Wapiti Regional Library
- Don Taylor
- dtaylor&panet.pa.sk.ca
-16542
- Harley Systems
- detha ter harmsel
- dth&hs.co.za
-16543
- Standard Bank of South Africa
- Cathy van Rooyen
- cvanrooyen&sbic.co.za
-16544
- LEASFINANZ AG
- Alexander Jernejcic
- alexander.jernejcic&leasfinanz.at
-16545
- Cardservice International
- Alex Suslik
- asuslik&csi-corp.com
-16546
- BBHK
- Gerhard Kottsieper
- betreuungsbuero&kottsieper.net
-16547
- Alixen
- Gilles Polart Donat
- info&alixen.fr
-16548
- Fachschaft Elektrotechnik und Informationstechnik
- Bernhard Lichtinger
- ldapmaster&fs.ei.tum.de
-16549
- Giddens Industries Inc
- John Darrah
- jhd&giddens.com
-16550
- Masters of Branding
- Bob Ippolito
- bob&mastersofbranding.com
-16551
- ComQuest Tecnologia
- Ricardo Lima
- ricardo&comquest.com.br
-16552
- Clear Communications Corporation
- Vanessa F. Cecich
- vcecich&clear.com
-16553
- MediaWorlds
- Adam Weber
- superhuman&myrealbox.com
-16554
- MDS Reprocessing
- Dave Mitchell
- dave&mdsr.com
-16555
- Vassar College
- Richard Versace
- riversace&vassar.edu
-16556
- www.schenkman.com
- Thomas Schenkman
- thomas&schenkman.com
-16557
- IRT Electronics Pty Ltd
- R Broad
- rbroad&irtelectronics.com
-16558
- Jiangsu Yitong High-tech Co.,Ltd.
- chenxiaoxing
- chenxiaoxing&yitong-group.com
-16559
- ALOC Bonnier A/S
- Yasaman Nazardad
- yasamann&aloc.dk
-16560
- Dr. Töpper Datentechnik
- Töpper
- info&dr-t.de
-16561
- Sandar TeleCast AS
- Trond Elvejord
- trond.el
-16562
- DePaul University
- John Kristoff
- jtk&depaul.edu
-16563
- InterSystems
- Robert Davis
- rdavis&intersystems.com
-16564
- EVERSTREAM, INC.
- JOSEPH KULIG
- jkulig&everstream.com
-16565
- Pine Digital Security
- Patrick Oonk
- patrick.oonk&pine.nl
-16566
- R.T. Shin and Associates
- Andrew Schwartz
- aschwartz&shin-associates.com
-16567
- University of Belize
- Wayne Godoy
- wgodoy&ub.edu.bz
-16568
- FUKKEN CO.,LTD.
- Takushi Ehina
- ehina&fukken.co.jp
-16569
- RealVision Inc.
- Masatoshi Kanzaki
- kanzaki&realvision.co.jp
-16570
- linux-at-work.de
- Lars Kneschke
- lkneschke&linux-at-work.de
-16571
- Hungarian Telekom Plc. (formerly 'Westel Mobile Telecommunications Company Ltd.')
- Mr. Gabor Bozo
- bozo.gabor&telekom.hu
-16572
- Centro Tecnico per la Rete Unitaria della Pubblica Amministrazione
- Claudio Petrucci
- c.petrucci&ctrupa.it
-16573
- ICP Europe PLC
- Doug Winter
- dwinter&icpeurope.net
-16574
- Ontario Systems
- Michael Wolfe
- michael.wolfe&ontariosystems.com
-16575
- Oops Org
- Alex Hooper
- alexh&oops.org.uk
-16576
- Novso
- Nicolas DEFFAYET
- hostmaster&novso.com
-16577
- Virtual Targets Center
- Michael Day
- day-ma&rdec.redstone.army.mil
-16578
- geos
- Michal Scendo
- scendo&mops.uci.agh.edu.pl
-16579
- meurisse
- Renaud Meurisse
- oid-admin&meurisse.info
-16580
- Swiftel Communications
- Alex Craven
- krei&staff.it.net.au
-16581
- SIIG
- LEGIN Matthias
- matthias.legin&adm-ulp.u-strasbg.fr
-16582
- BOC ONCOLOGY CENTER
- Marios Pieri
- marios.pieri&bococ.org.cy
-16583
- NET6a
- Serge NOEL
- contact&net6a.com
-16584
- EVPU a.s.
- Ing. Milan Gajdos
- sktc101&evpu.sk
-16585
- ISOLUTION S.C.
- Jaroslaw FILONIK
- jfilonik&isolution.pl
-16586
- Pallas Athena B.V.
- Bert Slof
- bslof&Pallas-Athena.com
-16587
- Global Locate, Inc
- Alexander Usach
- ausach&globallocate.com
-16588
- SSI Micro, Ltd.
- Jeremy Childs
- jeremyc&ssimicro.com
-16589
- CNMP Networks, Inc.
- Gary Ding
- gding&cnpnetworks.com
-16590
- Scytl Online World Security SA
- Jordi Puiggali
- Jordi.Puiggali&scytl.com
-16591
- Avtec, Inc.
- Michael Cooley
- mcooley&avtecinc.com
-16592
- Laboratory Automation Inc.
- Fred Behlen
- fbehlen&laitek.com
-16593
- STIXO
- Arnaud ASSAD
- contact&stixo.com
-16594
- EmbTek
- Simon T Smith
- simon.smith&embtek.co.uk
-16595
- RE-Design
- Morten Roll Karlsen
- moroll&start.no
-16596
- TrendDiscovery Corporation
- WH Shih
- shih.wh&trenddiscovery.com
-16597
- Landala Nät AB
- Kalle Svensson
- kalle.svensson&landala.com
-16598
- Ton- und Studiotechnik GmbH
- Gero Enders
- g.enders&ts-online.com
-16599
- VasSol, Inc.
- Meide Zhao
- meide&vassolinc.com
-16600
- Marketing Resources, Inc.
- Preston Kutzner
- pkutzner&mrichi.com
-16601
- Intrex
- Jeff Mercer
- jlm43&drexel.edu
-16602
- IT-Vision AG
- Dieter Burger
- admin&it-vision.com
-16603
- AirMagnet, Inc.
- Chia-Chee Kuan
- ckuan&airmagnet.com
-16604
- The OpenSSL group
- Stephen Henson
- steve&openssl.org
-16605
- Radiance BBS
- Luciano Di Lucrezia
- wiz&radiance.ods.org
-16606
- DELFI
- Kristijonas Siaulys
- kristijonas.siaulys&delfi.lt
-16607
- Distra Pty Ltd
- Robert Pieper
- robert.pieper&distra.com
-16608
- Tottori SANYO Electric Co.,Ltd.
- Toshikatsu Tanimura
- ttanimu&torisan.co.jp
-16609
- Phalanyx
- Chris Traylor
- ctraylor&phalanyx.com
-16610
- Telemedia Software Corp.
- Tonny Chen
- tonny&telemedia.com.tw
-16611
- QNET
- Chris Linstruth
- cjl&qnet.com
-16612
- Zenon GmbH
- Christoph Matthaeus
- christoph.matthaeus&zenon-net.de
-16613
- Cross
- Federico Fernandez Cruz
- fecru&telefonica.net
-16614
- Genome Sequencing Center
- Rich Wohlstadter
- rwohlsta&watson.wustl.edu
-16615
- Entrada Software, Inc.
- Brian Williamson
- brian.williamson&entradasoftware.com
-16616
- DiscipleMakers, Inc.
- Brian Roberg
- robergb&dm.org
-16617
- Merlin Aviation Systems Ltd.
- Franz J Ehrengruber
- franz&iptelenet.com
-16618
- SAITC
- Stefan Auweiler
- stefan.auweiler&saitc.de
-16619
- Bandspeed, Inc.
- Michael Blanchard
- mblanchard&bandspeed.com
-16620
- Bugalux Denmark A/S
- Valentina
- valentina&bugalux.com
-16621
- Computer Care, Inc.
- Matt Finn
- matt&bitcount.com
-16622
- IntelligentAgents
- Robert Johnston
- TheHiveBrain&msn.com
-16623
- Mobile Broadcasting Corporation
- Shigeo,Nitta
- nitta&mbco.co.jp
-16624
- Planetactive GmbH
- Jan Voges
- jvoges&planetactive.com
-16625
- Ocado Limited
- Jonathan Sartin
- jonathan.sartin&ocado.com
-16626
- Norkom Technologies Ltd.
- Ray O'Donnell
- ray_odonnell&norkom.com
-16627
- Chang Industry, Inc.
- Wade Mergenthal
- wmergenthal&changind.com
-16628
- pdxcolo.net
- Mike Guthrie
- mikeg&pdxcolo.net
-16629
- Certeon Inc
- Shawn Amershek
- samershek&certeon.com
-16630
- IntellAgent GmbH
- Dominik Wezel
- dio&intellagent.ch
-16631
- Bermuda Holding
- Gerrit E.G. Hobbelt
- Ger.Hobbelt&bermuda-holding.com
-16632
- Seton Hall University
- Matt Stevenson
- stevenma&shu.edu
-16633
- Danamis Associates
- Dan Higgins
- dan&danamis.com
-16634
- VoxAge Teleinformatica Ltda
- Rodolfo Contri Rondao
- rodolfo&voxage.com.br
-16635
- S-FRiENdS
- Patryk Lason
- eos&spin.ict.pwr.wroc.pl
-16636
- KTROAD, Ltd.
- Hijiri Umemoto
- hijiri&ktroad.jp
-16637
- SANYCOM Technology Co.,Ltd
- guanzhiyong
- guanzy&sanycom.com
-16638
- AVL List GmbH
- Robert Oberritzer
- robert.oberritzer&avl.com
-16639
- SoftSolutions!
- Roberto Abati
- roberto.abati&softsolutions.it
-16640
- X.net 2000 GmbH
- Holger Albrecht
- halbrecht&xnet2000.de
-16641
- International Solar Energy Society
- Leander Conradie
- infosys&ises.org
-16642
- The Amulet Group
- Dan Johnson
- dan.johnson&amuletgroup.com
-16643
- EXAGO
- Christian Alexander Poisel
- cpoisel&exago.de
-16644
- Xtensive
- Thierry MICHEL
- thierry&xtensive.org
-16645
- San Joaquin Valley College, Inc.
- Craig Wall
- Craig&sjvc.edu
-16646
- R. F. Systems, Inc.
- Richard A. Wayman
- richard.wayman&rfsystems.net
-16647
- Regal CineMedia
- James Rivord
- JRivord&RegalCineMedia.com
-16648
- Centos Prime
- Chris Janton
- face&centosprime.com
-16649
- Softel Systems Pty Ltd
- Alan Conrad
- alan.conrad&softelsystems.com.au
-16650
- JSC Dalcombank
- Ilya Rachkov
- support&dalcombank.ru
-16651
- Gift of the Givers Foundation
- Dr. Imtiaz Sooliman
- info&giftofthegivers.co.za
-16652
- ThunderGeek
- John Rodger
- john&thundergeek.com
-16653
- Eltron
- Maciej J. Pyka
- pm&eltron.pl
-16654
- Electralink Ltd
- Mr S. Boyce
- s_boyce&hotmail.com
-16655
- Lunar Gravity Networks
- Josh Kleensang
- jkleensang&lunargravity.net
-16656
- m3production
- Pierre-Henri Boinnard
- ph.boinnard&m3production.fr
-16657
- ING Direct
- itdatacomsupport&ingdirect.com
- itdatacomsupport&ingdirect.com
-16658
- ITA Software
- Philip Dixon
- iana-notify&itasoftware.com
-16659
- Computer Science House
- Bob Miller
- bobprime&csh.rit.edu
-16660
- DMX Technologies
- Dominic Mak
- dominic&dmx.com.hk
-16661
- TACteam GmbH
- Wilmer Geovanny Guamán Toledo
- info&tacteam.de
-16662
- CFS Global Services
- Ricky Melville
- rmelville&c-f-s.co.uk
-16663
- Westec Holding Company Ltd
- Darren Boyden
- darrenb&westec-holding.co.uk
-16664
- ACI Europe Ltd
- Darren Boyden
- darrenb&westec-holding.co.uk
-16665
- Estonian Business School Group
- Olev Loitme
- Olev.Loitme&ebs.ee
-16666
- PEC Products
- Peter Ulrix
- peter.ulrix&pec.be
-16667
- Freax Sistemas
- Federico Sayd
- federicosayd&hotmail.com
-16668
- PCI Technologies Inc
- Brad Nikkari
- brad&pci.com
-16669
- Freeland Haynes Limited
- Laurence Wilks
- it.manager&freelandhaynes.co.uk
-16670
- Action Technologies, Inc
- Juan Olea
- jmolea&actiontech.com
-16671
- American Physical Society
- Paul Dlug
- paul@ap
-16672
- AirFlow Networks
- Harry Bims
- harryb&airflownetworks.com
-16673
- Chris Mitchell
- chris mitchell
- chrisrmitchell&hotmail.com
-16674
- Voyage Data, Inc.
- Chris Mitchell
- chris.mitchell&voyagedata.com
-16675
- Chace Community School
- Martin Stevens
- stevens&chace.enfield.sch.uk
-16676
- Servibanca- Grupo BCP
- Joaquim Fraga
- joaquim.fraga&bcp.pt
-16677
- Centre of Medical Technology
- Jacek Ruminski
- jwr&eti.pg.gd
-16678
- inX Services
- George Garvey
- tmwg&inxservices.com
-16679
- Sta Track Enterprise Limited
- Paco Lee
- paco_lee&yahoo.com
-16680
- Axia SuperNet Ltd
- Daniel LaChance
- daniel.lachance&axia.com
-16681
- Valid Solutions
- Christophe Van Ginneken
- Christophe.VanGinneken&valid.be
-16682
- Xtrac Ltd
- Mike Gooding
- mike_gooding&xtrac.com
-16683
- IIT GmbH
- Andreas Mueller
- am&iit.de
-16684
- European Humanities University
- Alexander Kulak
- sa&ehu.by
-16685
- Optinel Systems
- Brian B. Kane
- bkane&optinel.com
-16686
- Protego Networks, Inc.
- Rui Liu
- ruiliu&protegonetworks.com
-16687
- Cyantel
- Mike Rudden
- mrudden&cyantel.com
-16688
- InfraSec Sweden AB
- Peter Andersson
- peter.andersson&infrasec.se
-16689
- Retalix
- Marty Ramos
- marty.ramos&retalix.com
-16690
- Small Electric Motors Ltd
- Darren Boyden
- darrenb&westec-holding.co.uk
-16691
- Tekron Communication Systems Inc.
- Mike Farkouh
- mikefar&tekronsystems.com
-16692
- Optimal Technologies
- Sébastien Taylor
- sebastient&otii.com
-16693
- LongReach Telecommunications Pty Ltd
- Katherine Hamilton
- katherineh&longreach.com
-16694
- Purple Sun
- David Ogier
- dogier&purple-sun.com
-16695
- CYGNUS MICROSYSTEMS PRIVATE LIMITED
- HEMANT W GHAYAL
- hwg&cygnusmicro.com
-16696
- Decisiv Inc.
- Geetha Ravishankar
- geetha&decisiv.com
-16697
- The Free Software Initiative of Japan
- Fumitoshi UKAI
- ukai&fsij.org
-16698
- SCS Entriprise Systems
- Jaruwat Boonmee
- jaruwat&scses.co.th
-16699
- GYL
- Guang Yu Liu
- gyl&unforgettable.com
-16700
- Southwest Airlines Co.
- Matthew Kleifgen
- matt.kleifgen&wnco.com
-16701
- Carlson Hospitality Worldwide
- William J. Newman
- nkriptr&yahoo.com
-16702
- Naval Research Laboratory
- Brian Cadwell
- cadwell&ccs.nrl.navy.mil
-16703
- University of Westminster
- Mike Knell
- m.knell&westminster.ac.uk
-16704
- Yaga, Inc.
- Nick Hengeveld
- nickh&yaga.com
-16705
- Loyola Marymount University
- Gary Landau
- glandau&lmu.edu
-16706
- NavinMail Services (India) pvt ltd
- Picaso Thakkar
- picaso.t&navin.com
-16707
- Exelixis Deutschland GmbH
- Dr. Niketan Pandit
- N.Pandit&exelixis-de.com
-16708
- Wuhan Wearnes Technology CO,.Ltd(China)
- Liyan
- yli&wtwh.com.cn
-16709
- same
- Michael P Forman
- michael.p.forman&jpmchase.com
-16710
- Screaming Genius Meta Labs
- Frederick J Polsky
- fjp&screaming-genius.com
-16711
- basis0.net
- Jason Morefield
- jasonm&techie.com
-16712
- ILB
- Sven Andresen
- sven.andresen&ilb.de
-16713
- FH-Rosenheim
- Ohliger
- ohliger&fh-rosenheim.de
-16714
- Gossamer Group, LLC
- Skip Walker
- skip&gossamer-group.com
-16715
- TRLabs Regina
- Xiaoran Cao
- caoran&hotmail.com
-16716
- Unisyn Software, LLC
- Scott Robinet
- scott.robinet&unisyn.com
-16717
- University of Victoria
- Garry Sagert
- gsagert&uvic.ca
-16718
- GMV S.A.
- Carlos Illana
- cillana&gmv.es
-16719
- SAS IRIS Technologies
- Arnaud FLORENT
- aflorent&iris-tech.fr
-16720
- OSS Service
- Frédéric Perrenoud
- frederic&ossservice.com
-16721
- Chronos Technology Ltd
- Software Development Team
- software&chronos.co.uk
-16722
- Methics Oy
- Lennart Löfberg
- iana&methics.fi
-16723
- LawBase Technologies
- Steven Earl Smith
- SESmith&LBTinc.net
-16724
- Fitzgerald Associates
- Steven Fitzgerald
- scfjm&telecominstitute.com
-16725
- Itech Inc.
- Jerry Maiers
- itech-support&itech-mke.com
-16726
- Dowslake Microsystems Corporation
- Xin Cheng
- xin.cheng&dowslakemicro.com
-16727
- THALES AVIONICS
- Yves DEGUINE
- yves.deguine&thales-avionics.com
-16728
- Wolcott Systems Group, LLC
- Eric J. Kahle
- eric.kahle&wolcottgroup.com
-16729
- Midling and Associates
- Michael Midling
- mike.midling&gte.net
-16730
- Higher Ground Networks LLC
- Lee Clemmer
- admin&highergroundnetworks.com
-16731
- Industrial Medium
- Nate Shue
- nate&industrialmedium.com
-16732
- Guardent, Inc.
- Mark Benedetto King
- ben.king&guardent.com
-16733
- ActiveLife Ltd.
- Mingder Lu
- mdlu&ce.ntu.edu.tw
-16734
- Orbital Data Corporation
- Allen Samuels
- allen.samuels&orbitaldata.com
-16735
- TechnoCom Corporation
- Brett Hoye
- bhoye&technocom-wireless.com
-16736
- JavaLi Ltd.
- Hugo Monteiro
- hmmm&fct.unl.pt
-16737
- NeoTool Development, LLC
- Dave Shaver
- shaver&spamcop.net
-16738
- InterVideo Inc.
- Lifeng Zhao
- lifeng&intervideo.com
-16739
- CompanyName
- ContactName
- ContactEmail
-16740
- 3C Limited
- Forrest Wang
- sbchan&hk3c.com
-16741
- Alexander Müller Informatik
- Alexander Müller
- info&a-m-i.de
-16742
- topteam Services GmbH
- Guus Leeuw
- Guus-Leeuw&gmx.de
-16743
- Hessische Zentrale fuer Datenverarbeitung
- Miriam Rudolph
- m.rudolph&hzd.hessen.de
-16744
- BLANKOM
- Frank Hoeper
- frank.hoeper&blankom-digital.de
-16745
- Alfa-Bank OJSC
- Alexander Omelchenko
- aomelche&alfabank.ru
-16746
- springtimesoft LTD (formerly 'norbu09.org')
- Lorenz Gschwendtner
- lenz&springtimesoft.com
-16747
- InterCommIT b.v.
- Afdeling beheer
- beheer&intercommit.nl
-16748
- Studentska Unie CVUT
- Michal Medvecky
- admin&sh.cvut.cz
-16749
- Extensible Systems Ltd.
- Andy Hutchinson
- pen&extensible-systems.co.uk
-16750
- Gee Broadcast Systems Ltd
- Keith Gee
- keith&geebroadcast.co.uk
-16751
- INSA, S.A.
- David Ibañez
- dibanez&insa.org
-16752
- 4G Consulting Ltd.
- Owen Stubbs
- info&4gconsulting.co.uk
-16753
- dbNet Pty Ltd
- Frank Carnovale
- info&dbnet.com.au
-16754
- MERLIN, spol. s r.o.
- Mike Roskanuk
- admin&merlin.cz
-16755
- DanuSys, Ltd.
- Simon Kim
- yjinkim&danusys.com
-16756
- Juasun.net
- Taarifa
- taarifa&juasun.net
-16757
- IT SOFTWARE
- Federico Spagnolini
- f.spagnolini&itsoftware.it
-16758
- Lakeridge Health Corporation
- Brian Harrison
- bharrison&lakeridgehealth.on.ca
-16759
- Central Missouri State University
- Steve Walker
- swalker&cmsu1.cmsu.edu
-16760
- Internet Direct Inc.
- Mike Nerone
- mnerone&idworld.net
-16761
- New Mexico Tech
- Daniel Lunceford
- dlunceford&admin.nmt.edu
-16762
- Olson Technology, Inc.
- Tom Olson
- richard.wayman&rfsystems.net
-16763
- EZ Web-Tech, Inc.
- Paul Codding
- coddingp&ezwebtech.com
-16764
- IDD Works Inc.
- Jovan Strika
- jstrika&iddworks.com
-16765
- Schmitz-IT
- Harald Schmitz
- mail&schmitz-it.com
-16766
- SV Systems
- Sam Inala
- sami&svsysinc.com
-16767
- Wonderline Rt.
- Administrators
- admins&wonderline.hu
-16768
- Marine Interface Inc
- Eric Breen
- Breener&MarineInterface.com
-16769
- SV Systems
- Sam Inala
- sami&svsysinc.com
-16770
- Dave Dodge
- Dave Dodge
- dododge&smart.net
-16771
- 7seas Solutions Ltd.
- Tamas Stolmar
- iana&7seas.hu
-16772
- University of California, Santa Barbara
- Scott Gilbert
- scott.gilbert&isc.ucsb.edu
-16773
- Sourwood Research
- Matt Mozur
- matt.mozur&sourwood.net
-16774
- 4U S.r.l.
- Clizio Merli
- clizio&net4u.it
-16775
- GIP-MDS
- Alain ROUX
- alain.roux&gip-mds.fr
-16776
- mmit of ECNU
- Yangyan
- yyang&ms.mmit.stc.sh.cn
-16777
- Oxance
- Jerome Lefranc
- jerome.lefranc&oxance.com
-16778
- Uniteam Init
- Paolo Pezzoni
- paolo.pezzoni&init.it
-16779
- More-Secure B.V.
- Meint Post
- meint&more-secure.nl
-16780
- Pathway Computing, Inc
- Mike Sturdee
- engineering&pathwaynet.com
-16781
- WASP Systems Inc.
- Claude Laferriere
- claferr&magma.ca
-16782
- ClickCadence, LLC.
- Michael Dickey
- mdickey&clickcadence.com
-16783
- Abacus Technical Services
- Michael Hammond
- MCTMike&AbacusTech.info
-16784
- Olson Technology, Inc.
- Tom Olson
- tolson&olsontech.com
-16785
- Medizinische Universität Wien
- Christian Kröppl
- christian.kroeppl&akh-wien.ac.at
-16786
- Eosys srl
- Paolo Pezzoni
- eosys&vizzavi.it
-16787
- T-Systems Nova International GmbH
- Andreas Kelling
- Andreas.Kelling&t-systems.com
-16788
- Information Technology Center (KYTP), Aristotle Univ. of Thessaloniki GREECE
- Athanasios E. Siachoudis
- asiach&itc.auth.gr
-16789
- Berklee College of Music
- Philip A. Durbin
- pdurbin&berklee.edu
-16790
- Myrio Corporation
- Sagar Gordhan
- sagar.gordhan&myrio.com
-16791
- BRASCON
- Boguslaw Rutkowski
- brascon&brascon.pl
-16792
- Zapata Engineering, P.A.
- Bryan Ragon
- bragon&zapeng.com
-16793
- University of New England
- Gordon Smith
- gordon.smith&une.edu.au
-16794
- Savant Technologies Private Ltd
- Senthil Palanisamy
- senthil&savanttechnologies.com
-16795
- MRO - TEK LIMITED
- Mohan Kumar Perala
- mohan&mro-tek.com
-16796
- Institute of High Energy Physics ,Beijing,China
- Weiyi Zhang
- wyzhang&mail.ihep.ac.cn
-16797
- InfoThuis Nieuwe Media BV
- Richard van Dijk
- richard.mail&infothuis.nl
-16798
- Digital Technical Ltd., National Libaray of China
- Shijun Deng
- dsjzzwdy0&hotmail.com
-16799
- XL Global Services Ltd.
- Dave Cameron
- dcameron&xlgs.com
-16800
- IDYLIC
- BUZAY
- cb&idylic.com
-16801
- Open Pricer
- Xavier Poinsard
- xpoinsard&openpricer.com
-16802
- i2Q Ltd
- Benjamin Ellis
- bellis&i2q.co.uk
-16803
- Tetra Pak Information Management AB
- Jan-Ake Ljungqvist
- janake.ljungqvist&tetrapak.com
-16804
- netcadabra
- Doug Eckhart
- doug&netcadabra.com
-16805
- Validus Medical Systems, Inc
- OID Manager
- oid-manager&validus.com
-16806
- Dot New Media Ltd
- Iain Campbell
- iain.campbell&dotco.co.uk
-16807
- Millennium Digital Media
- Ken Borgmeyer
- kborgmeyer&mdm.net
-16808
- hambrecht.org
- Kai Hambrecht
- kai&hambrecht.org
-16809
- Payless Shoesource, Inc
- Robert J Dunlap
- bob.dunlap&payless.com
-16810
- Along Software Developer WorkShop
- Changgen Zou
- netservant&vip.sina.com
-16811
- BlueTie, Inc.
- Domain Administration
- domainadmin&bluetie.com
-16812
- UnixIron
- Michael Kukat
- michael&unixiron.org
-16813
- Micronet Communications,INC.
- Gilbert
- gilbert&micronet.info
-16814
- Quinsy B.V.
- R. Doets
- rdoets&quinsy.nl
-16815
- GlidePath BV
- GCC Administrator
- gcc-support&glidepath.nl
-16816
- Computer Plus GmbH
- Ekkehard Burkon
- hostmaster&cplus.de
-16817
- De La Rue International Ltd
- Clive Smeardon
- clive.smeardon&uk.delarue.com
-16818
- United Media Company GmbH
- Robert Steiner
- rst&umc-web.de
-16819
- Priocom Corp.
- Alexander Zhukov
- zhukov&priocom.com
-16820
- SOC
- wenbin.xie
- wenbin&shenou.com
-16821
- Institute for Advanced Study
- Thomas Uphill
- sys-admins&math.ias.edu
-16822
- Scott L. H. Yuan
- Scott L. H. Yuan
- yuansc&netartisan.org
-16823
- Abeling-IT-Design
- Elmar Abeling
- elmar.abeling&web.de
-16824
- OTAGAKI
- Shunichi Otagaki
- otagaki&otagaki.jp
-16825
- Network Technology
- Matt Naismith
- matt&onthenet.com.au
-16826
- Innomedia Technologies Private Limited
- A Ravi
- ravi&innomedia.soft.net
-16827
- Secure Systems Ltd.
- Vladimirs Satohins
- vsop&securesystems.lv
-16828
- IntelSoft Ltd.
- Sergey Tamkovich
- sergeus&okclub.org
-16829
- DuckCorp
- Dequenes Marc
- duck&duckcorp.org
-16830
- Fidelity Information Services
- Shawn McKinney
- shawn.mckinney&fnf.com
-16831
- benhall.ca
- Ben Hall
- ben&benhall.ca
-16832
- Auchan
- Malika Saadi
- msaadi&auchan.com
-16833
- Logicworks Inc.
- Bart Grantham
- bart&logicworks.net
-16834
- Hospital Billing Collection Service, Ltd. (HBCS)
- C T Brooks
- hostmaster&hbcs.org
-16835
- Dahle Consulting
- Odd Rune Dahle
- oddrune&dahle.info
-16836
- M2Studio Ltd.
- Miljan Mitrovic
- mmix&m2comp.biz
-16837
- Washington County
- Randall Hinton
- randy&washco.state.ut.us
-16838
- Omron Corporation
- Takehiko Seki
- takehiko_seki&omron.co.jp
-16839
- Rodion Software
- Rodion Raskolnykov
- Rodion03&yahoo.com
-16840
- Shanghai E-Rom Communication Technology Co.,Ltd
- huijiang Yin
- yhj21&21cn.com
-16841
- Ifeelnet
- Jong-Sik, Woo
- jswoo&ifeelnet.com
-16842
- In Phase Consulting
- William Edward Woody
- woody&alumni.caltech.edu
-16843
- BarcoVision
- Koen Mannaerts
- koen.mannaerts&barco.com
-16844
- CreaCare GmbH
- Keller Daniel
- keller&creacare.com
-16845
- Electricité de France - Gaz de France
- Anne Tanguy
- anne.tanguy&edfgdf.fr
-16846
- MPEC Wroclaw S.A.
- Grzegorz Nowakowski
- admin&e-wro.net
-16847
- Sakura Network Japan
- Kenji Tanaka
- tanaka_k&sakura.ac
-16848
- Independent Consulting Solutions Ltd.
- Blythe Walker
- wavewalker9&yahoo.com
-16849
- BeyondData.net ITS
- Matthew Mulrooney
- iana.org&fm.beyonddata.net
-16850
- 13 Colonies Software
- Tim Cronin
- tim&13-colonies.com
-16851
- rheingold Institut für qualitative Markt- und Medienanalysen Gesellschaft bürgerlichen Rechts
- Sven Morschbach
- morschbach&rheingold-online.de
-16852
- Telinfos
- SeongGeun Lee
- leesg&telinfos.co.kr
-16853
- barracuda digitale agentur GmbH
- Carsten Wawer
- carsten&barracuda.de
-16854
- STI Healthcare, Inc.
- alex medvedev
- alexm&stihealthcare.com
-16855
- Metromorph Softworks Ruhri/List GbR
- Alexander Ruhri
- technik&metromorph.de
-16856
- Bradford Software Inc.
- Alan Hackert
- hackert&bradford-sw.com
-16857
- 3 Bean
- Bill Hay
- bill&3bean.net
-16858
- Tall Maple Systems, Inc.
- Eric Tucker
- et&tallmaple.com
-16859
- Multimedia Games, Inc.
- Channing Corn
- channing&mm-games.com
-16860
- Thomas Endo
- Thomas Endo
- tendo&olagrande.net
-16861
- Wefi.Net IT Consulting
- Werner Fischer
- office&wefi.net
-16862
- ICONZ Ltd
- Grant Zanetti
- grant.zanetti&iconz.net
-16863
- JSR.COM
- John Russell
- john.russell&iconz.net
-16864
- {M:U} Consulting
- Matthias Urlichs
- smurf&smurf.noris.de
-16865
- ZIM Technologies International Inc.
- Andrew McCue
- amccue&zim.biz
-16866
- Software North, Inc.
- Laurence R. North
- lnorth&swnorth.com
-16867
- TIBCO Software, Inc. DSPG (formerly 'DataSynapse, Inc.')
- Ryan Glen
- dspg-pen-administrator&tibco.com
-16868
- Conseil Internet & Logiciels Libres, Jérôme Alet
- Jérôme Alet
- alet&librelogiciel.com
-16869
- ROMmon Ltd
- Petri Helenius
- support&rommon.com
-16870
- Banco do Estado do Rio Grande do Sul,S.A.
- Enzo Theobaldo De Santis
- enzo_de_santis&banrisul.com.br
-16871
- Tchibo Frisch-Röst-Kaffee GmbH
- Frank Markmeyer
- frm&tchibo.de
-16872
- Collaborative Commerce Engines
- William J. Flanagan
- bill.flanagan&collaborativecommerce.com
-16873
- future gate group
- Ronny Bremer
- rbremer&future-gate.com
-16874
- HiTRUST Incorporated
- Kevin Liou
- kevinl&hitrust.com.tw
-16875
- Computer Plus GmbH
- Ekkehard Burkon
- hostmaster&cplus.de
-16876
- KungFoo Coders
- Paul Wagland
- iana&kungfoocoder.org
-16877
- All Media Banking BV
- Robin Huiser
- rhuiser&allshare.nl
-16878
- Oldham Metropolitan Borough Council
- Andrew McCall
- it.andrew.mccall&oldham.gov.uk
-16879
- SCA Transforest AB
- Anders Åkre
- itlogistics&sca.com
-16880
- zehome.com
- laurent COUSTET
- ed&debian-fr.net
-16881
- emni GmbH
- Eric Roehri
- e.roehri&emni.net
-16882
- OpenEAI Software Foundation
- Stephen Wheat
- steve&openeai.org
-16883
- GKB Technology Co., Ltd
- Motohiro Gochi
- mgochi&gkb-t.com
-16884
- (IPL) Instituto Politécnico de Lisboa
- Nuno Miguel Machado Cruz
- ncruz-iana&net.ipl.pt
-16885
- Nortel Networks
- Sharon Chisholm
- schishol&nortelnetworks.com
-16886
- Revelstone Technology
- Thomas Ledbetter
- thomas.ledbetter&revelstone.net
-16887
- IPLocks Inc.
- Jerry Hu
- jhu&iplocks.com
-16888
- Neutelligent.com
- Michael Conlen
- mconlen&neutelligent.com
-16889
- MYIT.BIZ, Inc.
- Scott Smallie
- ssmallie&myit.biz
-16890
- Technisys
- Gabriel Maffia
- gmaffia&technisys.net
-16891
- Meta GmbH
- Christoph Bühring
- cbuehring&gmx.at
-16892
- Signalisation Ver-Mac, Inc.
- Lesly Bien-Aimé
- Lesly.Bien-Aime&Ver-Mac.com
-16893
- Enterprise Rent-A-Car
- Ray Westphal
- raymond.w.westphal&erac.com
-16894
- Cotelligent, Inc
- Steven Fines
- steven.fines&cotelligent.com
-16895
- J.P. Evans, Inc.
- John Evans
- private-enterprise-number&jpevans.com
-16896
- SUNGARD Front Office Solutions
- DAVID COTE
- david.cote&sungard.com
-16897
- sdata - C. Splittgerber Datentechnik
- Christoph Splittgerber
- info&sdata.de
-16898
- Venture Industry International Corp.
- Shingo Takahashi
- takahashi&vii.jp
-16899
- Corvigo, Inc.
- Phil White
- iana-contact&corvigo.com
-16900
- a metareal material
- Shingo Takahashi
- metareal&vii.co.jp
-16901
- Mojo Networks, Inc. (formerly 'Wibhu Technologies Pvt. Ltd.')
- Varun Anand
- iana&mojonetworks.com
-16902
- APPLETZ CO., LTD.
- Tomoyuki Kano
- tomo&appletz.jp
-16903
- TeleCats BV
- Sjoerd Boomstra
- s.boomstra&telecats.nl
-16904
- Aylesford Newsprint Limited
- Tim Feneron
- iana_admin&aylnews.com
-16905
- Ginger Alliance Ltd.
- Pavel Hlavnicka
- pavel&gingerall.cz
-16906
- Enertron LLC
- Sean Millichamp
- sean&enertronllc.com
-16907
- Truman State University
- ITS Network Manager
- jmcnabb&truman.edu
-16908
- Binary Ape
- Pete Birkinshaw
- pete&binary-ape.org
-16909
- Newberg Public Schools
- Jamie McParland
- jamiejunk&yahoo.com
-16910
- chinaunionpay
- su qun
- xiaosu88&hotmail.com
-16911
- General Wireless Scandinavia AB
- Andreas Kalin
- hostmaster&generalwireless.se
-16912
- Bundesanstalt Statistik Oesterreich
- Peter Wesel
- peter.wesel&statistik.gv.at
-16913
- Open Network Solutions, Inc
- James Moulton
- ContactEmail
-16914
- nuit.ca
- eric côté
- simon&nuit.ca
-16915
- The Hal Lewis Group, Inc.
- Richard Beyer
- rbeyer&hlg.com
-16916
- ma-planete
- Jean-Luc Rochat
- rochat&ma-planete.net
-16917
- Seecago
- Erwin Hogeweg
- erwin&hogeweg.cc
-16918
- AEIIE - ARISE
- weber
- weber&iie.cnam.fr
-16919
- Augsburger Computer Forum e.V.
- Gerhard Schmidt
- estartu&augusta.de
-16920
- ARTE G.E.I.E
- Frederic ROTH
- F-Roth&arte-tv.com
-16921
- HWACOM SYSTEMS INC.
- FELIX LIN
- felix.lin&hwacom.com
-16922
- ville d'Echirolles
- Colette Duranti
- c.duranti&ville-echirolles.fr
-16923
- RTV Slovenija, Javni zavod
- Bojan Ramsak
- bojan.ramsak&rtvslo.si
-16924
- British Sky Broadcasting Ltd
- Jim Doak
- jim.doak&bskyb.com
-16925
- IGA-PEGASE
- Franklin LECOINTRE
- franklin.lecointre&pegase-ri.com
-16926
- Systemberatung Axel Dunkel GmbH
- Axel Dunkel
- info&Dunkel.de
-16927
- MLB Associates
- Gary Thomas
- gary&mlbassoc.com
-16928
- Mark South West
- Mark Kaplun
- mark&marksw.com
-16929
- University of California, Merced
- Enrique Flores
- ehf&ucmerced.edu
-16930
- CAM Security and Connections B.V.
- Richard Lucassen
- iana.spamtrap&lucassen.org
-16931
- Sandwell Technologies, Inc.
- Paul Sandwell
- paul&sandwelltech.com
-16932
- DICOM Group
- Alexander
- info&dicomgroup.ru
-16933
- ALC Computertechnik GmbH
- Juergen Marquardt
- marquardt&alc.de
-16934
- Marian Bracinik
- Marian Bracinik
- bracinik&prosoft.sk
-16935
- Espoo-Vantaa Institute of Technology
- Jukka Veikkolainen
- jukkatv&evtek.fi
-16936
- Databay AG
- Ralf Schenk
- rs&databay.de
-16937
- e-Wriedt
- Dirk Wriedt
- dirk&e-wriedt.de
-16938
- Sensational AG
- Philip Hofstetter
- phofstetter&sensational.ch
-16939
- Addix Internet Services GmbH
- Jan-Hendrik Palic
- jhp&addix.net
-16940
- CryptoGram SA
- Odette GROS-BONNIVARD
- ogrosbonnivard&cryptogram-fr.com
-16941
- Oakley, Inc.
- Ryan Erwin
- ldapadmin&web.oakley.com
-16942
- TRX
- Przemyslaw Strzelczyk
- przemek&trx.pl
-16943
- Overture Networks, Inc. (formerly 'Ceterus Networks')
- Rodney Spruell
- Rodney.Spruell&overturenetworks.com
-16944
- Seven Blades
- Carlos Crosetti
- carlos&sevenblades.com
-16945
- Grupo de Usuarios de Linux de Canarias
- Ricardo Cárdenes
- heimy&gulic.org
-16946
- Litchfield Communications, Inc.
- Dave Danenberg
- dave_danenberg&litchfieldcomm.com
-16947
- Program Line
- Serge Shikov
- sshikov&microtest.ru
-16948
- RHODITECH
- Sylvain FERIGO
- Sylvain.FERIGO-EXTERIEUR&EU.RHODIA.COM
-16949
- Mobifon S.A.
- cristian garabet
- cristian.garabet&connex.ro
-16950
- AOM Active Online Marketing GmbH
- Egon TILLER
- egon.tiller&aom.co.at
-16951
- COGEMA LA HAGUE
- Stéphane Pierrat
- spierrat&cogema.fr
-16952
- Eisodus Networks Pvt. Ltd
- Abhijit Gadgil
- gabhijit&eisodus-net.com
-16953
- TECCO Software Entwicklung AG
- Stefan Witzig
- office&tecco.at
-16954
- Software Poetry, Inc.
- Sean Nolan
- sean&softwarepoetry.com
-16955
- modulus-systems GmbH & Co. KG
- Frank Rahn
- rahn&modulus-systems.de
-16956
- InboxCop, Inc.
- Nathan DiNiro
- nate&inboxcop.com
-16957
- FioNet Internet Services
- Fionn Behrens
- service&fionet.com
-16958
- Instituto Tecnológico y de Energías Renovables, S.A.
- Pedro Gracia
- pgracia&iter.rcanaria.es
-16959
- Cipher Security Services, Inc.
- Chad Agate
- info&ciphersecurity.com
-16960
- Darron Nesbitt
- Darron Nesbitt
- jd_nesbitt&hotmail.com
-16961
- Vaisala
- Aki Lilja
- aki.lilja&nogarbageplease.vaisala.com
-16962
- Seven Levels Consultants AB
- Torgny Hofstedt
- Torgny.Hofstedt&sevenlevels.se
-16963
- Intuwave Ltd.
- James Maidment
- james.maidment&intuwave.com
-16964
- nonap
- Kevin Cheung
- kevc&nonap.com
-16965
- AUNA TLC
- OID Admin
- oidAdmin&auna.com
-16966
- Kiff Analytical, LLC
- JD Sampson
- jd.sampson&kiffanalytical.com
-16967
- University Texas Medical Branch Galveston
- Marsha Mullins
- mmullins&utmb.edu
-16968
- Magnifire
- Iftah Bratspiess
- iftah&web-silicon.com
-16969
- eyebits studios
- Dale Musser
- dale&eyebits.com
-16970
- Coublis Ltd
- Colville Wood
- colville&coublis.com
-16971
- Lemche Net
- valdemar lemche
- valdemar&lemche.net
-16972
- DSL Terminal Remote Management Alliance
- Wang Jian
- wangjian&huawei.com
-16973
- CITS Group Inc.
- Myhaiylo Yevych
- info&cits-group.com
-16974
- WORLDMINGO
- THURMAN
- TMINGO&ATTBI.COM
-16975
- Horst Thiele - Maschinenbau - Hydraulische Geraete GmbH
- Erik Thiele
- erik&thiele-hydraulik.de
-16976
- S.I.D.E. Resources & Development
- Frank Polet
- frank.polet&side.lu
-16977
- Zwi1zek Bankow Polskich
- W3odzimierz Krzysztofik
- wlodek&zbp.pl
-16978
- Medical Insight A/S
- Morten Olsen
- iana-pen&medical-insight.com
-16979
- M2 Ingenierie et Conseil SARL
- Timo C. Metzemakers
- tcm&m2ic.fr
-16980
- Jacob & Sundstrom, Inc.
- Matthew D. Meyer
- mmeyer&jasi.com
-16981
- ITG Inc.
- Ye Huang
- yhuang&itginc.com
-16982
- Masaryk University
- David Rohleder
- davro&ics.muni.cz
-16983
- CINECA
- Nico Tranquilli
- ldap&cineca.it
-16984
- Exacore Consolidated Systems
- Chris Webb
- exacore&yahoo.co.uk
-16985
- Global Technology Co.,Ltd.
- Frank Wang
- Global.Frank&163.com
-16986
- FACTOR SPE
- Serge Kravchenko
- factorse&i.com.ua
-16987
- Esker SA
- Thibault Mangold
- mangold&esker.fr
-16988
- The Manufacturers Life Insurance Company
- Dave Rypma
- External_Keys&manulife.com
-16989
- KiSP, Inc.
- Lewis Prosper
- lprosper&kisp.com
-16990
- Print Inc.
- Robert Woodcock
- rwoodcock&printinc.com
-16991
- Starsoft
- Johan Forslund
- johan.forslund&starsoft.se
-16992
- The Halifax Herald Limited
- Paul Williams
- paul&herald.ns.ca
-16993
- Norsec
- Nick Theriault
- nt120305-iana&norsec.net
-16994
- Key Circle
- Afshin Daghi
- afshin&keycircle.com
-16995
- elego Software Solutions GmbH
- Olaf Wagner
- info&elego.de
-16996
- Aboriginal Sports and Recreation Association of BC
- Gordon Ali
- gordon.ali&asra.ca
-16997
- Innovative Consultants, LLC
- Pinda Ndaki
- pinda&consult-ic.com
-16998
- Intoto Inc.
- Sarat Vetcha
- sarat&intotoinc.com
-16999
- Cortinovis S.A.
- Jérôme Schell
- j.schell&groupe-jc.com
-17000
- Centre de Telecomunicacions i TI de la Generalitat de Catalunya
- David Prats Jubany
- david.prats&t-systems.es
-17001
- Act Technology Co.,Ltd.
- Frank Wayne
- w.zf&163.com
-17002
- Copsey Communications Projects
- Brian Copsey
- bc&copsey-comms.com
-17003
- University Of Dundee
- Ian Angles
- i.angles&dundee.ac.uk
-17004
- Israel InterUniversity Computation Center
- Hank Nussbacher
- hank&mail.iucc.ac.il
-17005
- Mangrove Systems, Inc.
- Sean Harnedy
- sharnedy&mangrovesystems.com
-17006
- Spherion
- Manuel Jimenez
- manueljimenez&spherion.com
-17007
- Cool IT
- Administrator
- admin&coolit.fi
-17008
- Clever Age SARL
- Matthieu Belge
- mbelge&clever-age.com
-17009
- imove
- Stephan Pulver
- spulver&imove.ch
-17010
- hopecom optic communication Ltd.
- luweiwen
- luweiwen&hopecom.com.cn
-17011
- Metadata Systems, Inc.
- Thomas K Wong
- snmp&metadata-systems.com
-17012
- eCareme Technologies, Inc.
- Cecilia Chen
- Cecilia_Chen&ecareme.com
-17013
- Guaranty Technology Corp.
- Jack Tsai
- jacktjc&guaranty.com.tw
-17014
- Izumi Cyber Networks Inc.
- Takenori Higashimura
- oni&izumi-si.co.jp
-17015
- manage.it GmbH & Co. KG
- Wolfgang Zitzelsberger
- w.zitzelsberger&manage.de
-17016
- Info Jure Knowledge Ltd.
- Simone Merli
- simone.merli&ijk-eu.com
-17017
- CyberTech de Colombia Ltd.
- Milton Quiroga
- mquiroga&uniandes.edu.co
-17018
- Silikone.com
- Soren Christensen
- soren&silikone.com
-17019
- Heinrich Berndes Haushaltstechnik GmbH&Co. KG
- IT-Service
- it-support&berndes.com
-17020
- IRSN
- Jean-Luc Verpeaux
- jean-luc.verpeaux&irsn.fr
-17021
- University of Central Florida
- Aaron Streimish
- aarons&pegasus.cc.ucf.edu
-17022
- Avista Labs Inc.
- Jeremy McClintock
- jeremy.mcclintock&avistalabs.com
-17023
- Apptera
- Babu
- bpapanna&apptera.com
-17024
- Jackson Local School District
- Keith Obermeier
- kao2jc&polarbear.stark.k12.oh.us
-17025
- Rether Networks Inc.
- Sheng-I Doong
- sdoong&rether.com
-17026
- dotNSF, Inc.
- George Chiesa
- chiesa&dotNSF.com
-17027
- YAAO
- Lu Hongjie
- luhongjie&aocom.com.cn
-17028
- MarketXS.com BV
- Alan Broady
- alan.broady&marketxs.com
-17029
- baumer it-services (formerly '0mode')
- Roman Baumer
- ldap&baumer-its.ch
-17030
- Velveo
- Francois TIFFREAU
- ft&eytsec.com
-17031
- Cluster Labs GmbH
- Lothar Feige
- Lothar.Feige&Cluster-Labs.com
-17032
- City of Helsinki
- Pirkka Luukkonen
- pirkka.luukkonen&hel.fi
-17033
- Medical University of South Carolina
- Richard Gadsden
- gadsden&musc.edu
-17034
- NHN Corp.
- Richard Yoo
- swyoo&nhncorp.com
-17035
- Cerberian Inc
- Gregory Newton
- gnewton&cerberian.com
-17036
- Alisys Software S.L.
- Carlos Carús
- carlos.carus&alisys.net
-17037
- Brannstroms Elektronik AB
- Peter Mathiasson
- pm&brannstrom.se
-17038
- Federal State Unitary Enterprise "Production Company 'Start'"
- Alexander Lunyov
- lan&startatom.ru
-17039
- Vontu, Inc
- Gagan Palrecha
- gagan&vontu.com
-17040
- Integrits Corporation
- Kari Massarene
- kmassare&integrits.com
-17041
- TeleDomani, Inc.
- Michael Pigott
- pigotm&rpi.edu
-17042
- Consultores Globales Online S.L.
- Oscar Maqueda
- oscar&consultoresglobales.com
-17043
- PC-Repair Aalestrup
- Peter
- peter&homedisk.net
-17044
- Red Fig Ltd
- Alex Tapaccos
- atapaccos&redfig.com
-17045
- Network Technologies Group
- Nathan Gardiner
- nate&nate.id.au
-17046
- ErrorNet
- Simon Dassow
- janus&errornet.de
-17047
- Eurofresh.inc
- Bruce Hermes
- b.hermes&eurofresh.com
-17048
- Ashland Inc.
- Robert Stephenson
- rlstephenson&ashland.com
-17049
- Eurospider Information Technology A.G.
- Andreas Baumann
- andreas.baumann&eurospider.com
-17050
- MediaSonic
- Jay Morrison
- jay.morrison&mediasonic.com
-17051
- Last Minute Network Limited
- Monika Szyc
- tech_ops&lastminute.com
-17052
- A Plus Marketing
- Ken Pearson
- web&universityservices.net
-17053
- www.slavel.ru
- Yuri Nosyrev
- root&slavel.ru
-17054
- Severoceska plynarenska, a.s.
- Vladimir Naprstek
- vladimir.naprstek&scplyn.cz
-17055
- MoshJahan Ltd
- Network Operations Manager
- netops&moshjahan.net
-17056
- Fusion Network Services Corp.
- FusionGOL Engineering
- noc&gol.com
-17057
- Victor-Sierra
- Vincent Williams
- n1ufg&prodigy.net
-17058
- National Radio Astronomy Observatory
- Allyson Polak
- apolak&nrao.edu
-17059
- Cookingwise
- Thomas Blomseth Christiansen
- thomas&cookingwise.dk
-17060
- zetein.net
- Thomas Mauduit
- monrou_r&epita.fr
-17061
- Shanghai 4U Network Tech.Co.,Ltd.
- yubo
- yubo&4u-china.com
-17062
- ArielServices
- Ariel Peinado
- arielpeinado&hotmail.com
-17063
- Lightship Telecom, LLC
- James Cook
- jcook&lightship.net
-17064
- CSX Technologies
- Jerry Castille
- jerry_castille&csx.com
-17065
- Zions Bancorporation
- Cory Nemelka
- cnemelka&zionsbank.com
-17066
- Collaboratech, Inc.
- Mark Burgess
- markb&collaboratech.com
-17067
- Padimax Limited
- John Risby
- john&padimax.co.uk
-17068
- Jcast Networks Corp.
- Jai H. Eu
- jeu&jcastnet.com
-17069
- Leucotron Equipamentos Ltda.
- Dilson Frota Moraes
- snmp&leucotron.com.br
-17070
- Hi De Ho
- Keith Hughes
- reg&hideho.org
-17071
- Prime Electronics & Satellitics Inc.
- Double Chiang
- double&pesi.com.tw
-17072
- Transgate
- Masahiro Ono
- masahiro&transgate.org
-17073
- Universitaetsklinikum Freiburg
- Gerd Kessler
- gerd.kessler&uniklinik-freiburg.de
-17074
- Senatsverwaltung fuer Gesundheit, Soziales und Verbraucherschutz Berlin
- Klaus Habeck
- klaus.habeck&sengsv.verwalt-berlin.de
-17075
- Edwin L. Cox School of Business
- Jimi Thompson
- jimi&mail.cox.smu.edu
-17076
- EXCELLENCE High Tech - Georgia LTD.
- Alexander Nefedov
- nealexus&yahoo.com
-17077
- Girit Projects Inc.
- Slavtcho Nikov
- slavtchon&giritprojects.com
-17078
- Innovation Software Group, LLC
- Joseph Phillips
- admin&innovationsw.com
-17079
- AppIQ, Inc.
- Jonathan Hill
- jon.hill&appiq.com
-17080
- BeTrained, Baumgartner KEG
- moritz haslhofer
- moritz.haslhofer&betrained.org
-17081
- M.F. van Loon
- M.F. van Loon
- michiel&van-loon.xs4all.nl
-17082
- Oregon University System
- Anthony Brock
- Anthony.Brock&oregonstate.edu
-17083
- COMPART MEDICAL SYSTEMS
- Jacek Owczarczyk
- jo&compart-med-sys.home.pl
-17084
- HON HAI PRECISION IND. CO., LTD.
- Serena Yeh
- serena.sf.yeh&foxconn.com
-17085
- Beijing BU Telecom Tech co.,Ltd
- zhenzhong zhang
- zhangzz&bt-t.com
-17086
- BIK Aschpurwis + Behrens GmbH
- Florian Hars
- snmp&bik-gmbh.de
-17087
- GrECo International AG
- Peter Jarisch
- p.jarisch&together.at
-17088
- sichuan wisesoft Ltd.
- lijin
- lijin2001&tom.com
-17089
- Universität Paderborn, Zentrum IT-Dienste
- Andreas Brennecke
- anbr&uni-paderborn.de
-17090
- Packetizer, Inc.
- Paul E. Jones
- paulej&packetizer.com
-17091
- Ciphire Labs
- Lars Eilebrecht
- le+iana&leogic.com
-17092
- MediaRing Limited
- Pawan Pandey
- pawan&mediaring.com
-17093
- Ellemedia Technologies Ltd.
- Kostas Vaxevanakis
- vaxevana&ellemedia.com
-17094
- Blueslice Networks Inc.
- Yan He
- yan&blueslice.com
-17095
- Microchip Technology Inc.
- Nilesh Rajbharti
- Nilesh.Rajbharti&microchip.com
-17096
- Invesco Institutional, Fixed Income Group
- Ronald V. Simmons
- Van_Simmons&invesco.com
-17097
- Weltek Technologies Co., Ltd.
- Tat-Leung Ho
- ho&weltek.com.hk
-17098
- Innomenta GmbH & Co. KG
- Klaus Schmidt
- klaus.schmidt&innomenta.de
-17099
- TellusTech Ltd.
- Assen Stoyanov
- softa&ttechgroup.com
-17100
- Fabasoft R&D Software GmbH & Co KG
- Karl Pitrich
- karl.pitrich&fabasoft.com
-17101
- InternetNu
- W.M. Baan Hofman
- w.m.baanhofman&internetnu.net
-17102
- Bororos
- Bororos
- bororos&monetplus.cz
-17103
- Biznet Information Systems and Consultancy
- Haluk Aydin
- haydin&biznet.com.tr
-17104
- 1-800 Communications, Inc.
- Scott Dallamura
- sdallamura&1800communications.com
-17105
- Insignia Solutions
- Anne Rosset
- anne.rosset&insignia.com
-17106
- GlobNIX
- Phil Pennock
- snmp-mib&globnix.org
-17107
- The Konopka Corporation
- Michael Konopka
- mike&konopkacorp.com
-17108
- Vinci Systems, Inc.
- Joe Kralowetz
- jkralowetz&vincisystems.com
-17109
- Chotaro Co.
- Masami Nishida
- nischida&chotaro.com
-17110
- Institut de Recherche pour le Développement (IRD)
- THOURAUD Emmanuel
- thouraud&bondy.ird.fr
-17111
- JMSE
- Jim McClure
- jmcclure&insight.rr.com
-17112
- Axstone Co., Ltd.
- KI-HONG BANG
- soogy&axstone.com
-17113
- EvoNet Computer Network Evolution GmbH
- Christoph Bott
- iana&evonet.de
-17114
- Keyrus S.A.
- Liouville David
- dliouville&keyrus.com
-17115
- D-APP-X Corporation
- Randy Bradley
- randy&d-app-x.com
-17116
- GMA COMMUNICATION MANUFACTURING & MARKETING 1991 LTD.
- Liron Homski
- liron&gma.co.il
-17117
- Advantage Sales & Marketing
- Andrew Garvin
- oid.admin&asmnet.com
-17118
- Byram Healthcare Centers, Inc.
- Derek J. Balling
- sa&byramhealthcare.com
-17119
- OctetString, Inc
- Phil Hunt
- phil.hunt&octetstring.com
-17120
- Team Cool Networks
- Ken Gunderson
- kgunders&teamcool.net
-17121
- Geronimo Group Inc.
- Carl Foster
- cfoster&geronimogroup.com
-17122
- Apogent Technologies Inc.
- Peter J. Van Bruggen
- pvanbruggen&apogent.com
-17123
- Tavata Software Corporation
- Peter Smith
- psmith&tavatasoftware.com
-17124
- Psycat Group
- Lars Stenberg
- lars.stenberg&psycat.net
-17125
- Eze Castle Integration, Inc.
- William Tan
- wtan&eci.com
-17126
- Nova Engineering, Inc.
- Bill Walburg
- billw&nova-eng.com
-17127
- Kilowatt Networking, Inc.
- Kyle Obear
- kobear&kilowattnetworking.com
-17128
- mg2.org
- Michael Gregorowicz
- junk&mg2.org
-17129
- Zaclick Co.,Ltd
- Joo Minsok
- neinhart&zaclick.com
-17130
- antiquity books
- Michael Goldsmith
- n2ucm&verizon.net
-17131
- Rectifier Technologies Pacific Pty Ltd
- Paul Davis
- PaulDavis&rtp.com.au
-17132
- Shanghai Dare Opto-electronic Communication Co.,Ltd
- pengyuanlong
- pengyuanlong&cndare.com
-17133
- ILWOO DATA & TECHNOLOGY Co.,LTD
- WILLIAM JANG
- jckj&netian.com
-17134
- Good Health Network, Inc
- Lori Reed-Fourquet
- fourquet&ix.netcom.com
-17135
- Raaijmakers
- Vincent Raaijmakers
- vincent&raaijmakers.cc
-17136
- PLG AG
- Andreas Stoer
- andreas.stoer&plg.de
-17137
- GradSoft Ltd.
- Ruslan Shevchenko
- iana&gradsoft.kiev.ua
-17138
- INHOLLAND Universities
- Boris van Es
- boris.vanes&inholland.nl
-17139
- Internet Gold
- Valdemar Lemche
- atterdag&co.zahav.net.il
-17140
- Versatel Nederland B.V.
- Aleks Mitrovic
- aleksandar.mitrovic&versatel.nl
-17141
- Incenti S.A.
- Pawel Karwowski
- karwowskip&incenti.pl
-17142
- Static Bytes
- Javier Loureiro
- derethor&derethor.net
-17143
- Georg-Hewegh-Oberschule
- Michael Hecker
- mhecker&gmx.com
-17144
- State University of New York at Stony Brook
- Sanjay Kapur
- Sanjay.Kapur&Stonybrook.edu
-17145
- Rusch Consultancy B.V.
- Guido Rusch
- postbus&rusch.nl
-17146
- UVHC
- Fareneau Florent
- florent.fareneau&univ-valenciennes.fr
-17147
- Eastern Illinois University
- J. Kahn Koontz
- kahn&eiu.edu
-17148
- iBurst Forum
- Christian John
- chrisj&arraycomm.com
-17149
- Lodestar Technology Ltd
- John Dudmesh
- john&johndudmesh.com
-17150
- simatika
- jorge E. Courett
- courett&softhome.net
-17151
- COGNICA Ltd
- Scott Wichall
- sdwichall&hotmail.com
-17152
- creamen
- mannu
- mannu&creamen.net
-17153
- University of Connecticut
- Rohit Kumar Mehta
- rohitm&engr.uconn.edu
-17154
- Kittredge Archery Co. Inc.
- Adam Pisoni
- adam&p3mammoth.com
-17155
- VoiceAge Corporation
- Jean Mayrand
- jean.mayrand&voiceage.com
-17156
- Zone Labs, Inc
- Andy Hering
- ahering&zonelabs.com
-17157
- Chengdu Runwang Tchnology Co. LTD
- liushanglin
- sichuancdliushanglin&yahoo.com.cn
-17158
- Laurasia Computing
- Michael Kennett
- snmp&laurasia.com.au
-17159
- Henri Maire SA
- Olivier METRA
- ometra&henri-maire.fr
-17160
- Lund University Hospital
- Lennart Bertenstam
- Lennart.Bertenstam&radfys.lu.se
-17161
- Covisint LLC
- John Schonmeier
- jschonme&covisint.com
-17162
- Airversal Technology Inc
- Zhou Sanqiang
- zhousq&airversal.com
-17163
- Riverbed Technology, Inc.
- John Cho
- john.cho&riverbed.com
-17164
- Callcast, Inc.
- Sarah Clatterbuck
- sclatter&callcast.com
-17165
- Advantest R&D Center, Inc.
- Clayton Conrad
- c.conrad&advantest-ard.com
-17166
- Louisiana State University and A&M College
- Emilio A. Icaza
- emilio&lsu.edu
-17167
- Daotec Ltd.
- Robert Zapfel
- robert&daotec.com
-17168
- Century 21 Mike Bowman, Inc.
- Dusty Matthews
- dusty.matthews&c21bowman.com
-17169
- Diablotin
- Yannick Cadin
- Yannick.Cadin&Diablotin.com
-17170
- Université Henri Poincaré - Nancy 1 -
- Samson Bisaro
- Samson.Bisaro&esial.uhp-nancy.fr
-17171
- Qindel
- Benito Martinez
- nito&qindel.es
-17172
- Melco International Development Ltd.
- Neil Turner
- nrt&iasiatech.net
-17173
- Squeeky Clean
- Suzie Benkoski
- akira-iana&squeekyclean.net
-17174
- Iridium Systems (Hangzhou) Limited
- Shuhua Qi
- qsh&irsys.com.cn
-17175
- shanghai letel communications Co., Ltd
- Geoffrey Gu
- guguolin&letelopto.com
-17176
- Perm State Pedagogical University
- Beloglazov Maksim
- beloglazov&pspu.ac.ru
-17177
- TIS Inc.
- Masao Kudou
- bruce&tis.co.jp
-17178
- VERA Autonoom Provinciebedrijf
- Jan Vannieuwenhuyse
- Jan.Vannieuwenhuyse&vera.be
-17179
- Diaz
- Miguel Diaz
- mdiaz&netcabo.pt
-17180
- Altibase
- Hyun Su Choi
- altibase&altibase.com
-17181
- Dantek Computer Systems, Inc.
- Dan Haanpaa
- dantekcs&charter.net
-17182
- CCC Data Oy
- Zoltan Homorodi
- zoltan.homorodi&ccc.fi
-17183
- Yang Mei Technology Co., LTD.
- Thomas Chen
- ym&yangmei.com.tw
-17184
- ProLAN
- Sergey Yuditsky
- ssy&prolan.ru
-17185
- Richemont Group
- Johann Lallemand
- johann.lallemand&richemont.com
-17186
- MEDIA LINKS Co.,LTD.
- SEIICHI KAWADA
- kawada&medialinks.co.jp
-17187
- Onaro Inc.
- Roy Alon
- info&onaro.com
-17188
- GigaClue
- David Weinrich
- dweinr1&cox.net
-17189
- Ingrafted Software Inc.
- Dave Augustus
- davea&ingraftedsoftware.com
-17190
- Fulcrum Microsystems, Inc.
- Bevan Bennett
- bbennett&fulcrummicro.com
-17191
- Universidad de La Laguna
- Javier Quijada Morales
- sistemas&ull.es
-17192
- Emprisa Networks
- Mirga Jazbutis
- mjazbutis&emprisanetworks.com
-17193
- dbc Digital Broadcast Consulting GmbH
- Sören Hellwig
- sh&dbc-broadcast.de
-17194
- Whoopy Engineering Ltd.
- Simon Carter
- hostmaster&whoopy-eng.net
-17195
- Securesoft Systems, Inc.
- Roland Cozzolino
- rcozzol&optonline.net
-17196
- CacheLogic Ltd.
- Andrew Parker
- aparker&cachelogic.com
-17197
- Relicore, Inc.
- Gilbert Benghiat
- dirdev&relicore.com
-17198
- martinskafte.dk
- Martin Skafte
- mail&martinskafte.dk
-17199
- Ministry of Fisheries - NZ
- Jay Montilla
- jay&spidernz.com
-17200
- Optus Internet Engineering
- Servers Group
- servers&staff.optusnet.com.au
-17201
- Digital Item
- Soojin Nam
- sjnam&daumcorp.com
-17202
- NEC informatec systems,ltd.
- Susumu Kajino
- kajino&nis.nec.co.jp
-17203
- Pekarek Handelsges.m.b.H
- Erich N. Pekarek
- oid.it-services&pekarek.at
-17204
- IIM CORPORATION
- Kazuki Masuda
- kmasuda&iim.co.jp
-17205
- ARPENT ENTERPRISES
- RAVINDRA JOSHI
- arpent&vsnl.net
-17206
- Open Stock Company «Oskol Electrometallurgical Kombinat»
- Sergey Bredikhin
- bredikhin&oemk.ru
-17207
- Cloverleaf Communications Inc.
- Dr. Elic Yavor
- eyavor&cloverleafcomm.com
-17208
- Fa Nea Sjöholm
- Christer Sjöholm
- hcs&astrakan.hig.se
-17209
- Strategic Systems Consultants Ltd.
- O.K.Man
- ok_man&ssc-ltd.com
-17210
- GZS Gesellschaft fuer Zahlungssysteme mbH
- Thorsten Kraft
- tk&gzs.de
-17211
- Potronics sp. z o.o.
- Janusz Sobczak
- jsobczak&potronics.com.pl
-17212
- AWETA b.v.
- Marcel van de Weert
- mvdweert&aweta.nl
-17213
- DAY-S.COM
- Laurent ROUSSANNE
- l.roussanne&day-s.com.fr
-17214
- Network Designers Ltd.
- Keith Morley
- keith&ndl.co.uk
-17215
- Institute of Linguistic Studies
- Artem V. Andreev
- artem&iling.nw.ru
-17216
- Triplanet Partners LLC
- Hazem Bennaceur
- hbverdian&hotmail.com
-17217
- University of Richmond
- Coates Carter
- ccarter&richmond.edu
-17218
- Union Internationale des Chemins de Fer
- Mr Bru
- bru&uic.asso.fr
-17219
- NsTEL Inc.
- Kim Tae Hyung
- thkimj&lycos.co.kr
-17220
- eBenX, Inc.
- Mike Stinebaugh
- mike.stinebaugh&ebenx.com
-17221
- CHBE UBC
- Darcy Westfall
- darcyw.spam&chml.ubc.ca
-17222
- Sierhuis Digitale Diensten
- Pim Sierhuis
- iana&sierhuis.com
-17223
- Cena Salvatore
- Cena Salvatore
- cena&cenas.it
-17224
- Newbury Networks
- Anthony Sciola
- acs&newburynetworks.com
-17225
- ispi of Lincoln, Inc
- Monte Ohrt
- noc&ispi.net
-17226
- BC5 Technologies Inc.
- Bruno Couillard
- bruno&bc5tech.com
-17227
- DMP Initiatives
- Yannick Cadin
- Yannick.Cadin&Initiatives.fr
-17228
- Kommando
- Yannick Cadin
- Yannick.Cadin&Kommando.com
-17229
- Miracle Group, Ltd.
- Michal Meloun
- meloun&miracle.cz
-17230
- UniqMinds Ltd.
- Juha Lindström
- iana.contact&uniqminds.com
-17231
- Otto UK
- Paul Zajicek
- paul.zajicek&otto-uk.com
-17232
- PANNOCOM Ltd.
- Attila Tóth
- info&pannocom.hu
-17233
- ICODEX Software AG
- Ralph Ortner
- ralph.ortner&icodex.com
-17234
- ET Enterprise Technologies srl
- Giancarlo Castorina
- Giancarlo.Castorina&enterprisetechnologies.it
-17235
- 2e Systems GmbH
- Saida Zaagoug
- saida.zaagoug&2e-systems.com
-17236
- Shout Telecoms Limited
- David Thorne
- dthorne&shout-telecoms.com
-17237
- S.P.E.Sistemi e Progetti Elettronici s.a.s. di P.Prandini & C
- Paolo Prandini
- prandini&spe.net
-17238
- NsTEL Inc.
- Kim Tae Hyung
- thkimj&lycos.co.kr
-17239
- Plan B Email Services, LLC
- Chris Bellomy
- chris&planbemail.com
-17240
- Spread Teleinformática Ltda
- Eduardo Bortoluzzi Junior
- eduardob&spread.com.br
-17241
- Federal Trade Commission
- Brooks Vaughn
- bvaughn&ftc.gov
-17242
- Mission Vi
- Jason Calabrese
- jasonc&missionvi.com
-17243
- World Access Canada Inc.
- Daniel Silivestru
- dsilivestru&worldaccess.com
-17244
- Briteace Enterprise Pte Ltd
- K.C. Toh
- 67639888&starhub.net.sg
-17245
- Genentech, Inc.
- Scooter Morris
- scooter&gene.com
-17246
- FreeSNMP
- Robert Story
- rstory&freesnmp.com
-17247
- SBC Internet Services
- Chuck M. Donaldson
- cd1753&sbc.com
-17248
- Gemstone Communications, Inc
- Sugl Wu
- sugl&gemstone-com.com
-17249
- VAN Company Ltd.
- Sergey Perepechayev
- xxxcore&mail.ru
-17250
- Yore Elektronik Yayimcilik A.S.
- Özhan KARAMAN
- ozhan&yore.com.tr
-17251
- WeRMSPoWKe
- Brendan Alderslade
- brendan.alderslade&wermspowke.net
-17252
- MS Global Consulting GmbH
- Moheb Shafik
- info&ms-global-consulting.de
-17253
- Arcada Polytechnic
- Harald Hannelius
- hostmaster+iana&arcada.fi
-17254
- Goad.US
- Ed Goad
- ed&goad.us
-17255
- Vidyatel Ltd.
- Bentzy Sagiv
- bentzy&vidyatel.com
-17256
- CL-NET s.r.o.
- Ondrej Pejsa
- noc&clnet.cz
-17257
- Initial Security Limited
- James Gilbert
- james.gilbert&initial-security.co.uk
-17258
- DRQ Sp. z o.o.
- DRQ Sp. z o.o.
- office&drq.pl
-17259
- Manex
- Vincent Keunen
- vk&manex.be
-17260
- Numinatek Co.
- Houman Ghaemi
- houman&houman.ca
-17261
- RJWare, Inc
- Rich Johnson
- rich&rjware.com
-17262
- Devonshire Group, Inc
- Tim Combs
- timc&ygtechnologies.com
-17263
- Alpes Team
- BRIERE Sebastien
- sebastien.briere&ac-strasbourg.fr
-17264
- Mount Clemens General Hospital
- Chris Ryan
- cryan&mcgh.org
-17265
- Escape OE
- Christos PISTOFIDIS
- chrispis&escape.gr
-17266
- California Internet Inc
- Ken Anderson
- dnsadmin&pacific.net
-17267
- Hitachi Computer Products (Europe) S.A.S
- Jean-Paul FANTON
- jean-paul.fanton&hicef.hitachi-eu.com
-17268
- ABB Process Analytics
- Bill Lenherr
- bill.lenherr&us.abb.com
-17269
- Hansa JSC
- Dmitry Liakh
- dliakh&hansa.ua
-17270
- Comcast Corporation
- Aaron Settles
- aaron_settles&cable.comcast.com
-17271
- Sunshine Village Ski & Snowboard Resort
- Eric Merth
- emerth&skibanff.com
-17272
- akashic Inc.
- Hirofumi Takada
- takada&akashic.co.jp
-17273
- The Rabbithole Org.
- Shaun Brady
- shaun&therabbithole.org
-17274
- Nevis Networks Inc.
- Ravi Dara
- ravi.dara&nevisnetworks.com
-17275
- MicroBit
- Bertie Kunz
- tima&cs.co.za
-17276
- Colegio de Registradores de la Propiedad y Mercantiles de España
- Emilio Martinez
- emilio&corpme.es
-17277
- TUI Nederland N.V.
- W. Delamore
- unix-groep&tui.nl
-17278
- IZB-Soft
- Florian Schneider
- florian.schneider&izb-soft.de
-17279
- Stowe Holdings (Pty) Ltd
- Halford Dace
- hal&stowe.co.za
-17280
- Fadesa Inmobiliaria
- José M. Fandiño
- iana&fadesa.es
-17281
- Luther College
- Chris Stuckman
- stuckmch&luther.edu
-17282
- Abhai Inc.
- Rajeev Atluri
- rajeev&digitaldrifters.com
-17283
- YACME S.r.l.
- Luca Bolcioni
- Luca.Bolcioni&yacme.com
-17284
- UNICOM UNIversal computer COMmunication, spol. s r.o.
- Radimir Rexa
- unicom&e-unicom.sk
-17285
- DOBS
- W.J Dantuma
- willem.dantuma&dobs.nl
-17286
- Steuerungs- & Netzwerktechnik
- Uwe Beutin
- uwe&imbrium.de
-17287
- Pacific Life
- David Hwang
- dhwang&pacificlife.com
-17288
- VicSuper
- Charles Edouard
- charles.edouard&vicsuper.com.au
-17289
- LinuxHQ
- D. Schueler
- wob&bermuda.ch
-17290
- Key Digital Solutions Ltd.
- Mihai Giurgeanu
- mgiurg&xnet.ro
-17291
- Mithra Biodindustry Co., Ltd
- Mike Cu
- ccu123&mail.mithra.com.tw
-17292
- NXN Software AG
- Mr. Jochen Pielage
- jpielage&nxn-software.com
-17293
- DavidRLee
- David Lee
- dlee&novell.com
-17294
- Agile Teamwork, Inc.
- Earl Marwil
- EMarwil&AgileTeamwork.com
-17295
- WestNoble
- Ahmed Abrar Bhalli
- bhalli&westnoble.com
-17296
- Fourth Corner Systems
- Scott Courtney
- courtney&4th.com
-17297
- Sine Nomine Associates
- Scott Courtney
- scourtney&sinenomine.net
-17298
- BlueWater Technologies Inc
- John Curtis
- BlueWater&Dock.Net
-17299
- vMoksha Technologies Private Limited
- Sanjeev Gopal
- sanjeev&vmoksha.com
-17300
- Axxius b.v.
- M.J. Beelen
- marco.beelen&axxius.nl
-17301
- AllServe Automatisering B.V.
- Sevaz
- Sevaz&AllServe.nl
-17302
- Iconology Ltd
- Stephen Warman
- steve.warman&iconology.co.uk
-17303
- Paramount Pictures
- Gregory Jones
- gregory_jones&paramount.com
-17304
- Layer 7 Technologies Inc.
- Alex Cruise
- acruise&layer7-tech.com
-17305
- Aeras Networks
- John Wiese
- jwiese&aerasnetworks.com
-17306
- Armenian e-Science Foundation (ArmeSFo)
- Ara A. Grigoryan
- aagrigor&jerewan1.yerphi.am
-17307
- Tribunal Regional do Trabalho da 15ª Região
- Bruno Stella
- brunostella&trt15.gov.br
-17308
- Digimedworx
- Arya Bagherpour
- aryaba&hotmail.com
-17309
- Saudi Arabian Monetary Agency (SAMA)
- Yagoub Al-Sulaiman
- y_suliman&sama-ksa.org
-17310
- Vanquish International Ltd.
- xiaoli
- mpswitch&mail.maipu.com
-17311
- Myllykoski Corp.
- Vesa Erolainen
- vesa.erolainen&myllykoski.com
-17312
- Shizuoka System Technology
- Kazuhiko Suyama
- ssuuyyaammaa&po2.across.or.jp
-17313
- Ratiodata GmbH
- Martin Nuernberger
- martin.nuernberger&ratiodata.de
-17314
- Soltim
- David ROUAUD
- david.rouaud&soltim.com
-17315
- EtherAddress.com
- Wilson Mattos
- wmattos&etheraddress.com
-17316
- Peoria Christian School
- James Anderton
- janderton&peoriachristian.org
-17317
- MassiveEgo
- Philippe Hebert
- philippe&massiveego.com
-17318
- Media5 Corporation (formerly 'M5T Centre d'Excellence en Telecom Inc.')
- Christian Beaulieu
- cbeaulieu&media5corp.com
-17319
- JC Computing
- James Anderton
- jc_computing&hotmail.com
-17320
- J&M Crowther Ltd.
- Chris Crowther
- chrisc&jm-crowther.co.uk
-17321
- Calpine
- Christopher Donohoe
- cdonohoe&calpine.com
-17322
- SOFTLAND
- Jaroslaw Kruza
- jarek&softland.net.pl
-17323
- Datatekniska Byrån
- Joakim Ahlén
- joakim.ahlen&mediaprint.se
-17324
- YDI Wireless Inc.
- Gino Chartre
- gchartre&ydi.com
-17325
- Babastik
- Brian Adams
- brian&babastik.com
-17326
- AC Camerfirma, S.A.
- Ramiro Muñoz
- ramirom&camerfirma.com
-17327
- City of Northglenn
- Daniel Schmick
- dschmick&northglenn.org
-17328
- Imenta Sweden AB
- Christopher Ekstrom
- christopher.ekstrom&imenta.com
-17329
- School of Information Technology, Universiti Utara Malaysia
- Farkhana Bawazeer
- farkhana_bawazeer&yahoo.com
-17330
- Zetta Systems, Inc.
- John Guthrie
- jguthrie&zettasystems.com
-17331
- 30San Information System Co.,Ltd.
- Xianghui Zhu
- zhuxh&30san.com
-17332
- Pete Attkins Engineering Ltd
- Pete Attkins
- pete2.attkins&ntlworld.com
-17333
- Critical Networks, Inc.
- Dick Downen
- tom&criticalnetworks.com
-17334
- DN-Solutions
- Alexander Mueller
- hosting&dn-solutions.net
-17335
- UPM-Kymmene Corporation
- Jouko Kiviranta
- jouko.kiviranta&upm-kymmene.com
-17336
- Bank of Russia
- Andrey Shiryaev
- ShiryaevA&gis.cbr.ru
-17337
- Solace Systems, Inc.
- Rob Steen
- rob.steen&solacesystems.com
-17338
- IBS Technology & Services
- Jan Maes
- jan.maes&ibsts.be
-17339
- SAFA GALENICA, S.A.
- Manuel Ruiz
- mruiz&safa.es
-17340
- Microtest Ltd
- Roger Jane
- roger.jane&microtest.co.uk
-17341
- Fonner Consulting
- David Fonner
- dfonner&charter.net
-17342
- Danske Gymnasieelevers Sammenslutning
- Ask Holme
- ask&dgsnet.dk
-17343
- Edula
- Scott Seong
- scott&edula.com
-17344
- OFSET
- Hilaire Fernandes
- hilaire&ofset.org
-17345
- fusionOne, Inc.
- Serge Melnichenko
- smelnichenko&fusionone.com
-17346
- AlienForceIT
- Andrzej Pliszka
- pliszka&verizon.net
-17347
- Hilti Corporation
- David Taylor (FIBM Dept.)
- David.Taylor&hilti.com
-17348
- USTC E-Business Technology Company
- Wang Guizhu
- gzwang&netkiss.com.cn
-17349
- DELTA N.V.
- Phuong Banh
- pbanh&delta.nl
-17350
- OnRelay Ltd
- Thomas Muller
- thomas.muller&onrelay.com
-17351
- Simmons College
- David Bruce
- david.bruce&simmons.edu
-17352
- FrancisScott Communications LLC
- Scott Lampert
- scott&francisscott.com
-17353
- VisSim AS
- Max Semenov
- maxim.semenov&vissim.no
-17354
- Zone Trading Partners
- Magesh Rangaramanujam
- magesh&zonetrading.com
-17355
- Cirrus Multimedia Limited
- Mo McKinlay
- hostmaster&cirrus-multimedia.ltd.uk
-17356
- RiskMetrics Group Inc.
- Jason Madden
- jason.madden&riskmetrics.com
-17357
- Derks.IT
- Jeroen Derks
- jeroen&derks.it
-17358
- Fulford Consulting Ltd
- Clifford W Fulford
- fulford&fulford.net
-17359
- net9
- Jiang, Bo
- sanshaoj&yahoo.com.cn
-17360
- T&J Computer Systems
- Tracy or Jessica Smith
- grvdigger864&aol.com
-17361
- Infoscience Corporation
- Norio Miya
- info&logstorage.com
-17362
- Asia Pacific Bioinformatics Network (APBioNet)
- Ong Guan Sin
- guansin&bic.nus.edu.sg
-17363
- SANYO DDP-BU
- Katsuyoshi Takahashi
- taka013561&dt.sanyo.co.jp
-17364
- SITELI
- BETHENOD Georges
- gbethenod&siteli.fr
-17365
- SISSA - ISAS Scuola Internazionale Superiore di Studi Avanzati
- Piero Calucci
- calucci&sissa.it
-17366
- Torbay Council
- Tom Brough
- Tom.Brough&Torbay.Gov.Uk
-17367
- Grep AS
- Roy Michelsen
- roy&grep.no
-17368
- PIFAUT
- Rémi PIFAUT
- oid-iana&pifaut.com
-17369
- sustainable development networking programme
- Muhammad Ashraf
- mm_ashraf&yahoo.com
-17370
- OnRelay Ltd
- Thomas Muller
- thomas.muller&onrelay.com
-17371
- 4DotNet oHG
- Christoph Müller
- cmueller&4dot.net
-17372
- iFoni Cellular Services
- Rudolph van Graan
- snmp-admin&ifoni.com
-17373
- IT Watchdogs, Inc.
- Nick Tornow
- ntornow&sheergeniussoftware.com
-17374
- Clearfield Knowledge Solutions Ltd.
- Ross Peeters
- oid.admin&k.co.nz
-17375
- Image Analysis,Inc.
- Judd E. Reed
- reed&Image-Analysis.com
-17376
- Intelcom San Marino S.p.A.
- Andrea Gabellini
- agabellini&intelcom.sm
-17377
- aesys spa
- Enzo Arlati
- enzo.arlati&aesys.it
-17378
- Interlink Software Services Ltd
- Stephen D'Arcy
- sdarcy&int-link.com
-17379
- University of Applied Sciences Wolfenbuettel
- Thorsten Ludewig
- th&fh-wolfenbuettel.de
-17380
- Spazio ZeroUno SpA
- Luca Russano
- luca.russano&spaziozerouno.it
-17381
- The Kinkaid School
- Denise Zasowski
- denise.zasowski&kinkaid.org
-17382
- VAI bv
- Albert Hooyer
- albert.hooyer&vai.nl
-17383
- EASY SOFTWARE
- Juergen Froehlich
- standardsmaster&easy.de
-17384
- Contemporary Control Systems, Inc.
- Bennet Levine
- blevine&ccontrols.com
-17385
- Appriss, Inc
- Donavan Pantke
- dpantke&appriss.com
-17386
- iCanSP, inc
- Manoj Thopcherneni
- Manoj.Thopcherneni&icansp.com
-17387
- Frontier Financial
- Jason Balicki
- kodak&frontierhomemortgage.com
-17388
- Allen Systems Group INC
- Bobby Brown
- bbrown&asg.com
-17389
- Core NAP, L.P.
- Matt Knopp
- matt&corenap.com
-17390
- Family Video
- Andrew Baker
- andy&famvid.com
-17391
- NOSE Applied Intelligence AG
- Andreas Weder
- andreas.weder&nose.ch
-17392
- Abucco Technologies Inc.
- Michal Stit
- info&abucco.com
-17393
- Allen Systems Group INC
- Bobby Brown
- bbrown&asg.com
-17394
- BRAINBOW EDV-Beratung GmbH
- Volker Funke
- Volker.Funke&brainbow.de
-17395
- Beijing Founder Electronic Co.,Ltd.
- Dai Lin
- dailin&founder.com.cn
-17396
- Sapura Advance Systems Sdn Bhd
- Dinesh
- dinesh&sasoft.com.my
-17397
- BVE des Kantons Bern
- Thomas Kappeler
- thomas.kappeler&bve.be.ch
-17398
- HBhard, spol. s.r.o.
- Jiri Balcar
- hbhard&hbhard.cz
-17399
- AKiT Ltd.
- Boris Jordanov
- bjordanov&akit.biz
-17400
- tourisline AG
- Frank Brehm
- brehm&tourisline.com
-17401
- Lands' End, Inc.
- Jordan Anderson
- jordan.anderson&landsend.com
-17402
- Sevis Systems, Inc.
- Mike Ashdown
- mike.ashdown&sevis.com
-17403
- Oklahoma Department of Career and Technology Education
- Matthew Hubbard
- mhubb&okcareertech.org
-17404
- WebundCo GmbH & CoKG
- Karl Macku
- karl.macku&webundco.com
-17405
- Telecommunications Industry Association TR8dot5
- Jeff Anderson
- Jeff.S.Anderson&Motorola.com
-17406
- HITS
- Daniel Himler
- dan&hits.at
-17407
- OmegaWare Systems Ltd.
- Edward Rudd
- eddie&omegaware.com
-17408
- HICOM COMUNICAÇÃO INTEGRADA LTDA.
- SERGIO TREIGER
- comercial&hi.com.br
-17409
- National Standardization Committee of Radio & Television
- Chen Zhiguo
- chenzg2000&sina.com
-17410
- SOPRA GROUP
- Hervé BOUVET
- hcbouvet&sopragroup.com
-17411
- newsky software
- zhanghui
- zhanghui&newsky.com.cn
-17412
- GateConnect Technologies GmbH
- Halil Goektepe
- h.goektepe&gate-connect.com
-17413
- Ministerio del Interior - España
- Francisco Romero
- sistemas&guzman.mir.es
-17414
- vzw CDS
- Jan Vanhaecht
- cdsleuven&yahoo.com
-17415
- PUCRS
- Luiz Alfredo Baggiotto
- cpd_unix&pucrs.br
-17416
- Root IT
- Jeroen Vriesman
- linuxificator&gmail.com
-17417
- Portiva Corporation
- Jason Smith
- jsmith&portiva.com
-17418
- Mahanaxar Networks
- Stephen Butler
- oid&mahanaxar.net
-17419
- Lincoln Investment Planning, Inc
- Steve Konde
- skonde&lincoln-remove-investment.com
-17420
- DigiPower Manufacturing Inc.
- Harvey Hsieh
- harveyhsieh&digipower.com.tw
-17421
- Hôpital de la ville d'Esch-sur-Alzette
- Robert Klensch
- ldap.contact&hvea.healthnet.lu
-17422
- Real Enterprise Solutions Development B.V.
- Bob Janssen
- bob&res.nl
-17423
- Multidata Gesellschaft für Datentechnik und Informatik mbH
- Wilfried Dersch
- wd&multidata.de
-17424
- Chart Pilot Ltd.
- Andrey Nepomnyaschih
- nas&chartpilot.ru
-17425
- ilink Kommunikationssysteme GmbH
- Lars Henssen
- lars.henssen&ilink.de
-17426
- Sega.com, Inc.
- Eric Fehr
- eric.fehr&sega.com
-17427
- ABYZ Informática LTDA
- Andreas Hansen
- andreash&abyz.com.br
-17428
- WebDesign BK
- Rolf Luettecke
- it&rolf-luettecke.de
-17429
- Michael Telecom AG
- Rolf Luettecke
- rolf.luettecke&michael-telecom.de
-17430
- TCL NETWORK EQUIPMENT (SHENZEHN) CO., LTD.
- shijie cheng
- chengsj&tcl.com
-17431
- shenzhen SDG Information Co.,Ltd. STEC Telecom Branch
- TENG DA ZHI
- dzteng&stec.com.cn
-17432
- Georgia Perimeter College
- Bill Woodall
- ldapadmin&gpc.edu
-17433
- pieas educational institute
- shahid
- shahidnazir75&yahoo.com
-17434
- THERALYS
- Emmanuel Olart
- eolart&theralys.com
-17435
- BEAC
- NGON Alain Simplice
- ngon&beac.int
-17436
- Worlight International
- Christian P. Koch
- ckoch&worlight.com
-17437
- Insurance Corporation of British Columbia
- Michael Cameron
- michael.cameron&icbc.com
-17438
- Novannet, LLC
- William J. Kammerer
- wkammerer&novannet.com
-17439
- Panasonic Avionics Corporation (formerly 'Matsushita Avionics Systems Corporation')
- Louie Iturzaeta
- Louie.Iturzaeta&panasonic.aero
-17440
- Omnipod, Inc.
- Jerry B. Altzman
- ops&omnipod.com
-17441
- Unholy.org
- Marcelo Falero
- mfalero&uruhost.com.uy
-17442
- Iter8 Inc.
- Andre B
- oid-spamtrap&iter8.com
-17443
- Gerd Koslowski
- Gerd Koslowski
- gerd&itechnik.de
-17444
- wrevak.net
- William Revak
- wrevak&wrevak.net
-17445
- FEAS v.o.f.
- D.M.J.C. Gehéniau
- info&feas.net
-17446
- Stefan Drees
- Stefan Drees
- sdrees&ieee.org
-17447
- STATE MACHINE
- Ray Childs
- ray&statemachine.net
-17448
- Fabrice Co.
- Manager
- webmaster&fabrice.co.jp
-17449
- KLS Air Express Inc.
- Tim Schafer
- iana&klsairexpress.com
-17450
- WFW.org
- Emeke - A - Animadu
- Admin&wfw.org , EAnimadu&hotmail.com
-17451
- Unassigned
- Returned 19-October-05
- ---none---
-17452
- Visy Industries Holdings Pty Ltd
- C. Charles Winchcombe
- quinch&systems.visy.com.au
-17453
- Billion Electric Co., Ltd.
- Felix Cheng
- felix&billion.com.tw
-17454
- Integuru Inc.
- Jeff Shi
- integuru&aol.com
-17455
- K-BEST TECHNOLOGY INC.
- Andy Chang
- andy&kbest.com.tw
-17456
- Jigsaw Systems
- Ken Vance
- ken.vance&jigsaw.uklinux.net
-17457
- UTi Worldwide
- Leon Dunn
- EITPrivateEnterpriseNumber&go2uti.com
-17458
- Connect Internet Solutions PTY LTD
- Harry Raaymakers
- harryr&connect.com.au
-17459
- Mibtree Ltd
- RJ Mellor
- info&mibtree.com
-17460
- Revelant Technologies
- Jesse Clark
- jesse.clark&revelanttech.com
-17461
- Pryde Systems and Software
- Michael Johnston
- qp123&mail.com
-17462
- Akamai Technologies, Inc.
- Erik Nygren
- iana-poc&akamai.com
-17463
- Demarc Security, Inc.
- Marc Wilson
- mwilson&demarc.com
-17464
- O1 Communications
- Casey Lee
- clee&o1.com
-17465
- TruSystems, Inc
- Ron Pashby
- Ron&TruSystemsInc.com
-17466
- Wooju Communications CO.,LTD.
- JayeulKoo
- solobird&woojucom.com
-17467
- Gamer's Valhalla Pty. Ltd.
- Arron Hollis
- arron&gamersvalhalla.com.au
-17468
- ICONAG AG
- Stefan Schorch
- stefan.schorch&iconag.com
-17469
- BioWisdom Ltd.
- Simon Beaumont
- simon.beaumont&biowisdom.com
-17470
- Strålfors AB
- Kim Paulsson
- kim.paulsson&stralfors.se
-17471
- Actona Technologies, Inc
- Daniel Kaminsky
- daniel&actona.com
-17472
- Tetraplex Ltd.
- Simon Lebrun
- lebruns&tetraplex.com
-17473
- Telluce Corporation
- No-Wook, Kee
- luscent&empal.com
-17474
- CRM-Informatik GmbH
- Pascal Rudin
- pascal.rudin&crm-informatik.ch
-17475
- Genetec Information Systems
- Christian Morin
- cmorin&genetec.com
-17476
- V-ONE Corporation
- Chris Brook
- cbrook&v-one.com
-17477
- Trailblazer Systems Inc.
- Jason Cai
- jcai&trailblazersystems.com
-17478
- Nexadesic, Inc.
- Sean Chittenden
- iana&nexadesic.com
-17479
- One Unified
- Ray Burkholder
- ray&oneunified.net
-17480
- Choice Communications
- Ray Burkholder
- ray&viaccess.net
-17481
- Logic Fusion
- William Wong
- bwong&voicenet.com
-17482
- Ogmios.ca
- Cameron Charlebois
- cameron&ogmios.ca
-17483
- Hong Kong School Net Ltd.
- Tony Chan
- valjean&school.net.hk
-17484
- Adyoron Intelligent Systems Ltd.
- Merav Ben-David
- meravb&adyoron.com
-17485
- HierWeb
- Stephen Cooke
- hierweb&earthlink.net
-17486
- EDS Deutschland GmbH
- Markus Wenzel
- Markus.Wenzel&eds.com
-17487
- Manchester Airport
- Pete Burgess
- peter.burgess&manairport.co.uk
-17488
- GENERAL TOUCH TECHNOLOGY CO.,LTD
- Alex Lee
- alex&generaltouch.com
-17489
- Curtis Consulting LLC
- Charles Curtis
- ctcurtis&curtisconsultingllc.com
-17490
- DM Trucking
- David Mendes
- mejeda1217&aol.com
-17491
- Barix AG
- Johannes Rietschel
- webdom&barix.com
-17492
- Northco.net
- Zachary McGibbon
- mzac&northco.net
-17493
- Halliburton Company
- Thang Lu
- thang.lu&halliburton.com
-17494
- Matthias Rath, Inc.
- Robert Coleman
- hostmaster&drrath.com
-17495
- Gardel Software
- Jim Garvin
- jgarvin&gardelsoftware.com
-17496
- Canadian Broadcasting Corporation
- Ben Hall
- ben_hall&cbc.ca
-17497
- Tallinn School No. 21
- Ivari Horm
- admin&21k.ee
-17498
- Kommunale Datenverarbeitung Oldenburg
- Ingo Luers
- luers&kdo.de
-17499
- Packetsurge
- Mr Joel Fox
- joel.fox&packetsurge.it
-17500
- Georgia Gwinnett College
- Brian MacLeod
- bmacleod&ggc.usg.edu
-17501
- Drake University
- Chris Mielke
- chris.mielke&drake.edu
-17502
- Newfield Automation
- Julian Meacham
- julian.meacham&newfieldautomation.com
-17503
- TechForge Software
- Doug Davis
- dougied&attcanada.ca
-17504
- Security Wizard
- Heejune Kim
- drost&securewiz.net
-17505
- Wamin Optocomm Mfg.corporation
- Huaimin.Huang
- brian&mail.wamin.com.tw
-17506
- Eulerian Technologies, Sarl
- Guillaume FOUGNIES
- guillaume&eulerian.com
-17507
- omnidata
- EL AMMARIA Mohammed
- melammaria&omnidata.co.ma
-17508
- Sotrange Transportes Rodoviários Ltda.
- Júnior
- junior&sotrange.com.br
-17509
- Versatel Networks Inc.
- Daniel Biage
- dbiage&versatelnetworks.com
-17510
- GoldenHope
- GH
- zhongyu&mail.goldenhope.com.cn
-17511
- XtremeX Corporation
- Darnel Hunter
- support&xtremex.com
-17512
- Flinders University
- Paul Gardner-Stephen
- paul&infoeng.flinders.edu.au
-17513
- RVA
- Daniel De Baerdemaeker
- ddebaerd&rva.fgov.be
-17514
- FDF, Frivilligt Drenge- og Pige-Forbund
- Thor A. Lange
- lange&FDF.dk
-17515
- BNSF Railway Inc.
- Greg Britz
- gregory.britz&bnsf.com
-17516
- Nighthawk Radiology Services
- Jordan K
- ldap&jnet.eu.org
-17517
- Clementi Software
- Steve Clementi
- sclementi2&wi.rr.com
-17518
- Comba Telecom System(Guang Zhou) Ltd.
- Zhong Han,Su
- su_zh&tom.com
-17519
- InteliTrac, Inc.
- Tianlong Chen
- tchen&intelitrac.com
-17520
- Easton Technologies Inc.
- Miroslav Krajca
- miroslav&erols.com
-17521
- RealEast Networks
- Ildar Gabdulline
- ildar&realeastnetworks.com
-17522
- Ozitem
- Erik Ableson
- erik.ableson&ozitem.com
-17523
- FiberLan GmbH
- Norbert R. Schmidt
- n.schmidt&fiberlan.de
-17524
- Ferrari electroni AG
- Gido Kuechler
- kuechler&ferrari-electronic.de
-17525
- Amsterdam Internet Exchange B.V.
- AMS-IX NOC
- noc&ams-ix.net
-17526
- symentis GmbH
- Schema Administrator
- info&symentis.com
-17527
- FORMWARE GmbH
- Christian Lammel
- lammel&formware.de
-17528
- KMS Internet Solution Providers Ltd
- Hosted Services Team
- serveradmin&kms.co.uk
-17529
- FeldTech
- Peter Feldbaumer
- tech&feldtech.com
-17530
- Chernigov State Technological University
- Andrey Khiznyak
- alf&cs.stu.cn.ua
-17531
- Henrico County Public Schools
- Christopher Nielsen
- csnielsen&henrico.k12.va.us
-17532
- BSI Informatica Ltda
- Roberto Mamoro Hagihara
- hagihara&bsi.com.br
-17533
- Association KAZAR
- Xavier Beaudouin
- kiwi&kazar.net
-17534
- Optelecom Inc.
- Anunoy Ghosh
- aghosh&optelecom.com
-17535
- EGT Inc.
- Chris Gordon
- chris&egtinc.com
-17536
- Telenity, Inc.
- Ilhan Bagoren
- ilhanb&telenity.com
-17537
- Florence Public School District One
- William Freeman
- wfreeman&fsd1.org
-17538
- Village Grille Family Diner
- Richard Eric McCoy
- rick_mccoy500&yahoo.com
-17539
- MXC Software
- Mike Chen
- mchen&mxcsoft.com
-17540
- TB-Solutions Advanced Technologies S.L.
- Santiago Navarro
- navarros&tb-solutions.com
-17541
- Lamda Inc.
- Chatziandreoglou Christos
- lamda&xan.forthnet.gr
-17542
- TFS Technology Inc
- Hakan Westin
- hakan.westin&tfstech.com
-17543
- ADUNEO
- Emmanuel KURTH
- emmanuel.kurth&aduneo.com
-17544
- BSP Partners GmbH
- Michael Keller
- Michael.keller&bspartners.de
-17545
- Wirefree Innovision pvt ltd
- Viswaranjan Maligi
- ranjan&bplitl.com
-17546
- Magno Comunicacoes Ltda.
- Tiago Ribeiro
- tiagor&mac.com
-17547
- Centre for Good Governance
- NBN Ramesh
- svln&cgg.gov.in
-17548
- Air2Web, Inc.
- Jonathan Newton
- jnewton&air2web.com
-17549
- LogicLibrary Inc.
- Mark Osteraas
- ops&logiclibrary.com
-17550
- True Blade Systems, Inc.
- Eric V. Smith
- postmaster&trueblade.com
-17551
- Kmart Corporation
- Debra Bald
- ewts&kmart.com
-17552
- NKI/AvL
- DA Technisch Beheer
- da.tb.users&nki.nl
-17553
- Telefonica Data Colombia S.A.
- Rodrigo Carrillo Vásquez.
- rodrigo.carrillo&telefonica.com.co
-17554
- PODi - the Digital Printing initiative
- Dave deBronkart
- DeveloperSupport&podi.org
-17555
- Webster University
- Webster University Network Operations
- noc&webster.edu
-17556
- MAXINA GmbH
- Jordan Hrycaj
- jordan&maxina.de
-17557
- Tokyo Woman's Christian University
- TANAKA Satoshi
- tanaka&twcu.ac.jp
-17558
- Moveo Systemy Teleinformatyczne
- Marek Gutkowski
- iana&moveo.pl
-17559
- The Art Institute of Chicago
- Raphael Jaffey
- rjaffey&artic.edu
-17560
- NETFORYOU CO.,LTD.
- Sung Il, Hong
- sihong&nforyou.com
-17561
- CLink
- Lei Yang
- coolinside&vip.sina.com
-17562
- Expect Technology
- Rajabhau Potbhare
- rajabhau_mp&hotmail.com
-17563
- ENCODE SA
- D Petropoulos
- d.petropoulos&encode-sec.com
-17564
- www.portocervo.cc
- fabrizio scardovi
- fabrizio_scardoviz&hotmail.com
-17565
- Rural Servicios Informáticos S. C.
- Andrés Hernández Romero
- andres_hernandez_rsi&cajarural.com
-17566
- EFG EUROBANK ERGASIAS A.E.
- Raptopoulos Dimitrios
- draptopoulos&eurobank.gr
-17567
- Certimail SA
- Jerome DECOURBE
- jerome.decourbe&francetelecom.com
-17568
- SLAT SA
- Stephane BOCH
- stephane.boch&slat.fr
-17569
- Schranzhofer DIAS
- Schranzhofer Andreas
- dias&schranzhofer.net
-17570
- IFS audiovisuals
- Bjorn Padding
- ldapmaster&ifsaudiovisueel.nl
-17571
- Glensound Electronics Ltd.
- Paul Grant
- paul&glensound.co.uk
-17572
- Mainframe Oy
- Leo Erkkil
- leo.erkkila&mainframe.fi
-17573
- Secretaria das Finanças do Estado da Paraíba
- Adrivagner Dantas
- adantas&sefin.pb.gov.br
-17574
- Oxford Microsystems
- Kevin Short
- kshort&oxmicro.com
-17575
- Lebenshilfe Niederoesterreich
- Hans-Peter Bernhard
- h.p.bernhard&ieee.org
-17576
- mahalingam & co.
- Ragho Mahalingam
- ragho&mahalingam.com
-17577
- Ralf Bisges Informationstechnik
- Ralf Bisges
- R.Bisges&T-Online.de
-17578
- Berlitz International, Inc.
- Mr. Sean L. Power
- sean.power&berlitz.com
-17579
- Groove Media
- Carlos Chaparro
- carlos.chaparro&groove.com.co
-17580
- Telefonica Data Colombia S.A.
- Rodrigo Carrillo Vásquez.
- rodrigo.carrillo&telefonica.com.co
-17581
- Hofmann Software Engineering International
- Kai Hofmann
- hofmann&hofmann-int.de
-17582
- Loran Technologie
- Network Admin
- administrator&lorantech.com
-17583
- Information Technologies Australia Pty Ltd
- Simon Uren
- simon&itaus.com.au
-17584
- United Network Communication Corp.
- Qi Juanjuan
- qijj&unc.com.cn
-17585
- Compusys
- High Performance Computing
- hpc&compusys.co.uk
-17586
- BANDAI NETWORKS CO., LTD.
- Yoichi Nakatake
- nakatake&net.bandai.co.jp
-17587
- Laserbit Communications Corporation
- Bonyhadi Daniel
- bdaniel&laserbitcommunications.com
-17588
- GLOBAL ELECTRICITY CO., LTD.
- Seung Ho, Kim
- global76&kornet.net
-17589
- AMEC SPIE Communications
- Gilles Grangier
- g.grangier&amecspie.com
-17590
- Orbis Terrarum Networks
- Robin Johnson
- robbat2&orbis-terrarum.net
-17591
- The Defender Association
- Nathan Sandver
- nathan&defender.org
-17592
- Javacise Software
- Jeff Rogers
- jrogers&javacise.com
-17593
- eath Co.,Ltd.
- KIKUCHI Kousuke
- kousuke&eath.co.jp
-17594
- Simitel S. de R.L. de C.V.
- Serge Kruppa
- serge.kruppa&simitel.com
-17595
- SEU
- WuXiaoBin
- wxb&seu.edu.cn
-17596
- DigiOnline GmbH
- Thomas Hebinck
- thomas.hebinck&digionline.de
-17597
- IntraData BV
- Roel de Regt
- regt&intradata.nl
-17598
- Jouve SI
- Loïc Duruel
- lduruel&rennes.jouve.fr
-17599
- Northern Alberta Institute of Technology
- Daryl Allenby
- daryla&nait.ab.ca
-17600
- CHUQ
- Yvan Fournier
- yvan.fournier&chuq.qc.ca
-17601
- Group One Trading, LP
- Alex Klein
- alex.klein&group1.com
-17602
- Midnight Linux
- James O'Kane
- jo2y&midnightlinux.com
-17603
- surespeed
- Michael Van Aken
- actionzero&usa.com
-17604
- ScySoft Multimedia
- Sebastian Mergelmeyer
- techsupport&scysoft.de
-17605
- Jens Bräuer
- Jens Bräuer
- jensb&cs.tu-berlin.de
-17606
- helloWorld Inc.
- PV Subramanian
- pvs&helloworld-inc.com
-17607
- RETIA, Inc
- Jiri Kristek
- jkristek&retia.cz
-17608
- GIE AGORA
- Alexandre GAREL
- garel.alexandre&agora.msa.fr
-17609
- AZ Mercury Ltd.
- Andrey Sharandakov
- ash&azm.uz.ua
-17610
- Sadhu Software Services Pvt. Ltd.
- Dr. SVL Narasimham
- svln_jntu&yahoo.com
-17611
- eXc Software, LLC
- Norm Freedman
- normfree&san.rr.com
-17612
- Groupe Caisse d'Epargne
- Fabrice LAGET
- fabrice.laget&cnce.caisse-epargne.fr
-17613
- S-Access GMBH
- Daniel Dällenbach
- s-access&dplanet.ch
-17614
- Queensland Parallel Supercomputing Foundation (QPSF)
- Rajesh K. Chhabra
- r.chhabra&qpsf.edu.au
-17615
- Ashway Software
- Andrey Sharandakov
- ash&azm.uz.ua
-17616
- Exclusive Flor Sales Ltd.
- Miles K. Forrest
- miles&promicro.ca
-17617
- MessageGate, Inc.
- Mark Richardson
- markr&messagegate.com
-17618
- Ziniti.Net
- John Ziniti
- jziniti&speakeasy.org
-17619
- J Enterprise BV
- A. S. Manzoor
- suhail&planet.nl
-17620
- Mould Industria de Matrizes Ltda
- Carlos A. Mendel
- cmendel&mould.com.br
-17621
- Lightwave Access, LLC
- Keith Goettert, CIO
- Keith&LightwaveAccess.net
-17622
- OpenServe
- Bastian Winkler
- b.winkler&techdivision.com
-17623
- Millersville University
- Mike Dulay
- michael.dulay&millersville.edu
-17624
- Scouting Nederland
- Team Internet (Eelco Maljaars)
- support&ti.scouting.nl
-17625
- Brightline Technology, Inc.
- James Wilson
- jwilson&brightline.com
-17626
- Phoenix Business Technologies Group, Inc.
- Sean Hannan
- sean&pbtg.com
-17627
- Will Systems
- Tamotsu Kanoh
- kanoh&kanoh.org
-17628
- Mount Hay Technology
- Matt Johns
- matt.johns&haytech.com.au
-17629
- NISHIMU ELECTRONICS INDUSTRIES CO., LTD.
- Mikihiro Jyono
- mjyouno&nishimu.co.jp
-17630
- Anana Ltd
- Roger Parsons
- roger.parsons&anana.com
-17631
- Oral Diagnostic Systems
- Paul F. van der Stelt
- p.vdstelt&acta.nl
-17632
- TPISACOM
- Ming-En Chen
- me.chen&ever.com.tw
-17633
- Phoenix Color Corporation
- John Thorhauer
- jthorhauer&phoenixcolor.com
-17634
- AGB UK Limited
- Zoran Vasiljevic
- zoran.vasiljevic&atruk.co.uk
-17635
- DragonTail Online Security
- David Sumner
- david&dragontail.com
-17636
- Novahead, Inc.
- Burk Price
- bprice&novahead.com
-17637
- fudo.org
- Peter Selby
- war&fudo.org
-17638
- JAJOK Ltd.
- Jack Zhou
- zhoukun1212&tom.com
-17639
- Abbeynet Srl
- Luca Filigheddu
- roberto.camba&abbeynet.it
-17640
- Reifenberger
- Michael Reifenberger
- Michael&Reifenberger.com
-17641
- Web Publications Pty Ltd
- Ian Slinger
- sysadmin&webpublications.com.au
-17642
- PrintSoft Czech Republic
- Slavomir Pagerka
- pagerka&printsoft.cz
-17643
- Shanghai Neotune Information Technology Co.,Ltd.
- Tao Yu
- sean.yu&neotune-co.com
-17644
- Next Generation Broadband, LLC
- Bruce Harrison
- bruce&ngb.biz
-17645
- CBCA, Inc.
- Jeremy Archer
- jarcher&cbca.com
-17646
- Contact Energy Ltd
- Lincoln Mackay
- lincoln.mackay&contact-energy.co.nz
-17647
- NTT Innovation Institute, Inc. (formerly 'NTT Multimedia Communications Laboratories, Inc.')
- Eugene M. Kim
- eugene.kim&ntti3.com
-17648
- Amat-SC, Service & Consulting
- Ramon Amat
- ra&amat-sc.ch
-17649
- PUMA AG
- Christian Burger
- java-developer&puma.com
-17650
- ITSOFT
- Piotr Zieliñski
- pz&euroticket.pl
-17651
- necron-X
- Stephan Seitz
- sseitz&kist.necron-x.net
-17652
- McKesson IS France
- Jacques Bretagnolle
- dpt_tech&mckesson.fr
-17653
- Moot Hall Holdings Limited
- Mark Berger
- iana_sub&moothall.co.nz
-17654
- Sheer Networks, Ltd.
- Eli Hadad
- eli_hadad&sheernetworks.com
-17655
- Epsys
- Hermans, Jeroen
- j.hermans&epsys.nl
-17656
- Tohoku Ricoh Co., Ltd.
- Chiharu Toyoshima
- toyo&tohoku.grp.ricoh.co.jp
-17657
- @tp-net e. K.
- Andreas Danner
- iana.registrierung&atp-net.de
-17658
- Thinklogical, Inc (formerly 'Logical Solutions Inc.')
- Bill Feero
- support&thinklogical.com
-17659
- The Lutheran University Association, Inc (d/b/a Valparaiso University)
- J Michael Yohe
- OID.Admin&valpo.edu
-17660
- AStA Universitaet Potsdam
- Sven Friedrich
- computer&asta.uni-potsdam.de
-17661
- Lincoln National Corporation
- Toby Gaff
- domainservicealerts&lfg.com
-17662
- Lucent EBS
- Chris Ihling
- ihlingc&lucent.com
-17663
- I.C.S. Industrielle Automatisierungssysteme GmbH
- Dieter W. Kuske
- snmp&ics-consult.de
-17664
- Watkins Contracting
- Sean Noonan
- noonans&watkinscontracting.com
-17665
- IMAKE Software & Services
- Jim McCloskey
- jim.mccloskey&imake.com
-17666
- New Jersey Hgiher Education Student Assistance Authority
- Simon Lee
- slee&hesaa.org
-17667
- PCT-International, Inc.
- Jon-En Wang, Director Optic Engineering
- jwang&pctusa.net
-17668
- American Medical Security
- Daniel Bartlett
- daniel.bartlett&eams.com
-17669
- VSL Catena
- Sjors Robroek
- sjors&vslcatena.nl
-17670
- Celliance Sarl.
- Hugues Obolonsky
- h.obolonsky&celliance.com
-17671
- PT. Mugi Rekso Abadi (Holding)
- Muhammad Reza
- reza&mra.co.id
-17672
- MACH Software, Inc.
- Alex Chen
- alex_chen&sbcglobal.net
-17673
- CERT-ONERA
- Guy ZANON
- guy.zanon&cert.fr
-17674
- VT100
- Rubin Simons
- info&vt100.nl
-17675
- Hill McGlynn & Associates Ltd
- IT Manager
- itmanager&hillmcglynn.com
-17676
- nextevolution AG
- Hayo Schmidt
- hs&nextevolution.de
-17677
- Tradition Financial Services Ltd
- Mr Rob Waddell
- robert.waddell&tfs-ln.co.uk
-17678
- Open X Tecnologia da Informacao Ltda
- Renato Arrudas Ornelas
- renato&openx.com.br
-17679
- Chapter Eight Ltd
- Joelle Nebbe-Mornod
- sysadmin&chaptereight.com
-17680
- Dialup USA, Inc.
- Gabriel Cain
- gabriel&dialupusa.net
-17681
- Johns Hopkins Bloomberg School of Public Health Center for Communication Programs
- Kevin Zembower
- isgalert&jhuccp.org
-17682
- BNX Systems Corporation
- Brian Mizelle
- bmizelle&bnx.com
-17683
- Davis Polk & Wardwell
- Bin Zhao
- bzhao&dpw.com
-17684
- Xi Software Ltd
- John Collins
- jmc&xisl.com
-17685
- Dunes Technologies SA
- Stefan Hochuli
- iana.org&dunes.ch
-17686
- BF&M Insurance Group
- Nick Faries
- nfaries&bfm.bm
-17687
- Teamwork Solutions, Inc.
- Michael A Weber
- mweber&teamsol.com
-17688
- O'Farrell Community School
- Brian F. Opitz
- briano&ofarrell-mail.sandi.sandi.net
-17689
- TJM Computing
- Tim McArthur
- tim&tjmcomp.co.za
-17690
- The University Of Newcastle
- Bill Pascoe
- bill.pascoe&newcastle.edu.au
-17691
- i-Net Device Co.Ltd.
- Toru Kawata
- kawata&i-netd.co.jp
-17692
- Torkild Lømo
- Torkild Lømo
- tl01&online.no
-17693
- Insitut de Recherche en Communication et Cybernétique de Nantes (IRCCyN)
- Denis CREUSOT
- Denis.Creusot&irccyn.ec-nantes.fr
-17694
- Elekta
- Adam Paisley
- hostmaster&elekta.com
-17695
- COM.BOX WINET GmbH & Co. KG
- Torsten Luettgert
- t.luettgert&combox.de
-17696
- GAD IT fuer Banken eG
- Johann Prahm
- Johann.Prahm&GAD.de
-17697
- Sanderson Townend & Gilbert Ltd
- Les Bessant
- lesb&sandersons.com
-17698
- John Lewis PLC
- Network Technical Team
- ntt_hitperson&johnlewis.co.uk
-17699
- Japan Control Engineering, Co., Ltd.
- Mugen Kawazu
- m_kawazu&nihon-seigyo.co.jp
-17700
- PowerWallz Network Security Inc.
- Alan Chiu
- achiu&powerwallz.com
-17701
- BAE Systems, CNIR
- Ben Kimes
- george.kimes&baesystems.com
-17702
- SmartPants Media, Inc.
- Mark Jeweler
- mark&smartpants.com
-17703
- Rudjer Boskovic Institute
- Matej Vela
- mvela&irb.hr
-17704
- Critical Telecom Corp.
- Ian Meier
- imeier&criticaltelecom.com
-17705
- Sovelto Oy
- Sakari Kouti
- sakari.kouti&sovelto.fi
-17706
- Kidery
- Stefan Kidery
- kidery&kabsi.at
-17707
- The Meme Factory, Inc
- Karl O. Pinc
- kop&meme.com
-17708
- sysmango.com
- Allen Lebo
- bostch&sysmango.com
-17709
- Shanghai Telecommnunications Technological Research Institute
- xue lihong
- xuelh&sttri.com.cn
-17710
- michael j van ham
- Michael Van Ham
- mjvh&lords.com
-17711
- Aisai communication technology CO.,LTD
- Junce Ma
- junce-ma&aisaicom.com
-17712
- TB-Solutions Technologies Software S.L.
- Miguel Angel Sarasa Lopez
- sarasam&tb-solutions.com
-17713
- Cambium Networks Limited (formerly 'PipingHot Networks Limited')
- Antony Holmes
- antony.holmes&cambiumnetworks.com
-17714
- ASM Enterprises
- Mark Jeweler
- mark&asmenterprises.com
-17715
- Mitsukoshi Infomation Service Co.,Ltd.
- system tantou
- jyousys&mitsukoshi.co.jp
-17716
- Georgia Tech Foundation
- Scott Owens
- scott.owens&gtf.gatech.edu
-17717
- Escription, Inc.
- Kenneth Valentine
- ken&escription.com
-17718
- Vanu, Inc.
- Jonathan Santos
- jrsantos&vanu.com
-17719
- Noldata Ltd.
- Gustavo Lozano
- glozano&noldata.com
-17720
- Prompt
- Ruud Baart
- r.j.baart&prompt.nl
-17721
- AGL Resources Inc.
- Grady V. Boggs
- gvboggs&aglresources.com
-17722
- STEAG GmbH
- Bernhard Koss
- bernhard.koss&steag.com
-17723
- Softel SA de CV
- Fernando Bracho
- fbracho&softel.net.mx
-17724
- SinoCDN Ltd.
- System Administrator
- sys-admin&sinocdn.com
-17725
- HW Termination Union
- liu chenglong
- liuchenglong&huawei.com
-17726
- Adva Technologies Ltd.
- Andrey Lebedev
- andrey.lebedev&advascan.com
-17727
- Wiplug
- Pablo Brenner
- pablo&wiplug.com
-17728
- AboveCable, Inc.
- YiLin Xu
- ylxu&abovecable.com.cn
-17729
- SPUeNTRUP Software
- Kai Henningsen
- support&cats.ms
-17730
- RedDot Solutions AG
- Inka Erdwiens
- inka.erdwiens&reddot.de
-17731
- CQS Technology Holdings (Pty) Ltd
- Jake Shepherd
- jake&cqsgroup.com
-17732
- SNA lab,National Dong-Hwa university ,Hualien,Taiwan
- Chen, Kun-Nan
- m9121039&em91.ndhu.edu.tw
-17733
- Delaware State University
- Bruce Pawlecki - Siemens
- bruce.pawlecki&icn.siemens.com
-17734
- OC Systems, Inc.
- Vasya Gorshkov
- vvg&ocsystems.com
-17735
- Quark Communications, Inc.
- Adam Guzik
- aguzik&quarkcommunications.us
-17736
- Trading Metrics, Inc.
- Jeff Drew
- jeffdrew&tradingmetrics.com
-17737
- Tablus, Inc.
- Aaron Reizes
- aaron&tablus.com
-17738
- Tracey Bernath
- Tracey Bernath
- tbernath&ix.netcom.com
-17739
- Embedded Technologies s.r.o.
- Dusan Ferbas
- dferbas&etech.cz
-17740
- iSecurity Technology Limited
- Terence Lee
- terence&cs.ust.hk
-17741
- Open Enterprise Systems, Ltd.
- Jason Smith
- jhs&oes.co.th
-17742
- Rootsr
- Simon de Hartog
- simon.iana&rootsr.com
-17743
- M-Web Business Solutions
- Warren Baker
- warren&mweb.com
-17744
- Dubex A/S
- Sune B. Jørgensen
- sbj&dubex.dk
-17745
- Huntek Co., Ltd.
- Xiaozhi Zhang
- micblues&huntek.com
-17746
- By Intertrade
- Justo M. Garcia
- justo&byintertrade.com
-17747
- Nexagent Ltd.
- Ian Corrie
- ian.corrie&hpe.com
-17748
- Card Systems Consulting SRL
- Lucian Ungurean
- Lucian.Ungurean&orga.ro
-17749
- TGC Ltd
- Ian Norman
- ian&t-g-c.net
-17750
- iTechnology GmbH
- Sascha Teske
- iana&itechnology.de
-17751
- Radio Systems Ltd.
- Sergey Shumov
- shs&rs.net.ua
-17752
- Instituto Atlântico
- Victoria Matos
- victoria&atlantico.com.br
-17753
- MetroHealth Medical Center
- David H. Johnson
- monorail&cwru.edu
-17754
- Alexander Pilger Consulting
- Alexander Pilger
- alex&cyber-defense.de
-17755
- Lane Department of Computer Science and Electrical Engineering, West Virginia University
- David Krovich
- dkrovich&csee.wvu.edu
-17756
- science + computing ag
- Mitchel Timm
- sc-iana&science-computing.de
-17757
- Orthopedic Healthcare Northwest, P.C.
- Network Administrator
- postmaster&ohn.com
-17758
- Trematon UK Ltd
- Colin A. White
- colin&orbit8.com
-17759
- Synctomi, Inc.
- Andrew Almquist
- aalmquist&synctomi.com
-17760
- Identify
- Iftah Bratspiess
- iftah&web-silicon.com
-17761
- WiredPlace
- Nicola Giacobbe
- wiredplacegiacobbe&hotmail.com
-17762
- Covert Security Services Ltd
- Warren Mann
- covertnet&onetel.com
-17763
- Teske Netzwerkberatung
- Sascha Teske
- iana&slaxor.de
-17764
- Ditelco, LLC
- Philip Decker
- iana_pen&ditelco.com
-17765
- Tessna Private Limited
- S. Mukund
- mukund&tessna.com
-17766
- PGP Corporation
- Jon Callas
- jon&pgp.com
-17767
- Schruth, LLC
- Cory Schruth
- cory&schruth.com
-17768
- Ecobyte Limited
- Nic Rutterford
- Nic.Rutterford&Ecobyte.co.uk
-17769
- Werft22 AG
- Andreas Trottmann
- andreas.trottmann&werft22.com
-17770
- Cia Metropolitano de São Paulo - Metrô
- Jair Ribeiro de Souza
- jrsouza&metrosp.com.br
-17771
- Lingard Knowledge Software Engineering
- Jonathan Lingard
- jomajeliianaorg&lingard.com
-17772
- Ironico Pty Ltd
- Geoff Hill
- geoff.hill&ironico.com.au
-17773
- NEXCOM International Co.,LTD
- Steven Wu
- stevenwu&nexcom.com.tw
-17774
- Smart Computer Systems Ltd
- Rodney Walker
- rodney&smartcom.co.nz
-17775
- INTOREL
- Srdjan Mijanovic
- msergeo&intorel.com
-17776
- SIN solution
- Emanuel Kraus
- ekraus&5hexen.de
-17777
- JaserNet
- Jeremias Mueller
- jeremias&jeremi-ass.de
-17778
- nic.at Internet Verwaltungs- und Betriebsgesellschaft m. b. H.
- Michael Braunoeder
- mib&nic.at
-17779
- Econtec GmbH
- Bernd Probst
- bprobst&econtec.de
-17780
- Truman Medical Centers, Inc.
- Greg Wyman
- greg.wyman&tmcmed.org
-17781
- University of Vale do Itajai - CES Sao Jose
- Marcelo Maia Sobral
- sobral&sj.univali.br
-17782
- Michael Parker
- Michael Parker
- MichaelParker&gmx.de
-17783
- SeTel S.p.a.
- Nicola Giacobbe
- setelgiacobbe&hotmail.com
-17784
- Mitsubishi Electric Business Systems Co.,Ltd.
- Yasushi Yoshida
- yyoshida&melb.co.jp
-17785
- BONNA SABLA SA
- LABARILE Vitantonio
- exploit&bonnasabla.com
-17786
- Frankendata GmbH & Co.KG
- Abdelhakim Mahraoui
- abdelhakim.mahraoui&frankendata.de
-17787
- tschaufrei
- Markus Frei
- m_frei&swissonline.ch
-17788
- EDAG GmbH & Co. KGaA
- Markus Gruenkorn
- nwadmin&edag.de
-17789
- sitharus.com internet services
- Phillip Hutchings
- me&sitharus.com
-17790
- IPAD Owners Association
- Lynn W. Taylor
- lynn&ipadowners.net
-17791
- Turoks.Net
- Glen F. Marshall
- turok&turoks.net
-17792
- Billing Concepts, Inc.
- Ashley Neal Hornbeck
- ashley.hornbeck&billingconcepts.com
-17793
- Hong Kong Broadband Network Ltd.
- Elhon Fung
- elhon&hkbn.com.hk
-17794
- EXARTECH International Corp.
- Lin Chin-Yin
- louis&exartech.com.tw
-17795
- Echo Communications
- John Freeman
- john&echonet.com
-17796
- EK Technology, Ltd.
- Eskay Lee
- eskay&ektechnology.com
-17797
- PrimeScale AG
- Juergen Maihoefner
- juergen.maihoefner&primescale.net
-17798
- Beijing Lingtu Software Co., LTD
- HuangSong
- huangsong&lingtu.com
-17799
- Eurovast Ltd.
- Richard Hoberman
- thatrichard&blueyonder.co.uk
-17800
- Telephone Company Chereda
- Andriy Berestovskyy
- info&chereda.net
-17801
- tarent GmbH
- Philipp Kirchner
- p.kirchner&tarent.de
-17802
- Egyptian Telephone Company
- Sameh Youssef
- syoussef&egyptiantelephone.com
-17803
- iTechnology GmbH
- Sascha Teske
- iana&itechnology.de
-17804
- Towers Perrin
- Andy MacDonald
- andy.macdonald&towers.com
-17805
- Radio UNiCC e.V.
- Daniel Graupner
- daniel.graupner&informatik.tu-chemnitz.de
-17806
- isw
- Voorzitter
- iana&isw.student.khleuven.be
-17807
- WELLX TELECOM S.A.
- Charles OZANNE
- charles.ozanne&wellx.com
-17808
- ACTCOM - Active Communication Ltd.
- Serge Talankine
- actobi&actcom.co.il
-17809
- civil information security organisation
- george gritsai
- gritsai&hotbox.ru
-17810
- GIE GETIMA
- CHOCHON JACQUES
- chochon.jacques&getima.fr
-17811
- Anixe Systems GmbH
- Joern Heissler
- j.heissler&anixe.de
-17812
- TLS-Technologie sp. z o.o.
- Robert Maron
- robmar&tls.pl
-17813
- iVAST Inc.
- Marios Stylianou
- mstylianou&ivast.com
-17814
- Boolean Systems, Inc.
- Paul Sullivan
- paul&booleansystems.com
-17815
- Pollard Banknote Ltd.
- John Schulz
- jschulz&pbl.ca
-17816
- Federated Systems Group
- Alfredo J. Horta
- alfredo.horta&fds.com
-17817
- Fuji Research Institute Corporation
- TACHIBANA Shintaro
- mibadmin&fuji-ric.co.jp
-17818
- SAPPORO BREWERIES LTD.
- Toyohiko Terada
- Toyohiko.Terada&sapporobeer.co.jp
-17819
- GIP RENATER
- Dany Vandromme
- vandrome&renater.fr
-17820
- Foresttek Networks Limited
- Kenneth Chan
- kenneth&foresttek.com
-17821
- Tempest spol. s r.o.
- Ing. Peter Magdina
- peter_magdina&tempest.sk
-17822
- Easytouch Robert Redl KG (formerly 'EASYTOUCH Robert Divoky KEG')
- Robert Redl
- robert&robertredl.com
-17823
- Arnes - Academic and Research Network of Slovenia
- Rok Pape¾
- aaa-podpora&arnes.si
-17824
- Hisense Information Technology Ltd.
- Jiao HaiBo
- dragon_j&21cn.com
-17825
- BEconnectIT GmbH
- Rene Lange
- office&beconnectit.de
-17826
- ZerBit S.L.
- Juan Carlos
- zerbit&terra.es
-17827
- Infostar Technology
- Zhong Yu
- zhong.yu&telia.com
-17828
- MetaTV Inc.
- David de Andrade
- daviddeandrade&metatv.com
-17829
- IDN Communication System Co.,Ltd
- Zhongping Zhou
- zhpzhou&idncn.com
-17830
- SYRUS SYSTEMS
- Moiseev Segrey
- moiseev&syrus.ru
-17831
- TwinCats Production sprl
- X. Bogaert
- info&twincats.be
-17832
- Alphyra Nordic AB
- Zhong Yu
- zhong.yu&alphyra.se
-17833
- All for One Systemhaus AG
- Jochen Renner
- jrenner&all-for-one.de
-17834
- C.N.S. Systems AB
- Mattias Blomqvist
- mattias.blomqvist&cns.se
-17835
- Magyar Telekom Nyrt. (formerly 'MATÁV Rt.')
- Zoltan Domokos
- domokos.zoltan&telekom.hu
-17836
- Norbert Zänker & Kollegen
- Hannes Schmidt
- mail&hannesschmidt.de
-17837
- Experimental Factory of Scientific Engineering
- Novikov Oleg
- oleg&ezan.ac.ru
-17838
- JunCon
- Armin Junginger
- Junginger&web.de
-17839
- Secureseal Systems Ltd.
- kodjo baah
- kodjo_baah&hotmail.com
-17840
- KOITO INDUSTRIES, LIMITED
- takayuki araki
- takayuki_araki&koito-ind.co.jp
-17841
- bombini.net
- René Clavaux
- rc&bombini.net
-17842
- Ipsum Networks, Inc.
- Raju Rajan
- raju&ipsumnetworks.com
-17843
- Concerto Software
- Omar Dominguez
- odominguez&concerto.com
-17844
- Orion Associates
- Scot Ridgway
- sridgway&orionassociates.com
-17845
- GeniServer Corporation
- James Li
- james.li&geniserver.com
-17846
- Ocamar Technologies,Inc.
- Tod Kang
- tod.kang&ocamar.com
-17847
- Mermit Business Applications Oy
- Matti Kokkola
- Matti.Kokkola&mermit.fi
-17848
- Qamcom Technology AB
- Patrik Bohlin
- patrik&qamcom.se
-17849
- Neuroimage Nord
- Mathias Pietsch
- m.pietsch&uke.uni-hamburg.de
-17850
- Groupe Danone
- Nadir Belarbi
- nadir.belarbi&danone.com
-17851
- SPRINGWAVE,Inc.
- Minwoo Kim
- minu&springwave.co.kr
-17852
- The ProFTPD Project
- TJ Saunders
- tj&castaglia.org
-17853
- Heilpraktikerschule Luzern Ltd.
- Pascal Eugster
- peugster&hpsl.ch
-17854
- Twenty First Century Communications (TFCC)
- Carey Hall
- carey.hall&tfcci.com
-17855
- zipRealty, Inc.
- Derek Suzuki
- dsuzuki&ziprealty.com
-17856
- NetNumber, Inc.
- Robert H. Walter
- rwalter&netnumber.com
-17857
- Tiscali France
- Jerome Fleury
- jerome.fleury&fr.tiscali.com
-17858
- sonik.org
- SASAKI Suguru
- admin&sonik.org
-17859
- Septier Communications Ltd.
- Uri Savoeay
- info&septier.com
-17860
- Alembic, Inc.
- Ron Wickersham
- rjw&alembic.com
-17861
- Twise Labo Inc.
- Masayuki Yamai
- ymi&twise.co.jp
-17862
- Kelly Martin
- Kelly Martin
- kmartin&pyrzqxgl.org
-17863
- dotOpen Pty Ltd
- Warrick Zedi
- warrick.zedi&dotopen.com.au
-17864
- Fudan GrandHorizon Information Technology, Inc.
- Liao Jian
- jliao&guanghua.sh.cn
-17865
- eValley.VS
- Jaehyup, Cho
- jhcho&evalleyvs.com
-17866
- GPS Applications, Inc.
- Andrew Zenk
- andrew&overeducated.com
-17867
- C&M Fine Pack, Inc.
- Jerry Richards
- jerry.richards&cmfinepack.com
-17868
- Codersnetwork.co.uk
- Matt Hampton
- iana.org&codersnetwork.co.uk
-17869
- etherstack.com
- Jeremy Davies
- jeremy.davies&etherstack.com
-17870
- Bradford Technology Limited
- Andrew Hall
- andyh&btl.com
-17871
- NexGen City
- Kevin Farley
- kfarley&nexgencity.com
-17872
- iDOC K.K.
- Kazma Sonoda
- ksonoda&idoc.co.jp
-17873
- Gcom, Inc
- David Grothe
- dave&gcom.com
-17874
- Michael F. Doyle
- Michael Doyle
- doymi01&gmail.com
-17875
- Macromedia, Inc.
- Michael Melnicki
- mmelnick&macromedia.com
-17876
- Factline Webservices GmbH.
- Klaus Ita
- klaus&worstofall.com
-17877
- Unassigned
- Returned 21-Aug-03
- ---none---
-17878
- Journalistic, Inc.
- Jason Purdy
- admin&journalistic.com
-17879
- Ask Software Corporation
- Jyoti Das
- jyoti&asksoftware.com
-17880
- Robert Kurtys
- Robert Kurtys
- bob&glog.pl
-17881
- Profil Kft
- Szilagyi Attila
- szilagyi.attila&profilkft.hu
-17882
- Costco Wholesale Corp.
- Kevin Hoffman
- khoffman&costco.com
-17883
- CSS Versicherung
- Bruno Rohrer
- bruno.rohrer&css.ch
-17884
- Rocketseed
- Simon Ratcliffe
- sratcliffe&rocketseed.com
-17885
- Agarwal Associates Ltd
- Alok Agarwal
- alok.agarwal&nch.it
-17886
- bross ag
- Oliver Nispel
- oliver.nispel&bross-ag.de
-17887
- Realtime Systems Limited
- Mr Hemant Chadha
- hchadha&rtsindia.com
-17888
- Xor-Technologies
- Moshe Zaltzman
- moshez&xor-t.com
-17889
- Porsche Informatik GmbH
- Johannes Grumböck
- johannes.grumboeck&porsche.co.at
-17890
- JSC "OSS Corporation"
- Alexander Mazavin
- noc&oss.ru
-17891
- MidAmerica Nazarene University
- IANA Number Administrator
- iana&mnu.edu
-17892
- Lumenaré Networks, Inc
- Patrick Deloulay
- pdeloulay&lumenare.com
-17893
- Cellent AG
- Dieter Meckelein
- Dieter.Meckelein&cellent.de
-17894
- Airtria
- Thierry Tallagrand
- thierry.tallagrand&airtria.com
-17895
- Keopsys
- Marc LE FLOHIC
- thierry.tallagrand&airtria.com
-17896
- TelePro C.S
- Michael Devitt
- mickdevit&aol.com
-17897
- QUANTUM RADIONICS CORPORATION
- DR. GREGORY M. STONE
- gms&quantumradionics.com
-17898
- RISS (Regional Information Sharing Systems)
- Chad Hendry
- chendry&risstech.riss.net
-17899
- mIstA Technologies
- Michael Stampach
- weboffice&inode.at
-17900
- Pivetal Ltd
- Martin Shaw
- martins&pivetal.com
-17901
- Koolspan, Inc.
- John Keating
- jkeating&koolspan.com
-17902
- Copeland Corporation
- Donald Lee
- dwlee&copeland-corp.com
-17903
- Grouse Media
- Mike Barnes
- mike&grouse.net.au
-17904
- boros consulting gmbh
- Stefan Boros
- office&boros-consulting.com
-17905
- Aktion Kritischer SchülerInnen Salzburg
- Sebastian Arming
- sebastian.arming&aks.at
-17906
- Folleville
- contact&folleville.com
- contact&folleville.com
-17907
- Kumashiro System Frontier Co., Ltd.
- Taoka Fumiyoshi
- taoka&ksfnet.co.jp
-17908
- Tobias Punke
- Tobias Punke
- tpunke&web.de
-17909
- Zandar Technologies
- Louis Ryan
- LRyan&zandar.com
-17910
- Meridian VAT Processing (International) Ltd
- Aoife Kavanagh
- aoife.kavanagh&meridianp2p.com
-17911
- Mountain Area Information Network
- Rusty Holleman
- rusty&main.nc.us
-17912
- Jugendzentrum Kirchheim
- Walter Werther
- sysop&juz-kirchheim.de
-17913
- MacShed
- Anders Hellstrom
- anders&macshed.net
-17914
- Escribanía de la Fuente
- Juan Angel de la Fuente
- jadelaf&adinet.com.uy
-17915
- Iris Media Ltd.
- Vassilis Stathopoulos
- hostmaster&irismedia.gr
-17916
- Istituto Tecnico Commerciale Cesare Battisti
- Cristiano Cumer
- cristiano&mmp.it
-17917
- Computer-Essence
- Gary Taylor
- gary&Computer-Essence.com
-17918
- Smart Systems Pty. Ltd.
- Richard Mullins
- rmullins&smartsystems.com.au
-17919
- Light Socket, Ltd.
- Zoltan Ori
- zoltan&ycnx.net
-17920
- C-Borne Co.,Ltd.
- Yasushi ABE
- Yasushi.ABE&C-Borne.CO.JP
-17921
- HALLE-DOT-COM Germany
- Markus Laube
- mlaube&servicestelle.com
-17922
- PinPoint Israel Ltd.
- Arie Koblenz
- arie.koblenz&tppco.com
-17923
- Tinext SA
- MIB/SNMP
- mib.snmp&tinext.net
-17924
- RatNet
- Jim Maynard
- info&ratnet.net
-17925
- Dresdner Kleinwort Wasserstein
- Haran Rajadeva
- GBSGlobalSchemaAdmin&drkw.com
-17926
- Banco Nacional de Costa Rica
- Marielos Vásquez H.
- mvasquez&bncr.fi.cr
-17927
- Sana Security, Inc.
- Marc Hedlund
- snmp-admin&sanasecurity.com
-17928
- siikuls incorporated
- putkowski
- siikuls&bellsouth.net
-17929
- Synthetic Networks Inc
- Dinkar Chivaluri
- dinkar_chivaluri&yahoo.com
-17930
- SAGA University
- Hirofumi ETO
- etoh&cc.saga-u.ac.jp
-17931
- Diligent Technologies Corporation
- Michael Hirsch
- mh&diligent.com
-17932
- ZeCo GmbH
- Heiko Zehner
- Heiko.Zehner&zeco.de
-17933
- Compulogic Limited
- Bob Morris
- bob.morris&compulogic.ltd.uk
-17934
- Association of Teachers and Lecturers
- Bernard King
- bking&atl.org.uk
-17935
- Videolarm, Inc.
- John Kalter
- jkalter&videolarm.com
-17936
- Penn State Hershey Medical Center
- Jeffrey S Campbell
- jscampbell&hmc.psu.edu
-17937
- Lollipop Learning Ltd.
- Brian Bishop
- brian.bishop&lollimail.com
-17938
- Unassigned
- Removed 22-Aug-03
- ---none---
-17939
- Guangdong Province Electronic Technology Research Institute
- chenlizhen
- youzen&263.net
-17940
- The University of Texas at Austin
- William Green (ITS-TN)
- net-admin&its.utexas.edu
-17941
- Web Fabric LLC
- Administrator
- admin&mssgs.net
-17942
- ISN, Inc. D/B/A inSolutions
- Aaron Aycock
- aaycock&insolutions.net
-17943
- Progressix
- Marcel v. Birgelen
- marcel&progressix.com
-17944
- Subrenat Expansion S.A.
- Christophe GIRDAL
- computing&subrenat.com
-17945
- Alpha Telecom Inc. USA
- Judy Lee A'Neals
- janeals&alpha-tele.com
-17946
- Sinema Instruction
- Dan Sinema
- dansinema&mac.com
-17947
- Card Access Services Pty Ltd
- Richard Colley
- rcolley&cardaccess.com.au
-17948
- LV Power (2003) Ltd
- Aaron Applebaum
- sale&lvpower.net
-17949
- i-neda Ltd
- Joseph Blackman
- jblackman&i-neda.com
-17950
- Endian
- Raphael Vallazza
- raphael&endian.it
-17951
- Barnim.Net
- Thomas Bez
- bez&barnim.net
-17952
- Scalent, Inc
- Rusty Greer
- rusty.greer&scalent.com
-17953
- Advanced Clustering Technologies, Inc.
- Justin Penney
- jpenney&advancedclustering.com
-17954
- Voicenet Cyber Cafe
- Mr.jignesh prajapati
- jignesh1&india.com
-17955
- Polytron Corporation
- Ralph McIntire
- ralph&polytron-corp.com
-17956
- NetCare
- Kjeld Dunweber
- kjd&netcare.dk
-17957
- Uniwide Technologies inc.
- Sung-il Nam
- oncea&uniwide.co.kr
-17958
- KAIYO DENSHI KOGYO Co., Ltd.
- Manabu Taniguchi
- mark&kaiyo-denshi.co.jp
-17959
- Accense Technology Inc.
- Kohji Osamura
- osa&accense.com
-17960
- ETRI
- Sang Hoon Park
- sanghoonnom&hotmail.com
-17961
- Luottokunta
- Marko Parviainen
- marko.parviainen&luottokunta.fi
-17962
- Zandan
- Jimmy Holzer
- jimmy.holzer&zandan.com
-17963
- CONI Servizi S.p.A.
- Sandro Marrone
- smarrone&informatica.coni.it
-17964
- Mairie de Pierrefitte-sur-Seine
- Thierry Dulieu
- tdulieu&easter-eggs.com
-17965
- mediaskill OHG
- Manuel Rorarius
- info&mediaskill.de
-17966
- space2go GmbH
- Manuel Rorarius
- mrorarius&space2go.com
-17967
- Qovia, Inc
- Jason Sapp
- jsapp&qovia.com
-17968
- Fortress Systems, Ltd.
- Ivan Makfinsky
- ivan.makfinsky&fsl.com
-17969
- OC4, LLC.
- William Malz
- will&oc4.com
-17970
- jSNMP Enterprises
- Jim Pickering
- jpickering&jSNMP.com
-17971
- Authenti-Corp
- Michael Crusoe
- michael&authenti-corp.com
-17972
- IntraMeta Corporation
- Kevin McCarthy
- nospam&intrameta.com
-17973
- Terravox Technologie Inc
- Adam Sherman
- adam&tritus.ca
-17974
- JWM3, Inc.
- James W. Martin III
- iana.org&jwm3.com
-17975
- World Radio Missionary Fellowship Inc.
- Steve Grace
- sgrace&hcjb.org
-17976
- ISI-ESM
- Mike Dooner
- mike.dooner&effem.com
-17977
- Rokeby Technologies Ltd.
- Salvatore Ilardo
- ilasa01&linux.rokeby.com
-17978
- Elfwerks
- Eric Gustafson
- ericg-iana&elfwerks.org
-17979
- HyperMedia Systems Ltd.
- Amnon David
- amnon&hyperms.com
-17980
- Oliver Huf
- Oliver Huf
- oli&huf.org
-17981
- Interacct Solutions(Australia)
- John Muller
- john.muller&interacctsolutions.com
-17982
- Clickerty-Click Ltd
- Leo Paalvast
- leo&clickerty-click.com
-17983
- OutPostal Corporation
- William Malz
- will.iana.org&outpostal.com
-17984
- SHENZHEN COSHIP SOFTWARE CO.,LTD.
- Yuan Song
- yuansong&coship.com
-17985
- kingsoft
- dengzhenbo
- dengzhenbo&kingsoft.net
-17986
- Systems Union (Shanghai) Ltd.
- Aaron Xu
- aaron_xu&sunsystems.com
-17987
- Vodafone Group Services Limited (formerly 'Cable & Wireless UK')
- Ian Kirk
- ian.kirk&vodafone.com
-17988
- PYLON R.I.S.C. GmbH
- Siegmund Gorr
- siegmund.gorr&pylon.de
-17989
- petujek.net
- Petr Burdik
- pet&petujek.net
-17990
- NEC Electronics Corporation
- Sachi Kubota
- oid-admin&LSi.nec.co.jp
-17991
- Weldun, s.r.o.
- Daniel Volar
- volar&weldun.sk
-17992
- Net Direct Inc.
- John Van Ostrand
- john&netdirect.ca
-17993
- Aware-Networks Ltda
- Jorge Andres Torres
- jtorres&aware-networks.com
-17994
- Mathematical Institute
- Keith A. Gillow
- gillow&maths.ox.ac.uk
-17995
- Asociación de Escribanos del Uruguay
- Juan Angel de la Fuente
- jadelafuente&aeu.org.uy
-17996
- Alien Technology Corporation
- David Krull
- dkrull&alientechnology.com
-17997
- Artis Inc.
- Artis Chiang
- artisjiang&giga.net.tw
-17998
- Vordel Ltd.
- Customer Support Manager
- support&vordel.com
-17999
- Rapsodie
- Franck Cornaz
- info&rapsodie.fr
-18000
- AGRICULTURAL BANK OF GREECE SA
- THEODORE KOUMOUTSOS
- tkoumoutsos&ate.gr
-18001
- University of Cape Town
- Craig Balfour
- craig&its.uct.ac.za
-18002
- Talisen Technologies
- Jim Crismon
- jcrismon&talisentech.com
-18003
- Stichting Wireless Leiden (Foundation under Dutch Law)
- Dirk-Willem van Gulik
- dirkx&webweaving.org
-18004
- Micro Forté Pty Ltd
- Gareth Walters
- garethw&syd.microforte.com.au
-18005
- K.K. Alice
- Christians, Stefan Mr.
- software&kkalice.com
-18006
- cognitas GmbH
- Stefan Thums
- stefan.thums&cognitas.de
-18007
- Phonalyse BVBA
- Johan De Witte
- johan.dewitte&phonalyse.com
-18008
- Fachhochschule Mannheim HS f. Technik u. Gestaltung
- Mr. Juergen Bauer
- j.bauer&fh-mannheim.de
-18009
- Outram Research Ltd
- Simon Baldry
- Outram_research&compuserve.com
-18010
- Eastern Washington University
- Michael Flyger
- networks&mail.ewu.edu
-18011
- Apollo Communications, International
- James McNalley
- james&apollo-com.net
-18012
- connectLOGIC
- Kent A. Brown Lee
- admin&connectlogic.co.nz
-18013
- DBL Technologies, Ltd.
- Kevin Cai
- cai_ning&yahoo.com
-18014
- Department of Electrical & Electronics Engineering
- Mookiah Prathaban
- mprathap&pdn.ac.lk
-18015
- Futarque A/S
- Ole Kaas
- obk&futarque.com
-18016
- JBoss Group, LLC
- Scott Stark
- scott&jboss.org
-18017
- PUBLIC VOICE Lab - International Media Co-op
- Rene Pfeiffer
- rene&pvl.at
-18018
- Northwoods Catholic School
- Christopher Voltz
- christopher.voltz&northwoodscatholic.org
-18019
- On Q Holdings Pty Ltd
- Scott Beck
- scottb&onq.com.au
-18020
- Pacific Retail Group
- Mike White
- mike.white&prg.co.nz
-18021
- Construction Electronique et Telecommunication Internationnal
- Jacques Greindl
- j.greindl&cet.be
-18022
- Covaro Networks, Inc.
- Vikas Trehan
- vikas&covaro.com
-18023
- Tatung Science & Technology, Inc.
- James Hwang
- Jamesh&tsti.com
-18024
- Cinergy Communications Company
- Jamie Hill
- oid-admin&cinergycom.com
-18025
- siWan GmbH & Co. KG
- Guido Schüller
- OpenLDAP&siWan.de
-18026
- Extron Electronics
- Brian Taraci
- btaraci&extron.com
-18027
- Battleaxe Technologies, Inc.
- Adam Israel
- adam&battleaxe.net
-18028
- Battleaxe Technologies, Inc.
- Adam Israel
- adam&battleaxe.net
-18029
- Sonic Foundry, Inc.
- Barry Hagan
- iana-contact&sonicfoundry.com
-18030
- Molecular Therapeutics, Inc.
- Jonathan Moody
- jonathan&molecularimaging.com
-18031
- ATM Telecom
- Jae-Won Jeong
- jjw&atmtele.com
-18032
- matieux.net
- Mathieu FRANCOIS
- mat&matieux.net
-18033
- Viviale Ltd
- Jeremy Hilton
- jhilton&viviale.com
-18034
- FrogNet, Inc.
- Operations Group
- noc&frognet.net
-18035
- Netsolus.com Inc.
- Bryan Ballard
- ballard&netsolus.com
-18036
- United Telecoms Ltd
- C V Rao
- cvrao&utlindia.com
-18037
- Pramati Technologies Pvt Ltd
- Srinivasa Rao T
- srinivas&pramati.com
-18038
- Schotten & Marchart OEG
- Andreas W. Schotten
- schotten&domainbank.at
-18039
- Toyo Radiator Co., Ltd.
- Andy Taki
- andy&trad.co.jp
-18040
- H.T.T.P. Planitis Communications Ltd.
- Per Granath
- per&planitis.net
-18041
- pdv.com Beratungs-GmbH
- Stefan Joachim
- stefan.joachim&pdvcom.de
-18042
- Meteksan Net
- Internet Systems Engineering Group
- se&meteksan.net.tr
-18043
- FinanzIT GmbH
- Jens Fricke
- jens.fricke&finanzit.com
-18044
- Synelec Telecom Multimedia
- Synelec R&D - Software Department
- rd-soft&synelec.fr
-18045
- IMFORM GmbH
- Bernd Poerner
- poerner&imform.de
-18046
- Skellefteå kommun
- Patrik Hellgren
- patrik.hellgren&kommun.skelleftea.se
-18047
- NeoLogica s.r.l.
- Marco Sambin
- info&neologica.it
-18048
- SunGard Futures Systems
- Pault Tuffy
- sfsianainfo&sungardfutures.com
-18049
- Pixel Power Ltd
- David Burley
- dburley&pixelpower.com
-18050
- Enterprise Products Integration Pte Ltd
- Edward van Leent
- edward&epi-ap.com
-18051
- RF Systems Nachrichtentechnik GmbH
- Wilhelm Heucke-Scheller
- rfsmail&rfsystems.de
-18052
- FachschaftsvertreterInnenversammlung
- Chris Recktenwald
- iana-contact&faveve.uni-stuttgart.de
-18053
- citecs GmbH
- Chris Recktenwald
- iana-contact&citecs.de
-18054
- Tenovis GmbH & Co. KG
- Rainer Krinn
- Rainer.Krinn&tenovis.com
-18055
- Unassigned
- Returned 5 Sep 2003
- ---none---
-18056
- Pioneer Digital Technologies, Inc.
- Glen E. Roe
- glen&pioneerdigital.com
-18057
- Procondo GmbH
- Markus Theißinger
- theissinger&procondo.de
-18058
- Optimus Inc.
- Ken Winke
- tex&optimus.com
-18059
- B2SCorp
- Alsenitd Rausseo
- arausseo&b2scorp.com
-18060
- The Apache Software Foundation
- Alex Karasulu
- akarasulu&apache.org
-18061
- OCEAN DEVELOPMENT
- Stefan Joachim
- stefan&ocean-development.de
-18062
- Jo Tankers AS
- Jan Eide
- jan.eide&no.jotankers.com
-18063
- Technetix BV (formerly 'Tratec Telecom b.v.')
- Gert Bronkhorst
- Gert.Bronkhorst&technetix.com
-18064
- Marek Walther
- Marek Walther
- Marek-Walther&gmx.de
-18065
- XOU Solutions Limited
- Andrew Roden
- hostmaster&xousolutions.com
-18066
- Planet Lauritsen
- Chad S. Lauritsen
- noc&planetlauritsen.com
-18067
- PowerTech Information Systems AS
- Frode Nordahl
- frode&powertech.no
-18068
- hansmi.ch
- Michael Hanselmann
- iana&hansmi.ch
-18069
- Fulfillment Plus
- Jonathan Chelton
- jchelton&fulfillmentplus.com
-18070
- BTI Photonic Systems
- Mark Jamensky
- mjamensky&btiphotonics.com
-18071
- Cendura Corporation
- Marco Framba
- framba&cendura.com
-18072
- R-MEDIA
- Alexander Ruof
- a.ruof&r-media.de
-18073
- hinegardner.org
- Jeremy Hinegardner
- jjh-iana&hinegardner.org
-18074
- Kass Enterprises LLC
- Andrew Smith
- asmith&kellc.com
-18075
- Combridge Medical Information Corporation
- Ziqiang Chen
- zchen&cam-med.com
-18076
- b1n
- Marcio Ribeiro
- mmr&b1n.org
-18077
- Acasim Technologies, Inc.
- Ming Fan
- mfan&acasim.com
-18078
- Unassigned
- Removed 2007-04-5
- ---none---
-18079
- City I.T. (UK) Ltd
- Akan Nkweini
- akan6&yahoo.com
-18080
- BlueBoard Ltd.
- Atanas Karashenski
- atanas&blueboard.biz
-18081
- Numa Technology Inc.
- Ting
- ting&numa.com.tw
-18082
- Midwest Independent Media Foundation
- Derek P. Moore
- derek.moore&sbcglobal.net
-18083
- European Society of Cardiology
- Hakim Bouras
- hbouras&escardio.org
-18084
- PharmXplorer
- Guenther Berthold
- guenther.berthold&uni-graz.at
-18085
- Ciaolab Technologies Spa
- Marco Stoppa
- marco.stoppa&ciaolab.com
-18086
- ProTelevision Technologies A/S
- Kim Engedahl
- admin&ProTelevision.com
-18087
- Optare Solutions S.L.
- Ricardo Riguera
- rriguera&optaresolutions.com
-18088
- Jackson
- Mark Ferguson
- mark.ferguson&jacksonmsc.com
-18089
- Inovis Inc.
- Daniel Nemec
- hostmaster&inovis.com
-18090
- FrogNet, Inc.
- Operations Group
- noc&frognet.net
-18091
- CaboVerde
- Marcio Ribeiro
- mmr&caboverde.com.br
-18092
- Ssji Networks
- Nicolas Pouillon
- nipo&ssji.net
-18093
- K-Opticom Corporation
- Masahiro Teramoto
- teramoto&tech.k-opti.com
-18094
- Kingdom LAN Network
- Wong Tsang
- wongtsang&kingdom-lan.net
-18095
- Beijing Neutron TeleCOM Co. Ltd.
- Zhengyu Fang
- zyfang&neutrontek.com
-18096
- Advanced Ceramics Research, Inc.
- Baruch Spence
- bspence&acrtucson.com
-18097
- Sevilla Project
- Bas van Ulden
- bvanulden&quicknet.nl
-18098
- alexander stensrud
- alexander stensrud
- contact&stensrud.nu
-18099
- Amoke Networks Pvt. Ltd.
- Manas Garg
- manas&amoke.com
-18100
- Descom Consulting Ltd.
- Remigius Stalder
- remigius.stalder&descom-consulting.ch
-18101
- Adaptive Mobile Security Ltd.
- Brendan Dillon
- bdillon&adaptivesecure.com
-18102
- Leostream Corp
- David Crosbie
- snmp&leostream.com
-18103
- Shanghai Helitech Telecommunication Co.,Ltd Neijing Technical Branch
- Mr. Gong Wendong, Jimmy Gong
- jimmy.gong&helitechchina.com, gwd&263.net
-18104
- net-worked.co.uk
- Greg Dawson
- gregdawson&net-worked.co.uk
-18105
- Calyptix Security Corporation
- Lawrence Teo
- oid-admin&calyptix.com
-18106
- University of Iceland Computing Services
- Elias Halldor Agustsson
- mib-admin&hi.is
-18107
- EEG Enterprises, Inc.
- Philip T. McLaughlin
- philm&eegent.com
-18108
- PingID Network, Inc.
- David Waite
- david.waite&pingid.com
-18109
- NeoSpire, inc.
- Sean Bruton
- sbruton&neospire.net
-18110
- Speakeasy, Inc.
- Speakeasy NOC
- noc&speakeasy.net
-18111
- A.I.C. Communications, Inc.
- Robert Wu
- robert&aicphone.com
-18112
- oDesk Corp.
- Odysseas Tsatalos
- otsatalos&odesk.com
-18113
- Wanspot.com Inc.
- Jim Mercer
- jim&wanspot.ca
-18114
- Twotrees Technologies, LLC
- Michael Dunnell
- oidcontact&twotrees.net
-18115
- ICRISAT
- Ram Kumar B
- r.kumar&cgiar.org
-18116
- Node Computing Solutions
- John Rodger
- jrodger&nodecs.com
-18117
- HTK NetCommunication Oy (PHNet)
- Kimmo Liikonen
- helpdesk&phnet.fi
-18118
- New Voice International AG
- G. M. Brigati
- smi&newvoice.ch
-18119
- MONOPRIX
- David DECARRIERE
- ddecarriere&monoprix.fr
-18120
- Hyder Consulting PLC
- Chris Dando
- chris.dando&hyderconsulting.com
-18121
- ObjectSource Software GmbH
- Patrick Shinnick
- ps&objectsource.de
-18122
- Universidade de Sao Paulo
- Alberto Camilli
- cceadmin&usp.br
-18123
- Pleasant Ridge Waldorf School
- John Conlon
- jconlon&verticon.com
-18124
- Verticon, Inc.
- John Conlon
- jconlon&verticon.com
-18125
- End To End
- Dave Robinson
- drobinson&endtoend.com
-18126
- Quantum Internet Services, Inc.
- Justin Boswell
- jboswell&qis.net
-18127
- Net Consequence GbR
- Peter Turczak
- pt&netconsequence.com
-18128
- Komos
- Jun Kawai
- oid-contact&komos.org
-18129
- Yorkshire Building Society
- Darren Mason
- dbmason&ybs.co.uk
-18130
- CdC-Sagax
- Carlos Heras Vila
- c.heras&cablescom.com
-18131
- Echoraith
- Allan Lloyds
- contact&echoraith.net
-18132
- Fundación Universidad del Norte
- María Gabriela Calle Torres
- mcalle&uninorte.edu.co
-18133
- Genesis Networks and Communications, Inc.
- Herman Strom
- herman&gncom.net
-18134
- CEPRI
- Zhao hongbo
- zhaohb&epri.ac.cn
-18135
- Nortel Networks Netas
- Levent Seckin
- lseckin&netas.com.tr
-18136
- Delsyne Software srl
- Alex Balut
- aleb&delsyne.ro
-18137
- Wegener Communications, Inc.
- Elias J. Livaditis
- eliasl&wegener.com
-18138
- Adwise Ltd.
- Eliezer Rotshtein
- laser6&walla.co.il
-18139
- NTT FACILITIES,INC.
- Wataru Horita
- mib&rd.ntt-f.co.jp
-18140
- PetT Luxembourg
- SCHEER Jean-Marie
- jean-marie_scheer&ept.lu
-18141
- RRZN, Leibniz Universitaet Hannover
- Torsten Glaeser
- hostmaster&rrzn.uni-hannover.de
-18142
- Gruender-AV
- Thomas Gruender
- info&gruender-av.de
-18143
- Lindenaar
- Frederik Lindenaar
- frederik&lindenaar.net
-18144
- Michael Vistein
- Michael Vistein
- iana&vistein.de
-18145
- Agricultural Mineral Prospectors Inc.
- Peter J. Slack
- pslack&sentex.ca
-18146
- PS Solutions Ltd.
- Danilo J. Castro Jr.
- danilo&pssolucoes.com.br
-18147
- TerraLuna
- Steve Traugott
- stevegt&TerraLuna.Org
-18148
- cool.de
- Thomas Brettinger
- tb&cool.de
-18149
- B.I. Tecnologia Ltda
- Flavio Pinto Freire Jr.
- flavio.freire&bitecnologia.com
-18150
- Webage
- Walter Alt
- alt&webage.de
-18151
- Pflug Datentechnik
- Michael Pflug
- oid-mgmt&pflug.de
-18152
- ezGet.net
- QuanSheng Liang
- liang&ezget.net
-18153
- Software Engineering GmbH
- Michael Heim
- Michael.Heim&gmx.com
-18154
- Telnet Media Ltd
- David Taylor
- sysrego&telnetmedia.com
-18155
- Stilpo Laboratories
- David G. Smith
- d.smith&stilpo.com
-18156
- Great Pacific Industries Inc.
- Internet Administration
- internet_administration&owfg.com
-18157
- Willowglen MSC Berhad
- Teh Kok How
- khteh&willowglen.com.my
-18158
- GATSWAY DATA COMMUNICATION TECHNOLOGY CO.,LTD.
- zhihua ouyang
- scorpio30cn&yahoo.ca
-18159
- Accordance Systems Inc.
- Mike LIU
- sales&accordance.com.tw ; mikeliu&so-net.net.tw
-18160
- SHENZHEN GBIT ELECTRONIC TECHNICAL LTD.
- Michael Zhang
- szszjs&public.szptt.net.cn
-18161
- iPoint Ltd.
- Kirill Lebedev
- info&ipoint.ru
-18162
- EYME Technologies Pvt. Ltd.
- Jerry P. Philip
- jerry.philip&bh.ey.com
-18163
- Commit; Oy
- Konstantin Vdovenko
- konstantin.vdovenko&commit.fi
-18164
- Office of the Prime Minister
- Stein A. Haakafoss
- sah&smk.dep.no
-18165
- VB Pros Oy / RS-Solutions
- Kauko Sirén
- kauko.siren&rs-solutions.net
-18166
- Chalmege
- Bruno Meyrieux
- bruno&meyrieux.net
-18167
- Integro Networks
- Bruno MEYRIEUX
- bruno.meyrieux&integro-networks.com
-18168
- Infogate-Online Ltd
- Oren Cohen Shwartz
- OrenC&INFOGATEONLINE.COM
-18169
- DOTFLUX
- Vincent GRENIER
- iana&dotflux.com
-18170
- Inno.com
- Patrick Snelders
- Patrick.Snelders&inno.com
-18171
- Torchbox Ltd
- Tom Dyson
- sysadmin&torchbox.com
-18172
- AP-WDSL GbR
- Stefan Pfetzing
- info&ap-wdsl.de
-18173
- Ramanam Software Distributors Private Limited
- Anupam Kumar
- anupam&ramanam.com
-18174
- Wisconsin Department of Justice
- Rhonda Thompson
- thompsonrd&doj.state.wi.us
-18175
- Araknos Srl
- Maurizio Dal Re
- info&araknos.it
-18176
- Pikeville Methodist Hospital
- Rusty W. Shanklin
- rusty.shanklin&pikevillehospital.org
-18177
- INPE
- Gustavo Beltrami Rossi
- rossi&lac.inpe.br
-18178
- Front Range Internet, Inc.
- Neil Neely
- neil&frii.net
-18179
- Quest Software, Inc. (formerly 'Vintela Inc.')
- Eric Baurle
- iana&quest.com
-18180
- UNIT Ltd.
- Daniel Vanco
- Daniel.Vanco&unit.sk
-18181
- Western Union Financial Services, Inc
- William Van Glahn
- bill.vanglahn&westernunion.com
-18182
- Ahold Information Services
- Eric Newman
- eric.newman&aholdusa.com
-18183
- Systems Atlanta, Inc.
- Richard Rutledge
- rutledge&sysatl.com
-18184
- ackrium
- Alain Kamuleta
- alainkamuleta&hotmail.com
-18185
- Rene van Rooyen
- Rene van Rooyen
- rene&vanrooyen.com
-18186
- Awacs ltd
- Michael Sutton
- iana&awacs.co.nz
-18187
- Linkwise Software(Shanghai) Co.,Ltd
- Shi Zengwei
- shizw&linghui.com
-18188
- Torinet
- Dais Kim
- ggoma&torinet.co.kr
-18189
- Direction Générale des Impôts
- Eric BEAURY
- bureau.si3-dai&dgi.finances.gouv.fr
-18190
- dabs.com PLC
- Wezley Hunter
- whunter&beta.dabs.com
-18191
- Audiovision
- Christelle Fostiez
- audio-vision&skynet.be
-18192
- eSchoolOnline
- Michael Abato
- mabato&classroom.com
-18193
- Ruban Consulting
- Dima Ruban
- dima-iana&rdy.com
-18194
- Bewer-Enterprises
- Nino Bewer
- ldap&bewer-enterprises.de
-18195
- Xsec Srl
- Simo Sorce
- info&xsec.it
-18196
- Landeszahnärztekammer Sachsen
- Peter Lange
- lange&lzk-sachsen.de
-18197
- Sony Communication Network Corporation
- Yukio Yakushijin
- jin&scn.co.jp
-18198
- Zemilogix, LLc
- Leighton Esdaille
- leighton&zemilogix.com
-18199
- Objective Data Storage
- Dean Beilke
- beilke&objectivedatastorage.com
-18200
- Software Expedition
- Thomas Berry
- swexpedition&nc.rr.com
-18201
- Bestseller A/S
- Regnar Knudsen
- regnar.knudsen&bestseller.com
-18202
- Belatronix Kommunikation & EDV
- Axel Beierlein
- belatronix&web.de
-18203
- TC Electronic A/S
- Niels Farver
- NielsF&tcelectronic.com
-18204
- HPD Software, LLC (formerly 'Computer And Software Enterprises, Inc.')
- Dave Oksner
- admin-oid&hpdsoftware.us
-18205
- Pioneer Industries, Inc.
- Gary Chen
- garychen&ucla.edu
-18206
- iVolve Pty Ltd
- David Eagles
- david.eagles&ivolve.com
-18207
- ANTs software inc.
- Jeffrey Spirn
- jeff.spirn&antssoftware.com
-18208
- TeleSym
- Michael A. Carlson
- michaelc&telesym.com
-18209
- Midwest Radiology of Kentucky
- Jason A. Taylor, R.T.(R)
- midwestradiology&yahoo.com
-18210
- Agilis Communication Technologies Pte Ltd
- Chen Xuesong
- chenxs&agilis.st.com.sg
-18211
- Catalina Computers & Discount
- Michael Wozniak
- sales&catalinas.net
-18212
- A && L soft, s.r.o.
- Petr Kadlec
- kadlec&alsoft.cz
-18213
- Voxsant Resources, Inc.
- Joel Realubit
- joel&voxsant.com
-18214
- Olgierd Ziolko
- Olgierd Ziolko
- hostmaster&eris.rpg.pl
-18215
- Metro Packet Systems, Inc.
- Fredrik Orava
- fredrik&mpacket.com
-18216
- AnyWeb AG
- David Knecht
- david.knecht&anyweb.ch
-18217
- Profium OY
- Tero Hagstrom
- th-iana&profium.com
-18218
- DIGORA
- Laurent Dufosse
- laurent.dufosse&digora.com
-18219
- Salten Bredband AS
- Kay Ove Kjerpeseth
- kay.kjerpeseth&sks.no
-18220
- W en J
- joop gerritse
- jjge&xs4all.nl
-18221
- SY Electronics Ltd
- Stephen Wright
- stephen&syelectronics.co.uk
-18222
- Hopitaux Universitaires de Strasbourg
- Denni
- laurent.denni&chru-strasbourg.fr
-18223
- W-OneSys S.L.
- Daniel Fraile Vergel
- dfraile&w-onesys.com
-18224
- Dipl.-Inf. Carsten Dumke
- Carsten Dumke
- cdumke&cdumke.de
-18225
- guenever.net
- Pedro Cuenca
- pcuenca&ieee.org
-18226
- imap4all B.V.
- Brendan Bank
- brendan&gnarst.net
-18227
- OpenCA
- Massimiliano Pala
- project.manager&openca.org
-18228
- University Of Stuttgart
- Michael Stegmüller
- Michael.Stegmueller&tik.uni-stuttgart.de
-18229
- Sonitrol Security Systems of Hartford, Inc.
- Marc Swanson
- mswanson&sonitrol.net
-18230
- Conectium Limited
- Erasmo Zubillaga
- ezubillaga&conectium.com
-18231
- Clear Reach Networks, Inc.
- Justin Nelson
- inan&clearreach.net
-18232
- Equipos Telemo E.T. S.A.
- Anibal Itriago
- anibal&telemo.com.ve
-18233
- HEC Montreal
- Pierre Berard
- Admin.Unix&hec.ca
-18234
- NetSrv Consulting Ltd
- Mr Colin Woodcock
- colin.woodcock&netsrv-consulting.com
-18235
- Andreas Schulze
- Andreas Schulze
- iana-oid&andreasschulze.de
-18236
- McGill University
- Ron Hall
- ron.hall&mcgill.ca
-18237
- IntelliVid Corporation
- Systems Administrator
- enterprise-number&intellivid.com
-18238
- SkyLink Design
- Ryan Hodgson
- ryan&skylinkdesign.com
-18239
- DTS, Inc. (formerly 'Digital Theater Systems, Inc')
- Phil Maness
- phillip.maness&dts.com
-18240
- berger.de
- Thomas Berger
- thomasberger&t-online.de
-18241
- w3design
- Pascal Suter
- info&w3design.ch
-18242
- Wyyzzk, Inc.
- Jason Winters
- jason&txt.com
-18243
- G&J FOSTER TECHNOLOGIES, INC.
- RICHARD W. FOSTER
- rfoster&ccc.edu
-18244
- Matisse Networks Inc
- S. Sampath
- sampath&matissenetworks.com
-18245
- Dishnet DSL Ltd.
- Geeta Bora
- geetab&ddsl.net
-18246
- Degussa AG
- Andre Giza
- is-net-ds&degussa.com
-18247
- IT&T s.r.l.
- Andrea Spinelli
- aspinelli&imteam.it
-18248
- PaPouch elektronika
- Tomas Jantac
- steiger&papouch.com
-18249
- Arcane Project
- Diego Alvarez
- diego.alvarez&microserv.cl
-18250
- TECHNOLOGIES RESEAUX & SOLUTIONS
- Alain Patrick AINA
- aalain&trstech.net
-18251
- Beijing ACT Technology Co., Ltd.
- Zhou Ying
- zhouying&act-telecom.com
-18252
- Symmetrus Systems Ltd.
- Jim Marsden
- jim.marsden&alertbase.com
-18253
- mVerify Corporation
- Mark Yedinak
- mark_yedinak&mverify.com
-18254
- Mimezine
- Jason Bubolz
- mycroft&mimezine.org
-18255
- Taller de Ideas (de C. Daniel Mojoli B.)
- C. Daniel Mojoli B.
- cdmojoli&idea.com.py
-18256
- Babcock & Wilcox Company (McDermott)
- Robert Aldridge
- realdridge&babcock.com
-18257
- KHAMSIN Security GmbH
- Tom Knienieder
- knienieder&khamsin.ch
-18258
- Binken.com
- Laurens Binken
- oid&binken.com
-18259
- CBTCBT Inc.
- David R. Land
- drland&cbtcbt.com
-18260
- Bandapart.Net
- Alan Martins
- alan.martins&bandapart.net
-18261
- TigerByte
- Clint Miller
- cmiller&tigerbyte.com
-18262
- Technicolor Media Asset Management
- Michael Druckman
- Michael.Druckman&Technicolor.Com
-18263
- Sanders Technology & Design
- John Sanders
- jsanders&radix.net
-18264
- ICT Group HHW
- S. van Rijn
- info&ictgroup.nl
-18265
- Kestrel Technologies, Inc.
- Chris Kennedy
- chris&mainecoon.com
-18266
- Dallas Genealogical Society
- Mitch Mitchell
- database&dallasgenealogy.org
-18267
- NEOJAPAN, Inc.
- Yousuke SASAKI
- sasaki&neo.co.jp
-18268
- SkyNet Network Security System Integration co.,Ltd.
- Andy Yuan
- snmp&sns.net.cn
-18269
- Mapfre
- Joaquin Gonzalez
- jgl&mapfre.com
-18270
- BANKSYS
- Guy Van Overtveldt
- guy.vanovertveldt&banksys.be
-18271
- CIFOM-ESNIG
- Huguenin Dominique
- Dominique.Huguenin&cpln.ch
-18272
- Alerta Comunicaciones SAL
- J. Pablo GARCIA
- jpgarcia&alertacomunicaciones.com
-18273
- French Senate
- Stéphane Gaubert
- s.gaubert&senat.fr
-18274
- Shenzhen Experiment School
- Liu Qiu Ming
- lqm&szsy.net
-18275
- CIBERNET Corporation
- Anthony Sorace
- anthony&cibernet.com
-18276
- Lurcher Link
- Nick Gorham
- nick&lurcher.org
-18277
-
-
- ---none---
-18278
- Columbus Metropolitan Library
- Dirk Prusok
- dprusok&columbuslibrary.org
-18279
- Rainer Fischer, EDV-Service
- Rainer Fischer
- support&rf-edv-service.net
-18280
- NetTempo, Inc.
- Tim Irvin
- irvin+iana&nettempo.com
-18281
- Bodacion Technologies, LLC.
- Eric Hauk
- hauk&bodacion.com
-18282
- Muttsoft, Inc
- Robert Ambrose
- rna&muttsoft.com
-18283
- Paraxip Technologies
- Sebastien Trottier
- iana.3.strot_at_paraxip&spamgourmet.org
-18284
- EXEMYS SRL
- Francisco J. Remersaro
- fremersaro&exemys.com
-18285
- Vidiator Technology Inc.
- Danny Kim
- dannyk&vidiator.com
-18286
- Assurent Software Inc.
- R. Neil Begin
- nbegin&fscinternet.com
-18287
- InnoPath Software
- Yuko Tanaka
- ytanaka&innopath.com
-18288
- RABA Technologies LLC
- Paul Chakravarti
- paul.chakravarti&raba.com
-18289
- Router Management Solutions, Inc.
- Michael Hutt
- hutt&ieee.org
-18290
- szeles tibor
- Tiberius Szeles
- szelest&t-online.de
-18291
- Ligfy
- Laurent Fouillé
- laurent&ligfy.org
-18292
- Metis Oy
- Petri Riihikallio
- petri.riihikallio&metis.fi
-18293
- Blackhawk Internet Communications Inc.
- Jason L. Nesheim
- jason&bhawk.net
-18294
- Cambridge University Press
- Paul Canham
- netadmin&cambridge.org
-18295
- Applied Software Solutions, LLC
- Mark Usrey
- mark.usrey&appss.com
-18296
- Emigrant Savings Bank
- Steven De Maio
- DeMaioS&emigrant.com
-18297
- Symbium Corporation
- David Watson
- dwatson&symbium.com
-18298
- drugref.org
- Dr. Horst Herb
- hherb&drugref.org
-18299
- Institute for International Ecomonic and Political Studies, Russian Academy of Sciences
- Andrew Paschenko
- andrew&nop.ru
-18300
- Xoba Inc.
- Mike Andrews
- snmp&xoba.com
-18301
- Datacard Corporation
- Alla Johnson
- alla_johnson&datacard.com
-18302
- Metroplex Webs
- Chuck Gudgel
- chuck&metroplexwebs.com
-18303
- Sollae Systems Co.,Ltd.
- Yoon, YoungChan
- ycyoon&eztcp.com
-18304
- Douglas Needham
- Douglas Needham
- netadmin&ka8zrt.com
-18305
- North American Astrophysical Observatory
- Douglas Needham
- hostmaster&naapo.org
-18306
- Sichuan e-link Co., Ltd.
- Alexandre Tsu
- alexela&e-link.cn
-18307
- Eadiefleet Corporation
- Michael Halliday
- michael&eadiefleet.com
-18308
- aphona Kommunikationssysteme Entwicklungs- und VertriebsgmbH
- Gerald Hoch
- gerald.hoch&aphona.net
-18309
- Einsle
- Robert Einsle
- robert&einsle.de
-18310
- Heitec AG
- B. Luevelsmeyer
- bdluevel&heitec.net
-18311
- Linzies' computers
- Linzie T. Oliver
- oliverlt&tre357.gotdns.com
-18312
- Data Flow Systems
- David Odom
- dodom&koostech.com
-18313
- Bodacion Technologies, LLC.
- Eric Hauk
- hauk&bodacion.com
-18314
- Canberra Industries
- Troy Anderson
- tanderson&canberra.com
-18315
- McCormick & Company, Inc.
- Stephen Morris
- stephen_morris&mccormick.com
-18316
- Ordination Med.-Rat Dr. Roesler
- Rupert Roesler-Schmidt
- iana-link&drroesler.com
-18317
- Muttsoft, Inc
- Robert Ambrose
- rna&muttsoft.com
-18318
- Copel Telecomunicações S/A
- Ednei Teruaki Iamaguti
- ednei.iamaguti&copel.com
-18319
- Asociación Nacional Ecuménica de Desarrollo
- Cody Fauser
- codigo&irk.ca
-18320
- Hydrologic Consultants, Inc of Colorado
- Kevin Fries
- it&hcico.com
-18321
- Universidad del Sagrado Corazon
- Cesar G. Calderon
- cgcalderon&sagrado.edu
-18322
- ITaCS GmbH
- Björn Schneider
- bjoern.schneider&itacs.de
-18323
- Mindways Software, Inc.
- Stephen Blankespoor
- steve&qct.com
-18324
- Press Communications P/L
- Trevor Press
- tpress&press.com.au
-18325
- Advanced Relay Corporation
- Ulrich Richers
- arc&advancedrelay.com
-18326
- InfoGin Ltd.
- Daniel Yaghil
- daniel&infogin.com
-18327
- 42networks AB
- Per Backstrom
- per.backstrom&42networks.com
-18328
- OpenMIND Networks Limited
- Brian Kelly
- iana-openmind&sulaco.com
-18329
- AMC Ltd.
- Jim Gilbey
- jimg&amcuk.com
-18330
- Electrobusiness Connections Inc.
- Ibrahim Hamouda
- ihamouda&electrobusiness.com
-18331
- Huber S-Consulting GmbH
- Gert Kössler
- koessler&hscon.de
-18332
- ANF Autoridad de Certificación
- Florencio Diaz
- fdiaz&anf.es
-18333
- ANF AC Entidad de Certificación Perú S.A.C.
- Florencio Diaz
- fdiaz&anf.es
-18334
- KONICA MINOLTA HOLDINGS, INC.
- Tomoyuki Ishii
- Tom.Ishii&konicaminolta.jp
-18335
- Melloul-Blamey Construction Inc.
- Richard Bourque
- richard.bourque&melloul.com
-18336
- Computer Logix
- Richard Bourque
- richard.bourque&computerlogix.net
-18337
- creedon engineering
- ted creedon
- tcreedon&easystreet.com
-18338
- Centrum voor Wiskunde en Informatica
- A. van der Klaauw
- ldap-managers&cwi.nl
-18339
- ANF AC MALTA, LTD.
- Florencio Diaz
- fdiaz&anfacmalta.com
-18340
- Proquest Information and Learning
- Stephen Ulicny
- preroot&il.proquest.com
-18341
- The Institute for Open Systems Technologies Pty Ltd
- Greg Baker
- gregb&ifost.org.au
-18342
- CEYONIQ Technology GmbH
- Stefan Niemann
- s.niemann&ceyoniq.com
-18343
- Performance Solutions Limited
- Don MacKenzie
- Don.MacKenzie&perform-sol.com
-18344
- Intmain.Com
- C. Larson
- cal&intmain.com
-18345
- Messagesoft Inc.
- Jonathan Jiang, Li Wang
- lwang&messagesoft.com
-18346
- Sebastian Denef Computer Service
- Sebastian Denef
- design&denef.de
-18347
- MAUSER-Werke GmbH & Co. KG
- Dr. Bernhard Rohde
- bernhard.rohde&mauser-group.com
-18348
- Avitech International Corp.
- Morris Gong
- morris&avitechvideo.com
-18349
- Luther Seminary
- Mark Solhjem
- hostmaster&luthersem.edu
-18350
- Polva Central Library
- Alvar Kusma
- alvar&raamat.polva.ee
-18351
- Velare Technologies Inc.
- Serguei Mourachov
- smourachov&velare.com
-18352
- Sony Pictures Imageworks
- Robert Brophy
- brophy&imageworks.com
-18353
- MAUSER-Werke GmbH & Co. KG
- Dr. Bernhard Rohde
- bernhard.rohde&mauser-group.com
-18354
- Calyptech Pty Ltd
- Gus Paolone
- gus.paolone&calyptech.com
-18355
- Avitech International Corp.
- Morris Gong
- morris&avitechvideo.com
-18356
- kevinstevens.info
- Kevin Stevens
- contact&kevinstevens.info
-18357
- Full Frontal Ingenuity LLC (formerly 'Leathern Apron Incorporated')
- Paul Talbot
- paul&fullfrontalingenuity.com
-18358
- EPITECH
- Notre RN nationnal
- dacydays2003&hotmail.com
-18359
- Intransa, Inc.
- Walt Drummond
- walt.drummond&intransa.com
-18360
- INTEC Web and Genome Informatics Corporation
- Hitoshi Nozaki
- nozaki_hitoshi&webgen.co.jp
-18361
- A3 Security Consulting Co., Ltd.
- Kim jung woong
- jwkim&a3sc.co.kr
-18362
- Hong Kong CSL Limited
- K. S. Luk
- kar-shun.luk&hkcsl.com
-18363
- Epok, Inc.
- Perry Dillard
- perry.dillard&epokinc.com
-18364
- Nezabudka
- Eugene Samusev
- bitlz&nezabudka.ru
-18365
- Konzumbank Rt.
- VASARHELYI Daniel
- vasarhelyid&konzumbank.hu
-18366
- Applicata
- Dr. Ivan Bakardzhiev
- ivan&applicata.bg
-18367
- Nanoteq PTY LTD
- Pieter Claassens
- pc&nanoteq.com
-18368
- ComUnics Informatik GmbH
- Henning Hoecker
- oidadmin&comunics.de
-18369
- Phoenix Zeppelin spol. s r.o.
- Pavel Kusicka
- pavel.kusicka&p-z.cz
-18370
- Internet Consult SARL
- Vladimir Guevezov
- contact&i-consult.fr
-18371
- Pickering Interfaces Ltd
- Dan Roberts
- dan_roberts&pickeringswitch.com
-18372
- BalaBit IT Ltd.
- Balázs Scheidler
- balazs.scheidler&balabit.hu
-18373
- CSAS - Computer Systeme Arno Seidel
- Arno Seidel
- aseidel&gmx.li
-18374
- Andri Saar
- Andri Saar
- andri&kalatehas.net
-18375
- Ruprecht-Karls-Universitaet Heidelberg
- Michaela Wirth
- Michaela.Wirth&urz.uni-heidelberg.de
-18376
- ORGA Systems GmbH
- Marco Klein
- mklein&orga-systems.com
-18377
- Universita` degli Studi di Trieste
- Paolo Piccoli
- piccoli&units.it
-18378
- Eastern Kentucky University
- bob clark
- bobby.clark&eku.edu
-18379
- ExtraQuest, Corporation
- Edward Shephard
- eshephard&extraquest.com
-18380
- NEXTFOR S.A.
- Josu Eguileor
- josu&nextfor.com
-18381
- Suramericana de Seguros S.A.
- Angela Bernal
- angebeja&suramericana.com.co
-18382
- Bank of Valletta plc
- Herbert Zarb
- herbert.zarb&bov.com
-18383
- Enterux Solutions
- Mitul Limbani
- mitul&enterux.com
-18384
- Reflective Solutions Ltd.
- Ray McDermott
- ray.mcdermott&reflective.com
-18385
- Ecki Patang Org
- Claes Hammer
- hammer&skip.informatik.gu.se
-18386
- oshiire
- sho kisaragi
- sho&oshiire.to
-18387
- Litrius Group
- Joel Wickard
- jwickard&litriusgroup.com
-18388
- AstraZeneca
- Bo Skallefell
- bo.skallefell&astrazeneca.com
-18389
- Old Genie Hottabych Company
- Mikhail Y. Roudin
- m.roudin&hottabych.ru
-18390
- MTS S.p.A.
- Fabrizio Cazzulini
- cazzulini_fabrizio&mtsspa.it
-18391
- Learning Objects Network Inc.
- Tracy Flynn
- tracy.flynn&ima-gnu.com
-18392
- Applied Personal Computing, Inc.
- Daniel Bingham
- dan&apci.net
-18393
- Goblin
- Tom Linton
- toml&iinet.net.au
-18394
- Fred Chef Inc.
- Martin Groelz
- mgroelz&yahoo.com
-18395
- vivaxis SAS
- Pierre Lang
- pierre.lang&vivaxis.com
-18396
- Dassault Aviation
- Matthieu WILLM
- matthieu.willm&dassault-aviation.fr
-18397
- InfoSys
- Erik Campos M.
- ecampos&infosys.cl
-18398
- jMind Consulting Ltd.
- Robert Brautigam
- robert.brautigam&jmind.hu
-18399
- K/P Corporation
- Fred Yano
- FYano&kpcorp.com
-18400
- Kommandoraden
- Anders Dahlqvist
- anders&kommandoraden.info
-18401
- Xiqa Networks
- Jeff Thomas
- jeff&xiqa.net
-18402
- SecurityMetrics, Inc.
- Brad Caldwell
- brad&securitymetrics.com
-18403
- City of Chicago - Office of Budget Management
- Gene Chin
- gchin&cityofchicago.org
-18404
- United Nations Development Programme
- Anton Shmagin
- oid-admin&undp.org
-18405
- Redbird Informatics, Inc.
- Jose T. Montoya
- Jose.Montoya&RBInformatics.com
-18406
- Internetworking Ltd.
- Geoff Campbell
- Hostmaster&internetworking.co.uk
-18407
- Transcendence.net
- John West
- jwest&transcendence.net
-18408
- Association Ohana
- Nicolas MASSART
- nima&association-ohana.net
-18409
- Planet A.S.
- Ahmet Ekim
- ahmet.ekim&planet.com.tr
-18410
- Häme Polytechnic
- Jari Kivelä
- jari.kivela&hamk.fi
-18411
- DataCenterTechnologies
- Frank Valcke
- frank.valcke&datacentertechnologies.com
-18412
- Epoch Design Ltd
- Matthew Lenny (IT Administrator)
- itadmin&epochdesign.co.uk
-18413
- EGIM
- Geoffroy DESVERNAY
- info&esm2.imt-mrs.fr
-18414
- Imaginative IT Limited
- Martin Siddall
- msiddall&imaginativeit.co.uk
-18415
- ELM Computer Technologies Ltd.
- Chris Kwan
- ckwan&elm.com.hk
-18416
- Victron bva
- Wim Van de Mosselaer
- wimvdm&victron.be
-18417
- Argon Technologies Inc.
- Morgan Nelson
- maillist1&argontech.net
-18418
- Endace Technology
- Stephen Donnelly
- stephen&endace.com
-18419
- glaven.org
- Adam Bultman
- ContactEmail
-18420
- cerebrasoft
- Rob Butler
- rob_butler&hotmail.com
-18421
- tetera.org
- Ryo ONODERA
- ryo_on&yk.rim.or.jp
-18422
- AetherStorm.com
- Jeff Rodriguez
- iana&gurugeek.com
-18423
- NetHarmonix, Inc.
- Jim Blandford
- domainadmin&netharmonix.com
-18424
- MooreWare
- Ray Moore
- rcm&netharmonix.com
-18425
- COMCO AG
- Bernd Boom
- bernd.boom&comco.de
-18426
-
-
- ---none---
-18427
- Patrick Näf
- Patrick Näf
- iana.pen&herzbube.ch
-18428
- American Registry for Internet Numbers
- ARIN NOC
- noc&arin.net
-18429
- IT Consulting & Education Ltd.
- Orlin Marinov
- orlin&itce.com
-18430
- GenerationE Technologies LLC
- Michael E. Fannan Jr.
- michael.fannan&generationetech.com
-18431
- Stmk. Krankenanstalten GesmbH
- Robert Ferk
- robert.ferk&kages.at
-18432
-
-
- ---none---
-18433
- deny all
- Stephane CAUNES
- scaunes&deny-all.com
-18434
- University of Leipzig
- Steffen Rettig
- steffen.rettig&uni-leipzig.de
-18435
- Advanced Computer Systems, ACS S.P.A.
- Antonio Volono
- a.vollono&acsys.it
-18436
- Bell Mobility
- Elie Nasser
- elnasser&mobility.com
-18437
- W.I.S.V. Christiaan Huygens
- Adriaan de Jong
- pccom&ch.tudelft.nl
-18438
-
-
- ---none---
-18439
- Composite Software, Inc.
- Stephen Ahuero
- sahuero&compositesw.com
-18440
- peerix
- Atanas Argirov
- aa&peerix.org
-18441
- National Football League
- Michael Palmer
- palmerm&nfl.com
-18442
- Vimatix
- Jordan Sheinfeld
- jordan&vimatix.com
-18443
- Netsys.IT GbR
- Peter Steiert
- info&netsys-it.de
-18444
- Sandwich.Net Internet Services
- James Renken
- jrenken&sandwich.net
-18445
- Datacard Corporation
- Alla Johnson
- alla_johnson&datacard.com
-18446
- Ascendant Technologies, Inc.
- Corporate Security Administrator
- corpsec&aitva.com
-18447
- Willis Consulting
- Chris Willis
- cwillis&chriswillis.tzo.com
-18448
- Vanquish, Inc.
- Paul Weiss
- pgweiss&vanquish.com
-18449
- Alexander Gretha
- Alexander Gretha
- developer&chicken.sh
-18450
- SevenL Networks Inc.
- Todd Berman
- tberman&sevenl.net
-18451
- PC-Pool Physik, TU-Berlin
- Christian Hennig
- tutoren&physik.tu-berlin.de
-18452
- Tempod
- Peter Jansson
- snmpcontact&tempod.se
-18453
- The City Of Calgary
- Vin Bhola
- vin.bhola&calgary.ca
-18454
- OATSystems, Inc
- Vadim Pesochinskiy
- vadim&oatsystems.com
-18455
- MEDICAL INFOMATION CO., LTD.
- Kiyoshi Terasawa
- info&mdi.co.jp
-18456
- NetKlass Technology Inc.
- Jerry Wu
- jerry&netklass.com
-18457
- European Directorate for the Quality of Medicines & HealthCare, Council of Europe (EDQM) (formerly 'European Directorate for the Quality of Medicines')
- Christopher Jarvis
- christopher.jarvis&edqm.eu
-18458
- Image Processing Techniques Ltd
- Graeme Griffiths
- graeme&imageproc.com
-18459
- Semafor Informatik & Energie AG
- Sorin Marti
- mas&semafor.ch
-18460
- Powell Companies
- Michael Powell
- mikepowell&powellnetworking.com
-18461
- Osix Inc.
- Osman Erkan
- hoe&ttnet.net.tr
-18462
- Lifetree Convergence Ltd
- S.Sadasivam
- sss_7777&yahoo.com
-18463
- Spektar JSC
- Krassimir Slavchev
- krassi&bulinfo.net
-18464
- ROMATSA R.A.
- Ionut POSTARU
- netadmin&romatsa.ro
-18465
- TradeLink L.L.C.
- Alex Stade
- hostmaster&trdlnk.com
-18466
- Aviva Communications Inc.
- Gin-Pao Lu
- glu&avivacommunications.com
-18467
- AdvancePCS
- Rick Wenban
- rick.wenban&advancepcs.com
-18468
- hughes network systems
- John Merritt
- jmerritt&hns.com
-18469
- UNIS LUMIN INC.
- Rachel Chang
- rchang&unislumin.com
-18470
- Ingenieurbuero Michael Kappler
- Michael Kappler
- Michael.Kappler&Kappler-edv.de
-18471
- e-Scripps
- Ryan Scripps
- ryan&e-scripps.com
-18472
- Crystal Computer Corporation (Georgia)
- Earl Franklin
- earl.franklin&crystalcc.com
-18473
- Form-IT
- Preben S. Madsen
- psm&form-it.dk
-18474
- Etype Co.
- Andrey Cherezov
- cherezov&etype.net
-18475
- Research Institute of America
- David Levine
- david.levine&riag.com
-18476
- Actinium Network Sdn Bhd
- Siow Teck Seng
- siowts&actinium.org
-18477
- Bundesministerium des Innern
- Jan-Peter Trojok
- janpeter.trojok&bmi.bund.de
-18478
- Wehay AB
- Jonas Israelsson
- jonas&wehay.com
-18479
- FS-VDSL
- Bernard MARTI
- bernard.marti&francetelecom.com
-18480
- RF-DESIGN
- Ralf Mayr
- rf-design&t-online.de
-18481
- Trustworx GmbH
- Kai Danielmeier
- kai.danielmeier&trustworx.de
-18482
- ARCWave Inc.
- Sanjay Ravindra
- sravindra&arcwaveinc.com
-18483
- ROMATSA R.A.
- Ionut POSTARU
- netadmin&romatsa.ro
-18484
- ProcoliX
- Koen de Jonge
- info&procolix.com
-18485
- Marietta College
- Michael S. Robinson
- robinsom&marietta.edu
-18486
- Quickshift, Inc.
- Kenneth East
- keast&interactivesi.com
-18487
- Everbank
- Robb Penoyer
- tholloway&firstalliancebank.com
-18488
- Interbaun Communications, Inc.
- Saxon Jones
- netadmin&interbaun.net
-18489
- CarrierComm, Inc.
- Mark Lindsey
- MLindsey&CarrierComm.com
-18490
- Bolsa Nacional de Valores
- Rigoberto Torres
- soporte&bnv.co.cr
-18491
- NII Voskhod
- Mikhail Vinogradov
- mikle&nii.voskhod.ru
-18492
- Tacoma, spol.s r.o.
- Veroslav Kaplan
- vkaplan-prog&tac.cz
-18493
- ProcoliX
- Koen de Jonge
- ldap&procolix.com
-18494
- S.W.I.F.T. SCRL
- General Counsel, Legal Department
- isabelle.vasseur&swift.com
-18495
- GRAU DATA AG
- Werner Stephan
- werner.stephan&graudata.com
-18496
- Rolotec AG
- Edwin Schwab
- admin&rolotec.ch
-18497
- gec UOC Group
- Suport Tecnologia
- suport&gec.es
-18498
- A&M Consulting Co
- Ramon Aguirre
- aguirrr&netsolve.net
-18499
- PD3 Tecnologia em Redes e Sistemas Digitais
- Leonardo Pereira Santos
- lsantos&pd3.com.br
-18500
- Oddpost.com
- Iain Lamb
- oid-admin&oddpost.com
-18501
- Code Fusion cc.
- Stephan Buys
- s.buys&codefusion.co.za
-18502
- Mendel University of Agriculture and Forestry
- Petr Dadák
- dadak&pef.mendelu.cz
-18503
- Intelli7 Inc.
- Phillip H. Zakas
- phillip&intelli7.com
-18504
- Brainstorm Internet
- Network Deparatment
- network&brainstorminternet.net
-18505
- Tele-Consulting GmbH
- Reto Lorenz
- rlorenz&tele-consulting.com
-18506
- CAcert Inc.
- Philipp Gühring
- philipp&cacert.org
-18507
- Precise Time and Frequency, Inc.
- David S. Briggs
- dbriggs&ptfinc.com
-18508
- MURASHITA CONSTRUCTION INDUSTRY CO., LTD.
- Jyunji Ohta
- ohta&murashita.co.jp
-18509
- IVK Smart Software Solutions LLC
- Igor Kovalenko
- gogo-m&inbox.ru
-18510
- Reid Enterprises
- Ian Reid
- ireid&freeuk.com
-18511
- Centre Informatique Region Bruxelloise
- Mommens Jean-Pierre
- jpmommens&cirb.irisnet.be
-18512
- Schaake
- Christiaan Schaake
- chris&schaake.nu
-18513
- pete23.com
- Mr Peter Windle
- oidspace&pete23.com
-18514
- BekArts International
- Richard Beckmannflay
- richard&bekarts.com
-18515
- Nortech Management Ltd.
- Simon Hodgson
- simon&nortechonline.co.uk
-18516
- Eclipse Networking Limited
- Mark Lang
- mark&eclipse.net.uk
-18517
- Orbit Research Ltd
- Gavin Foster
- gfoster&orbitresearch.co.uk
-18518
- Crea d.o.o.
- Matej Trampus
- matej.trampus&crea.si
-18519
- Jahi Networks Inc.
- Raju Datla
- raju&jahinetworks.com
-18520
- APSI Inc.
- Bruce
- bishkin&core.com
-18521
- TakeNET
- Vinícius Augusto Sacramento Ferreira
- vinicius&takenet.com.br
-18522
- Unassigned
- Removed 2011-03-08
- ---none---
-18523
- Liverton Limited
- Brendan Law
- Brendan.Law&Liverton.com
-18524
- Empresa Metalúrgica Central de Acero "José Valdes Reyes"
- Victor J. Calderín Rodriguez
- vjcr2&yahoo.es
-18525
- robinbowes.com
- Robin Bowes
- robin-iana&robinbowes.com
-18526
- Fisk Labs, Inc.
- Dave Fisk
- dave&fisklabs.com
-18527
- Maersk Data Organisator A/S
- Joergen Richter
- jri&maerskdata.dk
-18528
- Cetelem
- Olivier Toche
- dom-tech&cetelem.fr
-18529
- Swisscom-Eurospot
- Fred Brunken
- registration&eurospot.com
-18530
- NightCity.net
- Matt Kleifgen
- mkleifgen&comcast.net
-18531
- DecisionPoint Applications, Inc.
- Clayton Mitchell
- claytonm&dpapps.com
-18532
- The University of New Brunswick
- Ben Steeves
- bcs&unb.ca
-18533
- NTH A.G.
- Damir Jurica
- oidadmin&nth.ch
-18534
- MCI
- Jim Potter
- jim.potter&mci.com
-18535
- Echostar Data Services
- Marc Carmen
- marc.carmen&echostar.com
-18536
- Oolong project
- Takashi Suzuki
- suzuki&oolong.jp
-18537
- TAM Internet service Ltd.
- Mamoru Nishida
- nishida&tamnet.co.jp
-18538
- R.L. Phillips, Inc.
- Mike Houston
- mhouston&rlphillips.com
-18539
- flagwireless.com
- Chris Greenough
- Chris.Greenough&nau.edu
-18540
- Webmeesters
- R. van der Steenhoven
- commerce_iana&webmeesters.nl
-18541
- Roland Baum System Consult
- Roland Baum
- rbaum&nexplosion.de
-18542
- Sphinx Information Technologies Inc.
- Ibrahim Hamouda
- linux&sphinxinfotech.net
-18543
- Innove Communications
- Melvin A. Esperas
- melvin&globequest.com.ph
-18544
- ecofinance
- Wolfgang Bachmann
- wolfgang.bachmann&ecofinance.com
-18545
- Joint-stock company "Trading System Administrator of Wholesale Electricity Market Transactions"
- Aleksander Lashmanov
- ats.iana&rosenergo.com
-18546
- FAST Video Security AG
- Andreas Malzahn
- support&fast-security.com
-18547
- Amanda Emily
- Amanda Emily
- aemily&colsd.org
-18548
- Relationalware
- Jon Pounder
- jonp&relationalhost.com
-18549
- Kealia Inc.
- Dapeng Zhu
- dapeng&kealia.com
-18550
- Gemplus do Brasil
- FELIPE CARASSO
- felipe.carasso&gbn-br.com
-18551
- Anders Bystrup IT
- Anders Rostgaard Bystrup
- anders_bystrup&hotmail.com
-18552
- Firevue Security Systems
- Jason DeStefano
- support&firevue.com
-18553
- Arachne Prime Inc.
- Patrick Golec
- iana&arachneprime.com
-18554
- Xenotropic Systems
- Jeremy McDermond
- mcdermj&xenotropic.com
-18555
- youneek organisation limited
- Adrian Aitken
- mib&youneek.org
-18556
- Zaurum ECP project
- Konstantin Boyandin
- konstantin&zaurum.com
-18557
- Hurray!Solution Ltd.
- zhenhua zou
- zhzou&hurray.com.cn
-18558
- WUSHIGONG Ltd.
- calayman
- calayman&linux.net
-18559
- Softpak International
- Shahid Saeed
- shahid&softpakint.com
-18560
- Makedonski Telekomunikacii, MTnet
- Stevco Risteski
- noc&mt.net.mk
-18561
- StarNIC
- Md. Mahbubur Rahman
- webmaster&starnic.net
-18562
- Jazz Telecom, S.A.
- Jose Ignacio Garcia - David Garcia
- jgarcial&jazztel.com
-18563
- DarkPhuture Technologies, Research & Development
- Aaron J. Angel
- Aaron.J.Angel&DarkPhuture.org
-18564
- BFI-Burgenland
- Karl SCHUH
- k.schuh&bfi-burgenland.at
-18565
- SCHUH-TV
- Karl SCHUH
- k.schuh&schuh-tv.at
-18566
- Hogeschool Gent
- Denis Amelynck
- denis.amelynck&hogent.be
-18567
- Epic Systems Corporation
- Daniel Pum
- dpum&epicsystems.com
-18568
- Service Availability Forum
- Bill Swortwood
- bill.swortwood&motorola.com
-18569
- Ensequence, Inc.
- Aslam Khader
- akhader&ensequence.com
-18570
- GreenPulse Limited
- Ron Segal
- ron&greenpulse.com
-18571
- Mindhut Limited
- Ron Segal
- ron&mindhut.com
-18572
- ORC
- Paul A. Johnson
- paul.johnson&nsc1.net
-18573
- Educate Inc.
- Allen Wooden
- allen.wooden&educate.com
-18574
- Hush Communications Canada Inc.
- Kevin Roeder
- kevin&hushmail.com
-18575
- Sagem Morpho, Inc.
- Jeff Sparks
- jeff.sparks&morpho.com
-18576
- Typosign AG
- Stephan Pulver
- spulver&music.ch
-18577
- Contemporary Cybernetics Group, Inc.
- R Martin Aherron
- martin&cybernetics.com
-18578
- Eardown
- Scott Ware
- scott&eardown.com
-18579
- Clear Edge Networks LLC
- Mark Lewis
- mark&clearedgenetworks.com
-18580
- Whetstone Software
- James Whetstone
- jameswhetstone&hotmail.com
-18581
- SPD-Bundestagsfraktion
- Fredo Sartori
- sartori&spdfraktion.de
-18582
- Slack Ltd.
- Robert Stucke
- r_stucke&yahoo.com
-18583
- Bit 9 Inc.
- Ian Poynter
- contact-a&bit9inc.com
-18584
- Avanex Co.
- Phillip Wang
- phillip_wang&avanex.com
-18585
- GuangDong Poson Company.Ltd
- Chenxiangyun
- chenxiangy&gsta.com
-18586
- bbassett.net
- Brian Bassett
- bbassett&bbassett.net
-18587
- Fortess Ltd.
- Konstantin Boyandin
- register&fortess.com
-18588
- Mekhanika-Service, Ltd.
- Igor Osin
- osinig&mekhanika.ru
-18589
- GlobeTOM (Pty) Ltd
- Ben Hechter
- ben.hechter&globetom.co.za
-18590
- Sterci SA
- Martinez Marc
- marc.martinez&sterci.com
-18591
- HORUS HARDWARE S.A.
- Fernando Ramirez
- fernando.ramirez&horushardware.com
-18592
- Universita' degli Studi di Milano-Bicocca
- Luisella Sironi
- sysadmin&unimib.it
-18593
- Ministry of Finance, Tax Administration of the Republic of Slovenia
- Breda Hudej
- Breda.Hudej&gov.si
-18594
- Globalvision Media
- Peter Brownell
- peter&globalvision.com
-18595
- Berufsbildende Schulen I - Uelzen
- Ulrich Drolshagen
- dr&bbs1-uelzen.de
-18596
- Professional Computers Services Organization
- Don Davis
- don.davis&pcso.com
-18597
- HELIOS Software GmbH
- Martin Reinders
- martin&helios.de
-18598
- Firebox Internet Technologies
- Scott Roeder
- admin&firebox.ca
-18599
- Fachhochschule Hagenberg
- Ing. Wolfgang Friesenecker
- wolfgang.friesenecker&fh-hagenberg.at
-18600
- Marzek Etiketten GmbH
- Mr. Martin Petraschek
- petri&marzek.at
-18601
- Blue Mountains Grammer School
- Garry Optland
- goptland&bmgs.nsw.edu.au
-18602
- MediaZen Corp.
- Heungkyu Lee
- hklee&mediazen.co.kr
-18603
- Powercn
- xueshaowen
- xueshaowen&powercn.com
-18604
- Delta E.S., a.s.
- Ivan Sajban
- ivan.sajban&delta.sk
-18605
- RiS Gmbh
- Thomas Brandtner
- brandtner&ris.at
-18606
- Orbitel, Inc.
- Stanislav Grozev
- sgrozev&orbitel.bg
-18607
- KLM Royal Dutch Airlines
- Friso de Wolf
- friso-de.wolf&klm.com
-18608
- Synlogic AG
- Kaspar von Gunten
- Kaspar.VonGunten&synlogic.ch
-18609
- JP.DIAS SERVIÇOS DE INFORMATICA LTD.
- JAIR DIAS
- jp.dias&terra.com.br
-18610
- University at Buffalo
- Joel W Murphy
- jmurphy&buffalo.edu
-18611
- Alenia Spazio S.p.A.
- Giuseppe Tomasicchio
- g.tomasicchio&roma.alespazio.it
-18612
- smspundit.com
- Ankur Shah
- ashah&comcast.net
-18613
- CGL Consulting
- A. Taiwo
- dns.registrar&cglcons.com
-18614
- Albert White Technologies
- Alex Demenschonok
- alex&albertwhite.com
-18615
- North American Networks Corporation
- Bob Eckert, Jr.
- bobjr&nanc.com
-18616
- nextWLAN Corporation
- Carlos Rios
- crios&nextwlan.com
-18617
- Timestock, Inc.
- Patrick O'Sullivan
- registrar&timestock.com
-18618
- Publi Van Dyck N.V.
- Marc Cuypers
- m.cuypers&mgvd.be
-18619
- web-m GbR
- Oliver Goepferich
- ogoe&web-m.de
-18620
- Jaw Networks
- Brian Ross
- bross&jawnetworks.com
-18621
- Hinson and Associates
- Charlie Hinson
- charlie&belwood.net
-18622
- K-n-A Ltd.
- Archie Arevalo
- archie_arevalo&msn.com
-18623
- micro systems
- Marc Balmer
- marc&msys.ch
-18624
- Lehrstuhl fuer Technische Dienstleistungen
- Clemens Sickinger
- clemens.sickinger&wi.tum.de
-18625
- UniVision (Canada) Ltd.
- Matthew Ho
- matthew&univisioncanada.com
-18626
- UNET BV
- C.C. Gondelach
- gondelach&unet.nl
-18627
- Bakasquared
- Douglas Richard
- accela&bakasquared.com
-18628
- Microelectronics Technology Inc.
- Carl Yang
- yang_carl&mti.com.tw
-18629
- Iclass Co. Ltd.
- Gary Shi
- garyshi&iclass.cn
-18630
- Reeuenta Design Service Taiwan Ltd.
- WenZheng Wu
- Reeuenta&hotmail.com
-18631
- DARG
- Brooks Sizemore
- domains&darg.net
-18632
- SA SST Informatique
- Stéphane Cachat
- sst&cachat.org
-18633
- STATER
- Fred Schuit
- a.schuit&stater.com
-18634
- Advanced Software Production Line, S.L.
- David Marín
- david&aspl.es
-18635
- m-otion GmbH
- Thomas Hager
- hager&m-otion.at
-18636
- UVT s.r.o.
- Yevheniy Demchenko
- zheka&uvt.cz
-18637
- JNS Inc.
- Hiroshi Miyazaki
- miya&jnsjp.com
-18638
- Avedya
- Stefan Praszalowicz
- stefan&avedya.com
-18639
- Kinnikinnick Foods Inc.
- Michael Shields
- michael&kinnikinnick.com
-18640
- Digital Envoy, Inc
- Jeff Burdette
- iana&digitalenvoy.net
-18641
- Royal Military College of Canada
- Richard Cameron
- cameron-r&rmc.ca
-18642
- C&C Power, Inc.
- Chris Heinz
- chris&ccpower.com
-18643
- Montgomery County Government
- John Castner
- john.castner&montgomerycountymd.gov
-18644
- Daniel Skadlubowicz
- Daniel Skadlubowicz
- daniel&skadlubowicz.de
-18645
- Cesart Creation inc.
- Charle Demers
- charle.demers&cesart.com
-18646
- Electric Mail Co.
- Bill Skrypnyk
- bskrypnyk&electricmail.com
-18647
- DEXTER COMMUNICATIONS, INC.
- Dong-Sun Hong
- sunny&dextercomm.com
-18648
- HTU Graz
- Hans-Peter Lackner
- hans-peter.lackner&htu.tugraz.at
-18649
- Magnet.ch AG
- E. Pflimlin
- e.pflimlin&magnet.ch
-18650
- Projectiondesign AS
- Rolf Gjelsvik
- rolf.gjelsvik&projectiondesign.com
-18651
- GLANCE AG
- Felix Berger
- felix.berger&glance.ch
-18652
- Zentrum für Bioinformatik, Hamburg
- Erik Pagel
- No.Spam&pagel_At_zbh.uni-hamburg.de
-18653
- Eraia srl
- Giancarlo Bassetto
- digarbo&sofialab.com
-18654
- Scottish Police Authority (formerly 'Central Scotland Police')
- Stephen McDermid
- stephen.mcdermid&spsa.pnn.police.uk
-18655
- IUNDS AG
- Hannes Seidel
- h.seidel&iunds.com
-18656
- AirRunner Technologies
- greg phillips
- greg.phillips&airrunner.com
-18657
- GoldenGate Software, Inc.
- David Acquistapace
- dacquistapace&goldengate.com
-18658
- Xcitel Ltd.
- Tsiki Rosenmann
- tsikir&hotmail.com
-18659
- Chung Hua University
- Huai-Jen Liu
- hjliu&chu.edu.tw, wz_wu&ptlsemi.com
-18660
- WebKMS
- Phil Hegarty
- phillip.hegarty&ntlworld.com
-18661
- Elitech Information Technology Co.,Ltd.
- cui qinglai
- cql&263.net.cn
-18662
- Mathias Kettner
- Mathias Kettner
- mk&mathias-kettner.de
-18663
- Laakirchen Papier AG
- Walter Spanlang
- walter.spanlang&heinzelpaper.com
-18664
- IPnP
- Oleg Antoshin
- oleg&ipnp.co.il
-18665
- Axelero Internet Szolgáltató Rt.
- Héjjas Gábor
- hejjas.gabor&axelero.com
-18666
- Payroll Sweden AB
- Bo Strinnholm
- bo.strinnholm&payroll.se
-18667
- HBware
- Hans Boone
- Hans&HBware.com
-18668
- freshmeat.net, part of OSDN, Inc.
- Patrick Lenz
- scoop&freshmeat.net
-18669
- Memorial Hermann healthcare System
- Albert Tillery
- albert_tillery&mhhs.org
-18670
- General Atomics
- Aaron Bostwick
- aaron.bostwick&ga.com
-18671
- Knovative, Inc.
- Kirk Friedman
- kfriedman&knovative.com
-18672
- Secured Computer Concepts
- M. D. Parker
- mdpc&panix.com
-18673
- Webjorn Data & Natverkskonsult
- Mattias Webjorn Eriksson
- mattias&webjorn.org
-18674
- telecomSoftware
- Dan Deneweth
- ddeneweth&telecomse.com
-18675
- Strategy & Technology ltd
- Paul Sweetland
- pauls&layer3.co.uk
-18676
- LEOFOO DEVELOPMENT CO., LTD
- johnson hsu
- johnson.hsu&leofoo.com.tw
-18677
- Datenzentrale Baden-Wuerttemberg
- Martin Riedel
- m.riedel&dzbw.de
-18678
- Winston Industries
- Ed Hatfield
- ejhatfield&winstonind.com
-18679
- Behr Internet Solutions, Inc.
- Marc D. Behr
- marc&behrsolutions.com
-18680
- Con Edison Communications
- Help Desk
- stuartm&electricfiber.com
-18681
- Travelping GmbH
- Holger Winkelmann
- hw&travelping.com
-18682
- Dr. Brunthaler IITech GmbH
- Stefan Brunthaler
- brun&drb.insel.de
-18683
- CJ Ltd.
- Chengjie
- dearmillet&163.com
-18684
- Davey Control Systems
- Rob Davey
- daveyr&telkomsa.net
-18685
- Portal München GmbH & Co. KG
- Christoph Michel
- michel&portalmuenchen.net
-18686
- InControl Technology Inc
- Gary Paquette
- gpaquette&incontroltechnology.com
-18687
- Information Flow
- Ulrich Boeck
- U.Boeck&InformationFlow.de
-18688
- IU.TV Ltd
- Andrew Harrison
- andy&ideasunlimited.tv
-18689
- Neonetix, LLC.
- Jeremy Kister
- iana-snmp-request&jeremykister.com
-18690
- Healthlink Limited
- Dr Edwin Ng
- edwin.ng&healthlink.net
-18691
- Bussi
- Andreas Bussjaeger
- _bussi&web.de
-18692
- Katana Technology, Inc.
- Thomas Hazel
- thazel&katana-technology.com
-18693
- NDS Media Solutions
- Jon Sharp
- jrsharp&ndsmedia.com
-18694
- isometry.net
- Robin Breathe
- robin&isometry.net
-18695
- Soluciones Telematicas Avanzadas S.L.
- Ignacio Bernal
- ibernal&solumatic.com
-18696
- Idiom Communications LLC
- David Sharnoff
- idiomMIBnumber&trust.idiom.com
-18697
- Syniverse Technologies Asia Pacific Limited (formerly 'IVRS (International) Limited')
- AP-ProductDevelopment, MTS
- AP-ProductDevelopment&syniverse.com
-18698
- Tonghua Wanghang Information & Technology Co.,Ltd.
- lizhixin
- lzx&thwhgf.com
-18699
- DAPYXIS NETWORK LIMITED
- Simon Hung
- simon&dapyxis.com
-18700
- ACOM CO.,LTD
- Masahiko Okukawa
- mokukawa&acom.co.jp
-18701
- Minplan
- Keun-woo Ryu
- updong&minplan.net
-18702
- REUTERS S.A.
- Christophe Gevrey
- christophe.gevrey&reuters.com
-18703
- Siix d.o.o.
- Tomaz Borstnar
- tomaz.borstnar&siix.com
-18704
- Institute of Mathematics of the Romanian Academy
- Ionel Molnar
- Ionel.Molnar&imar.ro
-18705
- Dynamix Promotions Limited
- Igor Palamarchuk
- igor&vectorkiev.com
-18706
- Corporacion Aceros Arequipa S.A.
- Rafael Caceres
- rcaceres&aasa.com.pe
-18707
- Muskingum College
- Lewis M. Dreblow
- dreblow&muskingum.edu
-18708
- Guardium Inc.
- Izar Tarandach
- izar_tarandach&guardium.com
-18709
- INOTESKA s.r.o.
- Juraj Podolan
- j.podolan&inoteska.sk
-18710
- Kaytec Ltd.
- Kiyoshi Tsujimura
- kiyoshi&kaytec.co.jp
-18711
- Burger Knowledge Consultancy
- Bas Burger
- yaa&euronet.nl
-18712
- Ajin Techline co., Ltd
- Kwangsoo, Kim
- kimks&ajintech.com
-18713
- FH JOANNEUM Gesellschaft mbH
- Peter Gritsch
- peter.gritsch&fh-joanneum.at
-18714
- Lanzhou University of Technology
- Li Zhiyuan
- lizy&lut.cn
-18715
- Grand Electronic Co.,Ltd.
- Tongzhen Shao
- tonyshao&grandtp.com
-18716
- Grand Electronic Co.,Ltd.
- Tongzhen Shao
- tonyshao&grandtp.com
-18717
- UCB SA/NV
- Philippe Snoeck
- philippe.snoeck&ucb-group.com
-18718
- Association of Hellenic Internet Users
- Gerasimos Melissaratos
- gmelis&eexi.gr
-18719
- O2 Ltd
- David Harte
- security&o2.com
-18720
- FarSite Communications Limited
- Dermot Smith
- snmp&farsite.co.uk
-18721
- EMICT Ltd.
- Victor Ustinov
- ustas&emict.com.ua
-18722
- Universidade Federal do Parana
- Elias P. Duarte Jr.
- elias&inf.ufpr.br
-18723
- Digicast Networks Inc
- Jon Braunsma
- jon&digicastnet.com
-18724
- EDJ Enterprises, Inc.
- Jason Gouldie
- jgouldie&edj.com
-18725
- Paycom Billing Services, Inc.
- Clarke Retzer
- clarke&paycom.net
-18726
- Isala Klinieken
- Jeroen Bos
- j.bos&isala.nl
-18727
- Apollo Group, Inc.
- OID Master
- oidmaster&apollogrp.edu
-18728
- Unassigned
- Removed 2011-12-01
- ---none---
-18729
- RB Holdings
- Richard Belanger
- Rich3800&aol.com
-18730
- C&A srl
- Raffaello Galli
- r.galli&com-and.com
-18731
- INGENIERIA DE SISTEMAS MULTIAGENTE, S.L.
- ALBERTO J. CORDERO
- INFO&ISM-CENTRAL.NET
-18732
- Horner Brothers Print Group
- Hamish Gibson
- hamish&hbp.co.uk
-18733
- Magnifire Networks
- Mark Shahaf
- marks&magnifire.com
-18734
- Wildher ICT Solutions
- Jaco Koppelaar
- info&wildher.nl
-18735
- Hayes Lemmerz International
- Jason Baldini
- jbaldini&hayes-lemmerz.com
-18736
- Ertius Consulting
- Rob Weir
- rweir&ertius.org
-18737
- Northrop Grumman
- Ric Tibbetts
- ric.tibbetts&ngc.com
-18738
- DjE
- Dominic J. eidson
- noc&the-infinite.org
-18739
- CraftAnalogy, Inc.
- Judd Maltin
- oid_manager&craftanalogy.com
-18740
- J. S. Thrower and Associates Ltd.
- Ron Zayac
- iana&jsthrower.com
-18741
- Leurck Software
- Robert Leurck
- rleurck&rjleurck.org
-18742
- SACEM
- DUCHEMIN JEROME
- jerome.duchemin&sacem.fr
-18743
- Entrada Internet Systems, Inc.
- Weldon Harris
- weldonharris&bigplanet.com
-18744
- Idea Tec Sahar (ITS) Ltd
- Hussein Pour Sultani
- hpsultani&its.ir
-18745
- ERANET srl
- Andrea Girotto
- andrea&era-net.it
-18746
- Matsushita Electric Europe
- Paul Bolton
- paul.bolton&eu.panasonic.com
-18747
- American Fibertek, Inc.
- Jim McLaughlin
- jmclaughlin&americanfibertek.com
-18748
- Engelschall
- Ralf S. Engelschall
- rse&engelschall.com
-18749
- The OpenPKG Project
- Ralf S. Engelschall
- openpkg&openpkg.org
-18750
- solar
- Bruno Póvoa
- bpovoa&ig.com.br
-18751
- IPDeliver Inc.
- Mark Summer
- mark&ipdeliver.com
-18752
- Financial Engines, Inc.
- David Smith
- dsmith&FinancialEngines.com
-18753
- Adelphia Communications
- Robert Schultz
- robert.schultz&adelphia.com
-18754
- University of Wisconsin - Parkside
- Steven Premeau
- premeau&uwp.edu
-18755
- MavriQ Technologies, LLC
- Haim Jacobson
- hj.mavriq&verizon.net
-18756
- Michal Charvat
- Michal Charvat
- michal&lounsko.cz
-18757
- United Systems Access Inc.
- John Kane
- iana-mgr&usacsp.com
-18758
- Stordyne Corporation
- Andre Mellul
- andrem&stordyne.com
-18759
- Netlink Technology Ltd.
- KM LI
- system&mkpc.net
-18760
- Guangdong Electronic Certification Authority
- Wangzhixiong
- wangzhixiong&cnca.net
-18761
- Regal Cyber Limited
- Tan Tse
- tan&regalcyber.com
-18762
- Sumtech Inc
- Ed MacDonald
- edmacdonald&hotmail.com
-18763
- TheNetWerk
- Patrick Hannah
- phannah&thenetwerk.net
-18764
-
-
- ---none---
-18765
- Comtel Electronics GmbH
- Dmitry Tsitsilin
- d.tsitsilin&comtel-online.de
-18766
- Procitec GmbH
- Thomas Wolf
- procitec&gmx.de
-18767
- Kaba Management + Consulting AG
- Hans-Peter Sauter
- hsauter&kgh.kaba.com
-18768
- Virtual Royal Danish Air Force
- Thomas Schütze
- vrdaf&vrdaf.org
-18769
- University Computer Center (URC) Banja Luka
- Dragan Simic
- dsimic&urc.bl.ac.yu
-18770
- SUNCOM Systems
- Stefan Undorf
- sundorf&suncom.de
-18771
- The Salvage Association
- Kevin Cave
- systems&wreckage.org
-18772
- Microbus plc
- Edward West
- ewest&microbus.com
-18773
- Internet Creation Co.,Ltd.
- Sombat Chanprajakwanich
- sombat&thaiclassified.com
-18774
- Banca Monte dei Paschi di Siena S.p.A.
- Ierardi Alessandro
- alessandro.ierardi&banca.mps.it
-18775
- Neuronenwerk
- Network-Services
- wtf&neuronenwerk.de
-18776
- eAcceleration Corp
- Korey Chapman
- korey&eAcceleration.com
-18777
- Thomas Luzat IT-Services
- Thomas Luzat
- thomas&luzat.com
-18778
- ARCANE NETWORKS
- Benoit Lecocq
- lecocq&arcane-networks.com
-18779
- Synergy Information Services, Inc.
- Vladan Pulec
- sales&synfoserv.com
-18780
- ANSES
- Anzaldi Sebastian
- sanzaldi&anses.gov.ar
-18781
- Zagamma Labs
- Vladimir Linek
- vinil&zagamma.cz
-18782
- Rozhled.cz
- Petr Bydzovsky
- petr.bydzovsky&rozhled.cz
-18783
- Interwoven, Inc.
- Todd Scallan
- tscallan&interwoven.com
-18784
- Great Clips, Inc.
- Vladan Pulec
- vladan.pulec&greatclips.com
-18785
- Collation Inc.
- Johan Casier
- johan.casier&collation.com
-18786
- Global-Arts
- Thomas Frank
- uid-info&global-arts.de
-18787
- Clubhaus PLC
- Andy Stewart
- a.stewart&clubhaus.com
-18788
- MyNym
- Michael Glasson
- mg&netspeed.com.au
-18789
- Pro QC International Ltd
- johnnywu
- johnnywu&proqc.com.tw
-18790
- EcGuard Technology Co. Ltd.
- Yan Shi
- rockyangel&126.com
-18791
- Chatchalerm Namwongprom
- Chatchalerm Namwongprom
- chat&cscoms.net
-18792
- HORIBA Europe Automation Division GmbH
- Robert Kloosterman
- rok&head.de
-18793
- Norske Skogindustrier ASA
- Oystein Saursaunet
- oystein.saursaunet&norskeskog.com
-18794
- Uni Regensburg
- Ulrich Werling
- ulrich.werling&rz.uni-regensburg.de
-18795
- ASPLinux
- Pavel Gashev
- pax&asplinux.ru
-18796
- Horizon.Net S.A
- Kuba Urbaniak
- kuba.urbaniak&horizon.net.pl
-18797
- Lunics GmbH
- Lutz Badenheuer
- info&lunics.de
-18798
- digital design GmbH
- Gert Ziegler
- gert.ziegler&dides.de
-18799
- Layer14
- James MacDonald
- james&layer14.net
-18800
- WRK Computer Systems
- Bill Kaltwasser
- sysadmin&wrkcs.net
-18801
- Forrest Aldrich
- Forrest Aldrich
- forrie&forrie.com
-18802
- AUCONET GmbH
- Mario Apitz
- hostmaster&auconet.com
-18803
- MEDCOM sp. z o.o.
- Wlodzimierz Frydrych
- wlodekf&medcom.com.pl
-18804
- Advisec AB
- Magnus Lööf
- magnus.loof&advisec.com
-18805
- Struktuur Meedia
- Anti Veeranna
- anti.veeranna&automatweb.com
-18806
- Calm Computer Corp.
- Kuniharu Yamane
- admin-group&calm.co.jp
-18807
- MAPLE NETWORKS Co.,Ltd
- KyoungSik Eom
- maple&maplenetworks.co.kr
-18808
- Fondation pour l'institut de hautes études internationales et du développement (formerly 'Graduate Institute of International and Development Studies')
- Wilfred Gander
- webmaster&graduateinstitute.ch
-18809
- NetLink Consulting LLC
- B. Radermacher
- bwr&netlink-consulting.net
-18810
- Inotera Memories Inc.
- Aswan Yang
- aswanyang&hotmail.com
-18811
- Colgate-Palmolive Company
- Jay Brown
- jay_brown&colpal.com
-18812
- Sageway Computer Solutions Pte Ltd
- Li Hao
- lihao&sageway.com.sg
-18813
- DEMARINA SDN. BHD.
- Adrian Lo
- adrian&demarina.com
-18814
- RoCNet Linux-Services
- Claus Rosenberger
- Claus.Rosenberger&rocnet.de
-18815
- ConD GmbH
- Gerd Grell
- ggrell&cond.de
-18816
- Andrea Fino
- Andrea Fino
- af&faino.org
-18817
- Ethernet Powerlink Standardisation Group (EPSG)
- Hans Weibel
- hans.weibel&zhwin.ch
-18818
- Dinsa Soluciones
- Alejandro Salgado Godoy
- asalgado&dinsa.es
-18819
- Pardes Group SA
- Marc A. Brown
- marc.brown&pardes.ws
-18820
- RAMCS
- Ben Harper
- benharper&canada.com
-18821
- m-Wise UK Ltd.
- Nir Nir Simionovich
- nir&m-wise.com
-18822
- FOTEK ,Ltd.
- Liu Hai
- fotek&21cn.com
-18823
- COM-PAN s.c.
- Wojciech Kuty³a
- wojciech.kutyla&com-pan.pl
-18824
- av
- matuura
- saaki&din.or.jp
-18825
- Topio, Inc.
- Betty Woychowski
- betty&topio.com
-18826
- PSA Corporation Limited
- Gan Poh Seng (ITIOD)
- psgan&psa.com.sg
-18827
- LOBOK - projects
- R.Knotek
- rkn&centrum.sk
-18828
- danet GmbH
- Dirk Schwarz
- Dirk.Schwarz&danet.de
-18829
- COM.BOX Internet Service GmbH
- Tobias Gablunsky
- support&cbxnet.de
-18830
- Jingo Digital
- Peter Clarke
- peter&jingo.com
-18831
- InFormaL
- System Administrator
- admin&informalsoftware.net
-18832
- Universität Potsdam
- Rolf Adams
- adams&rz.uni-potsdam.de
-18833
- MICROTROL SRL
- Antonio Nachez
- antonionachez&microtrol.com.ar
-18834
- Competitionhill
- Rob
- rmallory&san.rr.com
-18835
- Government of the District of Columbia
- Paul Liderman
- paul.liderman&dc.gov
-18836
- Flathead Valley Community College
- Rick Owens
- oidmaster&fvcc.edu
-18837
- Spectracom Corporation
- Kevin Golder
- kgolder&spectracomcorp.com
-18838
- AEAT
- Jose M Perez
- permar.dit&aeat.es
-18839
- Data Consulting Group, Inc.
- David Polito
- david&polito.com
-18840
- Milwaukee Public Schools
- Janese Christie
- christjs&milwaukee.k12.wi.us
-18841
- Acorn Packet Solutions
- Michael Skerritt
- mike&acornpacket.com
-18842
- Linuxlösungen Michael Rößler
- Michael Rößler
- mroessler&linuxloesungen.de
-18843
- CPR Software LLC
- Robert Patrick
- cpr-iana&cprsoftware.com
-18844
- Triacta Power Technologies, Inc.
- Dave Perry
- dperry&triactapower.com
-18845
- eCartsoft.com
- George Sayes
- ecartsoft&yahoo.com
-18846
- State of Tennessee
- Michael Lopez
- michael.lopez&state.tn.us
-18847
- Objectpark Software GbR
- D. Theisen
- info&objectpark.net
-18848
- UIS Abler Electronics Corp. Ltd.
- louis chang
- louis&pecsicon.com.tw
-18849
- OneDataCentral
- David Chewning
- sec_collection&yahoo.com
-18850
- CoSystems, Inc.
- R. Srinivasan
- rsrini&cosystems.com
-18851
- Association DSPNet
- Philippe Chevalier
- chevalier&dspnet.fr.eu.org
-18852
- Gerdes Aktiengesellschaft
- Carl-Friedrich Braun
- cfbraun&gerdes-ag.de
-18853
- EURILOGIC Technologies
- Christophe Chambre
- cchambre&eurilogic.fr
-18854
- Axiliance
- Henry jean-luc
- jlh&axiliance.com
-18855
- Beijing Fibridge Co., Ltd.
- Yingyong Lou
- louyingyong&fibridge.com
-18856
- Monitor Electronics Ltd
- Vassilis Gryparis
- v.gryparis&monitor-electronics.gr
-18857
- dh computersysteme
- Dietmar Hummel
- dietmar.hummel&dhcomputersysteme.de
-18858
- RDR Technologies LLC
- Richard Reich
- richard&rdrtech.com
-18859
- PaX AG
- Dirk Wachsmuth
- d.wachsmuth&pax.de
-18860
- Friends of the Earth International
- Robert Celina
- sysadmin&foei.org
-18861
- Educational Standards and Certifictations Inc.
- Pedro Aguayo
- paguayo&teachscape.com
-18862
- WillMedia Corp.
- Masataka Miura
- miura&willmedia.co.jp
-18863
- Sisters of Charity Health Service
- David Roffe
- shodgson&stvincents.com.au
-18864
- Touring Club Suisse (TCS)
- Alain MERLIERE
- AMerliere&tcs.ch
-18865
- Turunch Technologies
- Bulent Kaytaz
- bulent.kaytaz&turunch.com
-18866
- White & Stover Innovations, LLC
- John White
- jwhite&altf4.com
-18867
- Meetinghouse Data Communications
- Dmitry Teleganov
- dmitryt&mtghouse.com
-18868
- InterNiche Technologies Inc
- Atul Trivedi
- atul&iniche.com
-18869
- University of Helsinki
- Minna Harjuniemi
- minna.harjuniemi&helsinki.fi
-18870
- OpsPoint
- Grahame Ian Curtis
- grahame&mindspring.com
-18871
- FirstAttribute AG
- Peter Schäfer
- p.schaefer&firstattribute.com
-18872
- The Groovy Corporation
- Bill Schindler
- bill-tgc&bitranch.com
-18873
- Works Operating Company
- John Zaitz
- jzaitz&works.com
-18874
- S & S Professionals, Inc.
- Grant Simpson
- gsimpson&sspros.com
-18875
- Scorpion Software Corp.
- Dana Epp
- dana&scorpionsoft.com
-18876
- TEVRON, LLC
- Richard Byrne
- rbyrne&tevron.com
-18877
- Darwin Solutions LLC
- Jordan Hotzel
- hotzelj&hotmail.com
-18878
- Asschem
- Mr. David Curran
- postmaster&asschem.com
-18879
- LinuxHeaven
- James Downer
- james&inter-site.demon.co.uk
-18880
- American Museum of Natural History
- Ari Jort
- arijort&amnh.org
-18881
- Prometeia Srl
- Stefano Bracalenti
- stefano&prometeia.it
-18882
- Adventist International Institute of Advanced Studies (AIIAS)
- Roy Karuyan
- rkaruyan&aiias.edu
-18883
- Projektgroup LDAP University of Siegen
- Juergen Wehren
- iana.5.jwehren&spamgourmet.com
-18884
- Shanghai Sansi Technology Co., Ltd.
- Zhang Qian
- zhangq&sansitech.com
-18885
- geeks.pl
- Tomasz Wojewodka
- santini&poczta.wp.pl
-18886
- PFU LIMITED
- koji oeki
- ooeki&pfu.fujitsu.com
-18887
- University of Massachusetts Boston CPCS
- Saul Baizman
- saul.baizman&umb.edu
-18888
- Guoxin Telecom System Ltd
- Zhou Wenhua
- zhouwenhua&guoxin.cn
-18889
- "Arhangelsk Television Company" Ltd.
- Konstantin Klimchev
- koka&atvc.ru
-18890
- Integrated Communication Technologies
- Brent W. Sylvester
- brent&ictx.com
-18891
- The Closed Joint-Stock Company ?DeltaBank¦
- Igor Kalinskov
- Igor_Kalinskov&deltabank.ru
-18892
- GEMMA Systems, spol. s r.o.
- Mr. Jaromir SEDLAK
- sedlakj&gemma.cz
-18893
- SMS Siemag AG
- Dr. Ferdinand Klaus
- fkla&sms-siemag.de
-18894
- Technische Fachhochschule Wildau
- Jens-Volker Steinert
- steinert&hrz.tfh-wildau.de
-18895
- Moravska zemska knihovna
- Petr Zabicka
- zabak&mzk.cz
-18896
- Esilog Consulting, S.L.
- Jordi Fernandez
- jordi.fernandez&esilog.com
-18897
- Cellopoint International Corporation
- Eric Jan
- ericjan&ms2.hinet.net
-18898
- Freie Universitaet Berlin (FU-Berlin)
- Joerg Bechlars
- bechlars&zedat.fu-berlin.de
-18899
- Isvara
- Dan Ellis
- dan&a-h.net
-18900
- evosoft GmbH
- Jürgen Schinker
- juergen.schinker&evosoft.com
-18901
- Capital Lease GmbH
- Kurt Weidlich
- kurt.weidlich&capital-lease.com
-18902
- Aetat
- Trygve Moe
- tmo&adir.aetat.no
-18903
- MANDOZZI ELETTRONICA S.A.
- Lorenzo Morellini
- lorenzo.morellini&mandozzi.ch
-18904
- Propylon
- Derek Higgins
- derek.higgins&propylon.com
-18905
- Total Card, Inc.
- Tom Likely
- tech&totalcardinc.com
-18906
- stefi
- Xavier Renard
- xrenard&ressource-toi.org
-18907
- Pironet NDH AG
- Jürgen Jatzkowski
- jjatzkowski&pironet-ndh.com
-18908
- Inpriva, Inc.
- Don Jorgenson
- djorgenson&inpriva.com
-18909
- Service Management Software
- Harald Gläser
- harald&t-glaeser.de
-18910
- Bombardier Transportation Inc.
- Paolo Valsorda
- paolo.valsorda&ca.transport.bombardier.com
-18911
- Professional Data Management Again Inc.
- Eddie Brown
- eddie.brown&pdmagain.com
-18912
- N-able Technologies Inc.
- Adrian Gilbert
- agilbert&n-able.com
-18913
- Statna pokladnica
- Ladislav Rusnak
- ladislav.rusnak&hp.com
-18914
- Empneusis Internet Services
- George B. Patelis
- gpatelis&mail.gr
-18915
- Nautronix Ltd
- Carl Gherardi
- postmaster&nautronix.com.au
-18916
- Shanghai TransEngines Technologies Co.,Ltd
- Hard Sun
- sunxian&yahoo.com
-18917
- Shanghai Futures Exchange
- Wenjun ZOU
- zou.wenjun&shfe.com.cn
-18918
- Bringe Informationstechnik GmbH
- Thomas Bätzler
- hostmaster&bringe.com
-18919
- Alfa21 Outsourcing, S.L.
- Jacobo Tarrio Barreiro
- jtarrio+iana&alfa21.com
-18920
- Agencia Notarial de Certificacion
- Enric Hernández
- ehernandez&notariado.org
-18921
- NextiraOne Deutschland GmbH
- Harald Gläser
- harald.glaeser&nextiraone.de
-18922
- Trellis Tecnologia Ltda.
- Julio Sirota
- jsirota&trellis.com.br
-18923
- Yamaguchi University
- Media and Information Technology Center
- info-cc&ml.cc.yamaguchi-u.ac.jp
-18924
- Relston Consulting Limited
- Peter Tyrrell
- petet&relston.co.uk
-18925
- Prior
- Christian Prior
- public&prior-I.De
-18926
- JTT "Novel-IL"
- Valentin A. Alekseev
- V.Alekseev&novel-il.ru
-18927
- tandav enterprises
- Amith Kattil Prabhakaran
- kpamith&yahoo.com
-18928
- Areca Technology Corporation
- Roland Chang
- roland&areca.com.tw
-18929
- Interwise, Inc.
- Ori Keren
- okeren&interwise.com
-18930
- Skyx.Org
- Thierry Sudan
- thierry&skyx.org
-18931
- DaveLinux
- David Blomberg
- dblomber&davelinux.com
-18932
- Naeilnet Inc.
- Jeongkyu Ryu
- jkryu&naeiln.com
-18933
- ActivNetworks
- Serge Cuesta
- serge.cuesta&activnetworks.com
-18934
- Vivex GmbH
- Vivex Hostmaster
- office&vivex.de
-18935
- Essex Electronics, Inc.
- Garrett Kaufman
- productdevelopment&keyless.com
-18936
- National Institute of Advanced Industrial Science and Technology
- Mitsuo Yokokawa
- m.yokokawa&aist.go.jp
-18937
- Lynk
- Travis Smith
- tsmith&lynksystems.com
-18938
- Rubix Information Technologies, Inc.
- Renny Koshy
- renny.koshy&rubixinfotech.com
-18939
- Retail Decisions Inc.
- Matt Wixson
- mwixson&red-usa.com
-18940
- Kristopher Johnson Consulting
- Kristopher Johnson
- snmp&kristopherjohnson.net
-18941
- Vermont State Colleges
- John A Schrader
- john.schrader&vsc.edu
-18942
- Liquid Computing Corporation
- Jonathan Bosloy
- jonathan.bosloy&liquidcomputing.com
-18943
- HealthPartners
- Pete Anfinsen
- Pete.M.Anfinsen&HealthPartners.com
-18944
- nethype GmbH
- Marc A. Lehmann
- enterprise-number&nethype.de
-18945
- Dynamic Infosystems Ltd.
- Arif H. Raj
- arif&dynamicinfosystems.com
-18946
- Digital Species Ltd
- Andy Raffle
- andy&digitalspecies.com
-18947
- CANOPEE SECURITY
- Michael GIBON
- michael.gibon&free.fr
-18948
- Sonatel Multimédia
- Thierno CISSE
- thierno.cisse&sentoo.sn
-18949
- Golden Eagle Enterprises Ltd
- David Rodham
- david.rodham&goldeneagle.co.uk
-18950
- LAN Force Inc.
- Samuli Kotimaki
- samuli.kotimaki&lanforce.fi
-18951
- Fast Lane Institute for Knowledge Transfer GmbH
- Michael Steinmetz
- admin&flane.de
-18952
- Prudential Finanical
- Antonio Figueroa
- antonio.figueroa&prudential.com
-18953
- Altkom Akademia S.A.
- Aleksander Adamowski
- aleksander.adamowski&altkom.pl
-18954
- Brandywine Communciations
- Gary Smith
- garysmith&brandywinecomm.com
-18955
- Digital Identity Ltd.
- Stephen Ridley
- oid.admin&digitalidentity.co.nz
-18956
- Trusted Network Technologies, Inc.
- Michael J. Slifcak
- slif&trustednetworktech.com
-18957
- Robert's Computer & Electrical Service
- ROBERT
- jkrb&optusnet.com.au
-18958
- EZNETSOFT
- yhkim
- yhkim&eznetsoft.co.kr
-18959
- sichuan normal university
- Mr. He zhilong
- hzl&sicnu.edu.cn
-18960
- Larsen & Toubro Infotech Ltd
- Karuppu Samy
- ksamy&lntinfotech.com
-18961
- Auditor revizijska druzba d.o.o., Ptuj
- Andrej Mrsek
- andrej&auditor-revizija.si
-18962
- LRP
- Horst Hendler
- horst.hendler&lrp.de
-18963
- EDN Sovintel
- Evgueni Tiourine
- etiourine&sovintel.net
-18964
- ELEKTRONIK HENGARTNER AG
- Friedrich von Salis
- fsa&hengartner.ch
-18965
- Netyantra Inc.
- Kamal Bhambhani
- kamal&netyantra.com
-18966
- Unassigned
- Returned 11-Dec-03
- ---none---
-18967
- Oxford County Telephone and Telegraph Company
- Jonathan E. Dunn
- jon&oxfordnetworks.com
-18968
- 012 goldenlines Ltd
- Yaniv Cohen
- yanivc&012.net
-18969
- University of Maryland Baltimore
- Kent Buckingham
- kbucking&umaryland.edu
-18970
- Expert SA
- Moissonnier Aurélien
- amoissonnier&expertsa.fr
-18971
- G&S Sistemas de Información, S.L.
- Victoriano Giralt
- vic+iana&gssi.es
-18972
- Panama Canal Authority
- Gaspar Modelo Howard
- gmhoward&pancanal.com
-18973
- TuXic.nl
- Jaap Vermaas
- iana&tuxic.nl
-18974
- Universal Business Matrix, LLC
- Stephen Hord
- steve.hord&ubmatrix.com
-18975
- BRG16
- Stefan Haslinger
- shaslinger&ada.rg16.asn-wien.ac.at
-18976
- Badger Alarm and Control, LLC
- Mary E Overby
- mary&badgerac.com
-18977
- NIC-IQ Ltd
- Al-Dileme Adham
- aldileme&spray.se
-18978
- CXO Systems Inc.
- Chetan Gadgil
- cgadgil&cxosystems.com
-18979
- EVERYWHERECOMMUNICATIONS.NET
- CHARLES M. SHEPHERD
- CSHEPHERD&triad.rr.com
-18980
- Cypak AB
- Jakob Ehrensvärd
- jakob&cypak.com
-18981
- Reserved
- 2013-02-28
- ---none---
-18982
- Link-Yug Ltd.
- Victor Sheldeshov
- support&linky.ru
-18983
- AOK Sachsen
- Matthias Köhn
- matthias.koehn&sac.aok.de
-18984
- Magos Consulting, Ltd.
- Giorgos Magos
- magos&magos-consulting.com
-18985
- Insinova AG
- Jens Albrecht
- jens.albrecht&insinova.ch
-18986
- FleetBoston Financial Corporation
- Ward Goodwin
- ward_r_goodwin&fleet.com
-18987
- Ralf Meister
- Ralf Meister
- ralf.meister&claranet.de
-18988
- Shanghai Eastimage Equipments Co.,LTD
- CAO,Guogang
- caoguogang&vip.sina.com
-18989
- Day Dreams And Information Technologies
- Michael C. Day
- res0f6ja&verizon.net
-18990
- CNC a.s.
- Lubomir Gelo
- lgelo&cnc.sk
-18991
- IOP Publishing Ltd
- Peter Haworth
- pmh&edison.ioppublishing.com
-18992
- WEBForce GmbH
- Marco Reichmuth
- m.reichmuth&webforce.ch
-18993
- ObjectFusion, L.L.C.
- Joe Holt
- joeholt&mchsi.com
-18994
- Olix
- David Liouville
- dliouville&vraiment-pas.net
-18995
- CommSpeed, LLC
- Adam Towarnyckyj
- adamt&commspeed.net
-18996
- Globix Corporation
- Clint Adams
- cadams&globix.com
-18997
- Ibrix Corp.
- Dinesh Venkatesh
- dinesh&ibrix.com
-18998
- Redstone Consulting, LLC
- Guy Yost
- gyost&redstone-consulting.com
-18999
- Health Management Corporation
- Kenan Peters
- kpeters&choosehmc.com
-19000
- Dongyang Telecom Ltd.
- Kyu-Ho, CHOI
- khchoi&dyt.co.kr
-19001
- Research Center of Computational Mechanics, Inc.
- Masashi Kodama
- system&rccm.co.jp
-19002
- Sun Yat-sen (Zhongshan) University
- Mr. Shang Ercong
- shang&sysu.edu.cn
-19003
- SENAS.NET
- Usha
- usha&visolve.com
-19004
- CreationPoint Systems, Inc.
- Mazda Marvasti
- mazda&creationpoint.com
-19005
- AdytumSolutions, Inc.
- Duncan McGreggor
- info&adytumsolutions.com
-19006
- Polish Professional Publishers Ltd.
- Ryszard Krakowiak
- rkrakowiak&pwp.pl
-19007
- 3C Systems Oy
- Antti Suanto
- antti.suanto&ccc.fi
-19008
- GateHouse
- Per Engberg
- pch&gatehouse.dk
-19009
- Clever IT di Ivan Raimondi
- Ivan Raimondi
- ivan.raimondi&cleverit.ch
-19010
- Bluetop Technology Co., Ltd.
- songqianli
- sql&bluetop.com.cn
-19011
- Jacarta Ltd.
- Colin Mocock
- colin&jacarta.co.uk
-19012
- Net Evidence (SLM) Ltd
- Richard Thomas
- rmt&net-evidence.com
-19013
- Sonario
- Yoram Mizrachi
- yoram&sonario.com
-19014
- Magix s.r.o.
- David Bucek
- davidbucek&magix.cz
-19015
- oulman.org
- James Oulman
- jamie&oulman.org
-19016
- Scholl Consulting
- Rob Scholl
- rob&scholls.net
-19017
- XTEND Consulting, LLC
- Stephen Thompson
- stephen.thompson&xtendconsult.com
-19018
- Dandre
- Mudi Dandan
- info&dandre.hu
-19019
- Coastal Carolina University
- Mark Allen
- mallen&coastal.edu
-19020
- ryanscool
- Ryan Gyure
- ryan&ryanscool.com
-19021
- Ensemble Designs, Inc.
- David Wood
- engineering&endes.com
-19022
- Invocom Ltd.
- John Clarke
- john.clarke&invocom.com
-19023
- LMU
- sanjeev
- sanju_slp&yahoo.co.in
-19024
- Bixby Telephone Company
- Dan White
- sysadmin&olp.net
-19025
- OSLiNK Spolka z o.o.
- Maciej Swierk
- maciek&oslink.pl
-19026
- Dirk Gorny Unternehmensberatung
- Dirk Gorny
- Dirk.Gorny&GMX.de
-19027
- TriAWorks, Inc.
- Kurt Goolsbee
- kurt.goolsbee&earthlink.net
-19028
- Sputnik, Inc.
- Nick Avgerinos
- nicka&sputnik.com
-19029
- Nittotsushinki Co.,Ltd.
- hiwatashi mitsuhiro
- hiwatasi&nittotsushinki.co.jp
-19030
- Suva
- Thomas Vaderna, IFS
- vat&suva.ch
-19031
- LogIn S&C GmbH
- Dr. Werner Geigle
- werner&login-gmbh.de
-19032
- Apollis AG
- Andre Siegert
- andre.siegert&apollis.com
-19033
- Moniforce B.V.
- Henk de Koning
- henk.de.koning&moniforce.com
-19034
- 3SP, Investigação e Desenvolvimento de Tecnologias, Lda.
- Daniel Pereira
- info&3sp.pt
-19035
- Omnirei s.r.l.
- Romano Rapallini
- rrapallini&omnirei.net
-19036
- Etherboot Project
- Marty Connor
- iana-pen&etherboot.org
-19037
- Bolsa Nacional de Valores
- Rigoberto Torres
- soporte&bnv.co.cr
-19038
- WebNet, Ltd
- Vladimir E. Protaschuk
- vladprot&mail.ru
-19039
- National Research Center for High Performace Computers
- Ji Haitao
- jiht&ict.ac.cn
-19040
- Trusted Computer Solutions, Inc.
- James E. Maple
- jmaple&tcs-sec.com
-19041
- Apparent Networks Inc.
- Fred Klassen
- fklassen&apparentnetworks.com
-19042
- ACBR Computadores Ltda.
- Ricardo Quintela
- rquintela&acbr.com.br
-19043
- XiTrust Secure Technologies GmbH
- Georg Lindsberger
- georg.lindsberger&xitrust.com
-19044
- JSC "Kredyt Bank (Ukrajina)"
- Volodymyr Kuzhel and Ivan Lesnik
- kuzhel&wucb.lviv.net
-19045
- MyNetwork System Co.,Ltd
- HairongWan
- wanhairong&hotmail.com
-19046
- Lenovo Enterprise Business Group
- Joe Bolan
- jbolan&lenovo.com
-19047
- Magerealm Enterprises
- Chris Giard
- cgiard.iana&magerealm.com
-19048
- Fambus
- Eric Bus
- iana&fambus.nl
-19049
- Scalix Corporation
- Andrew Palay
- andy.palay&scalix.com
-19050
- Conchis, LLC
- Greg Rhoades
- gar&conchis.net
-19051
- Martin Thorpe
- Martin Thorpe
- iana&met24.net
-19052
- Seekamp Enterprises
- Scott Seekamp
- sseekamp&worldnet.att.net
-19053
- KUBOTEK Corporation
- Koichi Otsuka
- netadmin&kubotek.co.jp
-19054
- Intraperson
- E Venkat Ramana
- e_v_rmn&yahoo.com
-19055
- Naviscan PET Systems, Inc.
- Irving Weinberg
- inweinberg&aol.com
-19056
- Access Computech Pvt Ltd.
- Ketan Upadhyay
- ketan&accesscomputech.com
-19057
- Exavio, Inc.
- Humphrey Liu
- hcliu&exavio.com
-19058
- BISON Systems AG
- Richard Muri
- richard.muri&bison-systems.ch
-19059
- moreCom A/S
- Mickael Fontaine
- mfo&morecom.no
-19060
- UXComm
- George Vanecek
- gvanecek&uxcomm.com
-19061
- Werner Wiethege
- Werner Wiethege
- iana&3112.org
-19062
- Tuxee Network
- Frederic Jolliton
- iana&tuxee.net
-19063
- Alterlane
- Xavier Carcelle
- xavier.carcelle&alterlane.fr
-19064
- Bureau Ingénierie Richard Domon SA
- Stéphane PETIT
- stephane.petit&bird-fr.com
-19065
- PETIT-FR
- Stéphane PETIT
- stephane&petit-fr.net
-19066
- Macnetix OHG
- Dirk Wahrheit
- wahrheit&macnetix.de
-19067
- Universidade Católica Portuguesa
- Jorge Cerol
- jcerol&ci.ucp.pt
-19068
- Travel Only
- Douglas Hammond
- djhammond&travelonly.net
-19069
- xenocastle
- Joerg Neikes
- xenoist&web.de
-19070
- Kevcom Microsolutions
- Kevin Tsang
- kevin&kevcom.ca
-19071
- I-Assure
- Barrett McGuire
- barrett.mcguire&i-assure.com
-19072
- Magnasync
- Mariusz
- cti&magnasync.com
-19073
- Sundowner Trailers Inc
- Chris Childress
- chrisc&sundownertrailer.com
-19074
- Fidelis Security Systems, Inc
- Gene Savchuk
- savchuk&fidelissecurity.com
-19075
- Poštna banka Slovenije, d. d.
- Miran Bizjak
- miran.bizjak&pbs.si
-19076
- xenocastle
- Joerg Neikes
- xenoist&web.de
-19077
- Xing-Lab
- Yue Xing
- yxing&ualberta.ca
-19078
- Fujitsu Component Limited
- Naoyuki Nagao
- nagao.naoyuki&fcl.fujitsu.com
-19079
- Silicon Data International Co., Ltd.
- Nick Chu
- nickchu&silicon-data.com.tw
-19080
- Tsukasa Enterprise
- Etsuji Nakai
- qyp02361&nifty.ne.jp
-19081
- Wuhan Jetway Information Security Industry Co.,Ltd
- Zhengping Liang
- lzp_wd&sohu.com
-19082
- Voelcker Informatik AG
- Matthias Bauer
- matthiasb&voelcker.com
-19083
- Albanet Ltd
- Mr. T. van Stratum
- t.vanstratum&albanet.co.uk
-19084
- Mimic Productions
- Richard
- richard&mimic.ca
-19085
- The Davidge Group
- William M. Davidge
- bill&davidge.net
-19086
- Maytech Publishing Ltd
- Mike Futerko
- mike&maytech.net
-19087
- NTx BackOffice Consulting Group GmbH
- Roman Gruber
- oid&ntx.at
-19088
- Maersk Data SPECTIVE
- Niels Putzer - System Management
- npu&maerskdata.dk
-19089
- Infor.org Inc. Taiwan
- Wu-Shun, Wu
- dannydai&mail.com
-19090
- Bernhard-Riemann-Gymnasium Scharnebeck
- BRGS Admin Team
- admins&brgs.de
-19091
- NuGenesis Technologies, Inc
- Jeffrey Paquette
- oidadmin&nugenesis.com
-19092
- Exa Networks Ltd
- Thomas Mangin
- thomas.mangin&exa-networks.co.uk
-19093
- Hofsvang
- Bjorn Hofsvang
- bjorn&hofsvang.no
-19094
- peerVue LLC
- Brian Batchelder
- brian&peervue.com
-19095
- TiL Solutions inc.
- Luc Tremblay
- luc.tremblay&TiLSolutions.com
-19096
- info2cell.com FZ-LLC
- Mohammed Ersan
- ersan&info2cell.com
-19097
- DefaultCity
- Patrik Bodin
- the&pal.pp.se
-19098
- PAL Communications
- Patrik Bodin
- the&pal.pp.se
-19099
- Whitewater Mobile LLC
- Peter L. Squillante
- Peter.Squillante&WhitewaterMobile.com
-19100
- OHANA WIRELESS INCORPORATED
- Igor Knyazev
- igorknyazev&ohanawireless.com
-19101
- Vouch Integrated Technologies (P) Ltd.
- Santhosh B.S.
- santhosh&vouchti.com
-19102
- Karlsruher Lebensversicherung AG
- Hans-Martin Lechner
- hm.lechner&karlsruher.de
-19103
- CHMS, Inc.
- Sid Furst
- sidf&chmsinc.com
-19104
- BOUYGUES, SA
- HOBERDON, Olivier
- ohoberdon&bouygues.com
-19105
- Fabian Fagerholm Consulting
- Fabian Fagerholm
- fabbe&paniq.net
-19106
- Deep Eddy Internet Consulting
- Chris Garrigues
- cwg-iana&deepeddy.com
-19107
- boojum mobile, inc
- fred mcclain
- mcclain&boojummobile.com
-19108
- I&TC Solutions Pty. Ltd.
- Ian Corner
- ian.corner&itcg.com.au
-19109
- PacketMotion, Inc.
- Alex Chen
- achen&packetmotion.com
-19110
- Conduit Networks, Inc
- Guy Reams
- guy&conduitnetworks.com
-19111
- eBdesk Ltd
- Subroto
- subroto&ebdesk.com
-19112
- RJL Computer Consulting, LLC
- Roger Leardi
- roger&rjlcc.com
-19113
- Server Place LTDA
- Fernando Augusto M Silva
- fams&linuxplace.com.br
-19114
- Proximion Fiber Systems AB
- Johan Widman
- johan.widman&proximion.com
-19115
- Bernhard-Riemann-Gymnasium Scharnebeck
- BRGS Admin Team
- admins&brgs.de
-19116
- Antidot
- Fabrice LACROIX
- lacroix&antidot.net
-19117
- MAMM d.o.o.
- Tomislav Sereg
- post4&mamm.hr
-19118
- Europlex Technologies Ltd.
- Michael Priess
- michaelp&europlex.ie
-19119
- Blue Chip Technology Ltd
- Robert Mortimer
- rmortimer&bluechiptechnology.co.uk
-19120
- 800onemail Inc.
- OID Admin
- oid.admin&800onemail.com
-19121
- Augmentix Corporation
- David McKinley
- david.mckinley&augmentix.com
-19122
- Yang Arts
- Holly Yang Aaron
- holly&yangarts.com
-19123
- Virtual Charting
- David L. Kern, Jr.
- dave&virtualcharting.com
-19124
- Pexim d.o.o.
- Aleksandar Milosevic
- aca&pexim.co.yu
-19125
- Planar Systems, Inc.
- Desmond Moleski
- dez.moleski&planar.com
-19126
- AECODI
- Julian Inza
- presidente&aecodi.org
-19127
- SpamPet
- Ron Allred
- ron-iana&neversleep.net
-19128
- KomKom Electronics
- Lakutin Alexey
- kernel&comcom.ru
-19129
- Sanek Systems
- Gordon J. Sanek
- GordonSanek&Earthlink.net
-19130
- MenuSiS Technologies (Pty) Ltd.
- A. J . Greyling
- greylina&iafrica.com
-19131
- Stiftung Synanon
- Joachím Gerwig
- edv&synanon.de
-19132
- The Cheshire Web Mill
- Robert Mortimer
- rmortimer&linux.fsnet.co.uk
-19133
- Baycom Opoto-Electronics Technology Co., Ltd.
- Porter
- porter&baycom.com.tw
-19134
- Texocom Inc
- Mahesh Sundara
- mahesh&texocom.com
-19135
- Darkerhosting.net
- spike grobstein
- spike666&mac.com
-19136
- Trichord, Inc.
- Mark Jeweler
- jewelerm&trichord-inc.com
-19137
- Sebastian Staiger Computer Services
- Sebastian Staiger
- OID&staiger-service.de
-19138
- Bright Prospects LLC
- Richard Basch
- oid&ra.bright-prospects.com
-19139
- Edgewater Networks, Inc.
- Larry Cromwell
- lcromwell&edgewaternetworks.com
-19140
- Matthew R. Wilson
- Matthew R. Wilson
- iana&mattwilson.org
-19141
- Quest Serviced Apartments
- Colin Stenhouse
- questit&questapartments.com.au
-19142
- Carlo Strozzi (formerly 'ScriptaWorks s.r.l.')
- Carlo Strozzi
- carlo&strozzi.it
-19143
- SecureAge Technology
- Teow-Hin Ngair
- teowhin&secureage.com
-19144
- Arjuna
- St. Widjanarko
- imut_s&lycos.com
-19145
- Xonix
- Eugene Xonix
- ugen&yahoo.com
-19146
- Jubatus Corporation
- Vaughn Vernon
- vaughn&jubatus.com
-19147
- Università degli Studi di Milano
- Divisione Telecomunicazioni
- divtlc&unimi.it
-19148
- acticall
- Emmanuel Leclercq-bayle
- e.leclercqbayle&acticall.com
-19149
- Innovaciones Microelectrónicas S.L.
- Rafael Romay-Juárez
- rafael.romay&anafocus.com
-19150
- Ville d'Aulnay-sous-bois
- Martins Dominique
- dmartins&aulnay-sous-bois.com
-19151
- WRX Slovakia s.r.o.
- Tomas Zelem
- zelem&wrx.sk
-19152
- Camargo e Souza SC/LTDA
- Paulo Sergio Lemes Queiroz
- oluap&plugon.com.br
-19153
- Instituto Politécnico Do Porto
- Paulo Calçada
- pcalcada&ipp.pt
-19154
- Corporacion Nacional de Angioplastia
- Antonio Huaman
- cnaantonio&terra.com.pe
-19155
- AirManage Networks Ltd.
- Gangadharan R. Morekonda
- mganges&airmanage.com
-19156
- Cutting Edge
- Michael Ehman
- mpe&cuttedge.com
-19157
- Chongqing Changsong Network Information Co.LTD
- John Wang
- postmaster&csnetwork.com.cn
-19158
- PlumStreet, LLC
- Michael Isiminger
- michael.isiminger&plumstreet.net
-19159
- Shelton School District
- Josh Hulbert
- JHulbert&sheltonschools.org
-19160
- ICAT Managers, LLC
- Joan Gargano
- jgargano&icat.com
-19161
- POSnet Services, LLC
- Christopher Paluch
- chris.paluch&posnetservices.com
-19162
- Evolving Media Network, LLC
- Daniel Stone
- dan&evolvingmedia.net
-19163
- insen
- boudegga mehdi
- boudeggamehdi&yahoo.fr
-19164
- Initial City Link Limited
- A K CORMACK
- acormack&city-link.co.uk
-19165
- Kanton Solothurn
- Bader Kurt
- kurt.bader&aio.so.ch
-19166
- Alswille Gloabal Services
- Segun Fagbemi
- olusegun&alswille.com
-19167
- CapMon A/S
- Peter Valdemar Mørch
- pm&capmon.dk
-19168
- Fruno S.A.
- Andres Valenciano
- andres.valenciano&fruno.com
-19169
- Volantis Systems Ltd
- David Roberts
- se&volantis.com
-19170
- X-Taskforce s.r.l.
- Giacomo Cariello
- jwk&x-taskforce.it
-19171
- Checkcare Enterprises, LLC
- James Daily
- james_daily&checkcare.com
-19172
- PFM.Net, Inc.
- Daniel Fisher
- oz&pfm.net
-19173
- Rex Consulting, Inc.
- Chris Paul
- chris.paul&sentinare.net
-19174
- Gestalt, LLC
- Bob Pollack
- rpollack&gestalt-llc.com
-19175
- oraise GmbH
- Herr Gerold Winselmann
- g.winselmann&oraise.de
-19176
- SCOMCENTER
- Wanli Mu
- wlmu&scomcenter.com
-19177
- Tandem Systems, Ltd.
- Oleg Malkov
- info&winagents.com
-19178
- Skill Corporation
- Christopher Cellucci
- enterprisenumber&skillcorp.com
-19179
- Raysis Co.,Ltd
- Su Gil Lee
- lsg&raysis.com
-19180
- Guidewire Software, Inc.
- Alan Keefer
- akeefer&guidewire.com
-19181
- Optimum Holding Inc.
- Willem Konynenberg
- iana-contact&optimumqos.com
-19182
- JDA Software
- Bill Owen
- sctnetops&jda.com
-19183
- Herdt Domain Service
- Andreas Herdt
- iana&andreas-herdt.de
-19184
- Widerthan.com
- Wonchang Shin
- shinwc&widerthan.com
-19185
- LinuxCare Ltd.
- Xeon Ling
- vvww8899&yahoo.com
-19186
- Xtramus Technologies
- Sam Koo
- sam_koo&xtramus.com
-19187
- MEK
- Martin E. Koch
- enterprisenumber&rundumblick.de
-19188
- satunol mikrosistem
- Ojahan
- ojahan&kpptransport.itb.ac.id
-19189
- Senshu University
- Toru Yoshikawa
- toru&acc.senshu-u.ac.jp
-19190
- Bildanalyssystem AB
- Thomas Fafoutis
- thomas.fafoutis&bildanalys.se
-19191
- woofertom media
- Tom Duke
- ubiquitom&earthlink.net
-19192
- Iglooz Technologies
- Rohit Lodha
- rohit_lodha&yahoo.com
-19193
- b-next GmbH
- b-next Administration
- admins&b-next.de
-19194
- Interbyte bvba
- Tom Snauwaert
- tom.snauwaert&interbyte.be
-19195
- TRANSRADIO SenderSysteme Berlin AG
- Alexander Reisig
- a.reisig&tsb-ag.de
-19196
- Agarik
- Laurent Seror
- software&agarik.com
-19197
- Eastlink GmbH
- Heino Gutschmidt
- heino.gutschmidt&eastlink.de
-19198
- activ-net GmbH & Co. KG
- M. Wortmann
- kontakt&activ-net.de
-19199
- SHC Netzwerktechnik GmbH
- Hans Lang
- hal&shc.eu
-19200
- MMG
- Hans Lang
- p9&mmg.de
-19201
- Oyster Partners Ltd
- Craig Smith
- craig.smith&oyster.com
-19202
- meto-logic
- NiCki trinidad
- nrtrinidad&eastern.com.ph
-19203
- DAI-Labor
- Sahin Albayrak
- admins&dai-labor.de
-19204
- Milano Medien GmbH
- Alexander Gräf
- graef&milanomedien.com
-19205
- Secardeo GmbH
- Ulf Moeller
- ulf.moeller&secardeo.com
-19206
- Hollins University
- Computer Services - Carol Reed
- creed&hollins.edu
-19207
- Graphic Management Partners Inc.
- Bill Ferris
- bferris&gmprt.com
-19208
- analytiq consulting gmbh
- Christoph Fausak
- info&analytiq.de
-19209
- Caterpillar Inc.
- Ken Serrine
- kserrine&cat.com
-19210
- Cassatt Corporation
- Randy Murrish
- mush&cassatt.com
-19211
- TEZ Georgsberg GmbH
- Stefan Lemsitzer
- stefan&lemsitzer.com
-19212
- University System of Maryland
- Suresh Balakrishnan
- suresh&usmd.edu
-19213
- Raining Data Corporation
- John Bramley
- john.bramley&rainingdata.com
-19214
- Ogilvy & Mather Deutschland GmbH (formerly 'WPP Service GmbH & Co. KG')
- Marco Schirrmeister
- Marco.Schirrmeister&ogilvy.com
-19215
- European Organisation for Research and Treatment of Cancer AISBL / IVZW
- Nedostoupof Gilles
- gne&eortc.be
-19216
- Heringa
- E. Heringa
- erwinheringa&gmail.com
-19217
- iiNet Pty Ltd
- Richard Staniforth
- ricks&staff.iinet.net.au
-19218
- Fortress Networks (Aust) Pty Ltd
- Chris Leishman
- cleishman&fortress.net.au
-19219
- Pi Kappa Alpha - Gamma Tau
- Mike Palombo
- palomm&pikes-rpi.com
-19220
- Local-Web AG
- Gunter Burchardt
- hw&local-web.net
-19221
- Metropolis AG
- Mike Bretz
- info&metropolis-ag.de
-19222
- Eurotek srl
- Claudio Tonin
- ctonin&eurotektel.com
-19223
- Internap Network Services Corporation
- John Shriver
- jshriver+ietf&mail.internap.com
-19224
- OSSBroadNet K.K
- Shigeki Hosaka
- shosaka&ossbn.co.jp
-19225
- Tumel
- Bulent Sagel
- iftah&web-silicon.com
-19226
- Titanium
- Thomas KIPP
- thomas.kipp&libertysurf.fr
-19227
- Blackwood Medical Inc
- Lee Yogel
- lyogel&blackwoodmedical.com
-19228
- Finish Line, Inc.
- George Tetreault
- ntadmin&finishline.com
-19229
- CFOknows, LLC
- Leonard Linde
- leonard&cfoknows.com
-19230
- Graphix Prose, LLC
- Perry Dillard
- perry&graphixprose.com
-19231
- Lumenware, LLC
- C. Andy Martin
- oidadmin&lumenware.com
-19232
- LSC Linux Support Center Kft.
- Deim Ágoston
- deim.agoston&lsc.hu
-19233
- Blue Lane Technologies Inc.
- Venkat Achyuta
- venkat&bluelane.com
-19234
- M2
- Ilia Moisseev
- moisseev&web.de
-19235
- Silver Diamond Services, LLP
- Nickolaos Diamantis
- Nick&sdspos.com
-19236
- CPM SA
- Cleverson Silva
- admin.internet&cpm.com.br
-19237
- becom Informationssysteme GmbH
- Simon Fischer
- simon.fischer&becom.com
-19238
- Moore Systems, Inc.
- David Moore
- dmoore&MSWEBS.com
-19239
- cfSOFTWARE, Inc.
- Robert C. Wessel
- rwessel&cfsoft.com
-19240
- Nanshu Densetsu
- Christopher Taylor
- cstaylor&nanshu.com
-19241
- Cemaphore Systems Inc.
- Jeff Looman
- jlooman&cemaphore.com
-19242
- Tellusoft
- Spencer Roberts
- sroberts&tellusoft.com
-19243
- Titus
- Spencer Roberts
- sroberts&titusoft.com
-19244
- SafeNet Media
- Spencer Roberts
- sroberts&titusoft.com
-19245
- CBPM Software
- Jason Wang
- john_wang71&hotmail.com
-19246
- XWDL
- Richard Lin
- richard&xwdl.org
-19247
- Romat Telecom Ltd.
- Gilad Rom
- gilad&romat.com
-19248
- MANIA Research Group
- Eng. Bruno Filipe Marques
- bmarq&elect.estv.ipv.pt
-19249
- FabianSoft di Fabiano Copeta
- Fabiano Copeta
- fabiansoft&libero.it
-19250
- Image Systems Corporation
- David Sorensen
- daves&imagesystemscorp.com
-19251
- KIP Information Network
- Shane Jarych
- sjarych&kipinfonet.com
-19252
- NuPi Solutions
- Nick Partsafas
- n_partsafas&yahoo.com
-19253
- Jaspert
- Joerg Jaspert
- iana&ganneff.de
-19254
- Dark Blue Sea
- Bill Vanderent
- snmp&darkbluesea.com
-19255
- Vaccius ITsec Pte LTd
- Ng Pek Yong
- f189a4613d29467300c3ef9c221199de&vaccius.com
-19256
- iCADA GmbH
- Christoph Gaitzsch
- gaitzsch&icada.com
-19257
- ProSyntic Ingenieurs b.v.
- Caspar van Zon
- c.v.zon&prosyntic.nl
-19258
- La Joliverie
- David Coheleach
- admreseau-jol&la-joliverie.com
-19259
- Ansync Inc.
- Sam Miller
- snmp&ansync.com
-19260
- MagiQ Technologies, Inc.
- Audrius Berzanskis
- audrius&magiqtech.com
-19261
- Minneapolis College of Art and Design
- Computer Support
- computer_support&mcad.edu
-19262
- Dedicado
- Eduardo Cota
- cota&dedicado.net.uy
-19263
- ET VOILA !!
- Xiao Hui LOO
- postmaster&etvoila.fr
-19264
- Magnus Weis
- Magnus Weis
- magnusweis&web.de
-19265
- Momentum Computer, Inc.
- Harry L. White
- harry&momenco.com
-19266
- Bayerisches Landesamt für Statistik und Datenverarbeitung
- Christian Brensing
- christian.brensing&lfstad.bayern.de
-19267
- Ajuntament de Palma
- Jose de Juan Sola
- jdejuan&imi.a-palma.es
-19268
- Intercomp Ltd.
- Viktor Feurer
- feurer.viktor&intercomp.hu
-19269
- Hybrigenics SA
- Mr Augustin Luton
- admin&hybrigenics.com
-19270
- Stora Enso Oyj
- Eeva Kivelä
- eeva.kivela&storaenso.com
-19271
- Ministère de l'économie, des finances et de l'industrie (Minefi)
- Jean Louis Ferracci
- icp&dsi.finances.gouv.fr
-19272
- praksys
- guillaume pernot
- gpernot&praksys.org
-19273
- TMBNET
- Laurent Fouillé
- laurent&ligfy.org
-19274
- Services Industriels de Geneve
- Gregoire Huet
- gregoire.huet&ip-man.net
-19275
- Constant Data, Inc.
- Justin Banks
- justinb&constantdata.com
-19276
- Paedagogische Hochschule Ludwigsburg
- Mr. Thomas Waller
- waller&ph-ludwigsburg.de
-19277
- Shenandoah Solutions, Inc.
- Kirk Harrison
- kharrison&shensol.com
-19278
- INOV - INESC Inovação
- Fernando Lança
- redes&inov.pt
-19279
- TMBNET
- Laurent Fouillé
- laurent&ligfy.org
-19280
- China Daily
- Feng Zhiqian
- fzq&chinadaily.com.cn
-19281
- Intrasync, LLC
- Matt Miller
- matt.miller&intrasync.net
-19282
- Institute of Continuous Media Mechanics
- Andrey Sozykin
- sozykin&icmm.ru
-19283
- Sibelius Academy
- Jari Toropainen
- jtoropai&siba.fi
-19284
- TGS Telonic GmbH
- Achim Althausen
- a.althausen&telonic.de
-19285
- BRAZILMALL NETWORK LTDA
- Angelo de Andrade Abdalla
- angelo_abdalla&hotmail.com
-19286
- Universidad de Los Andes
- Leonardo Uzcategui
- leonu&ula.ve
-19287
- META Industriesoftware GmbH
- Boris Plivelic
- bplivelic&metaind.de
-19288
- ECOPETROL S.A.
- Andrés Guillermo Pinzón Rueda
- andres.pinzon&ecopetrol.com.co
-19289
- 3Sharp
- John Peltonen
- johnp&3sharp.com
-19290
- Just Aaron
- Aaron
- aaron&justaaron.com
-19291
- Macrad
- Lance Pysher
- lpysher&mac.com
-19292
- Pirel inc.
- Serge Blais
- sblais&pirel.com
-19293
- Danriver Technologies Corporation (formerly 'Shanghai jisung information technology co.,Ltd')
- Yongfeng Zhang
- benson.zhang&hotmail.com
-19294
- LeapComm Communication Technologies Inc.
- Lily Yin
- admin&leap-comm.com
-19295
- Kolle, IT-Ingeniørfirma ApS
- Gunnar Boye Pedersen
- iana&kolle.com
-19296
- Filterlogix, LLC
- Brent
- bstephens&filterlogix.com
-19297
- DSpace Pty Ltd
- Doug Mein
- doug.mein&dspace.com.au
-19298
- Media Cruise Solutions k.k.
- Kazuhiro Takano
- ktakano&mcskk.com
-19299
- Turkcell Iletisim Hizmetleri A.S.
- Muharrem SAR
- muharrem.sar&turkcell.com.tr
-19300
- Deutscher Sparkassen Verlag GmbH
- Ulrich Launer
- ulrich.launer&dsv-gruppe.de
-19301
- Pulse Software & Consulting Inc.
- Theva Markandaier
- theva&pulsevoice.com
-19302
- CryptCOM Securities, Inc.
- Joe Stein
- joestein&cryptcomsecurities.com
-19303
- Zhejiang Telecom Equipment Factory
- Shen Shuqi
- tec&zjtec.com
-19304
- BNP Paribas Arbitrage
- Jean Michel GARCIA
- jeanmichel.garcia&bnpparibas.com
-19305
- Indio Technologies
- Srini Rao
- srini_r2&hotmail.com
-19306
- FatPipe Networks
- Sanchaita Datta
- sanch&fatpipeinc.com
-19307
- MDS INC.
- David Law
- dlaw&mds.nordion.com
-19308
- Genesee Freenet
- Kenny Thomas
- kthomas&gfn.org
-19309
- chandan
- chandan mishra
- chandan&hotmail.com
-19310
- D.H.S. - Data, Hardware, Software spol s r.o.
- Martin Tethal
- mtethal&dhs.cz
-19311
- Sterling Crane
- Jayson David Henkel
- jhenkel&sterlingcrane.ca
-19312
- Archivas, Inc.
- SNMP Registration
- snmp&archivas.com
-19313
- beu.ch
- Heinz Beutler
- heinz&beu.ch
-19314
- Hein Roehrig IT Consulting GbR
- Hein Roehrig
- iana&hein.roehrig.name
-19315
- Andrew Johnson
- Andrew Johnson
- andrew&caitlin.gsix.net
-19316
- Mitsubishi Motors Corporation
- Takayuki Oda
- takayuki.oda&mitsubishi-motors.com
-19317
- 1310369 Ontario Ltd.
- Mario Stargard
- mario.stargard&magma.ca
-19318
- SPAN International
- Igor Peonte
- ipeonte&spanltd.com
-19319
- CLSA Ltd
- Christopher Wong
- christopher.wong&clsa.com
-19320
- Tomsktelecom, a branch of Sibirtelecom OJSC
- Vadim Kozlov
- vad&tomsknet.ru
-19321
- VSnet
- Olivier Crettenand
- network&vsnet.ch
-19322
- netiq s.r.o.
- Marcel Mojzis
- marcel.mojzis&netiq.sk
-19323
- National Centre for Physics
- Mehnaz Hafeez
- hafeez&ncp.edu.pk
-19324
- Rover Laboratories S.p.A.
- Maurizio Zanoni
- info&wawnet.biz
-19325
- Eroski S. Coop.
- Javi Dieguez
- javi_dieguez&eroski.es
-
-19326
- Tancsics Mihaly SzSzK
- Gergely Polonkai
- polesz&techinfo.hu
-19327
- Deutscher Skiverband
- Anneser Edgar
- edgar.anneser&ski-online.de
-19328
- TRANSGENE SA
- Menguy
- menguy&transgene.fr
-19329
- Telcotec Ltd.
- Rónán Fleetwood
- ronan&telcotec.com
-19330
- R&K Engineering, Inc.
- Marc Bjorklund
- marc.bjorklund&rkeng.com
-19331
- TECNET GMBH
- Haider Awni Karomi
- karoumihaider&hotmail.com
-19332
- Paperlinx NZ Ltd
- Andrew Pope
- andrew.pope&spicerspaper.co.nz
-19333
- Electro Industries/GaugeTech
- Wei Wang
- wwang&electroind.com
-19334
- Cerzan, Inc.
- Steven Camp
- Steven.Camp&Cerzan.Com
-19335
- Intermax BV
- Rene Zeestraten
- rene&intermax.nl
-19336
- Signull Technologies
- Mike Spenard
- mikes&signull.com
-19337
- Dynamx Internet Services
- Justin Hammond
- justin&dynam.ac
-19338
- Bharti Telesoft International Pvt. Ltd.
- support group
- support&bhartitelesoft.com
-19339
- Fachhochschule Bochum
- Andreas Koch
- andreas.koch&fh-bochum.de
-19340
- Provincia di Reggio Emilia
- Cristian Manfredini
- c.manfredini&mbox.provincia.re.it
-19341
- Foreningssparbanken
- Robert Kingsepp
- robert.kingsepp&foreningssparbanken.se
-19342
- Pinuts media+science Multimedia-Agentur GmbH
- Timo Fuchs
- fuchs&pinuts.de
-19343
- Medictyon
- Juan A. Hernández
- juan.hernandez&medictyon.net
-19344
- United SSL Deutschland GmbH
- Erik Hildenbrand
- cao&unitedssl.com
-19345
- Odd Element Inc.
- Joel Brooks
- jbrooks&oddelement.com
-19346
- SMComputer EDV Service & Consulting Schmid Manfred
- Manfred Schmid
- info&it-schmid.com
-19347
- Pyzzo Software Corporation
- Chris Volkert
- snmp-admin&pyzzo.com
-19348
- Synacor, Inc.
- Philip Seibel
- pseibel&synacor.com
-19349
- Lightshore
- Rafael Tonin
- rtonin&lightshore.com
-19350
- eyevis
- sylvestre legrand
- sylvestre.legrand&free.fr
-19351
- Ivega Corporation Pvt. Ltd.
- Srinivas Krishnamurthy
- srinivask&ivega.com
-19352
- IP Labs GmbH
- Klaus Reimer
- hostmaster&iplabs.de
-19353
- ScottRickman
- Scott Rickman
- scott_rickman&ntlworld.com
-19354
- E-Force S.r.l.
- Andrea Gariboldi
- andrea.gariboldi&e-force.org
-19355
- Sebastian Dietzold
- Sebastian Dietzold
- sebastian&dietzold.de
-19356
- Agroportal B.V.
- Willem Bolhuis
- willem.bolhuis&agroportal.nl
-19357
- University Medical Centre Nijmegen
- P. Kuper
- p.kuper&info.umcn.nl
-19358
- Wildner AG
- Stefan Schulze
- stefan.schulze&wildner.de
-19359
- TOPPAN FORMS CO.,LTD.
- KojiKato
- katokoji&toppan-f.co.jp
-19360
- Q&R B.V.
- Rutger van Bergen
- r.vanbergen&anite.nl
-19361
- Knowledge Media Research Center
- Torsten Kurbad
- t.kurbad&iwm-kmrc.de
-19362
- Virtuous, Inc.
- Jason Kirtland
- tech&virtuous.com
-19363
- Net Island Networks
- Michael C. Toren
- snmp&netisland.net
-19364
- 4thpass Inc.
- Markus Jansen
- markus&4thpass.com
-19365
- Nike Inc.
- Aboo Balgamwalla
- aboo&nike.com
-19366
- Westel Systems
- Scott Goeken
- sgoeken&westelsystems.com
-19367
- Ecolab, Inc
- IS - Security
- crystal.sroga&ecolab.com
-19368
- Azul Systems, Inc.
- Pramod Thangali
- pramod&azulsystems.com
-19369
- Laboratorio Imagen Radiologica
- J. Quiles
- mrquiles&usc.es
-19370
- Telecast Fiber Systems, Inc.
- John King
- jking&telecast-fiber.com
-19371
- Lanvise
- Andre Perry
- iana&lanvise.com
-19372
- Miami County ESC
- John Hermes
- jhermes&miami.k12.oh.us
-19373
- PowerTel Limited
- Paul Matthews
- matthewsp&powertel.com.au
-19374
- Orc Software
- Joakim Johansson
- joakim.johansson&orcsoftware.com
-19375
- Max-SI
- Davey Goode
- hostmaster&max-si.com
-19376
- Integrating the Healthcare Enterprise
- Mike Henderson
- mike&easterninformatics.com
-19377
- Nekotec Telecom
- Hermilo Vallejo
- hermilo.vallejo&nekotec.com.mx
-19378
- MagicCastle Cummunication
- Jun, Moon-Seog
- msh&magiccastle.co.kr
-19379
- Imperva, Inc.
- Amichai Shulman
- shulman&webcohort.com
-19380
- TAMURA Corporation
- Yoshiaki Hasegawa
- yoshiaki.hasegawa&tamura-ss.co.jp
-19381
- Bundesanstalt fuer Finanzdienstleistungsaufsicht
- Stefan Klueppel, Oliver Hennl, Ruediger Vetter, Martin Steitz
- pki&bafin.de
-19382
- Manzara Electronics LTD.
- Stacy Minkin
- stacy&glb.net
-19383
- Mikromarketingas UAB
- Vytautas Vakrina
- info&micro.lt
-19384
- VIC TOKAI CORPORATION
- Takahiro Matsuura
- infra&victokai.co.jp
-19385
- Infinity Comunicaciones
- Manel Monguilod
- Manel.Monguilod&infinity.es
-19386
- Martech Systems (Weymouth) Ltd.
- John Baker
- john.baker&martechsystems.co.uk
-19387
- Laboratori Guglielmo Marconi
- Michele Bergonzoni
- bergonz&labs.it
-19388
- DB Systems GmbH
- Stephan Kurth
- stephan.kurth&tlc.de
-19389
- ComSign Ltd.
- Zeev Shetach
- Zeev&ComSign.co.il
-19390
- Trend Software LLC
- VASILIY GAGIN
- vgagin&trend-soft.com
-19391
- SASH Management, LLC
- David Witt
- spam_iana_oid&giftchecksolutions.com
-19392
- City of Union City, Georgia
- Jeffrey D. Brown
- jbrown&unioncityga.org
-19393
- Trident Systems Incorporated
- Wayne Franklin
- wayne.franklin&tridsys.com
-19394
- I.T. By Design, Inc.
- Gene Hovey
- gene&theHoveys.com
-19395
- NewLink Genetics
- Brad Powers
- itsupport&linkp.com
-19396
- CITI - Center for Information Technology Integration
- David M. Richter
- richterd&citi.umich.edu
-19397
- TrafficSim Co., Ltd.
- Toshiya HOTTA
- hotta&trafficsim.co.jp
-19398
- JSC Institute of Informational Technologies
- Yuriy Gorbenko
- iit&iit.kharkov.ua
-19399
- Xylon Computersystems
- Arne Brutschy
- abrutschy&xylon.de
-19400
- TriggerPlus Software Ltd.
- Yoav Maor
- yoav&triggerplus.com
-19401
- Fachhochschule Kaiserslautern Standort Zweibruecken
- Helfrich Markus
- helfrich&rz-zw.fh-kl.de
-19402
- Robert W. Baird & Co
- IT Infrastructure Services
- OIDAdmin&rwbaird.com
-19403
- Westbridge Technology, Inc.
- Guy Hussussian
- guy&westbridgetech.com
-19404
- NIC Inc.
- Rob Lindenbusch
- rob&nicusa.com
-19405
- Advanced Systems Concepts, Inc.
- Benjamin Rosenberg
- ben21&advsyscon.com
-19406
- Adiscon GmbH
- Rainer Gerhards
- rgerhards&adiscon.com
-19407
- Atomic9.NET
- Stephen Craft
- contact&atomic9.net
-19408
- Zweicom Ltd.
- Jose Chavez
- jchavez&zweicom.com
-19409
- Smittskyddsinstitutet
- Michael Strålfors
- admin&smi.ki.se
-19410
- Ministerio de Economia y Hacienda
- Oscar Robledo
- oscar.robledo&minhac.es
-19411
- Andreas Falk
- Andreas Falk
- privat&andreas-falk.de
-19412
- TeliaSonera Mobile Networks AB
- Thomas Bergerhag
- thomas.bergerhag&teliasonera.com
-19413
- SBIM-FMUP
- Pedro Miguel
- pm&med.up.pt
-19414
- Kolab Project
- Bernhard Reiter
- bernhard&intevation.de
-19415
- Docucorp International
- Richard Cook
- rcook&docucorp.com
-19416
- Edison Schools
- Karen Chang
- kachang&edisonschools.com
-19417
- Envoy International, LLC
- Alexander Sokhin
- alex&envoy-usa.com
-19418
- Stampede Technologies, Inc.
- Brian Morris
- brian&stampede.com
-19419
- Internet-Team GmbH
- Marino Schwedhelm
- ms&i-team.de
-19420
- NodeMinder
- John R. Hachey
- hachey&citlink.net
-19421
- Futago LLC
- Jevin Sweval
- jevinsweval&futagollc.com
-19422
- LDAP Technologies
- Luis E. Lewis
- lelewis&optonline.net
-19423
- Global Dial Pty Ltd
- Mr Nathan Alberti
- na&nathanalberti.com
-19424
- ECoCoMS Ltd.
- Todor Vassilev
- todorv&ecocoms.com
-19425
- Hinttech BV
- Ake van der Meer
- avdmeer&hinttech.nl
-19426
- ESDG Konsult AB
- Anders Svensson
- anders.svensson&esdg.se
-19427
- The Excel Ortho Group
- Sanjot Bharatan
- sanjyotb&yahoo.com
-19428
- NovAG-Services Ltd.
- Konstantin Filipenko
- KFilipenko&kmf.com.cy
-19429
- Alphawave Ltd
- David Lawrence
- snmp&alphawave.net
-19430
- NET-2COM Ltd.
- Steven Feng
- fxtop&hotmail.com
-19431
- JSC Kordon
- Rezvanov Vasily Pavlovich
- kordon&ip.rsu.ru
-19432
- Virulent Software
- Nicholas Holder
- nrholder&gmail.com
-19433
- Austin Independent School District
- William Hill
- whill&austin.isd.tenet.edu
-19434
- Concepts et contenus
- Yves Bergeron
- yves.bergeron&bdeb.qc.ca
-19435
- Hectec GmbH
- H. Breitner
- dicom_uid&hectec.de
-19436
- Concordia University
- Steven Winikoff
- Steven.Winikoff&concordia.ca
-19437
- European School of Management and Technology GmbH
- Thomas Werner
- werner&esmt.org
-19438
- Broadweave Networks
- Mark Horstmeier
- markh.remove&broadweave.com
-19439
- Kingstar&winning Medical Info-Tech Co.,Ltd.
- kai sun
- sunkai&china.com
-19440
- IAD GENERAL CO.,LTD
- LIUCHENGLONG
- LIUCHENGLONG&HUAWEI.COM
-19441
- Toroki, Inc.
- Amir Fuhrmann
- amir&toroki.com
-19442
- PHANTOM
- Robert Pawlowski
- R.Pawlowski&converse.com.pl
-19443
- EGATEL S.L.
- José Manuel Mariño
- mbasalo&egatel.es
-19444
- Metaswitch Networks Ltd (formerly 'Data Connection Ltd')
- Colin Tregenza Dancer
- iana&metaswitch.com
-19445
- Calltech Sp. z o.o.
- Sebastian Smyczyñski
- ssmyczynski&calltech.com.pl
-19446
- Cable One
- Eric Billeter
- ebilleter&cableone.net
-19447
- Swift and Company
- Joshua Hastings
- joshua.hastings&swiftbrands.com
-19448
- zending
- C. van Meerendonk
- info&zending.nu
-19449
- Systinet Corp.
- Petr Dvorak
- petr.dvorak&systinet.com
-19450
- NetShift Software Ltd
- Andy Pinkard
- andy.pinkard&netshift.com
-19451
- NextG Networks, Inc.
- Daniel Trieu
- dtrieu&nextgnetworks.net
-19452
- BeiJing NuQX Technology CO.,LTD
- Zeng Kong
- jerry&nuqx.com
-19453
- Ufinity Pte. Ltd.
- Lee Peng Wai
- pengwai&ufinity.com
-19454
- Airspan Networks Inc.
- Mark Thomas
- mthomas&airspan.com
-19455
- Marks & Spencer PLC
- Sean Catlin
- sean.catlin&marks-and-spencer.com
-19456
- Prediwave, Inc
- Yaron Benita
- yaronb&prediwave.com
-19457
- Platinum Equity, LLC
- Mark Barros
- webmaster&peh.com
-19458
- Application Security, Inc.
- John Colton
- jcolton&appsecinc.com
-19459
- RF Applications, Inc.
- Bruce R. Knox
- bknox&rfapps.com
-19460
- Sycamore.US
- Eric Hittle
- sysadmin&sycamore.us
-19461
- Cendant Mortgage Corporation
- Michael R Davis
- michael.davis&mortgagefamily.com
-19462
- Roberto Capancioni
- Roberto Capancioni
- roberto&capancioni.com
-19463
- Division of Johns Hopkins in Singapore Limited
- Seow Kok Heng
- kokheng&hopkins.edu.sg
-19464
- Hitachi Communication Technologies, Ltd.
- Hiroaki Kasahara
- hiroaki_kasahara&hitachi-com.co.jp
-19465
- Franziska Buendgens
- Franziska Buendgens
- buendgf1&cs.man.ac.uk
-19466
- PND1
- Pinda Ndaki
- pinda&dining.umd.edu
-19467
- GeekBone.org
- Jun Sheng
- chaos&geekbone.org
-19468
- Ishihata industry
- Kyohei Ishihata
- ishihata&amy.hi-ho.ne.jp
-19469
- Highnet Systems Ltd.
- Arik Ben-Dov
- arik&highnet-sys.com
-19470
- Highnet Systems Ltd.
- Arik Ben-Dov
- arik&highnet-sys.com
-19471
- Secgo Group Oy
- Tatu Mannisto
- tatu.mannisto&secgo.com
-19472
- Staer Sistemi s.r.l.
- Massimo Marini
- massimo.marini&staersistemi.it
-19473
- North American Electric Reliabiity Corporation
- Jeff Hicks
- jeff.hicks&nerc.net
-19474
- CRL
- Manisha
- mvjagadhane&hotmail.com
-19475
- Confederação Interestadual das Cooperativas Ligadas ao Sicredi - Sicredi
-Servicos
- Fernando Henrique Cardoso
- fcardoso&sicredi.com.br
-19476
- Highwall Technologies, LLC
- Bob Poole
- bob.poole&highwalltech.com
-19477
- Infocaja, S.L.
- Juan Jose Roman
- juan.jose.roman&infocaja.es
-19478
- Rapidpacket
- Todd Troxell
- xtat&rapidpacket.com
-19479
- KeyOn Communications, LLC
- Robert McPeak
- robert.mcpeak&keyon.com
-19480
- litica.de - Hermann & Matejek GbR
- Ulrich Matejek
- uli&litica.de
-19481
- BluePig
- Jia Huang
- iamfat&263.net
-19482
- Waldmann
- Karl-Heinz Waldmann
- karl-heinz.waldmann&siemens.com
-19483
- Aqua Systems, Inc.
- Tamotsu Akama
- akama&aqua-systems.co.jp
-19484
- BANCO DE ESPAÑA
- Miguel Ángel Peña
- pki&bde.es
-19485
- art of object GmbH
- Andreas Winter
- andreas.winter&art-of-object.de
-19486
- Venali Inc
- Benny Millares
- benny.millares&venali.com
-19487
- Lucent Technologies, Mobility IN
- Enoch Wang
- ewang&lucent.com
-19488
- Toadico, Inc
- Kelly Roestel
- kelly&toadico.com
-19489
- IP3 Networks, Inc.
- Christopher Bradley
- dev&ip3networks.com
-19490
- Hiper S.A.
- Alvaro Chavez
- achavez&hiper.com.pe
-19491
- Epeople Soluções S/C LTDA
- Tiago Silva Proença
- tsp&inf.ufsc.br
-19492
- ADDC Infotech GmbH
- Peter Kanis
- kanis&addc.ch
-19493
- iMEDIC GmbH
- Stephan Wilczek
- wilczek&imedic.de
-19494
- Richard Schilling, MBA
- Richard Schilling
- rschi&rsmba.biz
-19495
- National Informatics Company
- Richard Schilling
- rschi&rsmba.biz
-19496
- Cognition Group, Inc.
- Richard Schilling
- rschi&rsmba.biz
-19497
- OSS Application Consulting Centre, Taiwan
- Song Huang
- Song&ossacc.org
-19498
- HMJ - Projets Délocalisés
- M. Jacques CALAIS
- jacques.calais&projet-delocalise.com
-19499
- Association Inforoots
- Dominique Guardiola
- inforoots&inforoots.org
-19500
- Government Information Technology Services
- Kavin Chinawong
- kavin.chinawong&gits.net.th
-19501
- Trust Investment Bank, JSB
- Sergey Suchinskiy
- sergey.suchinskiy&trust.ru
-19502
- QORVUS Systems, Inc.
- Kathryn Kessey
- kkessey&qorvus.net
-19503
- Lockdown Networks, Inc.
- Robert Gilde
- iana&lockdownnetworks.com
-19504
- Mullen
- Tom Mullen
- tmullen&sio.midco.net
-19505
- verzeichnisdienst
- Bastian Boday
- hostmaster&bast.li
-19506
- Christian Jahn
- Christian Jahn
- christian.jahn&calbe.net
-19507
- haroldbeumer.com
- Harold P. Beumer
- ldap-schema&haroldbeumer.com
-19508
- The Software Guild, Inc.
- Arthur Messenger
- Arthur.messenger&Att.net
-19509
- Trident Microsystem INC
- Jian Niu
- jniu&tridentmicro.com
-19510
- Center for Excellence in Telecommunications and Space
- Dovel Myers Jr
- dm142988&oak.cats.ohiou.edu
-19511
- Larry Burton
- Larry Burton
- larry_burton&larryburton.com
-19512
- SAHM Technologies LLC
- Didier COLIN
- didier.colin&sahm.ae
-19513
- C3 Desenvolvimento de Sistemas Computacionais Ltd.
- Claudio Cuqui
- claudio&c3systems.com.br
-19514
- On Demand Systems Limited Partnership
- Yasuhiro Fujita
- fujita&mitemite.co.jp
-19515
- TREND Service GmbH
- Christian Lox
- hostmaster&trend-service.de
-19516
- Universitaet Erfurt
- Gabriele Schulz
- gabriele.schulz&uni-erfurt.de
-19517
- Colibria AS
- Lars Myhrum
- myhrum&colibria.com
-19518
- Technische Universität München
- Andreas Paul
- rbg-system&in.tum.de
-19519
- E.Novation Portal Technology B.V.
- Maurice Leeflang
- iana&operations.enovation.nl
-19520
- Samartha Information Systems Pty. Ltd.
- SMK
- info&samartha.com
-19521
- dataschalt e+a GmbH
- Klaus Greisen
- k.greisen&dataschalt.de
-19522
- Aineas.net
- Naoki Misumi
- nao&aineas.net
-19523
- Sequence Solutions
- Kevin P Miller
- kevin.miller&sequencesolutions.net
-19524
- Rational Innovations
- Robert Liesenfeld
- xunil&xunil.net
-19525
- Tippecanoe County Public Library
- Lee Stoltz
- stoltzld&tcpl.lib.in.us
-19526
- BlueBoxStudio.net
- Frederic BRIAND
- fredbriand&blueboxstudio.net
-19527
- Global Technology Ltd
- Stephen Liptrott
- stelip&gtships.com
-19528
- Meson Fiber Optics
- Michael Jenkins
- jenkinsm&mesonfiberoptics.com
-19529
- NetStrong Information Ltd.
- Frank.luo
- wluo&nstrong.com
-19530
- NetMaster Ltd.
- Luowei
- luowei&sjtu.edu.cn
-19531
- INSA de Rennes
- Roderick Petetin
- Roderick.Petetin&insa-rennes.fr
-19532
- businessMart AG
- Dominik Schramm
- info&businessmart.de
-19533
- TeleMessage Ltd.
- Arthur Veinstein
- arthur&telemessage.com
-19534
- Gorenjska banka d.d. Kranj
- Janez Prešern
- janez.presern&gbkr.si
-19535
- ACNMS
- Alexis C. Villalon
- alexis.c.villalon&accenture.com
-19536
- Panduit Corp.
- Steve Jacks
- saj&panduit.com
-19537
- M5 Networks, Inc.
- Scott Anderson
- scott&m5net.com
-19538
- Add2Net, Inc.
- Ripta Pasay
- ripta.pasay&lunarpages.com
-19539
- Country Haven Academy
- Andrew Mashchak
- info&countryhaven.org
-19540
- NCS Consulting Inc.
- Neil Sequeira
- neil&ncsconsulting.com
-19541
- Belgorodenergo
- Denis E. Zargarov
- Zargarov_DE&belgorodenergo.ru
-19542
- Aalborg University Library
- Joakim Recht
- recht&aub.auc.dk
-19543
- Wellcome Trust Sanger Institute
- Infrastructure Management Team
- ssg-imt&sanger.ac.uk
-19544
- Weather Strategies
- Gabriel Wilkins
- g459&yahoo.com
-19545
- Sony CISC
- David Hofmann
- david.hofmann&am.sony.com
-19546
- MELENTANE
- Samir Sow
- samir.sow&melentane.com
-19547
- Oplink Communications, Inc.
- Calvin Fang
- calvinf&oplink.com
-19548
- FROX communication
- Martin Ronner
- martin.ronner&frox.com
-19549
- Uni-Q Systems (formerly 'ENGREN.NET')
- Hans Engren
- hans.engren&uni-q.se
-19550
- an Academic Network at Sao Paulo (ANSP)
- Jorge Futoshi Yamamoto
- yamamoto&ansp.br
-19551
- Thales Naval France
- Kress
- lionel.kress&fr.thalesgroup.com
-19552
- Alexander Kowalski
- Alexander Kowalski
- a.kowalski&freenet.de
-19553
- Beijing Gtt Telecom Technologies Co.Ltd
- GANGLIU
- ugang&sina.com
-19554
- PIPPKRO
- Yevgeniy Tkachuk
- elendil&imcs.dvgu.ru
-19555
- Engim Inc
- Mohan K Sonti
- mib&engim.com
-19556
- NextJet Technologies
- James Tucker
- jt&nextjet.com
-19557
- Frank Holtz
- Frank Holtz
- oid&webkoch.de
-19558
- StoneHole
- Eric Emerson
- esemerson&adelphia.net
-19559
- Zones Inc
- Ravi chhabra
- ravi.chhabra&zones.com
-19560
- Informationssicherheit Christian Scheucher
- Christian Scheucher
- christian.scheucher&scheucher.net
-19561
- Maxim Integrated Products, Inc.
- Jeff Putsch
- putsch&mxim.com
-19562
- Telena Communication
- Tony Porras
- aporras&telena.com
-19563
- Center for Imaging Research
- Kati Elfers
- Kati.Elfers&UC.Edu
-19564
- GOLUM
- Ed Stafford
- ed&linuxanthology.org
-19565
- Escape Communications, Inc.
- James Nadeau
- jnadeau&escapecom.com
-19566
- C-Scape Consulting Corp.
- Stephen Weiss
- sweiss&c-scape.com
-19567
- ScienceLogic LLC
- Richard Chart
- rchart&sciencelogic.com
-19568
- Global Gate Systems LLC.
- Alberto Alonso
- admin&ggsys.net
-19569
- Grid Research Lab
- Hao Chen
- chen12p&uwindsor.ca
-19570
- frottage.org
- Rob Partington
- snmp-oid&frottage.org
-19571
- Micromatic Tecnologia e Sistemas Ltda
- Francisco Estevam
- estevam&micromatic.com.br
-19572
- ecnuee
- cong wei
- ecnu_cong&hotmail.com
-19573
- Adeptiva
- Stephan February
- domains&adeptiva.com
-19574
- Network Gulf Information Technology
- Rajesh Soman
- rajesh&networkgulf.com
-19575
- Sansay Inc.
- max sheng
- msheng&sansay.com
-19576
- Slovanet a.s.
- Peter Farkas
- peter.farkas&slovanet.net
-19577
- ACE electronics N.V.
- Koenraad Lelong
- k.lelong&ace-electronics.be
-19578
- IPConsulting AG
- Ralf Schiemann
- r.schiemann&ipcag.com
-19579
- Info Point
- Przemyslaw Klawitter
- pk&unix-spec.net
-19580
- RZF Rechenzentrum der Finanzverwaltung des Landes NRW
- Stefan Schmitz
- Stefan.Schmitz&rzf.fin-nrw.de
-19581
- TTC Telecom Ltd.
- Peter Bodnar
- snmp&ttc-telecom.sk
-19582
- Pixelpark AG
- IA-Berlin
- ia.berlin&pixelpark.com
-19583
- Wayfarer Transit Systems Ltd.
- Ian Cooper
- imcooper&wayfarer.co.uk
-19584
- headissue GmbH
- Jens Wilke
- iana-reg&headissue.com
-19585
- Laboranowitsch
- Christian Laboranowitsch
- christian&laboranowitsch.de
-19586
- ICAN (International Communications and Navigation Ltd.)
- Randal Greene
- rgreene&ican.nf.net
-19587
- Adtec Digital, Inc.
- Andre G. Ancelin
- andrea&adtecinc.com
-19588
- Tecnologia Bancaria SA
- Sebastiao Barone
- suporte.redes&tecban.com.br
-19589
- Business Link Kent Ltd
- Anthony Butler
- Anthony.Butler&businesslinkkent.com
-19590
- Systems Solution, Inc.
- Rich Wein
- iana-reg&ssi-net.com
-19591
- Oral Roberts University
- Peter Kovaleski
- pkovaleski&oru.edu
-19592
- Prince Law Offices, P.C.
- Warren Prince
- troubleshooters&princelaw.com
-19593
- Nerim
- Marc Dequenes
- marc.dequenes&corp.nerim.net
-19594
- MediaCell, Inc.
- Chet McNeill
- cmcneill&mediacell.com
-19595
- Alcatel Shanghai Bell Co. Ltd.
- LIANG Ji
- ji.liang&alcatel-sbell.com.cn
-19596
- nhnghia
- Nguyen Huu Nghia
- nghianh&cardvn.net
-19597
- Capnova Oy
- Mikael Nylund
- hostmaster&capnova.com
-19598
- ianet
- Sebastian Arming
- ianet-pen&arming.de
-19599
- GeniusBytes Software Solutions GmbH
- Michael Ernst
- ernst&geniusbytes.com
-19600
- CTA Systemsource Inc.
- Serge Belobaba
- administrator&cta-systemsource.com
-19601
- RGB Networks, Inc.
- Yan Ding
- yding&rgbnetworks.com
-19602
- Custom IdM Solutions
- Jimmy Yogurt
- sundevils22&yahoo.com
-19603
- dezcom
- Andrey Tatarinov
- elephantum&dezcom.mephi.ru
-19604
- Secure Network Systems, LLC
- Betty Pierce
- b.pierce&securenetworksystems.com
-19605
- Starview Technology Inc
- Clark Davis
- cdavis&starviewtechnology.com
-19606
- Nienschanz Ltd.
- Andrew Petroff
- ptr&nnz.ru
-19607
- Argelcom Limited
- Matthew Baldwin
- matt.baldwin&argelcom.com
-19608
- Astea International Inc.
- Vladimir Kofman
- vladimirk&astea.co.il
-19609
- Zytec
- Barry Chang
- bc&ms93.url.com.tw
-19610
- BaseN Oy
- Kaj J. Niemi
- kaj.niemi&basen.net
-19611
- trustsec IT solutions GmbH
- Frank Kirschner
- fk&trustsec.de
-19612
- Wyncote.net
- Dan Mascenik
- dtm&umich.edu
-19613
- Willing Minds LLC
- Mark Nagel
- hostmaster&willingminds.com
-19614
- Business Port Systems Inc.
- Yoshiyuki Takahashi
- takahasi&bps-inc.co.jp
-19615
- FCS India (Pvt) Ltd.
- Manpreet Singh Nehra
- manpreet_nehra&hotmail.com
-19616
- InterCard AG
- Oliver Adolph
- oliver.adolph&intercard.de
-19617
- Taglicht.Com Sàrl
- Thomas Taglicht
- www.iana.org&taglicht.com
-19618
- Return Data
- Fredrik Estreen
- fredrik&returndata.se
-19619
- Go Net
- Mian Mumtaz Ali
- mian.mumtaz&go.net.pk
-19620
- NETDEVICES INC.
- Srinivas Moturu
- smoturu&netd.com
-19621
- alibaba
- jamesyu
- james_ysh&alibaba-inc.com
-19622
- Shenzhen Union Broadband Communication Co., Ltd.
- Jin Qian
- George_Q_King&hotmail.com
-19623
- is:energy czech a.s.
- Michal Mühlpachr
- michal.muhlpachr&is-energy.cz
-19624
- MANDA
- Ralph Weichert
- oid&man-da.de
-19625
- Unilever PLC
- Linda Millington
- Linda.Millington&unilever.com
-19626
- Permabit, Inc.
- Jered Floyd
- jered&permabit.com
-19627
- NTPL
- prasanna
- nidasesi_prasanna&rediffmail.com
-19628
- webslingerZ, Inc.
- Scott Stancil
- sstancil&webslingerZ.com
-19629
- University of Cincinnati
- Bryan Newswanger
- bryan.newswanger&uc.edu
-19630
- Alopa Networks Inc.
- Suryaprakash Konanuru
- suri&alopa.com
-19631
- eDial Inc.
- Jeremy Nussbaum
- jeremy.nussbaum&edial.com
-19632
- Rygo Technical Enterprises
- Ryan Goodwin
- rgoodwin&rygotech.com
-19633
- BOFH Networks Oy
- Kimmo Jukarainen
- registry&bofhnetworks.net
-19634
- THALIX
- Michel Verdier
- contact&thalix.com
-19635
- Prager, Sealy & Co. LLC
- Aaron Hathaway - Mark Stingley
- IT&Prager.com
-19636
- SolNet Data Service
- Jesper K. Pedersen
- jkp&solnet-data.dk
-19637
- Oakmoon Consulting, Inc.
- Steven Downs
- sdowns-iana&oakmoon.com
-19638
- University of Texas at Arlington
- Digant C Kasundra
- digant&uta.edu
-19639
- Teztech, Inc.
- P.J. Tezza
- enterprise-numbers&teztech.com
-19640
- Automated Marketing Solutions Inc.
- Bartosz Zak
- bzak&automs.com
-19641
- Holley Communications Group
- Jeff LaPorte
- jeff.laporte&holleycomm.com
-19642
- East Alabama Medical Center
- Judson L. Bishop
- judson.bishop&eamc.org
-19643
- Yipes Enterprise Services Inc.
- Jonathon Little
- jlittle&yipes.com
-19644
- Polaris Wireless Inc.
- Udai Kumar
- ukumar&polariswireless.com
-19645
- Sioux Medical Systems B.V.
- Mr. Addy Klos
- addy.klos&sioux.nl
-19646
- Computing Edge, Inc.
- Kevin Burtchett
- cedge&computingedge.net
-19647
- Frederiksborg Amt
- Lars Petersen
- ianalap&hotmail.com
-19648
- TransCore
- John Freeman
- john.freeman&transcore.com
-19649
- ERP-HQ Inc.
- Paul Wujek
- pdw&rogers.com
-19650
- etilize Inc.
- Andre Kruger
- akruger&etilize.com
-19651
- Seven-Star Inc.
- Gervan Thomas
- gervan.g.thomas&uwrf.edu
-19652
- National Chi Nan University, Taiwan
- Ching-Huang Huang
- hching&ncnu.edu.tw
-19653
- Integral Technology Solutions Pty Ltd
- Mr Cameron Tuesley
- ctuesley&integral-techsolutions.com
-19654
- Infoteria Corporation
- Yoshiyuki Kitahara
- ykitahara&infoteria.co.jp
-19655
- University of Zululand
- Sean Carte
- scarte&pan.uzulu.ac.za
-19656
- dreamtel
- Qu Yibing
- quyb&dreamtel.com.cn
-19657
- PlewsNet
- Jon Plews
- enterprise-numbers&plews.net
-19658
- Macro-System
- Pawe©ø Wichniewicz
- wichniew&macro-system.com.pl
-19659
- Paradigit Computers B.V.
- Jeroen van Pelt
- iana&paradigit.nl
-19660
- CRO24 GmbH
- Andrew Fowler
- andrew.fowler&cro24.de
-19661
- Gleiss Lutz
- Stefan Schmitt
- stefan.schmitt&gleisslutz.com
-19662
- Telenor AB
- Anders Ångström
- anders.angstrom&telenor.se
-19663
- Secure-Group AS
- Torgeir Hansen
- torgeir&secure-group.com
-19664
- gr3 a/s
- Andreas Jydebjerg
- asj&gr3.dk
-19665
- Grazer Wechselseitige Versicherung AG
- Dietmar Hacker
- dietmar.hacker&grawe.at
-19666
- Alcatel Suomi Oy
- Kari Koivula
- kari.koivula&alcatel.fi
-19667
- Dr. Ing. h.c. F. Porsche AG
- Bert Blaha
- hostmaster&porsche.de
-19668
- A.S. Reiiseveranstaltungs GmbH
- Marc Hennings
- marc.hennings&rainbowtours.de
-19669
- aserva GmbH (formerly 'newthinking IT, Inhaber Alexander Scheibner')
- Alexander Scheibner
- alexander.scheibner&aserva.de
-19670
- IT University of Copenhagen
- Flemming Lindblad
- sysadm&itu.dk
-19671
- DMDsecure.com BV
- N.J. van der Vorm
- nickel&dmdsecure.com
-19672
- Gratisavisa Stimuli
- Louis A.S. Holbrook
- louis&stimuli.nu
-19673
- ByteHoard
- Taymour El Erian
- taymour.elerian&tedata.net.eg
-19674
- Catalis Health, Inc.
- Rick Ashford
- rick.ashford&catalishealth.com
-19675
- Lixto Software GmbH
- Gilbert Hoedl
- office&lixto.com
-19676
- University of Houston
- Enrico Cantu
- ecantu&uh.edu
-19677
- Unassigned
- Removed 2006-08-15
- ---none---
-19678
- Relinace Infocomm
- ANIL PAWAR
- anil.pawar&relianceinfo.com
-19679
- Prusch
- ANdreas Prusch
- andreas&prusch.de
-19680
- Dembach Goo Informatik GmbH
- Manon Goo
- manon&manon.de
-19681
- vitadurum ag
- Alberto Moya
- admin&vitadurum.com
-19682
- Balo n Co
- Farrukh Masood
- farrukh_masood2001&hotmail.com
-19683
- WelLink.,Ltd
- Kim, Dong Hyun
- untame&hanmail.net
-19684
- Town & Country Credit Corp.
- Shawn Obermeyer
- iana&tccredit.com
-19685
- Virginia Dept. of Social Services
- Don Mills
- don.mills&dss.virginia.gov
-19686
- net-concept
- Torsten Becker
- t.becker&nc-world.de
-19687
- Indicative Software, Inc
- Brian Atkins
- brian.atkins&indicative.com
-19688
- Cargo IT AG
- Werner Pfundstein
- wpfundstein&cargo-it.de
-19689
- Evolta B.V.
- Mark van Duren
- vanduren&evolta.nl
-19690
- Line4, Inc.
- Mark Debusschere
- markd&line-4.com
-19691
- eProcess Burkina
- Mahamoudou Ouedraogo
- mouedraogo&ecobank.com
-19692
- Hoppe Dialog GmbH
- Ralph Hoppe
- iana&hoppe-dialog.de
-19693
- University of California Santa Cruz (UCSC)
- Eric Goodman
- ericg&cats.ucsc.edu
-19694
- Enterprise Management Shareware
- David Porter
- davidp4&cox.net
-19695
- projektfarm GmbH
- Till Brehm
- oid&projektfarm.de
-19696
- Cherrypicks
- Alex Erich Cheung
- clcheung&cherrypicks.com
-19697
- May10 Technology Inc.
- Nian Liu
- linuxdoors&yahoo.com.cn
-19698
- Information Technology Services Department
- Terence Choy
- tscchoy&itsd.gov.hk
-19699
- System Detection, Inc.
- Brian Larkins
- brian&sysd.com
-19700
- Traqueur SA
- Thierry Malo
- thierry.malo&traqueur.fr
-19701
- Mars Computer Systems Sp. J.
- Andrzej Bucko
- andrzej.bucko&mars.slupsk.pl
-19702
- BSZ Leonberg
- Rüdiger Beck
- jeffbeck&web.de
-19703
- Agence de l'Eau Seine Normandie
- Laurent Maldonado
- laurent.maldonado&atosorigin.com
-19704
- NetFocus S.R.L
- Carlos Gonzalez-Cadenas
- gonzalezcarlos&extendforce.com
-19705
- Citto Tecnologia LTDA
- Volnys Borges Bernal
- volnys&citto.com.br
-19706
- BBned NV
- Operations
- contact&bbned.nl
-19707
- Micran Ltd.
- Yuriy Coureelo
- cgg&micran.ru
-19708
- Brain BroadCast sas
- Maurizio Boriani
- baux&member.fsf.org
-19709
- TexRamp, Inc.
- Logan Ashby
- lashby&texramp.net
-19710
- Bitbuzz Ltd
- Alex French
- noc&bitbuzz.com
-19711
- scaryclowns.org
- Jim Starwood
- jim&scaryclowns.org
-19712
- WebSolve, Inc.
- Chris Carlson
- ccarlson&websolve.com
-19713
- Elfiq Inc.
- Frederick parent
- fparent&elfiq.com
-19714
- Logic Development
- Kevin Spaeth
- info&logicdevelopment.net
-19715
- LinkAir Communications, Inc.
- Bai Lijun
- Calvin&LinkAir.com.cn
-19716
- Ars Lumina, Inc.
- Kenneth Lee
- klee&arslumina.com
-19717
- Greatmark
- Michael Klein
- mklein&greatmark.com
-19718
- Motorola Israel Ltd. - NSA
- Mark Moran
- Mark.Moran&motorola.com
-19719
- QuaQuaNet
- Guido Trotter
- ultrotter&quaqua.net
-19720
- Westmarsh Consulting Ltd
- Pierre-Yves Dampure
- pierre-yves.dampure&westmarsh.com
-19721
- BlazeArts Ltd. services.hu network
- Norbert Csongradi
- norbert.csongradi&services.hu
-19722
- CONYSER Consulting y Servicios S.L.
- Jose Estevez
- josemanuel.estevez&dracena.org
-19723
- Broadbus Technologies, Inc.
- Don Dewar
- ddewar&broadbus.com
-19724
- DigiDyne Inc.
- Sebastien Coutu
- it&digidyne.ca
-19725
- D. Trust Certifikacna Autorita, a.s.
- Juraj Vasko
- vasko&dtca.sk
-19726
- Clinical Reference Laboratory, Inc.
- Keith Viken
- network&crlcorp.com
-19727
- Shylex Telecomunicaciones, S.L.
- Jose Luis Alvarez
- shylex&shylex.com
-19728
- Techno-Toolsmiths
- John H. Reinhardt
- johnhreinhardt&yahoo.com
-19729
- SOFTREK CORPORATION
- David Otminski
- dotminski&pledgemaker.com
-19730
- Logic Etc, Inc.
- Ron Bickers
- rbickers&logicetc.com
-19731
- Sinaptica Networks
- Jose Miguel Guzman
- jmguzman&sinaptica.cl
-19732
- dragonsdawn.net
- Gordon Messmer
- gordon&dragonsdawn.net
-19733
- HUB Consulting, Inc.
- Takahiro Yonekawa
- yonekawa&hub.jp
-19734
- RAYCOM Co.,LTD.
- Yantao Ma
- mayt&raycom.com.cn
-19735
- OGA SynCom Co..,LTD
- Noppasoon Srinarang
- jeap&oga.co.th
-19736
- i-RAID
- Henry or Jonson
- henry&i-raid.com.tw
-19737
- Kyneste S.p.A.
- Gianluca Sironi
- gianluca.sironi&kyneste.com
-19738
- Campana
- Ottavio Campana
- ottavio&campana.vi.it
-19739
- UZorg B.V.
- G. Krediet
- info&uzorg.nl
-19740
- Institut de Mathématiques et de Sciences Physiques/Université
-d'Abomey-Calavi
- Joël Toyigbé Hounsou
- jhounsou&imsp-uac.org
-19741
- Residential Technology, Incorporated
- Paul Franklin
- paul.franklin&residentialtechnology.us
-19742
- Kazeon Systems, Inc
- Michael MacFaden
- mrm&kazeon.com
-19743
- jpwebworks Pty Ltd
- Jason Phillips
- office&jpwebworks.com.au
-19744
- Novacoast, Inc.
- Adam Gray
- support&novacoast.com
-19745
- netz.ooo (formerly 'Dataflake Weblications')
- Jens Vagelpohl
- jens&netz.ooo
-19746
- Data Domain, Inc
- J. Kaminar
- jkaminar&datadomain.com
-19747
- The Open and Free Technology Community
- David B Harris
- infrastructure&oftc.net
-19748
- Affiliated Computer Services, Inc. TripPak SERVICES
- Justin Slaughter
- unixadmin&trippak.com
-19749
- CISNS
- Daniel Trombley
- dtsh&cisns.net
-19750
- Beijing YTT Telecom Technologies Co.,Ltd
- gangliu
- ugang&sohu.com
-19751
- NOTE Torsby AB
- Fredrik Källgren
- fredrik.kallgren&torsby.note.se
-19752
- AIS, Aplicaciones de Inteligencia Artificial, S.A.
- David J. Pérez
- davidj.perez&ais-int.com
-19753
- Inexbee
- José Cervera
- jose.cervera&inexbee.com
-19754
- ESG Elektroniksystem- und Logistik-GmbH
- Andreas Kiewitt
- Andreas.Kiewitt&esg.de
-19755
- Pera International Ltd
- Steve Pickard
- it.manager&pera.com
-19756
- Schwabing Software
- Harald Strack
- strack&fh-konstanz.de
-19757
- Iontas
- Frank Maurer
- frank.maurer&iontas.com
-19758
- Hafsjold Data ApS
- Mogens Hafsjold
- mha&hafsjold.dk
-19759
- Compunetix, Inc
- Scott Stern
- sstern&compunetix.com
-19760
- Leon County Schools
- Chris Fulton
- fultonc&mail.leon.k12.fl.us
-19761
- Gordon Aluminum Industries, Inc.
- Brian Kling
- briank&gordonaluminum.com
-19762
- Caminos y Canales Ltd.
- Daniel Ovalle
- daniel.ovalle&caminosca.com
-19763
- Branch Banking and Trust Corporation
- Ken Meehan
- kmeehan&bbandt.com
-19764
- Vandenberg Systems Inc.
- Richard Vandenberg
- numbering_admin&vansys.com
-19765
- Systems Engineering Associates, Inc.
- Jack Lavender
- jack.lavender&seconcepts.com
-19766
- Wuhan University of Technology
- tianbin
- tianbin&mail.whut.edu.cn
-19767
- Cooperativa Novanta s.c.r.l.
- Silvetti Nicola
- admin&radionova.it
-19768
- Skybox Security Ltd.
- Tal Hornstein
- talh&skyboxsecurity.com
-19769
- JLCX Inc
- Gary Craig
- brondeau023&comcast.net
-19770
- SelfSigned.com
- Matt White
- anmwhite&yahoo.com
-19771
- IBM, Tivoli Provisioning and Orchestration
- Lewis Lo
- lewisl&ca.ibm.com
-19772
- Mobile Wisdom, Inc.
- Gerard P. Stelzer
- Gerard.Stelzer&Mobile-Wisdom.com
-19773
- New-Global Corporation
- David Burdelski
- david&new-global.com
-19774
- mBlox, Inc.
- IT - Bill Brotherton
- netalert&mblox.com
-19775
- IPG Photonics Corporation
- Victor Semlek
- vsemlek&ipgphotonics.com
-19776
- TI Paperco Inc.
- Ernest Wohlfarth
- ernie_wohlfarth&timeinc.com
-19777
- Taylor University
- Nathan Ehresman
- nehresma&css.tayloru.edu
-19778
- LinguaNet
- Paul Tourtier
- paul.tourtier&linguanet.net
-19779
- BOBEK
- Antonin Kral
- A.Kral&bobek.cz
-19780
- Claridion Inc.
- Salvatore Cimmino
- salvatore.cimmino&claridion.com
-19781
- Odys-solutions
- Benoit Nicq
- benoit.nicq&odys-solutions.net
-19782
- AEGEE-Utrecht
- Luite van Zelst
- ldap&aegee-utrecht.nl
-19783
- NorthLANs Alliance, LLC
- Dan Thompson
- dantho&northlans.com
-19784
- Little Box Solutions Inc.
- James Puderer
- jpuderer&littlebox.ca
-19785
- Grand Central Communications
- Prasanta Behera
- pbehera&grandcentral.com
-19786
- Esteban Pizzini
- Esteban Pizzini
- epizzini&fibertel.com.ar
-19787
- Ayub Yaqub
- Ayub Yaqub
- ayub&yaqub.net
-19788
- LDT Communication Technology CO. LTD
- Zenghai Liu
- liuzenghai&163.com
-19789
- Sheard and Company Pty Limited
- Ross Sheard
- rsheard&connexus.net.au
-19790
- INSE7120 conU
- Truong Ta
- t_ta&ece.concordia.ca
-19791
- MW EDV-Beratung
- Michaael Wandel
- m.wandel&t-online.de
-19792
- Forte IT
- Vladimir Krupenin
- wolodik&forte-it.ru
-19793
- firstServed NV
- Denis Braet
- denis&firstserved.net
-19794
- IP Security Consulting
- Milan Pikula
- milan.pikula&ipsec.info
-19795
- AssetHouse Technology Ltd
- Chris Norris
- chris.norris&assethouse.com
-19796
- Jostens Inc
- Mark Schoneman
- Mark.Schoneman&Jostens.com
-19797
- Stefan Fiedler KEG
- Stefan Fiedler
- fieml&service.at
-19798
- FBIS
- David Porter
- davep&rccb.osis.gov
-19799
- Jeremy McMillan
- Jeremy McMillan
- aphor&mac.com
-19800
- Derek Balling
- Derek J. Balling
- dredd&megacity.org
-19801
- PineApp Ltd.
- Gabriel M. Mizrahi
- gmizrahi&pineapp.com
-19802
- Atlanta Business Software, Inc.
- Bob Hollister
- bhollister100&hotmail.com
-19803
- EC Telecom
- Ha Tae-Hyo
- heartha&ectel.co.kr
-19804
- The Norns Laboratories
- Vitaliy Fursov
- vfursov&canada.com
-19805
- idiotwind.org
- John T. Rose
- rose&iastate.edu
-19806
- SportOdds Systems Pty Limited
- Peter Milburn
- support&sportodds.com
-19807
- AlarmsPro Inc.
- Frank Knapp
- fknapp&alarmspro.com
-19808
- Open Cloud Ltd.
- David Long
- david.long&opencloud.com
-19809
- GOUDRON S.A.R.L.
- Olivier GOUDRON
- olivier&goudron.fr
-19810
- R Brooks Associates, Inc.
- Mike Ricci
- mdricci&rbrooks.com
-19811
- WildOne Information Systems
- Michael Wildpaner
- mike&wildpaner.com
-19812
- Hsiuping Institute of Technology
- Ming Feng Yang
- orson&mail.hit.edu.tw
-19813
- Systems International
- Dariusz Swierzewski
- support&systems-international.com
-19814
- Duosoft Inc
- zhang baohua
- bhzhang&duosoft.cn
-19815
- Getronics Solutions Malaysia
- Julian Jo'se Gomez
- julianjose.gomez&getronics.com
-19816
- Philips Medizin Systeme Boeblingen GmbH
- Lars Steubesand
- lars.steubesand&philips.com
-19817
- Soluzioni Informatiche s.r.l.
- Giacomo Carta
- giacomo&solinfo.it
-19818
- KIABI
- Jean-François Rompais
- jf.rompais&kiabi.com
-19819
- Informatik Club der Universität Zürich - ICU
- Markus Gerber
- iana&icu.unizh.ch
-19820
- Prival ODC, Inc.
- Jean-Francois Brousseau
- jfbrousseau&privalodc.com
-19821
- Bridgeport Networks
- Scott Shaffer
- sshaffer&bridgeport-networks.com
-19822
- Bossers & Cnossen BV
- Albert Siersema
- a.siersema&bnc.nl
-19823
- Castle Building Centres Group Ltd.
- Alex Taylor
- alext&castle.ca
-19824
- teleganov.net
- Dmitry Teleganov
- dmitry&teleganov.net
-19825
- Kisslinger EDV-Beratung
- Andreas Kisslinger
- iana-assignment-gbx&kisslinger.net
-19826
- Institut Teknologi Bandung (ITB)
- Wahyu Hidayat
- wahyuhid&yahoo.com
-19827
- N2N Consulting Pte Ltd
- See Chun Yan
- chunyan.see&n2nconsulting.com
-19828
- LBCN Communication Technology Co.,LTD.
- Li Bo
- bluedian&163.com
-19829
- BITSTREAM
- Dariusz Pietrzyk
- info&bitstream.com.pl
-19830
- VDL SA
- Croiset Nicolas
- ncroiset&vdldiffusion.com
-19831
- IRT Institut fuer Rundfunktechnik GmbH
- Andreas Metz
- metz&irt.de
-19832
- Rostrvm Solutions Ltd
- Peter Magyar
- peter.magyar&rostrvm.com
-19833
- Team17 Software Ltd.
- David Watson
- noc&team17.com
-19834
- Bulldog Communications Ltd
- Chee Teoh
- cheeteoh&bulldogdsl.com
-19835
- Excibir Ltd.
- Jeremy Buckley
- jerry&excibir.co.nz
-19836
- Qwest QNMS
- Joseph Stelmack
- Joseph.Stelmack&Qwest.com
-19837
- USPFO for CA
- Amy Ellis
- amy.ellis&ca.ngb.army.mil
-19838
- Univits International AB
- Jon Olsson
- sysadmin&univits.com
-19839
- Synthean Inc.
- Jim Zafrani
- jim.zafrani&synthean.com
-19840
- Avalon Networks Inc.
- Joe Hetrick
- hostmaster&avalon.net
-19841
- Public Communications Services, Inc.
- Craig Zeller
- craig.zeller&teampcs.com
-19842
- Pantel Service & Holding GmbH
- Johannes M. Steger
- jsteger&pantel.de
-19843
- anarcho.com
- Matt Magri
- iana.org&anarcho.com
-19844
- MOBIGEN Co., Ltd.
- Sang-Hyun Jin
- jins00&mobigen.com
-19845
- Solenovo Oy
- Mr. Jukka Keto
- Jukka.Keto&solenovo.fi
-19846
- DDI POCKET,Inc
- Akihiro Ibe
- a-ibe&pocket.ddi.co.jp
-19847
- KU Communication Technology Co.,LTD
- blueon
- dayboy&21cn.com
-19848
- University of Bologna
- Luca Ghedini
- lghedini&deis.unibo.it
-19849
- NSFOCUS Ltd.
- GuangXu Liu
- lgxror&hotmail.com
-19850
- Waggener Edstrom
- Dean Chen
- deanc&wagged.com
-19851
- Telnet ISG
- Matej Kovac
- ianaorg&telnet.sk
-19852
- Southern Utah University
- Matt Zufelt
- hostmaster&suu.edu
-19853
- aapala.com
- Esa Ääpälä
- esa&aapala.com
-19854
- UCLA EE AINS LAB
- Dr. Izhak Rubin
- rubin&ee.ucla.edu
-19855
- AIS Management GmbH
- Jan Boldt
- jan.boldt&andrevis.de
-19856
- Mobile TeleSystems OJSC, Komi Republic
- Alex Deiter
- tiamat&komi.mts.ru
-19857
- Kuban-GSM CJSC
- Arnold V. Skobeyev
- infosecurity&kuban.mts.ru
-19858
- IPC Media Limited
- Sue Anderson
- sue_anderson&ipcmedia.com
-19859
- CGSS Guyane
- Maurice Montgénie
- maurice.montgenie&cgss-guyane.fr
-19860
- CGS Corporate Group Service Ltd
- Peter Jenka
- p.jenka&cgs-ltd.com
-19861
- Wake Forest University
- John Borwick
- borwicjh&wfu.edu
-19862
- Motivity Telecom Inc.
- Vance Shipley
- vances&motivity.ca
-19863
- Tippett Studio
- xian&tippett.com
- xian&tippett.com
-19864
- Jostens Inc
- Mark Schoneman
- Mark.Schoneman&Jostens.com
-19865
- NEOMONTANA ELECTRONIS
- Yasen Angelov
- neomontana&dir.bg
-19866
- Edouard Boissonneault
- Edouard Boissonneault
- edatbdeb&hotmail.com
-19867
- digitec GmbH
- Bernd Strebel
- b.strebel&digitec.de
-19868
- Krafty Creations, Inc.
- Joel Kraft
- joel&krafty.com
-19869
- Beagle Internet Pty Ltd
- John Ferlito
- johnf&beagle.com.au
-19870
- The dot.GOD Registry, Limited
- Joe Baptista
- baptista&dot-god.com
-19871
- AG Consulting, LLP.
- Daniel Roscigno
- dan&roscigno.com
-19872
- TVEngineer.org
- Bishop L. Ellison
- bishop&tvengineer.org
-19873
- MarsolsNet Inc.
- Marsols
- rbl&marsols.net
-19874
- Distributel Communications Ltd.
- Daniel Puckett
- domainreg&distributel.ca
-19875
- hutuworm.org Inc.
- Liang Feng
- hutuworm&hutuworm.org
-19876
- USE
- Uli Schulze-Eyssing
- uli&e2gas.de
-19877
- Nuernberger Versicherungsgruppe
- Heinrich Stengl
- Heinrich.Stengel&nuernberger.de
-19878
- ITNet S.p.a.
- Luigi Erardi
- l.erardi&it.net
-19879
- Makedonski Telekomunikacii, MTnet
- Stevco Risteski
- ContactEmail
-19880
- Conarcom C.A. Sirena
- Anali Contreras
- analicontreras&cantv.net
-19881
- AEGEE-Europe
- W. van Ravesteijn
- itwg-board-l&aegee.org
-19882
- Radius., Ltd
- Eugene Knyshev
- radius&obninsk.ru
-19883
- Meta4 Spain S.A.
- Eduardo Fernandes / Marcos Cacabelos
- eduardofer&meta4.com
-19884
- Ontier
- Steven W. Roth
- steven.roth&ontier.com
-19885
- Navimedix Inc.
- Rodney Rindels
- rrindels&ampmed.com
-19886
- Corio, inc
- Thomas Williams
- twilliams&corio.com
-19887
- California School Information Services
- Chris Hall
- chall&csis.k12.ca.us
-19888
- The Tarc Group
- Hostmaster
- hostmaster&tarc.net
-19889
- AppTrigger
- Gerry Dubois
- gdubois&apptrigger.com
-19890
- Global Interactive Technology Pte Ltd
- Somu
- support&gitpl.com.sg
-19891
- bay. Innenministerium (Verfassungsschutz)
- Dr. Triller
- iuk&lfv.bayern.de
-19892
- HONKO MFG.co.,ltd.
- Nishio Hiroyuki
- hnishio&honko.co.jp
-19893
- Brighton Consulting Inc.
- Paul C. Bryan
- pbryan&bright1.com
-19894
- CubeRoot
- John Rowe
- John&cuberoot.biz
-19895
- Heolys France SARL
- Christophe Crier
- direction&heolys.com
-19896
- udayan kumar
- Udayan kumar
- udayan_kumar&da-iict.org
-19897
- IUT FOTSO Victor de Bandjoun, Université de Dschang
- Marcellin Julius NKENLIFACK
- mnkenlif&hotmail.com
-19898
- LT Systems LLC
- Benjamin Kingsolver
- hostmaster&lt-systems.com
-19899
- Thinking Systems Corporation
- JB Wang
- jb&thinkingsystems.com
-19900
- Advanced RF Technologies, Inc.
- Sadat Chowdhury
- schowdhury&adrftech.com
-19901
- Atkinson, Inglis & Associates
- Simon Inglis
- simon&atina.com.au
-19902
- University of Texas Pan American
- Information Security Officer
- infosecurity+ianareg&panam.edu
-19903
- Jharding
- Joshua Harding
- xjharding&elitemail.org
-19904
- Sage Technology Ltd.
- Ryan Tseng
- cptseng&ms8.hinet.net
-19905
- Beijing YTT Telecom Technologies Co.,Ltd
- gangliu
- ugang&sohu.com
-19906
- Europacom.net Ltd
- Mike Paglia
- hostmaster&tcp.net.uk
-19907
- Alpha Oil Ltd.
- Ivan Zozulya
- ion&ok.net.ua
-19908
- Alcopack Group
- Alexander Pytlev
- apytlev&tut.by
-19909
- PadzNet, Inc.
- Dj Padzensky
- oid-admin&padz.net
-19910
- DirecTrust
- Carlos González-Cadenas
- gonzalezcarlos&extendforce.com
-19911
- Global Velocity Inc.
- Tom McLaughlin
- tmclaughlin&globalvelocity.info
-19912
- Phatline
- Peter Sandström
- peter&phatline.com
-19913
- murphx Innovative Solutions Ltd
- Ben Murphy
- ben.murphy&murphx.com
-19914
- Optus SingTel Pty Ltd.
- Sion Camilleri
- sion.camilleri&optus.com.au
-19915
- BeiJing Gefon Network Technology Ltd.
- yang dong
- nomad21&sina.com
-19916
- Fundación ESADE
- Jordi Diaz
- diazj&esade.edu
-19917
- Sungard Finance
- Laurent Ploix
- lp.provisoire&sungard-finance.fr
-19918
- Phoenix IT Services
- Dean Schoolar
- Dean.Schoolar&Phoenix.co.uk
-19919
- IPL Information Processing Ltd
- Kevin Hansard
- kevin.hansard&iplbath.com
-19920
- PREVX Ltd.
- Penelope Smy
- pen.smy&prevx.com
-19921
- Gross
- Marcel Gross
- marcel.gross&panalpina.com
-19922
- Iowa State University
- John T. Rose
- rose&iastate.edu
-19923
- ei3 Corporation
- Bruce B. Platt, Ph.D.
- noc&ei3.com
-19924
- Mirror Image Internet
- Paul H.P. Christen
- paulc&mirror-image.com
-19925
- Triadigm Technology
- Stephen Detwiler
- steved&triadigmtech.com
-19926
- Feith Systems and Software, Inc.
- John Wehle
- john&feith.com
-19927
- Escherware b.v.
- G.R.Stone
- support&escherware.com
-19928
- Linuxlab Ltd.
- Felipe Barros Salgado
- felipe&linuxlab.cl
-19929
- 4X Information Technology GmbH
- Joerg Kaenel
- joerg.kaenel&4xIT.com
-19930
- SalesCatalysts.com Ltd.
- Chu San Bun (Stephen)
- stephen.chu&salescatalysts.com
-19931
- BluntSoft Ltd.
- blunt
- blunt_hust&yahoo.com.cn
-19932
- MITTS Ltd.
- Alan Attard
- alan.attard&gov.mt
-19933
- University of Tasmania
- Brett Clifford
- duty-sysadmin&utas.edu.au
-19934
- Key Business Services
- J Pfersich
- jp&key-biz.com
-19935
- Allnet GmbH
- Michael Buchstaller
- buchi&allnet.de
-19936
- Philip Morris International Management SA
- Nigel Larkin
- nigel.larkin&pmintl.com
-19937
- Cogent Innovators, LLC
- Stefan Adams
- stefan&cog-ent.com
-19938
- OU College of Continuing Education
- Brett Zimmerman
- zim-iana&cce.ou.edu
-19939
- AWARM.NET, Ltd.
- Ivan Mokrotovarov
- awarm&awarm.net
-19940
- broadreach systems
- Maurice Bard
- mauricebard&broadreachsystems.com
-19941
- Lind-Waldock
- Tom McMahon
- tmcmahon&lind-waldock.com
-19942
- Jumbo Corporation
- Xavier Bergade
- xavierb&jumbocorporation.com
-19943
- D2D Cars
- Brandon Knitter
- brandon&d2dcars.com
-19944
- Sunwest Computers Ltd.
- Brian Caverley
- pen&sunwestcomputers.ca
-19945
- Abilitec Limited
- Damian Jones
- djones&abilitec.com
-19946
- ITS Pub
- Horst Raedger
- horst.raedger&onlinehome.de
-19947
- WIENER Plein & Baus GmbH
- Andreas Koester
- koester&wiener-d.com
-19948
- OOO Maxidom
- Alexey Vekshin
- alex+iana&maxidom.ru
-19949
- Bellmonte
- Gerardo Pirla Diaz
- gpdiaz&telson.es
-19950
- Sveriges Television AB (SVT)
- Peter Axelsson
- peter.v.axelsson&svt.se
-19951
- AREA
- Christian DERBOUL
- Christian.Derboul&area-autoroutes.fr
-19952
- Message Systems, Inc.
- George Schlossnagle
- george&messagesystems.com
-19953
- Ironworks Consulting, LLC
- Keith Long
- klong&fe-works.com
-19954
- CenterBoard Inc
- Rohan Pinto
- rpinto&ldapguru.net
-19955
- Tenebris Technologies Inc.
- Eric Jacksch
- jacksch&tenebris.ca
-19956
- Kabissa Inc.
- Tobias Eigen
- tobias&kabissa.org
-19957
- Aurora Network Operations Management Services
- Jeff Konz
- jdkonz&comcast.net
-19958
- nex-G Systems Pte. Ltd.
- Nikhil Goel
- nikhil.goel&nexg-systems.com
-19959
- Lund University
- Johan Ekman
- johan.ekman&cait.lu.se
-19960
- SER Storage Technology GmbH
- Klaus Eulenbach
- Klaus.Eulenbach&ser.de
-19961
- Central Research Institute for Machine Building
- Alex Myzika
- ma&mcc.rsa.ru
-19962
- Netservers Ltd.
- John McEleney
- support&netservers.co.uk
-19963
- Enigma Software Corporation
- Ferenc Kokovai
- kokovai.ferenc&enigma.hu
-19964
- TRIBUNAL REGIONAL DO TRABALHO DA 22A. REGIÃO
- Cicero Vilson
- vilson&trt22.gov.br
-19965
- Spotwave Wireless, Inc.
- Steve Allen
- steve.allen&spotwave.com
-19966
- Telexy Corp.
- Bong-Su Jang
- ilmina&unitel.co.kr
-19967
- Meta Consulting
- Ben Steeves
- bcs&metacon.ca
-19968
- Network Intelligence Corporation
- Hayim Kobi
- hkobi&network-intelligence.com
-19969
- Klamath Networks Corp.
- Jae Kim
- jkim&klamathnetworks.com
-19970
- Clever Machine, Inc.
- Dan Dunham
- ops-iana&clevermachine.com
-19971
- Tripleplay Services Ltd.
- Graeme Ogilvie
- info&tripleplay-services.com
-19972
- David Nesting
- David Nesting
- david&fastolfe.net
-19973
- Vader Logic, LLC
- Mark James
- asgard&pacbell.net
-19974
- Estonian Educational and Research Network
- Lauri Anton
- lauri.anton&eenet.ee
-19975
- ICTeam S.p.A.
- Danilo Lozza
- supporto&icteam.it
-19976
- Alberti Holdings Pty. Ltd.
- Sandro Alberti
- sandro&alberti.com.au
-19977
- Theta Networks, Inc.
- Dawn Fang
- szhu&thetanetworks.com
-19978
- o2 (Germany) GmbH & Co. OHG
- Daniel Stricharz
- ContactEmail
-19979
- INPES
- Pascal GUINET
- pascal.guinet&inpes.sante.fr
-19980
-
-
- ---none---
-19981
- Venetica
- Sean A. Johnson
- sjohnson&venetica.com
-19982
- Cap Gemini Norway
- Christian Berg-Henry
- christian.berg-henry&capgemini.com
-19983
- Cu-nes
- Takeshi Hebiishi
- cu-nes&zar.att.ne.jp
-19984
- Pittsburg State University
- Michael J. Wheeler
- mwheeler&pittstate.edu
-19985
- Vigoment Software Inc.
- Masatoshi Nakamura
- huntor&ybb.ne.jp
-19986
- void solutions
- Emanuel Brzostowski
- Emanuel.B&web.de
-19987
- Anerist
- Scott Pierce
- spierce&anerist.com
-19988
- Rezel
- Association Rezel
- root&rezel.com
-19989
- Netlanta.com
- Gregory C. Colin
- gcolin59&earthlink.net
-19990
- NetTeem, LLC
- Stoyan Dimov
- InformationServices&NetTeem.com
-19991
- Beijing Zhengyou Networks&Communication Technology Co.,Ltd.
- LiYong
- liyong&zhengyou.com
-19992
- Ericsson, Inc.
- Paul Kuykendall
- Paul.Kuykendall&ericsson.com
-19993
- S2 Systems, Inc.
- Kerry Cage
- securitycontact&s2systems.com
-19994
- Shanghai Withub General Technology Co.,Ltd.
- Zhengwenli
- zhengvl&sjtu.edu.cn
-19995
- SPES S.r.l.
- Pierluigi Brugnone
- p.brugnone.spes&urmetsistemi.it
-19996
- SwissQual AG
- Beat Bolli
- mibmaster&swissqual.com
-19997
- 4D Technology (llc)
- Dale Whitfield
- dale&4dllc.com
-19998
- Netspecs B.V.
- Martijn Verspoor
- software&netspecs.nl
-19999
- eEpoch
- Manuel Torres
- manuel.torres&safelayer.com
-20000
- Ing. Büro Ziegler
- Felix Ziegler
- fz&zie.ch
-20001
- Ukraine Trust Network
- Vladimir E. Protaschuk
- director&utn.com.ua
-20002
- RZNet AG
- Rafael Rutkowski
- Rafael.Rutkowski&rznet.de
-20003
- PTK Centertel sp z o. o.
- Michal Kociolek
- michal.kociolek&centertel.pl
-20004
- HEUFT SYSTEMTECHNIK GMBH
- Kai Dietrich
- Kai.Dietrich&heuft.com
-20005
- Air Products and Chemicals, Inc.
- Maury G. Robert
- robertmg&airproducts.com
-20006
- Nagios
- Subhendu Ghosh
- nagios-snmp&sghosh.org
-20007
- Kenati Technologies Inc.
- Sanmitra Pandharpur
- sanmitra&kenati.com
-20008
- Toshiba Electronics Europe GmbH
- Helmut Franzke
- hfranzke&tee.toshiba.de
-20009
- Beaver Creek Cooperative Telephone Company
- Brandon Drake
- hostmaster&bctelco.com
-20010
- reuter network consulting
- Stefan Reuter
- nic&reucon.net
-20011
- System Business Consulting
- Marcin Cieslak
- saper&saper.info
-20012
- QinetiQ Ltd
- Adrian Jones
- acjones&qinetiq.com
-20013
- Vanguard Integity Professionals
- Ted Smykla
- tsmykla&go2vanguard.com
-20014
- Fernandez Industries Incorporated
- Anthony Fernandez
- anthony&fernandez.com
-20015
- Ville d'Yverdon
- Didier Wulliamoz
- dwu&ylb.ch
-20016
- Mountain Top Applied Solutions, Inc.
- Allen F. Schell
- afschell&mtapps.com
-20017
- Dansk Netcenter APS
- Flemming Rasmussen
- fr&t26.dk
-20018
- River City Software Associates, Ltd.
- Noel Terranova
- nterranova&rcsal.com
-20019
- Antarctica Networks Ltd.
- Juan Francisco Roco
- support&antarcticanetworks.com
-20020
- Pacific Wave Solutions, Incorporated
- Bryce Bingham
- bbingham&pacificwavesolutions.com
-20021
- Boswell Online B.V.
- Tom Mulder
- tom&a1.nl
-20022
- TETCO TECHNOLOGIES SA
- Frederic Meyer
- snmp&tetco.fr
-20023
- Rezel
- Association Rezel
- root&rezel.com
-20024
- Proxyconn, Inc.
- Wojciech Siedlecki
- wojciechs&proxyconn.com
-20025
- Compusaurus Bt.
- Janos Bali
- compusaurus&axelero.hu
-20026
- RedeNetwork.com
- Renato S. Magalhaes
- info&redenetwork.com
-20027
- TDK-LAMBDA Corporation
- Kazuhiro Iwai
- soft.info&jp.tdk-lambda.com
-20028
- Line-tec, Inc.
- tomita sintaro
- info&line-tec.co.jp
-20029
- Mortara Instrument, Inc.
- Barry D. Brown
- barry.brown&mortara.com
-20030
- ValidSoft Ltd
- Michael Skells
- mike.skells&validsoft.com
-20031
- Qnamic AG
- Michael Wirz
- michael.wirz&qnamic.com
-20032
- KISTER
- Wilfried Kister
- wilfried.kister&gmx.de
-20033
- Dicr
- Igor A Tarasov
- iana&dicr.org
-20034
- rjcdb.com
- Robert John Churchill
- rjc&rjcdb.com
-20035
- Alexander Kellmann
- Alexander Kellmann
- alex&kellmann-web.de
-20036
- Advanced Control Technology, Inc.
- Kenneth Grob
- keng&acttechnico.com
-20037
- HISL Limited
- Gerard Kilburn
- iana_admin&his.co.uk
-20038
- LithiumCorp Pty Ltd
- James Wilson
- jwilson&lithiumcorp.com
-20039
- Shanghai Communications Technologies Center
- Wang Ziping
- san&scomcenter.com
-20040
- GUMC
- Coordinator ICT Systeembeheer
- iana&ict.azg.nl
-20041
- INGENION GmbH
- Thomas Zehbe
- tz&ingenion.de
-20042
- Hitel Italia S.p.A.
- Alessandro Betta
- a.betta&hitel.it
-20043
- Grupo 3A Recoletas
- Alexis Rodríguez Castedo
- alexis&3a-grupo.com
-20044
- Ekinops SAS
- Pascal Babin
- pbabin&ekinops.fr
-20045
- Corporate Express Promotional Marketing
- David Brown
- dave.brown&cepm-us.com
-20046
- Pilgerer e.V
- Marc Sztochay
- msztochay&pilgerer.org
-20047
- theglobe.com
- John Houston
- jhouston&corp.theglobe.com
-20048
- Internet Broadcasting Systems
- Chris Josephes
- hostmaster&ibsys.com
-20049
- GnuArch
- James Blackwell
- iana&gnuarch.org
-20050
- Western United Insurance
- Jarrad Winter
- jwinter&westernunited.com
-20051
- GlobalSkyVault
- John Antypas
- johnantypas&globalskyvault.com
-20052
- Intesa Sanpaolo S.p.A.
- Stefano Vercesi
- stefano.vercesi&intesasanpaolo.com
-20053
- I.NET2 S.r.l.
- Andrea Mistrali
- support&inet2.it
-20054
- Statistisches Bundesamt
- Tim Aden
- tim.aden&destatis.de
-20055
- FRANCE2
- Pascal Roberts
- reseau&france2.fr
-20056
- ASC Program
- Richard Mark
- rmark&llnl.gov
-20057
- Lumenos, Inc.
- Ben Chatfield
- BChatfield&Lumenos.com
-20058
- Aramiska
- Robin Vissers
- r.vissers&aramiska.net
-20059
- Acsera Corporation
- Karthik Somasundaram
- karthik&acsera.com
-20060
- Pacific University
- Bill Jiminez
- bjiminez&pacific.edu
-20061
- Seacoast Synergy, Inc.
- David A Coursey
- david.coursey&seacoastsynergy.com
-20062
- University of Crete - Faculty of Medicine
- Mr. Grigorios G. Papazoglou
- grp&med.uoc.gr
-20063
- vandalsWeb.com
- Daniel Perez
- dperez&vandalsweb.com
-20064
- Tohoku Intelligent Telecommunication Co.,Inc.
- Fumio Takahashi
- takahashi-fm&tohknet.co.jp
-20065
- Omega Consult Inc.
- Chai
- chaidapeng&hotmail.com
-20066
- Entheos Software
- Troy Farrell
- troy&entheossoft.com
-20067
- Karlstad University
- Paul Scott
- paul.scott&kau.se
-20068
- Artinfor
- Nicolas Dutertre
- nicolas.dutertre&artinfor.fr
-20069
- JDG Trading(Pty Ltd.)
- Sean Paine
- seanp&jdg.co.za
-20070
- Telecom Italia S.p.A.
- Antonio Cantoro
- antonio.cantoro&telecomitalia.it
-20071
- Electronic Formations
- Osama Abu Elsorour
- mib&eformations.net
-20072
- IWKA InformationsSysteme GmbH
- Patric Schirrmann
- patric.schirrmann&iwka.de
-20073
- Abundance Networks, LLC
- Thomas Richtarich
- interoperability&abundancenetworks.com
-20074
- Freerun Technologies Inc.
- System Administrator
- swreg&freerun.com
-20075
- Werthmoeller IT-Service
- Martin Werthmoeller
- service&werthmoeller.de
-20076
- Makaera Vir 2000 Inc.
- ben soo
- hostmaster&soo.com
-20077
- cMarket, Inc.
- Information Technology OID Administrator
- oidadmin&cmarket.com
-20078
- Escobar Enterprises
- Victor Escobar
- sydbarrett74&hotmail.com
-20079
- SK-TECH.net
- Kianusch Sayah Karadji
- kianusch&sk-tech.net
-20080
- MFD
- Kelsey Sigurdur
- iana&m-f-d.org
-20081
- Alanne LLC
- Adam Crosby
- iana&alanne.com
-20082
- ECE Projektmanagement
- Wolfgang Reimann
- iana&ece.de
-20083
- Techno Group, Inc
- Nick Maximov
- maxs&techno.spb.ru
-20084
- OnlineWeb Ltd.
- Laszlo Merczel
- info&onlineweb.hu
-20085
- HyperSpace Communications, Inc.
- Fritz Hesse
- fhesse&ehyperspace.com
-20086
- JRC ENGINEERING CO.,LTD.
- MASAYOSHI YODA
- yoda&jrce.co.jp
-20087
- Consultix GmbH
- Thomas Duda
- duda&consultix-gmbh.de
-20088
- Renewal Enterprises, LLC
- Jonathan Keim
- snmp&christianity.com
-20089
- Cornerstone Consulting, LLC
- John A. Thomas
- John.A.Thomas&CornerstoneConsultingLLC.com
-20090
- AIS Automations- und Informationssysteme GmbH
- Sven Schiwek
- sysop&ais-ag.de
-20091
- SyAM Software, Inc.
- Michael Daniele
- Michael.Daniele&syamsoftware.com
-20092
- Servicios de i-pro para competitividad, S.A. de C.V.
- Viktor Yarmak
- viktor&i-productiva.com
-20093
- TrekLogic Inc.
- Clement Ng
- clement.ng&treklogic.com
-20094
- Vaonet
- Kevin Stewart
- kstewart&vaonet.com
-20095
- Positron Access Solutions Corp (formerly 'Aktino, Inc.')
- Jean-Francois Mailhot
- jfmailhot&positronaccess.com
-20096
- Image Entry, Inc.
- Sean Johnson
- sean.johnson&imageentry.com
-20097
- Plope Consulting
- Chris McDonough
- chrism&plope.com
-20098
- Dave Hoebe
- Dave Hoebe
- dave&dofnet.com
-20099
- Impulse Internet Services
- Ted Cabeen
- iis-iana&impulse.net
-20100
- Spliced Networks LLC
- John Buswell
- johnb&splicednetworks.com
-20101
- Cox Enterprises
- Samuel Workman
- sam.workman&coxinc.com
-20102
- multi.mediale.net.ltd
- Reinhard Herrmann
- Reinhard.Herrmann&mediale.net
-20103
- allery.org
- Steven Allery
- redhawk105&gci.net
-20104
- Digital Evergreen, Inc.
- Scott Finnerty
- scott.finnerty&digitalevergreen.com
-20105
- Nàh-ko's world Inc.
- Christophe Truffier
- ctruffier&nah-ko.org
-20106
- Center for Leadership Solutions LLC
- Ryan Hatch
- rhatch&leadership-solutions.net
-20107
- ANIXIS
- Tonio Pirotta
- tonio&tpis.com.au
-20108
- LPC Condor Technologies
- Alberto Patron
- apatron&tutopia.com
-20109
- Cynap Limited
- Ian Shuttleworth
- ishuttleworth&cy-nap.com
-20110
- MediaPlan Inc.
- Katsuyuki Takahashi
- takahashi&media-plan.co.jp
-20111
- LEADER ELECTRONICS CORP.
- Itoshi YOKOYAMA
- yokoyama&leader.co.jp
-20112
- SMT Electronic Technology Limited
- Lu Huaqiang
- lhq2003&smt.cc
-20113
- Vecino
- Che Tran
- ctran&vecino.net
-20114
- Systems Management Enterprises, Inc.
- Sean Ellis
- info&smeinc.net
-20115
- J'raxis
- J'raxis 270145
- oid&jraxis.com
-20116
- Janr
- Alexey Trusov
- alex&tke.ru
-20117
- Institute of Applied Internet Technology, Inc.
- Tomohide Tanaka
- tomohide&netstar.co.jp
-20118
- KCN Tech Co., Ltd.
- Arthur W. Moon
- moon&kcntech.com
-20119
- EuroMarknet Internet Technológiai és Tanácsadó Ltd.
- Peter Turi
- turip&inf.elte.hu
-20120
- VIDEOTRON Corp.
- Noboru Teruyama
- teruyama&videotron.co.jp
-20121
- imos GmbH
- Alfred Wallender
- aw&imos.net
-20122
- mind-n
- Han Kyoung Ha
- hisystem&korea.com
-20123
- Sébastien Namèche Consulting
- S. Namèche
- sebastien&nameche.fr
-20124
- Cologne Systems GmbH
- Dr. Ernst-Udo Wallenborn
- ernst-udo.wallenborn&cologne-systems.de
-20125
- Vitel Software, Inc
- Joseph Rossi
- jrossi&vitelsoftware.com
-20126
- LP Agent
- Lajos KISS
- kl216&hszk.bme.hu
-20127
- TTYS0 (formerly 'Gutenpress')
- Sean Johnson
- sean&ttys0.net
-20128
- SKH TKO Kei Tak Primary School
- William Ng
- ktp-nwy&ktp.mysch.net
-20129
- SOURCECORP,Inc.
- Sean Johnson
- sean.johnson&imageentry.com
-20130
- Advanced Digital Systems, Inc.
- Carolee Nail
- cnail&mi-corporation.com
-20131
- Vermeer Manufacturing Company
- Web Systems Administrator
- websysadmin&vermeermfg.com
-20132
- Azonic Systems, Inc.
- Barry Man
- bman&azonicsystems.com
-20133
- izac.org
- Benoit Izac
- benoit&izac.org
-20134
- Surf and Sip Inc.
- Mack Nagashima
- mackn.iana&surfandsip.com
-20135
- Elyo Services Ltd
- Martyn Forbes
- martyn.forbes&elyo.co.uk
-20136
- SCHMIEDER it-solutions GmbH
- Holger Schmieder
- schmieder&schmieder.de
-20137
- codesupply.com
- Schema Manager
- schema&codesupply.com
-20138
- Avara Technologies Pty Ltd.
- Stephen Lacey
- stephen.lacey&avaratechnologies.com
-20139
- Lobos, Inc.
- Nobuhiko Onishi
- onishi&lobos.co.jp
-20140
- DAVOLINK
- Hyung-Jong Song
- hjsong&davolink.co.kr
-20141
- Axis Internet
- Rick Jones
- rick&axisinternet.net
-20142
- QianWang Networks Co.
- ZhangYongsheng
- zys690803&sina.com
-20143
- Uffaq Technologies Private Ltd.
- Rifat Zabin
- rifat&uffaq.com
-20144
- Optimo Service AG
- Christian Reinhard
- christian.reinhard&optimo-service.com
-20145
- ELVIS-PLUS
- Mark Koshelev
- marc&elvis.ru
-20146
- Ecutel
- Stephen C. Sanders
- ssanders&ecutel.com
-20147
- Internet NetOnRamp
- Bruce Kiley
- hostmaster&netonramp.com
-20148
- runIT AG
- Eric Ernst
- eric.ernst&runit.ch
-20149
- Optim Ltd Int Grp
- Nikolay Mirin
- nikamir&mail.ru
-20150
- Zon Nederland N.V.
- Johan Mulder
- johan&zonnet.nl
-20151
- Martin-Luther-Universitaet Halle-Wittenberg
- Leonhard Knauff
- knauff&urz.uni-halle.de
-20152
- eurofunk Kappacher GmbH
- Christian Kappacher
- ck&eurofunk.com
-20153
- ALCA INFORMATIQUE et TELECOM
- Thierry TROTIN
- thierry.trotin&free.fr
-20154
- Redes de Telefonía Móvil, S.A.
- David Planell Peñalver
- retemsa&retemsa.com
-20155
- Winterthur Ibérica, AIE
- Seguridad Informática
- informatica.seguridad&winterthur.es
-20156
- Lowe's Companies, Inc.
- Shawn Haigler
- shawn.m.haigler&lowes.com
-20157
- High Desert Education Service District
- Wade Holmes
- wadeh&hdesd.k12.or.us
-20158
- Washburn University
- Shawn Geil
- shawn.geil&washburn.edu
-20159
- Force, Incorporated
- Jay Kidd
- jkidd&forceinc.com
-20160
- Hilton Hotels Corporation
- Preston Gilchrist
- preston_gilchrist&hilton.com
-20161
- EWE TEL GmbH
- Stephan Jaeger
- stephan.jaeger&ewetel.de
-20162
- Trinity Capital Corporation
- Ian Mcgowan
- it&trinitycapital.com
-20163
- Kerna Communications Ltd.
- Conor McCarthy
- conor&mailsecure.kerna.ie
-20164
- Subrafta Industries, Inc.
- John Simpson
- john.simpson&voyager.net
-20165
- NIE Corporation
- Osamu Noguchi
- noguchi&c-nie.co.jp
-20166
- DEODEO Co,.Ltd
- Hisashi Nakayama
- nakayama&deodeo.co.jp
-20167
- Sonic Industries Inc.
- Network Admin
- bsheriff&sonicdrivein.com
-20168
- Gesellschaft fuer wissenschaftliche Datenverarbeitung mbH Goettingen
- Konrad Heuer
- kheuer&gwdg.de
-20169
- Urmet TLC S.p.A.
- Stefano Giannini
- s.giannini&urmetsistemi.it
-20170
- Systemlegionen
- Magnus Sjöstrand
- magnus&systemlegionen.com
-20171
- Burwood Group, Inc.
- Mike Gent
- mgent&burwood.com
-20172
- CRI Advantage
- Aaron D. Wells
- awells&criadvantage.com
-20173
- sd&m AG
- Matthias Meyer
- matthias.meyer&sdm.de
-20174
- Weldata bv
- Andre van der Meer
- andre&weldata.nl
-20175
- FOR-A Company Ltd.
- George Ishizaki
- georgei&for-a.co.jp
-20176
- Mark Rose
- Mark Rose
- uid&dicomrose.com
-20177
- Chrome Cyz Co Ltd
- Koji Onishi
- onishi&ez-networks.jp
-20178
- NetShield (Pty) Ltd
- Jan
- jannie&netshieldsa.com
-20179
- RNDSoft co.,ltd
- HwanYoung,Lee
- hydool&intizen.com
-20180
- SONGHWASOFT
- Jong-ho, Rhee
- likeu&songhwasoft.com
-20181
- The Reynolds and Reynolds Company
- John Simpson
- john_simpson&reyrey.com
-20182
- Appmind Software AB
- Ulrik Odeberg
- ulrik.odeberg&appmind.com
-20183
- William G Dempsey & Associates
- William G Dempsey
- dempsey&dempsey.com
-20184
- Montreal University
- Alain Cote
- alain.cote&UMontreal.CA
-20185
- Brake Parts Inc
- Warren Smith
- warren.smith&dana.com
-20186
- Panareef Pty Ltd
- Anthony Turco
- info&panareef.com
-20187
- Gary T. Giesen
- Gary T. Giesen
- ggiesen&giesen.me
-20188
- PHOENIX SOFT
- Jesus Bernardo Ruiz Flores
- jruiz&acelerate.com
-20189
- Nature Care College
- Patrick Taylor (IT System Administrator)
- it&naturecare.com.au
-20190
- iCable System
- Sanghoon Han
- hantough&icablesystem.com
-20191
- Throughwave, Inc.
- Chaiwat Chanruang
- ohh&throughwave.com
-20192
- JK Technologies Corp.
- Jackson M Shih
- jackson&jktech.com.tw
-20193
- ERZIA Technologies, SL
- Esther Lopez
- esther.lopez&erzia.com
-20194
- Volexia Ltd.
- David Kitchener
- dave.kitchener&volexia.com
-20195
- AL.systems GmbH
- Dr. Niketan Pandit
- Niketan.Pandit&al-systems.com
-20196
- Rainbow Triangle, v. o. s.
- Jiri Nemrava
- domeny&triangle.cz
-20197
- St. Olaf College
- Craig D. Rice
- hostmaster&stolaf.edu
-20198
- Equinox Information Systems, Inc
- Wayne Lowe
- wlowe&equinoxis.com
-20199
- SUSCERTE - Gobierno de la Republica Bolivariana de Venezuela
- Jorge J. Uya
- juya&mct.gov.ve
-20200
- Sioss Ltd
- Tim Higham
- support&sioss.com
-20201
- Kinnarps AB
- Claes Lindman
- claes.lindman&kinnarps.se
-20202
- First Canadian Title Company Ltd.
- Sean Bodkin
- helpdesk&firstcdn.com
-20203
- First Canadian Title Company Ltd.
- Sean Bodkin
- helpdesk&firstcdn.com
-20204
- EBC
- VERROUST
- frederic.verroust&ebc.net
-20205
- TIS Grupa d.o.o.
- Lovro Seder
- lovro&tis.hr
-20206
- The Unwins Wine Group Ltd
- Lee Mason
- lmason&unwins.co.uk
-20207
- Closed Joint Stock Company "PIOGLOBAL Services"
- Yuri N. Veltischev
- yv&pioglobal.ru
-20208
- Latitude Technologies, Inc.
- Dan Crysler
- danc&latitudetech.net
-20209
- Submersion Corporation
- Jeff Davey
- jeffdavey&submersion.com
-20210
- Vigilant Privacy Corporation
- Cliff Reeser
- creeser&vigilantprivacy.com
-20211
- Information and Telecommunications Technology Center
- Brett Becker
- bbecker&ittc.ku.edu
-20212
- Q1Labs, Inc.
- Bruce Artman
- bruce.artman&q1labs.com
-20213
- Rock Island Communications, Inc.
- Michael Hall
- mikeh&rockisland.com
-20214
- Nordic Institute for Theoretical Physics
- Petter Urkedal
- admin&nordita.dk
-20215
- Netkey, Inc.
- Glenn Marcus
- gmarcus&netkey.com
-20216
- more4u gbr
- Eckhard Andree
- ea&more4u.de
-20217
- Polystar Instruments AB
- Bengt Amnehagen
- snmp&polystar.se
-20218
- Ajeco Oy
- Kari J. Leino
- kjl&ajeco.fi
-20219
- BSH Hausgeraete GmbH
- Stefan Jakob
- stefan.jakob&bshg.com
-20220
- EB Software Enk, John Weholdt
- John Weholdt
- john&weholdt.no
-20221
- IMAGINEON oHG
- Frank Moritz
- moritz&imagineon.de
-20222
- PROFSOFT Sp. z o.o.
- Jacek
- profsoft&profnet.pl
-20223
- Ementor Norge AS
- Bjornar Bjorgum Larsen
- hostmaster&comace.net
-20224
- Institut Pasteur
- Marc BAUDOIN
- adm&pasteur.fr
-20225
- Sub Service Ltd.
- Alex Povolotsky
- tarkhil&sub.ru
-20226
- Cel*Star Guyana Inc.
- Nyron Samaroo
- nsamaroo&celstarguyana.net
-20227
- BitPoint AG
- Martin Gilch
- m.gilch&bitpoint.de
-20228
- Teleflex Incorporated
- Anish Patel
- apatel&teleflex.com
-20229
- Karl Hofmann Schule Berufsbildende Schule
- Markus Eiden
- markus+oid&eiden.de
-20230
- Luis Lewis
- Luis Lewis
- lelewis&optonline.net
-20231
- LDAP Technology
- Luis E. Lewis
- luis.lewis&ldaptechnology.com
-20232
- LocalNet Systems
- Andreas Weisker
- andreas&weisker.net
-20233
- Pro-G Information Security and Research Ltd.
- Dr. Can. Acar
- can.acar&pro-g.com.tr
-20234
- Superlativ
- Roar Prip
- roar&superlativ.dk
-20235
- LinuxForce, Inc.
- Chris Fearnley
- hostmaster&LinuxForce.net
-20236
- China Telecom-Guangzhou Research and Development Center
- GuoMaoWen
- liuchenglong&huawei.com
-20237
- PJ Velzeboer
- PJ Velzeboer
- public&websavages.com
-20238
- AMBIZ, Inc.
- Sergey Smolin or Vasily Kiselevich
- s.smolin&ambiz.ru
-20239
- Sterrewacht Leiden
- Tycho Bot
- computerworkers&strw.leidenuniv.nl
-20240
- CICA
- Jose Manuel Sanchez Breton
- breton&cica.es
-20241
- Premiere Fernsehen GmbH & Co. KG
- Mark Duprau, Björn Andersen
- webmaster&premiere.de
-20242
- Stephan Ruckelshaussen
- Stephan Ruckelshaussen
- s.ruckelshaussen&web.de
-20243
- SNR S.A.
- Yannick KEREUN
- ykereun&snrm.net
-20244
- Police IT Management Agency
- Anne Sandberg
- poliisin.tietohallintokeskus&poliisi.fi
-20245
- Deverto Systems Ltd.
- Huba Gaspar
- deverto&deverto.com
-20246
- Delta Energy Systems (Sweden) AB
- David Persson
- david.persson&delta-es.com
-20247
- Bladiant Technologies, Inc.
- Kevin Hardiman
- khardiman&bladiant.com
-20248
- Sony Computer Entertainment America, Inc.
- Tom Perrine
- tperrine&scea.com
-20249
- Touchstone Systems, Inc.
- Todd Wallace
- rwallace&tstoneinc.com
-20250
- GlobeRanger Corporation
- Sridhar Jaganathan
- sridharj&globeranger.com
-20251
- BN
- Bartosz Kozlowski
- oid&bn.pl
-20252
- North American World Trade Group
- Timothy R. French
- timf&nawpi.com
-20253
- iologics, Inc.
- Larry Harkrider
- lharkrider&iologics.com
-20254
- Mediatria s.r.l.
- Stefano Maffulli
- maffulli&mediatria.it
-20255
- Xalted Information Systems Pvt. Ltd
- Babu K Papanna
- babuk&xaltedindia.net
-20256
- Communicate Norge AS
- Martin Rauan
- martin.rauan&communicate.no
-20257
- Azienda Ospedaliera Villascassi
- Pedemonte Carlo
- carlo.pedemonte&villascassi.it
-20258
- Sabanci University
- Osman Demirhan
- sysadmin&sabanciuniv.edu
-20259
- Sandprints
- J. Frisbie
- jf&sandprints.net
-20260
- MDTelecom, Inc.
- Dale Augustyn
- daugustyn&mdtelecom.com
-20261
- EMS Wireless
- Delaney Mohr
- mohr.d&ems-t.com
-20262
- Odyssey Software, Inc.
- Jim Sullivan
- jsullivan&odysseysoftware.com
-20263
- Aurisp
- Waldemar Brodkorb, Lars Ehrhardt
- support&aurisp.de
-20264
- Muiderberg (M.H.C.)
- Willem van Heemstra
- WvanHeemstra&xs4all.nl
-20265
- Cambridge University Faculty of Music
- Mustafa Beg
- mustafa.beg&mus.cam.ac.uk
-20266
- OnWeb Technologies, c.a.
- Fanny Y. Perez
- fyperez&onweb.com.ve
-20267
- Days of Wonder Inc.
- Brice Figureau
- brice+iana&daysofwonder.com
-20268
- Chelsea Technologies Inc.
- L.E. Lewis
- llewis&chelsea-tech.com
-20269
- University of Yamanashi
- Masanori Hanawa
- hanawa&yamanashi.ac.jp
-20270
- xtendo technologies Kurt Schwedes
- Kurt Schwedes
- hostmaster&xtendo.de
-20271
- NetEnrich, Inc.
- Narayan D. Raju
- ndr&netenrich.com
-20272
- Creative Media GmbH
- Reinhard Weismann
- reinhard.weismann&creative.co.at
-20273
- Kunsthistorisches Museum
- Theuerkauf Dominik
- dominik.theuerkauf&khm.at
-20274
- Cyber Ware Ltd
- Mark Godfrey
- mark&cyberware.co.uk
-20275
- Ex Fructu Kft.
- VOROSBARANYI Zoltan
- mib-snmp-27e97b&exfructu.net
-20276
- Citadec Solutions OY
- Miika Keskinen
- mikka.keskinen&citadec.com
-20277
- System-Net
- Philippe GAZAGNE
- direction&system-net.biz
-20278
- Sakana-home.net
- Stephane Kattoor
- subscribe&sakana-home.net
-20279
- The Polestar Group Ltd
- John Chamberlain
- john.chamberlain&polestar-group.com
-20280
- CERNET, China Education and Research Network
- Jilong WANG
- wjl&cernet.edu.cn
-20281
- 3TNet Experimental Network
- Jilong WANG
- wjl&cernet.edu.cn
-20282
- Cribbins Associates
- Martin Cribbins
- mc&cribbinsassociates.com
-20283
- KnowGate
- Ivan Montoro
- ivanm&knowgate.com
-20284
- FAURECIA
- DTI
- dti&brieres.faurecia.com
-20285
- E-work S.p.A
- Mariano Cunietti
- mariano.cunietti&e-work.it
-20286
- VirusBuster Ltd.
- Daniel Kunos
- dkunos&virus-buster.com
-20287
- Katholieke Theologische Universiteit
- Nico de Groot
- ndegroot&ktu.nl
-20288
- TimeLink International GmbH
- Thomas Barth
- barth&titze.de
-20289
- indatex GmbH
- Klaus Wissmann
- iana-contact&indatex.com
-20290
- CNA INSURANCE
- Don Larson
- dds-lansvr&cna.com
-20291
- onTimeTek Inc.
- DONG JAE, HAN
- martin&ontimetek.com
-20292
- Dept. Network Center, China University of Geosciences
- Zhou Yong
- oyxw81&tom.com
-20293
- Onirban Networks
- Manjunath Padmanabha
- manjunath&onirbannetworks.com
-20294
- Caperio AB
- Eric Sigurdson
- eric.sigurdson&caperio.se
-20295
- Euler Hermes Poland
- Marcin Giedz
- marcin.giedz&eulerhermes.pl
-20296
- Banco Popular
- Ricardo López Sánchez
- rlopez&bancopopular.es
-20297
- Rodos
- Lorenzo Planas
- lorenzo.planas&rodosengineering.com
-20298
- If-Tech
- Avner Zrihen
- avner&if-tech.com
-20299
- Sussex Community Wireless
- Andrew Smalley
- andrew&sussexcommunitywireless.org
-20300
- InsightETE
- Matt Williams
- m.williams&insightete.com
-20301
- IBM eServer X
- Lynn Fore
- sls&us.ibm.com
-20302
- Medica
- Paul Hegel
- paul.hegel&medica.com
-20303
- Banco Industrial e Comercial S.A.
- Marcio Costa Sousa Ponte
- marcio&bicbanco.com.br
-20304
- Matrix Bancorp
- Jason Carter
- jcarter&matrixbancorp.com
-20305
- DIR A/S
- Jens Hilligsøe
- jens&dir.dk
-20306
- Kapsch CarrierCom AG
- Martin Gaugitsch
- martin.gaugitsch&kapsch.net
-20307
- Lie-Comtel
- Roland Guthauser
- roland.guthauser&lkw.li
-20308
- Regent Group of Companies
- Denis Melnikov
- dekapriz&yandex.ru
-20309
- CIRIL - Centre Interuniversitaire de Ressources Informatiques de Lorraine,
-Nancy - FRANCE
- Alexandre SIMON
- Reseau&ciril.fr
-20310
- Nicotra Sistemi spa
- Picco Maurizio
- nicotra.sistemi&nicotragroup.com
-20311
- Views On News
- Mirza Babur Naveed Baig
- paindabad&yahoo.com
-20312
- Semantico Limited
- Richard Padley
- richardp&semantico.com
-20313
- ix-tech
- Juergen Schmidt
- el&ix-tech.de
-20314
- FabDouglas
- Fabrice Daugan
- fabdouglas&users.sourceforge.net
-20315
- OCA "OpenCallArgentina"
- Alejandro Morello
- alejandro.morello&hp.com
-20316
- Qosmetrics, Inc.
- Anand Joshi
- anand&qosmetrics.com
-20317
- Lissi Co. Ltd.
- Yuri Zyryanov
- yzyryanov&lissi.ru
-20318
- Friedrich + Lochner GmbH
- Volec
- volec&dresden.frilo.de
-20319
- University of California, San Francisco, Information Technology Services
- William Gayle
- wgayle&its.ucsf.edu
-20320
- CAE Inc
- Tullio Napoleoni
- tullio&cae.com
-20321
- G+G Comsoft GmbH
- Thomas Schöll
- ggcomsoft&t-online.de
-20322
- Udo Schledorn EDV-Beratung
- Udo Schledorn
- uschledorn&web.de
-20323
- Success Medical Computer Co., Ltd.
- YL Wang
- sctech2004&yahoo.com.cn
-20324
- Provinzial Rheinland Versicherung AG
- Mirjam Gerritzen
- gerritze&provinzial.com
-20325
- neska Schiffahrts- und Speditionskontor GmbH
- Jörg Hörter
- hoerter&it.neska.com
-20326
- Education Nationale
- Romero Nicolas
- pole-identite&ac-orleans-tours.fr
-20327
- Helsinki Polytechnic Stadia
- Esa Suominen
- iana&stadia.fi
-20328
- Whitehead Institute for Biomedical Research
- Scott McCallum
- skm&wi.mit.edu
-20329
- University of Maine at Farmington
- Fred Brittain
- brittain&maine.edu
-20330
- WPS Health Insurance
- Dan Maahs
- dmaahs&wpsic.com
-20331
- ILTC - Instituto Doris Aragon
- Luiz Claudio da Silva Leao
- leao&iltc.br
-20332
- Bau- und Wohngenossenschaft Brachvogel
- Christian Vierkant
- ianaadm&brachvogel-eg.de
-20333
- ASC System
- Adonai Costa
- adonai&ig.com.br
-20334
- IDS GmbH
- Thomas WIld
- admin&ids-gmbh.de
-20335
- Teknologisk Institut
- Nils Lastein
- nils.lastein&teknologisk.dk
-20336
- N&TS spa
- Stefano Marino
- s.marino&netsw.it
-20337
- Arquematica
- Eduardo Cunha
- edu_cunha&hotmail.com
-20338
- Addamark Technologies, Inc.
- LDAP Admin
- ithelp&addamark.com
-20339
- Daniel Kelley and Associates
- Daniel Kelley
- dkelley&gmp.san-jose.ca.us
-20340
- Information Builders, Inc
- Mike Prieto
- michael_prieto&ibi.com
-20341
- LifeSize Communications, Inc
- Bruce Sawtelle
- bsawtelle&lifesize.com
-20342
- Agencia Marítima de Consignaciones, S.A.
- Alvaro Rubio Delclaux
- arubio&agemasa.com
-20343
- Altexia
- Bruno Meyrieux
- bruno&meyrieux.net
-20344
- Portrait Displays, Inc.
- Hong Chen
- hchen&portrait.com
-20345
- Edgewater Computer Systems. Inc.
- Vicky Liang
- vicky&edgewater.ca
-20346
- MetroFi, Inc.
- Andreas Ott
- aott&metrofi.com
-20347
- Equinox Converged Solutions Ltd
- Simon Mullis
- simon.mullis&equinoxsolutions.com
-20348
- ARCUS Software Pty Ltd
- Manuel Mall
- mm&arcus.com.au
-20349
- Aruba S.r.l.
- Andrea Cerrito
- andrea.cerrito&staff.aruba.it
-20350
- Milos Malik
- Milos Malik
- xmalik1&fi.muni.cz
-20351
- European Bridge-CA
- Peter Steiert
- peter.steiert&teletrust.de
-20352
- UNATECH.CO.,LTD
- William Jang
- ckjang&unatech.co.kr
-20353
- Ebang Telecom Technologies HangZhou Co., Ltd
- ZengHui
- notwo&ebang.com.cn
-20354
- Plexis Computing Limited
- Mike Ray
- mike&plexis.demon.co.uk
-20355
- Bundesverband der Deutschen Industrie e.V.
- Volker Doert
- postmaster&bdi-online.de
-20356
- CONTER Control de Energía, S.A.
- Rafa Faus
- rafa.faus&conter.es
-20357
- TINC Associates NV
- Pascal Verlinden
- pascal.verlinden&tinc.be
-20358
- Concordia College
- Dennis Duncan
- dduncan&cord.edu
-20359
- On Command Corporation
- Michael Fuhr
- snmp&ocv.com
-20360
- Cronbank AG
- Ulrich Viefhues
- f.bermbach&cronbank.de
-20361
- Ecole Centrale de Nantes
- Patrick Guyomarc'h
- Patrick.Guyomarch&ec-nantes.fr
-20362
- Alcanet International Deutschland GmbH
- Thomas Wild
- thomas.wild&alcatel.de
-20363
- Terrecablate
- Riccardo Pannocchia
- pannocchia&terrecablate.it
-20364
- System Engineering International
- William Kautter
- wkautter&seipower.com
-20365
- Malam Communications LTD
- Tal Schoenfeld
- tals&malamcom.co.il
-20366
- DBI Technologies
- Darcy Buskermolen
- darcy&dbitech.ca
-20367
- Univates
- Marcone Theisen
- marcone&solis.coop.br
-20368
- Manzanita Systems
- Greg VInes
- gvines&manzanitasystems.com
-20369
- MEPHARTEC s.a.r.l
- Medjigbodo
- admin&mephartec.com
-20370
- Allware LTDA.
- Denis Michell Delarze Garcia
- ddelarze&allware.cl
-20371
- VhaYu Technologies
- Sanjay Bhatia
- sanjay.bhatia&vhayu.com
-20372
- Michael A Nachbaur
- Michael A Nachbaur
- mike&nachbaur.com
-20373
- Coast to Coast Hosting
- Gregory Kuhn
- gkuhn&ctch.net
-20374
- AVAL NAGASAKI CORPORATION
- Hironobu Kanegae
- h_kanegae&avalngsk.co.jp
-20375
- ATT - AudioText Telecom AG
- Manfred Bacher
- bacher&attag.ch
-20376
- Century Systems Inc.
- kazuhiro kurosawa
- kuro&centurysys.co.jp
-20377
- ITMG GmbH
- Development Labs
- development&itmg-muenchen.de
-20378
- Sabancy Telekomünikasyon Hizmetleri A.?.
- Halis Osman Erkan
- cansm&sabancitelekom.com
-20379
- Specstroy-Svyaz
- Alexander Shalagin
- soft&proton-sss.ru
-20380
- Privacy, Inc.
- Jim Goss
- jim.goss&privacyinc.com
-20381
- ShopperTrak
- Jason Kratz
- jkratz&shoppertrak.com
-20382
- Working Knowledge, Inc
- Matthew Jording
- mcdjording&workingknowledge.org
-20383
- CNCLabs(CHINA NETCOM GROUP LABS)
- JiWenchong
- jiwenchong&rd-bta.com.cn
-20384
- GAIA e.V.
- Andreas Vogt
- a.vogt&gaia.de
-20385
- Frameworx, Inc.
- Kevin Ortman
- kevin.ortman&frame-wx.com
-20386
- Apple Daily Publication Development Limited,Taiwan Branch
- Alex Kao
- akao&appledaily.com.tw
-20387
- Externet Kft
- Herczeg Ferenc
- herczeg.ferenc&externet.hu
-20388
- Streamwide SAS
- Thomas BOUTON
- tbouton&streamwide.com
-20389
- Cape Clear Software
- Seamus Donohue
- seamus.donohue&capeclear.com
-20390
- I&C Energo a.s. (formerly 'OT Energy Services a.s.')
- Milan Beneš
- mbenes&ic-energo.eu
-20391
- FAKUS Elektronik GmbH
- Martin Bischoff
- fakus&t-online.de
-20392
- Oberfinanzdirektion Berlin
- Carsten Mattausch
- Carsten.Mattausch&ofd.verwalt-berlin.de
-20393
- Money Services, Inc.
- AEGON USA Directory Services
- dirsvcs&aegonusa.com
-20394
- ackrium
- Alain Kamuleta
- alainkamuleta&hotmail.com
-20395
- Sircom software
- Thai DANG
- thai.dang&sircomsoft.com
-20396
- Erbach Associates
- Christopher Erbach
- chris&jadegrel.net
-20397
- Telecooperation Office, University of Karlsruhe
- Michael Beigl
- ldap&teco.edu
-20398
- Quintech Electronics and Communications Inc.
- Thomas Phelps
- tphelps&qecinc.com
-20399
- Educational Consulting Services, Inc.
- Joseph C. Felix
- jfelix&iac.net
-20400
- Raytech Technologies, Ltd.
- Asaf Shakarchi
- asaf&raytech.co.il
-20401
- InterMetro Communications
- Jon P. deOng
- jon.deong&intermetrocomm.net
-20402
- COSTRON Co., Ltd.
- Kyoung-Sub, Shim
- monslife&costron.com
-20403
- First Communication, Inc.
- William Gu
- william_gu&fci.com.tw
-20404
- PT. ELEKTRINDO NUSANTARA
- DICKY KURNIAWAN
- dkg&en.co.id
-20405
- Omkhar, LLC
- Martin Wegner
- marty_wegner&yahoo.com
-20406
- Naesasoft,Inc.
- Xiaotang Shao
- fengyun&naesasoft.com
-20407
- Fuhrer Engineering AG
- Martin Fuhrer
- mf&fuhrer.com
-20408
- pysnmp
- Ilya Etingof
- ilya&glas.net
-20409
- Kvinnherad Breiband AS
- Erlend Moen
- erlend&kband.no
-20410
- Janusys Networks, Inc.
- Alan Yang
- alan&janusysnetworks.com
-20411
- lepo
- Christian Leporati
- lepo&carpidiem.it
-20412
- OAO Link
- Alexey Shabanov
- shabanov&nordost.ru
-20413
- University of Exeter
- Bill Edmunds
- webadmin&exeter.ac.uk
-20414
- Fracarro Radioindustrie S.p.A.
- Luigino Righetto
- thomas.antonello&fracarro.com
-20415
- Solid AB
- Christer Weinigel
- hostmaster&solid.se
-20416
- Fifth Third Bank
- Jeffrey P. Anderson
- jeff.anderson&53.com
-20417
- EUROTUNNEL
- A.POULAIN
- adrien.poulain&eurotunnel.com
-20418
- VectorMAX Corporation
- Jon Rachwalski
- jrachwalski&vectormax.com
-20419
- Security Certificates UK ltd
- Trevor Kennedy
- tkennedy&securitycertificates.co.uk
-20420
- Dyaptive Systems Inc.
- Robert Dmitroca
- rdmitroca&dyaptive.com
-20421
- RangoSur S.A.
- Jose Luis Beltrami
- beltrami&netgate.com.uy
-20422
- The Log4perl Project
- Kevin M. Goess
- cpan&goess.org
-20423
- NSS S.A.
- Gerónimo Syriani
- gsyriani&iplan.com.ar
-20424
- LUKA netconsult GmbH
- Christoph Kampe
- info&luka.de
-20425
- Noea Corporation
- John White
- jwhite&noea.com
-20426
- Tellus Group Corp.
- Kevin Huang
- kevin.huang&tellus.com.tw
-20427
- TKD
- EngTjong
- EngTjong&Tkd.Co.id
-20428
- ISTIA-AUTO
- M. HARDOUIN Laurent
- laurent.hardouin&istia.univ-angers.fr
-20429
- Kaliop Interactive Media
- POBEL Damien
- dpobel&kaliop.com
-20430
- OPTIMUM SYSTEMES INFORMATION
- Gilbert WIENCEK
- gwi&saur.fr
-20431
- Inventa Technologies, Inc.
- Scott Gray
- sgray&inventa.com
-20432
- iTRACS Corporation
- Andrew Poole
- apoole&itracs.com
-20433
- Phoenix Broadband Technologies, LLC.
- Mike Quelly
- mquelly&comcast.net
-20434
- Boca Internet Technologies, Inc. dba AlertSite
- Ken Godskind
- kgodskind&alertsite.com
-20435
- Seenetix d.o.o.
- Nemanja Lukic
- noc&volomp.com
-20436
- TransUnion LLC
- Ben Klang
- bklang&transunion.com
-20437
- Func. Internet Integration
- Thijs Schnitger
- beheer&func.nl
-20438
- CITIZEN WATCH CO.,LTD
- Osamu Hinishi
- hinishi&citizen.co.jp
-20439
- Bodgit & Scarper
- Matt Dainty
- matt&bodgit-n-scarper.com
-20440
- PATLITE Corporation
- Junpei Nakanishi
- junpei.nakanishi&patlite.co.jp
-20441
- REMASYS Pty. Ltd.
- Simon Kirsch
- simonk&remasys.com
-20442
- Samsung SDS Co, Ltd.
- Choi, Jung Wook
- jung-wook.choi&samsung.com
-20443
- Open Development
- David Pieper
- admin&open-development.com
-20444
- MAX SCHMIDT PAPIERLOGISTIK
- THOMAS ARWEILER
- thomas.arweiler&max-schmidt.de
-20445
- Noncommercial partnership <Open Food Stock>
- Kilin Oleg Alekseevich
- map&kodeks.net
-20446
- Colegio Ingenieros Caminos Canales Puertos
- Emilio Marin
- emarin&ciccp.es
-20447
- APX UK Ltd.
- David Groves (NOC Operations)
- dgroves&apxuk.co.uk
-20448
- Gibr.Net
- George Campbell
- gilko-iana&eds.org
-20449
- NetWisdom(Beijing)Technology co,ltd
- Yiqiang Ding
- dingyiqiang&msn.com
-20450
- Indigo Corp.
- Hideki Horibe
- msp-info&indigo.co.jp
-20451
- Identiga Karto
- Luis Roberto Cordero
- lcordero&identiga.com
-20452
- FishNet, Inc.
- Michael Brennen
- michael&fishnet.us
-20453
- Nakina Systems
- Steve Rycroft
- sjr&nakinasystems.com
-20454
- Middlesex Community College
- Alan Keniston
- oidadmin&middlesex.mass.edu
-20455
- Concorde Microsystems
- Stefan Siegel
- ssiegel&cms-asic.com
-20456
- Omnis Network, LLC
- Brad Schuetz
- brad&omnis.com
-20457
- Incipient, Inc.
- Mark A Roman
- mroman&incipient.com
-20458
- Schneider National, Inc.
- Rezaul Abid
- abidr&schneider.com
-20459
- Oki Electric Industry Co., Ltd. (formerly 'OF Networks Co., Ltd.')
- Hajime Kawauchi
- kawauchi654&oki.com
-20460
- goldenfile ltd
- John Harrison
- jrh&goldenfile.co.uk
-20461
- Organika-Kuznetsk
- Konstantin Froloff
- organika&sura.ru
-20462
- Multimedia Project Srl
- Cristiano Maria
- cristiano&aggroworld.com
-20463
- Perceval
- Henri-Jean Pollet
- hjp&perceval.net
-20464
- Mi4e AB
- Richard
- richard_oid&mi4e.com
-20465
- Caja de Ahorros de CASTILLA-LA MANCHA
- FAUSTINO VILLARRUBIA CARMONA
- fvillc&ccm.es
-20466
- DS Wilson Consulting
- Dwight Wilson
- wilson&cs.jhu.edu
-20467
- SAPIENS TECHNOLOGIES Ltd
- Itzhak Assaraf
- itzik.a&sapiens.com
-20468
- TatraMed Software s.r.o.
- Milos Opalek
- milos.opalek&tatramed.sk
-20469
- Lycos Europe GmbH
- Marc Willecke
- marc.willecke&lycos-europe.com
-20470
- WINGcon GmbH
- Fritz Paul
- fritz.paul&wingcon.com
-20471
- Banca di Roma S.p.A.
- Fabio Sciomer
- fabio.sciomer&bancaroma.it
-20472
- Lyra Network
- Jean-luc Lledos
- jluc&lyra-network.com
-20473
- Parlamento de Andalucia
- Jose Angel Bernal
- ja.bernal&parlamento-and.es
-20474
- LondonLink Ltd
- Richard Smith
- richard&londonlink.net
-20475
- Avalanche Mobile BV
- Valerian Chifu
- vchifu&avmob.com
-20476
- Fachhochschule Ravensburg-Weingarten
- Manfred Dorner
- dorner&fh-weingarten.de
-20477
- Buongiorno S.p.A.
- Alessandro Gatteschi
- servers&buongiorno.com
-20478
- Noopys Store company
- Carmen
- carmen_wai&yahoo.com
-20479
- UMC Genomics Lab
- Philip Lijnzaad
- genomics-system&med.uu.nl
-20480
- StrikeForce Technologies, Inc.
- Michael C. Brenner
- noc&sftnj.com
-20481
- CUBETECH
- Namkoong Sun
- nksun&icubetech.com
-20482
- L B Enterprises
- Mistye R Eks
- mistye_r_eks&yahoo.com
-20483
- Ministerio de Hacienda
- Lic. José Manuel Cano Carvajal
- canocm&hacienda.go.cr
-20484
- Sukra Helitek, Inc.
- Ben Myers
- dative&sukrahelitek.com
-20485
- Fuchsia Open Source Solutions
- Conny Brunnkvist
- conny&fuchsia.se
-20486
- ChyronHego Corporation (formerly 'Chyron Corporation')
- Minuk Choi
- minuk.choi&chyronhego.com
-20487
- AXT Systems Pty Limited
- Geoff Swan
- geoff&axtsystems.com
-20488
- DTMC Systems
- Miravalles Guillermo
- miravallesg&yahoo.com.ar
-20489
- Geotek Design Services
- George Carlson
- geotekds&swbell.net
-20490
- China Putian Institute of Technology
- Yan Chunying
- yanchy&cpit.com.cn
-20491
- Teamsun Technology Co.,Ltd
- KEXING QIU
- qiukx&teamsun.com.cn
-20492
- MTT Computer Consulting, Inc
- Matthew Thoren
- mthoren&mttcc.com
-20493
- Koblenzer Elektrizitätswerk und Verkehrs-AG
- Paul R. Schmitz
- pschmitz&kevag.de
-20494
- Consejo General del Poder Judicial
- Belen Chamarro Lerma
- belen.chamarro&cgpj.es
-20495
- Marvell Semiconductor Israel, Ltd
- Tanya Reitman
- tanya&il.marvell.com
-20496
- CellVision AS
- Inge Duklaet
- info&cellvision.info
-20497
- Universita' Mediterranea di Reggio Calabria
- Diego Raffa
- diego.raffa&unirc.it
-20498
- Gnoble Technologies
- Kelly Revels
- revelsk&bellsouth.net
-20499
- Azeus Systems Ltd.
- John Hui
- john_hui&azeus.com
-20500
- Soft Link AG
- Simon Rood
- simon.rood&softlink.ch
-20501
- Padcom
- Yvilde Courtin
- ycourtin&padcomusa.com
-20502
- Albertsons Inc.
- Michael McMurria
- michael.mcmurria&albertsons.com
-20503
- BearingPoint NZ Ltd
- Cliff Pratt
- cliff.pratt&bearingpoint.com
-20504
- Franz Chladek - EDV Dienstleistungen
- Franz Chladek
- FChladek&connect.co.at
-20505
- Astrogator
- Wayne Green
- wayne&astrogator.org
-20506
- Huetron Co.Ltd
- SahngOh Jung
- sahngoh&korea.com
-20507
- Luvantix Co.Ltd
- SahngOh Jung
- sahngoh&korea.com
-20508
- Urbandale Community School District
- Josh Whitver
- whitverj&urbandale.k12.ia.us
-20509
- Dixon Hughes PLLC
- Beth Collins
- bcollins&dixon-hughes.com
-20510
- National Taiwan University Hospital
- Huang Jian-Ming
- r92922099&ntu.edu.tw
-20511
- Manzanita Systems
- Greg Vines
- enterprise&lilapple.com
-20512
- Romania Internet Security Systems
- Florin MANAILA
- tech&riss.ro
-20513
- SARK Consultants Private Limited
- Administrator
- admin&sarksoft.com
-20514
- Home Office Life kernel
- Kazuo Takahashi
- info&lifekernel.ne.jp
-20515
- FJD Information Technologies AG
- Frank Jorga
- fj&fjd.de
-20516
- Battle Eagle Entertainment, Inc.
- David Warth
- warthd&qwest.net
-20517
- eBuild.ca Inc.
- Ilya Belkin
- ibelkin&ebuild.ca
-20518
- Flashbit Ruf and Heide GbR
- Tobias Heide
- tobias&flashbit.de
-20519
- Y Soft, s.r.o.
- Vaclav Muchna
- muchna&ysoft.cz
-20520
- Cronyx Engineering
- Serge Vakulenko
- vak&cronyx.ru
-20521
- PSDA, Inc.
- Ron Plummer
- rplummer&ieee.org
-20522
- Javalobby.org
- Matthew Schmidt
- matt&javalobby.org
-20523
- Tom Addis Automotive Group
- Chad Mueller
- chad&lakecityford.com
-20524
- SunStar Systems, Inc.
- Joe Schaefer
- joe+iana&sunstarsys.com
-20525
- Anacomp, Inc.
- Steve Seremeth
- sseremeth&anacomp.com
-20526
- Franciscan Missionaries of Our Lady Health System, Inc.
- Beverly S. Kennedy
- bkennedy&fmolhs.org
-20527
- Sathee Inc
- Sathee
- sathee&gmx.net
-20528
- PARANA EM REDE SISTEMAS LTDA.
- MARCELO STEGE
- GERAL&PARANAEMREDE.COM.BR
-20529
- AMETEK SolidState Controls Inc de Argentina
- Rodolfo Recanzone
- rodolfo.recanzone&ameteksci.com
-20530
- Johannes Kornfellner
- Johannes Kornfellner
- johannes.kornfellner&chello.at
-20531
- Matrix Networx
- Chad Mueller
- matrixnetworx&hotmail.com
-20532
- DevStream Corporation
- DevStream Administrator
- administrator&devstream.com
-20533
- 2Know-IT GmbH
- Florian von Kurnatowski
- Florian.von.Kurnatowski&2know-it.com
-20534
- Uniklinik Ulm
- Thomas Baur
- thomas.baur&uniklinik-ulm.de
-20535
- Latvijas Mobilais Telefons SIA
- Kaspars Caune
- oid&lmt.lv
-20536
- Austrian Parliament
- Johannes Kornfellner
- johannes.kornfellner&parlament.gv.at
-20537
- NIPPON EXPRESS CO.,LTD
- Hideaki Sukeda
- hi-sukeda&nittsu.co.jp
-20538
- FIBRENETIX
- Peter Green
- support&fibrenetix.com
-20539
- //////////fur////
- Tilman Reiff
- chinchilla&fursr.com
-20540
- Red Lion Controls (SIXNET)
- Denis Aull
- Engineering&RedLion.net
-20541
- CITTIO, Inc.
- Ross Fujii
- rfujii&cittio.com
-20542
- AirLink Communications, Inc.
- Jim Baichtal
- jim&airlink.com
-20543
- Optovia Corporation
- Hock Lim
- lim&optovia.com
-20544
- Sungkyunkwan University
- Jae-Wan Park
- jwpark&ece.skku.ac.kr
-20545
- BusinessLink Advertising Ltd.
- Sergey Khalyapin
- svk1967&mail.ru
-20546
- Wissenschaftszentrum Berlin fuer Sozialforschung gGmbH
- Peter Rindfuss
- rindfuss&wz-berlin.de
-20547
- Matthias Braun EDV
- Matthias Braun
- oid&browny.de
-20548
- SAP Hosting
- Matthias Braun
- braun&sap.com
-20549
- Pride S.p.A.
- Mario Del Vecchio
- m.delvecchio&pride.it
-20550
- Red Squared plc
- Paul Rathbone
- snmp&red2plc.com
-20551
- DDR Freak, LLC
- Eugene M. Kim
- blue&ddrfreak.com
-20552
- Swisscom Broadcast SA
- Ernst Joachim
- Joachim.Ernst&swisscom.com
-20553
- Wellington Management Company, LLP
- Robert Gropman
- rdgropman&wellington.com
-20554
- kraai.org
- jim kraai
- jimgkraai&yahoo.com
-20555
- eTelemetry, Inc.
- Alan Schunemann
- alan&etelemetry.com
-20556
- Hastings Entertainment Inc.
- Damon Massey
- masseyd&hastings-ent.com
-20557
- NOFware, Ltd.
- Dave McGuire
- mcguire&neurotica.com
-20558
- University College of Oslo. Faculty of Engineering
- Kyrre Begnum
- kyrre&iu.hio.no
-20559
- Engedi Technologies, Inc.
- Jeffrey A. Carley
- carley&engedi.net
-20560
- Alexander Janssen Consulting
- Alexander Janssen
- alexander.janssen&gmail.com
-20561
- LiveWave, Inc.
- Shad J. Aumann
- sjaumann&livewave.com
-20562
- North Electric Company, Inc.
- Brad Fayette
- brad.fayette&northelectriccompany.com
-20563
- TNC S.A.
- Alfredo Ayrala
- iana&uxintech.com.ar
-20564
- Albuquerque Technical Vocational Institute
- Andy Miesem
- webmaster&tvi.edu
-20565
- Oxford Wireless Networks Ltd
- Peter Curran
- Peter.Curran&OxfordWireless.net
-20566
- Taonix
- Jérôme Schell
- jerome&taonix.net
-20567
- TELEGRID Technologies, Inc.
- Jonathan Sharret
- j.sharret&telegrid.com
-20568
- Citco Technology Mangement, Inc.
- Chief Information Officer
- it&citco.com
-20569
- Inventec Enterprise System Corp.
- Anthony Lo
- lo.anthony&inventecesc.com
-20570
- ShenZhen Yinghetong Information & Technology Co.,Ltd.
- cheney
- jin_shan&163.com
-20571
- International Turnkey Systems
- Avinash Dewangan
- avinash_dewangan&alpha.its.ws
-20572
- virtual-image
- Vivian Zingelmann
- image&virtual-image.de
-20573
- Universitaetsklinikum Aachen
- Oliver Kuhl
- okuhl&ukaachen.de
-20574
- OXYAN SOFTWARE
- Benoit NIVESSE
- bnivesse&oxyan.com
-20575
- Nucleonet Inc
- Alex Chauvin
- alex&nucleonet.com
-20576
- University of Wales, Bangor
- Sim Barbaresi
- s.barbaresi&bangor.ac.uk
-20577
- schunk edv systeme gmbh
- Holger Eichhorn
- service&schunk.net
-20578
- St Ives Plymouth Ltd
- k gregory
- k.gregory&stivesweb.com
-20579
- BITSO Build IT Solutions GmbH
- Moritz Beck
- moritz.beck&bitso.de
-20580
- Kiwi Enterprises
- Andrew Ross
- support&kiwisyslog.com
-20581
- EVR Ltd.
- Goldschmidt Ido
- ido&everysystems.com
-20582
- Ebocom, LLC
- Tod Hegstrom
- THegstrom&postint.com
-20583
- Union Switch & Signal
- Ronald J. Victorelli
- rjvictorelli&switch.com
-20584
- Hunan Talkweb Information System Co. Ltd.
- Jingzhou Zhang
- lictd&163.com
-20585
- Diamond State Port Corp.
- Inigo Thomas
- ithomas&port.state.de.us
-20586
- Century Digital Investment & Management Consulting Ltd.
- Charles Feng
- zhcharles&21cn.com
-20587
- Rose Electronics
- Peter Macourek
- peter&rose.com
-20588
- MaxTronic International Co., Ltd.
- Mark Huang
- markhuang&maxtronic.com.tw
-20589
- UKeduPerson Pilot
- Simon McLeish
- s.mcleish&lse.ac.uk
-20590
- RUBY Inc.
- Robert Pragai
- pragai&rubin.hu
-20591
- VISTA International Ltd.
- Mark Itzcovitz
- mark.itzcovitz&vistacomp.com
-20592
- People's Telephone Saratov, cjsc
- Dmitry V. Korotkov
- dk&cdma-saratov.ru
-20593
- Guangdong Multiplication Communication Ltd Co.
- Fu yonggen
- fuyg&njupt.edu.cn
-20594
- XSif Software
- Xavier Barrier
- xbarrier&xsifsoftware.com
-20595
- Prefeitura Municipal de Florianopolis
- Ricardo Portes
- portes&pmf.sc.gov.br
-20596
- TomWare s.r.l.
- Roberto Guardigli
- rguardigli&tomware.it
-20597
- SurfCloud Ltd
- Lee Curtis
- dox&surfcloud.net
-20598
- eReM.Studio
- rm&rm.pl
- rm&rm.pl
-20599
- Coventry Health Care, Inc.
- David Hirsh
- hirsh&cvty.com
-20600
- Atlab s.r.l.
- Michele Bevilacqua
- michele.bevilacqua&atlab.it
-20601
- Thomas Jefferson High School for Science and Technology
- Richard Washer
- rcwasher&tjhsst.edu
-20602
- Xaraya Development Group
- Carl P. Corliss
- ccorliss&schwabfoundation.org
-20603
- Softhouse Informatica Ltda.
- Jefferson Dumes
- webmaster&softhouse.com.br
-20604
- Nexior IT Services
- Wouter Meijers
- wouter.meijers&nexior.nl
-20605
- Antepo, Inc.
- Jean Louis Seguineau
- jean-louis.seguineau&antepo.com
-20606
- CLINIQUES UNIVERSITAIRES SAINT-LUC
- MATTON JL
- jean-louis.matton&uclouvain.be
-20607
- University of Angers
- François Kermarec
- cri&univ-angers.fr
-20608
- Radboud University Nijmegen
- Peter Clijsters
- p.clijsters&uci.kun.nl
-20609
- Scalable Computing Lab
- Troy Benjegerdes
- admin&scl.ameslab.gov
-20610
- NOAA, OAR, FSL, ITS, DSG
- Patrick Hildreth
- patrick.hildreth&noaa.gov
-20611
- Flarepath Software Limited
- Glen Conway
- glen.conway&flarepath.com
-20612
- Time iCR
- Khenaidoo Nursimulu
- knursimulu&timeicr.com
-20613
- Université catholique de Louvain (UCL)
- Jean-Pierre Kuypers
- JPKuypers&sri.ucl.ac.be
-20614
- Exeo Technologies Inc.
- Claude Mally
- claude.mally&exeotechnologies.com
-20615
- Netli, Inc.
- Lev Walkin
- vlm&netli.com
-20616
- CGS World Inc.
- Karl Kemp
- kpk&cgsworld.com
-20617
- TeTeSys
- Kai Tetzlaff
- admin1&thetetzlaffs.de
-20618
- Cinetica s.r.l.
- Daniele Arduini
- darduini&cinetica.it
-20619
- UPC Ceska republika, a.s.
- UCP Ceska republika
- Administrator&upc.cz
-20620
- Valox Systems Co.Ltd
- SahngOh
- sahngoh&korea.com
-20621
- Crystal Technology Solutions Group Inc
- James Brunke
- jbrunke&ctsgi.com
-20622
- IainG
- Iain Geddes
- iaingeddes&lucent.com
-20623
- RSDB Holding b.v.
- Arjan Eecen
- papinet&rsdb.com
-20624
- Nexus Telecom AG
- Martin Ronner
- martin.ronner&frox.com
-20625
- Serviciul de Telecomunicatii Speciale
- Cristian Zaiu
- czaiu&stsnet.ro
-20626
- Software Systems A/S
- Rune Langoy
- sws&sws.no
-20627
- Institut National d'Histoire de l'Art
- Pascal Presle
- ssi&inha.fr
-20628
- Qual-Pro Corporation
- Darrell Shane
- is&qual-pro.com
-20629
- STREAMTEL
- LUCA ZANETTI
- luca&streamtel.com
-20630
- ODIBOSS NETWORKS
- REGINALD ODINAKACHI NNADIRINWA
- odiboss&yahoo.com
-20631
- MC110-GRUPO1
- Rene Rodrigues Veloso
- rene&pos.facom.ufu.br
-20632
- Barracuda Networks, Inc.
- Zachary Levow
- zlevow&barracudanetworks.com
-20633
- Security First Networks
- Terry Martin
- terry.martin&sfnet.ca
-20634
- Langochat
- David Rigaudiere
- sniper&langochat.net
-20635
- IberiSign
- OID Administrator
- oid_admin&iberisign.com
-20636
- Bendigo and District Division of General Practice Inc.
- Bruce Farnell
- bfarnell&bgodivgp.org.au
-20637
- University of Texas of the Permian Basin
- Ken Bridges
- bridges_k&utpb.edu
-20638
- Capital Markets CRC
- Chuin Nee Ooi
- cooi&cmcrc.com
-20639
- Entura, LLC
- Sulaiman Ahmad
- sahmad&entura.org
-20640
- Inomial Pty Ltd
- Mark Lillywhite
- mark-iana&inomial.com
-20641
- Vincent Consulting Group Inc.
- Paul M Vincent
- paul.vincent&vincentcg.com
-20642
- Nexus Community
- Tommy Lee
- sjlee&nexus.co.kr
-20643
- Prime MX
- Chandrashekhar Bhosle
- cnb&freedomink.org
-20644
- Vaasa Polytechnic
- Hannu Teulahti
- hannu.teulahti&puv.fi
-20645
- Poly Information Ltd.
- Simon Rapoport
- SimonR&PolyInformation.com
-20646
- Convergenz
- CH Quek
- chquek&convergenz.com.sg
-20647
- University of Cambridge Computer Laboratory
- Ian Grant
- ian.grant&cl.cam.ac.uk
-20648
- PK7
- Franck Leroy
- Franck.Leroy&pk7.fr
-20649
- Tyco Safety Products
- Ed Jones
- edjones&tycoint.com
-20650
- WG78 Ptb central
- Peter Prohaska
- pitrp&wg78.de
-20651
- Computer Vision Networks, Inc.
- Darrel Clute
- drclute&computervisions.net
-20652
- Arizona Department of Environmental Quality
- David Crowfoot
- crowfoot.david&ev.state.az.us
-20653
- Illusions Internet Solutions
- David Crowfoot
- admin&illusions.com
-20654
- Telegence Corporation
- Edward H Lewis
- elewis&telegence.com
-20655
- Ikoro Digital Inc
- Steven Wood
- info&ikoro.com
-20656
- Archer
- Pawel Aksamit
- paksamit&archer.pl
-20657
- Rascular Technology Ltd
- Roddy Pratt
- roddy_iana&rascular.com
-20658
- Finobra S.A.
- Steven Kappel
- skappel&finobra.net
-20659
- Comodo Japan Inc.
- Takuji Akiyama
- sales&comodojapan.com
-20660
- Topone Information technology Co., Ltd
- YanPeizong
- yanpeizong&cntopone.com
-20661
- Hitachi ULSI Systems Co., Ltd.
- Hidetaka Ohkubo
- ookubo&hitachi-ul.co.jp
-20662
- Heiko Jerke
- Heiko Jerke
- info&xercx.de
-20663
- BV Associates
- Thomas Zumbiehl
- zumbiehl&bvassociates.fr
-20664
- NDE Netzdesign und -entwicklung AG
- Jens-U. Mozdzen
- jmozdzen&mozdzen.de
-20665
- Enervation GmbH
- Thomas Bleckert
- bleckert&enervation.com
-20666
- Synchronoss Technologies Inc
- Aristotle B. Allen
- aristotle.allen&synchronoss.com
-20667
- Prosilient Technologies AB
- Mats Persson
- mats&prosilient.com
-20668
- Kaballero.Com LLC
- Graylend Horn
- graylend&kaballero.com
-20669
- jelte.com
- Jelte van der Hoek
- inbox&jelte.com
-20670
- SysCologne, Lutz Mischa Heitmüller
- Lutz Mischa Heitmüller
- oid&syscologne.de
-20671
- Gee-Wiz Consultancy
- Gabriel Faber
- gabrielfaber&yahoo.com
-20672
- MemoryLink Corp
- Thomas A. Freeburg
- tom&memorylink.com
-20673
- MRO Direct, Inc
- Bruce Kearns
- bruce.kearns&mrodirectnet.com
-20674
- Fullerton Elementary School District
- Sam L. Ricchio
- sam_ricchio&fsd.k12.ca.us
-20675
- Reed Networks
- Walter Reed
- wreed&reednetworks.com
-20676
- NIS4Grids
- Manuel Hess
- manuel&62nd.de
-20677
- Pulizzi Engineering, Inc.
- Joe Skorjanec
- joes&pulizzi.com
-20678
- Department of Computer Science, Rensselaer Polytechnic Institute
- David E. Cross
- crossd&cs.rpi.edu
-20679
- Helmer & Zimmermann GmbH & Co.KG
- Markus Zimmermann
- Markus.Zimmermann&hz-bau.de
-20680
- Tekmark/CSL International Solutions Inc.
- Sanjay Gupta
- sgupta&tgs-solutions.com
-20681
- Anta Systems, Inc.
- Martin Luu / Lester Lin
- mluu&antasystems.com , llin&antasystems.com
-20682
- Campusmart Ltd.
- Alfred
- alfred&campusmart.net
-20683
- DigiDoc AB
- Kjell Jonsson
- kjell.jonsson&digidoc.com
-20684
- Metropolitan Health Corporate (Proprietary) Limited
- Piet Theron
- www_administrator&mhg.co.za
-20685
- ADIES
- Joseph Alain
- alain.joseph&adies.ch
-20686
- Pohl & Co. GmbH & Co. KG
- Adam Drozdz
- adam.drozdz&pohlgruppe.de
-20687
- Roving Planet, Inc.
- Dave Hetherington
- Dave.Hetherington&RovingPlanet.com
-20688
- Seiri Inc.
- Robert Bownes
- bownes&seiri.com
-20689
- Alliance Information Systems, LLC
- Robert Maynard
- robert&ojai.net
-20690
- Harald Svab
- Harald Svab
- svab.h&aon.at
-20691
- Techtell, Inc.
- Dan Jones
- scott.sipe&techtell.com
-20692
- Ruffdogs
- Adam Lebsack
- adam&ruffdogs.com
-20693
- DYNAWEB IT Services L.P.
- Szabolcs Rumi
- support&dynaweb.hu
-20694
- Lightspeed Technologies Pte. Ltd.
- Mathias Koerber
- service&lightspeed.com.sg
-20695
- StratusStation Group Inc.
- Dwight Herren
- dwight&stratusstation.com
-20696
- Caixa Andorrana de Seguretat Social
- Mr. Lluís Gasia Ricart
- lgasia&cass.ad
-20697
- ThinPrint GmbH
- Bernd Trappe
- Bernd.Trappe&thinprint.com
-20698
- Lipetskenergo JSC
- Vadim Dobroskokin
- sysadmin&lipen.elektra.ru
-20699
- CitiMortgage
- Gavin Haslett
- gavin.haslett&citigroup.com
-20700
- Trend Communications Ltd
- Richard Petrie
- richard.petrie&trendcomms.com
-20701
- Peryam & Kroll Research Corporation
- John Kiney
- kinej&pk-research.com
-20702
- Ritchie Capital Management
- Tom Schnell
- oid_admin&ritchiecapital.com
-20703
- eBuz Internetdienste GbR
- Tom Fischer
- tom.fischer&ebuz.de
-20704
- muumilaakso ry
- Jere Virta
- jere&muumilaakso.fi
-20705
- Holguin, Fahan & Associates, Inc.
- Damon Hoxworth
- Damon_Hoxworth&hfa.com
-20706
- Vision Web Networks, LLC
- Jonathan Krauss
- jkrauss&vwnetworks.net
-20707
- InterCerve, Inc.
- Greg Gonzalez
- greg&intercerve.com
-20708
- SYSLAB.COM GmbH
- Manfred Lang
- iana&syslab.com
-20709
- Fremme's SOFTWARE-Utvikling
- Steinar Fremme
- steinar&fremme.no
-20710
- American Medical Response Inc.
- Mike Hutchins
- mike.hutchins&amr.net
-20711
- Platform Solutions, Inc.
- Natasha Galkina
- natasha&platsolns.com
-20712
- Paradise Datacom LLC
- Geoffrey Blosser
- gblosser&paradisedata.com
-20713
- Noran Tel Communications Limited
- Brent M. Zeiben
- bzeiben&norantel.com
-20714
- limitland development
- Jens Luetkens
- j.luetkens&limitland.de
-20715
- GiK Gesellschaft fuer innovative Kommunikationssysteme mbH
- Andreas Wippermann
- oid&gik.de
-20716
- Corbel Solutions, Inc
- Lee Hundley
- leeh&corbelsolutions.com
-20717
- FF Network Inc
- Gabor Nagy
- gabor.nagy&ffnetwork.hu
-20718
- American School Foundation of Monterrey, A.C.
- Roberto Garcia
- roberto.garcia&asfm.edu.mx
-20719
- SHIN.Ltd
- Francisco Lorenzo de Tuero
- lacrimiroot&yahoo.com
-20720
- MX Logic Inc
- Shaun Bryant
- sbryant&mxlogic.com
-20721
- Atomicweb, LLC
- Lynn Van der Veer
- lynn&atomicweb.com
-20722
- NetSpira Networks
- Luis Pineiro
- lpineiro&netspira.com
-20723
- Indus International, Inc.
- Geo Nordin
- geo.nordin&indus.com
-20724
- Csibra Bt
- Gergo Csibra
- csibrabt&csibra.hu
-20725
- Etria, LLP
- Tom von Schwerdtner
- tvon&etria.com
-20726
- Wilmington College
- Mike Boyle
- mike_boyle&wilmington.edu
-20727
- Net Theatre
- Zenon Panoussis
- hostmaster&nettheatre.org
-20728
- Spook Limited
- Martin Luck
- martin&spook.co.uk
-20729
- Piotr Matusz
- Piotr Matusz
- pmatusz&sadyba.elartnet.pl
-20730
- eEye Digital Security
- Chris Silva
- iana&eeye.com
-20731
- TrueTel Communications Inc
- Larry Ting
- larry&truetel.com
-20732
- BlueScope Steel Limited
- Jori Jaatinen
- jori.jaatinen&bluescopesteel.com
-20733
- JA Davey
- John Davey
- jad&davey.net.au
-20734
- Internet Sheriff Technology Ltd
- Richard Lane
- richard&isheriff.com
-20735
- ANDSCO I.T. Pty Ltd
- Scott Fisher
- scott.fisher&andscoit.com
-20736
- RS Telematica e Tecnologia da Informacao Ltda
- Heberson Sette de Almeida
- rstti&brfree.com.br
-20737
- Cynics at Large
- Perry The Cynic
- pki+mib&cynic.org
-20738
- TIBBO Technology, Inc.
- Dmitry Slepov (Managing Director)
- dima&tibbo.com
-20739
- Cortec Systems Pty Ltd
- Kent Gibson
- kent.gibson&cortecsystems.com
-20740
- AXISSOFT Corporation
- Hiroshi Hashiguchi
- hashiguchi&axissoft.co.jp
-20741
- Qala Singapore Pte Ltd
- Lim Hong Chuan
- noc&qalacom.com
-20742
- Hormann Funkwerk Kölleda
- Robert Jung
- robert.jung&hfwk.de
-20743
- ISO (International Organization for Standardization)
- Alan Mackenzie
- mackenzie&iso.org
-20744
- ICZ a.s.
- Radek Bohunsky
- radek.bohunsky&i.cz
-20745
- WLN Technologies
- Nick Groene
- Nick.Groene&Advalvas.be
-20746
- DIS Data Integration Services GmbH
- Joerg Mokros
- joerg.mokros&arikon.de
-20747
- NORTEK
- Jean-Luc Guiraud
- jean-luc.guiraud&nortek-tv.com
-20748
- Frei GmbH
- Wolfram Frei
- wf&freigmbh.de
-20749
- Grintek TCI (Pty) Ltd
- Hennie Heyl
- hheyl&grintek.com
-20750
- Technolution BV
- J. Molenmaker
- mib_contact&technolution.nl
-20751
- PERAX
- Barthel
- obarthel&perax.fr
-20752
- SA Polyclinique de Courlancy
- VERRIERE Jean-Charles
- jean-charles.verriere&groupe-courlancy.com
-20753
- Pharos Consulting (Pty) Ltd.
- Jan Jacobs
- jacobs_j&mtn.co.za
-20754
- Universitätsklinikum Aachen
- Helmut Driessen
- hdriessen&ukaachen.de
-20755
- WestGlobal Ltd.
- Fintan Palmer
- fpalmer&westglobal.com
-20756
- het Concertgebouw NV
- Bas Dekker
- b.dekker&concertgebouw.nl
-20757
- Prisacom s.a.
- Uxio Faria
- ufaria&prisacom.com
-20758
- netSurity Ltd
- Jason Banks
- jasonb&netsurity.com
-20759
- Kepler-Rominfo S.A.
- Razvan Sefciuc
- rsefciuc&kepler-rominfo.com
-20760
- Autonomous noncommercial organization "Scientific and Training Center of
-Information Security of Pr
- Andrey Victorovich Grishin
- uncib&bk.ru
-20761
- Uniklinikum Mannheim
- Dr. Gerald Weisser
- gerald.weisser&rad.ma.uni-heidelberg.de
-20762
- Passage Consortia C/O Sony Electronics (Trustee)
- Lee Pedlow
- lee.pedlow&am.sony.com
-20763
- Fastenal Company, Inc.
- Unix Administration
- is_unix_admins&fastenal.com
-20764
- David Cross Technical Consulting
- David E. Cross
- crossd&dcrosstech.com
-20765
- Rosati Kain
- Stefan Adams
- stefan&borgia.coim
-20766
- QAI India Ltd
- Raja Narayan
- rajan&qaiindia.com
-20767
- Vereinigte Postversicherung VVaG
- Heinrich Krauel
- heinrich.krauel&vpv.de
-20768
- St. Mary's High School
- Stefan Adams
- stefan&borgia.com
-20769
- Immaculate Conception School
- Stefan Adams
- stefan&borgia.com
-20770
- ADSTRA SYSTEMS INC.
- Viviana Bardea
- vbardea&adstra.com
-20771
- Priority Networks, Inc.
- High Mobley
- oid&prioritynetworks.net
-20772
- Optica Technologies Inc.
- Serge Rioux
- serge.rioux&opticatech.com
-20773
- Accenture Business Services for Utilities
- Steen Lauridsen
- slaurids&yahoo.com
-20774
- OMT Systems (Shenzhen) Limited
- Frank Cai
- zhaohuicai&o-netcom.com
-20775
- Aspire Information Services, LLC
- Lane Bryson
- lb-iana&coldhardtruth.org
-20776
- INAF - Osservatorio Astronomico di Padova
- Amedeo Petrella
- petrella&pd.astro.it
-20777
- Flexetech Solutions, Inc.
- Gayatri Raghupatruni
- gayatri&flexetech.com
-20778
- SmartWare
- Amitabh Saxena
- A.Saxena&latrobe.edu.au
-20779
- Inova Venture Pte Ltd
- David Ma
- davidma08&hotmail.com
-20780
- Gemeinsamenes Gebietsrechenzentrum Hagen - SG 2.5
- Heiko Schack
- heiko.schack&ggrz-hagen.nrw.de
-20781
- Scientific Research Institute of Applied Information Technologies
- Yevhen Khyzhnyak
- administrator&ndipit.com.ua
-20782
- soc. coop. bilanciai
- Mirco Valmori
- m.valmori&coopbilanciai.it
-20783
- ARGELA Yazilim ve Bilisim Teknolojileri A.S.
- Huseyin Erbilgin
- huseyin.erbilgin&argela.com.tr
-20784
- HiTeKnowledge Limited
- Justin Bowser
- info&htk.co.uk
-20785
- Beta Systems Software AG
- Michael Feill
- michael.feill&betasystems.com
-20786
- Techspan System Ltd
- Andy Pyrski
- andy.pyrski&jarvis-uk.com
-20787
- Parc Cientific de Barcelona
- Miguel Angel Moruno Aparicio
- sic&pcb.ub.es
-20788
- Unassigned
- Returned 12-May-05
- ---none---
-20789
- PowerMeMobile.com
- Elie Habib
- elie&powermemobile.com
-20790
- Harrington Group, Inc.
- BJ Hibbert
- hostmaster&hgi-fire.com
-20791
- keyX.net Consulting SRL
- Adrian Ciocildau
- office&keyx.net
-20792
- Erdmann Systemberatung
- Bernhard Erdmann
- hostmaster&coredumps.de
-20793
- NetBridge Inc.
- Jaeyoung A. Lee
- iana&net-bridge.com
-20794
- IT Schaller GmbH
- Martin Schaller
- martin.schaller&gmx.de
-20795
- REALTIMEIMAGE
- Sasha Ovsiankin
- dwfm-se&rtimage.com
-20796
- ShenZhen Roytel Technology Ltd.
- George Lee
- lj&roytel.com.cn
-20797
- Great Dragon Infomation Technology(Group)Co.,Ltd.
- Ma Zunyun
- mzy2003&hotmail.com
-20798
- TDN GmbH
- Oliver Buchholz
- Oliver.Buchholz&tdn.de
-20799
- Universitaet Konstanz
- Andreas Merkel
- andreas.merkel&uni-konstanz.de
-20800
- JSC Promsvyaz-Invest
- Ernest Moshkov
- erzy&sc.ru
-20801
- Exxon Mobil Corporation
- Internet Coordinator
- corporate.internet.domain.name.coordinator&exxonmobil.com
-20802
- Sanlam Ltd.
- Jan de Klerk
- root&sanlam.co.za
-20803
- Tyler Retail Systems, Inc.
- Chris Curran
- ccurran&tylernet.com
-20804
- Open PLC European Research Alliance (Opera)
- Uwe Mietrasch
- u.mietrasch&ppc-ag.de
-20805
- Beijing Sunniwell BroadBand ditital technology Corp. Ltd.
- Wu Feng
- wufeng&sunniwell.net
-20806
- Segurmatica
- Jorge Lodos
- lodos&segurmatica.com
-20807
- Federal Bureau of Investigation
- Matthew Estes
- mestes1&leo.gov
-20808
- Monaco Telecom
- M. Hubert PHAN
- h.phan&monaco-telecom.mc
-20809
- Agami Systems, Inc.
- Agami Systems
- mib-contact&agami.com
-20810
- Hamilton Consulting NSW Pty Ltd
- Bruce MacLean
- maclean&pacific.net.au
-20811
- International Securities Exchange, LLC
- John Ryan
- jryan&iseoptions.com
-20812
- NetMon Information Systems Ltd.
- PH Chiu
- phchiu&netmon.com.hk
-20813
- Ipcon Informationssysteme oHG
- Helmut Adams
- head&ipcon.de
-20814
- AMC SA
- Emmanuel Dubecq
- emmanuel.dubecq&amcsa.fr
-20815
- Zend Technologies Ltd.
- Stanislav Malyshev
- stas&zend.com
-20816
- Alexandru Ioan Cuza University
- dr. Octavian RUSU
- octavian.rusu&uaic.ro
-20817
- Argos Messtechnik GmbH
- Ralph Kondziella
- rk&argos-messtechnik.de
-20818
- SUNTEK TECHNOLOGY CO., LTD.
- Daniel Qin
- qyd&suntektech.com
-20819
- Allenbrook, Inc.
- Joe Sanderson
- jsanderson&allenbrook.com
-20820
- The University of Texas at San Antonio
- Steven Daly
- UNIX&utsa.edu
-20821
- Information and Display Systems, LLC
- Mitch Mitchell
- mmitchell&ids-sports.com
-20822
- Franwell, Inc.
- John Stephens
- john.stephens&franwell.com
-20823
- Carefx Corporation
- Marc Lottman
- mlottman&carefx.com
-20824
- Lions Gate Software, Inc.
- Ronald Olshausen
- rgo&alumni.indiana.edu
-20825
- Touch22 Software and Consulting
- Larisa Levental
- mib&touch22.com
-20826
- Convera
- Joe Robertson
- joe&convera.com
-20827
- Banco Central de Costa Rica
- Roy Valenciano
- valencianogr&bccr.fi.cr
-20828
- Schweizerische Lebensversicherungs- und Rentenanstalt
- Stephan Toggweiler
- oid-admin&swisslife.ch
-20829
- Stadtverwaltung Dresden
- Josef Müller
- jmueller&dresden.de
-20830
- Reflex AS
- Ove Ruben R Olsen
- ruben&reflex.no
-20831
- CZFree.Net
- Jiri Binko
- jbinko&mis.de
-20832
- Ryder Systems Ltd.
- IT Services
- itservices&rydersystems.com
-20833
- Terminales de Telecomunicacion Terrestre, S.L.
- Emilio Tejedor Escobar
- etejedor&ttt.es
-20834
- Alike Group
- Frederic Segaud
- fsegaud&alike-group.com
-20835
- BD Digital Lab. Co., Ltd
- Soonmyung Hong
- sonnet&bd-lab.com
-20836
- Confer Computing Consultants Company
- WONG, Man Fai
- confer_computing&yahoo.com.hk
-20837
- DFU services
- Robert Joosten
- dfu-services&xs4all.nl
-20838
- GaVI mbH
- Andreas Legler
- andreas.legler&gavi.de
-20839
- Broadcast Tools, Inc.
- Don Winget
- support&broadcasttools.com
-20840
- Thomson Technology Limited
- A D Thomson
- sandy.thomson&thomsontechnology.co.uk
-20841
- The Community Group Inc
- Matt Einson
- meinson&communitydaycare.org
-20842
- Arena Solutions, Inc.
- Les Niles
- lniles&arenasolutions.com
-20843
- Philipp Strozyk
- Philipp Strozyk
- pstrozyk&web.de
-20844
- L'OREAL
- Georges Campos
- gcampos&rd.loreal.com
-20845
- Linux Information Systems AG
- Sebastian Hetze
- s.hetze&linux-ag.de
-20846
- SURFsara
- Michel Scheerman
- michel.scheerman&surfsara.nl
-20847
- Atlas Development Corporation
- Russell von Blanck
- rblank&atlasdev.com
-20848
- Zope Corporation
- Richard Liming
- rpl&zope.com
-20849
- OMT Systems (Shenzhen) Limited
- Frank Cai
- zhaohuicai&o-netcom.com
-20850
- TechNerdVana
- Joshua E Malinowski
- theepengu1n&technerdvana.com
-20851
- Groupe Bell Nordiq inc.
- Durand Christophe
- netadmin&telebec.com
-20852
- CrimTrac
- Cliff Van Lohuizen
- cliff.vanlohuizen&crimtrac.gov.au
-20853
- Eurorail International
- Peter Dherdt
- peter&eurorail.be
-20854
- OTC Wireless Inc.
- Alex Tsao
- atsao&otcwireless.com
-20855
- Scientific Technologies Corp
- Steven Bergom
- Steven_Bergom&stchome.com
-20856
- Pattern Matched Technologies
- Rudolph van Graan
- registrations&patternmatched.com
-20857
- Inspired Technologies Ltd
- Sunny Osaje
- sc_osaje&yahoo.com
-20858
- Casa Systems, Inc.
- mib support
- mibsupport&casa-systems.com
-20859
- Citco Technology Mangement, Inc.
- Chief Information Officer
- it&citco.com
-20860
- Liberty Enterprises Inc.
- Todd Wickard
- twickard&libertysite.com
-20861
- Dansk System Elektronik A/S
- Mads Grønfeldt
- mmg&dse.dk
-20862
- Online Learning Australia Pty. Ltd.
- Evan McLean
- root&datatask.com.au
-20863
- Utiba Pty Ltd
- Systems Admin
- sysadmin&utiba.com
-20864
- Tower Technologies
- Alessandro Zummo
- noc-mib&towertech.it
-20865
- Sri Lanka Telecom
- Sanjaya Prabath
- sanjayap&slt.com.lk
-20866
- Eljakim Information Technology BV
- E. Schrijvers
- info&eljakim.nl
-20867
- danfferliu Corporation
- Danffer Liu
- danfferliu&danfferliu.com
-20868
- Helge Gudmundsen
- Helge Gudmundsen
- helge&sapo.pt
-20869
- Frank Vercruesse
- Frank Vercruesse
- iana.nospam&vercruesse.de
-20870
- Pufferbox Pty. Ltd.
- Jim Lam
- jim&pufferbox.com.au
-20871
- Kredietbank S.A. Luxembourg
- Jean-Marc SIMONIS
- jean-marc.simonis&kbl-bank.com
-20872
- Sto AG
- Philipp Bellhaeuser
- p.bellhaeuser&stoeu.com
-20873
- PROTEI Ltd
- Irina Vakker
- support&protei.ru
-20874
- Håmsø Patentbyrå ANS
- Odd Skjæveland
- odd.skjaeveland&hamso.no
-20875
- DevExperts LLC
- Roman Tsiroulnikov
- romanvt&devexperts.com
-20876
- Vorarlberger Telekommunikations GesmbH
- Oliver Peter
- peter&vtg.at
-20877
- Vine Linux
- Daisuke SUZUKI
- Vine&vinelinux.org
-20878
- VineCaves, Ltd.
- Daisuke SUZUKI
- info&vinecaves.com
-20879
- MBIT GmbH
- Michael Nemecky
- mbit-oid&mbit-gmbh.de
-20880
- MagnaQuest Technologies
- Ravindra
- ravindra&magnaquest.net
-20881
- Catenare LLC
- Johan Martin
- jnm&catenare.com
-20882
- PCDEMANO Inc
- Jorge Fernandez Diaz
- zerote&gmail.com
-20883
- Evangelische Landeskirche Wuerttemberg
- Peter Pfrommer
- Peter.Pfrommer&elk-wue.de
-20884
- BDT GmbH & Co. KG
- Thomas Weber
- Thomas.Weber&bdt.de
-20885
- Kontron Modular Computers SA (formerly 'Thales Computers')
- Sophie Rousseau
- sophie.rousseau&kontron.com
-20886
- Dr. Glinz COVIS GmbH
- Dietmar Bode
- hostmaster&covis.de
-20887
- SOLSOFT
- Hostmaster
- hostmaster&solsoft.com
-20888
- SIS Spektrum s.r.o.
- David Kolarczyk
- vyvoj&sis-spektrum.cz
-20889
- Comsys B.V.
- Walter Botman
- walter.botman&comsys.nl
-20890
- Sebastian Kueppers Computer-, Medien- und Eventservice
- Sebastian Kueppers
- info&sk-medienservice.de
-20891
- Star Internet Ltd.
- Simon Coy
- scoy&star.net.uk
-20892
- CITEL Technologies Inc.
- Steve Towlson
- steve.towlson&citel.com
-20893
- LShift Ltd
- Stuart Mottram
- query&lshift.net
-20894
- Yirdis B.V.
- T. Schipper
- info&yirdis.nl
-20895
- Diplomado
- Ximena Ruiz
- xruiz&deloitte.com
-20896
- NuVox Communications, Inc.
- Wiley Wimberly
- wiley&nuvox.net
-20897
- Determina Inc.
- Warren Wu
- warren&determina.com
-20898
- Sungard SBI
- Yossi Appleboum
- yossia&web-silicon.com
-20899
- Apollo Interactive, Inc.
- Richard Balue
- sysop&apollointeractive.com
-20900
- Quantech Global Services LLC
- Vasu Vuppala
- vasu.vuppala&quantechglobal.com
-20901
- Virtual Business Communities Inc.
- Wayne Craig
- wcraig&vbcglobal.com
-20902
- johnstonshome.org
- Simon Johnston
- simon&johnstonshome.org
-20903
- Children's Hospital - Boston
- Jim Shattuck
- james.shattuck&childrens.harvard.edu
-20904
- Risolviamo
- Stefano Merlo
- ns&risolviamo.com
-20905
- Unicible S.A.
- Security Services
- security.services&unicible.ch
-20906
- Cubika S.A.
- Walter Picone
- wpicone&cubika.com
-20907
- Regent College
- Wan-Phek How
- wphow&regent-college.edu
-20908
- Emergin, Inc.
- Juan Sierra
- juan.sierra&emergin.com
-20909
- Exempla Healthcare
- Liam Schneider
- schneiderl&exempla.org
-20910
- PT OneHUB Technology
- Ronny Haryanto
- ronny.haryanto&onehub.net
-20911
- twilley.org
- John Twilley
- jmt+iana&twilley.org
-20912
- Publishing firm «Vidrodzhenia» Ltd.
- Ihor Babyk
- babyk&lviv.farlep.net
-20913
- OJSC RTComm.RU
- Kamolov Sergey
- s.kamolov&rtcomm.ru
-20914
- Deutsche Telekom - CSC Wuerzburg
- Ralph Gessner
- ralph&cscwzb.de
-20915
- NATIONAL-BANK AG, Essen
- Mr. Axel Singhof
- axel.singhof&national-bank.de
-20916
- AVTECH Software, Inc.
- Richard Grundy
- RickGrundy&AVTECH.com
-20917
- FondsServiceBank
- Guido Rendel
- guido.rendel&fondsservicebank.de
-20918
- Wicked Studio
- Rob Nelson
- rob.nelson&wickedstudio.com
-20919
- Manobi
- Raphael Bellec
- public_technical_contact&manobi.net
-20920
- PKWARE, Inc.
- Jon Harvie
- jon.harvie&pkware.com
-20921
- Hillstone Products Ltd
- Paul Smethurst
- paul&hillstone.co.uk
-20922
- Pro Dimension Ltd.
- Peter Jantunen
- peter&prodimension.com
-20923
- Myxomop
- Peter Novodvorsky
- nidd&myxomop.com
-20924
- Proyecto OTF U.de.Chile
- Rafael Catalan Diaz
- rcatalan&redbanc.cl
-20925
- Baker & McKenzie
- Paul A. Petersen
- technicalcontact&bakernet.com
-20926
- Mase Technologies, LLC
- Perry Schwartz
- perry&mase.com
-20927
- TSI Sports Incorporated
- Perry Schwartz
- aps&tsius.com
-20928
- Tangent Systems
- Philip Correia
- oid&singularity.co.za
-20929
- SYSGO AG
- Rolf Offermanns
- roffermanns&sysgo.com
-20930
- René Alegría Sáez
- René Alegría Sáez
- ralegria&corpbanca.cl
-20931
- Software Builders Exchange
- Roby E. Gamboa
- regamboa&att.net
-20932
- yobe.org
- Roman Kunert
- rkunert&yobe.org
-20933
- Tomsk State University of Control Systems and Radioelectronics
- Roman V. Mescheriakov
- mrv&security.tomsk.ru
-20934
- ITdesign software projects and consulting
- Ronald Muenzker
- ronald.muenzker&itdesign.at
-20935
- Anystream, Inc.
- Sebastian Fonss
- sfonss&anystream.com
-20936
- CHINA COMMUNICATIONS STANDARDS ASSOCIATIONS
- LIUCHENGLONG
- liuchenglong&huawei.com
-20937
- Nimrod AS
- Stian W. Arnesen
- enterprisesmib&nimrod.no
-20938
- ETL Systems Ltd.
- Andrew Wheatley
- andrew.wheatley&etlsystems.com
-20939
- videoNEXT LLC
- Andriy Fomenko
- afomenko&videonext.com
-20940
- The eBiz Shop, LLC.
- Matt Allen
- mallen&theebizshop.net
-20941
- Palo Alto Research Center, Inc.
- Glenn Durfee
- gdurfee&parc.com
-20942
- China Telecom-Guangzhou Research and Development Center
- guomw
- guomw&gsta.com;liuchenglong&huawei.com
-20943
- QOSMOS SA
- Eric Horlait
- Eric.Horlait&qosmos.fr
-20944
- Modular Blade Server
- Murali Sundar
- murali.sundar&intel.com
-20945
- East Online, LLC
- Alexander Ilyushin
- ilyushin&eastonline.ru
-20946
- BDM Business Data Management GmbH
- Bernhard Lukassen
- bl&bdm-systems.com
-20947
- Cox Communications San Diego
- Austin Hill
- austin.hill&cox.com
-20948
- manzanita Inc.
- Juan Perez
- andresvasquez&linuxmail.org
-20949
- Anadarko Petroleum Inc.
- Allan Wolfe
- allan_wolfe&anadarko.com
-20950
- Interhack Corporation
- Bill Anderson
- bill+ianaoid&interhack.com
-20951
- Brevient Technologies, Inc.
- Andy Brezinsky
- abrezinsky&brevient.com
-20952
- Exabridge
- Ignatius Oh
- jsoh1012&empal.com
-20953
- Haifa University
- Arthur Shkabatur
- arthur&univ.haifa.ac.il
-20954
- Xtendreach Limited
- Arnoud van der Wal
- arnoud.vanderwal&xtendreach.com
-20955
- Sunet
- Andrew Hosie
- sysadmin&sunet.com.au
-20956
- Emerson Climate Technologies, Alco Products
- Hans-Juergen Bersch
- HJBersch&ecopeland.com
-20957
- E-Government Solutions (UK) Ltd.
- Gareth Boden
- administrator&egsgroup.com
-20958
- I-Nex Corporation Pty. Ltd.
- Adam Gray
- adam&i-nex.com.au
-20959
- Siemens d.d. Hrvatska
- Ivana Beli
- ik-management&siemens.hr
-20960
- Laboratory of Content Systems(LCS)
- Alexandr E. Solokow
- aeriman&aeriman.ru
-20961
- Communication Technologies
- Fawad Nazir
- fawad.nazir&gmail.com
-20962
- Multimedia Polska
- Marek Lukaszuk
- m.lukaszuk&multimedia.pl
-20963
- Kattare Internet Services
- Ethan Burnside
- burnside&kattare.com
-20964
- Camille Bauer
- Thomas Keusch
- thomas.keusch&camillebauer.com
-20965
- HVR Consulting Services Ltd
- Martin Budd
- martin.budd&hvr-csl.co.uk
-20966
- Jesus College, Oxford
- John Ireland
- computing.manager&jesus.ox.ac.uk
-20967
- Anevia
- Damien LUCAS
- contact&anevia.com
-20968
- Genomatix Software GmbH
- Markus Bayerlein
- bayerlein&genomatix.de
-20969
- EUDATA SYSTEMS S.A.
- Charles CHRISTOPH
- C.Christoph&eudata.be
-20970
- LISA GmbH
- Hans-Peter Jansen
- hp&lisa-gmbh.de
-20971
- Baltnet Ltd.
- Ivari Horm
- admin&baltnet.ee
-20972
- British Airways Plc
- Matt Hudson
- matt&ba.com
-20973
- NextiraOne Czech s.r.o.
- Ctirad Navrátil
- ctirad.navratil&nextiraone.cz
-20974
- American Megatrends, Inc
- Kenny Chiang
- kennychiang&ami.com.tw
-20975
- PONTUSYS
- Kang Kyung Wan
- kwkang&it.co.kr
-20976
- Paul Smith Computer Services
- Paul Smith
- paul&pscs.co.uk
-20977
- Comune di Imola
- Mascaro Francesco
- mascaro.f&comune.imola.bo.it
-20978
- DC-SatNet Ltd.
- Matthew Wilson
- matthew.wilson&dc-sat.net
-20979
- WT Finland Ltd
- Juha Kumpulainen
- juha&wt.fi
-20980
- tux LLC
- Martin Brulisauer
- hostmaster&tux-gmbh.ch
-20981
- Atrocity MUD
- Bruce Bye
- feliks&atrocity.org
-20982
- PCDEMANO Inc
- Jorge Fernandez Diaz
- zerote&gmail.com
-20983
- IIT Madras
- Prof. V.Jagadeesh Kumar
- vjk&iitm.ac.in
-20984
- Geonetics
- George Zullich
- gzullich&geonetics.net
-20985
- Nethonnun ehf.
- Kristinn E. Arnarsson
- hostmaster&nh.is
-20986
- Universidad del CEMA
- Juan Manuel Calvo
- jmc&cema.edu.ar
-20987
- Philadelphia Computer Institute
- Tao Jiang
- jiang&pc-institute.com
-20988
- Rackspace
- Christopher Schneider
- admins&rackspace.com
-20989
- Systems Research and Development, Inc.
- Brian Macy
- bmacy&srdnet.com
-20990
- Aspect Loss Prevention LLC
- Joe Maier
- jmaier&aspectlp.com
-20991
- Family-Williams Inc.
- Bruce Williams
- bruce&family-williams.com
-20992
- CradlePoint, Inc.
- Patrick Sewall
- psewall&cradlepoint.com
-20993
- Camujo
- Carlos Munoz
- carlos&camujo.cl
-20994
- Europa Communications Pty Ltd
- John Young
- jyoung&europa.com.au
-20995
- Progress Energy
- Edwin C. Goff III
- itsecurity&pgnmail.com
-20996
- ACCESS Co. Ltd.
- Paul Canavese
- access-mibs&access-us-inc.com
-20997
- Lotus Technologies SRL
- Franco Galián
- fg&lotustech.com.ar
-20998
- Honeywell International Inc
- Joel Knox
- joel.knox&honeywell.com
-20999
- Willis Group
- Matt Parkes
- matt.parkes&willis.com
-21000
- imetric
- Marco Ibarra
- mibarra&bice.cl
-21001
- Stratizon Inc.
- Jianbo Stancil
- jstancil&stratizon.com
-21002
- Parallax Networking Limited
- Parmeshwar Velayudhan Nair
- parm&s2000.demon.co.uk
-21003
- Dynamic Network Integration, Inc.
- Brian Snipes
- bsnipes&dni-online.com
-21004
- American Technology Integrators Corporation
- Jim Woodmansee
- jimw&ati-sf.com
-21005
- GERMAN NETWORK GMBH
- MR. CALDAROLA
- IANA&GERMAN-NETWORK.COM
-21006
- OpenDAS.org
- Michael R. Crawford
- mike&opendas.org
-21007
- InoStor
- James G. Sack
- jsack&inostor.com
-21008
- Informed Control Inc.
- Mark Wahl
- mark.wahl&informed-control.com
-21009
- McGuire & Associates, Inc
- Deane McGuire
- deane&gomcguire.com
-21010
- eCollege
- Jared Hedman
- jaredh&ecollege.com
-21011
- DotNetShop
- Franz Humplmair
- FH&dotnet-shop.de
-21012
- iHotel International Inc.
- Mike Schmidt
- mike.schmidt&ihotel.ca
-21013
- Xirrus, Inc.
- Dirk Gates
- dirk.gates&xirrus.com
-21014
- Gamerz Hub
- Jeremy Lee
- gamerzhub&hotmail.com
-21015
- Art of Living Foundation
- Hariharan Gopalan
- hari&artofliving.org
-21016
- IntruGuard Devices
- Mark Guinther
- markg&intruguarddevices.com
-21017
- IPeak Networks Inc.
- Head of Development
- oidregister&ipeaknetworks.com
-21018
- Paxar Americas, Inc.
- Jeanne Duckett
- jeanne.duckett&paxar.com
-21019
- River Systems, Inc
- David Miller
- miller392&yahoo.com
-21020
- Stowarzyszenie Freeze NET Amatorska Siec Komputerowa
- Kuba Tyszko
- kuba&lbl.pl
-21021
- Perimeter Technology Center, Inc.
- Brad Thomas
- bthomas&perimetercenter.com
-21022
- The College Board
- Doug Brown
- iana&collegeboard.org
-21023
- Forbrich Computer Consulting Ltd.
- Hans Forbrich
- Hans&ForbrichComputing.ca
-21024
- Electronics corporation of india. Ltd
- MUDIAM BADRINARAYANA,HEAD,INFORMATION TECHNOLOGY SERVICES DIVISION,INFORMATION TECHNOLOGY & TELECOM GROUP
- badri&ecil.co.in
-21025
- ICOMM TELE LTD.
- J.Padma Latha
- icommrnd&icommtele.com
-21026
- Hauf Electric Co.
- Brian Hauf
- b_hauf&yahoo.com
-21027
- MIP
- Miloslav Grundmann
- grundman&mip.ups-tlse.fr
-21028
- Digital Motorworks, LP.
- Jon R. Nials
- jnials&digitalmotorworks.com
-21029
- Giant Steps
- Udi Margolin
- udi&gntsteps.com
-21030
- PeerApp
- Joshua Kenan
- shuki&peerapp.com
-21031
- Helga Adam und Rocio Manzano Romero GBRmbH
- Michael Adam
- michael.adam&adam-manzano.de
-21032
- Argent Networks ltd
- Ian Ruddell
- ian.ruddell&argentnetworks.com
-21033
- Taikang Life Insurance Co.,Ltd.
- Han Lin
- hanlin&taikanglife.com
-21034
- Pratama Sastriawan Systems
- Joko Banu Sastriawan
- sastriawan11&yahoo.com
-21035
- DEV Systemtechnik GmbH & Co. KG
- Michael Adam
- madam&dev-systemtechnik.de
-21036
- Ultrapower Software Co., Ltd. Beijing
- Zhang Guobo
- guobo&ultrapower.com.cn
-21037
- CHUNG HUNG STEEL CO., LTD.
- Cheng Ze Li
- yl26200&chsteel.com.tw
-21038
- Radio IP Software Inc.
- Germain Emond
- germain.emond&radio-ip.com
-21039
- YuCa Tech. Corp.
- He Yu
- hefish&cz8.net
-21040
- Fiberplex, Inc
- Brian Markey
- bmarkey&fiberplex.com
-21041
- Banchile Corredores de Bolsa S.A.
- Cristian Zenteno
- cristian.zenteno&banchile.cl
-21042
- PRT Systems Ltd
- Paul Thornton
- monitoring-help&prtsystems.net
-21043
- AREVA
- S PIERRAT
- spierrat&cogema.fr
-21044
- Mauro Calderara
- Mauro Calderara
- mcalderara&phys.ethz.ch
-21045
- Intinor AB
- Roland Axelsson
- info&intinor.se
-21046
- University Of Wisconsin Extension
- Bruce LaBuda
- bruce.labuda&uwex.edu
-21047
- Banco de Credito e Inversiones
- Jose Mauricio Ballivian Arauz
- mballiv&bci.cl
-21048
- Copenhagen Municipal
- John Hansen
- john.hansen&faf.kk.dk
-21049
- ROMPETROL SA
- Bogdan Florea
- bofh&rompetrol.com
-21050
- Freebits
- Marcel Karras
- toka&freebits.de
-21051
- Init Seven AG
- Marco Huggenberger
- huggenberger&init7.net
-21052
- Interact S.A.
- Martin May
- maym&interact.lu
-21053
- Singlefin
- John Runnels
- jtrunnels&yahoo.com
-21054
- Yardi Systems, Inc.
- Matthew Van Gundy
- matthew.vangundy&yardi.com
-21055
- Sri Lanka Telecom Services Ltd.
- Nuwan Dharmasena
- nuwan&slts.lk
-21056
- DeployLinux Consulting
- Matthew Marlowe
- matt&deploylinux.net
-21057
- Themis Computer
- jean-francois simon
- jfs&themis.com
-21058
- Tizor Systems
- Peter Smith
- peter&tizor.com
-21059
- Nyvri
- Oystein Steimler
- os-oid&nyvri.net
-21060
- Global Healthcare Exchange
- Leigh Anderson
- landerson&ghx.com
-21061
- Netaquila Solutions Pvt. Ltd
- Manpreet Singh Nehra
- manpreet&netaquila.com
-21062
- Chris Forkin Consulting
- Chris Forkin
- chris&forkin.com
-21063
- MaqSys
- Maqsood Alam
- maqsoodalam_&hotmail.com
-21064
- TSingTec Ltd.
- jizd
- jizd&163.com
-21065
- SHENZHEN WLAN Research Center,CCSA
- LISHOUBIN
- lishbg&huawei.com
-21066
- SNCF (Société Nationale des Chemins de fer Français)
- Pascal MERCIER
- IPNetwork.Contact&sncf.fr
-21067
- Elitecore Technologies Ltd.
- Ajay Iyer
- ajay&elitecore.com
-21068
- University of Southern Denmark
- Sven Meiborg Sorensen
- sms&it-service.sdu.dk
-21069
- Radford Control Systems
- Keith Rathband
- keithr&radford-controls.com
-21070
- Intentia Research & Development
- Mart Muts
- martmuts&gmail.com
-21071
- EFS Inc.
- Paul LaSalle
- paul&efs.ca
-21072
- Arnold Magnetics
- Jean P Bourget
- jbourget&arnoldmagnetics.com
-21073
- webcreations.ca
- Andrew Joyce
- joyce&webcreations.ca
-21074
- PureWave Networks, Inc.
- Eric Garcia
- eric&scorchedminds.com
-21075
- Old Red Mill
- John Zavgren
- john&zavgren.com
-21076
- Science Museum of Minnesota
- Joel Miles
- jmiles&smm.org
-21077
- DigiTar
- Jason J. W. Williams
- williamsjj&digitarx.com
-21078
- dafa
- Daniel de la Fuente
- dafa2002&cs.buap.mx
-21079
- HAIPE
- HAIPE Program Manager
- haipe_po&missi.ncsc.mil
-21080
- Frog Navigation Systems B.V.
- Rene Jager
- renej&frog.nl
-21081
- Persium Inc.
- Mr Behruz RUSHENAS
- brushenas&sbcglobal.net
-21082
- EUN Partnership a.i.s.b.l.
- Jean-Noel Colin
- jean-noel.colin&eun.org
-21083
- Mairie de Paris
- Didier Ajax
- didier.ajax&paris.fr
-21084
- SD Laboratories
- Theron Bair
- sdeath&sdeath.net
-21085
- Open Alliance Sofware Libre, S.A.
- Marc Munoz
- marc&ingent.net
-21086
- Monolith Productions
- Erik De Bonte
- matrixservers.snmp&lith.com
-21087
- Infosia Services
- James Barrett
- oid&infosia.net
-21088
- krix.biz Internetdienstleistungen
- David Krix
- info&krix.biz
-21089
- Flywheel Corporation
- Systems Administrator
- admin&flywheelcorporation.com
-21090
- Ithaka Harbors, Inc.
- Lilian Wang
- lwang&ithaka.org
-21091
- Exinda Networks Pty Ltd
- Chris Siakos
- chris&exinda.com
-21092
- Raindance Wireless
- Darrel Bowman
- db&mynetworkcompany.com
-21093
- Got.Net - The Internet Connection, Inc.
- Mike Roach
- support&got.net
-21094
- Ricoh Australia Pty Ltd
- Niall McLoughlin
- nmcloughlin&ricoh.com.au
-21095
- Commonwealth Bank of Australia
- Keith Westley
- keith.westley&cba.com.au
-21096
- Quantier Inc.
- Albert Chang
- albert_chang&QuantierTech.com
-21097
- Kerr-McGee Corporation
- Karen S Tompkins
- ktompkins&kmg.com
-21098
- IECAS(Chin. Acad. of Sci)
- ZHIHUI-ZHENG
- maildode&yahoo.com
-21099
- Alltrix Sdn Bhd
- Chau Te Han
- thchau&alltrix.biz
-21100
- Linwork Informática S/C Ltda
- André Alexandre Gaio
- aagaio&linwork.com.br
-21101
- Verreau Enterprise
- joseph verreau
- jverreau&chartermi.net
-21102
- ControlTier Software, Inc.
- Charles Scott
- chuck&controltier.com
-21103
- Mandrakesoft
- Frederic Lepied
- flepied&mandrakesoft.com
-21104
- Mofet Instititue
- Alex Shpisman
- salex&macam.ac.il
-21105
- MANGO networks Inc.
- Douglas Wallace
- dwallace&mangonetworks.com
-21106
- Shanghai Ulink Telecom Technologies Co., Ltd.
- Jianhong Jia
- support&ulinkcom.com
-21107
- Novagem Ltd
- Giles Sadler
- giles.sadler&novagem.co.uk
-21108
- Harting Electric GmbH & Co KG
- Klaus Sperlich
- Klaus.Sperlich&HARTING.com
-21109
- Knowledge Zone
- JJ van Gorkum
- iana&knowzone.org
-21110
- SANITOP-WINGENROTH GmbH & Co. KG
- Michael Baeumker
- m.baeumker&sanitop-wingenroth.de
-21111
- Datalogic S.p.A
- Marco Balestra
- marco.balestra&it.datalogic.com
-21112
- TNO Telecom
- Jan Sipke van der Veen
- j.s.vanderveen&telecom.tno.nl
-21113
- Hashbang Consulting Ltd
- Peter Farmer
- peter&hblc.co.uk
-21114
- Contec s.j.
- Gronowski Ryszard
- ryszard.gronowski&contec.com.pl
-21115
- TFTEN SA
- ROUEN Alain
- arouen&tften.com
-21116
- NoVi Pawel Zimnoch
- Pawel Zimnoch
- pawel.zimnoch&novi.com.pl
-21117
- AMG Systems Limited
- Fred Burton
- fred.burton&amgsystems.co.uk
-21118
- AB2R
- David PHAM-VAN
- david&ab2r.com
-21119
- Guru, informacijske tehnologije d.o.o.
- Ales Smodis
- ales.smodis&guru.si
-21120
- Sanofi-Aventis
- Harjinder Nijjar
- Harjinder.Nijjar&sanofi-aventis.com
-21121
- m0n0
- christopher snow
- cs&m0n0.co.uk
-21122
- G.I.S. Global Information Services GmbH
- Jens-Erik Hansen
- Jens-E.Hansen&gis.de
-21123
- Amps llc
- Fabio Badilini
- badilini&amps-llc.com
-21124
- Adesium
- Marie Tourne
- marie.tourne&adesium.com
-21125
- dico-online
- Selim Baccar
- baccar_selim&yahoo.fr
-21126
- vFortress Network Security Pvt. Ltd.
- Subash Warrier
- manoj_jain&vfortress.com
-21127
- KCI Technologies, Inc.
- Rob Carlson
- rcarlson&kci.com
-21128
- Heimetli Software AG
- Peter Tellenbach
- pen&heimetli.ch
-21129
- Ideal Solution, LLC
- Jeff Lawton
- host&idealso.com
-21130
- GlassHouse UK Ltd
- Dominic Talbot
- dtalbot&glasshouse.com
-21131
- Phonesync Ltd.
- David Jones
- david.jones&phonesync.com
-21132
- Novum Information Technology BV
- Ferdinand de Bakker
- ferdinand.de.bakker&novum-it.com
-21133
- University of Iowa Hospitals and Clinics
- Robert Heitman
- robert-heitman&uiowa.edu
-21134
- University of Minnesota
- David Carlson
- davec&umn.edu
-21135
- Kimmel.biz
- D. Brian Kimmel
- briank&kimmel.biz
-21136
- North Central University
- IT Department
- it&northcentral.edu
-21137
- Astron Computer Corporation
- Paul Lovelace
- st_lovelace&tarleton.edu
-21138
- Electrosys S.r.l.
- Stefano Dilio
- diliostefano&electrosys.it
-21139
- Proofpoint, Inc.
- Andy Maas
- x-iana&proofpoint.com
-21140
- Xernolan Consulting
- Dano Carroll
- dano&xernolan.org
-21141
- Elemental Security, Inc.
- Joseph Gow
- joe&elementalsecurity.com
-21142
- ITER
- Hans-Werner Bartels
- bartelh&itereu.de
-21143
- Devis
- Martin Hudson
- MHudson&devis.com
-21144
- Maieutica - Cooperativa de Ensino Superior, Crl
- Alexandre Valente Sousa
- avs&ismai.pt
-21145
- Intalio, Inc.
- Rodolphe Pineau
- pineau&intalio.com
-21146
- Wiltel Communications LLC
- Bogdan Kaczmarek
- bogdan.kaczmarek&wiltel.com
-21147
- Innotrac Corporation
- Justin Matlock
- jmatlock&innotrac.com
-21148
- Soleil Securities Group, Inc.
- Jonathan Phillips
- technology&soleilgroup.com
-21149
- H Bauer Ediciones
- Daniel Tarrero
- dtarrero&bauer.es
-21150
- XKL, LLC
- Shane Hall
- iana-admin&xkl.com
-21151
- Priority Technologies, Inc.
- Support
- support&prioritytech.com
-21152
- Nucor Steel Indiana
- Jason McClish
- jmcclish&ns-ind.com
-21153
- Academy of Fine Arts
- Jokke Heikkila
- jokke.heikkila&kuva.fi
-21154
- Harland Financial Solutions
- Eric Setz
- eric.setz&harlandfs.com
-21155
- Chameleon Technology, Inc.
- Mark Anacker
- manacker&lot66.com
-21156
- pipp
- Armin Pipp
- armin&pipp.at
-21157
- RAE Internet Inc.
- Michael Katz
- mkatz&raeinternet.com
-21158
- Linux-Online
- Timofey Korolyov
- tk&linux-online.ru
-21159
- IPcom S.A.
- Juan Andrés Antoniuk
- jantoniuk&ipcomsa.com.uy
-21160
- Emerson Retail Services
- Ozzie Gurkan
- ogurkan&ersus.com
-21161
- Flamingo Internet Navigators
- Christopher Hicks
- chicks&chicks.net
-21162
- Voxiva Inc.
- Portman Wills
- pwills&voxiva.net
-21163
- EXPERTiS Tecnología S.A. de C.V.
- Procopio Villarreal
- pvillarr&expertis.com.mx
-21164
- Legacy Health System
- Jeffrey Mills
- jmills&lhs.org
-21165
- Tidal Networks
- Jeff Prince
- prince&tidalnetworks.net
-21166
- Personal Broadband Australia
- Michael Keaney
- michael.keaney&pba.com.au
-21167
- The Correspondence School
- Glen Ogilvie
- glen.ogilvie&correspondence.school.nz
-21168
- SCF of Arizona
- Terry R. Teppo
- tteppo&scfaz.com
-21169
- JTHInc Computing Solutions
- Josh Hogle
- josh.hogle&jthinc.net
-21170
- Vortice Research Development Pty Ltd
- Stephen Sampson
- stephens&vorticeResearchgroup.com
-21171
- NRG Global, Inc.
- Damion Sandidge
- support&NRGglobal.com
-21172
- Elan Designs
- David Mathis
- davem&inow.com
-21173
- WSCICC
- Ron Wickersham
- rjw&wscicc.org
-21174
- DISC, State of Kansas
- John Jones
- john.jones&da.state.ks.us
-21175
- Xinupro, LLC
- Peter DrakeUnderkoffler
- iana&ratgut.com
-21176
- Datalucid limited
- Mike Trotman
- mike.trotman&datalucid.com
-21177
- St. John School
- Nicholas Osterhaus
- nico&nicosterhaus.com
-21178
- Anteya Technology Corporation
- Steven Yeh
- steven&anteya.com
-21179
- Beijing E-tech Technology Co., ltd
- CAO Cheng
- caoc&extech.com.cn
-21180
- SwiDyna Technologies,Inc
- frank kang
- swidyna.company&msa.hinet.net
-21181
- anweb
- Achim Neyer
- achim.neyer&anweb.de
-21182
- Tonediy
- Reza Iskandar Achmad
- reza.iskandar&gmail.com
-21183
- lightelli Ltd.
- yang kaimy
- diskey26&hotmail.com
-21184
- AirMsg, Inc.
- Michael Lee
- ml&ioneda.com
-21185
- Ioneda, Inc.
- Michael Lee
- ml&ioneda.com
-21186
- Corner Stone Technology Inc
- Vienne Lee Ms.
- vienneli&cornerstone.com.tw
-21187
- SenseStream Limited
- Ernest
- ernest.so&sensestream.com
-21188
- eyes-works Corporation
- Yasuhiro Fujii
- eyes&eyes-works.com
-21189
- Huon Associates Pty Ltd
- Andrew Bennett
- andrew.bennett&huonassociates.com
-21190
- MayAZ Software Services
- Charles May
- brad&mayaz.net
-21191
- KCodes Corporation
- Jill Chu
- jill&kcodes.com
-21192
- Goldman Sachs JBWere Pty Ltd
- James Hine
- iana.oid&gsjbw.com
-21193
- Webvision
- Alexander Pajerr
- office&webvision.at
-21194
- LLC Inform-mobil
- Alexey I. Froloff
- raorn&immo.ru
-21195
- Non-Stop Systems (South Africa) (Pty) Limited
- Andy Watts
- andy.watts&non-stopsystems.com
-21196
- TerraPages Pty. Ltd.
- Derek Munneke
- derek.munneke&terrapages.com
-21197
- CryptoEx
- Oleg A. Zhirnov
- info&cryptoex.ru
-21198
- RTI-Zone
- Rodolphe Pineau
- pineau&rti-zone.org
-21199
- silkway
- liangjinge
- liangjinge&hotmail.com
-21200
- Dr. Ruff Software GmbH
- Günter Kreis
- gk&ruso.de
-21201
- Linuma Advanced Hosting, Inc.
- James Moore
- Jim&linuma.net
-21202
- BT (Germany) GmbH & Co. oHG
- Falk John
- falk.john&bt.com
-21203
- ARES Inc.
- Alan Yu
- alanyu&ares.com.tw
-21204
- MHGS
- Marianne Goeltl-Schuberth
- mhgs&MHGSoft.de
-21205
- Webdyn
- Emmanuel Viollet
- Emmanuel.Viollet&webdyn.com
-21206
- MobileRRD
- Wim Siebring
- wim&mobilerrd.tk
-21207
- Technische Universitaet Bergakademie Freiberg
- Dr. Andreas Kluge
- Andreas.Kluge&hrz.tu-freiberg.de
-21208
- IKS GmbH Jena
- Lutz Donnerhacke
- mib&iks-jena.de
-21209
- Mayr-Melnhof Packaging International GmbH
- Markus Heidinger
- markus.heidinger&mm-packaging.com
-21210
- kairos
- Kim hong hoi
- hhkim&realtimetech.co.kr
-21211
- Fraunhofer-Institute for Telecommunications Heinrich-Hertz-Institut
- Pieter Gross
- gross&hhi.fhg.de
-21212
- Incito Ltd
- Colin McFarlane
- iana&incito.co.uk
-21213
- topolis.lt
- Tomas Kuliavas
- tokul&users.sourceforge.net
-21214
- Eidetix S.r.L.
- Massimo Cesaro
- info&eidetix.com
-21215
- MM-Karton
- Erasmus Pachta
- erasmus.pachta&mm-karton.com
-21216
- Telepo AB
- Patrik Granholm
- patrik&telepo.com
-21217
- Lux Servizi di Luigi Iotti
- Luigi Iotti
- snmpoid&REMOVETHIS.iotti.biz
-21218
- Sette Querce
- Ferdinando Simonetti
- ferdinando.simonetti&elsag.it
-21219
- Solidex S.A.
- Pawel Gorazda
- pawel.gorazda&solidex.com.pl
-21220
- BASF AG
- Holger Petersen
- holger.petersen&basf-ag.de
-21221
- Nexus Advanced Technologies S.r.l.
- Giovanni Costagliola
- giovanni.costagliola&nexusat.it
-21222
- Profline BV
- Frank Peters Sengers
- info&profline.nl
-21223
- Akris BV
- Guido Schoonheim
- schoonheim&akris.nl
-21224
- 4G Systeme GmbH
- Christian Car
- christian.car&4g-systems.biz
-21225
- British Heart Foundation
- Santhan Perampalam
- sp&bhfshops.org.uk
-21226
- Linn Products Ltd
- Jason Newell
- jason.newell&linn.co.uk
-21227
- ABI - Associazione Bancaria Italiana
- Dott. Cesare Onorati
- webmaster&abi.it
-21228
- Aspex Semiconductor Ltd
- Jon Wilson
- it-support&aspex-semi.com
-21229
- Leningrad Research and Development Institute of Telecommunications
- Andrey Kiselev
- dron&loniis.org
-21230
- Iriga Networks
- André Krempf
- andre.krempf&iriga-networks.com
-21231
- Kugele Elektronik
- Achim Kugele
- ldap&ak8.de
-21232
- Jung Myoung Ltd
- Jeong, jun-ho
- jeong_junho&hotmail.com
-21233
- Peter Schmaedicke
- Ptere Schmaedicke
- peter&invider.com
-21234
- o-n-s CO.,LTD.
- Chiaya Takeshi
- chiaya&o-n-s.co.jp
-21235
- Nehlsen IT Training und Beratung
- Harro N. Nehlsen
- h.nehlsen&nehlsen-it.de
-21236
- Laseur Enterprises
- Gerrit Laseur
- glaseur&Comcast.net
-21237
- Wright Express
- Benjamin Garfield
- benjamin_garfield&wrightexpress.com
-21238
- BrasilSat Harald S/A
- Luiz Yoshio Enomoto
- lye.desenvolvimento&brasilsat.com.br
-21239
- Geist Manufacturing, Inc
- Brad Wilson or Jesse Preuss
- brad&geistmfg.com
-21240
- PinguSolution Meierhoff/Woltmann GbR
- Michael Meierhoff
- Michael.Meierhoff&pingusolution.de
-21241
- Chezwam
- Sebastien Gross
- seb+iana&chezwam.org
-21242
- SimDesk Technologies Inc.
- Joe Moyle
- JoeMoyle&SimDesk.com
-21243
- LANet Sp. z o.o.
- Grzegorz Marszalek
- g.marszalek&lanet.net.pl
-21244
- Mt Umunhum Wireless
- William Estrada
- MrUmunhum&popdial.com
-21245
- Macdonald Associates GmbH
- Reiner Nix
- reiner.nix&macd.com
-21246
- Quantitative Imaging
- Ronald Ligteringen
- R.Ligteringen&tnw.tudelft.nl
-21247
- verimatrix
- Bob Kulakowski, CTO
- bobk&verimatrix.com
-21248
- Pixel Software Technologies
- Pavel Nemirovsky
- pauln&pixel-tech.com
-21249
- Lightwave Solutions, Inc.
- Richard Orazi
- rjorazi&lightwavesolutionsinc.com
-21250
- Crane River Consulting
- Daniel Linder
- dan&linder.org
-21251
- Secure Campus Inc
- Madhav Karhade
- madhav&securecampus.com
-21252
- FMS Internetservice Müller und Schaub GbR
- Werner Dian
- dian&fmsweb.de
-21253
- TransOptix Inc.
- Joe Zhou
- jzhou&transoptix.com
-21254
- Arxceo Corporation
- Jackie Smith Cashion
- jackie&arxceo.com
-21255
- SanYuHu LLC
- Walter Seiler
- walter.seiler&sanyuhu.com
-21256
- Corporate Technologies Incorporated
- Martin Cribbins
- mcribbins&cptech.com
-21257
- Transera Communications Inc
- Gaya Vukkadala
- gaya.vukkadala&transerainc.com
-21258
- Tongel.org
- David Maynor
- maynor_d&bellsouth.net
-21259
- Oregon Department of Human Services
- Walt L Davis
- Walt.L.Davis&state.or.us
-21260
- XYPRO Technology Corporation
- scott uroff
- scott-snmp&xypro.com
-21261
- Aventia SL
- Oscar Conesa
- oconesa&aventia.com
-21262
- Second Shift Inc.
- Andrew Bates
- abates&omeganetserv.com
-21263
- Pacific College of Oriental Medicine
- Travis Morgan
- tmorgan&pacificcollege.edu
-21264
- AFC Commercial
- Drew Ferguson
- andy&afccommercial.co.uk
-21265
- Dark Horse Comics, Inc.
- Chris Irvine
- hostmaster&darkhorse.com
-21266
- Jab Ltd
- Jarkko Lietolahti
- jarkko&jab.fi
-21267
- IT-Service Lehmann
- Arno Lehmann
- al&its-lehmann.de
-21268
- Tecnocity, S.C.
- Gabriel Martin del Campo
- gmartin&tecnocity.com.mx
-21269
- OnSite Systems, Inc.
- Catherine Io
- cio&onsitesystems.com
-21270
- SWAL
- D. Faber
- iana&swal.org
-21271
- ITT Educational Services, Inc.
- Walter Seiler
- mike.seiler&sanyuhu.com
-21272
- Thomas P. Olsen
- Thomas P. Olsen
- thomas&t-point.dk
-21273
- MediaWeb IT
- Jan Boysen
- jan&mediaweb-it.net
-21274
- Camiant Inc
- Anrthony Machon
- amachon&camiant.com
-21275
- n3k Informatik Ltd
- Bob Day
- bob.day&n3k.co.uk
-21276
- A.C.C.E.S.S. Inc.
- James Fraser
- jsf&rogers.com
-21277
- City of Ottawa
- Roger Langevin
- roger.langevin&ottawa.ca
-21278
- Intellambda Systems Inc.
- Rachel Wang
- rachelw&intellambda.com
-21279
- State of Kansas
- Jeremy Heit
- jjh&srskansas.org
-21280
- Computer Access Technology Corporation
- Shlomi Krepner
- shlomi&catc.com
-21281
- Empresa Jornalística Caldas Júnior Ltda
- Rafael Pivato
- rpivato&cpovo.net
-21282
- SYS/IO
- Ingo Felger
- if&sys.io
-21283
- The Forest Industry Online Inc.
- Dallas Vogels
- dvogels&forestind.com
-21284
- Edustructures LLC
- Eric Petersen
- eric&edustructures.com
-21285
- Catalyst IT Ltd
- Steve Wray
- stevew&catalyst.net.nz
-21286
- Sygate Technologies
- Ravil A. Desai
- rdesai&sygate.com
-21287
- Mikrovlny s.r.o.
- Libor Konecny
- support&mikrovlny.cz
-21288
- Cetacea Networks Corporation
- Gary MacIsaac
- gary&orcaflow.ca
-21289
- grid-zero.net
- Darren Edmundson
- domains&grid-zero.net
-21290
- GBP Software, LLC
- Gaige B Paulsen
- iana&gaige.net
-21291
- Tributes Online Ltd
- Simon Manning
- harbour&funeral-link.co.nz
-21292
- kaengs reich
- Karsten Engelke
- contact&kaeng.org
-21293
- Fabric7 Systems, Inc.
- Nakul Saraiya
- saraiya&fabric7.com
-21294
- KIKA S.A.
- Denis Sacchet / Fabien Lallemand
- it&kikamedical.com
-21295
- Cunningham and Othen
- Ian Cunningham
- IanC&c-and-o.co.uk
-21296
- Infinera Corp.
- Sharfuddin Syed
- ssyed&infinera.com
-21297
- U.Z.KULeuven
- Andre De Deurwaerder
- netadmin&uz.kuleuven.ac.be
-21298
- Odyssey Pharmaceuticals, Inc.
- Leon Hairie
- leon.hairie&odysseypharm.com
-21299
- BigFix, Inc.
- Lisa Lippincott
- lisa_lippincott&bigfix.com
-21300
- Watt 22 Távközléstechnikai Szolgáltató Kft.
- Tóth Csaba
- tcsaba&greengaialing.hu
-21301
- Dialmex, L.L.C.
- David Stanaway
- hostmaster&dialmex.net
-21302
- Wright State University
- John Meyers
- john.meyers&wright.ed
-21303
- Periscope Ltd.
- David Preece
- davep&pscope.net
-21304
- BC Genome Sciences Centre
- Mark Mayo
- markmayo&bcgsc.ca
-21305
- Katholischen Hochschulgemeinde Linz
- Josef Hoerandtner
- iana.org&jossy.net
-21306
- Cyberfamily.dk
- Christian Christiansen
- cc&cyberfamily.dk
-21307
- Tel.Pacific
- Xian Zhang
- xzhang&tel-pacific.com
-21308
- NeoMon
- Shayne Balduf
- sbalduf&neomon.com
-21309
- Juni Australia Pty Ltd
- Mark Johnson
- markjohnson&juni.com.au
-21310
- Center for High Energy Physics
- Kihwan Kwon
- kihwan&knu.ac.kr
-21311
- GammaStream Technologies, Inc.
- Michael Sacket
- msacket&gammastream.com
-21312
- LISAsoft Pty. Ltd.
- Derek Munneke
- dmunneke&lisasoft.com
-21313
- VRx, Inc.
- Ricardo Autobahn
- iana+spam+richard&vrx.net
-21314
- Sizwe
- Jean-Paul Bauer
- jpbauer&sizwe.org
-21315
- The State Key Laboratory Of Information Security of China
- Lin JingQiang
- linjq&lois.cn
-21316
- Octtel Communication Co., Ltd.
- Jason C.S. Chang
- jason.chang&octtel.com.tw
-21317
- ATEN INTERNATIONAL CO., LTD.
- JasonPan
- jasonpan&aten.com.tw
-21318
- Intec NetCore, Inc,
- Kuniaki Kondo
- noc&inetcore.com
-21319
- Symbio Group
- Ken Ko
- ko&symbio.com.tw
-21320
- SourceMachine Develop Ltd.
- Peter Qian
- qian_hf&hotmail.com
-21321
- CITIC Telecom 1616 Limited
- Ken Tam
- cktam&citic1616.com
-21322
- Estonian Academy of Arts
- Lauri Korts-Pärn
- admin&artun.ee
-21323
- Consolidated Contractors International Company S.A.L
- Javed Khan
- JKhan&ccc.gr
-21324
- Databus Inc.
- Barney Wolff
- barney&databus.com
-21325
- Siedlung Cuxhaven AG
- Nils Stoever
- n.stoever&siedlung.de
-21326
- Heim & Haus GmbH & Co KG
- Wolfgang Struhalla
- struhalla&heimhaus.de
-21327
- Westsaechsische Hochschule Zwickau
- Andreas Funk
- Andreas.Funk&fh-zwickau.de
-21328
- Metos Oy
- Joakim Berndtsson
- joakim.berndtsson&metos.com
-21329
- secXtreme GmbH
- Christian Scheucher
- christian.scheucher&sec-xtreme.com
-21330
- JSC "TransTeleCom Company"
- Andrey A. Galdin
- cainfo&transtk.ru
-21331
- RESEAUNANCE
- REGNIER Pascal
- support&reseaunance.com
-21332
- Luciad NV
- Systeembeheer
- tom.laermans&luciad.com
-21333
- Chongqing Putian Communication Equipment Ltd, Co.
- O.Brire He
- OBrire&yahoo.com.cn
-21334
- ACCIO GLOBAL
- xavier lleixa
- tl11132&salleurl.edu
-21335
- OSRAM OS GmbH
- Wolfgang Schamberger
- wolfgang.schamberger&osram-os.com
-21336
- CAEN SpA
- Stefano Coluccini
- s.coluccini&caen.it
-21337
- PowerSource
- Tom Laermans
- noc&powersource.cx
-21338
- NetFX
- Tom Laermans
- tom&netfx.be
-21339
- Fiat Auto S.p.A.
- Cremasco Roberto
- roby.cremasco&fiat.com
-21340
- Verax Systems
- Slawomir Debczynski
- slawomir-debczynski&veraxsystems.com
-21341
- Corner Banca SA
- Oscar Armanini
- unix&corner.ch
-21342
- EpiSoftware Ltd.
- Martin Zdila
- m.zdila&episoftware.com
-21343
- n3k Informatik GmbH
- Rainer Maurer
- rainer.maurer&n3k.de
-21344
- Claranet GmbH
- Christian Meutes
- bsd&de.clara.net
-21345
- Sachs
- Peter W. Sachs
- iana.001&peter-sachs.de
-21346
- Forler IT Training & Consulting
- Wolfgang Forler
- wforler&forler.de
-21347
- ITCnetworks
- Mihai Lozoveanu
- mlozo&itcnetworks.ro
-21348
- Song Networks Svenska AB
- Peter Eriksson
- peter.eriksson&songnetworks.se
-21349
- TTG Europe PLC
- Andy Raffle
- andy.raffle&ttg-netherlands.nl
-21350
- SHS Informationssysteme AG
- Network Operations
- iana-oid&shs.de
-21351
- Gyrus Prod SRL
- Gabriel BIXADE
- gabriel.bixade&gyrus.ro
-21352
- Zhang Ye
- Zhang Ye
- yeahchang&vip.sina.com
-21353
- Hospital Santa Mônica
- Abrantes Araújo Silva Filho
- abrantes&epidemiologia.org
-21354
- Bezirksamt Lichtenberg von Berlin
- Winkler, Ray
- ray.winkler&ba-libg.verwalt-berlin.de
-21355
- Ascential Software
- Steven Totman
- steven.totman&ascential.com
-21356
- Austrian Grid
- Willy Weisz
- weisz&vcpc.univie.ac.at
-21357
- antislash
- camberlin stephane
- sca&antislash.net
-21358
- China ZLTelecom Telecommunication Equipment Co., LTD
- Li Dongxia
- cat995&21cn.com
-21359
- OPNET Technologies, Inc
- Vicki Tardif
- vtardif&opnet.com
-21360
- Chatsworth Products, Inc
- None
- SNMP-info&chatsworth.com
-21361
- Catholic Healthcare West
- Jim Chambers / Sheila Norcio
- jim.chambers&chw.edu
-21362
- IFOTEC
- C. SILLANS
- csillans&ifotec.com
-21363
- Valhalla Media
- Nic Pedersen
- admin&vikingis.com
-21364
- Revinetix, Inc
- Stephen Jones
- snmp&revinetix.com
-21365
- Accelerate Consultancy Limited
- Phil Davies
- phil.davies&accelerate-consultancy.co.uk
-21366
- Open Source Lab
- Scott Kveton
- kveton&osuosl.org
-21367
- Connectathon.Net
- Glen F. Marshall
- webmaster&connectathon.net
-21368
- The Cloud Networks Ltd.
- Dan Martin
- dan.martin&thecloud.net
-21369
- Terrasat Communications, Inc.
- Jose Hecht
- jhecht&terrasatinc.com
-21370
- Thales Navigation
- Carl Chan
- cchan&thalesnavigation.com
-21371
- Whited.US
- Matthew Whited
- matt&whitedonline.com
-21372
- JavaPlus
- Stephen Suen (SUNRUJUN)
- stephen.suen&gmail.com
-21373
- netfilter/iptables project
- Harald Welte
- laforge&netfilter.org
-21374
- Fabbricadigitale srl
- Nicola Masseroni
- n.masseroni&fabbricadigitale.it
-21375
- Interactive Vision Mind Beacon sp. z o.o.
- Przemyslaw Plaskowicki
- plex&iavmb.pl
-21376
- Gruppenkasper
- Aiko Barz
- aiko&gruppenkasper.net
-21377
- Zhongyuan Institute of Technology
- An Jiangze
- nair_an&msn.com
-21378
- Honda of America Mfg., Inc.
- Dallas E. Tatman
- dallas_tatman&ham.honda.com
-21379
- Shenzhen aike Co.,Ltd.
- Frank Wang
- Frank_wzf&hotmail.com
-21380
- Guangzhou aike Co.,Ltd.
- Frank Wang
- w_zf&hotmail.com
-21381
- Viessmann Werke GmbH & Co KG
- Michael Bergen
- bemi&viessmann.com
-21382
- united bolta nigeria limited
- ogunjimi ayotunde
- kattomi&hotmail.com
-21383
- bo-tech GmbH & Co. KG
- Johannes Bornhold
- joh&bo-tech.de
-21384
- serie a - digitale medien und systeme GmbH
- Kurosch Saremi
- saremi&serie-a.de
-21385
- Escalon Networks, Inc.
- Alex Alten
- alten&EscalonNetworks.com
-21386
- Quiettouch Inc.
- Vladimir Moshkovsky
- vmoshkovsky&quiettouch.com
-21387
- The John Simon Guggenheim Memorial Foundation
- Michael Smith
- ms&gf.org
-21388
- Risetek Inc.
- Li liming
- lilm&risetek.com
-21389
- King Fahd University of Petroleum and Minerals
- Mir Ahmed Ali Shajee
- shajee&kfupm.edu.sa
-21390
- ALAIN BRION SARL
- Alain Brion
- roulabille92&msn.com
-21391
- Netalley Networks LLP
- Joe Geldart
- jgeldart&netalleynetworks.com
-21392
- Tech Arabia
- Mohamed Eldesoky
- mohamed&eldesoky.net
-21393
- CareerWeaver.net
- Metodi Mladenov
- metodi&careerweaver.net
-21394
- aplis.cz, a.s.
- Vlastislav SUCHARDA
- vsucharda&aplis.cz
-21395
- Project Logicaldreams
- Matt Pruett
- mpruett&logicaldreams.net
-21396
- Brand X Software, Inc.
- Chris Terry
- chris.terry&district6.org
-21397
- FiberZone Networks LTD.
- Yossi Appleboum
- yossia&web-silicon.com
-21398
- Cybergate Technologies Corp
- Marco Lucena
- mclucena&yahoo.com
-21399
- Active Circle SA
- Loic LAMBERT
- iana-contact&active-circle.com
-21400
- e-geek
- Xavier Ourcière
- xavier.ourciere&fnac.net
-21401
- DSNCON GmbH
- Harald Rößler
- mib&dsncon.de
-21402
- Epic Energy
- Andrew Campbell
- AndrewCampbell&epic.com.au
-21403
- A-First Technology CO.,LTD.
- Chaucer Huang
- chaucer&a-first.com.tw
-21404
- DG Telecom Co. Ltd.
- Wang ChuanDa
- support&dg-telecom.com
-21405
- COMSATS Internet Services
- Nadeem Akhtar
- rahnuma&skt.comsats.net.pk
-21406
- azh GmbH
- Thomas Wieschke
- wieschke&azh.de
-21407
- Maier
- Rainer Maier
- ramaier&gmx.de
-21408
- Ernitec A/S
- Søren Gullach
- S.h.gullach&ernitec.dk
-21409
- ARTAX, a. s.
- Radek Drabant
- drabant&artax.cz
-21410
- Kennisnet
- Jerry van de Leur
- j.vandeleur&kennisnet.org
-21411
- gocept gmbh & co. kg
- Christian Theune
- mail&gocept.com
-21412
- Andreas Wachter
- Andreas Wachter
- andreas.wachter&wissensmanagement.cc
-21413
- ScriptLogic Corporation
- Chuck Baenen
- chuck&scriptlogic.com
-21414
- Batra Consulting, Inc.
- Harjit S. Batra
- HBatra&HBatra.com
-21415
- Option nv
- Axel Schollaert
- a.schollaert&option.com
-21416
- Centre Hospitalier de la Côte Basque
- AGUERRETCHE Jean-Marc
- jmaguerretche&chicb.com
-21417
- tdb Software Service GmbH
- Haris Sehic
- hs&tdb.de
-21418
- Unient Communications, a.s.
- Jan Zach
- support&unient.cz
-21419
- TEDIAL S.L.
- Pablo Perez Trabado
- pablo&tedial.com
-21420
- HanseMerkur Krankenversicherung a.G.
- Frank Jodkuhn
- Frank.Jodkuhn&hansemerkur.de
-21421
- Yassine Zairi LTD.
- Yassine O. Zairi
- aleczairi&msn.com
-21422
- CVW
- Volker Wiegand
- volker.wiegand&cvw.de
-21423
- ConnecTerra, Inc.
- Ken Traub
- kt&connecterra.com
-21424
- Kanagawa Prefectural Board of Education
- Office of General Affairs
- jouhouka.389&pref.kanagawa.jp
-21425
- Institute for Automation and Control Processes (IACP) FEBRAS
- Alexander Zatserkovniy
- avz&dvo.ru
-21426
- Hoekstra Consulting Group
- Chris Hoekstra
- chris_hoekstra&hotmail.com
-21427
- Weisenberger Solarstromerzeugung und Vertrieb
- Axel Weisenberger
- info&weisenbergers.de
-21428
- Aepona Ltd
- Liam McEntee
- liam.mcentee&aepona.com
-21429
- SUNTECH Telecom Solution LTDA
- Mario Wolf Jr
- mariowolf&suntech.com.br
-21430
- inPUT Softwareentwicklungs GmbH
- Karl Nabinger
- k.nabinger&input.at
-21431
- SAE International
- Ken Hutalski
- itservices&sae.org
-21432
- DigiNet Corporation
- Mark A. Miller
- mark&diginet.com
-21433
- Interface Software, Inc.
- John McDonnell
- jmcdonnell&interfacesoftware.com
-21434
- Karolis Dautartas Personal Enterprise
- Karolis Dautartas
- list&public.lt
-21435
- Inner Class Software Engineering Limited
- David McNerney
- david.mcnerney&innerclass.com
-21436
- basis06 AG
- Reto Burkhalter
- hostmaster&basis06.com
-21437
- ATEN Canada Technologies Inc.
- Rebecca Hou
- rebeccah&aten-ca.com
-21438
- Thrunet
- jongwon lee
- jwlee&corp.thrunet.com
-21439
- Beijing Mission Communication Co., Ltd.
- Yullia Zhang
- yang.zhang&eqmail.com
-21440
- XIUS India Ltd.
- Rajesh Sharma
- rajeshs&xius.org
-21441
- KBK e-vallalkozasa
- Kovacs, Béla Karoly
- kovacsbk&attmail.com
-21442
- GAPIC (PVT) LTD
- K. U. Gayan Priyanatha
- pcgayan&yahoo.com
-21443
- Caemar Software
- Mark Chapman
- mark.chapman&caemar.com
-21444
- OSS Technologies (Pty) Ltd
- Cedric Stevens
- cedric.stevens&oss.co.za
-21445
- eSilicon Corporation
- Stephen Van Domelen
- hostinfo&esilicon.com
-21446
- ZIPPtec Systemhaus GmbH
- Manfred Herrmann
- manfred.herrmann&zipptec.de
-21447
- Clinton Group, Inc.
- Eric M. Stone
- eric.stone&clinton.com
-21448
- KarstadtQuelle AG
- Heinz-Friedrich Hemmert
- trust&itellium.com
-21449
- Riversoft Integracao e Desenvolvimento de Software Ltda
- Luiz Alberto C. de Lima
- llima&riversoft.com.br
-21450
- Radiantek
- yangxiaobing
- yxb&radiantek.com
-21451
- Topera Technology Ltd.
- Fu Dongya
- fudongya&263.net
-21452
- AUNA OPERADORES DE TELECOMUNICACIONES, S.A.
- Cristobal Martinez Ferrus
- cristobal.martinez&auna.es
-21453
- GatherWorks, Inc.
- Frik Strecker
- frik&gatherworks.com
-21454
- data voice technologies GmbH
- Hannes Bauer
- hbauer&fibersens.com
-21455
- Sinosoft Co.,LTD
- han lin
- hanlin&sinosoft.com.cn
-21456
- LV1871
- Michael Bierenfeld
- michael.bierenfeld&lv1871.de
-21457
- Demandware, Inc.
- David C Boyle
- dboyle&demandware.com
-21458
- Clovis Solutions, Inc.
- Hong Lu
- honglu&clovissolutions.com
-21459
- CaLviX
- Daniel Dehennin
- webmaster&calvix.org
-21460
- Global Infotek, Inc.
- Scott Ganz
- command&globalinfotek.com
-21461
- Cole National
- Rich Kirkpatrick
- richkirkpatrick&colenational.com
-21462
- Toro Co
- Steve Watne
- steve.watne&toro.com
-21463
- UZ Gent
- Dirk Ketels
- oidadmin&uzgent.be
-21464
- Adelior SA
- Mirko Van Colen
- mirko.vancolen&adelior.be
-21465
- Vipond Inc.
- Gregory Pleau
- gregory.pleau&vipond.ca
-21466
- DOMISYS SA
- BOUCHÉ David
- bouche&domisys.com
-21467
- Uber Technologies cc
- Morne Lategan
- info&ubertech.co.za
-21468
- Vijit Consulting
- David Madsen
- madsen&vijit.com
-21469
- Blade Fusion
- Eyal Segal
- eyal.segal&bladefusion.com
-21470
- schematech
- Bob Cullen
- bob&schematech.co.uk
-21471
- SimpleRezo
- Clement Moulin
- contact&simplerezo.com
-21472
- xmled.org
- Steven Legg
- steven.legg&eb2bcom.com
-21473
- View500
- Steven Legg
- steven.legg&eb2bcom.com
-21474
- Ardec International Pty. Ltd.
- Duncan Sayers
- duncan.sayers&ardec.com.au
-21475
- Farsands Corporation Limited
- Derek Hinchliffe
- dhinchliffe&mpl.com.au
-21476
- Academia Sinica Grid Computing Centre
- Chih-Chiang Chang
- ccchang&beta.wsl.sinica.edu.tw
-21477
- TaiwanGrid
- Chih-Chiang Chang
- ccchang&beta.wsl.sinica.edu.tw
-21478
- AdCoCom GmbH
- Ekkehard Domning
- edomning&adcocom.com
-21479
- Icepage AB
- Bartek Kania
- bartek&icepage.se
-21480
- Shenzhen Olym-tech Co., Ltd.
- Jack Luo
- jackluo&authcyber.com
-21481
- TKM Telekommunikation und Elektronik GmbH
- Frank Hintsches
- f.hintsches&tkm-gmbh.de
-21482
- SAIPM
- Reynald Lemaire
- Reynald.Lemaire&saipm.com
-21483
- Quest Retail Technology Pty Ltd
- Paul Clarke
- snmp&quest.com.au
-21484
- SIGMETA GmbH
- Manfred Johnen
- Manfred.Johnen&sigmeta.de
-21485
- UNIS Ukraine
- Serg Ageyev
- sa&unisorg.com.ua
-21486
- Secces information technologies ltd.
- Ittai Weissberg
- ittai.w&secces.com
-21487
- Japan Cable Laboratories
- Ryozo Yamashita
- info&jcl.or.jp
-21488
- NC Numericable
- Stephane DEGUNST
- isp&ncnumericable.com
-21489
- die Antwort
- Stefan Daschek
- noniq&noniq.at
-21490
- Booth & Associates, Inc.
- Rick Rambo
- RamboRL&Booth-Assoc.com
-21491
- Entelligencia
- Stan Banash
- sbanash&sbcglobal.net
-21492
- jMesh Limited
- Phil Bluer
- phil.bluer&jmesh.com
-21493
- SKODA AUTO a.s.
- Daniel Cep
- daniel.cep&skoda-auto.cz
-21494
- 3CPLUS GmbH
- Raymond Dreher
- r.dreher&3cplus-inso.de
-21495
- SIG IT GmbH
- Mirko Waletzke
- mirko.waletzke&sig.biz
-21496
- nSolutions, Inc.
- Gordon Zhang
- gzhang&nsolutionsinc.net
-21497
- Tuxeo sprl
- Philippe Frycia
- iana&tuxeo.com
-21498
- Daemonspace Inc.
- LI Dong
- ld&ldconfig.com
-21499
- LDCONFIG
- LI Dong
- ld&ldconfig.com
-21500
- SIC LAB S.r.l.
- Fabio Cottini
- fabio.cottini&siclab.it
-21501
- Asdag
- Ogün Bilge
- o.bilge&asdag.de
-21502
- Sysload Software
- Yann GUERNION
- ref&sysload.com
-21503
- Witt Weiden GmbH
- Graf Mario
- mario.graf&witt-weiden.de
-21504
- SipStorm, Inc.
- Gerald Chatlos
- gchatlos&sipstorm.com
-21505
- Caton Technology(Beijing) Corporation
- Danffer Liu
- danfferliu&caton.com.cn
-21506
- Infinity Software Development
- Michael Hanna
- hannam&infinity-software.com
-21507
- Strategies & Solutions LLC
- Sam Wozniak
- swozniak&strategies-llc.com
-21508
- LAAS-CNRS
- Laurent Blain
- Laurent.Blain&laas.fr
-21509
- CanWest Global Communications Corp.
- Ron Field
- rfield&canwest.com
-21510
- heicare GmbH
- Thomas Haselwanter
- thomas.haselwanter&heicare.com
-21511
- Institut Laue-Langevin
- Martine M. Espitallier
- ldapmaster&ill.fr
-21512
- Instituto Superior Técnico
- Jose´Manuel Pereira
- ci&ist.utl.pt
-21513
- Vormetric, Inc.
- Andrew Wnuk
- awnuk&vormetric.com
-21514
- Computer Services and Solutions, Inc.
- Daniel Diachun
- ddiachun&cssiky.com
-21515
- Hyperion VOF
- Evert Carton
- evertc&hyperion-entertainment.biz
-21516
- Secure Data in Motion, Inc.
- Ian Elverson
- elverson&sigaba.com
-21517
- Ehwa Technologies Information
- SHIN, DONG-MAN
- cshindm&eti21.com
-21518
- Queensdale Investment Corp.
- Benj Carson
- benjcarson+iana&digitaljunkies.ca
-21519
- Detlef Woltmann IT Consult GmbH
- Detlef Woltmann
- dw&dewo-itconsult.de
-21520
- Crossworks Co.,Ltd.
- Eunjeong, Go
- gowill&crossworks.co.kr
-21521
- Engage Networks, Inc
- Alan Gilgenbach
- agilgenbach&engagenet.com
-21522
- Knights of Columbus
- Carlos Bonet
- carlos.bonet&kofc.org
-21523
- SIA European Softwarehouse
- Dima Fedotov
- billy&european-softwarehouse.com
-21524
- Wintegra
- Asaf Matan
- asafm&wintegra.co.il
-21525
- sydios-it-solutions GmbH
- Frank G. Walzebuck
- fwalzebuck&sydios.de
-21526
- Equip'Trans
- Thierry Dubosse
- be&equiptrans.com
-21527
- SLIT
- M. LARDY
- flardy&slit.fr
-21528
- MICROSEC Ltd.
- Andras Ellbogen
- ellbogen&microsec.hu
-21529
- 2wcom GmbH
- Werner Drews
- contact&2wcom.com
-21530
- Champ Cargosystems S.A.
- Cihan Aydin
- cihan.aydin&champ.aero
-21531
- Adventec
- Damien METZLER
- dmetzler&adventec.fr
-21532
- Universidad Técnica Federico Santa María
- Alejandro A. Villarroel N.
- alejandro.villarroel&usm.cl
-21533
- Administration fiscale
- Eric BEAURY
- bureau.si3-dai&dgi.finances.gouv.fr
-21534
- eWayDirect, Inc.
- Bill Welch
- billw&ewaydirect.com
-21535
- QVS Software Inc.
- Dennis Taylor
- dwt&qvssoftware.com
-21536
- MeuPC Informática e Comunicações LTDA
- Fernando Barrocal
- fernando.barrocal&gmail.com
-21537
- KUNet
- Ammar T. Al-Sayegh
- ammar&kunet.com
-21538
- fqdn.org
- Juliane Holzt
- iana-oid&juliane.holzt.de
-21539
- Klahn Integration, LLC
- Robert A. Klahn
- robert_snmp&kint.org
-21540
- Clulicon
- Uli Deml
- uli&die-demls.de
-21541
- DNF CONTROLS
- Paul Rubenstein
- prubenstein&dnfcontrols.com
-21542
- NET-TEK.info
- Thomas Langer
- thomas&net-tek.info
-21543
- Bartels System GmbH
- Oliver Bartels
- oliver&bartels.de
-21544
- Ktech Telecom
- Steve Kuh
- sk&ktechtelecom.com
-21545
- Universidad Nacional de Salta
- Diego Saravia
- dsa&unsa.edu.ar
-21546
- Virtual Conexions Inc
- Jean-Luc Dugas
- jldugas&virtualconexions.com
-21547
- Logic Product Development
- Erik Anderson
- hostmaster&logicpd.com
-21548
- Qoris, Inc.
- Kenneth Lee
- klee&klmn.net
-21549
- Vine Systems Limited
- Michael Larbi
- michael.larbi&larbi.com
-21550
- Millennium Pharmaceutical, Inc.
- Senad Mulabegovic
- senad.mulabegovic&mpi.com
-21551
- IdleAire Technologies Corp.
- Hostmaster
- HostmasterMail&idleaire.com
-21552
- XI INTERNET SERVICES
- Johannes Peschke
- johannes.peschke&xi-internet-services.de
-21553
- Kineticode, INc.
- David Wheeler
- ldap&kineticode.com
-21554
- Intertech Software Ltd
- Rob Basto
- rbasto&intertechsoftware.co.uk
-21555
- VonWangelin
- Daniel Von Wangelin
- info&vonwangelin.com
-21556
- Botho.Net
- Sebastian Schulz
- seb&shamoha.org
-21557
- Fabio Perini North America, Inc.
- Kent Maxwell
- kmaxwell&fabio-perini.com
-21558
- East Sea Group
- Long Pham
- pklong&eastseatravel.com
-21559
- Parallelspace Corporation
- Michael Herman
- mwherman&parallelspace.net
-21560
- Atlanta Help Desk
- Marc Mamane
- marc&mamane.org
-21561
- abk-technology GmbH
- Denis Brueck
- denis.brueck&abk-technology.de
-21562
- Boing.com
- Geff Hanoian
- boing&boing.com
-21563
- Center of the System Administration LLC
- Nick Gazaloff
- nick&sbin.org
-21564
- MMForces.de
- Mathias Kaufmann
- administrator&mmforces.de
-21565
- R. E. Smith
- Ron Smith
- res485&fuse.net
-21566
- WMS Industries Inc.
- Ryan Schaefer
- rschaefe&wmsgaming.com
-21567
- Network Computing Services, Inc.
- Jay Kline
- jay&ahpcrc.org
-21568
- nGENn GmbH
- Ulrich Plate
- plate&ngenn.net
-21569
- COMPSIS
- Rodolpho Testi
- rodolpho.testi&compsisnet.com.br
-21570
- Crimson Microsystems
- Michael A. Thatcher
- mthatcher&crimsonmicrosystems.com
-21571
- Cornerstone University
- Jonathan Beasley
- ldap.admin&cornerstone.edu
-21572
- Incompatible Time Sharing Systems
- Alan Bawden
- snmp&bawden.org
-21573
- gb EDV Beratung
- G. Beilhack
- iana&beilhack.com
-21574
- Active Systems Ltd.
- Andres Toomsalu
- andres&active.ee
-21575
- IRIS Télécom & Réseaux
- Cédric LHERM
- info&iris-telecom.fr
-21576
- Vestfold Butikkdata AS
- Dag Christensen
- dag.christensen&vbd.no
-21577
- Allgemeine Anthroposophische Gesellschaft
- Angela Gavazzi
- edv&goetheanum.ch
-21578
- Radium Instituto de Oncologia
- Josephus
- josvdv&radium.com.br
-21579
- HarlemLIVE
- Brad Harbans
- harbansb&msn.com
-21580
- XDS
- David Roberts
- daver&xdsinc.net
-21581
- Bird Technologies
- Matt Loretitsch
- matt&bird-technologies.com
-21582
- twam systems
- Tobias Mueller
- iana&email.twam.info
-21583
- Oy Stinghorn Ltd
- Sami Vaarala
- sami.vaarala&stinghorn.com
-21584
- BTT Software
- Nick Abbott
- snmp&bttsoftware.co.uk
-21585
- Apollo Medical Imaging Technology
- Qing Yang
- info&apollomit.com
-21586
- ELITECH DATACOM CO.,LTD.
- ZongZhao Chen
- chen&elitech.com.cn
-21587
- Cemtek Computer Solutions Ltd.
- Wei Zhong
- menei&21cn.com
-21588
- Media Connect GmbH
- Armin Sattler
- info&media-connect.de
-21589
- Infosila
- Shibaev Dmitry
- d_shibaev&mail.ru
-21590
- Zeni Corporation SA
- Gilbert Roulot
- contact-iana&zeni.fr
-21591
- Systime Informatik AG
- Martin Brulisauer
- m.brulisauer&systime.ch
-21592
- Activis Polska Sp. z o.o.
- Jacek Hryniewiecki
- j.hryniewiecki&activis.pl
-21593
- Agnes Cebulla
- Agnes Cebulla
- mail&agnes-cebulla.de
-21594
- Dougs Computers
- Doug Hanson
- iana&dougscomputers.com
-21595
- Kerberos Research
- Jesus Edgar Zavala Siller
- jezs&kerberos-research.com
-21596
- Low Fat Technology, LLC
- Nick Hodulik
- snmp.spam&lowfattech.com
-21597
- Paper Coaters Limited
- Merry Tsao
- merryt&papercoaters.co.nz
-21598
- Net Design Studio S.L.
- José Luis Arenas
- jla&nds.es
-21599
- TRAK Microwave Corporation
- Rolando Penabade
- Rpenabade&trak.com
-21600
- NETIKUS.NET ltd
- Ingmar Koecher
- ingmar.koecher&netikus.net
-21601
- Cementhorizon
- Eugene Wood
- iana_private_enterprise_administrator&cementhorizon.com
-21602
- Turbocomm Tech. Inc.
- Lobo Chang
- lobo&turbocomm.com.tw
-21603
- e-Lock Corporation Sdn. Bhd.
- Mr. Poong Zui Yong
- poongzy&elock.com.my
-21604
- Fiserv
- Gary Waldow
- Gary.Waldow&Fiserv.com
-21605
- Sollentuna Energi AB
- Jens Örtenholm
- jens.ortenholm&sollentunaenergi.se
-21606
- Asclep Communications Private Ltd
- Saravanan R
- saravanan&asclep.com
-21607
- SPAR Oesterreichische Warenhandels-AG
- Martin SPERL
- martin.sperl&spar.at
-21608
- John G Russell (Transport) Ltd.,
- Ronnie Johnstone
- ronnie.johnstone&johngrussell.co.uk
-21609
- Syscomp GmbH
- Robert Stromer
- ian&syscomp.de
-21610
- Quality Objects S.L.
- Roberto Sánchez
- rsanchez&qualityobjects.com
-21611
- MDHM COMMUNICATION
- Ravizza
- webmaster&mdhm.fr
-21612
- ise - Individuelle Software-Entwicklung GmbH
- Witali Kadatzki
- kadatzki&ise.de
-21613
- TOYOTA Motor Marketing Europe
- Koen Maes
- Koen.Maes&toyota-europe.com
-21614
- Multix Finland Oy
- Jarmo Tulonen
- tulonen&multixfin.fi
-21615
- Bolton Sixth Form College
- Kevin Ratcliffe
- kratcliffe&bolton-sfc.ac.uk
-21616
- Fraunhofer IIS
- Martin Kohlmann
- kln&iis.fraunhofer.de
-21617
- TiFiC AB
- Per Losenborg
- per.losenborg&tific.com
-21618
- Navecor, SA
- Veronique Gaspar
- veronique.gaspar&navecor.pt
-21619
- Massey Wilcox Transport Ltd.
- Ray Conneely
- ray&masseywilcox.com
-21620
- Morrow Technologies Corporation
- James Morrow
- ianacontact&morrowcorp.com
-21621
- Perez Torres y Cia.
- Pedro Garcia and Jose M.Torres
- jose.torres&pereztorresycia.es
-21622
- Centerpoint Technologies Inc
- Brian McBride
- bmcbride&talkswitch.com
-21623
- Serono International SA
- Christian Geffcken
- IT.Security&Serono.com
-21624
- EcoNet.Com, Inc.
- Tim Bandy
- timb&econet.com
-21625
- Shikoku Instrumentation CO.,LTD
- Makio Hinomoto
- hinomo1180&yonkei.co.jp
-21626
- NetMon Information Systems Ltd.
- PH Chiu
- phchiu&netmon.com.hk
-21627
- Embrapa Monitoramento por Satélite
- Anderson S. Ferreira
- anderson&cnpm.embrapa.br
-21628
- Niagara LaSalle Corporation
- David Sinclair
- dsinclair&niag.com
-21629
- IKTEK
- Emmanuel Lécharny
- elecharny&iktek.com
-21630
- University of Fukui
- Mitsuya Tanaka
- office&icpc.fukui-u.ac.jp
-21631
- Axero AG
- Georg Lehmann
- georg.lehmann&axero.net
-21632
- Kayak Software Corporation
- Steve Revilak
- enterprise-numbers&kayak.com
-21633
- eCorridor, Inc.
- Gene Ames
- games&ecorridor.com
-21634
- Educational Community Credit Union
- Gabrielle Braley
- gabrielle.b&edcomcu.org
-21635
- ZhongChuangXingCe Beijing,China
- Chen Hongjun
- chenhj&zcxc.com.cn
-21636
- Tech-Nous Ltd
- Iain Holder
- iain&tech-nous.co.uk
-21637
- PacWan
- Michel Merle
- nic&pacwan.net
-21638
- PROD-EL PRODOTTI ELETTRONICI S.P.A.
- Bernareggi Ilaria
- mkt&prod-el.com
-21639
- CONSIGNACIONES TORO Y BETOLAZA,S.A.
- JOSE ANTONIO GONZALEZ CARREDANO
- josean.gonzalez&torobe.com
-21640
- O2 (UK) Ltd
- Martyn Radzimierski
- directory&02.net
-21641
- mm Control AG
- Hans Kremers
- hans.kremers&mmcontrol.ch
-21642
- Le Tual Consulting
- Jamie Le Tual
- ldap_admin&letual.net
-21643
- Allianz Cia. de Seguros y Reaseguros SA
- Esther Rus
- esther.rus&allianz.es
-21644
- Hyperworx
- Jason Chodakowski
- jasonc&hyperworx.com
-21645
- PDV-Systeme
- Nick Solf
- Nick.Solf&pdv.de
-21646
- Meuleman Technologies bvba
- Koenraad Meuleman
- koenraad&meuleman.com
-21647
- Credence Systems Corporation
- Dave Solbes
- dave_solbes&credence.com
-21648
- Mowa - Mobile Wireless Applications Ltda.
- Rogério Corrêa
- rogerio.correa&mowa.com.br
-21649
- Access Prime
- John Caldwell
- john.caldwell&accessprime.com
-21650
- The Integer Group
- Danny Wang
- dwang&integerdenver.com
-21651
- FastSecure Technologies
- Naftali Fasten
- fastenn&earthlink.net
-21652
- programmercafe
- Stephen Suen (SUNRUJUN)
- stephen.suen&gmail.com
-21653
- Wirtualna Polska S.A.
- Michal Luczak
- micluc&wp-sa.pl
-21654
- netnea AG
- Jiri Dvorak
- dvorak&netnea.com
-21655
- Deadpixi.com
- Rob King
- numbersadmin&deadpixi.com
-21656
- Iskraemeco d.d.
- Milan Kozole
- milan.kozole&iskraemeco.si
-21657
- Abrantix AG
- Thomas Cerny
- thomas.cerny&abrantix.com
-21658
- Kashya
- Arye Shapiro
- aryes&kashya.com
-21659
- IsarNet AG
- Andreas Perthel
- andreas.perthel&isarnet.de
-21660
- ADAM SOFTWARE Ingenieurbuero
- Alfred Adam
- iana&adam-software.de
-21661
- Verilet Corporation
- Rod Macpherson
- rmacpherson&verilet.com
-21662
- IIJ Technology Inc.
- Shigeki Ohtsu
- ohtsu&iij-tech.co.jp
-21663
- Pazmany Peter Catholic University
- Miklos Pasztor
- pasztor&ppke.hu
-21664
- SAPEC (Sociedad Anonima de Productos Electronicos y de Comunicacion)
- Miguel Cristobal
- miancris&sapec.es
-21665
- VSB - Technical University of Ostrava
- Radomir Orkac
- oidmaster&vsb.cz
-21666
- ToutProgrammer.com
- Stéphane Vanpoperynghe
- webmaster&toutprogrammer.com
-21667
- Claymore Systems, Inc.
- Eric Rescorla
- ekr&rtfm.com
-21668
- one11.net
- Thomas House
- ixo&one11.net
-21669
- Multiband Inc
- Troy Nelson
- troy.nelson&multibandusa.com
-21670
- MM Invent
- Matthew Madderra
- mminvent&mminvent.com
-21671
- VSS monitoring Inc.
- Lucien Braava
- snmp&vssmonitoring.com
-21672
- Psyche Trading Company
- Peter Brooks
- peter&phmb.biz
-21673
- Bei Jing Polypegasus Technology Co., Ltd.
- Fan Hua
- fanhua&polypegasus.com
-21674
- Beijing TeleSystem Technologies Co., Ltd
- Zhou Feng Zhang
- z.f.zhang&telestek.com
-21675
- Compunicate Technologies, Inc.
- Qu Dongsheng
- dsqu&cti.com.cn
-21676
- SparkLAN Communications, Inc.
- Derek Chen
- derek.chen&sparklan.com
-21677
- Shanghai Huama Information Tech.Developmenet Co.,Ltd
- Tony d Lu
- tony.lu&71eq.com
-21678
- SCREEN SERVICE ITALIA S.p.A.
- Alberto Pavesi
- pavesi&screen.it
-21679
- Bundesagentur für Arbeit
- Peter Neuhauser
- IT-Systemhaus.zertifizierungsdienst&arbeitsagentur.de
-21680
- MeadWestvaco Intelligent Systems
- Susan Grauel
- susan.grauel&meadwestvaco.com
-21681
- WholeSecurity, Inc.
- Scott Wu
- scott.wu&wholesecurity.com
-21682
- ricilake.net
- Rici Lake
- rici&ricilake.net
-21683
- Wyrdwright, Inc.
- Barry King
- iana&nospam.wyrdwright.com
-21684
- wayneandersen.com
- Wayne Andersen
- powertoaster&hotmail.com
-21685
- eFunds Corp.
- Gerard Nadeau
- gerard_j_nadeau&efunds.com
-21686
- Kyung Gee Electronics Co., Ltd.
- Younkwan Lee
- eric&kgelect.com
-21687
- KIP America, Inc.
- Phil Shipley or Phil Bubin
- pshipley&kipamerica.com
-21688
- Serge Co.
- Serguei Safonov
- serge_safonov&yahoo.com
-21689
- easynet
- tim weickert
- tim.weickert&de.easynet.net
-21690
- David Bremner
- David Bremner
- dbremner&gmail.com
-21691
- gnuTechnologies
- Gary C. New
- garycnew&yahoo.com
-21692
- Coradir S.A.
- Norberto Nazabal
- nazabal&coradir.com.ar
-21693
- LINET Services GbR
- Moritz Bunkus
- m.bunkus&linet-services.de
-21694
- BeiJing Sina Information Technology Co.,Ltd
- Huang Dong
- huangdong&staff.sina.com.cn
-21695
- net-track GmbH
- Oliver Hitz
- oliver&net-track.ch
-21696
- KEYMILE AG
- Jon Duri Sarott
- jonduri.sarott&keymile.com
-21697
- Rivertree Networks Corp.
- Lee, Kwangsoo
- kslee&rivertreenet.com
-21698
- Field Boxmore Mareen
- Andy Van den Bergh
- andy.vandenbergh&fieldboxmore.com
-21699
- Belgocontrol
- Frederic Dombier
- Frederic_Dombier&belgocontrol.be
-21700
- Keller & Partner GmbH
- Markus Kniehl
- mkniehl&kup.de
-21701
- MOBOTIX AG
- Jochen Kunz
- Jochen.Kunz&mobotix.com
-21702
- EAPLV
- Dario Tongue
- dtongue&paris-lavillette.archi.fr
-21703
- Microhard Systems Inc.
- Lihong Lei
- llei&microhardcorp.com
-21704
- DPS-Promatic srl
- Massimo Portolani
- mxp&dpspro.com
-21705
- ARG Electrodesign Ltd
- Andy Frank (ext 772)
- Andy.Frank&arg.co.uk
-21706
- Dominion Resources, Inc.
- Thomas Froncek
- Thomas_J_Froncek&dom.com
-21707
- DECATHLON
- Thomas CORJON
- thomas.corjon&decathlon.com
-21708
- Netsweeper Inc.
- Lou Erdelyi
- support&netsweeper.com
-21709
- Procios Oy
- Petri Lammi
- petri.lammi&procios.com
-21710
- agentes AG
- Elmar Abeling
- elmar.abeling&agentes.dyndns.org
-21711
- MediSoft Egypt
- Sherif ElGhatrifi
- s.elghatrifi&medisoftegypt.com
-21712
- Caisse de Prévoyance Sociale
- Hoani CROSS
- hcross&cps.pf
-21713
- Vectorsite
- Tim Christensen
- astrocat123&vectorsite.com
-21714
- Cape Byron Imports & Wholesale Pty. Ltd.
- Karl J. Ots
- kjots&capebyronimports.com.au
-21715
- UFRJ
- Joao Carlos Peixoto
- peixoto&nce.ufrj.br
-21716
- hangzhou goldway information technology CO.,Ltd
- ruizhen han
- rzhan8403&hotmail.com
-21717
- NIPPON KOEI POWER SYSTEMS Co.,Ltd.
- Takayuki Ogawa
- ogawa-tk&n-koei.jp
-21718
- ReestrRN
- Alex Podchufarov
- apodchufarov&reestrrn.ru
-21719
- EmmeciSoft S.n.c.
- Mario Mariotti
- mario.mariotti&emmecisoft.it
-21720
- Microgaming Software Systems Limited
- Nico Snyman
- nicos&microgaming.com
-21721
- SERVICIO DE CERTIFICACION DE LOS REGISTRADORES
- Manuel Lorenzo
- manuel.lorenzo&scregistradores.com
-21722
- Marine Corps Community Services
- Spencer Hal Visick
- visicksh&usmc-mccs.org
-21723
- NTA CO.LTD.
- ARTUR PAWLATA
- office&nta.com.pl
-21724
- elementec Software & Consulting
- Dr. Peter Kullmann
- kullmann&elementec.de
-21725
- Olaf Huebner
- Olaf Huebner
- olaf.huebner&epost.de
-21726
- HappyComm
- Soo-Young, CHOI
- young&happycomm.com
-21727
- People's Bank of Georgia
- Alexander Nefedov
- nefedov&peobge.com
-21728
- Synaccess Networks, Inc.
- Shan Han
- shan&synaccess-net.com
-21729
- Somogy Informatika Kft.
- Andriko Tamas
- at&sominfo.hu
-21730
- stSoft
- BinDiPan
- bdpanx&yahoo.com.cn
-21731
- CryptoSoft, Ltd
- Dmitry Subbotin
- dsubboti&mail.ru
-21732
- Sparkasse Hanauerland
- Ralph Sester
- ralph.sester&sparkasse-kehl.de
-21733
- Altar Sp. z o.o.
- Robert Urbanczyk
- robert.urbanczyk&altar.com.pl
-21734
- APO Consortium
- David Reid
- reid&snmp.com
-21735
- Alber Inc.
- Eddie Deveau
- edeveau&alber.com
-21736
- IntelliTrans Ltd
- Sherril Noble
- sherril.noble&intellitrans.co.uk
-21737
- Gestweb S.p.A.
- Luigi Belli
- gigi&gestweb.com
-21738
- Hong Kong Education City Ltd
- Nicky Leung
- hostmaster&hkedcity.net
-21739
- Trusted Solutions s.r.o.
- Antonin Kral
- antonin.kral&trusted.cz
-21740
- Persystent Technology, Inc
- Thomas Sturgeon
- tom.sturgeon&persystent.com
-21741
- St. Margaret's Anglican Church
- Ryan Rempel
- ryanrempel&mac.com
-21742
- uWink Inc.
- Brian Yoder
- brian.yoder&uwink.com
-21743
- yasp.at
- hermann zirknitzer
- office&yasp.at
-21744
- BlackRock Financial Management
- Karl A Wieman
- kwieman&blackrock.com
-21745
- Arnprior KF
- Dennis Momy
- danzigger26&hotmail.com
-21746
- Cheyenne Networks Inc.
- George Azzi
- gazzi&cheyennenetworks.com
-21747
- Aldebaran Systems Ltd
- Mr Graham Bradshaw
- info&aldebaran.co.uk
-21748
- Iggesund Paperboard AB
- Lennart Mårtensson
- lennart.martensson&iggesundpaperboard.com
-21749
- EtherTek Circuits
- Dan Pattison
- sales&remotemonitoringsystems.ca
-21750
- Highbridge Capital Management, LLC
- Jonathan Zhukovsky
- systems&hcmny.com
-21751
- St. Thomas University
- Stephen Moss
- smoss&stu.ca
-21752
- Societe Cooperative Migros Neuchatel-Fribourg
- Roland Herrmann
- roland.herrmann&gmnefr.migros.ch
-21753
- ZKM - Zentrum f. Kunst und Medientechnologie, Karlsruhe
- Florian Krupicka
- florian&zkm.de
-21754
- Media-Com Sp. z o.o.
- Radoslaw Kojdecki
- radek&media-com.com.pl
-21755
- Collaborative Adaptive Sensing of the Atmosphere (CASA)
- Armen Babikyan
- armenb&cs.umass.edu
-21756
- SOFTEC sa
- Denis Gervalle
- support&softec.lu
-21757
- Digicadd Computacao Grafica LTDA
- Albener Pessoa
- albener&digicadd.com.br
-21758
- Slushpupie
- Jay Kline
- jay&slushpupie.com
-21759
- All China Federation Of Industry & Commmerce
- YanxiongWu
- wuyx&acfic.org.cn
-21760
- E-Access Broadband
- Hugh Hunkin
- admin&e-access.com.au
-21761
- Lübecker Hafen-Gesellschaft mbH
- Wulff, Erik
- erik.wulff&lhg-online.de
-21762
- Cornwall County Council
- Stewart Elkin
- selkin&cornwall.gov.uk
-21763
- Claranet
- David Freedman
- david.freedman&uk.clara.net
-21764
- Hill Systems LLC
- Charles Robert Hill
- robb&hill-systems.com
-21765
- The Lyarama Project
- Dong LI
- lyarama&gmail.com
-21766
- Imperial College London
- Stephen Gardner
- s.j.gardner&imperial.ac.uk
-21767
- Synarc, Inc.
- David M. Goldhaber
- David.Goldhaber&SYNARC.COM
-21768
- Inspired Broadcast Networks Ltd
- Steve Cotton
- operations&inspiredbroadcast.net
-21769
- M-Tech Information Technology, Inc.
- Idan Shoham
- iana&mtechit.com
-21770
- Wesaidso Software Engineering
- Frank Molder
- info&wesaidso.com
-21771
- Imolko C.A.
- Yohany Flores Suarez
- info&imolko.com
-21772
- SEB Eesti Ühispank AS
- Risto Laanoja
- taotlus&eyp.ee
-21773
- Choice Sourcing Pty
- Chris Ip
- chris&sourcing.co.za
-21774
- ECLASS
- Adriano Silvano
- asilvano&class.it
-21775
- Digital Imaging Solutions
- Larry Scarff
- larry&scarff.org
-21776
- TelcoBridges Inc.
- Carl Boulanger
- carl.boulanger&telcobridges.com
-21777
- Nitido Inc.
- Raymond Li
- raymond&nitido.com
-21778
- VA TECH ELIN EBG GmbH & Co
- Reinhold LEITNER
- Reinhold.Leitner&vatech-ict.com
-21779
- jade.net
- Tim Kehres
- tim&kehres.com
-21780
- ADURO d.o.o.
- Sinisa Domislovic
- oidadmin&aduro.hr
-21781
- Montelnor SCL
- Rafa Diaz
- montelnor&montelnor.com
-21782
- Chinasys Technologies Co.,Ltd.
- Cao Liquan
- caolq&chnsys.com.cn
-21783
- ANTGroup s.r.l
- Mario Duchi
- m.duchi&antgroup.it
-21784
- Calrec Audio Ltd
- Alison Jones
- alison.jones&calrec.com
-21785
- VÖB-Service GmbH
- Matthias Knop
- matthias.knop&voeb-service.de
-21786
- Boston.com
- William Tessier
- snmp&boston.com
-21787
- Qualitas, Inc.
- Bob Smith
- bsmith&sudleyplace.com
-21788
- Poindexter Systems, Inc.
- William Bates
- wbates&poindextersystems.com
-21789
- Cablevision - FiberTel
- Alberto Eugenio Garrido
- agarrido&fibertel.net.ar
-21790
- Obidobi Software
- Thomas Åhlén
- thomas&obidobi.net
-21791
- Wave-Tech, Inc.
- Marko Kranjcic
- marko&wave-tech.com
-21792
- BearingPoint, Inc.
- Bobby Brown
- bobby.brown&bearingpoint.com
-21793
- Kisoku Networking
- Mathieu Sauve-Frankel
- msf&kisoku.net
-21794
- Panthera Systems
- Daniel Baumann
- daniel-baumann&panthera-systems.net
-21795
- Integrated Decision Systems
- Terris Linenbach
- terris.linenbach&idsnet.com
-21796
- HW group s.r.o
- Jan Rehak
- Rehak&HW.cz
-21797
- Googgun Technologies Inc.
- Ahmed Masud
- masud&googgun.com
-21798
- Covergence, Inc.
- William Lynch
- wlynch&covergence.com
-21799
- CONSULTEC
- Rodolpho Testi
- rdtesti&yahoo.com.br
-21800
- Island Internet Services
- Hugh Blandford
- hugh&island.net.au
-21801
- California State University Los Angeles
- Henry Balta
- hbalta&cslanet.calstatela.edu
-21802
- Maternité Régionale A. Pinard
- Responsable Service Informatique
- e.desvigne&maternite.chu-nancy.fr
-21803
- Centrepoint Technologies
- Natalie Gagnon
- ngagnon&talkswitch.com
-21804
- 360degreeweb, Inc
- Frank Liu
- Frank.liu&360degreeweb.com.cn
-21805
- monkeyjr.com
- Henry WONG
- webmaster&monkeyjr.com
-21806
- Vitrado GmbH
- Christian Kalkhoff
- c.kalkhoff&vitrado.de
-21807
- TRW Engine Components
- David Blankenship
- David.Blankenship&trw.com
-21808
- Prairie Systems Inc.
- Michael Canann
- michaelc&prairiesys.com
-21809
- Campusware
- Robert Knuth
- bobbyk&campusware.com
-21810
- Yubivaza
- Laurent Fasnacht
- server-admin&o-t.ch
-21811
- Kalion
- Stefan Sinnige
- ssinnige&kalion.com.au
-21812
- Kofax Image Products
- Robert Macias
- robert_macias&kofax.com
-21813
- West Japan Railway Company
- Takashi Mori
- t-mori&jripv6.jp
-21814
- Booth Software Consulting
- Ken Booth
- kbooth&pipeline.com
-21815
- School of Veterinary Medicine Hannover
- Frank Hagenberg
- frank.hagenberg&tiho-hannover.de
-21816
- CDE nove tehnologije d.d.
- Gregor Brecko
- gregor&cde.si
-21817
- Gemini Storage Company
- Dan Zhou
- dzhou&geministorage.com
-21818
- CapTech Ventures, Inc.
- Jack Cox
- jcox&captechventures.com
-21819
- Guernsey Customs
- Tim Leung
- custcert01&badger.co.uk
-21820
- ChanneLynx LLC
- Russell Neville
- rneville&channelynx.com
-21821
- Colibre
- Francesco Chiechi
- francesco.chiechi&colibre.it
-21822
- Andrew Ducore, Independent Consultant
- Andrew Ducore
- aducore&wam.umd.edu
-21823
- MDS Caswell
- Timothy C. Schmid
- Tim_Schmid&mds-caswell.com
-21824
- Fortuitous Technologies Inc
- Philip Carinhas
- info&fortuitous.com
-21825
- asystec | Adolf Systemtechnik
- Dietmar Adolf
- info&asystec.net
-21826
- Metropipe Network Services Inc
- Kenny Kaputa
- k&metropipe.net
-21827
- ArcanaNetworks Inc.
- Unni Sreekumar
- unni&arcananet.com
-21828
- Meta Systems AS
- Bjørn Augestad
- boa&metasystems.no
-21829
- Ian A. Young
- Ian Young
- ian&iay.org.uk
-21830
- CrossTalk Göteborg AB
- Per Lindgren
- per.lindgren&crosstalk.se
-21831
- ClearOne Communications Inc.
- Derek Graham
- derek.graham&clearone.com
-21832
- LabOne Inc.
- Brian Whitehead
- brian.whitehead&labone.com
-21833
- Megas Media
- Alex Crivat
- alex.crivat&axu.rdsnet.ro
-21834
- Tufin Technologies
- Ruvi Kitov
- iana&tufin.com
-21835
- SESCAM - Servicio de Salud de Castilla la Mancha
- Ismael Moreno Fernández
- imoreno&sescam.jccm.es
-21836
- MRF Systems Ltd.
- M. White
- mw&mrfsys.co.uk
-21837
- DiGIR
- David A Vieglais
- vieglais&ku.edu
-21838
- LooseFlow Ltd
- K Loose
- iana&looseflow.com
-21839
- ALAXALA Networks Corporation
- Kenji HAYASHI
- khayashi&alaxala.com
-21840
- Hitachi IE Systems Co.,Ltd.
- Makoto Sano
- m-sano&hitachi-ie.jp
-21841
- Hochschule fuer Angewandte Wissenschaften Hamburg
- Andrea Albert
- andrea.albert&is.haw-hamburg.de
-21842
- Energy Technologies, Inc.
- Paul R. Coy
- snmpmanager&yahoo.com
-21843
- SHENZHEN MQ TECHNOLOGIES INDUSTRIAL CO., LTD.
- Gu Guanghui
- dulcetgu&126.com
-21844
- Durham School Services
- Jerry Rolo
- jrolo&durhamschoolservices.com
-21845
- Trium Sistemas Informaticos SL
- Sebastian Fernandez A.
- oid&triumsistemas.com
-21846
- Trium Systems SL
- Sebastian Fernandez A.
- oid&triumsystems.com
-21847
- The Scott Lawson Group Ltd.
- Zach Lawson
- zlawson&slgl.com
-21848
- SLACALEK
- Petr Slacalek
- slacalek&volny.cz
-21849
- Riggs Heinrich Media
- Paul Rhodes
- prhodes&golfconnoisseur.com
-21850
- Intaero Sdn Bhd
- Jeff Smart
- jeff&intaero.com
-21851
- MurrayLisook.com
- Murray Lisook
- murray&murraylisook.com
-21852
- Norkring AS
- Jan-Terje Larsen
- jan-terje.larsen&telenor.com
-21853
- Gesellschaft fuer Informations- und Datenverarbeitungs mbH
- Martin Beier
- M.Beier&gfi-bremen.de
-21854
- CollabNet, Inc.
- Tristan Horn
- tristan&collab.net
-21855
- Winterdale Computerdienste GbR
- Philipp Taprogge
- philipp.taprogge&winterdale.de
-21856
- Modulus Systems
- Arjun Sandhu
- contact&modulussystems.com
-21857
- Chaucer Press Limited
- Graham Fear
- shanon.mcneil&spicerspaper.co.nz
-21858
- A.P. Woodham Ltd.
- Peter Greenwood
- shanon.mcneil&spicerspaper.co.nz
-21859
- Leightons Paper & Printing Ltd.
- Craig Penn
- shanon.mcneil&spicerspaper.co.nz
-21860
- Harrah's Entertainment, Inc.
- Dean Benz
- dbenz&harrahs.com
-21861
- Mobile Cohesion
- Maria McCafferty
- maria.mccafferty&mobilecohesion.com
-21862
- Alcasat
- Nicolas Hennion
- hennion&alcasat.net
-21863
- INFOTEL
- Patrick Allouche
- patrick.allouche&infotel.com
-21864
- ibte
- Gerhard Thimm
- admin&ibte.ch
-21865
- Unitrends Software Corp
- Mark Phillippi
- markp&unitrends.com
-21866
- FMAudit, LLC.
- Kevin Tetu
- kevint&gttechonline.com
-21867
- ESI-HEB
- marcel van haelen
- mvanhaelen&heb.be
-21868
- Highmark Inc.
- Linda Betts
- linda.betts&highmark.com
-21869
- CUI Inc (formerly 'Tectrol Inc')
- Joseph Abediny
- jabediny&cui.com
-21870
- United Cerebral Palsy of Greater Chicago
- John Leonard
- jleonard&ucpnet.org
-21871
- Datastream Systems, Inc.
- Mike Savage
- darth.savage&gmail.com
-21872
- WICEN (NSW) Inc
- Dave Horsfall
- dave&horsfall.org
-21873
- XFI Corporation
- Dr. Saiid Paryavi
- saiid&xfi.com
-21874
- Moore Gallagher ltd.
- Chris Griffith
- shanon.mcneil&spicerspaper.co.nz
-21875
- macfadden.org
- Michael MacFadden
- mike&macfadden.org
-21876
- metabit
- J. Wilkes
- iana.businesscontact&metabit.com
-21877
- Multi Skilled Resources Australia
- Jason Cox
- jason.cox&multiskilled.com.au
-21878
- MedStar Health
- Jim Kuhar
- Jim.L.Kuhar&MedStar.net
-21879
- Associazione Culturale Inventati
- Paolo De Rosa
- pdr&inventati.info
-21880
- Australian Experimental High Energy Physics Group
- Lyle Winton
- winton&physics.unimelb.edu.au
-21881
- Milom, Inc.
- Michael Milom
- msmilom&milom.com
-21882
- Justsystem Corp.
- Yoshihiro Suzuki
- yoshihiro_suzuki&justsystem.co.jp
-21883
- Brain ltd.
- jirong lin
- jirong&seed.net.tw
-21884
- W. Schneider+Co AG
- Silvan Maechler
- admin&wschneider.com
-21885
- Ericsson Mobile Platforms AB
- Per Ståhl
- per.stahl&ericsson.com
-21886
- Newel Informatique
- Amir Hajjam
- iana&newel.net
-21887
- Funkwerk AG, Traffic & Control Communication, Kiel (formerly 'Funkwerk Information Technologies Kiel GmbH')
- Ruediger Hinze
- ruediger.hinze&funkwerk-it.com
-21888
- Content Management License Administrator
- John Hoy
- admin&cm-la.com
-21889
- Acsis, Inc.
- Paul Cleary
- pcleary&acsisinc.com
-21890
- GRIB
- jorge naranjo
- jnaranjo&imim.es
-21891
- Tibco Telecom Reseau
- Moureaux
- cmoureaux&tibco.fr
-21892
- Ringwald Mikroelektronik GmbH
- Armin Ringwald
- a.ringwald&ringwald.de
-21893
- phil cornes
- phil cornes
- phil.cornes&gmail.com
-21894
- ISABEL S.A.
- trust solutions (Mr. Huygens Frédéric)
- trustsolutions&isabel.be
-21895
- Delta-Soft Ltd
- Alexey Slynko
- slynko&tronet.ru
-21896
- Niederrhein University of Applied Sciences
- Franz-Josef Mueller
- franz-josef.mueller&hs-niederrhein.de
-21897
- i-CABLE Network Limited
- Leo Chan
- leo&hkcable.com.hk
-21898
- SvamberkNET, s.r.o.
- Jakub Vlasek
- vlasek&svamberk.net
-21899
- Cape City Command, LLC
- Bill Mott
- bmott&capecitycommand.com
-21900
- Danacal Ltd.
- Alister Sibbald
- enquiries&danacal.com
-21901
- Millward Brown UK Limited
- Kevin Spicer
- kevin.spicer&uk.millwardbrown.com
-21902
- BAJM Internet
- Max Wrzesinski
- mcson&p2.bajm.com.pl
-21903
- NetServices LLC
- Dave Rutledge
- daver&netsrvcs.com
-21904
- Yoshida's Inc.
- Gregg Berkholtz
- hostmaster&yoshida.com
-21905
- Leibniz-Institut fuer Meereswissenschaften
- Dr. Ruediger Kunze
- rkunze&ifm-geomar.de
-21906
- March Hare Software Ltd.
- Tony Hoyle
- tony.hoyle&march-hare.com
-21907
- Wohnprojekt Schellingstrasse GmbH
- Andreas Mueller
- andreas&schellingstrasse.de
-21908
- NexaSoft Inc.
- Han Jae Sung
- castle&nexasoft.co.kr
-21909
- Chaos Limited, LLC
- AC Capehart
- oidmaster&chaoslimited.com
-21910
- Electrocomponentes S.A.
- Antonio Pavanetto
- app&electrocomponentes.com
-21911
- Trusted Computing Group
- Ned Smith
- admin&trustedcomputinggroup.org
-21912
- Priva Technologies, Inc.
- Roger Brandt
- roger.brandt&priva-tech.com
-21913
- dop intelligence
- Matthew Ma
- mma&bluejaynetworks.com
-21914
- Networx.AT - busta & neumayr oeg
- BUSTA Oliver
- Admin&Networx.AT
-21915
- BitPusher, LLC
- Michael Halligan
- michael&bitpusher.com
-21916
- Tehna
- Denis Kochmashev
- iana&tehna.ru
-21917
- Staatliche Berufsschule I Bayreuth
- Joachim Woelk
- joachim.woelk&bs1-bt.de
-21918
- Ideas to Interconnect B.V.
- R.B. Gloudemans
- r.gloudemans&i-to-i.nl
-21919
- Clearwire, Inc.
- Katherine Beal
- katherine.beal&clearwire.com
-21920
- Cipherium Systems Co., Ltd.
- Cadon Sheu
- cadon.sheu&cipherium.com.tw
-21921
- Inspiration Matters Ltd
- Bryan Crotaz
- bryan&inspirationmatters.com
-21922
- TIE - Tecnologias de Integração Empresarial, Lda.
- Antonio Sargento
- antonio.sargento&tie.co.pt
-21923
- Bowater, Inc.
- Charles Bryson
- brysonca&bowater.com
-21924
- Adam Pordzik
- Adam Pordzik
- adampordzik&gmx.de
-21925
- RTP Network Services, Inc
- Joe A. Williams
- jwianaorg3_re-move_me&rtpnet.net
-21926
- MedOrder, Inc.
- Jake Cormier
- jcormier&medorder.com
-21927
- intralinux
- Michael Hoffmeister
- m.hoffmeister&mb-ho.de
-21928
- Renaissance Computing Institute
- Brad Viviano
- rciadmin&renci.org
-21929
- Netikos Finland Oy
- Veikko Kehä
- veikko.keha&netikos.fi
-21930
- Prihateam Networks Finland Ltd
- Jarkko Priha
- priha&prihateam.fi
-21931
- SE46 AB
- Olle Segerdahl
- olle&se46.se
-21932
- Tor.AT - Netzwerke-Server-Sicherheit
- MERIGHI Marcus
- McMer&Tor.AT
-21933
- Jamie Thompson
- Jamie Thompson
- iana&jamie-thompson.co.uk
-21934
- FIlesX
- Frank Jablonski
- fjablonski&filesx.com
-21935
- Sigtec LTD
- Malcolm Stead
- malcolm&sigtec.ie
-21936
- Senforce Technologies, Inc.
- Peter K. Boucher
- pboucher&senforce.com
-21937
- Ezrez Software, Inc.
- Joseph Phillips
- dphillips&ezrez.com
-21938
- Radio Muzyka Fakty, Sp. z o.o.
- Lukasz Grochal
- hostmaster+iana&rmf.pl
-21939
- HYTEC GmbH
- Janis Kruse
- info&hytec.de
-21940
- Enatel Ltd
- Arthur de Beun
- arthur.debeun&enatel.net
-21941
- Data Return, LLC
- Matt Springfield
- matt.springfield&datareturn.com
-21942
- Rubicon Software Ltd
- Philip Ross
- pross&rsuk.com
-21943
- Uni-Sommerfest e.V.
- Claus Faerber
- claus.faerber&uni-sommerfest.de
-21944
- Blitzen Networks
- Steve Lee
- stevelee&blitzen.net
-21945
- Kerberos d.o.o.
- Tomislav Vrebac
- tomislav.vrebac&kerberos.hr
-21946
- University of Liverpool, Department of Electrical Engineering
- Lindsay Jack
- l.b.jack&liv.ac.uk
-21947
- TintaDigital, Soluções em Tecnologias de Informação, Lda.
- José Carlos Correia
- jcorreia&tintadigital.com
-21948
- TW TeamWare s.r.l.
- Andrea Giardini
- andrea.giardini&teamware.it
-21949
- Istituto Nazionale di Geofisica e Vulcanologia
- Stefano Pintore
- pintore&ingv.it
-21950
- Open Consultants
- Jason Walker
- jwalker&openconsultants.net
-21951
- Katun Corporation
- Netmaster - I.S. Department
- netmaster&katun.com
-21952
- Crescent Business, Inc.
- Richard Moon
- richardjmoon&hotmail.com
-21953
- Business Computer Maintenance Limited
- Ben Major
- ben.major&bcm-uk.com
-21954
- Transatlantic Diagnostics LLC
- Michael Abramoff
- michael-abramoff&uiowa.edu
-21955
- CONTROL SYSTEMS Srl
- Gianfranco Cortellazzi
- gf.cortellazzi&controlsystems-srl.it
-21956
- Megapath Cloud Company LLC
- Hugo Aviles
- syseng&megapath.com
-21957
- Sealed Air (NZ) ltd
- Anu Hedge
- shanon.mcneil&spicerspaper.co.nz
-21958
- Thermakraft IndustriesNZ Ltd.
- Bruce Pitcaithly
- shanon.mcneil&spicerspaper.co.nz
-21959
- P J Papers ltd.
- Jack Hayward
- shanon.mcneil&spicerspaper.co.nz
-21960
- Legend Communications plc
- David Baggaley
- david.baggaley&legendplc.com
-21961
- Exeo Systems
- Claude Mally
- claude.mally&exeotechnologies.com
-21962
- Nextel Communications Inc.
- Avis Ng
- avis.ng&nextel.com
-21963
- Obeco GmbH
- Joachim Berger
- joachim.berger&obeco.de
-21964
- Nesym Consulting Srl
- Donadel Luca
- luca.donadel&nesym.com
-21965
- LTLab
- Vesselin Tabakov
- ltlab&bulgaria.com
-21966
- Cooperativa Obrera Ltda.
- Gabriel Gomiz
- gomita&cooperativaobrera.com.ar
-21967
- Invento Networks, Inc.
- Dave Bartolini
- dbartolini&inventonetworks.com
-21968
- Food Services of America
- John Beard
- john.beard&fsafood.com
-21969
- Kernway Technology Co., Ltd
- Austin Shan
- austin&kernway.com
-21970
- AHTS
- Andrew Hosie
- a.hosie&ahts.com.au
-21971
- Kisters AG
- Bernd Kisters
- bernd.kisters&kisters.de
-21972
- 1mage Software Inc.
- Dale Dillard
- dadillard&1mage.com
-21973
- CaribbeanClub
- Dorian
- grey&kk.kiev.ua
-21974
- Boris Kulig EDV und Statistik Beratung
- Boris Kulig
- Boris.Kulig&lycos.de
-21975
- Infraserv Gmbh & Co Hoechst KG
- Patrik Toennishoff
- Patrik.Toennishoff&Infraserv.com
-21976
- Roberts Wesleyan College
- James Field
- fieldj&roberts.edu
-21977
- The Sage Group PLC
- David Rinker
- david.rinker&sage.com
-21978
- Fluid, Inc.
- Mark Belanger
- it&fluid.com
-21979
- fks BVBA
- Luk Knapen
- luk.knapen&fks.be
-21980
- Enran Telecom
- Andrey Orekhov
- korj&bt-entel.kiev.ua
-21981
- Spiderbox P/L
- Damien
- damiencahill&spiderbox.com.au
-21982
- With Mobile Technology Co., Ltd.
- Lee Myoung Oh
- molee&with-m.co.kr
-21983
- Terrace technology, Inc.
- SpaceLee
- spacelee&terracetech.com
-21984
- Viswis, Inc.
- Harry Chang
- harryc&viswis.com
-21985
- Server-Center, JSC
- Varaksa Andrey
- andry&atlas-2.ru
-21986
- Shinnyo-en Buddhist Order Co.
- K Koizumi
- f-claire&fjb.fujitsu.com
-21987
- Bugs Inc.
- RL Vennik
- ramon&vennik.com
-21988
- ARENAL
- Thierry WRZYSZCZ
- thierryw&arenal.fr
-21989
- Connex.cc DI Hadek GmbH
- Markus Fruehwirth
- admin&connex.cc
-21990
- Universidad Autónoma de Baja California Sur
- Guillermo González
- memog&uabcs.mx
-21991
- char
- Andrei RUSAN
- char&tuiasi.ro
-21992
- Central Command Inc.
- Keith Peer
- kpeer&centralcommand.com
-21993
- girrulat.de
- Sascha Girrulat
- admin&girrulat.de
-21994
- Norfolk Public Schools
- Adam Crosby
- iana&nps.k12.va.us
-21995
- Magyar Elektronikus Aláírás Szövetség / Hungarian Association for Electronic
-Signature
- MELASZ Elnökség
- elnokseg&melasz.hu
-21996
- crocobox.org
- Mickael Guerin
- kael&xeberon.net
-21997
- PowerStar Ltd.
- Istvan Pal
- pal.i&mail.powerstar.hu
-21998
- Tiani-Spirit
- Tiani Martin
- office&tiani-spirit.com
-21999
- PLUM Computer Consulting, Inc.
- Andrew Ettinger
- aettinger&plumcc.com
-22000
- Pacific Laminations Co. limited
- John Jenkins
- shanon.mcneil&spicerspaper.co.nz
-22001
- Fachhochschule Esslingen - Hochschule fuer Technik
- Martin Schmid
- mars&fht-esslingen.de
-22002
- Michael Breuer
- Michael Breuer
- mike.breuer&gmail.com
-22003
- mst
- Harald Gröne
- h.groene&gmx.net
-22004
- X-MD
- Andreas Balg
- balg&x-md.de
-22005
- GE Healthcare - IT
- Mark Niggemann
- mark.niggemann&ge.com
-22006
- AREVA T&D
- VIANNEY VANNSON
- vianney.vannson&areva-td.com
-22007
- WinWholesale Inc.
- Michael Roe
- mroe&winwholesale.com
-22008
- pld-sparc64
- Pawe? Boguszewski
- pawel&pld-sparc64.org
-22009
- IP-LABEL
- ORTOLAN Lionel
- lortolan&ip-label.net
-22010
- Tranfa Optic Telecommunications Co., Ltd.
- Yang bing
- yangbing&xunfeng.com
-22011
- CORE MICRO SYSTEMS INC.
- Mitsuo Asai
- asai&cmsinc.co.jp
-22012
- silkroadtaiwan,Inc
- srtuser
- jaska&silkroadtaiwan.com
-22013
- SGDN
- DCSSI/CFSSI
- cfssi&sgdn.pm.gouv.fr
-22014
- China Beijing Broada Digital Technology Co.,Ltd
- liudonghai(Eric Liu)
- liudh&broada.com.cn
-22015
- BanianTech Co.,Ltd
- Techie Yang
- techieyang&baniantech.com
-22016
- RackWatch LLC
- Larry Paniccia
- lpaniccia&rackwatch.net
-22017
- Claritas, Inc.
- John Hoffman
- jhoffman&claritas.com
-22018
- RedIce SA
- Christian Charette
- chcharette&yahoo.com
-22019
- Tutus Data AB
- Per Holmer
- per&tutus.se
-22020
- CoreTEC GmbH
- Christian Mock
- cm+oid&coretec.at
-22021
- WestCall Ltd
- Stas Vitkovsky
- admin&westcall.net
-22022
- DeusXMachina
- Tim Nicholls
- tim&deusxmachina.com
-22023
- Schaly
- Wolf-Agathon Schaly
- schaly_wolf-agathon&t-online.de
-22024
- Inoi
- Tommi Virtanen
- tommi.virtanen&inoi.fi
-22025
- ELTI d.o.o.
- Gorazd Kuhar
- gorazd.kuhar&elti.com
-22026
- Texas State Technical College System
- Sammy Rhodes
- sammy.rhodes&systems.tstc.edu
-22027
- Rock Mobile Corporation
- Charmin Hsieh
- register&rockmobile.com
-22028
- Hauser/Flimp Programming
- Todd Hauser
- todd&dvnt.com
-22029
- ActiveLive Technologies LLC
- Joseph Kwok
- joseph_k&pacbell.net
-22030
- Kign Foundation
- Balazs Lengyak
- ldap&kign.org
-22031
- Lattice Semiconductor Corporation
- Jim Lewinson
- hostmaster&latticesemi.com
-22032
- Actelion Pharmaceuticals Ltd.
- Lionel Cottin
- lionel.cottin&actelion.com
-22033
- Cynical Networks
- Andrew Silliker
- silliker&cynical.net
-22034
- joztoz net
- Roy Ledochowski
- rledousa&yahoo.com
-22035
- ECT News Network, Inc.
- Daniel Bohling
- sysadmin&ectnews.com
-22036
- Tapsell-Ferrier Limited
- Nic Ferrier
- nferrier&tapsellferrier.co.uk
-22037
- Elektrownia Be³chatów S.A.
- Zbigniew Iwaniuk
- zbigniew.iwaniuk&elb.pl
-22038
- Kommune42
- Matthias Muenzner
- wizz&kommune42.owl.de
-22039
- Mathias Wohlfarth EDV-Beratung
- Mathias.Wohlfarth
- Mathias.Wohlfarth&mw-eb.de
-22040
- STATCON B SCHAEFER
- Bertram Schaefer
- consult&statcon.de
-22041
- Generalstaatsanwaltschaft Berlin
- Olaf Huebner
- IT-Referat&gsta.verwalt-berlin.de
-22042
- GITEM
- Olivier RITEAU
- oriteau&gitem.fr
-22043
- Land-of-uz.net
- Tom Anderson
- tpa10&speakeasy.net
-22044
- Moviltek, Inc.
- Alejandro Rapoport
- arapoport&moviltek.com
-22045
- Electrosystems Inc.
- Maxim Kuznetsov
- k.max&power.rus.net
-22046
- Planecom s.r.l.
- Andrea Colleoni
- tech&planecom.it
-22047
- Qascom S.r.l.
- Chris Wullems
- c.wullems&qascom.com
-22048
- CAJA DE AHORROS EL MONTE
- IVAN PAZ CROS
- ipaz&elmonte.es
-22049
- Metro Group Information Technologies
- Mr. Guido Schroers
- guido.schroers&mgi.de
-22050
- COPA-DATA GmbH
- jens reindl
- jensr&copadata.at
-22051
- SavageS Net
- Shaun Savage
- savages&savages.net
-22052
- Rising Technology Co., Ltd.
- Aijun Jiang
- jiangaj&hotmail.com
-22053
- Neptune Gaming
- Alex Kehr
- helloimslinky&gmail.com
-22054
- Three Rings Design, Inc.
- Gregory Sutter
- admin+iana&threerings.net
-22055
- HighSpeed America, Inc.
- Jonathan Allen
- jallen&hsamerica.com
-22056
- Prefeitura da Cidade do Rio de Janeiro
- Max Moura Wolosker
- mwolosker&rio.rj.gov.br
-22057
- New Signature
- Jason Senich
- jsenich&newsignature.com
-22058
- Danaher Power Solutions
- Gene Marsh
- marshm&anycast.net
-22059
- Corp. Hostarica
- Jose Hidalgo
- jose&hostarica.com
-22060
- Labcom Sistemas Ltda
- Armando Drummond
- armando.drummond&labcomsistemas.com.br
-22061
- Liquid Systems
- Marc MacIntyre
- marcmac&liquidsys.com
-22062
- G2 Switchworks
- Michael Sokolewicz
- msokol&g2switchworks.com
-22063
- CIFE - Consorcio de Intermediación de Facturas Electrónicas
- Florencio Díaz Vilches
- fdiaz&anf.es
-22064
- Landeskreditbank Baden-Württemberg (L-Bank)
- Rolf Mayer
- rolf.mayer&l-bank.de
-22065
- Mobiltel AD
- Naiden Nedelchev
- n.nedelchev&mobiltel.bg
-22066
- Mobitex Technology AB
- Johanna Karlsson
- johanna.karlsson&mobitex.com
-22067
- ENSEA
- Jean-Paul Bachmann
- bachmann&ensea.fr
-22068
- Tai Liang Chemical Corporation
- Kumphanart Dansiri
- kumphanartd&tailiang.co.th
-22069
- Deuromedia Technologies
- Manfred Petz
- pm&deuromedia.at
-22070
- LMR Robosistic Ltd. Co.
- Guanxun Mu
- lyxmoo&gmail.com
-22071
- Associazione culturale Investici
- Antonio Laquaglia
- phasa&inventati.org
-22072
- EDS
- Dan Gonos
- dan.gonos&eds.com
-22073
- Cerantus Technologies
- Michael Wiseman
- mwiseman&cerantus.com
-22074
- Vibrant Media Ltd
- Toby Doig
- toby&vibrantmedia.com
-22075
- Global Technical Engineering Solutions Inc.
- Ken Kupsch
- gtesit&gtesinc.com
-22076
- Televisio de Catalunya, s.a.
- Jesus M. Garcia Segarra
- jgarcia.q&tvcatalunya.com
-22077
- Smiling Screens Inc.
- Scott Stein
- scottstein&gmail.com
-22078
- Burlington Coat Factory Warehouse
- Matt Fahrner
- matt.fahrner&coat.com
-22079
- Matterform Media
- Daniel Lyons
- webmaster&matterform.com
-22080
- YACAST
- LACOSTE Ludovic
- llacoste&yacast.net
-22081
- Guyton Networks
- Nat Guyton
- iana&guyton.net
-22082
- IBM WPC Lab
- Roy Ledochowski
- rledo&us.ibm.com
-22083
- okkernoot.net
- N. Th. Roosen
- iana&okkernoot.net
-22084
- Industec Industria Metalurgica Ltda.
- Edmundo Valle Neto
- cpd&industec.com.br
-22085
- CIDE Consorcio para la Interoperabilidad de Documentos Electrónicos
- Florencio Díaz Vilches
- fdiaz&anf.es
-22086
- Paul Poeltner
- Paul Poeltner
- paul.poeltner&emp.co.at
-22087
- Invelica GmbH
- Bodo Rüskamp
- br&invelica.com
-22088
- Alpine-Energie Holding AG
- Silvia Schmid
- edv&alpine-energie.de
-22089
- Paedagogische Hochschule Zentralschweiz
- Urs-Jakob Rueetschi
- urs-jakob.rueetschi&phz.ch
-22090
- GCommerce Inc.
- Ryan Mentzer
- rmentzer&gcommerceinc.com
-22091
- MATRICS COMMUNICATIONS
- Dominique Jeannerod
- dominique.jeannerod&matrics.fr
-22092
- Mazda Motor Europe GmbH
- Karl Seidel
- KSEIDEL&MAZDAEUR.COM
-22093
- Software Systems
- Pekka Rossi
- pekka&rossi.se
-22094
- Pulse Entertainment
- Michael Tan
- mtan&pulse3d.com
-22095
- Baltic Online Computer GmbH
- Dagobert Michelsen
- dam&baltic-online.de
-22096
- Image Project Inc.
- Iavor Marinov
- mailroom&websitepulse.com
-22097
- B&W Fahrzeugentwicklung GmbH
- Andre Geiger
- andre.geiger&b-w-fahrzeugentwicklung.de
-22098
- CHEN
- Christof Chen
- oidadmin&chen.de
-22099
- EKF Elektronik &- Messtechnik GmbH
- Andreas Schockenhoff
- asc&ekf.de
-22100
- Swisscom Fixnet AG
- Andrejevic Andrej
- andrej.andrejevic&swisscom.com
-22101
- Udo Meng GmbH
- Udo Meng
- office&udo-meng.de
-22102
- KIM Systemhaus GmbH
- Jens Wegener
- jwegener&kim-consult.de
-22103
- Paynet Ltd
- Ron Webb
- webbr&paynet.co.ke
-22104
- YesTurnkey Technology, Inc.
- Yuh-Rong Leu
- yrleu&yahoo.com.tw
-22105
- Central Visayas Information Sharing Network Foundation Inc.
- Ivan R. Sy Jr.
- ivanjr&serv01.secure.net.ph
-22106
- Vodafone SDEC
- Jeff Lin
- jeff.lin&vodafone.com
-22107
- The Florida Lottery
- Carl Cocroft
- cocroftc&flalottery.com
-22108
- Application Science and Technology
- Frederick C. Druseikis
- fdruseikis&team-ast.com
-22109
- Beuth Hochschule Berlin / University of Applied Sciences
- Harald Wackernagel
- hrz&beuth-hochschule.de
-22110
- Airedale International Air Conditioning Ltd
- Controls Department
- controls&airedale.com
-22111
- Chilibyte Oy
- Bjorn Andersson
- bjorn.andersson&chilibyte.com
-22112
- Vigil Security, LLC
- Russell Housley
- housley&vigilsec.com
-22113
- Gigabeam
- Robert Sutherland
- bob.sutherland&gigabeam.com
-22114
- Battle.net Underground
- Scott Anderson
- camel&clanbnu.net
-22115
- Netflexity, Ltd
- Max Fedorov
- max&netflexity.com
-22116
- Queryus
- Ben van Veen
- info&queryus.nl
-22117
- Epiq Electronic Assembly Ltd.
- Anton Stamenov
- ais&epiq.com
-22118
- Advance America
- Robert Long
- rlong&advanceamerica.net
-22119
- GBST Holdings
- Damien Moloney
- Damien.Moloney&gbst.com
-22120
- datastacks.com
- Phillip Jones
- iana&dsmouse.net
-22121
- Krasnoyarsk State Pedagogical University
- Eugene Konev
- ejka&imfi.kspu.ru
-22122
- ESOLUTIONPROVIDERS
- MANISH DHAWAN
- manish_dhawan&vsnl.com
-22123
- Unimas Systems, Corp.
- Miles Zhou
- zzh&unimassystem.com
-22124
- Networks & More! Inc.
- James Punderson
- jpunderson&k12usa.com
-22125
- Sierra Video Systems Inc.
- Michael F. Hagen
- MHagen&SierraVideo.com
-22126
- AVONET, s.r.o.
- Technical support
- support&avonet.cz
-22127
- Delvos
- Elmar Delvos
- elmar&delvos.net
-22128
- RBC Capital Markets, Sydney
- Wai- Kiong Choy
- waikiong.choy&rbccm.com
-22129
- AfterHours Upgrades
- Paul Butler
- pbutler&afterhoursupgrades.com
-22130
- Vivatas, Inc
- Patrick Jennings
- iana-info&vivatas.com
-22131
- Technical Management System GmbH
- Thomas Lerchner
- t.lerchner&t-m-s.at
-22132
- Mediasyscom SAS
- Mr Emmanuel BASSE
- emmanuel.basse&mediasyscom.com
-22133
- UWIC
- Mark John
- majohn&uwic.ac.uk
-22134
- Eminds AB
- Johan Ekblad
- jka&eminds.se
-22135
- Sentiva Innovation AB
- Torsten Jacobsson
- torsten&sentiva.se
-22136
- outsmart Ltd.
- ofer cohen
- ofer.cohen&smart-ss7.com
-22137
- Ivosh, s.r.o.
- Ivo Raisr
- ivosh&ivosh.net
-22138
- ATS-KONVERS Ltd.
- Alexandr Malikov
- convers&pskov.ru
-22139
- Kurchatov Institute Grid Deployment
- Eygene Ryabinkin
- rea&mbslab.kiae.ru
-22140
- Volker Scheuber
- Volker Scheuber
- vscheuber&gmail.com
-22141
- ProCom GmbH
- Torsten Eicker
- er&procom.de
-22142
- Interferenza s.r.l.
- Giancarlo Russo
- g.russo&interferenza.com
-22143
- Steatite Ltd
- Gary Parfrey
- sales&steatite.co.uk
-22144
- InfoNotary Ltd.
- Tania Javasheva
- tjavasheva&infonotary.com
-22145
- ViDiSys GmbH
- Jürgen PETZOLD
- petzold&vidisys.de
-22146
- Dpt. of Philosophy, Utrecht University
- Jeroen Scheerder
- js&phil.uu.nl
-22147
- Allpoint Security Ltd.
- Barry Seward
- barry&allpoint-security.com
-22148
- Venda Ltd
- Radoslaw Zasiadczuk
- all-sys&venda.com
-22149
- Systemhaus Bad Waldsee
- Sven Hillebrecht
- sven.hillebrecht&all-for-one.de
-22150
- Wettern Network Solutions
- Joern Wettern
- administrator&wettern.com
-22151
- Neotronic s.r.l.
- Marco Finelli
- m.finelli&neotronic.it
-22152
- CipherSec SPRL
- Frédéric d' Huart
- fdh&ciphersec.com
-22153
- Viveon AG
- Axel Franz
- axel.franz&viveon.de
-22154
- Jotron Electronics a.s.
- Otto Holm
- otto.holm&jotron.com
-22155
- Pontificia Universita Santa Croce
- Jesus Toribio
- toribio&pusc.it
-22156
- Dynamit Nobel Kunststoff GmbH
- Martin Latteier
- helpdesk&dnk.de
-22157
- SLU
- Martin Norrsken
- martin.norrsken&adm.slu.se
-22158
- Resolv SARL
- Xavier COLLET-MATRAT
- contact&resolv.fr
-22159
- EPIN Technologies (China), Ltd.
- Ruili Li
- ruili&epintech.com.cn
-22160
- RW Comercio e Servicos Ltda.
- Wagner Sartori Junior
- wsartori&gruporw.com.br
-22161
- John Wiggins
- John Wiggins
- john.e.wiggins&gmail.com
-22162
- Beyond Disability, Inc.
- Richard Stubbs
- rdavidson&bdi.org.au
-22163
- Ricoh Printing Systems, Ltd.
- Masaki Masubuchi
- masaki-masubuchi&rps.ricoh.co.jp
-22164
- Cambridge Silicon Radio Limited
- Alexander Thoukydides
- alex.thoukydides&csr.com
-22165
- Web Service Solutions, Inc.
- Mark Swanson
- mark&ScheduleWorld.com
-22166
- Ocean Broadband Networks
- shirley hou
- shirley.hou&obroadband.com
-22167
- nologic.org
- Ciaran Johnston
- admin&nologic.org
-22168
- Crown College
- Aaron Taylor
- admin&crowncollege.edu
-22169
- NetEngine, Inc.
- David Lee
- dlee&netengine1.com
-22170
- FXCM
- Mark Lin
- mlin&fxcm.com
-22171
- CeSigma - Signals & Systems
- Dr Gilles NOLIBE
- gno&cesigma.com
-22172
- HaCon Ingenieurgesellschaft mbH
- Werner Sommerfeld
- wso&hacon.de
-22173
- Flex Engineering
- Sergei Rusakov
- sergeir&termos.ru
-22174
- Virtual Trip Ltd.
- Vangelis Mihalopoulos
- admin&vtrip.net
-22175
- Mitron Oy
- Jarmo Ryynänen
- jarmo.ryynanen&mitron.fi
-22176
- asknet AG
- Guillaume Canavaggio
- guillaume.canavaggio&asknet.de
-22177
- DFN-Verein
- Marcus Pattloch
- oidmaster&dfn.de
-22178
- Kurs LLC
- Andrey Komyagin
- admin&netmechanica.com
-22179
- Otsuka Corporation
- TAKANORI KURAHASHI
- noc&aics.ad.jp
-22180
- INSCAPE DATA CORPORATION
- Richard Ho
- richard.ho&inscapedata.com
-22181
- Avision Inc.
- Ming-hsien Wu
- hankwu&avision.com.tw
-22182
- Cascadia BHC
- Shaun Savage
- savages&cascadiabhc.org
-22183
- Cylant, Inc.
- Brad Cervenak
- snmp&cylant.com
-22184
- 21st Century Software Inc.
- John Antypas
- ja&s21.com
-22185
- eScholar LLC
- Stuart Colvin
- scolvin&escholar.com
-22186
- Marketing Resource Consultants, Inc.
- Adam Gutcheon
- agutcheon&hartfordmag.com
-22187
- Symphoniq
- Arthur Chuang
- awc&symphoniq.com
-22188
- Correctime ltd
- Adam Tresch
- adam.tresch&correctime.hu
-22189
- Star Technologies, LLC
- Tom Willett
- tom&startechllc.net
-22190
- NetEffect, Inc.
- John Lacombe
- john.lacombe&neteffect.com
-22191
- Bismarck Public Schools
- Michael Cowart
- cowartm&bsd-lions.net
-22192
- Pictou Regional Development Commission
- Libo Feng
- lfeng&prdc.com
-22193
- Computer Information Systems Ltd., Brest
- Slava Zanko
- slavaz&cis.by
-22194
- Orion Systems Inc
- Hal Gordon
- hgordon&orionsystemsinc.net
-22195
- NeoTIP SA
- Frédéric FELTEN
- info&neotip.com
-22196
- Vistek Electronics Ltd
- Nick Liebmann
- nick.liebmann&vistek.tv
-22197
- SOFTBANK BB Corp.
- Satoru Tsurumaki
- sbbrd-smi&bb.softbank.co.jp
-22198
- University of St. Gallen
- Franz Fitz
- franz.fitz&unisg.ch
-22199
- United Arab Emirates University
- Elsayed Hemayed
- ehemayed&uaeu.ac.ae
-22200
- Sistemas Techniclite. C.A.
- Ettore Pelliccioni
- ettore.pelliccioni&techniclite.com
-22201
- Research Center of NetWork Techology Nanjing University Of Posts And
-Telecommunication Inc.
- Wang Han
- y030737&njupt.edu.cn
-22202
- Security Tostem co.,Ltd.
- HIROSHI KODAIRA
- sts-unicty&exc.tostem.co.jp
-22203
- Informática El Corte Inglés, S.A.
- Juan José Blanco
- juanjose_blanco&ieci.es
-22204
- Bundesversicherungsanstalt für Angestellte
- R. Grunert
- ronald.grunert&bfa.de
-22205
- 3G Data Soluciones C.A.
- Andres Castro
- acastro&3g.com.ve
-22206
- M-real Corporation
- Bengt Wentus
- bengt.wentus&m-real.com
-22207
- SureWest
- James Yost
- j.yost&surewest.com
-22208
- AGES International GmbH & Co KG
- Dirk Nitka
- dirk.nitka&ages.de
-22209
- LJXN inc.
- LinJianeng
- lin_jianeng&163.com
-22210
- FLsystem
- sangho-cho
- atrobo&empal.com
-22211
- Legacy Property Investments LLC (formerly 'JMAnderson Enterprises')
- John Anderson
- bassooner&gmail.com
-22212
- Cognio, Inc.
- Neil Diener
- ndiener&cognio.com
-22213
- Posda
- Bill Bennett
- bill.bbennett&gmail.com
-22214
- Explorer Post 227
- Christopher A. Hotchkiss
- christopher.hotchkiss&gmail.com
-22215
- Pogo Linux, Inc.
- Alex Neth
- snmp-admin&pogolinux.com
-22216
- sighq networking
- boyden Stéphane
- sigmounte&mailsfp.univ-lille2.fr
-22217
- Yitran Communications
- Iftah Bratspiess
- iftah&web-silicon.com
-22218
- NAVARRO Y BORONAD, S.L.
- JAIME TORRES
- jaime.torres&navarroyboronad.com
-22219
- BoreNet AB
- Johan Johansson
- johan&borenet.se
-22220
- LACNIC
- Arturo Servin
- aservin&lacnic.net
-22221
- Wescom GmbH
- Markus Fischer
- fischer&wescom.ch
-22222
- ProaXial
- Jean-Claude CHRISTOPHE
- jch&proaxial.com
-22223
- IntelliCal LLC
- Jason Klemow
- Jason&IntelliCal.net
-22224
- Queensland Treasury
- Prachid Tiyapanjanit
- prachid.tiyapanjanit&treasury.qld.gov.au
-22225
- Huazhong University of Science and Technology
- shunda zhang
- zhangshunda&163.com
-22226
- Acamaya SA
- Jeremy Charton
- ldap&acamaya.com
-22227
- David Mains & Co. Inc.
- Matthew Mains
- mrmains&dmcinc.ca
-22228
- The University of Manchester Computer Society
- CompSoc Admin
- admin&compsoc.man.ac.uk
-22229
- Heiks computerdiensten
- Heiko Noordhof
- heiko.noordhof&xs4all.nl
-22230
- MyPoints, Inc.
- Michael T. Halligan
- michael.halligan&mypointscorp.com
-22231
- VEL Technologies, LLC
- Dmitry Wagner
- snmp&veltech.com
-22232
- Kyle Hamilton
- Kyle Hamilton
- aerowolf&gmail.com
-22233
- German Overseas Institute
- Michael Schroeder
- admin&duei.de
-22234
- DocuSign France (formerly 'KEYNECTIS')
- Erwann Abalea
- erwann.abalea&docusign.com
-22235
- Beijing WellTelecom Co.,Ltd.
- zhang xiao
- zhangxiao&wtf.com.cn
-22236
- Ultrawaves Design, Inc.
- Eric Lammerts
- eric-iana.org-enterprise-numbers&ultrawaves.com
-22237
- Inventronik GmbH
- Dipl.-Ing. Jens Carroll
- jc&inventronik.de
-22238
- FOXCONN Technology Group
- S.C. Lin
- S.C.LIN&foxconn.com
-22239
- Response Systems Corporation
- Howard W. Bleiwas
- howard.bleiwas&respsys.com
-22240
- DATOR3 a.s.
- Pavel Korensky
- pavel.korensky&dator3.cz
-22241
- C&A Computer Consultants Ltd.
- Max Chiu
- kh&caconsultant.hk
-22242
- GENTOO FOUNDATION, INC.
- Thomas Raschbacher
- lordvan&gentoo.org
-22243
- The Swatch Group Ltd
- Peter Hutzli
- peter.hutzli&swatchgroup.com
-22244
- Ing.-Büro Otte Gmbh
- H. Otte
- hans.otte&ibo-gmbh.com
-22245
- Phalanx
- Rene Lauer
- ray&phalanx.cz
-22246
- HSBC Bank plc
- Marie Wilson
- m.v.wilson&hsbc.com
-22247
- Port of Tilbury London Ltd
- Steve Thorne
- steve.thorne&swisslog.com
-22248
- topf-sicret.org
- Tim Weippert
- weiti&topf-sicret.org
-22249
- INSIGHT TECHNOLOGIES Co., Ltd
- Jung Chung Lee
- jjlee&insightstor.com
-22250
- Max-Planck-Institut fuer Radioastronomie
- Frank Pascher
- fpascher&mpifr-bonn.mpg.de
-22251
- Syderal SA
- Lionel Riem
- lionel.riem&syderal.ch
-22252
- McAfee Inc. (formerly 'Reconnex Corporation')
- Chuck Hein
- Chuck_Hein&mcafee.com
-22253
- Lite Speed Technologies, Inc.
- George Wang
- gwang&litespeedtech.com
-22254
- Jerome's Furniture Warehouse
- Michael LaGrasta
- sysadmin&jeromes.com
-22255
- StopTheGlaciers.org
- Daniel Restelli
- restelli&stoptheglaciers.org
-22256
- Groep T Hogeschool Leuven
- Dirk Fabré
- dirk.fabre&groept.be
-22257
- Consultation informatique Daniel Savard Inc.
- Daniel Savard
- dsavard&cids.ca
-22258
- Enlaces Tecnologicos S.A. de C.V.
- Cesar Rincon
- crincon&et.com.mx
-22259
- WebAvis
- Jérôme Schell
- jerome&myreseau.org
-22260
- Scana
- Doug Bryant
- dbryant&scana.com
-22261
- California Lutheran University
- Kevin Appel
- kappel&clunet.edu
-22262
- OpenSides sprl
- Benoit Mortier
- benoit.mortier&opensides.be
-22263
- The Corporation of the County of Brant
- Sandra Arndt
- sandra.arndt&county.brant.on.ca
-22264
- Artifact Software Inc.
- Ron Wheeler
- rwheeler&artifact-software.com
-22265
- Stewart Enterprises, Inc.
- Thomas Wimprine
- twimprine&stei.com
-22266
- Evidant Corporation
- Dennis Morton
- dennis.morton&evidant.com
-22267
- Integral Technologies Inc
- Tim Marks
- tmarks&integraltech.com
-22268
- Flammiger Enterprises
- Joerg Flammiger
- joerg&flammiger.com
-22269
- Charles A Gura
- Charles A Gura
- iana&gura.net
-22270
- Quality Comm Comércio e Serviços de Teleinformática Ltda
- Celso Moreira Martins
- celsomartins&qualitycomm.com.br
-22271
- Nimium d.o.o.
- Miroslav Zubcic
- mvz&nimium.com
-22272
- PAREXEL International Corporation
- Holger Marschall
- PKI&parexel.com
-22273
- Universita' degli Studi di Ferrara
- Enrico Ardizzoni
- enrico&unife.it
-22274
- QSAN Technology, Inc.
- Charles Luoh
- charles.luoh&qsan.com.tw
-22275
- PNMS
- yurenlong
- yurl&neusoft.com
-22276
- FHD Ltd.
- Wanghao
- wanghao&fuhaoda.com
-22277
- GIquadrat mbH
- Torsten Steitz
- info&GIquadrat.de
-22278
- Bob-paperi Ky
- Tero Ahonen
- tero.ahonen&bobpaperi.com
-22279
- Shiflett Consulting
- steve shiflett
- iana&shiflett.us
-22280
- Telus Mobility
- Frederick Chung
- FREDERICK.CHUNG&TELUS.COM
-22281
- CODE INGENIERIA INFORMATICA
- OSCAR COSCARON
- JAVIER&CODEINF.COM
-22282
- Qualys, Inc.
- IT Manager
- domain-admin&qualys.com
-22283
- Gutemberg Medeiros Ltda
- Gutemberg Santos de Medeiros
- gutapps&ig.com.br
-22284
- Dimensao Digital Desenvolvimento Ltd.
- Fabio Iareke
- fabio&dimensaodigital.com.br
-22285
- Teracue
- Rainer Link
- support&teracue.com
-22286
- SYSTEMA
- Gerhard Schweinschwaller
- gerhard.schweinschwaller&systema.info
-22287
- TRS SpA
- Stefano Muro
- stefano.muro&trs.it
-22288
- EXTIS GmbH
- Peter Grill
- pg&extis.de
-22289
- Contec GmbH
- Mario Ploner
- mario.ploner&contec.at
-22290
- SkandSoft Technologies
- Surendra Kuncharela
- surendra&skandsoftindia.com
-22291
- FUJITSU ADVANCED SOLUTIONS LIMITED
- Takahiro Yamanaka
- yamanaka&fasol.fujitsu.com
-22292
- Network Center of Peking University
- Ma Hao
- mah&pku.edu.cn
-22293
- Daily Dose Language Systems, Inc.
- Justin Sharp
- jsharp&sharpone.net
-22294
- CAR-FRESHNER Corporation
- Jack Benney
- jbenney&little-trees.com
-22295
- Ministrstvo za obrambo Republike Slovenije
- Katarina Kavsek-Biasizzo
- katarina.kavsek.biasizzo&mors.si
-22296
- Fazt! Networks, Ltd.
- W. Boot
- wim&fazt.co.uk
-22297
- Allied Bank Corporation
- Lemuel Tomas
- lctomas&alliedbank.com.ph
-22298
- Höjebromölla
- Mårten Persson
- marten&hojebromolla.se
-22299
- Pontifical University of St. Thomas
- Gabriele Giulimondi
- giulim&pust.it
-22300
- CableMatrix Technologies, Inc.
- Zem Green
- zgreen&cablemx.com
-22301
- COMP Rzeszow S.A.
- Piotr Stolarz
- piotr.stolarz&comprzeszow.pl
-22302
- iC Compas GmbH and Co KG
- Andreas Netzer
- netzer&ic-compas.de
-22303
- RSS Solutions Inc
- Brendan Reekie
- bdr&rsssolutions.com
-22304
- Westinghouse Savannah River Company, LLC
- Tim Arnold
- timothy.arnold&srs.gov
-22305
- schwaberow.de
- Volker Schwaberow
- volker.schwaberow&web.de
-22306
- McMaster University
- Wayde Nie
- niew&mcmaster.ca
-22307
- Active Reasoning, Inc.
- Arminius Mignea
- arminius.mignea&activereasoning.com
-22308
- RedSky Technologies Inc.
- John Connell
- jconnell&redskytech.com
-22309
- California State Automobile Association
- Jeff McEwen
- IT_Security_Processes&csaa.com
-22310
- ComNetMedia AG
- Mark Siebert
- siebert&comnetmedia.de
-22311
- A.F. Blakemore and Son Ltd
- Ian J. Kennedy
- ijkennedy&afblakemore.com
-22312
- Université Saint-Louis - Bruxelles (USL-B) (formerly 'Université Saint-Louis (USL-B)')
- Axel Luttgens
- luttgens&fusl.ac.be
-22313
- SP Controls, Inc.
- Josh Fitzgerald
- josh&spcontrols.com
-22314
- TGN-Systeme Krueger + Partner
- Andreas Krueger
- Krueger&TGN-Systeme.com
-22315
- spot media AG
- Alexander Meyer
- hostmaster&spot-media.de
-22316
- OnTapSolutions
- Tom Coppeto
- tom&ontapsolutions.com
-22317
- Applied Identity, Inc.
- Jamie Honnaker
- root&appliedidentity.com
-22318
- Anyware Video
- Xavier PICAT
- picatx&anywarevideo.fr
-22319
- Dravske elektrarne Maribor
- Srecko Rojs
- srecko.rojs&dem.si
-22320
- Guardian Newspapers Limited
- Gary Law
- gary.law&guardian.co.uk
-22321
- ISAC, Inc.
- Masanori Machii
- machii&tech.isac.co.jp
-22322
- Freecomm Corporation
- Wind Dong
- wind.dong&freecomm.cn
-22323
- Capinfo Co, Ltd.
- Yang Bingyu
- yangbingyu&capinfo.com.cn
-22324
- Cooperton LLC
- Jeffrey A Carr
- jaluka&fuse.net
-22325
- Blick SA
- Francois van den Berg
- francoisvdb&blick.co.za
-22326
- Sago S.p.A
- Giorgio Cangioli
- g.cangioli&sago.fi.it
-22327
- Martos Ltd
- Martyn Wyatt
- martyn&martos-ltd.co.uk
-22328
- id Quantique SA
- Alexandre Pauchard
- alexandre.pauchard&idquantique.com
-22329
- same
- Michael P Forman
- michael.p.forman&jpmchase.com
-22330
- BIAS Inc.
- Andrew Kimpton
- awk&bias-inc.com
-22331
- State of Texas, Office of the Attorney General, Child Support Division
- Jack Bruns
- jack.bruns&cs.oag.state.tx.us
-22332
- ImmediateIT
- Mark Summer
- mark&immediateit.com
-22333
- JPotter
- Jim Potter
- jim&jpotter.net
-22334
- Laws and Wolfe Inc.
- Michael E. Laws
- mike&landwinc.com
-22335
- Alcorn State University
- Yek Sia
- sia&alcorn.edu
-22336
- Hopson Advanced Embedded Engineering
- Vincent M. Hopson
- vince&hopson.dyndns.org
-22337
- Hitachi Electronics Services Co.,Ltd
- NetworsSystemGroup
- nip&hitachi-densa.co.jp
-22338
- Paliot
- Guido A. Paliot jr.
- oid&paliot.de
-22339
- RHX Studio Snc
- Alessandro De Zorzi
- info&rhx.it
-22340
- Herlein Engineering, Inc.
- Greg Herlein
- gherlein&herlein.com
-22341
- ESO Technologies
- Pierre Sangouard
- psangouard&eso-tech.com
-22342
- Dyndaco BVBA
- Bart Duchesne
- bduc&dyndaco.com
-22343
- Technical Manangment
- Chris Snider
- chris.snider&tagtmi.com
-22344
- Telcomanager Technologies
- Vicente Domingues
- vicente&telcomanager.com
-22345
- Exalon Delft
- W. de Hoog
- wdehoog&exalondelft.nl
-22346
- dass /IT GmbH
- Joerg Steffens
- info&dass-it.de
-22347
- IDS Services, LLC.
- Mark Creekmore
- mcreekmore&idsserv.com
-22348
- Braintower Technologies GmbH
- Florian Wiethoff
- florian.wiethoff&brain-tower.com
-22349
- Premier Retail Networks
- Donald Army, DIrector of IT
- donald_army&prn.com
-22350
- debitel AG
- Frank Ennulat
- netman&de.debitel.com
-22351
- RedPrompt
- Simon Tennant
- simon&imaginator.com
-22352
- Pragmeta Networks
- Josh Endries
- jendries&pragmeta.com
-22353
- Network Connection
- Stephen Fulton
- sfulton&connection.ca
-22354
- The Lapp Companies
- Dr. Wade Woolverton
- drwade&functionalmed.org
-22355
- Clariton Networks Ltd.
- Danny Sade
- dannys&clariton-networks.com
-22356
- Web-Cyber & Co
- Baptiste Augrain
- baptiste&web-cyber.com
-22357
- INET-Consulting.com, Inc
- Doug Royer
- Doug&INET-Consulting.com
-22358
- Albeo
- Mario Enriquez-Zamudio
- mario.enriquez&albeo.org
-22359
- Jofee Internet Services
- Joe Constant
- joe&jofee.com
-22360
- Unzet ApS
- Jack Olsen
- jacko&unzet.com
-22361
- University of Michigan Radiation Oncology Physics
- Wayne Keranen
- wkeranen&med.umich.edu
-22362
- General Software, Inc.
- Steve Jones
- stevej&gensw.com
-22363
- Ken Bass Consulting
- Kenneth Bass
- kbass&kenbass.com
-22364
- EMARKMONITOR INC.
- Casey Riley
- criley&markmonitor.com
-22365
- Gluesys Co. Ltd.
- Gyeong-Hun Kim
- kgh&gluesys.com
-22366
- EasySoft
- YinSheng
- yyyyinsheng&tom.com
-22367
- Digital Fallout
- Michael Hubbard
- mkhubbard&gmail.com
-22368
- Silver Spring Networks
- James Pace
- pace&silverspringnet.com
-22369
- Hong Kong Applied Science and Technology Research Institute Company
-Limited
-(ASTRI)
- Kavitha Gopal
- kavitha&astri.org
-22370
- DUPLO CORPORATION
- Yoshihisa Suzuki
- y-suzuki&duplonet.co.jp
-22371
- Business Data Solutions
- Marcel Berteler
- marcel.berteler&bdsolutions.co.za
-22372
- Horst Reiterer
- Horst Reiterer
- horst&reiterer.net
-22373
- ThunderTechnology Srl
- Damiano Scrigni
- damio&thundertechnology.com
-22374
- Allegro Wireless Canada Inc.
- Wayne Hammerschlag
- wayneh&allegrowireless.com
-22375
- Crescent Real Estate Equities, LTD.
- IT Infrastructure Manager
- clane&crescent.com
-22376
- Masco Corporation
- Mike Cantalupo
- hostmaster&mascohq.com
-22377
- VoicePort, LLC
- Greg Dicheck
- gdicheck&voiceport.net
-22378
- Spaceship.com, Inc.
- Matt Hudson
- matt&spaceship.com
-22379
- InovaWeb
- Alfredo Campos Enríquez
- acampos&i-novaweb.com
-22380
- Vincent Defert Consulting
- Vincent DEFERT
- vincent&defert.com
-22381
- Linux User Group Roma
- Cristiano Paris
- segretario&lugroma.org
-22382
- Drazen Baic
- Drazen Baic
- drazen&baic.de
-22383
- HCCP
- Ian Brown
- spam&hccp.org
-22384
- Benedikt Heinen
- Benedikt Heinen
- iana.org&web.icemark.net
-22385
- Houston Academy of Medicine-Texas Medical Center Library
- Chris Young
- cyoung&library.tmc.edu
-22386
- ionflux.org
- Jörn P. Meier
- smi&ionflux.org
-22387
- InSync Technology Ltd
- Mr. D Kitchen
- iana-manage&insynctechnology.com
-22388
- SENTELCO
- Jon Bieker
- jbieker&sentelco.com
-22389
- IRIS Corporation Berhad
- Nrin Tan
- nrin&iris.com.my
-22390
- Parsek Corporation Ltd.
- Ales List
- list&parsek.net
-22391
- Citadel Security Software, Inc.
- Carl Banzhof
- cbanzhof&citadel.com
-22392
- Delco S.p.A.
- Carlo Passet
- carlo.passet&delcospa.it
-22393
- CDL chair - Saarland University
- Stephan Thesing
- thesing&cs.uni-sb.de
-22394
- Digital Fuel Ltd.
- MIS team
- mis&digitalfuel.com
-22395
- DyLogic S.r.l.
- Dario Rapisardi
- support&dylogic.com
-22396
- Power Media sp. z o.o.
- Marek Janukowicz
- marek&power.com.pl
-22397
- IBAMA
- Gerson Henrique Sternadt
- gerson.sternadt&ibama.gov.br
-22398
- Cooperativa de Computação da Unimontes
- Állysson Steve Mota Lacerda
- stevelacerda&gmail.com
-22399
- QBT Systems, Inc.
- Guido Belcic
- gbelcic&qbt.com
-22400
- Inside Higher Ed
- Doug Lederman
- doug.lederman&insidehighered.com
-22401
- VoIP, Inc.
- Daniel Corbe
- dcorbe&voipinc.com
-22402
- lois.inc
- jonson lee
- lianhuai&mails.gscas.ac.cn
-22403
- Koch, Neff & Volckmar GmbH
- Holger Schmieder
- schmieder&schmieder.de
-22404
- SBS Technologies
- Gene Juknevicius
- genej&sbs.com
-22405
- Fujitsu Services Finland OY
- Otto Blomqvist
- otto.blomqvist&fi.fujitsu.com
-22406
- Adermiis
- Uhlrich Philippe
- philippe.uhlrich&adermiis.fr
-22407
- NeoMeridian Sdn Bhd
- Tim Lloyd
- tim.lloyd&neomeridian.com
-22408
- PrimeKey Solutions AB
- Tomas Gustavsson
- tomasg&primekey.se
-22409
- Midland Memorial Hospital
- Ron Wooten
- rdwooten&midland-memorial.com
-22410
- Pixel Technology
- Marek Bartnikowski
- admin&pixel.com.pl
-22411
- Hawkis Consulting
- Vidar Håkestad
- vidar&hawkis.com
-22412
- openenterprise.co.uk
- Nick Gregory
- iana&openenterprise.co.uk
-22413
- TheStreet.com Inc
- Alexander Lorberg
- ops&thestreet.com
-22414
- Pacific Lutheran University
- Keith Folsom
- folsomke&plu.edu
-22415
- Mole Valley Farmers Ltd.
- Andres Olave
- andres.olave&molevalleyfarmers.com
-22416
- Shelton Internet Ltd
- Ben Dunham
- ben.dunham&shelton.co.uk
-22417
- Information Design Department of Tama Art University
- Takashi Nishiuchi
- iddoperator&idd.tamabi.ac.jp
-22418
- Usina de Imagens Photo+Design Ltda.
- José Carlos França
- digital&usina-de-imagens.com.br
-22419
- Relex, Inc.
- Ermakov Michael V.
- ermakov&relex.ru
-22420
- accedian, Inc.
- Dominique Bastien
- dbastien&accedian.com
-22421
- TSYS Prepaid, Inc.
- Tim Kuchlein
- tim&tsysprepaid.com
-22422
- Provideo Systems Pty Ltd
- Alex Kolodin
- alexk&provideo.com.au
-22423
- Almos Systems Pty Ltd.
- H. Vernout
- Info&almossystems.com
-22424
- INTELSOFT
- Fogha Barnabas
- fogha&innsof.com
-22425
- Audio Processing Technology Ltd
- Michael Feerick
- mfeerick&aptx.com
-22426
- Digital Data Communications Asia Co., Ltd.
- Kay Chan
- kay&ddcasia.com.tw
-22427
- Sowood & Co Ltd
- Kevin Campbell
- kev&sowood.co.uk
-22428
- RealOps, Inc.
- Chris Schroeder
- chris.schroeder&realops.com
-22429
- Florical Systems, Inc.
- Michael Kent
- Michael.Kent&Florical.com
-22430
- Volke Entwicklungsring GmbH
- Guido Naujoks
- gna&volke.de
-22431
- Phoenix Interactive Design Inc
- Chris Walden
- mibsupport&phoenix-interactive.com
-22432
- Gimlitech
- Thomas Ankele
- ta&gimlitech.de
-22433
- Silvermedia Group
- Ireneusz Wochlik
- biuro&silvermedia.pl
-22434
- NET TIME Corp.
- Noriaki Kobayashi
- hostmaster&nettime.co.jp
-22435
- Beep Science AS
- Stein Aanensen
- stein.aanensen&beepscience.com
-22436
- Sumaré Consultores Associados Ltda.
- Marcos Colpaert
- marcos&colpaert.com.br
-22437
- ITZ Informationstechnologie GmbH
- Ralf Huelsmann
- ralf.huelsmann&itz-duesseldorf.de
-22438
- Groxis, Inc.
- Howard Rosen
- howard&groxis.com
-22439
- CaseNEX
- Hari Narasimhamurthy
- hari&casenex.com
-22440
- Canadian Bank Note Company, Ltd.
- John Dempsey
- jdempsey&cbnco.com
-22441
- Next Dimension Inc.
- Gerry Kowalsky
- gerry&nextdimensioninc.com
-22442
- CHILE.COM S.A.
- Mauricio Nuñez
- mauricio&chile.com
-22443
- EMETEC
- Pawel Cieslowski
- office&emetec.com.pl
-22444
- GASCARD Partners, L.P.
- Anthony Mills
- amills&gascard.net
-22445
- Simon Holmgaard-IT
- Simon Holmgaard
- Simon.Holmgaard&emaus.cndo.dk
-22446
- Bitdefender SRL (formerly 'SOFTWIN SRL')
- Andrei Rusu
- tech-admin&bitdefender.com
-22447
- B.Braun Melsungen AG
- Joern Lubadel
- joern.lubadel&bbraun.com
-22448
- Cluster-Worxx.net
- Tim Korves
- korves&cluster-worxx.net
-22449
- SOPA
- Bertrand JUGLAS
- bertrand&juglas.name
-22450
- servicenetz.biz
- Steffen Beyer
- beyer&servicenetz.biz
-22451
- Custom IDEAS
- Gerald Van Baren
- vanbaren&cideas.com
-22452
- ING-DiBa AG
- Bernhard Duerl
- b.duerl&ing-diba.de
-22453
- H:S Hovedstadens Sygehusfællesskab
- Simon Holmgaard
- sh41&bbh.hosp.dk
-22454
- Helmut Mauell GmbH
- Thomas Fabrizi
- tfa&mauell.com
-22455
- Tribunal Regional do Trabalho da 4a. Regiao
- Fabiano Martins
- fabiano.martins&trt4.jus.br
-22456
- Hebraic Hertiage Christian School of Theology
- Dave Augustus
- postmaster&admin.hhcst.org
-22457
- Deutscher Ring LebensversicherungsAG
- Joerg Henkel
- certadmin&deutscherring.de
-22458
- Modulus Video, Inc.
- Chenchen Ku
- cku&modulusvideo.com
-22459
- QVidia Technologies, Inc.
- Ron Fellman
- rfellman&qvidia.com
-22460
- Tangtop Technology Co.,Ltd
- Peter Lee
- peter&kvm.com.tw
-22461
- JeeF Software
- Jan Fedorek
- iana&jeef.sk
-22462
- NixSys BVBA
- Philip Paeps
- philip&nixsys.be
-22463
- heidemann.org
- Andreas Heidemann
- ah&heidemann.org
-22464
- 01map
- Gérald Fenoy
- gfenoy&gmail.com
-22465
- G.I.E. AXA Technology Services Belgium
- Johan Limbourg
- johan.limbourg&axa-tech.com
-22466
- hoehmann.biz
- Tobias Hoehmann
- noc&hoehmann.biz
-22467
- Applied Global Technologies, Inc.
- Ben Atha
- bena&appliedglobal.com
-22468
- Red-C Optical Networking
- Iftah Bratspiess
- iftah&web-silicon.com
-22469
- Universidad ORT Uruguay
- Mr. Ernesto Silva
- silva&ort.edu.uy
-22470
- NetDeposit Inc.
- Joe Benson
- jbenson&net-deposit.net
-22471
- Visible School, Inc.
- William Norris
- wnorris&visibleschool.com
-22472
- Boingo Wireless Inc.
- Engineering Dept.
- sysnet&boingo.com
-22473
- Teledyne Controls
- Nataliya Chervonaya
- nchervonaya&teledyne.com
-22474
- Asylum Telecom, Ltd.
- Janos Geller
- jgeller&asylumtel.com
-22475
- UK Broadband
- Leigh Porter
- leigh.porter&ukbroadband.com
-22476
- Syncor Systems, Inc.
- Tod Gentille
- syncor_snmp&syncorsystems.com
-22477
- KingHold Technology Co.,LTD
- Jimmy Wang
- lear&khtec.com.tw
-22478
- My ERM Application
- Peter Dunworth
- dunworth&ix.netcom.com
-22479
- Crosswalk, Inc.
- Chris Hawkinson
- chris.hawkinson&crosswalkinc.com
-22480
- XipLink Networking
- Charlie Younghusband
- charlie&xiplink.com
-22481
- HHS Health Options, Inc.
- John Broadbent
- johnb&hhs-inc.com
-22482
- nc
- Chlaupek Norbert
- nc&chello.at
-22483
- StreamShield Networks
- Dave Wakelin
- david.wakelin&streamshield.com
-22484
- grand.central.org
- Jeffrey Hutzelman
- jhutz&cmu.edu
-22485
- SafeNet InfoTech Pvt Ltd
- Bharat Bhushan
- bbhushan&safenet-inc.com
-22486
- Kyushu Institute of Technology
- Hitoshi Nakayama
- jin&isc.kyutech.ac.jp
-22487
- 2X Software Ltd
- Raphael Borg Ellul Vincenti
- raphael&2x.com
-22488
- Teltronic S.A.U.
- Carmelo Marin
- cmarin&teltronic.es
-22489
- Telvent Tráfico y Transporte, S.A.
- Carlos Gil Aguirrebeitia
- arbs&telvent.abengoa.com
-22490
- Health Care Service Corporation
- Wade Morris
- wade_morris&bcbstx.com
-22491
- Vircom, inc.
- Sylvain Savignac
- sylvain.savignac&vircom.com
-22492
- Forensic Signature Corp.
- Jacques Francoeur
- jfrancoeur&trustera.com
-22493
- MW 2000 S.A.
- Daniel Quintela
- dquintela&myway.com.ar
-22494
- Animaltracks.net
- Andrew Beaudoin
- andrewb&animaltracks.net
-22495
- Chandler Gilbert Community College
- Austin Godber
- austin.godber&cgcmail.maricopa.edu
-22496
- Digital Stream, Inc.
- Ben Cooley
- bcooley&dstreamtech.com
-22497
- shanghai blackstone communication Ltd
- zeng qiang
- zeng_qiang2004&hotmail.com
-22498
- Neddco Enterprises
- Roderick S. Baker
- rod&neddco.com
-22499
- Document Processing Systems, Inc.
- Paul Rakowicz
- paul&documentprocessing.com
-22500
- OfficeLink Plus Pty. Ltd.
- Nathan Le nevez
- npl&acis.com.au
-22501
- UAB Skaitmeninio sertifikavimo centras
- Moudrick M. Dadashov
- md&ssc.lt
-22502
- DaVita, Inc.
- George Lin
- glin&davita.com
-22503
- Klaus Henske
- Klaus Henske
- Klaus.Henske&t-online.de
-22504
- RedDevel.com
- Steven P. Kalemkiewicz, Jr.
- kale4272&comcast.net
-22505
- Volker Englisch
- Volker Englisch
- hwsw&englisch.us
-22506
- Incache LLC
- Ninan Thomas
- ninan&incache.com
-22507
- Ministerio da Ciencia e Tecnologia
- Eduardo Viola
- eviola&mct.gov.br
-22508
- Beijing FiberHome Mobile Technologies Co.,Ltd
- jidongzheng
- jidongzheng&21cn.com
-22509
- The Potter Group Ltd
- Mike Griggs
- mike.griggs&pottergroup.co.uk
-22510
- WhatCounts
- Wilson Soong
- wilson&whatcounts.com
-22511
- thinkorswim group, inc.
- Linwood Ma
- linwood&thinkorswim.com
-22512
- Personal Software Developement Company
- Fanis Kalatzis
- tkalatz&cc.uoi.gr
-22513
- PT Sapta Sarana Komunika
- Sugeng Widodo
- sugeng&sskom.co.id
-22514
- RVision LLC
- Greg Johnston
- attention&drayvision.com
-22515
- Theoretic Solutions
- Adam Theo
- theo&theoretic.com
-22516
- Castalia LLC
- Joshua S. Freeman
- jfreeman&gmail.com
-22517
- Ernster Public Relations
- Tom Ernster
- ternster&mn.rr.com
-22518
- Arel Communications and Software, Ltd.
- Amit Tzafrir
- amit&arelcom.com
-22519
- Akademische Fliegergruppe Karlsruhe
- Martin Bäuml
- martinbaeuml&web.de
-22520
- Sandpath
- Bin Zhang
- kevinzb&yahoo.com
-22521
- Schwegman, Lundberg, Woessner, & Kluth P.A.
- Thomas Ernster
- ternster&slwk.com
-22522
- ClearPath Networks
- Robert Staats
- rstaats&clearpathnet.com
-22523
- Fontec Information Technology Inc.
- Dave Roper
- daveroper&fontec.com
-22524
- Proyecto Fin de Carrera
- Sergio Afonso Coderch
- sergioafonso&ya.com
-22525
- RMP WebWorks
- Robert Paskowitz
- rpaskowitz&confucius.ca
-22526
- InstantServers, Inc.
- Webmaster
- webmaster&instantservers.com
-22527
- Capella Technologies
- Jean-Michel David
- jmdavid&capella.coop
-22528
- iPodion GmbH
- Thomas Kirchtag
- tkircht&iPodion.at
-22529
- Kommunale Datenverarbeitungsgesellschaft mbH
- Mathias Weidner
- oidadmin&kdg.de
-22530
- Takeda Pharmaceuticals North America, Inc.
- Dennis M. Reitz
- dreitz&tpna.com
-22531
- Paloma Partners
- Joseph Cyboski
- jcyboski&paloma.com
-22532
- Computer Graphics Group
- Jim Boren
- jboren&computergraphicsgroup.com
-22533
- Symetra Financial
- Diane Zormeir
- diazor&safeco.com
-22534
- Purdue Pharma L.P.
- Tichard Thompson
- tichard.thompson&pharma.com
-22535
- Neiman Marcus Group
- Christopher Paul
- chris.paul&rexconsulting.net
-22536
- COPAN Systems
- Brian Wang
- brian.wang&copansys.com
-22537
- TreeTop GbR
- Conny Lichtenberg
- Conny.Lichtenberg&TreeTop.DE
-22538
- Reva Systems Corporation
- Scott Barvick
- sbarvick&revasystems.com
-22539
- Champion Computer Technologies
- Ken Applebaum
- tech&cctupgrades.com
-22540
- Oulun Lyseon lukio
- Tuure Laurinolli
- adm&lyseo.edu.ouka.fi
-22541
- Open Acuity LLC
- Mike Allred
- mikejallred&gmail.com
-22542
- Lex Persona
- Francois Devoret
- fdevoret&lex-persona.com
-22543
- GOUNOT
- Louis GOUNOT
- iana-manager&gounot.net
-22544
- Host Collective Inc.
- Sean Plaice
- seanp&hostcollective.com
-22545
- Daudt Consulting
- Christian Daudt
- ip_admin&daudt.org
-22546
- Qwasartech
- Dominik Wezel
- dio&qwasartech.com
-22547
- Alfred University
- Adrian Morling
- morling&alfred.edu
-22548
- Biapo
- Adrian Morling
- morling&biapo.com
-22549
- Broad Net Mux Corporation
- Hiroshi Ida
- h-ida&bnmux.co.jp
-22550
- NANOTEX CORP.
- Atsushi SHIMAMOTO
- shimamoto&nanotex-jp.com
-22551
- MOIMSTONE Co.,LTD
- Seunghee choi(Skye choi)
- skyechoi&moimstone.com
-22552
- Sinco Informatica
- Marcos Vieira
- marcos&sincoinformatica.com.br
-22553
- IT Saver
- Joseph Le
- joseph&itsaver.com
-22554
- Legion of the Bouncy Castle
- David Hook
- dgh&bund.com.au
-22555
- Safehaus
- Alex Karasulu
- akarasulu&codehaus.org
-22556
- JAPAN ADVANCED INSTITUTE OF SCIENCE AND TECHNOLOGY
- Syuichi Kosaka
- isc&jaist.ac.jp
-22557
- Deutsche Börse Group
- Herman Philippe
- pherman.cs&clearstream.com
-22558
- one4vision GmbH
- Christof Allmann
- iana-pen&one4vision.de
-22559
- Intersys AG
- Andreas Schneider
- andreas.schneider&intersys.ch
-22560
- Dynamic Design GmbH
- Christoph Emsenhuber
- christoph.emsenhuber&dynamic-design.com
-22561
- Graphic Image Technologies (Pty) Ltd.
- Regardt van de Vyver
- regardtv&git.co.za
-22562
- Trivector System AB
- Bengt Persson
- bengt.persson&trivector.se
-22563
- ehotel AG
- Arno Seidel
- a.seidel&ehotel.ag
-22564
- ULX Ltd.
- Gabor Szentivanyi
- gabor.szentivanyi&ulx.hu
-22565
- Odyssée Systèmes
- Benjamin Dapon-Pigatto
- benjamin.dapon-pigatto&odyssee-systemes.fr
-22566
- Devoteam
- Olivier Gérault
- olivier.gerault&devoteam.com
-22567
- Instituto Politécnico de Castelo Branco
- Fernando Emanuel Azevedo Reis
- informatica&ipcb.pt
-22568
- Redwave Technology Ltd
- Phil Hughes
- phil&redwavetechnology.com
-22569
- Dynameeting spa
- Paolo Martino
- paolo.martino&dynameeting.it
-22570
- Thomas Taeger Datenblatt
- Thomas Taeger
- taeger&datenblatt.de
-22571
- AMART Logic
- Jaroslaw Cichorski
- info&amart.com.pl
-22572
- AD.NET solutions Enrico Roga
- Enrico Roga
- enrico.roga&adnet-solutions.de
-22573
- Infinite Software, Inc.
- Bill Weisner
- bdweisner&infinitesoft.com
-22574
- iseg Spezialelektronik GmbH
- Joachim Poethig
- mib-admin&iseg-hv.de
-22575
- Astro-Med, Inc.
- James H. Alexander
- JAlexander&astromed.com
-22576
- The OpenBSD SNMP Project
- Theron Bair
- obsdsnmp&id-ak.com
-22577
- Thomas Wollner - IT Beratung und Integration
- Thomas Wollner
- tw&wollner-net.de
-22578
- InFarmTech
- Boris B. Samorodov
- bsam&ipt.ru
-22579
- kaptara GmbH & Co. KG (formerly 'Christoph Michel IT Management')
- Christoph Michel
- info&kaptara.de
-22580
- Martin-Baker Aircraft Company Ltd
- Niki Blowfield
- niki.blowfield&martin-baker.co.uk
-22581
- epollux.org
- Daniel Wissenmeyer
- daniel.wissenmeyer&epollux.org
-22582
- Group 4 Technology Ltd
- Andrew Chilcott
- andrew.chilcott&g4tech.co.uk
-22583
- Clarkson University
- Bruce Dunphey
- bdunphey&clarkson.edu
-22584
- Zetera Corporation
- Bill Babbitt
- bill.babbitt&zetera.com
-22585
- Forest Laboratories, Inc.
- Omar McKenzie
- security&frx.com
-22586
- Dotcast, Inc.
- Jim Longino
- snmpcontact&dotcast.com
-22587
- Hjelle IT-Bistand
- Bjorn Hjelle
- bjornhjelle&yahoo.com
-22588
- LucaS web studio
- Lukasz A. Grabowski
- www&lucas.net.pl
-22589
- P6R, Inc.
- Mark Joseph
- mark&p6r.com
-22590
- BHG Security Consulting
- Bartholomew H. Grasso
- bgrasso&nycap.rr.com
-22591
- Fachhochschule Muenchen - ZaK
- Computer Center
- admin&fhm.edu
-22592
- Informatec LTDA
- Tamar Souza
- tamar.souza&informatec-sp.com.br
-22593
- Emily Carr College of Art and Design
- David Ayre
- david&eciad.ca
-22594
- GoldKrush
- Matt Richards
- matt&goldkrush.com
-22595
- Modulation Sciences Inc.
- Ketan Bhaidasna
- ketan&modsci.com
-22596
- marrianne.com
- Marrianne Bacon
- mbacon&gci.com
-22597
- eOrg
- Young H. Etheridge
- yhe&yhetheridge.org
-22598
- MissionMode Solutions, Inc.
- Mike Mitchell
- mike.mitchell&missionmode.com
-22599
- Informatec Comercial e Serviços Ltda.
- Rodolfo Xavier
- rodolfo.xavier&informatec-sp.com.br
-22600
- Harris CapRock Communications (formerly 'CapRock Communications')
- Raymond P Chudzinski
- rchudzin&harris.com
-22601
- Tachometry Corporation
- Tom Evans
- support&tachometry.com
-22602
- TESI Tècnica del So i la Imatge S.L.
- Marc Camprodon
- marc&tesi.es
-22603
- skyblue.eu.com
- Raymond B. Edah
- registry&skyblue.eu.com
-22604
- Rentokil Initial plc
- Philip Venton
- pventon&rentokil.com
-22605
- Winkowski Sp. z o.o.
- Adam Domañski
- adomanski&winkowski.pl
-22606
- Thomas Urban
- Thomas Urban
- soletan&toxa.de
-22607
- ChiliTech Internet Solutions, Inc.
- Matt Hoppes
- oid&chilitech.net
-22608
- Cmed Ltd
- Dr Timothy Corbett-Clark
- tcorbettclark&cmedltd.com
-22609
- CJ Microware and Associates
- Christian G Jackson
- cgjackson59&comcast.net
-22610
- Raksha Networks Inc.
- John Chiong
- jchiong&rakshanetworks.com
-22611
- Tele Lorca
- Sébastien CRAMATTE
- contact&zeninteractif.com
-22612
- Envirocare of Utah, LLC
- Irwan Budiman
- ibudiman&envirocareutah.com
-22613
- City Animal Hospital Ltd.
- Marc A. Mapplebeck
- mmapplebeck&canada.com
-22614
- Shutterbug Productions & Consulting
- Marc A. Mapplebeck
- mmapplebeck&canada.com
-22615
- Luna[e] Project
- Alexandre Jousset
- Alexandre&Jousset.org
-22616
- Companhia de Sistemas - Compsis Consultoria e Comercio de
-Informatica Ltda
- Guilherme Buonfiglio de Castro Monteiro
- guilherme.monteiro.domain&gmail.com
-22617
- Richland Community College
- James Jones
- james&richland.edu
-22618
- IBM/NY Hospitals
- Richard Basch
- rbasch&us.ibm.com
-22619
- Universidade de Aveiro
- Ricardo T. Martins
- gc-adm&cic.ua.pt
-22620
- Serveapolis
- Jean-Fabrice Bobo
- iana&bobo-rousselin.com
-22621
- stepping stone GmbH
- Michael Eichenberger
- michael.eichenberger&stepping-stone.ch
-22622
- Lightel Technologies Inc.
- Stanley Shi
- stanley_shi&lighteltech.com
-22623
- Excellent Rameur
- Eric Thrierr
- equipe&excellent-rameur.com
-22624
- Source Technologies
- Steve Letter
- sletter&sourcetech.com
-22625
- ProcessClaims
- Joe Gomez
- joe.gomez&processclaims.com
-22626
- COMET SYSTEM, s.r.o.
- Jaroslav Dohnal
- dohnal&cometsystem.cz
-22627
- MIKRO-KOD Ltd.
- Andrij Kohan
- a_kohan&mail.ru
-22628
- Deutsche Angestellten-Krankenkasse
- Wolfram Joost
- Wolfram.Joost&dak.de
-22629
- Alpermann+Velte electronic engineering GmbH
- Jürgen Loh
- iana-admin&alpermann-velte.com
-22630
- Istituto Nazionale per la Ricerca sul Cancro
- Francesco Molina
- francesco.molina&istge.it
-22631
- Fachhochschule Osnabrueck
- Thomas Fruend
- fruend&fhos.de
-22632
- TOKYO BUSINESS SOLUTION CO.,LTD.
- Naoto KIHARA
- net-admin&biz-sol.co.jp
-22633
- Banco Mercantil do Brasil SA
- Antonio Domingos de Paiva Lima
- antonio.domingos&mercantil.com.br
-22634
- Objectif Software
- Julien VALIENTE
- info&objectif-software.com
-22635
- SECIT Secure IT Ltd.
- Michael Hoegler
- office&secit.at
-22636
- bbv AG
- Olaf Willuhn
- admin&bbvag.de
-22637
- Angel's Outpost
- Diana M. Stocchi
- angelsoutpost01&sbcglobal.net
-22638
- Siemens PTD EA
- Dr. Goetz Neumann
- goetz.neumann&siemens.com
-22639
- UNICO Computer Systems Pty Ltd
- Greg Boug
- sysadmin&unico.com.au
-22640
- LuXpert
- soonoh jeong
- sojeong&luxpert.com
-22641
- Microsystèmes S.A.
- Francis CEREJA
- fc&microsystemes.com
-22642
- PROXID
- Enterprise Number Manager
- iana.manager&proxid.net
-22643
- Carsales.com.au Ltd
- Damien O'Rourke
- damieno&carsales.com.au
-22644
- Zettai.net LLC
- George Donnelly
- info&zettai.net
-22645
- Lane County
- Rhett Karr
- rhett.karr&co.lane.or.us
-22646
- Americom Government Services, Inc.
- Matt Kipe
- matthew.kipe&americom-gs.com
-22647
- WRO-COM Maciej Jankowski
- Michal Listos
- tech&wro-com.net
-22648
- TENSQUARE gmbh
- Hostmaster
- hostmaster&tensquare.de
-22649
- Astoria Networks Inc.
- Eric Wong
- ewong&abestrch.com
-22650
- ADS Specialists, Inc.
- Gary Edwards
- gedwards&ads-specialists.com
-22651
- Visual Commands
- Brian Cavenah
- brian&visualcommands.com
-22652
- Raptor Networks Technology Inc.
- Morteza Rahchamani
- mrahchamani&raptor-networks.com
-22653
- Stoke Inc
- Dzung Vu
- dvu&stoke.com
-22654
- Kodak Dental Systems
- Tory Deron
- tory.deron&kodakdental.com
-22655
- Number41Media Corporation
- Chris Lawder
- chris&number41media.com
-22656
- Intelicis Corporation
- Caroline Lee
- caroline.lee&intelicis.com
-22657
- Exprit s.r.o.
- Oldrich Holy
- oldrich.holy&exprit.cz
-22658
- Apria Healthcare Group
- Michael Long
- Mike.Long&apria.com
-22659
- HHS International Ltd.
- Brian Hehir
- brian.hehir&hhsinternational.com
-22660
- Wyoming.com
- Frostie Sprout
- noc&wyoming.com
-22661
- Wolfram Schlich, IT Service
- Wolfram Schlich
- wolfram&schlich.biz
-22662
- UEcomm Ltd.
- Joel Macatangay
- jmacatangay&uecomm.com.au
-22663
- Banco do Estado de Sergipe S/A
- Alessio de Oliveira Rezende
- alessio&banese.com.br
-22664
- Soost Software Technology
- Dieter Soost
- mail&soost-berlin.de
-22665
- explicate.org
- Ken Pizzini
- mib-master&explicate.org
-22666
- Hautespot Networks
- Tim Harvey
- tim&hautespot.net
-22667
- phase5 information technology GbR
- phase5 Technical Support Staff
- iana&entwurfsvergabe.de
-22668
- Hawaiian Electric Company
- Ellsworth Fujii
- ellsworth.fujii&heco.com
-22669
- North West University
- Pieter Enslin
- hostmaster&puk.ac.za
-22670
- ControlGuard Ltd.
- Tetelman Chen
- chent&controlguard.com
-22671
- VITRONIC Dr.-Ing. Stein Bildverarbeitungssysteme GmbH
- Michael Moser
- michael.moser&vitronic.com
-22672
- University of Peradeniya
- Dircetor/ICSU
- noc&pdn.ac.lk
-22673
- GTS Telecom SRL
- GTS Telecom Tech Dept
- tech&gtstelecom.ro
-22674
- Gamersmafia
- Juan Alonso
- dharana&gamersmafia.com
-22675
- Prorange Ltd.
- Joerg-Dieter Leinert
- joerg-dieter.leinert&prorange.de
-22676
- manitu
- Manuel Schmitt
- manuel.schmitt&manitu.de
-22677
- Finsoft Ltd
- Nenad Ristic
- nesa&finsoft.com
-22678
- Latens Systems Ltd
- Joseph Edwards
- snmp&latens.co.uk
-22679
- Futura NT S.r.l.
- Simone Passet
- simone.passet&futura-nt.it
-22680
- Oxford BioSignals Ltd
- Marc Smith
- marc.smith&oxford-biosignals.com
-22681
- ARD Technology
- Andrew R Dale
- andy&ardtechnology.com
-22682
- Vesuvius
- Nicolas Camus
- nicolas.camus&fr.vesuvius.com
-22683
- SIGMA Chemnitz GmbH
- Enrico Scholz
- enrico.scholz&sigma-chemnitz.de
-22684
- ACS Automotive Communication Services GmbH
- Hans-Juergen Schmidt
- hans.schmidt&acs.vaps.de
-22685
- Fronter AS
- Ola Ormset
- ola.ormset&fronter.com
-22686
- Azbooka Publishers Ltd.
- Dmitry O Furmansky
- dmitry&azbooka.spb.ru
-22687
- Brink's (UK) Limited
- AJ Noordende
- aj.noordende&brinksinc.com
-22688
- jborder.com
- Jamie Border
- jborder&gmail.com
-22689
- Yamagata University
- Sumio Okuyama
- oid&yz.yamagata-u.ac.jp
-22690
- Cleon Solutions s.r.l.
- Andrea Cozzolino
- a.cozzolino&cleonsolutions.com
-22691
- APL Ltd.
- Steve Stewart
- steve_stewart&apl.com
-22692
- Magma Soft
- Georg Lehner
- jorge-iana&magma.com.ni
-22693
- Alpha Venega Corporation
- Anthony A. Baffoe
- abaffoe&verizon.net
-22694
- Broadcast Service Danmark A/S
- Dr. Lars Frostholm
- laf&bsd.dk
-22695
- EPCglobal
- Ted Osinski
- tosinski&epcglobalus.org
-22696
- Netadmin System i Sverige AB
- Tor Borrhed
- tor&netadmin.se
-22697
- First Point Global Pty Ltd
- Jan Zeilinga
- jzeilinga&firstpointglobal.com
-22698
- Match Lab, Inc.
- Chris Huang
- chrish&matchlab.com
-22699
- M&T Bank Corporation
- Kyle Obear
- kobear&mandtbank.com
-22700
- LUIS COLORADO SISTEMAS, S.L.
- Luis Colorado
- lc&luiscoloradosistemas.com
-22701
- Hospices - CHUV
- Oliver Thalmann
- oliver.thalmann&chuv.ch
-22702
- SC Stonet Computers SRL
- Adrian Belciug
- adi&stonet.ro
-22703
- Ask IT's Done Ltd
- Simon P Smith
- iana&askitsdone.co.uk
-22704
- University of Kansas Medical Center
- Steve Selaya
- network_development&kumc.edu
-22705
- DIGICAST Inc.
- Yeontack Jeong
- blueminz&empal.com
-22706
- DIGITAL FORECAST Corporation
- Yeontack Jeong
- blueminz&dfcast.co.kr
-22707
- Comtechservice
- Vitaliy Savynskyy
- vit&cts-renta.ru
-22708
- eSYS Informationssysteme GmbH
- Rene Mayrhofer
- rene.mayrhofer&gibraltar.at
-22709
- Appistry
- Samuel Charrington
- iana&appistry.com
-22710
- Lipman Elektronik ve Danismanlik Ltd.Sti
- Mehmet Fatih Eyribicak
- fatih&lipman.com.tr
-22711
- SGS Societe Generale de Surveillance SA
- Mr. BRELAZ Stephane
- stephane.brelaz&sgs.com
-22712
- Wielkopolski Oddzial Wojewodzki NFZ w Poznaniu
- Krzysztof Tomaszewski
- krzysztof.tomaszewski&nfz-poznan.pl
-22713
- Università degli Studi di Cassino
- Marco D'Ambrosio
- m.dambrosio&unicas.it
-22714
- Mobilaris AB
- Andreas Sikstrom
- andreas.sikstrom&mobilaris.se
-22715
- CenterPoint - Connective Software Engineering GmbH
- Thomas Themel
- thomas.themel&cpointc.com
-22716
- Modern World Internet Ltd
- Leigh Brown
- leigh&modern-world.net
-22717
- VRT
- Lieven Troch
- lieven.troch&vrt.be
-22718
- Centre Reseau Communication
- Pierre David
- Pierre.David&crc.u-strasbg.fr
-22719
- Pinellas County Government - IT
- Jerry Chapman
- jchapman&pinellascounty.org
-22720
- Metreos Corporation
- J.D. Liau
- jdliau&metreos.com
-22721
- SIM International, Inc.
- Ben Bergen
- ben.bergen&sim.org
-22722
- KWPark Hardware
- Keith Park
- parklk&earthlink.net
-22723
- Cyjaya Korea
- Jay Kim
- joon&cyjaya.com
-22724
- Store Alcala
- Daniel Pérez Arias
- daniel&tiendapc.com
-22725
- Marko Durkovic
- Marko Durkovic
- marko&fs.ei.tum.de
-22726
- InfiniLogic (Private) Limited
- Syed Junaid Rizvi
- junaid&infinilogic.com
-22727
- Z&Z Services
- Jacqueline Fayaud
- Jfayaud&cox.net
-22728
- V-Office
- Andrew Klang
- oid&v-office.biz
-22729
- Unleash Computers Ltd
- Scott Mohekey
- smohekey&insightful.co.nz
-22730
- TurnTide Incorporated
- Tobias DiPasquale
- toby&turntide.com
-22731
- Data Aire,Inc.
- Minh Tran
- mtran&dataaire.com
-22732
- Brock University
- Ronald B. Ogawa
- csogawa&brocku.ca
-22733
- NorBelle, LLC
- Robert Olivier
- rolivier&norbelle.com
-22734
- synetics gmbh
- Andre Woesten
- awoesten&synetics.de
-22735
- GSC Mobile Solutions
- Gerrit Laseur
- Gerrit_Laseur&GSCMobileSolutions.com
-22736
- Digium
- Mark Spencer
- markster&digium.com
-22737
- SmarTone Mobile Communications Limited
- Network Administrator
- netinstall&ismart.net
-22738
- WiNetworks
- Bercovich Sabin
- sabinb&winetworks.com
-22739
- Network Technology Research Group
- Eric A. Hall
- ehall&ntrg.com
-22740
- S&P Computersysteme GmbH
- Christoph Leser
- leser&sup-logistik.de
-22741
- N-Dimension Solutions Inc.
- Vincent Wan
- Vincent.Wan&n-dimension.ca
-22742
- Acbel Polytech Inc.
- Edwin Chiang
- edwin_chiang&apitech.com.tw
-22743
- Linz AG
- Nigl Sascha
- s.nigl&linzag.at
-22744
- Purple Labs S.A.
- Stephane Pointu
- stephane.pointu&purplelabs.com
-22745
- MathAn Praha, s.r.o.
- Jan Dvorak
- mathan&mathan.cz
-22746
- PRIORITY ELECTRONICS LTD.
- BOGDAN ANTONOVICI
- bantonovici&priority.mb.ca
-22747
- Travelpack
- David Norman
- postmaster&travelpack.com
-22748
- Dade Behring
- Matthew McCormack
- matthew_mccormack&dadebehring.com
-22749
- Celebrity Resorts, Inc.
- Tim Howe
- tim.howe&celebrityresorts.com
-22750
- Teen Living Programs, Inc.
- Betty A. Bogg
- bbogg&teenliving.org
-22751
- HealthlineIS
- Ross Linfoot
- rlinfoot&healthlineis.com
-22752
- PatchLink Corporation
- Ammen Harper
- Ammen.Harper&PatchLink.com
-22753
- Convergent Media Network Ltd.
- Jan Van Uytven
- wyvern&crm3.com
-22754
- Cyntrum Web-Technologies, Inc.
- Robert Lee
- robert&cyntrum.com
-22755
- Terma Software Labs LLC
- Atul Awate
- aawate&stirlingsystems.com
-22756
- Revolution Linux inc.
- Jean-Michel Dault
- jmdault&revolutionlinux.com
-22757
- Azonic Technology Ltd.
- Ryan Tseng
- ryan.tseng&azonic-tech.com
-22758
- zrn.ru
- Andrey Maximov
- info&zrn.ru
-22759
- PROMAX ELECTRONICA,SA
- Marc Castro
- mcastro&promax.es
-22760
- Sphera Corporation Ltd.
- Tohar Trabinovitch
- tohar&sphera.com
-22761
- NAVI Sp. z o.o.
- Olaf Fraczyk
- olaf&navi.pl
-22762
- GROUPE ATLANTIC
- Jean-Noel MARTINEAU
- jnmartineau&groupe-atlantic.com
-22763
- Artis Group GmbH
- Michael Büsch
- buesch&artis-group.com
-22764
- SPIDCOM Technologies SA
- Etienne CHEVREAU
- etienne.chevreau&spidcom.com
-22765
- Augur Systems, Inc.
- Chris Janicki
- mib&AugurSystems.com
-22766
- Hoatech Technologies Co., Ltd.
- Peter Chiang
- peter&hoatech.com.tw
-22767
- TTC InfoAge Inc.
- Michael Friedman
- michael.friedman&ttcinfoage.com
-22768
- Technical University of Crete
- Eleftheria Petraki
- epetraki&noc.tuc.gr
-22769
- mur.at - Verein zur Foerderung von Netzwerkkunst
- Jogi Hofmueller
- noc&mur.at
-22770
- MediaSputnik Ltd.
- Viktor Luzin
- vl&msp.ru
-22771
- BlueFinger Ltd.
- John Grange
- john.grange&bluefinger.com
-22772
- Oesterreichische Nationalbank
- Joerg Spatschil
- joerg.spatschil&oenb.at
-22773
- John Fan
- John Fan
- fanjun&shaw.ca
-22774
- Ensuren Corporation
- Stephen Wostal
- stephen.wostal&ensuren.com
-22775
- Centromeric inc
- Sita KrishnaKumar
- centromeric&gmail.com
-22776
- Covance Cardiac Safety Services
- Tim Pollard
- Tim.Pollard&covance.com
-22777
- Ventura24 S.L.
- Fortunato Navarro
- fortunato.navarro&ventura24.es
-22778
- Reclusive Hermit
- Chris Anderson
- ldapadmin&reclusivehermit.com
-22779
- Carefirst BlueCross BlueShield
- Grant Kissel
- grant.kissel&carefirst.com
-22780
- Powerline Technologies Ltd
- David J Brain
- david&braind.fsnet.co.uk
-22781
- wenzhou telecom
- miao min
- miaomin&wz.zj.cn
-22782
- Bridgette, Inc
- Scott Smyth
- scotts&cuttedge.com
-22783
- Rauscher networX
- Oliver Rauscher
- Oliver.Rauscher&rnetx.com
-22784
- pimp.org.za
- Michael-John Turner
- mj&turner.org.za
-22785
- ICTeam AG
- Ralf Heid
- rheid&icteam.de
-22786
- Lattelekom
- Valdis Pukis
- Valdis.Pukis&lattelekom.lv
-22787
- internetbureau Websight
- Eric Bus
- iana&websight.nl
-22788
- PSInd, LLC
- David Picard
- dpicard&psind.com
-22789
- martyhill.net
- Marty Hill
- bmartinhill&comcast.net
-22790
- S.K.M. Informatik GmbH
- Dr. Heiko Voss
- hvoss&skm-informatik.com
-22791
- China Council for the Promotion of International Trade (CCPIT)
- Guohui Xin
- xinguohui&ccpit.org
-22792
- Voice Technology Ind. and Com. Ltd.
- Rodrigo Zenji Hida
- rodrigo&voicetechnology.com.br
-22793
- Stratum Communications Pty Ltd
- Kean Lim
- keanl&stratumcomms.com
-22794
- Pagaros Pty Limited
- Phil Cairns
- admin&pagaros.com.au
-22795
- Mississippi Valley State University
- Edgar Bland, Jr
- ebland&mvsu.edu
-22796
- LOGSYS Inc.
- Steve Yoon
- steve&logsys.co.kr
-22797
- openconcept gmbh
- Stefan Huggenberger
- stefan.huggenberger&openconcept.ch
-22798
- University of Crete
- Kissandrakis George
- kissand&ucnet.uoc.gr
-22799
- Endo7 GmbH/Srl
- Stefan Haberl
- contact&endo7.com
-22800
- FlexDSL Telecommunications AG
- Ruedi Aschwanden
- ruedi.aschwanden&flexdsl.ch
-22801
- Amedia Networks, Inc.
- John Colton
- oid&amedia.com
-22802
- Telabria Ltd
- Richard Strand
- support&telabria.com
-22803
- Psychosys Software Limited
- Duncan Mackay
- dm&psychosys.co.uk
-22804
- Trivium Technologies Ltd.
- Michael Dvoishes
- michaeld&3vium.com
-22805
- Utex Communications
- Soren Telfer
- soren&worldcall.net
-22806
- Scientica Life Sciences Pvt. Ltd.
- Dr. Ashutosh Pradhan
- ashutosh&scientica.com
-22807
- Andreas Julius
- Andreas Julius
- Andreas.Julius&t-online.de
-22808
- Oesterreichische Aerztekammer
- Ralf Fischer
- r.fischer&aerztekammer.at
-22809
- VLI Communications CO.,LTD.
- Robert Zhou
- Robert&vlichina.com
-22810
- Aktia Savings Bank p.l.c.
- Antti Ylänne
- aylanne&aktia.fi
-22811
- Pfeiffer & May Grosshandel AG
- Dr. Peter Borst
- peter.borst&pum.de
-22812
- Allscripts, LLC
- George Cole
- george.cole&allscripts.com
-22813
- Pest Control Data Systems, Inc.
- Lawrence "Dee" Holtsclaw
- pcds&usit.net
-22814
- radiowave limted
- alan walters
- alan&aillweecave.ie
-22815
- Axeda Systems Inc.
- Jim Hansen
- jhansen&axeda.com
-22816
- Rackable Systems, Inc.
- Rackable Systems Contact
- iana&rackable.com
-22817
- BAE SYSTEMS Australia
- Brett Hales
- brett.hales&baesystems.com
-22818
- Naked Dwarf
- Nick Loeve
- matt&nakeddwarf.com.au
-22819
- Chas Philly Steaks and Stix
- Charlie Wylam
- jabroney&evenlink.com
-22820
- DATS Co. Ltd.
- Katsuhiko Hirata
- hirata&dats.co.jp
-22821
- Saab AB
- Björn Borgström
- bjorn.borgstrom&saabgroup.com
-22822
- MobiComp Computação Móvel S.A.
- João Paulo Ribeiro
- jp&mobicomp.com
-22823
- Crodo Technologies Pte Ltd
- Stuyvesant Lim
- slim&crodo.net
-22824
- Verbrugge Terminals BV
- Luuk. H.P. van de Vijver
- luuk.vandevijver&verbrugge.nl
-22825
- Androsoft GmbH
- Stefan Mauerhofer
- info&androsoft.ch
-22826
- DFDS A/S
- Jan Kierstein
- jkie&dfds.com
-22827
- Certagon Corporation
- Matt Parks
- matt.parks&certagon.com
-22828
- Emacolet Networking Services
- Peter P. Benac
- ppbenac&emacolet.com
-22829
- Core Mobility, Inc.
- Nathan Wang
- nathan&coremobility.com
-22830
- NUMATA Kazuya
- NUMATA Kazuya
- kaz&nu-chon.org
-22831
- Warpera Corporation
- Sophia Luo
- sophial&warpera.com
-22832
- POSDATA Co. Ltd.
- Keunyol Park
- stunner&posdata.co.kr
-22833
- TMN TECHNOLOGIES Telecomunicações LTDA
- IUMBINO MAGALHAES BROCARDO
- magalhaes&tmn.com.br
-22834
- Redfish Group Pty Ltd
- Justin Clacherty
- snmp&redfish-group.com
-22835
- Firetide Inc
- Naresh Adoni
- nadoni&firetide.com
-22836
- Tercina Inc.
- Tim Spurway
- tim.spurway&enboard.com
-22837
- Rogers Police Department
- Joseph S. Dorn
- jdorn&rogersark.org
-22838
- A1 Enterprise, Inc
- Chris Day
- ckdinternet&yahoo.com
-22839
- ZQInteractive
- Kaity Yu
- kaity.yu&i-zq.com
-22840
- pbk2 GmbH & Co. KG
- Bernhard Krönung
- horke&pbk2.de
-22841
- external Business Information Services GmbH
- Steffen Schoch
- info&ebis.info
-22842
- Scientific Games International GmbH
- Johannes Strasser
- sysgrp&scigames.at
-22843
- ANWB B.V.
- Ruud Zwart
- mccmiddleware&anwb.nl
-22844
- Scheede
- Marc Scheede
- mscheede&stud.uni-goettingen.de
-22845
- IntelSight
- Guillaume Denoix
- guillaume.denoix&intelsight.com
-22846
- YR20 GROUP INC.
- Mike Hinz
- mike.hinz&yr20.com
-22847
- Vindaloo Communications
- Christopher Hilton
- chilton&vindaloo.com
-22848
- IdéiaLivre
- Andreas Hansen
- andreash&ideialivre.net
-22849
- T&F Computer und Networksystems GmbH
- Manfred Seifter
- technik&tf-systems.at
-22850
- MSB
- Mark Bennett
- mark.bennett&jewellery.eclipse.co.uk
-22851
- Children's Memorial Hospital
- Ron Isbell
- risbell&childrensmemorial.org
-22852
- ENEM B.V.
- H. Melgers
- hans&enem.nl
-22853
- GuangZhou Net Control Tech. Ltd.
- Zhong Wenqing
- zwq&wangkong.com
-22854
- Wojewódzki O¶rodek Informatyki przy Warminsko - Mazurskim
-Urzêdzie Wojewódzkim w Olsztynie
- Tomasz Kamiñski
- siomax&uw.olsztyn.pl
-22855
- Multisuns Corp.
- Yung-Kun Lin
- yklin&multisuns.com
-22856
- HiStor technologies
- Christophe Graulle
- cgraulle&histor.fr
-22857
- Reflex Security, Inc.
- SNMP Admin
- snmp&reflexsecurity.com
-22858
- financial.com AG
- Christoph Maser
- cm&financial.com
-22859
- Techaya Inc.
- David Stern
- david&techaya.com
-22860
- The LDAP Company
- Phil Smith
- asmith&aeinc.com
-22861
- MDOUK
- Mo Dutta
- mo&mdouk.com
-22862
- Winvision
- Boris van Es
- boris.vanes&winvision.nl
-22863
- Softwarehaus Hartter
- Ewald Hagenauer
- ewald.hagenauer&hartter.com
-22864
- ALPHA.CH AG
- Stephan Hoffmann
- stephan.hoffmann&alpha.ch
-22865
- University of Basel
- Bernd Sindlinger
- bernd.sindlinger&unibas.ch
-22866
- Vattenfall AB
- Tore Månsson
- tore.mansson&vattenfall.com
-22867
- G-International Ltd
- Paul Ford-Hutchinson
- paul.ford-hutchinson&g-international.com
-22868
- Ventana Medical Systems, Inc.
- Jon Gillies
- jongillies&ensynch.com
-22869
- Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH
- Axel Bujak
- axel.bujak&gtz.de
-22870
- Inter-Governmental Consultations on Asylum, Refugee and Migration Policies
- Pierre GARNIER
- iana&igc.ch
-22871
- Autocom A/S
- Kent B. Hansen
- kbh&autocom.dk
-22872
- Reinhard Moosauer IT Beratung
- Reinhard Moosauer
- office&moosauer.de
-22873
- Indian Institute of Information Technology
- Alok Parlikar
- alok&iiita.ac.in
-22874
- Syntermed, Inc.
- David Cooke
- ccooke&syntermed.com
-22875
- Fusion Laboratories, Inc
- Unix Administrator
- unixadmin&fusionlabs.net
-22876
- BlueCows Technical Services
- Russ Woodman
- russ&natcotech.com
-22877
- Northern Arkansas Telephone Company, Inc.
- Russ Woodman
- russ&natcotech.com
-22878
- Allen Corporation of America
- Bill P. Fanelli
- bfanelli&allencorporation.com
-22879
- Affine DB Ltd.
- James Clark
- james&clark.nildram.co.uk
-22880
- SonicDuo OSP dep.
- Galina Khvan
- galina.khvan&sonicduo.com
-22881
- Man Investments Ltd
- Grant Venner
- gvenner&maninvestments.com
-22882
- CJSC "UKRAINIAN MOBILE COMMUNICATIONS"
- Yaroslav Galchynskyy
- noc&umc.com.ua
-22883
- OPENLiMiT SignCubes GmbH
- Frank Jeschka
- f.jeschka&signcubes.com
-22884
- Western Gas Resources, Inc.
- Felix David
- fdavid&westerngas.com
-22885
- GIP CPAGE
- VIDAL Luc
- lvidal&cpage.fr
-22886
- Astro Strobel Kommunikationssysteme GmbH
- Ralf Schmitz
- r.schmitz&astro-kom.de
-22887
- PC-Ware Information Technologies AG
- Thomas Eichler
- thomas.eichler&pc-ware.de
-22888
- Interface Business GmbH
- Dr. Hellfried Lohse
- service&interface-business.de
-22889
- Zenprise, Inc.
- Curtis Heskett
- cheskett&zenprise.com
-22890
- Department of Applied Mathematics "U.Dini"
- Paolo De Rosa
- pdr&inventati.info
-22891
- Future Connect (Pvt) Ltd
- Asad Manzur
- manzur&fc.net.pk
-22892
- Jan B. Telepski Trading
- Jan Telepski
- jan&telepski.de
-22893
- Ing. Petr Setka
- Petr Setka
- news&setka.cz
-22894
- Unipower Corporation
- Andy Page
- andyp&unipower-europe.com
-22895
- RF Technologies, Inc.
- Wyn Gary
- wgary&rft.com
-22896
- Govern de les Illes Balears
- GABRIEL BUADES RUBIO
- bbuades&dgtic.caib.es
-22897
- EPRCI
- Dathan Tyler Cade
- oid&eprci.net
-22898
- Sericon Technology Inc.
- Sander A. Smith
- sas&sericontech.com
-22899
- Etherstuff
- Mike Hagans
- mhagans&etherstuff.com
-22900
- Statewide Software & Systems
- Joshua Harding
- josh&statewidesoftware.com
-22901
- Packet411 Corporation
- Bill Quinn
- packet411&gmail.com
-22902
- Discovery Communications Inc.
- Dave Duvall
- dave_duvall&discovery.com
-22903
- Preferred Communications, Inc.
- Hitesh Patel
- hitesh&presys.com
-22904
- R. L. Polk & Co.
- Michael Isiminger
- mick_isiminger&polk.com
-22905
- OAG Worldwide Ltd
- Paul Powenski
- ppowenski&oag.com
-22906
- Medical Soft Instruments SLL
- Arturo Bustos
- info&medicalmsi.com
-22907
- Riege Software International GmbH
- Mr. Holtkamp
- rsiadmin&riege.de
-22908
- Magnus Informatik A/S
- Peter Dahl Vestergaard
- peterdv&magnus.dk
-22909
- T-VIPS AS
- B. Tommy Jensen
- btj&t-vips.com
-22910
- MaeSoft Group
- Dan Allen
- dan&iquest.net
-22911
- EPSILON Software Assistance SA
- Niggi Stirnimann
- niggi.stirnimann&epsilon.ch
-22912
- Comrad Medical Systems Limited
- John Reynolds
- johnr&comrad.co.nz
-22913
- TJM Products Pty Ltd
- Mark Poyser
- infosys&tjm.com.au
-22914
- Sonim Technologies
- Prasanna Sathyanarayana
- prasanna&sonimtech.com
-22915
- IFX Corp
- Julio Cesar Pinto
- jc&ifxcorp.com
-22916
- Pyramide Technologies Corp
- Ole Ersoy
- ole_ersoy&yahoo.com
-22917
- UHS Systems Pty Ltd
- Daniel Wu
- daniel.wu&uhssystems.com
-22918
- TeDenium Indústria Eletroeletrônica Ltda.
- Eros Augusto De Brito
- eros.augusto&tedenium.com
-22919
- Herit Corporation
- Yisook Nam
- yisnam&herit.net
-22920
- Windows Consulting Group, Inc.
- William Boswell
- bboswell&winconsultants.com
-22921
- ATI Technologies Incorporated
- David Raftus
- david.raftus&ati.com
-22922
- postlab
- Michael Krämer
- iana&postlab.de
-22923
- moll-illner
- Stefan Illner
- stillner&moll-illner.org
-22924
- wegewerk GmbH
- Juri Maier
- info&wegewerk.com
-22925
- LAB-EL Elektronika Laboratoryjna
- Michal Konieczny
- mk&label.pl
-22926
- Heinrig Impex SRL
- Andrei Duhnea
- a.duhnea&heinrig.ro
-22927
- Aqsacom SA
- Jean-Francois ZELL
- jeanfrancois.zell&aqsacom.com
-22928
- Seokyo Telecommunication Co., Ltd.
- Mr. Kil Hwan Jang
- business&seokyo.com
-22929
- Schuemperlin Engineering AG
- Hermann Schuemperlin
- wavemail&gmx.net
-22930
- SPI Dynamics, Inc.
- Jimmy Pang
- jpang&spidynamics.com
-22931
- Parlano Inc.
- Jason Bubolz
- jason.bubolz&parlano.com
-22932
- Nvia2 Mensajes Interactivos, C.A.
- Victor Lamas Garcia
- Internet&nvia2.com
-22933
- itaas, Inc.
- Brian Wyatt
- snmpadmin&itaas.com
-22934
- Rudolf Leiner GmbH
- Sebastian Frei
- iana&leiner.at
-22935
- Beijing Univ. of Aeronautics & Astrnautics
- HUANG, Tao
- nic&buaa.edu.cn
-22936
- Tonbrand Software
- Ton Brand
- info&tonbrand.nl
-22937
- Message Mobile GmbH
- Michael Jürgens
- admin&mm-manager.de
-22938
- NOS Technology AS
- Cato Wæhle
- Cato.Wahle&nos.no
-22939
- WebInterstate Inc.
- Brad Nelson
- brad.nelson&webinterstate.com
-22940
- Arrowspan Inc.
- Tom Tang
- tomtang&arrowspan.com
-22941
- PDX, Inc.
- Ken Hill
- orders&pdxinc.com
-22942
- O2 Micro
- Alan Yang
- alan.yang&o2micro.com
-22943
- CVC Online
- Josh Vogelgesang
- joshv&cvconline.com
-22944
- Winuel SA
- Jan Wiktorowicz
- jan.wiktorowicz&winuel.com.pl
-22945
- KaiserAir
- Neil Stevens
- neil&eonweb.com
-22946
- Chordcom
- Mike Stallone
- stallone&chordcom.com
-22947
- IT-INFORMATIK
- Achim Simon
- achim.simon&it-informatik.de
-22948
- InSerTO
- SNMP
- special&inserto.fr
-22949
- EMAP Plc
- Jeremy Bull
- Jeremy.Bull&emap.com
-22950
- OEG Australia
- Mike O'Connor
- mike&oeg.com.au
-22951
- Lucid Security Corporation
- Vik Phatak
- vphatak&lucidsecurity.com
-22952
- On2 Technologies
- Daniel Campbell
- iana&on2.com
-22953
- EOSLINK CO., LTD
- DoYeong Cho
- dkoh&eoslink.com
-22954
- UNIVERSAL MICROELECTRONICS CO., LTD.
- Eddy Kao
- eddy-kao&umec-tpe.com.tw
-22955
- Azent AB
- Thomas Sparr
- thomas.sparr&azent.se
-22956
- News International Supply Company Ltd.
- Benedicte Gercke / Chris Wilde
- chris.wilde&newsint.co.uk ; benedicte.gercke&newsint.co.uk
-22957
- ZEN Sistemi Srl
- Andrea Baldi
- abaldi&zensistemi.com
-22958
- Weston Digital Technologies Ltd.
- Phil Richards
- phil.richards&weston.co.uk
-22959
- Tony Chachere's Creole Foods of Opelousas Inc
- Eric G Ortego
- eric&tonychachere.com
-22960
- Sozotek, Inc.
- John Fogarty
- jfogarty&sozotek.com
-22961
- SK Telesys
- Youngjin Kim
- fpassion&sktelesys.com
-22962
- matrix.mx
- Martin Tomanec
- martin+iana&myspot.at
-22963
- Vale Technology LTD
- Edward Moloney
- emoloney&moloneyodeaassociates.co.uk
-22964
- Acceris Communications
- Scott Hanna
- scott.hanna&acceris.com
-22965
- Sundance Digital, Inc.
- Brij Singh
- bsingh&sundig.com
-22966
- COSA GmbH
- Andreas Ley
- iana&cosa.de
-22967
- ZR InfoTech
- Roland Xinlei Wang
- rolandwang&zrinfo.net
-22968
- ComBrio, Inc
- Dave Boulos
- dboulos&combrio.com
-22969
- H+BEDV Datentechnik GmbH
- Klaus Schleicher
- kschleicher&antivir.de
-22970
- Dental-On-Line SARL
- Cyril Elkaim
- celkaim&dental-on-line.fr
-22971
- A.P. Moller - Maersk A/S
- Jakob Ingemann
- grpitaimng&maersk.com
-22972
- Wilibox
- Kestutis Barkauskas
- iana&wilibox.com
-22973
- Greenfield Networks, Inc.
- Wes Perdue
- wes&greenfieldnetworks.com
-22974
- Elgi Equipments Ltd
- Biju Gopinath
- admin&elgi.com
-22975
- The NGIM Project
- Sami Tolvanen
- iana&ngim.org
-22976
- AirInfinite, Inc.
- Ryan W. Kasten
- rwkasten&airinfinite.com
-22977
- MedImpact Healthcare Systems
- Sheila Soulia
- sheila.soulia&medimpact.com
-22978
- GridConnect, Inc
- Edward Landell
- edl&gridconnect.com
-22979
- Bridgestream Inc.
- Jeff Shukis
- jshukis&bridgestream.com
-22980
- Confio Software
- Lynn Stubbs
- lynnstubbs&confio.com
-22981
- BPB plc
- Mr Jason R Tritton
- jason.tritton&bpb.com
-22982
- Tectona SoftSolutions Pvt. Ltd.
- Rajesh Tripathy
- rajesh_tripathy&tectonas.com
-22983
- SSTIC
- Alain Pothin
- alain.pothin&bourbon-distrib.com
-22984
- ALS&TEC Ltd
- Ildar Salimov
- gsalimova&hotmail.com
-22985
- Derdack GmbH
- Ronald Czachara
- czachara&derdack.com
-22986
- Eurofighter Jagdflugzeug GmbH
- Greg Coulthard
- greg.coulthard&eurofighter.com
-22987
- EVONET Belgium NV
- Jos De Graeve
- admin&evonet.be
-22988
- University of Kentucky
- Herman Collins
- herman&uky.edu
-22989
- Essex Property Trust, Inc
- Matthew Clark
- mclark&essexpropertytrust.com
-22990
- Baltimore County Savings Bank, FSB
- Matthew Loraditch
- mloraditch&bcsb.net
-22991
- Netalfa Ltd.
- Attila Bognar
- iana&netalfa.com
-22992
- WIT, Inc.
- Chris Clark
- oid.admin&witinc.net
-22993
- Belarc, Inc.
- Dick DeFuria
- enterprise-number&belarc.com
-22994
- SiliconWorks Corporation
- Jay Vicory
- vicorjh&silicon-works.net
-22995
- Axley.net
- Jason Axley
- core-iana-2879&axley.net
-22996
- City of Peabody
- Frank Nguyen
- frank.nguyen&peabody-ma.gov
-22997
- Ab Initio Software Corporation
- Daniel Flagg
- dflagg&abinitio.com
-22998
- Allstream Inc
- Hubert Kowalczyk
- Hubert.Kowalczyk&allstream.com
-22999
- FURUNO SYSTEMS Co.,Ltd.
- MAKOTO FUJII
- fujii&furunosystems.co.jp
-23000
- Nexis s.r.l.
- Cesare Fontana
- cesare.fontana&nexisonline.it
-23001
- Corporación Supermercados Unidos S.A
- José García
- jagarcia&csu.co.cr
-23002
- Consentry Networks
- Ravi Mulam
- ravi&consentry.com
-23003
- HyperWerk FHBB
- Lukas Meyer
- l.meyer&hyperwerk.ch
-23004
- C&C Solution Technology
- Diego Deboni Rossetto
- diegodr&creapr.org.br
-23005
- Fluidsignal Group S.A.
- Fluidsignal Group Engineering Department
- info&fluidsignal.com
-23006
- e-Mont d.o.o.
- Aleksandar Milosevic
- aca&pexim.co.yu
-23007
- Imatic
- Jan Pekar
- iana&imatic.cz
-23008
- WebPaws.com
- Ryne Allen
- ryne&magickalwinds.com
-23009
- Asamnet e. V.
- Thomas Krieger
- iana&tom-krieger.de
-23010
- Maxima Communications
- Anton Martchukov
- antonm&mxc.ru
-23011
- OCLC PICA
- Janifer Gatenby
- j.gatenby&oclcpica.org
-23012
- Netprovider S.A.
- Juan Marti
- jmarti&netprovider.cl
-23013
- Salem-Keizer Public Schools
- Andy Miller
- miller_andy&salkeiz.k12.or.us
-23014
- Genie-uk
- Thomas Haslett
- tom&ttc.uk.net
-23015
- NewBay Software Ltd.
- Keith Brady
- kbrady&newbay.com
-23016
- Metaphor Studio, LLC
- Ran Mullins
- ran&metaphorstudio.com
-23017
- Ideal Technologies Inc.
- LI MA
- LIMA&IDEALTECHS.COM
-23018
- Matrix Networks China
- Yuran Xie
- ryuken2050&yahoo.com
-23019
- Pentacomp Systemy Informatyczne Sp. z o.o.
- Pawel Jagiello
- p.jagiello&pentacomp.pl
-23020
- FGAN FKIE/KOM
- Michael Bussmann
- bus&fgan.de
-23021
- Acstre Support Ltd.
- Mosko Aladjem
- maa&tu-sofia.bg
-23022
- Net Optics Inc.
- Shelton Liu
- shelton&netoptics.com
-23023
- THX Ltd.
- Amir Fuhrmann
- afuhrmann&thx.com
-23024
- PT. Dinamika Mandiri
- Budi Ang
- bang&dm.co.id
-23025
- meSSSoft
- Pierpaolo Messaggio
- ppmessaggio&usa.net
-23026
- SuedLeasing GmbH
- Marc Brenkmann
- marc.brenkmann&suedleasing.de
-23027
- Area Electronic System
- Chun Shek
- chuns&areasys.com
-23028
- Sunrise Technology Co. Ltd.
- Stephen Wan
- wanhairong&hotmail.com
-23029
- SQI, Inc.
- Steve Tindle
- steve&sqi-ops.com
-23030
- Shing
- Wai Shing Lee
- wai2k&eircom.net
-23031
- NSP Ltd.
- Tom Hibbert
- tom&nsp.co.nz
-23032
- MailFrontier, Inc.
- Scott Eikenberry
- sde&mailfrontier.com
-23033
- Leivio Technologies, Inc.
- Hideyuki Mizusawa
- hideyuki&leivio.com
-23034
- SETIB
- Yannick BOULARD
- yannick.boulard&setib.fr
-23035
- Labware, s.a.
- Eduardo Alsina
- ealsina&labware.es
-23036
- Isomorphic System Research Inc.
- Myron B Cheung
- onyx.peridot&gmail.com
-23037
- CMT Systems Inc.
- Robert Schuett
- schuett&cmt.net
-23038
- Emphasys Software
- Seth Stankowski
- sstankowski&emphasysworld.com
-23039
- Ambient Corporation
- David Goldblatt
- dgoldblatt&ambientcorp.com
-23040
- Exobit Networks, Inc.
- Robert Hinst
- rob&exobitnetworks.com
-23041
- CQ Inc.
- Geoffrey Wu
- geoffrey.wu&cqinc.com.tw
-23042
- The Real Estate Company, Inc.
- Jacob Elder
- jake&trec.us
-23043
- CastIS Corp.
- June, Chung
- jungaria&castis.com
-23044
- SmallBizConcepts BV
- John de Graaff
- iana_registration_j&smallbizconcepts.nl
-23045
- Cassee.net
- Joost Cassee
- joost&cassee.net
-23046
- MTD Systems
- Mike Griffin
- mike.griffin&mtdsystems.com
-23047
- Xinke (China) Information System Ltd
- Zhang Han Xi
- zhanghx&xkit.net
-23048
- Sabik OY
- Bjarne Ross Pedersen
- grund&info.dk
-23049
- Emsys n.v.
- Francis Theys
- ftheys&emsys.be
-23050
- JSC Department of System Research
- Alexey J Suvorov
- as1999&mail.ru
-23051
- SC TeSIS Logic SRL
- Petru Bordeianu
- petru&tesis.ro
-23052
- APPI Tecnologia S.A.
- Eliezio Oliveira
- ebo&appi.com.br
-23053
- DOSHED Corp.
- Ke Ding
- bigfaucet&yahoo.com.cn
-23054
- Cyris Networks
- Igor Ryshakov
- igoruha&yahoo.com
-23055
- H Zero Seven
- Christian Volmering
- risk&h07.org
-23056
- Riedel Communications GmbH
- Ruben Diez
- diez.ruben&riedel.net
-23057
- ISD Holland BV
- Chris Holleman
- chris&isd-holland.nl
-23058
- Expertron Group (Pty) Ltd
- Justin Schoeman
- justin&expertron.co.za
-23059
- NetFuel, Inc.
- Dave Carnal
- dave&netfuel.com
-23060
- Codebench, Inc.
- Robert Fontana
- bob.fontana&codebench.com
-23061
- VirtualBridges Communications Corp
- Ross Murray
- rmurray&virtualbridges.com
-23062
- Huize-wel.nl
- Kick van der Wel
- kick&huize-wel.nl
-23063
- Dominion Lasercom, Inc
- Mark Doucet
- mark.doucet&dominionlaser.com
-23064
- Kronback ApS
- Bo Kronback
- bk&kronback.com
-23065
- TWINCLING Society
- Saifi Khan
- manager&twincling.org
-23066
- Telmap LTD.
- Yacov Habusha
- yakov.habusha&telmap.com
-23067
- Nanomatic Ltd.
- Nedeljko Miljevic
- nmiljevic&nanomatic.net
-23068
- AngelGroup
- Mikhail Pokidko
- Mikhail.Pokidko&gmail.com
-23069
- Sodexho
- Kevin Beamer
- Kevin.Beamer&SodexhoUSA.com
-23070
- Hubris Communications Inc
- Chris Owen
- owenc&hubris.net
-23071
- Conformiq Software Ltd.
- Otto Jansson
- it&conformiq.com
-23072
- Australian Internet Company Pty Ltd
- Lawrence Ong
- oid-admin&aic.net.au
-23073
- WiMetrics Corporation
- Jim Flanagan
- jimf&wimetrics.com
-23074
- Security Conscious Inc.
- Phillip Villella
- phil.villella&security-conscious.com
-23075
- Novatel Wireless, Inc.
- Cuong Pham
- cpham&nvtl.com
-23076
- SP
- Kevin Levie
- systeembeheer&sp.nl
-23077
- Keppler IT GmbH
- Klaus Keppler
- kk&keppler-it.de
-23078
- Administration des Douanes et Impôts Indirects
- HOUARI CHIHI MOHAMED
- m.houari&douane.gov.ma
-23079
- Kiles Consulting
- Richard Kiles
- richard.kiles&gmail.com
-23080
- New York State Directory Services
- Andrew Hagadorn
- andrew.hagadorn&oft.state.ny.us
-23081
- Opus One, Inc.
- Joel M. Snyder
- Joel.Snyder&Opus1.COM
-23082
- Riedell MotorSports
- Charles Riedell
- cwriedell&cox.net
-23083
- University of Bridgeport
- Matanya Elchanani
- sysadmin&bridgeport.edu
-23084
- SCT Consulting
- Jeffrey Hulten
- jhulten&gmail.com
-23085
- QQ Technology, INC.
- Zhixin Mu
- zxmu&qqtechnology.com
-23086
- Major & Minor Exims Pvt Ltd
- Amol Hatwar
- amol.hatwar&majornminor.com
-23087
- Ross Sampson Consulting
- Ross Sampson
- ross&rosssampson.com
-23088
- Applied Watch Technologies, LLC
- Eric Maheo
- eric.maheo&appliedwatch.com
-23089
- Nanjing Gentech System CO., Ltd.
- Alan Cui
- tsuican&hotmail.com
-23090
- ncfritz.net
- Neil Fritz
- neil.fritz&asu.edu
-23091
- Nilson Group AB
- Thomas Karlsson
- tkn&seaside.se
-23092
- gaztec services
- gaz aldridge
- gaz&gaztec.co.uk
-23093
- ANAGRAN
- Grisha Kotlyar
- grisha&anagran.com
-23094
- Kuehne + Nagel (AG&Co.) KG
- Nils Ketelsen
- nils.ketelsen&kuehne-nagel.com
-23095
- ClarioNet, s.r.o.
- Kamil Vratny
- vratny&clarionet.cz
-23096
- jminet.com
- Maki Shioya
- maki&jminet.com
-23097
- Municipalidad de Rosario
- Martin P. Degrati
- mdegrati&rosario.gov.ar
-23098
- ServicePilot Technologies
- Bertrand MAHE
- bmahe&servicepilot.com
-23099
- NeTAMS
- Anton Vinokurov
- anton&netams.com
-23100
- H&T Greenline GmbH
- Jürgen Tabert
- jtabert&htgreenline.de
-23101
- University Hygienic Laboratory
- Frank Delin
- fdelin&uhl.uiowa.edu
-23102
- San Mateo County Public Safety Communications
- Robert Bustichi
- rsb&smc911dispatch.org
-23103
- SRP
- Robert R. Manthey
- rrmanthe&srpnet.com
-23104
- Raven Systems Design, Inc.
- Matthew Polak
- polak&raven-systems.com
-23105
- Action Systems, Inc.
- Mischa Rihm
- mrihm&action-systems.com
-23106
- RedPhone Security, Inc.
- Mark Brown
- admin&redphonesecurity.com
-23107
- Women's Center for Radiology
- Michael Brown
- mbrown&womenscenterforradiology.com
-23108
- RP Online Verlagsgesellschaft mbH
- Thomas Pundt
- thomas.pundt&rp-online.de
-23109
- Netline Internet Service GmbH
- Martin Kauss
- martin.kauss&netline-is.de
-23110
- UNYICO MIEE
- Vadim Zakharikov
- info&omis-miet.ru
-23111
- Spun Pty Ltd
- Andrew Agnew
- iana_entnbr.admin&spun.net.au
-23112
- University of Turku
- Eino Tuominen
- eino&utu.fi
-23113
- LXPT
- Jorge Gomes
- it&lxpt.net
-23114
- Comstar Ltd.
- Victor Kiranov
- vk&comstar.ru
-23115
- Observatoire Midi-Pyrenees
- Dang duc
- dang&obs-mip.fr
-23116
- iVOD Inc.
- Bo Wang
- boris.b.wang&gmail.com
-23117
- New Zealand Ministry of Health
- Craig McGeachie
- craig_mcgeachie&moh.govt.nz
-23118
- Telenet Systems Pvt. Ltd.
- Mrs. Nita Mehta
- nita&telenetsystems.com
-23119
- Shevchenko Didkovskiy & Partners
- Alex Samorukov
- samorukov&shevdid.com
-23120
- BFE Studio and Media Systems GmbH
- M.Kühnapfel
- mkuehnapfel&bfe-systemhaus.de
-23121
- Saint-Petersburg Certification Authority
- Vitaly Gryzunov
- viv&nwudc.ru
-23122
- Swisscom Ltd. - formely Bluewin AG
- Guido Roeskens
- scs.reg.iana&gmail.com
-23123
- gedas deutschland GmbH
- Manfred Gruner
- Manfred.Gruner&gedas.de
-23124
- Dickey Rural Telephone Cooperative
- Brian Johnson
- bjohnson&drtel.com
-23125
- Spring Lake Consulting, LLC
- Doug Hornyak
- dhornyak&springsolve.com
-23126
- BaneTele AS
- Per Magne Olsen
- per.magne.olsen&banetele.com
-23127
- GINA-COMPUTING GmbH
- Ginther Andreas
- andreas.ginther&the-ginthers.net
-23128
- NitroSecurity, Inc.
- Paul Whittington
- pwhittington&nitrosecurity.com
-23129
- Macrovision Corporation
- Brent K. Rolland
- brolland&macrovision.com
-23130
- CPN International Inc.
- David Harris
- root&cellbucks.com
-23131
- Mithi Software Technologies private Limited
- Sunil Uttam
- sunil&mithi.com
-23132
- Canadian Net
- Dave Foster
- dave&ionsys.com
-23133
- IzhInformProject
- Vadim V. Mayshev
- mvv&infotrust.ru
-23134
- Skillsunited.co.uk <http://Skillsunited.co.uk>
- Shaun Wakefield
- shoobster&gmail.com
-23135
- Articon Integralis AG
- Patrick Schraut
- patrick.schraut&integralis.de
-23136
- Warweus S.r.l
- Luigi Belli
- gigi&warweus.com
-23137
- Altinity Limited
- James Peel
- info&altinity.com
-23138
- Reutlingen University
- Jürgen Brenner
- Juergen.Brenner&Reutlingen-University.DE
-23139
- Software Eginerring Associated Consultants, Inc
- Susan Jung
- ssj&seac.bc.ca
-23140
- Cybernetik.net
- Kristofer Pettijohn
- krishoppa&cybernetik.net
-23141
- HOCHIKI CO.,LTD
- Masahiko Nemoto
- mnemoto&hochiki.co.jp
-23142
- Akademia Swietokrzyska
- Artur M. Piwko
- artur.piwko&pu.kielce.pl
-23143
- Peterson Packaging Oy
- Marja Terenius
- marja.terenius&petersonpackaging.fi
-23144
- Defenxis Sdn Bhd
- Syahrul Sazli Shaharir
- sazli&defenxis.com
-23145
- ExtendMedia Inc.
- Bruce Martins
- bmartins&extend.com
-23146
- HOYA
- Cyril GIRONDE
- cyril.gironde&hoya.fr
-23147
- VIMESA, VIDEO MEDIOS S.A.
- Ramón Femenía
- rfemenia&vimesa.es
-23148
- Dr. Peter Koch EDV Dienstleistungen
- Dr. Peter Koch
- iana.pkoch&dfgh.net
-23149
- Typodata
- Martin Kaeser
- m.kaeser&typopharma.com
-23150
- MoCoTec Mobile Communication Technologies
- Alexander Klupsch
- a.klupsch&mocotec.de
-23151
- SeeTec Communications GmbH & Co. KG
- Christoph Weser
- christoph.weser&seetec.de
-23152
- HVB Leasing GmbH
- Martin Zachewicz
- martin.zachewicz&hvbleasing.de
-23153
- Cloanto Corporation
- Takeo Sato
- ts-iana&cloanto.net
-23154
- AIT Austrian Institute of Technology GmbH
- Andreas Zoufal
- andreas.zoufal&ait.ac.at
-23155
- SOFTWISE DEVELOPMENT
- Dan Iulian Trutia
- office&softwise.ro
-23156
- Vitec Group Communications Limited
- Engineering
- vgc.uk&vitecgroup.com
-23157
- Theobit GmbH
- Lothar Feige
- Lothar.Feige&Cluster-Labs.com
-23158
- CCIS sprl
- Jacques Petit
- japetit&ccis.be
-23159
- eventIS Software Solutions B.V.
- Harry Koiter
- harry.koiter&eventis.nl
-23160
- Geneous Software AG
- Sorin Costea
- sorin.costea&geneous.com
-23161
- Aran Technologies
- Jim Donnelly
- JDonnelly&arantech.com
-23162
- Ecole Supérieure d'Informatique
- Pierre BETTENS
- pbettens&heb.be
-23163
- Defensor del Pueblo
- Eduardo Cunha Rodríguez
- ecunha&soluziona.com
-23164
- Revieworld Ltd
- Ben Griffiths
- ben&revieworld.com
-23165
- SAFE-Biopharma Association
- Terry Zagar
- terry.zagar&ngc.com
-23166
- Automatyka
- Marek Hajduk
- hajmar&interia.pl
-23167
- Operation Mobilisation
- Matt Phillips
- mattp+iana&ict.om.org
-23168
- Orchard View Community Network
- Alan Peckham
- 20050420iana&orchardview.net
-23169
- Sigma Systems Canada Inc.
- Brian Cappellani
- Brian.Cappellani&sigma-systems.com
-23170
- Verizon Card Operations
- Mark Stallcup
- mstallcup&verizongni.com
-23171
- Servergraph
- Lindsay Morris
- lmorris&servergraph.com
-23172
- Teletronics Technology Corp
- John Roach
- jroach&ttcdas.com
-23173
- SubZeroNet
- Klaus Alexander Seistrup
- klaus&seistrup.dk
-23174
- WildBlue Communications, Inc.
- Aakash Sahai
- asahai&wildbluecorp.com
-23175
- WorkCompCentral.com, Inc.
- David DePaolo, Esq.,
- david&workcompcentral.com
-23176
- SpeedPartner GmbH
- Michael Metz
- hostmaster&speedpartner.de
-23177
- Cirond Corporation
- Tim Thompson
- tthompson&cirond.com
-23178
- Helix Ltd.
- Pavel Yablokov
- apple&tick.ru
-23179
- Bilfrost Incorporated, Inc.
- Jonas Gyllensvaan
- jonas&bilfrost.com
-23180
- TELEVES S.A.
- Modesto Gomez
- modgom&televes.com
-23181
- Weed Instrument Company Inc.
- Tarrance Graham
- tgraham&weedinstrument.com
-23182
- Sussman Automotive
- Todd Gerbert
- tgerbert&sussmanauto.com
-23183
- Amnis Limited Company
- Yoshihiro Kawabe
- sowhat&amnis.co.jp
-23184
- Applied Microsystems, Inc.
- Ross Toole
- ross&amicro.biz
-23185
- Isensix, Inc.
- David Mayer
- dmayerx&isensix.com
-23186
- 4A Solutions Ltd.
- Andrew Holt
- andrew.holt&4asolutions.co.uk
-23187
- Rene Thomas Folse Inc.
- Rene Thomas Folse
- rene.folse&maxi.net
-23188
- Maxi Net Services
- Rene Thomas Folse
- rene.folse&maxi.net
-23189
- NETPLEX LLC
- John Donagher
- johnd&netplex.net
-23190
- Interland, Inc
- Scott Cudney
- rcudney&interland.com
-23191
- Nvia Gestion de Datos S.L
- Victor Lamas Sanchez
- victor&lagalaxia.net
-23192
- Norlight Telecommunications
- Richard Swagel
- isinfo&norlight.com
-23193
- M-Vision
- Martin Miller
- martin&m-vision.com
-23194
- Northwest University
- Nathan Henderson
- network&northwestu.edu
-23195
- Afar Communications Inc.
- Lars Poulsen
- lpoulsen&afar.net
-23196
- DeveTel S.A.
- Ricardo García Márquez
- rgarcia&devetel.cl
-23197
- HAN InfoComm
- Choi, Yoo jun
- roser&shinbiro.com
-23198
- One Cow Standing
- Nickie Buckner
- nbuckner&nc.rr.com
-23199
- MCGV Stack
- Dean Strik
- dean&stack.nl
-23200
- NetFocus Technologies, Inc.
- Welson Lin
- Welson.Lin168&msa.hinet.net
-23201
- ACI Communications, Inc.
- Donald C Dove
- ddove&acicomms.com
-23202
- zinfo.us
- Qin Zhou
- zcleavon&yahoo.com
-23203
- tasmanstudios Ltd.
- Neil Bertram
- neil&tasmanstudios.co.nz
-23204
- Stratacache, Inc.
- Li Chou
- lchou&stratacache.com
-23205
- Alcormizar Inc.
- Marc-Andre Gosselin
- mag&alcormizar.com
-23206
- Clinical DataFax Systems Inc.
- Martin Renters
- martin&datafax.com
-23207
- BIA B.V.
- Frans van Dorsselaer
- frans&biabv.com
-23208
- Rhodanie Systemes et Reseaux Sarl
- Ion Marculescu
- ionm&bluewin.ch
-23209
- Union Compagnonnique
- Stephane GERBAUD
- stephane.gerbaud&laposte.net
-23210
- Pyramid Robotics
- Mr. Botto
- leeism&earthlink.net
-23211
- Queue Global Information Systems Corp.
- David Eppert
- davide&thinksecurity.net
-23212
- Cuttriss Consulting
- Paul Cuttriss
- paul&cuttriss.com
-23213
- Wilico Wireless Networking Solutions SA
- Josep Cedo
- josep.cedo&futurlink.com
-23214
- j2anywhere.com
- Alexander Hartner
- support&j2anywhere.com
-23215
- Netensia
- S. Namèche
- sebastien.nameche&netensia.fr
-23216
- Bawue.Net e.V.
- Andreas Thienemann
- andreas&bawue.net
-23217
- Chambre de Commerce et d'Industrie de Brest
- PIerre-Yves NICOLAS
- admin&cci-brest.fr
-23218
- Betanetworks Ltd.,ShangHai, China
- huangzhiming
- hzm&betanetworks.com.cn
-23219
- DriveTime Automotive Group, Inc.
- Van Patterson
- 5000&drivetime.com
-23220
- ICO Ltd.
- JOO WON LEE
- jwl&ico.co.kr
-23221
- ROCSYS Technologies Pvt.Ltd.
- Priyanka
- priyankaji&rocsys.com
-23222
- ESI SOFTWARE
- Rob Raphael
- rraphael&esisoft.us
-23223
- StartCom Ltd.
- Eddy Nigg
- eddy_nigg&startcom.org
-23224
- Sutton Group Realty Services Ltd.
- Benson Wong
- benwong&sutton.com
-23225
- Maxitel S/A
- Joao Artur Gramacho
- jgramacho&timmaxitel.com.br
-23226
- Dolphin Software
- Scott Horn
- shorn&dolphinmsds.com
-23227
- Kayak Interactive
- Andy M
- andym&kayakinteractive.com
-23228
- City of Las Vegas Nevada
- Erin Wells
- dnsadmin&lasvegasnevada.gov
-23229
- oneK Internet Solutions Inc.
- Andrew Kopp
- oid&1k.ca
-23230
- Captara Corporation
- Patrick Mebine
- pmebine&captara.com
-23231
- tekVizion PVS, Inc
- Dan Tifrea
- dtifrea&tekvizion.com
-23232
- TrackAbout, Inc.
- Larry Silverman
- lsilverman&trackabout.com
-23233
- Webdoeds
- Guido Stulemeijer
- g.stulemeijer&webdoeds.nl
-23234
- HOPS International Inc
- John Moses
- jmoses&hops.com
-23235
- DTI2
- Jorge Boncompte
- jorge&dti2.net
-23236
- Escher Group Ltd
- Tim Grady
- Tim.Grady&EscherGroup.com
-23237
- Softier Inc.
- Gery Kahn
- gxk&softier.com
-23238
- FCI Broadband Communications Inc.
- Raymond Wu
- rwu&fcibroadband.com
-23239
- Aquest Systems, Incorporated
- Brian Wehrung
- bwehrung&aquestsystems.com
-23240
- the Centers
- Palmer Sample
- mis&thecenters.us
-23241
- Protection and Guard Service
- Burlacu Liviu
- burlacu.liviu&spp.ro
-23242
- SDRC Inc.
- Sanh Trinh
- sanh.trinh&sdrcinc.net
-23243
- Algorab SRL
- Cristiano Tonezzer
- tonezzer&algorab.com
-23244
- Improbable Universe
- Sean Ostermann
- osty&mts.net
-23245
- Westdeutsche ImmobilienBank
- Mr. Koehler, Andreas
- andreas.koehler&westimmobank.com
-23246
- Harmonia Inc.
- Aaron Reffett
- areffett&harmonia.com
-23247
- Wm-Data PARERE
- Martin Pettersson
- mrpte&wmdata.se
-23248
- TRE-CE
- Alexandre Oliveira
- lionbatata&nikotel.com
-23249
- National Center for Biotechnology Information (NCBI)
- Charles L. Montour
- montour&ncbi.nlm.nih.gov
-23250
- fgn GmbH
- Joerg Mayer
- mayer&fg-networking.de
-23251
- Servicios Corporativos Gefe S.A. de C.V.
- Titos Dragonas
- tdragonas&grupogaba.com.mx
-23252
- MYDOM
- Schaefer, Dirk Alexander
- info&mydom.ath.cx
-23253
- Premier Image Corporation
- Russell Mangel
- russ&piclv.com
-23254
- Leebel Services
- Jonathan Barnes
- jonathan&leebel.com.au
-23255
- 1D Solutions
- Evan Shelton
- evan&1dsolutions.com
-23256
- Wit-Sys Consulting Corporation
- Gabor PARDI-KIS
- gabor.pardi-kis&wit-sys.hu
-23257
- OSIsoft, Inc.
- Eric Tam
- etam&osisoft.com
-23258
- SdO Information Technology s.r.l.
- Ruggero Bonghi
- ruggero.bonghi&sdo.it
-23259
- Stadt Frankfurt am Main
- Jens Langsdorf
- jens.langsdorf&stadt-frankfurt.de
-23260
- Paradial AS
- Håkon Zahl
- hakon&paradial.com
-23261
- Structured Information Management (SIM) Project
- MERIGHI Marcus
- SIM&Tor.AT
-23262
- Obiect Soft SRL
- Catalin Lichi
- catalin&obs.ro
-23263
- EXCELIANCE
- Christophe Pouillet
- cpouillet&exceliance.fr
-23264
- Unicon Solutions NV
- Marco Spoel
- m.spoel&unicon-solutions.com
-23265
- Hedgehog Computer Services
- Peter Clark
- peter-clark&bethel.edu
-23266
- Frank Lowe Rubber & Gasket Co., Inc.
- Gerry Zahn
- gerryzahn&franklowe.com
-23267
- Certic·mara S.A.
- Leonardo Maldonado
- admin&certicamara.com
-23268
- Sunwayworld Infomation Technology Inc.
- Long Zhong
- squall_zhong&msn.com
-23269
- NeoNova Network Services Inc.
- Brian Exelbierd
- bex&neonova.net
-23270
- AW Comp
- Alexander N. Wittig
- awi&aw-comp.de
-23271
- Protium Technologies, Inc.
- Richard Gawlik
- adminiana&protiumtechnologies.com
-23272
- Runcom Technologies Ltd.
- Ofer Zimmerman
- shaiko&gmail.com
-23273
- Eletech S.r.l.
- Giuseppe Malcangio
- g.malcangio&eletech.it
-23274
- Mindsphere AS
- Helge Andersen
- helge&mindsphere.no
-23275
- Pro Help
- David Vella
- dvella&hotmail.com
-23276
- Cooperativa dos Agricultores da Regiao de Orlandia
- Marcos Paulo Serafim
- mpserafim&carol.com.br
-23277
- ClusterVision BV
- Martijn de Vries
- martijn&clustervision.com
-23278
- Computer Royalties
- Russell Mangel
- russell&tymer.net
-23279
- Picis, Inc.
- Greg Cooper
- greg_cooper&picis.com
-23280
- DigitalFreaks.org
- Chad Ziccardi
- cz&digitalfreaks.org
-23281
- Liaoning Mobile Communications CO.LTD
- Bobby Li
- helpmeboy&yahoo.com.cn
-23282
- iBright
- Phillip Needham
- phillip&ibright.net
-23283
- I/O Concepts, Inc.
- Andrew Porter
- domains&ioconcepts.com
-23284
- Identify Technology Solutions
- Jeremy Zuniga
- jzuniga.iana.org&itsasolution.com
-23285
- STRATUM-IP
- Georges Goncalves - Stéphane Bunel
- noc&stratum-ip.net
-23286
- Gottfried Hamm KommunikationsSysteme
- Gottfried Hamm
- ghamm&ghks.de
-23287
- Joint Concepts Development
- J.J.J. Carels
- joop.carels&3v8.net
-23288
- Hands-On Security, Inc.
- IANA Contact
- admin&handsonsecurity.com
-23289
- Dandy Connections, Inc.
- Min Hwang
- min&dandy.net
-23290
- Shaanxi Normal University
- Qiu Jianbo
- qjb&snnu.edu.cn
-23291
- SigValue Technologies
- Kobi Alfandari
- kobi&sigvalue.com
-23292
- Aternity Inc.
- Yair Iny
- yair.iny&aternity.com
-23293
- Zafin Labs
- Andrew McCue
- amccue&zafinlabs.com
-23294
- GeFoekoM e.V.
- Hannes Kraus
- pkxl2&pkxl2.de
-23295
- Ingenium NET SRL
- Bogdan Hojda
- admin&ingenium.nt.ro
-23296
- Yawarra Information Appliances Pty Ltd
- Paul McGowan
- iana&yawarra.com.au
-23297
- schlittermann -- internet & unix support
- Heiko Schlittermann
- hs&schlittermann.de
-23298
- WestLotto GmbH & Co oHG
- Dr Eric Schreiber
- Eric.Schreiber&westlotto.de
-23299
- LRF
- Per Ekstorm
- per.ekstorm&lrf.se
-23300
- ABEM Instrument AB
- Per Hedblom
- per.hedblom&abem.se
-23301
- Datenverarbeitungszentrum Halle GmbH
- Dr. Martin Huth
- drmhuth&dvz-halle.de
-23302
- LINBIT Information Technologies GmbH
- Philipp Richter
- philipp.richter&linbit.com
-23303
- Dot Communications
- System Admins
- sysadmins&dot.com.au
-23304
- Codan Limited
- Kjell Genborg
- kjell.genborg&codan.com.au
-23305
- Woojyun Systec
- SahngOh Jung
- sahngoh&woojyun.co.kr
-23306
- BeiJing Techstar Ltd.
- Han Rui
- hr&pps.com.cn
-23307
- Machaira Enterprises Pty Ltd
- David Bullock
- david.bullock&machaira.com.au
-23308
- NATIONAL CENTER FOR HIGH-PERFORMANCE COMPUTING
- Eugene Yeh
- cyeh&nchc.org.tw
-23309
- AR Infotek Inc.
- William Chen
- williamchen&arinfotek.com.tw
-23310
- OFiR a-s
- Casper Angelo
- root&ofir.com
-23311
- Macab AB
- Markus Olsson
- markus&macab.se
-23312
- IntelliCom Innovation AB
- Jens Jakobsen
- ianacontact&hms.se
-23313
- Tesla a.s.
- ing. Zdenek Kotalik
- kotalik&tesla.cz
-23314
- Plantron AB
- Dirk Handzic
- dirk&plantron.se
-23315
- Boldon James Ltd
- John Hodgkinson
- john.hodgkinson&boldonjames.com
-23316
- Niedersaechische Forstliche Versuchsanstalt
- Jochen Eggemann
- Jochen.Eggemann&nfv.gwdg.de
-23317
- Heinrich Bauer Verlag KG
- Daniel Siegers
- daniel.siegers&bauerverlag.de
-23318
- Comune di Bologna
- Massimo Carnevali
- massimo.carnevali&comune.bologna.it
-23319
- SIRLAN Technologies SAS
- Olivier Abdoun
- oabdoun&sirlan.org
-23320
- Orange Romania SA
- Iustin Pop
- iustin.pop&orange.ro
-23321
- Frank Juedes EDV-Service
- Frank Juedes
- Frank.Juedes&edv-service-juedes.com
-23322
- Aircom International
- Dominic Kirsten
- dominic.kirsten&aircom.co.uk
-23323
- Cable & Wireless Telecommunication Services GmbH
- Martin Mersberger
- martinm&cw.net
-23324
- swarco
- Michael Rychlik
- michael.rychlik&swarco.com
-23325
- KOTIO
- Sylvain MEILARD
- sylvain.meilard&kotio.com
-23326
- Association des diplômés des formations Systèmes de
-Télécommunications et Réseaux Informatiques
- Webmaster
- webmaster&wwstri.org
-23327
- VAD Video-Audio_Design GmbH
- Michael Strey
- strey&vadgmbh.de
-23328
- quadraginta-duo.de
- Axel Miesen
- axel.miesen&web.de
-23329
- McDaniel College
- Benjamin A. Koger
- bkoger&mcdaniel.edu
-23330
- CommScope Inc. of North Carolina
- Robert Smith
- rsmith&commscope.com
-23331
- Johnson Bible College
- Josh Kelley
- josh&jbc.edu
-23332
- ADCC Inc.
- HanQiang
- hanqiang&yeah.net
-23333
- Computer Resource Team, Inc.
- Craig Warman
- crwarman&crtinc.com
-23334
- Gorman Electronics,Inc.
- Pete Kolonko
- pete&gormanelectronics.com
-23335
- Hampton Roads Maritime Association
- Mick Drevyanko
- mick&portofhamptonroads.com
-23336
- VELUX A/S IT Department
- Martin D. Nielsen
- mdn.it&velux.com
-23337
- Cybertrust
- Dhiren Pankhania
- dhiren.pankhania&cybertrust.com
-23338
- OpenS Tecnologia e Processamento de Dados Ltda.
- André Nazário de Souza
- andre&opens.com.br
-23339
- JUNG Analog- und Digital-Systemtechnik GmbH
- P. Jung
- pjung&jung-systemtechnik.de
-23340
- Kedah Electronics Engineering
- Eugene Chepurnykh
- eugene&kedah.ru
-23341
- Astute.BIZ, Inc.
- Lloyd Fernandes
- fernsastute&patmedia.net
-23342
- Pathfinder Associates LLC
- LDAP Role
- support&pathf.com
-23343
- Invensys/Wonderware
- Vijay Anand
- vijay.anand&wonderware.com
-23344
- AXS-One Inc.
- Krishna Mangipudi
- kmangipudi&axsone.com
-23345
- System Control Networks
- PHILLIP SALZMAN
- phill&sysctl.net
-23346
- Voya Financial (formerly 'CitiStreet, LLC')
- Ted Tickell
- Theodore.Tickell&voya.com
-23347
- Infra Resource, LLC.
- Rail Aliev
- rail&iqchoice.com
-23348
- PC KNOW HOW CENTER Brachhold GmbH
- Mr. Ulrich Brachhold
- u.brachhold&pkhc.biz
-23349
- NTT GIN
- John Heasley
- heas&shrubbery.net
-23350
- Vertasent, LLC
- John Schlack
- john.schlack&vertasent.com
-23351
- Watertown Public Schools, Watertown, MA, USA
- George Skuse
- gskuse&watertown.k12.ma.us
-23352
- Cognis Corporation
- Larry Pinsky
- larry.pinsky&cognis.com
-23353
- Intelaware
- Jon Pounder
- jon&pounder.com
-23354
- Niska AB
- Hakan Niska
- hakan&niska.com
-23355
- Gosh Enterprises, Inc.
- Seawon Choi
- schoi&charleys.com
-23356
- TRYSKEL
- Mathieu ALORENT
- mathieu&alorent.com
-23357
- TwentyFourNine (formerly 'oogyNetworks')
- Ruben Arakelyan
- ruben.arakelyan&twentyfournine.co.uk
-23358
- Typhon SARL
- Jules Vo-Dinh
- root&typhon.net
-23359
- Hexod
- Philippe Muller
- philippe.muller&gmail.com
-23360
- Pacific Union College
- Jon Falconer
- jfalconer&puc.edu
-23361
- TEConcept GmbH
- Franz-Otto Witte
- otto.witte&teconcept.de
-23362
- Leviton Mfg Co.
- Mayra Silbaugh
- msilbaugh&leviton.com
-23363
- Sumach GB Ltd
- Martin Burlock
- mburlock&freenetname.co.uk
-23364
- Bryn Mawr College
- Matthew Rice
- mrice&brynmawr.edu
-23365
- Websense, Inc.
- Steve Kelley
- skelley&websense.com
-23366
- ValueClick, Inc.
- Antonio Varni
- avarni&cj.com
-23367
- Host Europe GmbH (formerly 'm networking')
- Malte von dem Hagen
- noc&heg.com
-23368
- GHK Wireless
- David Knippelmier
- widepipe&gmail.com
-23369
- Shawn Church, Information Systems Consultant
- Shawn Church
- sl_church&sbcglobal.net
-23370
- Joel Davis
- Joel Davis
- deJoelness&gmail.com
-23371
- BestInfo Cyber Technology Co.,Ltd
- xiaoyu
- xiaoyu&bestinfo.com.cn
-23372
- Bloombase Technologies Ltd
- Jemmee Yung
- jemmee.yung&bloombase.com
-23373
- NEC Kansai, Ltd.
- Yamada Satoshi
- yamada83&kansai.nec.co.jp
-23374
- REDtone Telecommunications Sdn. Bhd.
- Hew How Chee
- howchee.hew&redtone.com
-23375
- Islandwide Express
- Daniel Pastrana
- dpastrana&islandwide.com
-23376
- Hyundai Network System, Inc.
- Yun, Hae-Sook
- snmp&hdnetsys.co.kr
-23377
- IT Solution Services Co.,Ltd.
- Takeshi Inatsugu
- inatsugut&it-ss.co.jp
-23378
- T&C Technology
- Oh, Byoung Chang
- bcoh&tnctec.co.kr
-23379
- HUK-COBURG VVaG
- Uwe R. Dietz
- uwe.dietz&huk-coburg.de
-23380
- Datadec Online, S.A.
- Jose Carlos Toledo
- jctoledo&datadec-online.com
-23381
- Die GRUENEN
- Alex Seppelt
- alex.seppelt&gruene.at
-23382
- Swissphone Telecom AG
- Harald Pfurtscheller
- harald.pfurtscheller&swissphone.com
-23383
- Azienda Sanitaria Locale N.4 Chiavarese
- Simone Lightwood
- slightwood&asl4.liguria.it
-23384
- Aptus Elektronik AB
- Jesper Svensson
- snmp&aptus.se
-23385
- GESIS Gesellschaft für Informationssysteme mit beschraenkter Haftung (formerly 'GESIS mbH')
- Timo Schlueter
- timo.schlueter&gesis.de
-23386
- Pole Universitaire Leonard de Vinci
- pascal valois
- pascal.valois&devinci.fr
-23387
- iXTS Software GmbH
- Armin Orthmann
- iana&ixts.de
-23388
- Hypercube Systems Ltd.
- Sebastian James
- seb&hypercubesystems.co.uk
-23389
- IZB München-Frankfurt a. M. GmbH & Co. KG
- Wolf Sommer
- ZZG-IZB10010-Security_Management&izb.de
-23390
- easyWAN GmbH
- Thomas Bergler
- t.bergler&easywan.net
-23391
- Atomwide Ltd.
- Phil Chapman
- phil&atomwide.com
-23392
- Insightix Ltd.
- Edo Yahav
- standards&insightix.com
-23393
- LLC CTI - Center of Telephony Integration
- Gleb Berezikov
- G.Berezikov&cti.ru
-23394
- Groupe Wesford
- Nicolas MELIN
- n.melin&wesford.fr
-23395
- Trustedtec
- Kay Petzold
- kay&trustedtec.org
-23396
- Neighbourhood Link
- Arthur Niu
- arthurn&nlinkces.com
-23397
- Fine Point Technologies, Inc
- Bob Carrick
- bcarrick&finepoint.com
-23398
- MTS Allstream Inc.
- Bogdan Moldoveanu
- bogdan.moldoveanu&allstream.com
-23399
- The National Science Foundation
- William Altmire
- waltmire&nsf.gov
-23400
- Midcontinent Communications
- Aaron Thoreson
- aaront&midco.net
-23401
- Sliwa.EU.org Network
- Kuba Sliwa
- kuba&sliwa.eu.org
-23402
- Interstar Technologies Inc.
- Sebastien Boire-Lavigne
- sboire&interstarinc.com
-23403
- Sharp HealthCare
- Technical Services
- technical.services&sharp.com
-23404
- DAVANTEL
- JOSE R. SALVADOR COLLADO
- jrsalvador&davantel.com
-23405
- JSC Sahalinmorsvjaz
- Ilya S. Anpilov
- ucsmc&smcom.ru
-23406
- LDAPtive Pty Ltd
- Jamie M Vachon
- jamie.vachon&levelonenetworks.com
-23407
- Bryant Unlimited
- Simon Quill
- simon&bryant-unlimited.co.uk
-23408
- Rhombus Systems Ltd.
- David Hartley
- dhartley&rhombus.co.uk
-23409
- Torque.net inc.
- Michael Harris
- mharris&torque.net
-23410
- Hackstrike Ltd.
- Tali Gurevich
- tali&hackstrike.com
-23411
- ServInfo
- Christian Tardif
- christian.tardif&servinfo.ca
-23412
- Arcontech Ltd
- Jason Martin
- jason&arcontech.com
-23413
- Melange Corporation
- Hideharu Itoh
- hitoh&melange.co.jp
-23414
- Ilmarinen Mutual Pension Insurance Company
- Jere Matilainen
- ianacontact&ilmarinen.fi
-23415
- nordsys.com
- Antoine Sauma
- tonysauma&hotmail.com
-23416
- MIT-xperts GmbH
- Johannes Schmid
- info&mit-xperts.com
-23417
- COPITEC - Consejo Profesional de Ingeniería de Telecomunicaciones,
-Electrónica y Computación
- Antonio FOTI
- presidencia&copitec.org.ar
-23418
- Gridlogix, Inc.
- David Kempf
- dkempf&gridlogix.com
-23419
- Talk24
- Richard Smith
- richard&talk24.com
-23420
- APS systems AG
- Martin Schmid
- scm&apsag.com
-23421
- Altana Pharma AG
- Dieter Saken
- dieter.saken&altanapharma.com
-23422
- Instituto Superior de Contailidade e Administracao de Coimbra
- Helder Canais
- hcanais&iscac.pt
-23423
- Osmosys S.A.
- Mariusz Martusewicz
- m.martusewicz&osmosys.tv
-23424
- Maximum Impression, LLC
- Matt Dittbenner
- matt&plauditdesign.com
-23425
- QS Technologies, Inc.
- Kevin Davidson
- kdavidson&ntst.com
-23426
- Louverturenet
- Didier Ambroise
- louverturenet&yahoo.fr
-23427
- The Home Depot Supply MRO
- Erick Nelson
- erick_nelson&homedepot.com
-23428
- NOC, School of Engineering, Morgan State University
- Clifton Wood
- cwood&eng.morgan.edu
-23429
- Eurocis
- Philippe Duveau
- philippe.duveau&eurocis.fr
-23430
- Lumigent Technologies, Inc.
- Ashley A Pinto
- ashleyp&lumigent.com
-23431
- CAMed
- Ralf D. Zwoenitzer
- ralf&zwoenitzer.de
-23432
- Packet Island Inc.
- Praveen Kumar
- info&packetisland.com
-23433
- BGComp Inc.
- Sheu Liang Jyi
- blackguy&bgcomp.com.tw
-23434
- Georgia Technology Authority
- Michael Porter
- mporter&gta.ga.gov
-23435
- Rock Holdings Inc.
- Keith Weinbaum
- oidadmin&quickenloans.com
-23436
- Mexicana de Electromecanicos SA de CV
- Cesar Hernandez
- chernandez&dks-key.com
-23437
- Don Bosco Institute of Technology
- Deepak Patil
- ddpatil&donboscoit.ac.in
-23438
- Beijing Wandong Medical Equipment Co. Ltd.
- Mou Xiaoyong
- mouxiaoyong&wdmri.com
-23439
- HurdFr
- Dequenes Marc
- duck&hurdfr.org
-23440
- Avvenu Inc.
- Dave Irvine
- dirvine&avvenu.com
-23441
- R.A.Systems
- Hayashi Yoshihide
- hayashi&ras.co.jp
-23442
- RockMon IT-Consulting
- Jochen Ortwein
- development&rockmon.de
-23443
- miniprobe
- Robert Parusel
- info&miniprobe.de
-23444
- LATECOERE
- TRESSIERES Jean-Pierre
- jp.tressieres&latecoere.fr
-23445
- Jordan Curzon
- Jordan Curzon
- jordan&curzons.net
-23446
- H5-Group
- Ingo Böhm
- ingoboehm&web.de
-23447
- Opsware Inc.
- Ajay Gummadi
- ajay&renditionnetworks.com
-23448
- Avitech AG
- Peter Rudolph
- Peter.Rudolph&avitech-ag.com
-23449
- Tripod Technology Group, Inc.
- Richard Sand
- info&tripodtechnologygroup.com
-23450
- W. A. Strosberg
- Bill Strosberg
- bill&strosberg.com
-23451
- Wallenius Wilhelmsen Lines
- Roger Carlsen
- roger.carlsen&2wglobal.com
-23452
- SunGard Availability Services
- Mike Simkins
- mike.simkins&sungardas.com
-23453
- KungFoo
- Hubert Iwaniuk
- neotyk&kung-foo.kicks-ass.net
-23454
- Belzebyte Network
- Patrick Vander Linden
- pvdlinden&belzebyte.net
-23455
- Exceptional Software Strategies, Inc.
- Kevin Miller
- Sysadmin&ExceptionalSoftware.com
-23456
- NetCarrier Inc
- Network Operations
- noc&netcarrier.com
-23457
- AMVESCAP PLC
- Drew Knox
- drew.knox&amvescap.com
-23458
- National Cybernet Security LTD
- liukang
- liukang&ncs-cyber.com.cn
-23459
- Chunghwa Telecom Co., Ltd.
- Wen-Cheng Wang
- wcwang&cht.com.tw
-23460
- Profilium Inc.
- Jean-Luc Wasmer
- jlwasmer&profilium.com
-23461
- In4S, Inc.
- Daisuke Iritani
- daisuke_iritani&in4s.co.jp
-23462
- Unixconn
- Maxim Bourmistrov
- maxim.bourmistrov&unixconn.com
-23463
- Kolporter Info S.A.
- Dariusz Sznajder
- Dariusz.Sznajder&kolporter.com.pl
-23464
- Department of IT, University of Defense, Czech Armed Forces
- Martin Hlavacek
- hlavaczech&gmail.com
-23465
- VIVOTEK INC.
- Pony Che
- pony&vivotek.com
-23466
- Vision Fire and Security
- Phil Robertson
- philr&adpro.com.au
-23467
- Shanghai INFOPLS Network Technology Co.,Ltd. , China
- Wang,Xing
- wangxing&infopls.net
-23468
- NGC Systems Sdn Bhd
- Leng Chye, Ooi
- lengcai&ngc.com.my
-23469
- opensoul.org
- Brandon Keepers
- webmaster&opensoul.org
-23470
- LOGATIQUE
- Eric Profichet
- eric.profichet&logatique.fr
-23471
- Digita Oy
- Esa Maunula
- esa.maunula&digita.fi
-23472
- mangoART.AT - Web- und Multimediatechnik, Softwareentwicklung
- STANGL Mario
- Mario.Stangl&mangoART.AT
-23473
- Panda Software International S.L.
- Enrique Garcia
- ianaid&pandasoftware.com
-23474
- EITB
- Iratxe Blanco
- blanco_iratxe&eitb.com
-23475
- Softel Group
- Russ Wood
- russ.wood&softel.co.uk
-23476
- British Educational Communications and Technology Agency
- John Chapman
- john.chapman&becta.org.uk
-23477
- DABiS AG
- Andreas Völlmin
- support&dabis.ch
-23478
- Provincia di Firenze
- Jurgen Assfalg
- j.assfalg&provincia.fi.it
-23479
- Sulake Corporation Oy
- Leo Jääskeläinen
- contact-iana.org&sulake.com
-23480
- Degussa Bank GmbH
- Oliver Schneider
- oliver.schneider&degussa-bank.de
-23481
- Infoaxis Ltd
- stuart clark
- stuart&infoaxis.biz
-23482
- Altobridge Ltd.
- Tim Moriarty
- tmoriarty&altobridge.com
-23483
- University of North Carolina Asheville
- David Reynolds
- dwr&unca.edu
-23484
- C .D.H. srl
- Dario Gnaccarini
- dgn&cdhsrl.it
-23485
- AusCERT - Australian Computer Emergency Response Team
- Viviani Paz
- v.paz&auscert.org.au
-23486
- NetCentrum Ltd.
- IT Administration Department
- provoz&netcentrum.cz
-23487
- Daxten Ltd
- Hitesh Varsani
- info.ie&daxten.com
-23488
- Technica Corporation
- James Saint-Rossy
- jsaint-rossy&technicacorp.com
-23489
- Visplex Association
- Judah Thornewill, C. R. O.
- judah.thornewill&visplex.net
-23490
- ENIDAN Technologies GmbH
- Per Jessen
- per.jessen&enidan.com
-23491
- CyberTech B.V.
- G.Stam
- g.stam&cybertech-telecom.nl
-23492
- LightCore Co., Ltd.
- Yoshiyuki Watanabe
- admin&lightcore.jp
-23493
- Aminfu Hudima
- Paul Hedderly
- paul+iana&mjr.org
-23494
- Mint Systems Ltd.
- David O'Connor
- david.oconnor&horsebridge.net
-23495
- IT-Pro Peter Lechner
- Peter Lechner
- office&it-pro.at
-23496
- Boursorama
- Frédéric Lefranc
- unix-fr&boursorama.fr
-23497
- Lswei
- Liao Shih Wei
- moli.sato&msa.hinet.net
-23498
- Shanghai Asia-Pacific Computer Information System Co, Ltd.
- Joe M. Leaf
- allah2129&163.com
-23499
- Siemens Programm- und Systementwicklung GmbH & Co. KG
- Mirko Jekal
- mirko.jekal&siemens.com
-23500
- Articy Computer System & Service
- Arthur TX Niu
- ou.yuan&gmail.com; arthur.niu&gmail.com
-23501
- SailBum Enterprises, LLC
- Reggie Rodgers
- iana&sailbum.com
-23502
- Renew Data Corp
- Jon Nials
- jnials&renewdata.com
-23503
- Arizona Foundation for Medical Care
- Michael Setto
- msetto&azfmc.com
-23504
- TWENTIETH CENTURY FOX FILM CORPORATION
- Joe Fuller
- joe.fuller&fox.com
-23505
- Programming/Design
- Joel Dubiner
- joel&dubiner.com
-23506
- Pleiades Consulting, Inc
- Jonathan Freedman
- jef&pleiades.ca
-23507
- salesforce.com
- Kristopher Wehner
- kwehner&salesforce.com
-23508
- EVI
- eric vernichon
- eric&vernichon.fr
-23509
- BVCompuworks
- Greg Varga
- gvarga&bvcompuworks.com
-23510
- Centro Cultural y Deportivo Tajamar
- Alfredo Abad Domingo
- aet&tajamar.es
-23511
- TELUS
- Eric Chartre
- eric.chartre&telus.com
-23512
- Copi Family
- Craig J Copi
- admin&copi.org
-23513
- Westline Security Ltd.
- Albert Hui
- avatar&west-line.net
-23514
- Michaels Stores Inc.
- Rick York
- yorkr&michaels.com
-23515
- TEKMOB, lda
- Santos Silva
- santos.silva&netcabo.pt
-23516
- CitiCards
- Andrew Kitzman
- andrew.kitzman&citigroup.com
-23517
- Leviton Voice And Data
- Hieu Pham
- hpham&levitonvoicedata.com
-23518
- Tomas Zoufaly
- Tomas Zoufaly
- zoufaly&slapak.net
-23519
- Regal-Beloit Corporation
- Scott Marquardt
- scott.marquardt&rbcmtg.com
-23520
- Unassigned
- Removed 2014-08-12
-
-23521
- Amherst County Public Schools
- David Childress
- dchildress&amherst.k12.va.us
-23522
- Volicon, Inc.
- Idan Gazit
- idan&volicon.com
-23523
- MT Consulting S.A.
- Pierre-Henry DELIEGE
- phdeliege&mt-consulting.com
-23524
- Weberhofer GmbH
- Johannes Weberhofer
- office&weberhofer.at
-23525
- Aleksey Barabanov
- Aleksey Barabanov
- alekseybb&mail.ru
-23526
- Auster Sistemas & Soluções de Informática Ltda.
- Ricardo Barone
- ricardo.barone&auster.com.br
-23527
- NewPage Corporation
- Ted Hill
- Ted.Hill&NewPageCorp.com
-23528
- The Laddie Group
- Bob Smith
- bsmith&linuxtoys.org
-23529
- APP!X S.R.L.
- Claudio Russo
- claudio.russo&appix.it
-23530
- State of Alaska, Enterprise Technology Services
- Luke Kreuzenstein
- luke.kreuzenstein&alaska.gov
-23531
- Practeo SA
- Marc Hauswirth
- marc&practeo.ch
-23532
- PLAN Australia Pty Ltd
- David Pinkerton
- davidp&planaustralia.com.au
-23533
- PJR.cc
- Paul Robinson
- me&pjr.cc
-23534
- Supertronic Spa
- Walter M. Oldoni
- walti&supertronic.it
-23535
- Holly Australia Pty Ltd
- Nathan Clark
- support&holly.com.au
-23536
- eNClue Co., Ltd.
- Cho Soon Yim
- csyim&enclue.com
-23537
- Shanghai Dreaming Information Technology Co., Ltd.
- Eric Qiu
- qjm&dreamingtech.com
-23538
- Jenston Technology Corporation Ltd.
- Raymond Sze
- raymond&jenston.com
-23539
- teamdzr
- Scott Brown
- dangerzone_03801&yahoo.com
-23540
- Cordys Holding B.V.
- Richard Quist
- rquist&cordys.com
-23541
- Emcore Corporation
- Albert Lu
- alu&emcore.com
-23542
- CryptoSign
- Nancy Lee Pope
- webmaster&cryptosign.tk
-23543
- iCONN
- Jimahn Kim
- jimahn&empal.com
-23544
- Allen ReSearch
- Rich Allen
- traf&mtaonline.net
-23545
- West Ridge Networks, Inc.
- Navneeth Kannan
- nkannan&westridgenetworks.com
-23546
- Wagner and Associates Groupware Services, Inc
- Brian Wagner
- bwagner&wagsworld.net
-23547
- IFSERCON COM s.r.l.
- ifsercon com
- ifsercon&gmail.com
-23548
- Elber S.r.L.
- Ing. Vittorio Lagomarsino
- v.lago&elber.it
-23549
- Toyo Networks & System Integration Co., Ltd.
- Toshiaki Saitoh
- macrenraku&dmy.magnus.nec.co.jp
-23550
- e-World Developments Ltd
- Stephen Phillips
- sp&ewdev.com
-23551
- ErgonomiX Software GmbH
- Kerstin Funke
- kerstin.funke&ergonomix.de
-23552
- JPS Communications
- David Nerge
- dave.nerge&jps.com
-23553
- Discover Financial Services, Inc.
- George Leedle
- georgeleedle&discoverfinancial.com
-23554
- PEMI
- Monika Januszewska
- biuro&pemi.pl
-23555
- contentteam GmbH
- Robert Stupp
- rstupp&contentteam.de
-23556
- Centre de Gestion Ocean
- Daniel NOIZET
- courrier&cgocean.com
-23557
- EEA communication solutions
- Gabriel Lachmann
- hostmaster&eea.sk
-23558
- IPsoft Inc.
- Mike Ghicas
- support&ip-soft.net
-23559
- United Information System Service Co., Ltd.
- Alec Chang
- alec_chang&uis.com.tw
-23560
- edreams
- Rodrigo Vargas Acevedo
- mi7_h4&yahoo.com
-23561
- Anite Deutschland GmbH & CO.KG
- Mathias Wohlfarth
- mwohlfarth&anite.de
-23562
- Smartware Computing
- Dave Smart
- Dave&Smart-Family.net
-23563
- DUX Inc.
- Takuya kiuchi
- root&dux.co.jp
-23564
- Schmidt GmbH
- Natalie Fisenko
- natalie_fisenko&gmx.de
-23565
- Panta Computer Systems
- Adhir Potdar
- adhir&pantasys.com
-23566
- Infohit Computers d.o.o.
- Mauricio Culibrk
- mauricio&infohit.si
-23567
- Georg-Christoph-Lichtenberg-Schule, Kassel
- Klaus Fueller
- KlausF&Schule.de
-23568
- Noel-Plus, s.r.o.
- Ludvik Vlcek
- l.vlcek&noel-plus.cz
-23569
- TeamWorx Productions Ltd.
- Brian Pederson
- brian&teamworx.net
-23570
- Soliton
- Ajrat Mansurov
- mansaf&soliton.com.ru
-23571
- IPBS-CNRS
- Laurent Bardi
- Laurent.Bardi&ipbs.fr
-23572
- WebMagician Global
- Brian Pederson
- security&webmagician.com
-23573
- Kids & Co g.e.V.
- Rene Scholz
- pcwerkstatt&kids-und-co.de
-23574
- TU Hamburg-Harburg
- Dirk Husung
- husung&tu-harburg.de
-23575
- Wayfinder Systems AB
- Pierre Larsson
- iana&wayfinder.com
-23576
- ADVIS Maciej Matysiak
- Maciej Matysiak
- administrator&advis.pl
-23577
- Enfo Partner Oy
- Veli-Matti Luotonen
- veli-matti.luotonen&enfo.fi
-23578
- MSC Vertriebs GmbH (formerly 'Smart Network Devices GmbH')
- Ulrich Rahmel
- urah&msc.de
-23579
- Centrica plc
- Richard Huntley
- richard.huntley&centrica.com
-23580
- Andritz Oy
- Mika Metsärinne
- mika.metsarinne&andritz.com
-23581
- Hacousto Holland
- Alex Angenent
- alex.angenent&hacousto.com
-23582
- ESEO
- Damien Piraud
- damien.piraud&wanadoo.fr
-23583
- APOS Systems Inc.
- Dan Clements
- dclements&apos.on.ca
-23584
- Logical Progression Ltd
- Kevin Campbell
- kevin&logicalprogression.net
-23585
- Bank Technologies Centre
- Aliaksandr L. Radkevich
- a_radkevich&btc.minsk.by
-23586
- Ralf Kirchner Systemanalyse
- Ralf Kirchner
- masterkir&gmx.de
-23587
- PROFIcomms s.r.o.
- Mr. Ales Popelka
- info&proficomms.cz
-23588
- FOI, Swedish Defence Research Agency
- Mats Ekman
- mek&foi.se
-23589
- Max Zinal's Number
- Max Zinal
- Zlat0&mail.ru
-23590
- F.I.A.S.A.
- Montomoli Giovanni
- fiasaced&assindustria.pr.it
-23591
- CCNY
- Shaoquan Lin
- lin&ccny.cuny.edu
-23592
- Iowa Counties Information Technology
- Scott Williams
- swilliams&co.marshall.ia.us
-23593
- Dipl.-Ing. Heiko Boesel
- Heiko Boesel
- iana&heiko-boesel.de
-23594
- EBI L.P.
- Robert Kelly
- robert.kelly&ebimed.com
-23595
- Virginia Employment Commission
- Christopher Nicholl
- christopher.nicholl&vec.virginia.gov
-23596
- pikkerton GmbH
- Lothar C. Feige
- Lothar.Feige&pikkerton.de
-23597
- Esica Terra Inc.
- Bruce Brandon Werner
- bwerner&esicaterra.com
-23598
- UX
- Steven Brunasso
- sbrunasso&gmail.com
-23599
- Studio Network Solutions
- Eric Newbauer
- enewbauer&studionetworksolutions.com
-23600
- Transora
- Jon Beyer
- steam&transora.com
-23601
- Emcom Systems
- Mark Zuckerman
- markz&voicenet.com
-23602
- Fulano.com.br S/A
- Mauricio Silva
- admin&fbiz.com.br
-23603
- Optellios
- Zhizhong Zhuang
- info&optellios.com
-23604
- GoldPocket Interactive, Inc.
- Rich Schiavi
- rschiavi&goldpocket.com
-23605
- Applications Plus, Inc.
- Steve Heggood
- steve&heggood.com
-23606
- DigiPen Institute of Technology
- Ryan Fulcher
- it&digipen.edu
-23607
- Mélix
- Thomas Bliesener
- iana&melix.com.mx
-23608
- Paul's Farm
- Paul A. Johnson
- paul&paulsfarm.com
-23609
- Ix Appliance, Inc.
- Duncan McGreggor
- duncan&adytumsolutions.com
-23610
- WDG s.c.
- Rafal Kupka
- rkupka&wdg.pl
-23611
- nLight, s.r.o.
- Radovan Semancik
- rse&nlight.sk
-23612
- Atlassian Software Systems
- Nick Faiz
- nick&atlassian.com
-23613
- JAPAN IMAGE & NETWORK INC.
- Makoto Kawahata
- snmp&jini.co.jp
-23614
- A. Wilton
- Art Wilton
- art&awilton.com
-23615
- HiFX IT & MEDIA SERVICES PVT. LTD.
- Siju Oommen George
- netadm.pub&hifx.net
-23616
- SYNCHROSOFT
- LOVISA Frank
- lovisa&synchrosoft.fr
-23617
- Deutsches Literaturarchiv Marbach
- Thomas Meyer
- Thomas.Meyer&dla-marbach.de
-23618
- Saima Avandero Spa
- Sandra Giampedraglia
- sgiampedraglia&saima.it
-23619
- SERGAS
- Javier Quiles
- javier.quiles.delrio&sergas.es
-23620
- Teltronix Ltd
- Mark Otridge
- mark.otridge&onetel.net
-23621
- Bechtel SAIC Company LLC
- Alan Claypool
- alan_claypool&ymp.gov
-23622
- European Patent Office
- Simon Tennant
- stennant&epo.org
-23623
- Icon Multimedia
- Julian Vicente
- julian&iconet.es
-23624
- První certifikaèní autorita, a.s.
- Petr Budiš
- sales&ica.cz
-23625
- Intechgral Inc.
- Matt Wisner
- mwisner69&comcast.net
-23626
- Poggs Computer Services
- Peter Hicks
- peter.hicks&poggs.co.uk
-23627
- Interlix
- Edward Mueller
- edwardam&interlix.com
-23628
- California State University Dominguez Hills
- Edgar Lazarian
- elazarian&csudh.edu
-23629
- SafeNet, Inc. (formerly 'Mykotronx, Inc.')
- Bill Becker
- bill.becker&safenet-inc.com
-23630
- Computer Aid, Inc.
- Jim Chrapowicz
- jimc&compaid.com
-23631
- Azalea Networks, Inc.
- Xu Zou
- xzou&azaleanet.com
-23632
- Sneha Technologies S.L.
- Jorge Borrego
- support&sneha-tech.com
-23633
- ipsys Communications AG
- Chris Schäke
- chris.schaeke&ipsys.com
-23634
- TC Automatisering
- Wouter Thielen
- w.thielen&tcautomatisering.nl
-23635
- colin.de
- Colin Leitner
- colin.leitner&colin.de
-23636
- Lycee Ader Bernay
- Patrice Treton
- patrice.treton&ac-rouen.fr
-23637
- Novartis Institutes og BioMedical Research Vienna GmbH & Co KG
- Benjamin Almeida
- benjamin.almeida&novartis.com
-23638
- Logilec
- Eric Proust
- eric.proust&logilec.fr
-23639
- ParsGroup Informationstechnologie GmbH
- Ferdinand Karner
- ferdinand.karner&parsgroup.at
-23640
- Enercon Ltd.
- Maxim Kagan
- maxim&enercon.co.il
-23641
- Cascade Ltd
- CY Chan
- chi-yuen.chan&pccw.com
-23642
- Tmidia Inc.
- John Lynch
- jlynch&tmidia.com
-23643
- bsecure.dk
- Martin Boller
- martin&bollers.dk
-23644
- Siemens Ltd., China
- Zou Yu
- yu.zou&siemens.com
-23645
- DAF Trucks
- Stephan van Veelen
- stephan.van.veelen&daftrucks.com
-23646
- Cell C (Pty) Ltd
- N Mojaenmore
- hdap&cellc.co.za
-23647
- SARL GALLET.info
- Sebastien GALLET
- sebastien&gallet.info
-23648
- ESV, LLC
- Julian I. Kamil
- julian.kamil&gmail.com
-23649
- Cornerturn, LLC
- Kevin Pratt
- khpratt&cornerturn.com
-23650
- Opendicom
- Jacques FAUQUEX
- jacquesfauquex&gmail.com
-23651
- Integrated Decisions and system Inc.
- Prafulla Girgaonkar
- pgirgaonkar&ideas.com
-23652
- Lewes Computer Services
- Nigel Mundy
- nigel&spam-filter.org.uk
-23653
- Cirrus Technologies Pty Ltd
- David Poole
- info&cirrustech.com.au
-23654
- AICHI ELECTRIC CO., LTD.
- Shinji Isaji
- isaji.shinji&adkk.co.jp
-23655
- CallDesk S.A.
- Eric Granados
- E.Granados&CallDesk.be
-23656
- Cult Hill Innovation Limited
- Peter McClelland
- info&culthill.com
-23657
- TEDIS, a.s.
- Alena Hrivnakova
- admin-ca&tedis.sk
-23658
- TUBITAK ULAKBIM
- Asli Zengin
- asli&ulakbim.gov.tr
-23659
- lars morich Kommunikationstechnik GmbH
- Lars Morich
- kontakt&morich-gmbh.de
-23660
- DRS Technologies, Inc, C2 Systems
- Richard T. Cerpa
- rcerpa&drs-c4i.com
-23661
- American TeleCare, Inc.
- Malcolm Gates
- malcolm.gates&americantelecare.com
-23662
- Blue Jungle, Inc
- Safdar Kureishy
- safdar.kureishy&bluejungle.com
-23663
- Storied Future Infrastructure
- Justin L. Karr
- jlkbiz&storiedfuture.com
-23664
- Federal Deposit Insurance Corporation
- James Mulroe
- jmulroe&fdic.gov
-23665
- wiselink
- Jack Jiao
- jiaoli&bupt.edu.cn;jiao_li21&163.com
-23666
- BeaufortWeb
- Christopher Cover
- christopher&beaufortweb.com
-23667
- FredNet
- Sjoerd de Boer
- shured&frx.nl
-23668
- Kaspersky Lab ZAO
- Ivan Moshkarin
- snmp&kaspersky.com
-23669
- Kyphon Europe
- Johny Van Genechten
- jvangenechten&kyphon-eu.com
-23670
- Nihon Kohden Corporation
- Yasuhiro Osawa
- Yasuhiro_Osawa&mb2.nkc.co.jp
-23671
- CIS Hollywood
- Robert Minsk
- iana&cishollywood.com
-23672
- nTime Servicos de Informatica e Comercio Ltda
- Thiago Figueiro
- thiago.figueiro&nTime.com.br
-23673
- Bluesoft sp z o.o.
- Michal Suszko
- msuszko&bluesoft.net.pl
-23674
- Edu Business Solutions
- Paul Thormahlen
- pault&edubusinesssolutions.com
-23675
- Foray Technologies Inc.
- Mont Rothstein
- mont&foray.com
-23676
- G&K Services inc.
- Scott Rowe
- SRowe&GKServices.com
-23677
- Colonial Fiji
- Isikeli Vuetaki
- ivuetaki&colonial.com.au
-23678
- PCTEL, Inc.
- Steven Stearns
- steve.stearns&pctel.com
-23679
- Diligence Consulting, L.L.C.
- Robert Sordillo
- rsordillo&diligence-consulting.com
-23680
- Eclipse SP LLC.
- Konstantin Kirenko
- info&eclipse-sp.com
-23681
- terreActive AG
- Roger Meier
- iana&terreactive.ch
-23682
- emuse Technologies Ltd.
- Ronan Geraghty
- r.geraghty&emuse-tech.com
-23683
- EDV-COMPAS GmbH
- Mr. Sönke Nagel
- soenke.nagel&edv-compas.com
-23684
- Sensitech Inc.
- Tim Wile
- tim.wile&sensitech.com
-23685
- Godsk.net
- Thomas Godsk Jørgensen
- thomas&godsk.net
-23686
- Softential, Inc.
- Mohan Kompella
- bsm&softential.com
-23687
- Pobeda JSC
- Nikolay D. Yurgandzhiev
- koko&pobeda-ad.com
-23688
- Summit Development, Ltd
- Jedlik Stefan
- jedlik&summitd.cz
-23689
- Pervenio Ltd
- Ian Deakin
- ian.deakin&pervenio.net
-23690
- Abstract Ltd.
- Yair Badian
- yairbadian&gmail.com
-23691
- VIA
- Lars Olof Kanngard
- Lars&via.ae
-23692
- IDactis
- Nicolas SANTERNE
- Nicolas.Santerne&idactis.com
-23693
- Networks & Concepts GmbH
- Joerg Hochwald
- joerg.hochwald&networks-concepts.com
-23694
- PMX NETWORKS, INC
- JIMMY HANNAN
- jimmyh&pmx-networks.com
-23695
- PePLink Ltd.
- Kenny Ng
- kennyn&peplink.com
-23696
- Nilai International College
- Joe Teoh Chin Hor
- joe_teoh&nilai.edu.my
-23697
- hoi-polloi.org (formerly 'aspector GmbH')
- Bernd R. Fix
- brf&hoi-polloi.org
-23698
- RELDATA Inc.
- Yann Livis
- ylivis&reldata.com
-23699
- Zyden Software
- SNMP Team
- snmp&zyden.com
-23700
- Internews 98 Ltd.
- Atanas Bachvaroff
- bachvaroff&internews-bg.com
-23701
- Cannon Technologies Ltd
- Mark Wheeler
- mark.wheeler&cannontech.co.uk
-23702
- SHD Holding GmbH
- Carsten Bastian
- cba&shd.de
-23703
- Agile Software (NZ) Ltd
- Matthew Bagley
- matthew.bagley&agilesoftware.co.nz
-23704
- Calypso Capital Management
- Calypso IT
- it&calypsocap.com
-23705
- Salient Corporation, Inc
- Darrell Welty
- dwelty&salient.com
-23706
- GlobalPOPs
- Hostmaster
- hostmaster&globalpops.com
-23707
- LAFARGE ALUMINATES
- Philippe ESPOSITO
- info&aluminates.lafarge.com
-23708
- HYMATOM SA
- Frédéric BERNON
- frederic.bernon&hymatom.fr
-23709
- Miltope Corporation
- Steven H. Rines
- steven.rines&miltope.com
-23710
- Agincourt Computing
- Steve Smith
- iana-contact&aginc.net
-23711
- Seventh Skill Ltd
- Jon Brightwell
- jonbrightwell&seventhskill.co.uk
-23712
- Minnesota Office of Enterprise Technology
- Art Smolecki
- art.smolecki&state.mn.us
-23713
- Keating Inc
- James Keating
- keating&woh.rr.com
-23714
- Data Systems S.A.E.C.A.
- Luis C. Benitez
- lbenitez&data.com.py
-23715
- Live Monitoring Pty Ld (formerly 'Produ-Tech Monitoring Pty Ld')
- Roger Fraser
- roger&livemonitoring.co.za
-23716
- United States Council for Automotive Research
- Daniel A. Rickert
- drickert&uscar.org
-23717
- Siricomm, Inc.
- Bryan Wilcox
- bryan.wilcox&siricomm.com
-23718
- Esensors, Inc.
- Networking Department
- techhelp&eesensors.com
-23719
- Arishi
- Mike Woods
- mike&arishi.com
-23720
- Netifice Communications, Inc.
- A. T. Stephen Thamban
- athiban.thamban&netifice.com
-23721
- The Ideal Computer Group Inc.
- Darryl Krasman
- iana&idealgroup.com
-23722
- CS-Soft, s.r.o
- Roman Gryc
- gryc&cs-soft.cz
-23723
- Great Power Electrin Science and Technology stock CO.LTD
- Lin_jianeng
- lin.jianeng&gmail.com
-23724
- Udo Neumann
- Udo Neumann
- iana.mg&deklinierer.net
-23725
- Theserver Brasil / Multidiagnostica IT Team
- Carlos Henrique B. F. N. Pereira
- carlos&theserver.com.br
-23726
- VOTORANTIM INVESTIMENTOS INDUSTRIAIS S.A.
- Antonio Carlos M. Nogueira Filho
- antonio.nogueira&vpar.com.br
-23727
- Marlin Trust Management Organization L.L.C
- Jim Rudd
- jrudd&marlin-tmo.com
-23728
- Versio SARL
- Bernard BAILLY
- bernard&versio.fr
-23729
- DiVitas Networks
- Srinivas Athuluru
- atg&verdantarch.com
-23730
- OVEA
- Ronnie Garcia
- r.garcia&ovea.com
-23731
- Telestar
- zinan ren
- renzinan&gmail.com
-23732
- ShijiaZhuang Railway Institute
- Yan shi qiang
- yanshq&sjzri.edu.cn
-23733
- JGC Corporation
- Shigeaki Suzuki
- suzuki.shigeaki&jgc.co.jp
-23734
- OEBB
- Gerhard Morauf
- gerhard.morauf&oebb.at
-23735
- Fondation RESTENA
- Stefan Winter
- stefan.winter&noc.restena.lu
-23736
- IceWarp Ltd.
- Jakub Klos
- jakub&icewarp.com
-23737
- Hochschule Ulm
- Thomas Gloeckler
- gloeckler&hs-ulm.de
-23738
- AWR Solution Network
- Alessandro Magalhaes
- amagalhaes&awrsolution.com
-23739
- HUG
- LENOBLE
- virginie.lenoble&hcuge.ch
-23740
- SynerGIS Informationssysteme GmbH
- Stefan Weihs-Sedivy
- s.weihs&synergis.co.at
-23741
- Wogri Unlimited
- Wolfgang Hennerbichler
- office&wogri.at
-23742
- CONNOTECH Experts-conseils inc.
- Thierry Moreau
- thierry.moreau&connotech.com
-23743
- Kerridge Computer Company Ltd
- Steve Powell
- sp&kerridge.com
-23744
- BITMARCK SOFTWARE GMBH (formerly 'Arbeitsgemeinschaft Informationssysteme in der gesetzlichen Krankenversicherung (ISKV)')
- Ralf Waldvogel
- ralf.waldvogel&bitmarck.de
-23745
- Black Hen Limited
- Richard Schneider
- richard.schneider&blackhen.co.nz
-23746
- Administration communale de Braine-l'Alleud
- Jean-Francois Brison
- service.informatique&braine-lalleud.be
-23747
- Areste Centre Informatique
- Luc Blanc
- lblanc&areste.com
-23748
- Edinform S.p.A
- Luigi Salvatore Palese
- lpalese&edinform.it
-23749
- Federal State Unitary Enterprise Leningrad Radio Research and
-Development Institute
- Roman Surma
- sur&loniir.ru
-23750
- new10 GmbH
- Michael Hirczy
- admin&new10.com
-23751
- PT. TRG international
- Insan Praja SW
- insan&telematika.web.id
-23752
- ExcellNet IT Services and Consulting
- Attila Nemes
- nemes.attila&freemail.hu
-23753
- Infinit Productions
- Sebastien Couture
- sysreq&gmail.com
-23754
- Mairie de Savigny-Sur-Orge
- Jean-Michel LACROIX
- jm-lacroix&savigny.org
-23755
- Softrax Corporation
- Richard Adams
- radams&softrax.com
-23756
- Promotora de Informaciones, S.A.
- Jaime Guntín
- OID_prisa&prisa.es
-23757
- AR Telecom
- João Frade
- joao.frade&artelecom.pt
-23758
- Desert Cascade
- Tsani Jones
- tjones&surfside.net
-23759
- Szolnok Város Polgármesteri Hivatal
- Mészáros Ákos
- meszarosa&ph.szolnok.hu
-23760
- LayerZero Power Systems, Inc.
- Milind M. Bhanoo
- mbhanoo&layerzero.com
-23761
- CMSL
- Matthew Reeves-Hairs
- iana&cmsl.com
-23762
- Time-Ware
- Thomas Wenrich
- office&timeware.at
-23763
- Rent a PACS GmbH
- Michael Ulbrich
- mul&rentapacs.de
-23764
- Atamo Pty Ltd
- Peter Barrow
- peter.barrow&atamo.com.au
-23765
- GetNet Comunicacoes S/C LTDA
- Fabiano Felix
- felix&getnet.com.br
-23766
- TriGeo Network Security, Inc.
- Michael Maloof
- mmaloof&trigeo.com
-23767
- Rensselaer Hartford Graduate Center, Inc
- Gary Trail
- gary&rh.edu
-23768
- Integrated Management Resources, Inc.
- John Hampton
- john&imr-net.com
-23769
- Infinity Technology, Inc.
- Curt LeCaptain
- lecaptainc&infinitytechnology.com
-23770
- Andreoli Domenico
- Domenico Andreoli
- cavok&tiscali.it
-23771
- Marakana, Inc.
- Aleksandar Gargenta
- sasa&marakana.com
-23772
- RoutePulse Technologies
- Parag Bopardikar
- parag&routepulse.com
-23773
- Starfire Engineering & Technologies, Inc.
- Richard R. Spurlock
- rrspurlock&starfire.net
-23774
- jNetX Inc.
- Steven A. Hollis
- sah&jnetx.com
-23775
- Outer TI
- Gustavo Torres
- gustavo&outer.com.br
-23776
- RougeNetwork
- Toshiyuki Fukushima
- fukushima&rouge.gr.jp
-23777
- Elektrarny Opatovice a.s.
- Miroslav Jezek
- admin&eop.cz
-23778
- BEZ Systems, Inc.
- Tim Vasil
- tvasil&bez.com
-23779
- Asklepios Group
- Robert Lacroix
- r.lacroix&asklepios.com
-23780
- Prose Consulting Ltd. (formerly 'Freedomware UK')
- Mark R. Bannister
- mark&proseconsulting.co.uk
-23781
- Albertslund Ungdomsboliger
- J. Martin Petersen
- jmp&aub.dk
-23782
- ASN
- Michal Wrobel
- mwrobel&asn.pl
-23783
- iTellus Holdings, Inc. (formerly 'Tellurian Networks, Inc.')
- Robert Boyle
- robert&itellus.com
-23784
- StrataLight Communications
- Roberto Marcoccia
- roberto&stratalight.com
-23785
- CIC/CAFMICRO
- PALANGA Eyouléki
- vpalanga&ub.tg, pvenant&bsl.tg
-23786
- DS DATA SYSTEMS GmbH
- David Kibilka
- dkibilka&datasystems.de
-23787
- gnyrf.net
- Roger Abrahamsson
- roger&gnyrf.net
-23788
- Matt Wright Consulting
- Matt Wright
- mwright&mattwright.us
-23789
- GrammaTech, Inc.
- Dave Capella
- capella&grammatech.com
-23790
- Pearce Bevill Leesburg & Moore, P.C.
- Dave Jones
- dave&pearcebevill.com
-23791
- Adaptix
- Heng PAN
- hengp&adaptix.com
-23792
- Axell Wireless Israel Ltd (formerly 'Dekolink Wireless Ltd')
- Martin Hancock
- martin.hancock&axellwireless.com
-23793
- Cluster Resources
- Michael Musson
- musson&clusterresources.com
-23794
- Significant Bits
- Joel Simpson
- Joel.Simpson&gmail.com
-23795
- Movile (formerly 'Yavox Latin America')
- Daniel La Laina
- daniel.lalaina&movile.com
-23796
- SunWare GmbH & Co KG
- Julian Schüren
- J.Schueren&sunware.de
-23797
- KSIGN Co., Ltd.
- Jeong-mi KIM
- jenny&ksign.com
-23798
- Australia Post
- Wayne Mills
- wayne.mills&auspost.com.au
-23799
- icon Systemhaus GmbH
- Natalie Fisenko
- natalie.fisenko&icongmbh.de
-23800
- Roca Corporación Empresarial, S.A
- Enric Sola
- Enric_sola&roca.net
-23801
- Metrima Energi AB
- Mikael Holm
- mikael.holm&metrima.se
-23802
- Dekabank
- Holger Hofmann
- Holger.Hofmann&dekabank.de
-23803
- Ecole Polytechnique
- Andrey Ivanov
- andrey.ivanov&polytechnique.edu
-23804
- Rena Electronica B.V.
- Karel Dupain
- k.dupain&rena.nl
-23805
- International Industrial Bank
- Andrey Waulin
- aw&iib.ru
-23806
- Touch Clarity Ltd.
- Jason Crane
- jason.crane&touchclarity.com
-23807
- UIB Umwelt Informatik Büro GmbH
- Detlef Oertel
- d.oertel&uib.de
-23808
- CCM Software Services Ltd.
- Rossa Mac Manamon
- Rossa.MacManamon&serco.com
-23809
- Bridicum Security Group A/S
- Martin Hansen
- mlh&bridicum.com
-23810
- Rothschild Bank AG
- Jan Brunschwig
- jan.brunschwig&rothschildbank.com
-23811
- Qbizm technologies, a.s.
- Jaroslav Kortus
- tech&qbizm.cz
-23812
- INL SARL
- Eric Leblond
- inl&inl.fr
-23813
- Cendant TDS
- Ken Guettler
- kguettler&orbitz.com
-23814
- ID-Tech Servicos em Informatica Ltda.
- Daniel C. Landi
- dclandi&id-tech.com.br
-23815
- Waterbury Republican American
- John Anderson
- janderson&rep-am.com
-23816
- SlipStream Data Inc.
- James McDonnell
- jmcdonnell&slipstream.com
-23817
- Ministerio de Economía, República Argentina
- Aldo Rosemberg
- iana&mecon.gov.ar
-23818
- FirstEnergy Corp.
- Ray Sefchik
- rsefchik&firstenergycorp.com
-23819
- Epoch Integration Inc.
- Maithili Mavinkurve
- maithili&epochintegration.com
-23820
- Lateral Net Ltd.
- Daniel Jordan Bambach
- dan&lateral.net
-23821
- Irish Centre for High End Computing
- Niall Wilson
- niall.wilson&nuigalway.ie
-23822
- MITSUI HOME CO.,LTD.
- Masayuki Yamaga
- m-yamaga&mitsuihome.co.jp
-23823
- Wise Technology Co.,Ltd.
- James Chen
- jschen&wisedata.com.tw
-23824
- LAC Co., Ltd.
- Kenichiro Kawase
- kawase&lac.co.jp
-23825
- EZconn Corporation
- KY Wu
- kywu&ezconn.com
-23826
- HiSpeed Data, Inc.
- Vinay Purohit
- vp2&verizon.net
-23827
- GHY International
- Mark Balitsky
- mark&ghy.com
-23828
- MKI Systems
- Alexander Hoyland
- ahoyland&mkisystems.com
-23829
- W&W Informatik GmbH
- Ingo Huber
- ingo.huber&ww-informatik.de
-23830
- Blekinge Studentservice AB
- Johan Forssell
- j&bssab.se
-23831
- Teneros, Inc.
- Teneros Admin
- tnsadmin&teneros.com
-23832
- Aitec do Brasil Ltda
- Angelim Pinto
- angelim&linkconsulting.com.br
-23833
- DentaQuest Ventures, Inc.
- Joe Lawrence
- JLawrence&greatdentalplans.com
-23834
- Fachhochschule Salzburg GmbH
- Andreas Strobl
- domain-admin&fh-salzburg.ac.at
-23835
- emFAST Inc
- Sanjay Nagaraj
- sanjayn&emfast.com
-23836
- DS4 Laser Technology s.r.l.
- Giampaolo Bellini
- giampaolobellini&ds4.it
-23837
- Jefferson County School District
- David Hicks
- dhicks&509j.net
-23838
- BIATEL Systemy Komputerowe Sp. z oo.
- Piotr Chomczyk
- piotr.chomczyk&biatel.com.pl
-23839
- GROX Networks
- Dave Capella
- iana-pen&grox.net
-23840
- School District #57 (Prince George)
- Kris Benson
- kbenson&sd57.bc.ca
-23841
- RAD-OP
- Iftah Bratspiess
- iftah&web-silicon.com
-23842
- Kuban Pharm Stocks, Ltd.
- Boris Samorodov
- bsam&ipt.ru
-23843
- Departamento de Ciência da Computação/Universidade Federal da
-Bahia
- Guillaume Barreau
- g.barreau&gmail.com
-23844
- Constellation Brands, Inc.
- Anthony Pochmara III
- anthony.pochmara&cbrands.com
-23845
- Schowalter, GbR
- Christian Schowalter
- admin&schowalter.org
-23846
- Endress+Hauser InfoServe GmbH+Co. KG
- Werner Hofmann
- werner.hofmann&infoserve.endress.com
-23847
- Elogic snc di Antonini Filippo
- Antonini Filippo
- info&elogic-net.com
-23848
- Middle Kingdom - SCA, Inc.
- Dave Majors
- dafydd&midrealm.org
-23849
- PACSGEAR, Inc.
- Brian Cavanaugh
- brian&pacsgear.com
-23850
- Zyberit AB
- Håkan Persson
- hakan&zyberit.com
-23851
- CCI Consulting Ltd.
- Colin Campbell
- netadm&ccicon.com
-23852
- Seeing Machines Pty Ltd
- Nick Cerneaz
- nick.cerneaz&seeingmachines.com
-23853
- eThinkSolutions,Inc.
- Larry Stilwell
- lstilwell&ethinksolutions.com
-23854
- Shipbuilding SS
- You Yu
- you_yu324&yahoo.com.cn
-23855
- Bullant Software
- Chris Wooldridge
- support&bullant.com.au
-23856
- Imtec Imaging, LLC
- Brad Vance
- brad&imtec.com
-23857
- NextIO, Inc
- Rick Trujillo
- support&nextio.com
-23858
- VadaTech Inc.
- Saeed Karamooz
- saeed&vadatech.com
-23859
- Puntoblu Srl
- Francesco Cerbini
- cerbini&puntoblu.it
-23860
- Schubert-Unternehmensgruppe
- Mario Wolff
- mario.wolff&schubert-gruppe.de
-23861
- redweb.cz
- Petr Okurek
- redweb&redweb.cz
-23862
- AimValley B.V.
- Gert H. Manhoudt
- gmanhoudt&aimvalley.nl
-23863
- Fort Hays State University
- David Melendez
- dmelendez&fhsu.edu
-23864
- Cascadia Information Technologies, Inc.
- Julian Blake Kongslie
- jblake+iana&omgwallhack.org
-23865
- Synapps
- Francisco Laguna
- fla&synapps.de
-23866
- Starnix Care Inc.
- Kevin Glendenning
- kevin&starnix.com
-23867
- Silver Peak Systems, Inc.
- George Azzi
- gazzi&silver-peak.com
-23868
- sis-tec
- mitsuhiro nagahara
- nagahara&sis-tec.co.jp
-23869
- HIOKI E.E.Corporation
- Takashi Nakazawa
- kuri&hioki.co.jp
-23870
- EMSTONE Co.
- Dong-jun Lee
- cometodj&emstone.com
-23871
- Qno Technology Inc.
- Uno_Chang
- uno&qno.com.tw
-23872
- Rikom d.o.o.
- Tine Zorko
- tine.zorko&rikom.si
-23873
- MKC Michels & Kleberhoff Computer GmbH
- L. Kleberhoff
- l.kleberhoff&mkc-gmbh.de
-23874
- ACLI Associazioni Cristiane dei Lavoratori Italiani
- federico scaramuzza
- federico.scaramuzza&acli.it
-23875
- Gymnasium Münchenstein
- Michael Weiss
- michael.weiss&gymmuenchenstein.ch
-23876
- PIXID SNC
- Marc Mouttet
- m.mouttet&pixid.fr
-23877
- Grid Operation Center, Aristotle University of Thessaloniki,
- Christos Kanellopoulos
- goc&grid.auth.gr
-23878
- Stanton Grove Ltd
- Martin Phillips
- mphillips&stantongrove.com
-23879
- SAG Systemhaus GmbH AMS
- Jörg Berning
- joerg.berning&softwareag.com
-23880
- Motionpath Digital Media Ltd
- Robert Pitt
- rob&motionpath.co.uk
-23881
- Avanton Inc.
- Robert Berkowitz
- robert&avanton.com
-23882
- Investidor Profissional Gestão de Recursos Ltda
- Luiz Motta
- tecnologia&invprof.com.br
-23883
- Fresenius Medical Care North America
- William Blackwood
- william.blackwood&fmc-na.com
-23884
- Fotofuxx
- Thomas Fuchs
- iana&fotofuxx.de
-23885
- Continental City Networks Ltd
- Ruban Selvarajah
- continentalcitynetworks&hotmail.com
-23886
- Hay Group, Inc.
- Samuel C. Smith
- samuel_smith&haygroup.com
-23887
- Kawashima Labo Inc.
- Yasuhide Takahashi
- yasuhide&kawashima-lab.net
-23888
- Tymar Systems Development
- N Z Cave-Lynch
- nic&tymar.com
-23889
- Daco System Elaborazione Dati S.r.l.
- Alberto Panu
- alberto.panu&dacosystem.it
-23890
- HCL Peripherals
- Balamuralikrishnan.H
- balamurali&hclp.com
-23891
- ErgoGroup
- Knut Bjørnstad
- knut.bjornstad&ergo.no
-23892
- Milpower Source
- Iftah Bratspiess
- iftah&web-silicon.com
-23893
- Klir Technologies, Inc.
- John McCaskey
- johnm&klir.com
-23894
- Northshore School District
- Ski Kacoroski
- ski&nsd.org
-23895
- EvilGenius Networks
- Matt Addison
- matt&evilgeni.us
-23896
- Netus Vaizovic k.d.
- Adi Vaizovic
- adi&netusvaizovic.com
-23897
- Trigger Software
- Tarmo Randel
- tarmo.randel&trigger.ee
-23898
- Tesseract Corporation
- Terry Kummell
- terry_kummell&tesseract.com
-23899
- SineRay Consulting Co.,Ltd
- Yene-Haw pan
- morsi&sineray.com.tw
-23900
- Progetti Ambientali Integrati s.a.s.
- Del Rio Matteo
- delrio&osnetwork.it
-23901
- Digigram
- Michel Quaix
- quaix&digigram.com
-23902
- ABB STOTZ-KONTAKT GmbH
- Christian Winnewisser
- spam&de.abb.com
-23903
- Cargol.net Solucions Lliures S.L.L.
- Pep Turro
- pep&cargol.net
-23904
- The Nielsen Company (formerly 'Arbitron Inc.')
- Nick Mannion
- nick.mannion&nielsen.com
-23905
- VOCAL Technologies, Ltd.
- Tim Powell
- vocal&vocal.com
-23906
- Axalto Inc.
- Shuh Chang
- schang&axalto.com
-23907
- Advantage Security, S. de R.L. de C.V.
- Greg Werner
- gwerner&advantage-security.com
-23908
- InfoEng Organization
- J. Patrick Bedell
- jpb&infoeng.org
-23909
- Bel Ami Reisen
- Roberto Mischke
- service&belami-reisen.de
-23910
- iPoint-media LTD.
- Avi Sless
- avis&ipoint-media.com
-23911
- Aurus
- Darius Pakusas
- info&aurus.lt
-23912
- Q-go
- Pieter Ennes
- hostmaster&q-go.com
-23913
- Belle Bonfils Memorial Blood Center
- Daniel J. Shafer
- daniel_shafer&bonfils.org
-23914
- pedro armelim unipessoal lda.
- Pedro Armelim
- pma&parmelim.net
-23915
- SuperGeo Tech. Inc.
- Jerry Huang
- jerryhuang&supergeo.com.tw
-23916
- Appear TV AS
- John Saxebol
- john.saxebol&appeartv.com
-23917
- Under Dusken
- Erlend Hamnaberg
- data&underdusken.no
-23918
- JPBerlin
- JPBerlin Admin
- support&jpberlin.de
-23919
- Corporación Tedexis C.A.
- Robert Koch
- rkoch&tedexis.com
-23920
- Zoic Studios
- Beau Gunderson
- beau&zoicstudios.com
-23921
- ISSP Internet-Solutions Szongott & Pertl OEG
- Roman Pertl
- hostmaster&issp.at
-23922
- Milstein & Asoociates Inc.
- Steven Milstein
- steven&milstein-assoc.com
-23923
- Hobnob
- Drew Riconosciuto
- drew&hobnob.com
-23924
- readshaw.com
- Neil Readshaw
- neil&readshaw.com
-23925
- Cacti
- Ian Berry
- iberry&raxnet.net
-23926
- Golf-Leagues.com
- Kevin Kovach
- kkovach&kevinkovach.com
-23927
- Ukrainian Catholic University
- Oleksandr Panchuk
- olex&ucu.edu.ua
-23928
- MVV Energie AG
- Markus Hildebrand
- m.hildebrand&mvv.de
-23929
- entire technologies gmbh
- Michael Lippert
- mlippert&entiretec.de
-23930
- Inferno Enterprises
- Glen Campbell
- gcampbel&dante.com
-23931
- Goodrich Corporation
- Tim Flynn
- tim.flynn&goodrich.com
-23932
- TLD Solutions Ltd
- Gary Wheeler
- gari&techie.com
-23933
- CaveraSystems
- Paddy Vishnubhatt
- paddyv&caverasys.com
-23934
- April Nine Inc.
- Luc Tourangeau
- luc&aprilnine.com
-23935
- Architects of VoIP GmbH
- Thilo Roessler
- thilo.roessler&architects-of-voip.de
-23936
- china group zhejiang telecom corporation
- yu chengwu
- yucw&zjtelecom.com.cn
-23937
- ExtricomLtd
- Eran Shpak
- micki&extricom.com
-23938
- ANEDER BT
- Ferenc Kulcsár
- crusader&netbsd.hu
-23939
- Avokia Inc.
- Frankie Wong
- frankie&avokia.com
-23940
- Sysco S.p.A.
- Marcello Palucci
- palucci&syscospa.it
-23941
- Opentaskforce
- Harald Lang
- opentaskforce&googlemail.com
-23942
- Intelligent Mobile Solutions, Inc.
- Juan Pablo Baserga
- juanpablo.baserga&cyclelogic.com
-23943
- Cendres & Métaux SA
- Hans Lerch
- webmaster&cmsa.ch
-23944
- DENIC eG
- Jürgen Geinitz
- sa-unix&denic.de
-23945
- Institute of Journalism, University Dortmund
- christian bossk holle
- holle&ifj.fb15.uni-dortmund.de
-23946
- MINISTERO DELL'INTERNO - DIREZIONE CENTRALE POLIZIA CRIMINALE
- Dr. ANTONIO MAIORANO
- cedsicurezzautenti&interno.it
-23947
- Innovene LLC
- Scott Reider
- scott.reider&innovene.com
-23948
- Confernet Produtos e Servicos Ltd.
- Luiz Gustavo Nogara
- suporte&wiz.com.br
-23949
- Swyx Solutions GmbH
- Uwe Sauerbrey
- uwe.sauerbrey&swyx.com
-23950
- Print Associates A/S
- Christoph Lindemann
- christoph.lindemann&printassociates.com
-23951
- ExaProtect Technology
- David Maciejak
- dmaciejak&exaprotect.com
-23952
- TJ COLLECTION Co Ltd
- Druginin Vyacheslav
- dv&tjcollection.ru
-23953
- Australian Partnership for Advanced Computing
- David Bannon
- help-grid&vpac.org
-23954
- TriNix AB
- Jonas Björk
- jonas&trinix.se
-23955
- PUCCAMP - Pontificia Universidade Católica de Campinas
- Carlos Roberto Schimidt
- schimidt&puccampinas.edu.br
-23956
- PCL Constructors Inc.
- Chris Palmer
- oid&pcl.com
-23957
- Spacelabs Medical Data
- Jeff Malvern
- jeff.malvern&slmd.com
-23958
- 310, JSC
- Stanislav Sedov
- stas&310.ru
-23959
- micneu
- Michael Neumann
- neumann&micneu.de
-23960
- Acquist Incorporated
- Christopher Crooker
- chris&acquist.com
-23961
- CertiMail
- Rémi Poulet
- poulet&certimail.fr
-23962
- Saisung Corporation Ltd.
- Oliver Pawellek
- oliver.pawellek&saisung.com
-23963
- Safe Host
- Steven Chong
- schong&safehostnet.com
-23964
- T-Mobile Austria
- Peter Neubauer
- peter.neubauer&t-mobile.at
-23965
- Detecon International GmbH
- Stephan Wild
- networks.debug&detecon.com
-23966
- Leiner & Wolff GbR
- Rüdiger Wolff
- wolff&leiner-wolff.de
-23967
- Tallence AG
- Ronald Ebel
- pen-admin&tallence.com
-23968
- Netvoyager PLC
- Jamil Aboulzelof
- jamil&netvoyager.co.uk
-23969
- arvato mobile
- Lukas Loesche
- lukas.loesche&arvato-mobile.de
-23970
- Hamburg Südamerikanische Dampfschifffahrts-Gesellschaft KG
- Stefan Werner
- stefan.werner&ham.hamburgsud.com
-23971
- Menzebach und Wolff IT-Consulting GbR
- Andreas Wolff
- aw-iana-enterprise&mw-itcon.de
-23972
- Fidelity MLS Systems and Solutions
- Scott Bishop
- Scott.Bishop&fnf.com
-23973
- Still Tripping Productions.
- Shaun L. Anderson
- glorisign&live.com
-23974
- General Dynamics Robotic Systems
- Brian Byrne
- bbyrne&gdrs.com
-23975
- et al Innovations Ltd
- Dr Stuart Marsden
- stuart&myphones.com
-23976
- Zebanon Inc.
- Daifu Li
- cisc&263.net
-23977
- My Computer Person
- R. Dennis McHenry
- iana.enterprise.registration&mycomputerperson.biz
-23978
- Sadel S.p.a.
- Daniele Guerra
- snmp&sadel.it
-23979
- Knoways s.r.l.
- Daniele Guerra
- daniele.guerra&knoways.com
-23980
- STS GmbH & Co. OHG
- Jochen Mueller
- jochen-mueller&siemens.com
-23981
- MWS
- Antonio galdeano
- antonio.galdeano&mws.fr
-23982
- tty1.net
- Thomas Pircher
- tehpeh&tty1.net
-23983
- Hampshire Constabulary
- Simon House
- simon.house&hampshire.pnn.police.uk
-23984
- RyCo Electronic Systems Limited
- Kevin N Cordery
- kevin.cordery&rycoes.com
-23985
- S.O.Ge.S.A. s.a.s. di Ugo Grassi & C.
- Stefano Marocco
- s.marocco&sogesa.it
-23986
- ENENSYS Technologies SAS
- Patrick Auffray
- patrick.auffray&enensys.com
-23987
- Autoridad Portuaria de Barcelona
- Francesc Bonada
- francesc_bonada&apb.es
-23988
- Elink GmbH
- Uwe Hoffmann
- uhoffmann&elink.de
-23989
- Cablefree Solutions Limited
- Mike Roach
- mike.roach&cablefree.co.uk
-23990
- Shifa International Hospitals
- Ishtiaq Ahmed
- ishtiaqahmeds&yahoo.co.uk
-23991
- Planeetta Internet Oy
- Lauri Pitkanen
- hostmaster&planeetta.net
-23992
- Social Science Computing Cooperative
- Dan Bongert
- dbongert&ssc.wisc.edu
-23993
- Linear Technology Corporation
- Omar Sanchez-Felipe
- osanchez&linear.com
-23994
- OpenDarwin Project
- Andrea Barisani
- lcars&opendarwin.org
-23995
- Eightball Productions
- Jason A. Gullickson
- jag&govner.com
-23996
- Fuego Inc.
- Eduardo Chiocconi
- eduardoc&fuego.com
-23997
- Florida Department of State
- James A Crozier
- canotify&dos.state.fl.us
-23998
- RUF Telematik AG
- Thomas Kern
- iana-contact&ruf.ch
-23999
- FTI Consulting, Inc
- Mike Niland
- mike.niland&fticonsulting.com
-24000
- ABN AMRO Bank Services
- Sion Camilleri
- sion.camilleri&uk.abnamro.com
-24001
- Fiege Logistik (Schweiz) AG
- Mr Luigi Haefliger
- lhaefliger&fiege.ch
-24002
- Ingenieria Diez Cisneros, S.A.
- Juan Antonio Roman
- jaroman&diezcisneros.com
-24003
- Cellcom
- Eran Falk
- eranfa&cellcom.co.il
-24004
- Onus Petro Services
- Ramchander Rao
- ram_allola2&yahoo.co.in
-24005
- Alexa Internet, Inc.
- Dan Moniz
- dan&alexa.com
-24006
- Weidlinger Associates Inc.
- Fabrice Guerini
- fabrice&ca.wai.com
-24007
- Globat.com
- Romain Komorn
- rkomorn&globat.com
-24008
- Great Bay Software
- Jason Damron
- jdamron&greatbaysoftware.com
-24009
- NextHop Technologies, Inc.
- Michael Cook
- cook&nexthop.com
-24010
- ELESIGN
- Shim, Kyu Nam
- gyunami&elesign.com
-24011
- Newtech.Co.,Ltd.
- Yukio Takano
- takano&newtech.co.jp
-24012
- eASPNet Taiwan Inc.
- Emay Liu
- emayliu&easpnet.com
-24013
- RTX Telecom A/S
- Peter B. Mariager
- pm&rtx.dk
-24014
- Landesversicherungsanstalt Rheinprovinz
- B. Scholze
- bernd.scholze&lva-rheinprovinz.de
-24015
- CODAFIX SYSTEM
- IT department
- support&codasystem.com
-24016
- Bionix AB
- Väino Vaher
- vv&bionix.se
-24017
- teegee
- Thomas Groß
- thomas.gross&teegee.de
-24018
- Frederikshavn Gymnasium og HF-kursus
- Orla Møller
- orla.moeller&frhavn-gym.dk
-24019
- CertiPath, LLC
- Jeff Nigriny
- support&certipath.com
-24020
- Metagistics
- Gene Sohn
- genesohn&yahoo.com
-24021
- 13 Spiders Ltd
- Michael Salway
- oid-admin&spidergroup.co.uk
-24022
- Optelian Access Networks Corp.
- Adriana Diaconu
- adriana.diaconu&optelian.com
-24023
- IEA Software, Inc.
- Dale E. Reed Jr.
- support&iea-software.com
-24024
- Tecsidel, S.A.
- Isidoro Legido Martínez
- isidoro.legido&tecsidel.es
-24025
- MVP Software, Inc.
- Chris Snyder
- csnyder&mvpsoft.com
-24026
- Cube Route
- KL Wong
- kl.wong&cuberoute.com
-24027
- Dexa Medica Group
- Wimala Widjaja
- wimala.widjaja&dexa-medica.com
-24028
- Bayerwald Fenster Haustueren GmbH & Co. KG
- Martin Stockinger
- oidadmin&bayerwald-fenster.de
-24029
- HEYFRA electronic GmbH
- Christian Bornschein
- c.bornschein&heyfra.de
-24030
- CenterTools Software GmbH
- Udo Riedel
- udo.riedel&centertools.de
-24031
- Nomus Comm-Systems
- V. V. Prasad
- vvprasad&nomus.net.in
-24032
- dmstools AG
- Markus Woessner
- oid&dmstools.de
-24033
- Peerex Ltd
- Timothy Hinchcliffe
- iana-oid&tim.hinchcliffe.peerex.net
-24034
- The Royal Botanic Gardens, Kew
- Ken Bailey
- iana&kew.org
-24035
- AFIP
- Sebastian Guarino
- sguarin&afip.gov.ar
-24036
- howard.org
- Bruce Howard
- bruce&howard.org
-24037
- Revolt Ltd.
- Craig Taylor
- ldap&revoltltd.org
-24038
- VistaPrint USA Inc.
- Jim Sokoloff
- jsokoloff&vistaprint.com
-24039
- Lutz Badenheuer
- Lutz Badenheuer
- lutz.badenheuer&t-online.de
-24040
- BARREL Investment Company Ltd.
- Maksim Ilichev
- support&barrel.ru
-24041
- M7 Software BV
- Tom Schoute
- tschoute&m7software.com
-24042
- AMS 1769 Ltd
- Brian Candler
- b.candler&pobox.com
-24043
- Tanel Unt
- Tanel Unt
- wo&bill.ee
-24044
- Cthulhu Inc.
- Reka Karolyi
- mithos&cthul.hu
-24045
- Dwerryhouse IT Consulting
- Paul Dwerryhouse
- paul&dwerryhouse.com.au
-24046
- TMSw Corp.
- Kiminori Hirose
- khirose&tms-w.com
-24047
- Netfabric Corporation
- Joe Welfeld
- jwelfeld&netfabric.net
-24048
- United Devices
- Ivo Janssen
- ivo&ud.com
-24049
- eApps
- Hosting Services
- support&eapps.com
-24050
- Orion Systems International
- Paul Kendall
- paul.kendall&orionhealth.com
-24051
- Seneca Software & Solar, Inc.
- Rob Savoye
- rob&senecass.com
-24052
- Wedo Consulting
- Pedro Duque
- pedro.duque&wedoconsulting.com
-24053
- Xspedius Communications
- Jason Trahan
- jason.trahan&xspedius.com
-24054
- NextNine Ltd.
- Alex Toker
- atoker&nextnine.com
-24055
- Govolution, Inc.
- Gary Morris
- gmorris&govolution.com
-24056
- JDI ICT
- I. Palsenberg
- i.palsenberg&jdi-ict.nl
-24057
- Robert D. Allen
- Robert Allen
- zircote&io2services.com
-24058
- AltCall Pty Ltd
- Nick Hoffman
- nick.hoffman&altcall.com
-24059
- Zuzax LLC
- C Wisniewski
- domains&zuzax.com
-24060
- icube
- Jong-Seong Park
- jspark&icube.co.kr
-24061
- Amtium Computer Network Communiction Tech. CO,LTD£»
- Jisheng Lv
- ljs&amtium.com
-24062
- Korenix Technology Co., Ltd.
- Uwai Chen
- uwai&korenix.com
-24063
- Call Direct Cellular Solutions Pty. Ltd
- Mike Cornelius
- mikec&call-direct.com.au
-24064
- Florian Hagedorn IT-Services
- Florian Hagedorn
- mail&florian-hagedorn.de
-24065
- TelcoSI
- John Wood
- info&telcosi.com
-24066
- Beijing WaterTek Information Technology Co.,Ltd.
- Wang Xiaowei
- xiaowei&watertek.com
-24067
- Webraska do Brasil
- Luciano Kiniti Issoe
- miagi&webraska.com.br
-24068
- Tier-3 Pty Ltd.
- Geoff Sweeney
- geoffs&tier-3.com
-24069
- IP Systems Pty Ltd
- Eugene Ryan
- netadmin&ipsystems.com.au
-24070
- AMANO Corporation
- Yoshiharu Takahashi
- Yoshiharu_Takahashi&amano.co.jp
-24071
- Zenitel Radioteknik
- Pär Åhlund
- par.ahlund&zenitel.biz
-24072
- Code Mercenaries Hard- und Software GmbH
- Christian Lucht
- lucht&codemercs.com
-24073
- Abeo AS
- Jan Erik Edvardsen
- domains&abeo.no
-24074
- ASI Controls
- Paul Chapman
- paul&asicontrols.com
-24075
- ELIA N.V. / S.A.
- Danny Alexandre
- danny.alexandre&elia.be
-24076
- National Institute for Public Health and the Environment
- Paul van Westerlaak
- Paul.van.Westerlaak&rivm.nl
-24077
- Zeus Gesellschaft fuer Integration und Kommunikation GmbH
- Christian Politz
- c.politz&zeus.de
-24078
- ISVA-Project Team (EADS-ISR, FHG-IITB, FGAN-FOM, FGAN-FKIE)
- Dr. Ralf-Peter Eule
- ralf-peter.eule&eads.com
-24079
- Cacanska banka a.d. Cacak
- Dejan Ristic
- dejan&cacanskabanka.co.yu
-24080
- key-stone BV
- drs H.T. Koster
- koster-h&key-stone.nl
-24081
- Paxfire Inc
- Mike Sullivan
- msullivan&paxfire.com
-24082
- GTL Limited
- Nitin Thakur
- nitint&gtllimited.com
-24083
- Securitect
- Sian Liu
- sianliu&securitect.com
-24084
- Managed Network Solutions, Inc.
- Xavier Chapa
- xavier&managednetworks.com
-24085
- Fitre S.p.A.
- Alessandro Peverelli
- alessandro.peverelli&fitre.it
-24086
- Medizinische Hochschule Hannover
- Ralf Weiss
- weiss.ralf&mh-hannover.de
-24087
- International Grid Trust Federation
- David Groep
- oid-manager&eugridpma.org
-24088
- Diamelle inc
- Suneet Shah
- suneet&diamelle.com
-24089
- Lexbox
- Stephane Guillon
- stephane.guillon&lexbox.fr
-24090
- Central Library, Aristotle University of Thessaloniki
- Triantafellos Hatziantoniou
- clib&physics.auth.gr
-24091
- SEW-EURODRIVE GmbH & Co KG
- Michael Kaufmann
- michael.kaufmann&sew-eurodrive.de
-24092
- I-Way Computers bvba
- Miguel Jamous
- miguel.jamous&iway.be
-24093
- JSC Format Link
- Alexey Pervushin
- ramses&fmshop.ru
-24094
- UniBwM
- Kai Freytag
- kai.freytag&unibw.de
-24095
- MioSoft Corporation
- MioSoft Internet Number Contact
- support&miosoft.com
-24096
- University of Douala
- Elie Martial MABO
- mtadjo&yahoo.fr
-24097
- Thoralf Linss
- Thoralf Linss
- thoralf.linss&tlits.de
-24098
- Southwest Youth Collaborative
- Benjamin J Doherty
- bjd&swyc.org
-24099
- Hosanna Christian Academy
- Matthew Eastman
- oid-admin&hcablazers.org
-24100
- LogiSoft AR Ltd, Inc.
- Alan Revzin
- alanr&logisoftar.com
-24101
- Banyan Tree Hotels & Resorts Pte Ltd
- Adrian Teo
- adrian.teo&banyantree.com
-24102
- Aeris Enterprises Inc.
- Chris Sargent
- csargent&aerisinc.com
-24103
- DIR Wieslawa Rozynek
- Bartosz Supczinski
- Bartosz.Supczinski&dir.pl
-24104
- Lennar Corporation
- Juan Gomez-Sanchez
- Juan.Gomez-Sanchez&Lennar.com
-24105
- di-Cross
- Liu Yong
- ly7110&gmail.com
-24106
- Damovo do Brasil S/A
- Manoel Messias de Souza
- manoel.messias&damovo.com
-24107
- xkoto Inc.
- Jeff Heisz
- jeff.heisz&xkoto.com
-24108
- UAB "Eltera"
- Danas Jazdauskas
- danas&eltera.lt
-24109
- AtcaNet
- Luis Lain
- luislain&atcanet.com
-24110
- Vigilix. LLC
- Randy Lee
- randy.lee&vigilix.com
-24111
- Optivus Technology, Inc.
- Michael Baumann
- baumann&optivus.com
-24112
- Shorter College
- Grant Carmichael
- gcarmichael&shorter.edu
-24113
- Netzbiotop Dresden e.V.
- Frank Benkstein
- frank&benkstein.net
-24114
- City of Tulsa
- Darren Fritz
- oidregistration&ci.tulsa.ok.us
-24115
- Ginix
- Gert Illemann
- gerti&inform.dk
-24116
- 68k.se
- Martin Nilsson
- martin&68k.se
-24117
- Idera
- Shekhar Vaidya
- shekhar.vaidya&idera.com
-24118
- artemis-design GbR
- Alexander Stintzing
- astintzing&artemis-design.de
-24119
- eSimone
- Ettore Simone
- ettore.simone&esimone.net
-24120
- JSDAAV INTERNET SOLUTIONS CC
- BENNIE JOUBERT
- bennie.joubert&jsdaav.com
-24121
- Centro Nacional de Infromación y Comunicación Educativa
- Juan Pérez
- juan.perez&cnice.mec.es
-24122
- Brodersen Controls A/S
- Ole Borgbjerg
- ob&brodersencontrols.com
-24123
- Sparkasse Haslach-Zell
- Hans-Juergen Neumaier
- it&sparkasse-haslach-zell.de
-24124
- Aqon Ltd.
- Frank Rabitsch
- frank&aqon.com
-24125
- OceanLake Asia Pte Ltd.
- Narendranath Reddy
- nreddy&oceanlake.com
-24126
- Junxion, Inc.
- Peter Polson
- ppolson&junxion.com
-24127
- UUHosting.Net
- Donald Wilson
- webmaster&uuhosting.net
-24128
- Casino Arizona
- Steve Tolle
- stevet&casinoaz.com
-24129
- International Road Dynamics Inc.
- Ian Meier
- ian.meier&irdinc.com
-24130
- Oneformatics
- P. Ennes
- iana.org&spam.ennes.net
-24131
- thePlatform for Media, Inc
- Mark Schliemann
- mark.schliemann&theplatform.com
-24132
- zyp.org
- Christopher P. Cashell
- topher-ldap&zyp.org
-24133
- Calassa Labs Ltd
- Dan Lumenko
- dan&calassa.com
-24134
- Torex Retail Solutions GmbH
- Andreas Koschinsky
- andreas.koschinsky&torexretail.de
-24135
- Smartcom-Bulgaria AD
- Simeon Ivanov
- simeon_ivanov&smartcom.bg
-24136
- Schur Pack Danmark a/s
- Brian Egtved
- beg&schur.com
-24137
- Optimum Computing Solutions
- Joseph A. Otto, Jr.
- joe&theottos.org
-24138
- JSC TaxNet
- Paul Ivanov
- paul&taxnet.ru
-24139
- RFK International
- René Frank Kristiansen
- rene-fk&rfkint.dk
-24140
- VoiceObjects AG
- Stefan Besling
- SBesling @voiceobjects.com
-24141
- T-2, d.o.o.
- Matevz Turk
- matevz.turk&t-2.net
-24142
- Bunya Technology Pty Ltd
- Brian Scott
- support&bunyatech.com.au
-24143
- MallNet Ltd.
- Yiyi Nai
- mallnet&hotmail.com
-24144
- Mobillion BV
- Bjorn Hijmans
- beheer&mobillion.nl
-24145
- ECS GmbH
- Johannes Denck
- pen_oid&ecs-gmbh.de
-24146
- Zone Systems
- Martin Zeuthen
- martin.zeuthen&zonesysdev.dk
-24147
- Ex Libris Ltd.
- Uri Livnat
- exlibris.admins&exlibris.co.il
-24148
- DATALAB DO BRASIL LTDA
- Noely Moraes
- noely&datalabrasil.com.br
-24149
- Milestone Systems A/S
- John Blem
- jb&milestone.dk
-24150
- TIM BRASIL
- ANA PAULA COSTA
- apcosta&timbrasil.com.br
-24151
- Inforsis Informatica y Formacion, SL
- Ricardo Alos
- inforsis&inforsis.com
-24152
- OTA Management LLC
- Matthew Huff
- mhuff&ox.com
-24153
- Defense Finance and Accounting Service
- Richard Fabian
- richard.fabian&dfas.mil
-24154
- Moog Components Group
- Shad Northrop
- snorthrop&moog.com
-24155
- Mission Hopitals
- Anne Desotelle
- anne.desotelle&msj.org
-24156
- Intelliant
- Franz Viaud-Murat
- f.viaudmurat&intelliant.fr
-24157
- Spectrum Signal Processing, Inc.
- Dan Weekley
- dan_weekley&spectrum-usa.com
-24158
- Landstar System Holdings, Inc.
- Rob Wojczyk
- rwojczyk&landstar.com
-24159
- Neureol Technologies Private Limited
- Rajan Kasiviswanathan
- rajan&neureol.com
-24160
- Cool IP
- Kelly Prescott
- prescott&deltav.org
-24161
- MLL Telecom Limited
- S Haynes
- s.haynes&mlltelecom.co.uk
-24162
- CareWorks vof
- Niels Klomp
- n.klomp&careworks.nl
-24163
- SUPERMEDIA Internet Provider
- Piotr Meyer
- pmeyer&supermedia.pl
-24164
- KBOSS.hu Kft.
- Verhás István
- vi&kboss.hu
-24165
- Digi-Sign Limited
- Przemek Michalski
- przemek.michalski&digi-sign.com
-24166
- Centro de Estudos e Sistemas Avançados do Recife
- Carlos Sampaio
- carlos.sampaio&cesar.org.br
-24167
- WEYCO, INC
- Joseph Dickson
- jdd&weyco.com
-24168
- GMAC
- Kimberly Stratton
- kim.stratton&gm.com
-24169
- Sunsetbrew Inc.
- Thomas Davis
- sunsetbrew&sunsetbrew.com
-24170
- Motricity, Inc.
- Thomas Davis
- thomas.davis&motricity.com
-24171
- 8e6 Technologies
- Todd Jackson
- tjackson&8e6.com
-24172
- Tenaska Power Services, Co
- Michael Bohan
- itmail&tnsk.com
-24173
- Rho, Inc.
- Bruce Walter
- bwalter&rhoworld.com
-24174
- Institutional Shareholder Services, Inc.
- Sean B. Moore
- sean.moore&issproxy.com
-24175
- SILVER SERVER GmbH
- Team SysAdmin, Raimund Sacherer
- nimda&sil.at
-24176
- Comgate Engineering Ltd.
- Tony Capel
- capel&comgate.com
-24177
- Tivit S.A.
- Gustavo Torres
- gustavo.torres&tivit.com.br
-24178
- Stillwater Medical Center Authority
- Mark Reed
- mreed&stillwater-medical.org
-24179
- Ministerie van Binnenlandse Zaken en Koninkrijksrelaties
- Mr. P. IJtsma
- peter.ijtsma&isc.politie.nl
-24180
- Tgusta.com C.A
- Francisco Salcedo
- presidencia&tgusta.com
-24181
- Fri-Jado B.V.
- Ramon Mangelaars
- ramon.mangelaars&fri-jado.nl
-24182
- SRH
- Beckert, Dirk
- oid&srh.sachsen.de
-24183
- Vimio PLC
- Gothe Lindahl
- gothe.lindahl&vimio.com
-24184
- MEDNET Service für Ärzte AG
- Uwe Eissing
- uwe.eissing&mednet.de
-24185
- Kvalix Automatika Kft.
- Peter Forro
- forro&kvalix.hu
-24186
- Netsol Network Solutions Oy
- Timo Virtaneva
- timo.virtaneva&netsol.fi
-24187
- LambdaStream
- Miguel Barreiro
- mbpaz&lambdastream.com
-24188
- Mail Object
- Pascal Voyat
- pvoyat&mailobject.com
-24189
- Cain Computing
- Daniel J Cain Jr
- daniel&CainComputing.com
-24190
- Distributed Systems Services, Inc.
- Scott Kantner
- skantner&dsscorp.com
-24191
- Digital Fugue
- Geert Jansen
- geert&digitalfugue.com
-24192
- trial-n-error
- Mario Scholz
- mario.scholz&web.de
-24193
- Strandbygaard
- Martin Strandbygaard
- martin&strandbygaard.net
-24194
- Mary Kay Inc.
- Eric Brock
- eric.brock&mkcorp.com
-24195
- i5k.net
- Iskandar Najmuddin
- iana&i5k.net
-24196
- OSEB NV
- Marc Van Laer
- mvl&oseb.be
-24197
- Colliers Turley Martin Tucker
- Mark Masson
- mmasson&ctmt.com
-24198
- Netcordia, Inc.
- Paul Walters
- support&netcordia.com
-24199
- Primagraphics Ltd
- Ian Hamilton
- idh&primagraphics.co.uk
-24200
- Quality Software Solutions Ltd.
- Adnan Selimovic
- support&qss.ba
-24201
- Adrenio GmbH
- Marcel Tuor
- m.tuor&adrenio.com
-24202
- MIKRONIKA
- Krzysztof Marianski
- kmarianski&mikronika.com.pl
-24203
- Wellington Technology, Inc.
- James Paul Duncan
- pduncan&wellington-tech.com
-24204
- Randolph Products Company
- Craig A. Lampani
- admin&randolphproducts.com
-24205
- JUPITER TECHNOLOGY(WUXI)CO.,LTD
- Kevin Huang
- Huang_Kevin&Mtiw.com.cn
-24206
- EGROUP Services Ltd.
- Andras NAGY
- andras.nagy&egroup.hu
-24207
- Deimos-Space S.L.
- Javier Arranz
- javier&deimos-space.com
-24208
- Cystelcom Sistemas S.A.
- David Ramirez
- dramirez&cystelcom.com
-24209
- MWare CZ, s.r.o.
- Pavel Machula
- info&mware.cz
-24210
- ComWorth Co.,Ltd.
- Genki Miyamura
- miyamura&comworth.co.jp
-24211
- Solent Technology Ltd.
- Cliff Gauntlett
- cliff&solenttec.net
-24212
- Conexim Australia Pty Ltd
- Jonathan Thorpe
- jthorpe&conexim.com.au
-24213
- Oxford Health Plans, Llc. (subsidiary of UnitedHealth Group)
- Mathias Rysse
- mrysse&uhc.com
-24214
- Mount Holyoke College Computer Science Department
- Adam Goodman
- agoodman&mtholyoke.edu
-24215
- Reed Technology and Information Services, Inc.
- Stephen Sarachman
- ssarachman&reedtech.com
-24216
- uptime software inc.
- uptime Development Manager
- info&uptimesoftware.com
-24217
- j-buzz, LLC
- Aakash Chopra
- oid.admin&j-buzz.com
-24218
- Metaweb Technologies, Inc.
- David Swift
- dswift&metaweb.com
-24219
- nuBridges, LLC
- Darin Engle
- netops&nubridges.com
-24220
- Marcelo Rinesi
- Marcelo Rinesi
- mrinesi&fibertel.com.ar
-24221
- Donorware LLC
- Bruce Milne
- BruceMilne&DonorWare.com
-24222
- Resolute Networks Ltd.
- David Brief
- davidb&resolutenetworks.com
-24223
- Fabryka Stron Internetowych Sp. z o.o.
- Konrad Lapin
- tech&fsi.pl
-24224
- Southern Regional Education Board
- Joseph Daigle
- joe.daigle&sreb.org
-24225
- Formula Telecom Solutions
- Liran Ravid
- liranr&fts-soft.com
-24226
- Braxcomm Eletrônica Ltda.
- Bernardo Barreto
- braxcomm&uol.com.br
-24227
- Negeso Ukraine Ltd
- Sergey Sholokh
- sergey.sholokh&negeso.com
-24228
- HOT Technology
- David Veronese
- dave&hot.co.nz
-24229
- arvato technology GmbH
- M. Redeker
- marcus.redeker&bertelsmann.de
-24230
- Verint Systems Canada Inc.
- Alexis B. Deschamps
- alexis.deschamps&verint.com
-24231
- GUFI - Gruppo Utenti FreeBSD Italia
- Riccardo Torrini
- vic&gufi.org
-24232
- 6th Sense Software, Inc.
- Todd Olson
- todd&6thsensesoftware.com
-24233
- Ikatu
- Pablo Hoffman
- nospam&pablohoffman.com
-24234
- VuCOMP
- Brant Lewis
- brant.lewis&vucomp.com
-24235
- Hannum Computer Service
- Tom Hannum
- tom&hcscomputing.com
-24236
- NStudioCorp
- Stan Firstov
- stan&firstov.com
-24237
- ResourceChain Inc.
- Jason George
- jason.george&resourcechain.com
-24238
- PACLABS Technology and Innovation, Inc.
- Max (Skip) Arnold
- mparnold&paclabstech.com
-24239
- V-shine Co., Ltd
- Weiwei Zheng
- zhenww02&mails.tsinghua.edu.cn
-24240
- TongSoft Tech.
- Li Shouming
- lsming&tongsoft.com.cn
-24241
- Accucast, Inc.
- Scott Cudney
- scudney&socketware.com
-24242
- SimWorks International Limited
- Greg Amer
- gamer&simworks.biz
-24243
- Amrita Institute of Medical Sciences
- Nikhil Sharma
- nikhilsharma&aimshospital.org
-24244
- IntroMobile CO., Ltd
- Rho Hyoung Seok
- darkeye75&intromobile.com
-24245
- OSS Corporaton
- Vladimir Baranov
- oss2000&oss.ru
-24246
- MGP "Mosvodokanal"
- Alexey Cherkasov
- lexa&mosvodokanal.ru
-24247
- Bettge
- Lutz Bettge
- Lutz&Bettge.com
-24248
- Stockway Oy
- Jouni Stam
- jouni.stam&stockway.fi
-24249
- Clinique Saint-Luc (Bouge)
- Gerd Michalke
- gmichalk&tiscali.be
-24250
- MATRICE SYSTEM S.A.S.
- Stéphane PILLON
- pillon.s&matricesystem.fr
-24251
- Banca24-7 S.p.A.
- Enzo Paoloni
- enzo.paoloni&banca247.it
-24252
- ESG GmbH
- Alexander Gruener
- agruener&esg.de
-24253
- Systems Trust Co., Ltd.
- Naoki Kobori
- nkobori&stcj.co.jp
-24254
- C4 Solutions Oy
- Teemu Mäkelä
- teemu&c4solutions.fi
-24255
- Outpost24 AB
- Jesper Birch
- birch&outpost24.com
-24256
- Deutsche WertpapierService Bank AG
- Ralf Hoops
- ralf.hoops&dwpbank.de
-24257
- Idtect
- Emmanuel FAUX
- efaux&idtect.com
-24258
- Ministry of the Flemish Community
- Wai-Kong Yu
- waikong.yu&vlaanderen.be
-24259
- Achilles Information Limited
- David Bannister
- david.bannister&achilles.com
-24260
- VIELAGE
- regis martin
- regis.martin&ssm-pasdecalais.canssm.fr
-24261
- Mobeon AB
- Ronny Jonsson
- ronny.jonsson&mobeon.com
-24262
- TEAM S.A
- Roberto Murga
- rmurga&ingeteam.es
-24263
- up to data professional services GmbH
- Norbert Bittner
- norbert.bittner&uptodata.de
-24264
- Neusta GmbH
- Boris Blaha
- bblahaysker&neusta.de
-24265
- The British Museum
- Damian Matuszczyk
- dmatuszczyk&thebritishmuseum.ac.uk
-24266
- Infoscope Kft.
- Dohányos András Balázs
- balazs.dohanyos&infoscope.hu
-24267
- Directory Enabled Solutions
- Sean Taylor
- sean&desgroup.net
-24268
- Opendium Ltd
- Harry Mills
- h.mills&opendium.com
-24269
- CR2 LTD
- Cristian Costache
- cristian.costache&cr2.com
-24270
- S3 Srl Servizi Soluzioni Sistemi
- Esposito Aldo
- aldo.esposito&scubo.it
-24271
- Nessus Internet Services Florian Schicker
- Christian Hofstaedtler
- ch&nessus.at
-24272
- Università della Svizzera italiana
- Mario Gay
- directory&ti-edu.ch
-24273
- nihilistic.org.uk
- Steven Thurgood
- oid&nihilistic.org.uk
-24274
- Beyond Security Inc.
- Noam Rathaus
- support&beyondsecurity.com
-24275
- IUT Verdun
- FURIET
- furiet&univ-nancy2.fr
-24276
- Universidad de Oriente
- Nelson Vicuna
- nvicuna&udo.edu.ve
-24277
- Tiaxa do Brasil Ltda.
- Cecilia de Paula e Maia
- cmaia&tiaxa.com.br
-24278
- Università Campus Bio-Medico
- Marco Venditti
- m.venditti&unicampus.it
-24279
- LDAP Administration Console (opensource project)
- Jamie Beverly
- jbeverly1&tampabay.rr.com
-24280
- HdL Coren & Cone
- Tom Hannum
- tomh&hdlccpropertytax.com
-24281
- Family Health International
- Douglas Wilkins
- dwilkins&fhi360.org
-24282
- StackFrame, LLC
- Gene McCulley
- mcculley&stackframe.com
-24283
- dns Ltd
- Stuart Fraser
- stuart.fraser&dns.co.uk
-24284
- wesde
- Karl-Heinz Welter
- karl-heinz.welter&wesde.com
-24285
- Novax Industries Corporation
- Lei Cao
- lei_c&novax.com
-24286
- HumanConcepts
- Piotr Smol
- piotr.smol&humanconcepts.com
-24287
- Telex Communication Inc.
- Shawn Anderson
- shawn.anderson&us.telex.com
-24288
- BHMS Webhosting
- Bart-Jan Vrielink
- bjv&bhms-groep.nl
-24289
- HotFeet GmbH
- Juraj Skripsky
- js&hotfeet.ch
-24290
- Datorföreningen vid LU & LTH
- Tomas Gradin
- system&df.lth.se
-24291
- E-Planit Systems, Inc.
- Tom Thomas
- tthomas&e-planit.com
-24292
- BRAKKE SCHAFNITZ INS BROKERS INC
- KYLE JEROME THOMPSON
- kthompson&brakkeschafnitz.com
-24293
- Toyota New Zealand Ltd
- Alan Way
- afway&toyota.co.nz
-24294
- Air Broadband Communications
- Veera Hatte
- veera&airbb.com
-24295
- Pickwick Consulting
- Stephen Primost
- sprimost&cox.net
-24296
- DENSO WAVE INCORPORATED
- Tatsuya Yamamoto
- tatsuya.yamamoto&denso-wave.co.jp
-24297
- Sonic Solutions
- Robert Petersen
- rpetersen&roxio.com
-24298
- Freudenberg Dichtungs- & Schwingungstechnik GmbH & CoKG
- IT Service FCC
- itservice.fcc&freudenberg-ds.com
-24299
- go4teams GmbH
- Daniel Tietze
- daniel.tietze&go4teams.com
-24300
- Wotif
- Gavin Graham
- technical&wotif.com
-24301
- stj company
- xia zhan gao
- xzg302&yahoo.com.cn
-24302
- Network constructor, Core Constructor , Kun Shan University
- Feng-Pin Lo
- abuse&mail.ksu.edu.tw
-24303
- Pegacat Pty Ltd
- Dr Christopher Betts
- chris&pegacat.com
-24304
- ArgusConnect Pty LTD
- Andrew Shrosbree
- andrew.s&argusconnect.com.au
-24305
- INBOS Pty LTD
- Gerry Marthe
- gmarthe&inbos.com.au
-24306
- 3 Vias Technologies
- Darryl Hoch
- darryl.hoch&3-vias.com
-24307
- Activesec S.A.
- Rodrigo Seguel
- rseguel&activesec.biz
-24308
- Media & Telecom Ventures
- Erskine R. Curry
- telecomventures&aol.com
-24309
- Terrascale Technologies Inc.
- Jean-Francois Brousseau
- jfb&terrascale.net
-24310
- Medical Information Technology, Inc.
- Phil Polimeno
- ppolimeno&meditech.com
-24311
- SunHELP
- Bill Bradford
- mrbill&mrbill.net
-24312
- Identity Automation, LP
- Troy Moreland
- troy.moreland&identityautomation.com
-24313
- TiendaLinux.com
- Nestor A. Diaz
- nestor&tiendalinux.com
-24314
- What Creek
- John Birrell
- jb&what-creek.com
-24315
- Fatih University
- emrullah kaya
- ekaya&fatih.edu.tr
-24316
- IT bridge.net s.r.o.
- Petr Burdik
- pet&itbridge.net
-24317
- torrini.org
- Riccardo Torrini
- riccardo&torrini.org
-24318
- InTouch B.V.
- Adrianus Warmenhoven
- adrianus&intouch.nl
-24319
- VOCONS IT Consulting GmbH
- Juergen Vollmar
- j.vollmar&vocons.de
-24320
- ELCOM GROUP
- Jan Grossmann
- grossmann&elcomgroup.cz
-24321
- NetMagic Ltd.
- Zalan Arpad
- azalan&netmagic.hu
-24322
- Petastor, Inc.
- George Chiu
- george_chiu&petastor.com.tw
-24323
- Deephaven Ltd
- Graham Powell
- graham&deephaven.co.uk
-24324
- Electric-Tronics Incorporated
- John Garms
- jgarms&e-tronics.com
-24325
- OGL Computer Services Group Ltd
- Adrian James
- Adrian.James&ogl.co.uk
-24326
- Exsys
- Brice Soler
- brice.soler&exsys.fr
-24327
- Estacha Proyectos y Servicios
- Miguel A. Arévalo
- marevalo&estacha.com
-24328
- Spirit AeroSystems, Inc.
- Kenneth B. Frazier
- kenneth.b.frazier&spiritaero.com
-24329
- Lixil
- Joel Johnson
- mrjoel&lixil.net
-24330
- In Reach Technology
- Robert G. Werner
- robert&inreachtech.net
-24331
- Evolix
- Gregory Colpart
- reg&evolix.fr
-24332
- Hardware Online AS
- Raymond Julin
- raymond&hardware.no
-24333
- FH Ingolstadt
- Juergen Metzger
- metzger&fh-ingolstadt.de
-24334
- EADS DS UK Ltd
- Darren Learmonth
- darren.learmonth&eads.com
-24335
- Storewiz Inc.
- Tzahi Shahak
- Tzahis&Storewiz.com
-24336
- ATM Express, Inc.
- Shawn A. Wilson
- shawnw&atmreports.com
-24337
- Monster Cable Products Inc.
- Joe Keegan
- jkeegan&monstercable.com
-24338
- Situs Management Inc.
- Shinji KOMEDA
- enterprise-number&situs.co.jp
-24339
- ADLINK TECHNOLOGY INC.
- Ryan Hsu
- ryan.hsu&adlinktech.com
-24340
- Macalester College
- Ted Fines
- fines&macalester.edu
-24341
- Pontis Inc.
- Alex Sokolov
- alex.sokolov&pontis.com
-24342
- FIO Labs, LLC
- Robert Allen
- zircote&io2services.com
-24343
- Rokonet Electronics LTD.
- Eli Brin
- eli.brin&rokonet.co.il
-24344
- eSPECTRUM Internet-Solution GmbH
- Andreas Markuse
- mib&espectrum-gmbh.de
-24345
- Xsite GmbH
- Dirk Proepper
- proepper&xsite.de
-24346
- Adaway Consulting
- Simon Adaway
- simon&adaway.org.uk
-24347
- Magicpot Inc.
- SEKI Tetsuo
- seki&magicpot.co.jp
-24348
- GPTech GmbH
- Frank Stein
- info&gptech.de
-24349
- Frank Agerholm
- Frank Agerholm
- franka&serverwg.de
-24350
- Sensoria Corporation
- Ron Dippold
- rdippold&sensoria.com
-24351
- Linux Network Care Inc
- Sutharsan Kathirgamu
- xerophyte&linuxnetworkcare.com
-24352
- Alpha Centauri Software Limited
- Lynden Sherriff
- sidvault&alphacentauri.co.nz
-24353
- Media Technology Systems Inc.
- Steve Woolley
- steve.woolley&mediatechnologysystems.com
-24354
- secscend LLC
- Chris Scheper
- chris.scheper&secscend.com
-24355
- Lemon I.T. Co., Ltd.
- James Chen
- james.chen&lemon.cx
-24356
- Solinus, Inc.
- Mark Maurer
- mark&solinus.com
-24357
- CD-Telematika a. s.
- Jirí Netolický
- netolicky&epos.cd.cz
-24358
- Nomics
- Technik
- tech&nomics.de
-24359
- Deutsche Rentenversicherung Mitteldeutschland
- Stefan Cyriax
- Stefan.Cyriax&drv-rzl.de
-24360
- Transmitton Ltd
- Alan Cuff
- alan.cuff&transmitton.co.uk
-24361
- InnovaSON
- Vincent RECIPON
- v.recipon&innovason.com
-24362
- Duquesne University
- Jeff Fine
- fine&duq.edu
-24363
- Super Star enterprises
- Patrick North
- superstarent&comcast.net
-24364
- ON Semiconductor
- Mike Andl
- mike.andl&onsemi.com
-24365
- Constellation Energy
- Richard Snader
- NOC&constellation.com
-24366
- gui.org
- Shawn Amundson
- sta-xuqrdtmm&gui.org
-24367
- Somerdata Ltd
- Edwin Kayes
- edwin.kayes&somerdata.com
-24368
- Paat Software
- Patalenszki Attila
- pa0026&stud.unideb.hu
-24369
- Medem, Inc.
- Jessica Formoe
- jessi.formoe&medem.com
-24370
- Chang Cheng Information consultant Co., LTD
- Frank Hsieh (Hsieh Chang Ming)
- frank&cms.com.tw
-24371
- London Business School
- Richard Thompson
- rthompson&london.edu
-24372
- Exiis Corporation
- Certificate Administrator
- dave&exiis.net
-24373
- information unlimited
- John Martin Ungar
- john.martin.ungar&dokom.net
-24374
- Life Sciences Collaborative Access Team
- Keith Brister
- kb0508&bb5.us
-24375
- Aleksandar Milivojevic
- Aleksandar Milivojevic
- alex&milivojevic.org
-24376
- Landeshauptstadt Muenchen
- Christian Lutz
- itm.i31&muenchen.de
-24377
- Nassauische Sparkasse
- Joachim Uhr
- joachim.uhr&naspa.de
-24378
- Kizoom Ltd
- Robin Stephenson
- sysadmin&kizoom.com
-24379
- Tracewell Power
- Christoph Heilmann
- cheilmann&tracewell.com
-24380
- certegy
- John Balog
- John.Balog&certegy.com
-24381
- Joachim Uhr
- Joachim Uhr
- joachim.uhr&uhri.de
-24382
- CH2M HILL, Ltd.
- Brett Ammerman
- brett.ammerman&ch2m.com
-24383
- Orange Cable Corporation
- Andrew Leonard
- andy&orangecable.com
-24384
- Caerus, Inc.
- Shawn Lewis
- noc&caerus.net
-24385
- CryptGuard
- Brian Pederson
- security&cryptguard.com
-24386
- STM Networks, Inc
- Marcelo de Barros
- mbarros&stmi.com
-24387
- Software-Engineering Fabiani
- Martin Fabiani
- iana&fabiani.net
-24388
- Washington State Bar Association
- Jeff Wilkinson
- jeffw&wsba.org
-24389
- Suzhou Keda Technology Company, Ltd.
- Li Bo
- libo&kedacom.com
-24390
- IRI Communications, Inc.
- Kazunori ANDO
- aams-nic&iri-com.co.jp
-24391
- DoremiLabs, inc.
- Herve MORILLON
- hmorillon&doremilabs.fr
-24392
- Flexagonal Systems Ltd
- Matthew Shorten
- matthew.shorten&flexagonal.co.uk
-24393
- Office National des Forets
- Maryse BIGOT
- maryse.bigot&onf.fr
-24394
- Concurrent Technologies Plc.
- James Elliott
- jelliott&cct.co.uk
-24395
- Datamat S.p.a.
- Vincenzo Lombardi
- vincenzo.lombardi&datamat.it
-24396
- Xinjiang Sailing Information Technology Co., Ltd
- kechunli
- kecl666&sit.com.cn
-24397
- Libertas Solucoes em T.I. LTDA
- Orgito Renato Luiz Araujo
- orgito&gmail.com
-24398
- Espirito Santo Centrais Eletricas S.A
- Renato Araujo
- renato.luiz.araujo&gmail.com
-24399
- Telsource Corporation
- Guy King
- gking&telsource.com
-24400
- TNS Business Solutions S.A.
- Damian Martinelli
- damian.martinelli&stracienta.com
-24401
- Kanton Basel-Stadt
- Rainer Vögtlin
- Rainer.Voegtlin&bs.ch
-24402
- Omgeo LLC
- Rich Lutz
- richard.lutz&omgeo.com
-24403
- Ministerio da Cultura
- Sergio Ferreira
- ldap&minc.gov.br
-24404
- DroidOS Project
- Geoff White
- info&maildroid.org
-24405
- TC Software, Inc
- Ahmet Taylor
- ahmet&objecttcs.com
-24406
- Dynamic Biometrics Ltd.
- Neil Lowden
- admin&dynamicbiometrics.com
-24407
- OnAir USA, Inc.
- Brian Clayton
- brian.clayton&onair.aero
-24408
- Video Technics Inc.
- Scott Saturday
- ssaturday&videotechnics.com
-24409
- Rising System Inc.
- SAITO Ryota
- ryota&risingsystem.co.jp
-24410
- WHEEL Sp. z o.o.
- Pawel Jakub Dawidek
- staff&wheel.pl
-24411
- Multi Service Forum
- Avri Doria
- avri&acm.org
-24412
- Bundesamt für Verbraucherschutz und Lebensmittelsicherheit
- Jan Seidel
- jan.seidel&bvl.bund.de
-24413
- University of Cambridge, Department of Archaeology
- David Redhouse
- dir21&arch.cam.ac.uk
-24414
- CORE CORPORATION
- Network Solution Division
- nsadmin&core.co.jp
-24415
- Unimatrix-One
- Jernej Kos
- kostko&unimatrix-one.org
-24416
- NC Interactive
- Joel Comeaux
- jcomeaux&ncinteractive.com
-24417
- Infoweapons Corporation
- Lawrence Hughes
- lhughes&infoweapons.com
-24418
- Infinico Corporation
- Jet Takeyama
- takeyama&infinico.co.jp
-24419
- Red Crow Group LLC
- Jeff Rizzo
- oid&redcrowgroup.com
-24420
- European Airlift Centre
- Christian Hahn
- chahn&euroairlift.org
-24421
- Roweb Development
- Gabriel Bogdan Rosu
- gbrosu&roweb.ro
-24422
- Information Management Services
- Shaun Thompson
- sthompso&notes.state.ne.us
-24423
- Xtek Computer
- Mr. Rene Hoffmann
- technik&xtek.de
-24424
- IDSRDL
- Thomas B. Ivers
- showflash&netscape.net
-24425
- Monksoft
- Taylor Wilson
- taylor&monksoft.net
-24426
- Metavize, Inc
- Bill Scott
- bscott&metavize.com
-24427
- Coyote Point Systems, Inc
- Bill Kish
- kish&coyotepoint.com
-24428
- Nusoft System Inc.
- Rayearth Cheng
- support&nusoft.com.tw
-24429
- Mangold Elektronik
- Joerg A. Mangold
- mibcontact&mangold.net
-24430
- Red Earth Systems AB
- Martin Wilderoth
- admin&redearth.se
-24431
- ACCEL Instruments GmbH
- Martin Koller
- koller&accel.de
-24432
- UIIP NASB
- Andrei Kruhliakou
- labnet&newman.bas-net.by
-24433
- Yunet International D.O.O.
- Milos Prodanovic
- milosp&yu.net
-24434
- Ohio Bureau of Workers' Compensation
- Chad Miller
- Chad.Miller&BWC.state.OH.US
-24435
- Ubitech Systems Inc
- Nila Bronkhorst
- nbronkhorst&ubitech.com
-24436
- Power Distribution, Inc.
- Steve Richardson
- srichard&pdicorp.com
-24437
- Deightime, LLC
- Dan Deighton
- dan-iana&deightime.com
-24438
- OAO RoEduNet
- Octavian RUSU
- octavian&iasi.roedu.net
-24439
- JBG/Development Group, L.L.C.
- Michael Rogers
- mlr&jbg.com
-24440
- Xsigo Systems
- Arun Singh
- aruns&xsigo.com
-24441
- oddbit.com
- Lars Kellogg-Stedman
- ldap-oid-contact&oddbit.com
-24442
- smartx GmbH
- Marco Berger
- info&smartx.ch
-24443
- Colby Sas
- Giacomo Olgeni
- g.olgeni&colby.it
-24444
- UniBridge AS
- Pål Kristiansen
- pal.kristiansen&unibridge.no
-24445
- Carsten Heinrici
- Carsten Heinrici
- carsten&heinrici.net
-24446
- TILIAR Services
- Andreas Linder
- linder&tiliar.com
-24447
- St Basil's Homes
- David Cartwright
- dcartwright&stbasils.org.au
-24448
- WEB.DE GmbH
- Dirk Fuchs
- hostmaster&webde.de
-24449
- Ketsujin Studios
- Denis Tumpic
- dtumpic&ketsujin.com
-24450
- AlphaGeek, Inc.
- Keisuke Nishida
- knishida&alphageek.jp
-24451
- Transitional Data Services, Inc.
- Craig Macfarlane
- noc&transitionaldata.com
-24452
- AXI
- Peter Neefs
- pnee&axi.be
-24453
- Bank Hapoalim ltd.
- Mr. Barak Fishman
- barak.fishman&mailpoalim.co.il
-24454
- Schenker-Joyau
- Fabrice RODAK
- fabrice.rodak&schenker-joyau.fr
-24455
- Isotoma Limited
- Doug Winter
- doug&isotoma.com
-24456
- CODA Plc
- Chris Gill
- chris.gill&coda.com
-24457
- BWMS Soluções Móveis Ltda
- Altino Pavan
- altino&bewireless.com.br
-24458
- Wise Telecomunicações Ltda.
- Luiz Roberto Fontes Pacces
- ti&wisetelecom.com.br
-24459
- Saskatchewan Wheat Pool Inc.
- Ross Bowman
- ross.bowman&swp.com
-24460
- Fortean Technologies, Inc.
- Bruce Walter
- walter&fortean.com
-24461
- Advanced Solutions International, Inc.
- Rob Wenger
- rwenger&advsol.com
-24462
- E-Sauce Limited
- Lee Hetherington
- ops&e-sauce.com
-24463
- Banco de Costa Rica
- Jorge Castro Zeledon
- jmcastro&bancobcr.com
-24464
- First Citizens Bank
- Douglas Brandsen
- doug.brandsen&firstcitizens.com
-24465
- BELNET
- Support
- support&belnet.be
-24466
- move.L consulting
- Martin Adolfsson
- snmp&movel.se
-24467
- walkgame
- MIS
- acheng&walkgame.com
-24468
- LK PRODUKT CZ a.s.
- Ing. Milan Lehecka
- lkprodukt&lkprodukt.cz
-24469
- University of Leeds
- Qin Li
- q.li&leeds.ac.uk
-24470
- Boston Maine Airways Corp.
- Kevin Blaisdell
- mis&flypanam.com
-24471
- Omniphasic Institute LLC
- Isaac Fischer
- isaac.fischer&omniphasic.com
-24472
- University of Virginia's College at Wise
- Christopher Boggs
- chb5s&uvawise.edu
-24473
- NetMedia, Inc.
- Alex Karahalios
- Alex&NetMedia.com
-24474
- Jacobacci
- postmaster
- postmaster&jacobacci.com
-24475
- Optena Corporation
- Surendra Reddy
- skreddy&optena.com
-24476
- Server-side Systems Ltd
- Lee Goddard
- oid&leegoddard.net
-24477
- eenterphace
- Julian Reich
- jr&eenterphace.com
-24478
- megatrade corp.
- Yasuyuki Imaizumi
- imaizumi&megatrade.co.jp
-24479
- E.ON Business Services Czech Republic s.r.o.
- Josef Ječmen
- josef.jecmen&eon.com
-24480
- oncampusuk
- matthew venn
- matt&oncampusuk.co.uk
-24481
- Warsaw Data Center Sp. z o.o.
- Adrian Blazej
- info&wdc.pl
-24482
- Light Backup Services
- Sheryl Erez
- info&lightbackups.com
-24483
- ISO New England Inc.
- Jason Qualkenbush
- jqualkenbush&iso-ne.com
-24484
- Advanced Broadcast Components Ltd.
- Ekkehard Domning
- snmp&adcocom-broadcast.com
-24485
- webmasters akademie GmbH
- Marc Remolt
- m.remolt&webmasters.de
-24486
- Micromedia International
- Michel LLONCH
- michel.llonch&micromedia-int.com
-24487
- Bulletproof Solutions Inc
- Jeff Shaw
- jeff.shaw&bulletproofsi.com
-24488
- United Solutions International
- Ochirkhuyag Lkhagva
- ochirkhuyag&usi.mn
-24489
- brut
- Homa Brut
- homabrut&gmail.com
-24490
- The Phone House Telecom GmbH
- Andreas Schweer
- andreas.schweer&phonehouse.de
-24491
- Asociación Centro de Cooperación Interbancaria
- Rafael Marín
- cci&asociacioncci.es
-24492
- Consorzio Torino Time
- Ezio Ajmar
- ajmar&sia-av.it
-24493
- Safend Ltd.
- Adam Carmi
- adam.carmi&safend.com
-24494
- Extra Prof S.R.L.
- Andrew Clark
- aclark02&extraprof.com
-24495
- comundus Unternehmensberatung GmbH
- Meinrad Schwamborn
- m.schwamborn&comundus.com
-24496
- Western Telematic Inc.
- Ken Partridge
- kenp&wti.com
-24497
- KMD.COM.TW
- Sandy Chen
- sandy&kmd.com.tw
-24498
- Interprise (Pty) Ltd
- Philip Correia
- oid&singularity.co.za
-24499
- European Aviation Safety Agency
- Lee Goddard
- lee.goddard&easa.eu.int
-24500
- MorkoM GmbH
- Guenter Morper
- gmorper&morkom.org
-24501
- Green Hat Consulting Ltd.
- John Chewter
- support&greenhatconsulting.com
-24502
- Wandering Barque
- Peter Lacey
- placey&wanderingbarque.com
-24503
- ICONICS, Inc.
- Petr Balda
- petr&iconics.com
-24504
- CENTRÁL Mosodák Szolgáltató Részvénytársaság
- Mihály Kepler
- kepi&cmrt.hu
-24505
- Emerging Systems
- Glenn Elliott
- glenn&emerging.com.au
-24506
- Osaki Electric co.,ltd.
- Makoto Takahashi
- ma.takahashi&osaki.co.jp
-24507
- Peadar Grant
- Peadar Grant
- peadar.grant&ucdconnect.ie
-24508
- StagniNET
- Stagni Paolo
- paolo.stagni&gmail.com
-24509
- Commonwealth of Massachusetts
- Jeff Flannery
- jeff.flannery&state.ma.us
-24510
- SHANGHAI SIMED TECH LTD.
- Shennan Jiang
- simed&163.com
-24511
- FlowInspect SpA
- Marco Grillo
- mgrillo&flowinspect.com
-24512
- Beijing Hugeland Technologies co.,Ltd.
- Qiu Jinzhu
- qiujinzhu&hugeland.com
-24513
- Finnish Game and Fisheries Research Institute
- Matti Kaisla
- matti.kaisla&rktl.fi
-24514
- Rivulet Communications, Inc.
- Ken Chapman
- kchapman&rivulet.com
-24515
- ROC Software Systems, Inc.
- Mike Broadway
- mike.broadway&rocsoftware.com
-24516
- Conair Corporation
- Joshua Cloud
- joshua_cloud&conair.com
-24517
- LTIA
- Marcelo Fornazin
- fornazin&fc.unesp.br
-24518
- Great-West Life & Annuity Insurance Company
- James Schultz
- james.schultz&gwl.com
-24519
- Trustwave Holdings, Inc. (formerly 'XRamp Security Services Inc.')
- OIDAdmin
- OIDAdmin&trustwave.com
-24520
- Tokash Consulting Inc.
- Keith Tokash
- ktokash&hotmail.com
-24521
- SupplyFX, Inc
- David Trott
- ldap&supplyfx.com
-24522
- PT. Excelcomindo Pratama, Tbk.
- Azhari Naman
- azhari&xl.co.id
-24523
- infeurope S.A.
- Joerg Dorchain
- sysadmin&infeurope.lu
-24524
- RheinEnergie AG
- Achim Kader
- a.kader&rheinenergie.com
-24525
- Twisted Pair Solutions, Inc.
- Joshua Cloud
- jcloud&t-pair.com
-24526
- St James the Great R.C Primary & Nursery School
- Simon Kelsall
- simonk&stjamesthegreat.org
-24527
- commax Co.,Ltd.
- HYUNSEOK HAN
- hshan&commax.co.kr
-24528
- ProgramDuon AB
- Stefan Johansson
- stefan&programduon.se
-24529
- Systembetreuung.com
- Jens Höhne
- jens.hoehne&systembetreuung.com
-24530
- Universidade Federal do Amazonas
- Leandro Nascimento dos Santos
- tihgre&hotmail.com
-24531
- Metis Communication Co., Ltd
- Min Jung Lee
- min&metiscomm.co.kr
-24532
- Intelliguard I.T.
- Richard Jones
- richard.jones&intelliguardit.net
-24533
- Akvi-Patent Co.
- Papp Horvath Nandor
- papp.horvath.nandor&akvipatent.hu
-24534
- Gordano Ltd
- Griff James
- gj&gordano.com
-24535
- MD Systems
- Miro Dietiker
- info&md-systems.ch
-24536
- DAS
- Hector Corredores
- hector_corredores&digitel.com.ve
-24537
- NNMI
- Chung-Yeol Lee
- morning&nnmi.kaist.ac.kr
-24538
- Morning
- Lee, Chung-Yeol
- morning&chollian.net
-24539
- IST Holdings (Pty) Ltd.
- Paresh Joshi
- paresh&ist.co.za
-24540
- Betty TV Entwicklungs GmbH
- Michael Friedel
- m.friedel&betty-tv.com
-24541
- Beijing GrandRole Software Co.,Ltd.
- Cao Jing
- caoj&grandrole.com
-24542
- Albert-Einstein-Gymnasium
- Jan-David Salchow
- jdsalchow&web.de
-24543
- Black Eyed Moon
- Kent Lee
- ikenticus&gmail.com
-24544
- JSC "Eltel"
- Yura Kardukov
- rodriges&eltel.net
-24545
- Ursus Technologies, Inc.
- Brian Henling
- brian.henling&ursus-tech.com
-24546
- ServerCave, Inc.
- Chris Rogers
- chris&servercave.com
-24547
- Linux Users Group Singapore
- Michael Clark
- committee&lugs.org.sg
-24548
- OutSys snc
- Guidotti Fabrizio
- fguidotti&outsys.it
-24549
- Triple-m Systems AG
- Werner Bieri
- sales&triple-m.ch
-24550
- edoras GmbH & Co. KG
- Janosch Langer
- spam&edoras.de
-24551
- CPU d.o.o.
- Vladimir Kraljevic
- vladimir.kraljevic&cpu.co.yu
-24552
- Inverse Path Ltd.
- Andrea Barisani
- oid-admin&inversepath.com
-24553
- Prompttec Product Management GmbH
- Peter Hoedl
- p.hoedl&prompttec.com
-24554
- Church of the Nazarene
- Michael D. Fetting
- it&nazarene.org
-24555
- RACKMASTER SYSTEMS INC.
- FAISAL AHMED
- FAHMED&RACKMASTER.COM
-24556
- Starwave Technologies,Inc.
- Robin Jiang
- PEN&starwavetech.com.cn
-24557
- Obcanske sdruzeni HKfree
- Jiri Syrovy
- jrk&hkfree.org
-24558
- Arcade ICT BV
- Hans Alstein
- hans.alstein&arcadenetwerken.nl
-24559
- Net Tecnologies
- Andrew Golubev
- golubev&nt.net.ua
-24560
- inode GmbH
- Alexander List
- alexander.list&inode.info
-24561
- Celletra Ltd.
- Baruch Altman
- baltman&celletra.com
-24562
- Bridge Technologies Co AS
- Nils Jørgen Zapffe
- nils.zapffe&bridgetech.tv
-24563
- Kerfi AB Avdelning Norge
- Hagbart Eugen Aandal-Frøystadvåg
- eugen.aandal-froystadvag&kerfi.com
-24564
- HOLON Corp.
- Keiichi Itano
- itano&mail.holondata.co.jp
-24565
- Yuba Community College District
- Christian Ward
- cward&yccd.edu
-24566
- koreanair
- Jin-Yeol Roh
- jyroh&hist.co.kr
-24567
- YIT Corporation
- Unto Eskelinen
- unto.eskelinen&yit.fi
-24568
- DawnSpill Ltd.
- Roland Szabó
- rszabo&dawnspill.hu
-24569
- directnews AG
- Andre Kreubel
- kreubel&directnews.de
-24570
- OpenWired
- David Moron
- david.moron&openwired.net
-24571
- uniwan.be
- Jean-Marc ANDRE
- jean-marc&uniwan.be
-24572
- Totaltel Telecommunication Ltd.
- Ferenc Toth
- totaltel&totaltel.hu
-24573
- Massachusetts Board of Library Commissioners
- Paul Kissman
- paul.kissman&state.ma.us
-24574
- Opsera Ltd.
- Adrian Bridgett
- root&opsera.com
-24575
- Tranzeo Wireless Technologies Inc.
- Damian Wallace
- feedback&tranzeo.com
-24576
- HL7 Lithuania
- Vytenis Punys
- hl7&mmlab.ktu.lt
-24577
- Tosharecomu LLC
- Yuki Hamanaka
- yuki.hamanaka&10share.com
-24578
- IDSignet
- Chen Shaopeng
- chen_shaopeng&idsignet.com
-24579
- Australian Style Pty Ltd
- Bruce Nicholls
- bruce&bottledomains.net.au
-24580
- TietoEnator Broadcasting IT Oy
- Esa Hillilä
- esa.hillila&tietoenator.com
-24581
- Zemp Informatik
- Zemp Dominik
- zemp.dominik&zemp-informatik.ch
-24582
- credativ GmbH
- Martin Zobel-Helas
- martin.zobel-helas&credativ.de
-24583
- Guerrier
- Olivier Guerrier
- olivier+iana&guerrier.com
-24584
- Nagoya University
- Kenji Mase
- oid-admin&itc.nagoya-u.ac.jp
-24585
- Cassiano Morgado de Aquino - ME
- Cassiano Morgado de Aquino
- cassiano.aquino&aqua.com.br
-24586
- BA Systems
- Eric Green
- egreen&ba-sys.com
-24587
- Judson College
- Philip G. Guth
- pguth&judsoncollege.edu
-24588
- Automatic IT Corporation
- Automatic IT OID Administrator
- ianaoid&AutomaticIT.com
-24589
- Redoc Inc.
- Tim Coder
- tim&redoc.com
-24590
- Bristol Technology Inc.
- Ken Blackwell
- ken_blackwell&bristol.com
-24591
- Marchex, Inc.
- Adam Jacob
- adam&marchex.com
-24592
- Brazos County, Texas
- Brazos County Information Technology
- informationtechnology&co.brazos.tx.us
-24593
- Think Zone S.C.
- Jose Manuel Payan del Rio
- support&think-zone.com
-24594
- MYOB Australia E1 Pty Ltd (formerly 'Ilisys Web Hosting Pty Ltd')
- Peter Hallam
- peter.hallam&myob.com
-24595
- safari video networks llc.
- ben thielsen
- bthielsen&1safari.com
-24596
- Ascent Technology, Inc.
- Judy Cui
- JudyCui&ascent.com
-24597
- NRW.BANK
- Gerhard Klein
- gerhard.klein&nrwbank.de
-24598
- NC Cable Pty Ltd t/as Neighbourhood Cable
- Wade Roberts
- iana&ncmail.com.au
-24599
- Downey Savings and Loan Association, F.A.
- Roy Parker
- RoyParker&DowneySavings.com
-24600
- EDI Branch,Shanghai Telecom Corporation Ltd.
- Huang Yanping
- hyp&public.shedi.net.cn
-24601
- Premicare AB
- Tobias Johnsson
- tobias&premicare.se
-24602
- Siemens Com EN PSY DB
- Roman Hector Abril
- roman.abril&siemens.com
-24603
- Peavey Electronics Corporation
- Joe Peavey
- joe&peavey.com
-24604
- CosmosKey
- Johan Akerstrom
- johan.akerstrom&myrealbox.com
-24605
- Owl Computing Technologies, Inc.
- Jim Hope
- jhope&owlcti.com
-24606
- The People's Republic of Ames
- Thomas L. Kula
- hostmaster&tproa.net
-24607
- Drystone
- John Hedges
- john&drystone.co.uk
-24608
- Centre hospitalier de Lagny Marne la vallée
- Christophe Delpierre
- christophe.delpierre&ch-lagny77.fr
-24609
- R. S. Software (India) Ltd.
- Koushik Nath
- knath&rssoftware.co.in
-24610
- gemeentebestuur sint-gillis-waas
- timothy de meersman
- timothy.demeersman&sint-gillis-waas.be
-24611
- Baptist Memorial Health Care Corporation
- Brandy Reid
- brandy.reid&bmhcc.org
-24612
- Fujitsu Hong Kong Ltd.
- Samuel Kwok
- samuelk&hk.fujitsu.com
-24613
- Kingston University
- Simon Willis
- willis&kingston.ac.uk
-24614
- Jakota Design Group GmbH
- Felix Richter
- richter&jakota.de
-24615
- b.comp GmbH
- Thorsten Knabe
- info&b-comp.de
-24616
- CROSSPOiNT
- Jesus Ruiz
- jruiz&crosspoint.es
-24617
- NMS Software, Inc.
- Bizhan Ghavami
- bghavami&netmonsvc.com
-24618
- BOXALINO AG
- Ammann Michael
- michael.ammann&boxalino.com
-24619
- MOSDAN Technology Co.,Ltd
- Sunny Lee
- sunny&mail.mosdan.com.tw
-24620
- Tecnosis, S.A.
- Javier Pacios
- iana&tecnosis.net
-24621
- Tazz Networks Inc.
- Chad Dunn
- cdunn&tazznetworks.com
-24622
- netCo GmbH Hamburg
- S. Anderson
- sanderson&ntcg.de
-24623
- Samsung Thales Co., Ltd.
- Chang Kyoon Kim
- changkyoon.kim&samsung.com
-24624
- EuroCableLabs
- Volker Leisse
- mib&eurocablelabs.com
-24625
- Luxcore Optronics, Inc.
- Gayle Link
- glink&luxcore.net
-24626
- Lime Brokerage LLC
- Chad Cook
- ccook&limegroup.com
-24627
- Vitas
- Duane Ellis
- duane.ellis&vitas.com
-24628
- CXR Larus Corporation
- Tai-Fan Li
- tli&laruscorp.com
-24629
- Telio AS
- Bjørn Nordbø
- bjorn.nordbo&telio.no
-24630
- Skinkers ltd
- Rob Noble
- sysadmin&skinkers.com
-24631
- mediaproxy pty ltd
- Michael Coop
- software&mediaproxy.com
-24632
- CorEdge Networks, Inc.
- Arvid Sorenson
- arvid.sorenson&coredgenetworks.com
-24633
- Toyo Radio Systems Co.,Ltd.
- Hiroshi Igarashi
- penpenpen&toyoradio.co.jp
-24634
- Ericpol Telecom sp. z o.o.
- Waldemar LENDA
- Waldemar.Lenda&ericpol.pl
-24635
- ALPS Electric Europa GmbH
- Dominik Brosch
- dominik.brosch&alps-europe.com
-24636
- XPass Technologies Co., Ltd
- Yongqi Li
- liyongqi&sslvpn.com.cn
-24637
- NETWAVE CO., LTD.
- Munho Kwak
- mhk&net-wave.co.kr
-24638
- JotSpot Inc.
- Brian Thomas
- brian&jot.com
-24639
- Elecom scsi
- Daniele Scarcella
- daniele.scarcella&elecomsc.it
-24640
- Nova Technologies
- David Calloway
- callowayj1&novatechnologies.net
-24641
- Allodial Solutions, Inc.
- Del Miller
- del&allodialsolutions.com
-24642
- University of Sarajevo - Faculty of Electrical Engineering
- Ernedin Zajko
- ezajko&etf.unsa.ba
-24643
- Cedval Info inc.
- Francois Meehan
- fmeehan&cedvalinfo.com
-24644
- Applied Broadband, Inc.
- Jason Schnitzer
- jason&appliedbroadband.com
-24645
- e-DMZ Security, LLC.
- Jeff Zupan
- jeff.zupan&e-dmzsecurity.com
-24646
- Fonner
- Kevin Fonner
- kevin&fonner.net
-24647
- "NTC-Atlas"
- Alexey Nadenenko
- awn&atlas.by
-24648
- SL EDV-Dienstleistungen
- Stefan Löhberg
- post&loehberg.de
-24649
- MainSkill Technologies GmbH&Co.KG
- T.Dargers
- iana_assignments&mainskill.com
-24650
- Control Systems srl
- Di Salvatore Vincenzo
- v.disalvatore&cs2.it
-24651
- RongJi Network Security Technology Co., Ltd
- Daixiang Zhu
- zhudaixiang&rongji.com
-24652
- Everbee Networks
- Defrance Sébastien
- sdefrance&everbee.com
-24653
- Studec
- Patrick Boyer
- patrick.boyer&studec.fr
-24654
- NPO TrustGear
- George Gritsai
- gritsai&hotbox.ru
-24655
- Applied Broadband, Inc.
- Jason Schnitzer
- jason&appliedbroadband.com
-24656
- Pre-Emptive Limited
- Ralph Bolton
- ralph.bolton&pre-emptive.net
-24657
- TCSYS Limited
- Tim Cairnes
- tpc&tcsys.co.uk
-24658
- intivo
- Thomas Tague
- IANA&intivo.com
-24659
- Caringo, Inc.
- Jonathan Ring
- jonathan.ring&caringo.com
-24660
- Rapid Mobile (Pty) Ltd
- Jan van der Watt
- janvdw&rapidm.com
-24661
- WM-data Infra Solutions AB
- Mikael Feldtman
- mifal&wmdata.com
-24662
- Digital Instruments S.r.l.
- Marco Genova
- info&digital-instruments.it
-24663
- Norventure Ltda.
- Trond Karlsen
- trond.karlsen&norventure.com
-24664
- Delaware Technical and Community College
- Robert W. Rahe
- bob&hobbes.dtcc.edu
-24665
- BytePark
- Rogier Krieger
- iana&bytepark.net
-24666
- Camelcom
- Istvan Czegledy
- info&camelcom.hu
-24667
- Atlanta Technical Consultants, LLC
- Donovan Young
- dyoung522&gmail.com
-24668
- Quay Security Ltd.
- Michael Hoegen
- michael.hoegen&quaysecurity.net
-24669
- Beijing Mobile Interactive Co. LTD.
- Mr. Li Yongfeng
- liyongfeng&m-in.cn
-24670
- Gemini Observatory
- Jerry Brower
- jbrower&gemini.edu
-24671
- Vienna University
- Peter Schober
- peter.schober&univie.ac.at
-24672
- Watkins MFG Inc.
- Paul M Vincent
- paul.vincent&WatkinsMFG.com
-24673
- ServerEngines LLC
- Kimball Brown
- kimball&serverengines.com
-24674
- Linzer Technikum - LITEC
- Herbert Jachs
- h.jachs&eduhi.at
-24675
- Nordh Sistemas de Controle Ltda
- Lourival José Passos Moreira
- lourivalmoreira&gmail.com
-24676
- Applied Voice & Speech Technologies, Inc.
- Doug Murray
- dmurray&avst.com
-24677
- NexGen Communications, LLC.
- Trung Nguyen
- trung.nguyen&nexgencom.net
-24678
- Oklahoma City University
- Dennis Rigdon
- netserv&okcu.edu
-24679
- China Sports Lottery Printing(Beijing) Co. Ltd.
- Zhang Yaoxin
- hilsonchang&gmail.com
-24680
- Bradmark Technologies, Inc.
- Edward Stangler
- netadmin&bradmark.com
-24681
- QNAP SYSTEMS, INC
- Nike Chen
- nikechen&qnap.com.tw
-24682
- SAT
- Sang-Young Kim
- sykim&satech.co.kr
-24683
- Hutchison 3G Austria GmbH
- Horst Kapfenberger
- horst.kapfenberger&drei.com
-24684
- Helsinki Business Polytechnic
- Ivonen Jukka
- hostmaster&helia.fi
-24685
- Omada A/S
- Morten Mygind
- mn&omada.dk
-24686
- PROFIBUS Nutzerorganisation e.V.
- Support Centre for PROFINET and PROFIBUS
- pi&profibus.com
-24687
- Integrated Broadband Services, LLC
- Donovan Young
- dyoung&ibbsonline.com
-24688
- C. & H. Euser Transport B.V.
- Allaert Euser
- allaert&euser.nl
-24689
- WAR Ink
- Mike Komer
- iana&war-ink.com
-24690
- Japan Communication Equipment Co.,Ltd.
- Hitoshi Hiraoka
- hiraoka&nitsuki.com
-24691
- Beijing GoodMedia Co. LTD.
- Mr. Xiao Feng
- xiaofeng&m-in.cn
-24692
- Ask Jeeves (Hangzhou) Limited
- Wuyun Kang
- wkang&askjeeves.com
-24693
- Firebrick Ltd.
- Adrian Kennard
- iana&firebrick.ltd.uk
-24694
- Technische Universiteit Eindhoven
- Dean C. Strik
- C.Strik&tue.nl
-24695
- Prodemge - Companhia de Tecnologia da Informação do Estado de
-Minas Gerais
- Eduardo de Paula Neves
- eduardo.paula&prodemge.gov.br
-24696
- Falkin Systems LLC
- Rob Marano
- rob&falkin.com
-24697
- Canal de Isabel II
- Olga Morales
- omorales&cyii.es
-24698
- WH Trading, LLC
- Colin Kubota
- whtis&yahoo.com
-24699
- AGB Nielsen Media Research
- Gabriele De Benedittis
- gabriele.debenedittis&agbnielsen.net
-24700
- Prolon Control Systems
- Thomas Maltesen
- tm&prolon.dk
-24701
- Spitzenverbände der landwirtschaftlichen Sozialversicherung
- Sven Meyer
- sven.meyer&bv.lsv.de
-24702
- CLS Services Ltd
- IT Security
- *itsecmon&cls-services.com
-24703
- Sven Meyer IT-Services
- Sven Meyer
- s.meyer&sm-it-s.de
-24704
- Informatikzentrum Landesverwaltung Baden-Württemberg
- Dr. Hans Peter Ehrentreich
- HansPeter.Ehrentreich&iz.bwl.de
-24705
- Clal Insurance Ltd
- Baruch Oved
- bar1&clal-ins.co.il
-24706
- RW Consulting
- Rich Williamson
- w7ki&northwestradio.net
-24707
- Computation Systemhaus GmbH
- Bernd Ruecker
- info&computation.de
-24708
- University of PISA
- Davide Vaghetti
- davide&unipi.it
-24709
- North York General Hospital
- Gerry Dimnik
- gdimnik&nygh.on.ca
-24710
- OPSOFT s.r.o.
- Stanislav Opach
- support&opsoft.cz
-24711
- MLK - ST informatique
- Sebastien STEINER
- sebastien.steiner&mlk-st.com
-24712
- Waterstone Environmental Hydrology and Engineering, Inc.
- Cedar Myers
- ianaoid&waterstoneinc.com
-24713
- Grammofonartistenes forening
- Terje Klausen
- terje&gramart.no
-24714
- Intesis Software S.L.
- Josep Ceron
- jceron&intesis.com
-24715
- Beijing Langhua Ltd.
- Shi Jinghai
- shijh&langhua.cn
-24716
- Start Stelcom Ltd Corp
- YuCai.SU
- kingsen_su&yahoo.com.cn
-24717
- Berg-BSP
- Guenther Berg
- guenther_berg&web.de
-24718
- Pierre Bruyère
- Pierre Bruyère
- agora&bruyere.at
-24719
- Cyberview Technology Ltd
- Andrew Peek
- andrew.peek&cybview.com
-24720
- Thales Training & Simulation Ltd
- Alan Ball
- alan.ball&thalesgroup.com
-24721
- Svisj
- Fredrik Melsom Klausen
- fredrik&svisj.no
-24722
- Kef Solutions Inc.
- Kevin McCall
- admin&kef.ca
-24723
- SOS GmbH
- Andreas Püschel
- andreas.pueschel&sos-berlin.com
-24724
- Aluria Software
- Tony Carter
- tcarter&aluriacorporate.com
-24725
- Australian Technology Information Pty Ltd
- Tim Nicholls
- tnicholls&austechinfo.com.au
-24726
- USHER
- John C.W. Krienke
- jcwk&internet2.edu
-24727
- CleanOffer, Inc.
- John Hampton
- john&cleanoffer.com
-24728
- pythea
- W.J.T.Then
- h.then&pythea.nl
-24729
- AutoGas Systems, Inc.
- David Ashby
- David_Ashby&autogas.com
-24730
- Audible Magic Corp.
- Jim Schrempp
- j_schrempp&audiblemagic.com
-24731
- Beijing Kexin Technology Co. Ltd
- Wu Fengliang
- flwu&thinkit.cn
-24732
- Universität Bayreuth - RZ
- Heinrich Ney
- Heinrich.Ney&uni-bayreuth.de
-24733
- Summit Computer Systems, Inc.
- Bob Davis
- bob&scsi.com
-24734
- cintech
- Damien Laurey
- damien.laurey&cintech.fr
-24735
- Gunnebo AB
- Björn Nilson
- bjorn.nilson&gunnebo.com
-24736
- Narcommunications
- Mariano Ribichich
- narcommunications&yahoo.com.ar
-24737
- ION R-D Elektronika Bt.
- Attila Aradi
- aradi.attila&ion-rd.hu
-24738
- Cablecom GmbH
- Christian Laudan
- iana-oid&cablecom.ch
-24739
- Slaski Urzad Wojewodzki
- Cisowski Jakub
- oid.admin&katowice.uw.gov.pl
-24740
- ARFWorks
- Christian Reynolds
- cyberdoc&astro.gmtc.net
-24741
- MDT Inc.
- Philip W. Dalrymple III
- pwd&mdtsoft.com
-24742
- Danish Ministry of the Environment
- Carsten Hougs Lind
- chl&cfk.dk
-24743
- Memorex Telex Japan Ltd.
- Shinichi Yoshizawa
- syoshizawa&memorex.co.jp
-24744
- a2 system
- miguel arpa
- miguelarpa&yahoo.es
-24745
- TVWorks
- Przemek Struminski
- snmp&tvworks.com
-24746
- Oberto Sausage Company
- Heath Saunders
- heath.saunders&oberto.com
-24747
- Capella Education Company
- Jeremy D. Pavleck
- jeremy.pavleck&capella.edu
-24748
- TPSA LTD.
- Piotr Kura
- kundus&gazeta.pl
-24749
- Scrutable Systems, Inc.
- Nathan Winant
- nw&scrutable.com
-24750
- Unassigned
- Deregistration on 2006-10-23
- none
-24751
- Cluster-Works GbR
- Martin Roesler
- m.roesler&cluster-works.de
-24752
- SyncIO oHG
- Denis Boehme
- wb&dbse.de
-24753
- SSC Publications Inc.
- Mitch Frazier
- sysadmin&ssc.com
-24754
- SIRCA Ltd
- Andrew Thomson
- ajt&sirca.org.au
-24755
- Satellite Music Australia Pty Limited
- John Rich
- john&sma.net.au
-24756
- PARTAD
- Sergey Sorokin
- sergey&partad.ru
-24757
- WiMAX Forum
- Ron W. Smith
- ron.w.smith&intel.com
-24758
- Brightwire Media
- Chris Nesbitt-Smith
- chris.nesbitt-smith&brightwiremedia.co.uk
-24759
- Panacya Inc
- Ashwath Akirekadu
- ashwath.akirekadu&panacya.com
-24760
- ILS Technology LLC
- MIHAI VOICU
- mvoicu&ilstechnology.com
-24761
- Euro/IP B.V.
- Marcel v. Birgelen
- mbi&euro-ip.net
-24762
- Smart and Final Stores Corporation
- Anna Papp
- anna.papp&smartandfinal.com
-24763
- rrothos.com
- Alexander Tabakoff
- tabakoff&web.de
-24764
- IRIS Corp Bhd
- Chew Kok Hooi
- khchew&iris.com.my
-24765
- Aylus Networks, Inc.
- Yuhua Lu
- yuhua&aylus.com
-24766
- Spiceberry
- Christian Jendeberg
- jendeberg&hotmail.com
-24767
- NOX SYSTEMS AG
- Sven Sauter
- sven.sauter&sauter.li
-24768
- Pott & Körner
- Mike Aretz
- maretz&pottbre.com
-24769
- Acronis, Inc.
- Dennis Dyatlov
- Dennis.Dyatlov&acronis.com
-24770
- IZALL.COM Ltd.
- Tarmo Kaljumae
- tarmo&izall.com
-24771
- Intercooperation
- Claude Fankhauser
- cfankhauser&intercooperation.ch
-24772
- SolidX AB
- Peter Eriksson
- registry&solidx.se
-24773
- SG GENIKI BANK S.A.
- KONSTANTINOS KATSOULIS
- kostas.katsoulis&geniki.gr
-24774
- World Health Organization
- Biswamber Gurubacharyab
- hostmaster&who.int
-24775
- Aviareto Limited
- Head of Operations
- registryofficials&aviareto.aero
-24776
- Brasil Telecom S/A
- Andre Gruszynski
- agski&brasiltelecom.com.br
-24777
- Ingenious Corporation Ltd.
- Alan Helmore-Simpson
- alanhs&ingeniouscorp.com
-24778
- TenXc Wireless Inc.
- Tam Duong
- tamduong_ba&yahoo.ca
-24779
- SeaNet Technologies, Inc.
- John Burgess
- john.burgess&seanet-tech.com
-24780
- SBIN Systems
- Sean Johnson
- sjohnson&sbinsystems.com
-24781
- A.F.P.B.T.P. du Calvados
- Bergar Sebastien
- sebastien.bergar&ccca-btp.fr
-24782
- TetraNed
- Edwin de Haan
- e.dehaan&tetraned.nl
-24783
- Wola Info S.A.
- Kamil Kuæ
- kamil.kuc&wolainfo.com.pl
-24784
- Logintas AG
- Daniel Lutz
- daniel.lutz&logintas.ch
-24785
- Luganda Group, Inc
- Natasha Cooks
- natasha.cooks&gmail.com
-24786
- AsteriskAD.com
- Tim McQueen
- mcquetm&elmore.rr.com
-24787
- TU Dresden, Chair of Road Design
- Bert Burgemeister
- Bert.Burgemeister&tu-dresden.de
-24788
- Itilon Pty Ltd
- Thomas Price
- snmp&itilon.com
-24789
- Teletech d.o.o.
- Tomi Gacnik
- tomi&teletech.si
-24790
- Handmade Mobile Entertainment
- Systems Administrator
- sysadmin&flirtomatic.com
-24791
- InZon Corp
- Andy Pinkerton
- apinkerton&inzon.net
-24792
- Red Oxygen Pty Ltd
- John Hedges
- john.hedges&redoxygen.com
-24793
- GSTeletech Co.,Ltd.
- Young Ho Song
- syh&gsteletech.com
-24794
- Federated Department Stores
- James Dessin
- jim.dessin&fds.com
-24795
- blue elephant systems GmbH
- Alexander Pertsch
- alexander.pertsch&blue-elephant-systems.com
-24796
- Bundesärztekammer
- Dirk Schladweiler
- dirk.schladweiler&baek.de
-24797
- IMSEC GmbH
- Daniel Lutz
- daniel.lutz&imsec.ch
-24798
- data-complex gmbh
- Mr. Andreas Schmidt
- service&data-complex.net
-24799
- App-Line
- Stéphane Benteux
- sibiloproduct&app-line.com
-24800
- Apogee Network Systems & Consulting, LLC
- Mr. Charles Thompson
- projetcs&apogeenetworksystems.com
-24801
- MTI co. LTD
- SHIN, Tommy (SHIN, Chang min)
- netrian&mtico.co.kr
-24802
- Saratoga Systems, Inc
- Eric DeLaney
- edelaney&saratogasystems.com
-24803
- nu.org
- C Vance
- cjsv&nu.org
-24804
- Akorri Networks, Inc.
- Sanjay Raja
- sraja&akorri.com
-24805
- Bankoa Credit Agricole
- Pierrete Larran
- plarran&bankoa.es
-24806
- Tern Systems Inc.
- Philippe Hoornaert
- philippe.hoornaert&tern.is
-24807
- RISO KAGAKU CORPORATION
- Hideki Akiyama
- akiyama&dev.riso.co.jp
-24808
- EODP Section ( For Testing Only)
- Nopparat Srinim
- nopparat.srinim&gits.net.th
-24809
- Manic Productions
- Trevor Jorgenson
- pdxtechie&gmail.com
-24810
- Innerspace Ltd.
- Alexandre da Silveira Ilha
- ilhapoa&yahoo.com
-24811
- Robatech AG
- A.Buetler
- info&robatech.ch
-24812
- tribaldi GmbH
- Lutz Mueller-Hipper
- info&tribaldi.com
-24813
- chellomedia services Ltd
- Donald Boyes
- dboyes&chellomedia.com
-24814
- Yinhoo Software Inc.
- Daniel.Kitano
- daniel&yinhoo.com
-24815
- Golzari IT-Consultancy
- Matthew Golzari
- enterprise-number&golzari.nl
-24816
- Asoka USA Corporation
- Elsa chan
- charlie.xiang&asokausa.com
-24817
- TuVox Inc
- Veeresh Kolluru
- veeresh&tuvox.com
-24818
- Micro Industries Inc.
- Scott Radcliffe
- scott.radcliffe&gmail.com
-24819
- CARDIONICS SA
- WALDURA JEAN
- jean.waldura&cardionics.be
-24820
- Oskarshamns Konverterings AB
- Leif Ödell
- leif.odell&okabconvert.com
-24821
- TELEFUNKEN Radio Communication Systems GmbH & Co. KG
- Bernhard Hirth
- bernhard.hirth&tfk-racoms.com
-24822
- Instituto Nacional de Estadistica
- Jokin Agurruza
- agurruza&ine.es
-24823
- Amey Datel
- Ian Ward
- ian.ward&amey.co.uk
-24824
- NightStorm Software Systems, Inc.
- Bruce A. Mallett
- bam&NightStorm.com
-24825
- Creighton University
- Sean Kelly
- smkelly&creighton.edu
-24826
- Weyerhaeuser
- David Treece
- david.treece&weyerhaeuser.com
-24827
- Bieles Stano
- Bieles Stano
- stano.bieles&iol.cz
-24828
- Speedway Internet Service SC LTDA
- Raul S. Dias
- raul&dias.com.br
-24829
- Estacado Systems, LLC
- Eric McMurry
- emcmurry&estacado.net
-24830
- THOTT Solutions
- Shawn Webb
- shawn.webb&thott-solutions.com
-24831
- Sirit Technologies Inc.
- David Webb
- dfwebb&sirit.com
-24832
- Mi5 Inc.
- Emma Chung
- emmac&mi5networks.com
-24833
- Eliteitminds Technologies Inc.
- Mike Crawford
- ali3n&eliteitminds.com
-24834
- KAT Project
- Simon Ratcliffe
- sratcliffe&ska.ac.za
-24835
- University of Ostrava
- Alice Vixie
- alice.vixie&osu.cz
-24836
- Johannes Kapune GbR
- Johannes Kapune
- johannes.kapune&kapune.de
-24837
- Sobha Renaissance Information Technology Private Limited
- Sajith Chandran
- sajith.chandran&renaissance-it.com
-24838
- Danbury Health Systems
- Jeff Purslow
- jeff.purslow&danhosp.org
-24839
- Universidade Federal Fluminense
- Vinod Rebello
- vinod&ic.uff.br
-24840
- David Ross
- David Ross
- david&drosstech.com
-24841
- Red [E] Entertainment Group
- Judith Freiha
- judith&red-e-ent-group.com
-24842
- Gravitime
- Stephane GERBAUD
- stephane.gerbaud&laposte.net
-24843
- Halier
- Linus Ericsson
- le7&halier.net
-24844
- Petroleum Convenience Alliance for Technology Standards, Inc.
- John Hervey
- jhervey&pcats.org
-24845
- JSC institute "Promstrojniiproject"
- Igor Frolov
- test&psp.aaanet.ru
-24846
- Scivo Technology Co. Ltd.
- Jie.Ouyang
- ouyangjie&scivo.com
-24847
- International Criminal Court - Cour Penale Internationale
- Daniel DRUMEA
- daniel.drumea&icc-cpi.int
-24848
- bollcons
- Oliver Bolliger
- oidmaster&oli.ch
-24849
- ELITNET, Ltd.
- Jonas Zaveckas
- jonas&elitnet.lt
-24850
- Mercantile Network Brasil, Ltda.
- Sidney Huber
- sidney&huber.com.br
-24851
- Hillsborough Community College
- Paul Carroll
- oid.admin&hccfl.edu
-24852
- Phihong USA
- Richard Frosch
- rickf&phihongusa.com
-24853
- Komerccentrs DATI grupa
- Denis Basta
- Denis.Basta&kc.lv
-24854
- Pacific Star Communications
- Jeff Grossman
- jgrossman&pacstar.com
-24855
- Sensonxi Inc.
- Mark Rue
- mrue&sensonix.com
-24856
- MDS Pharma Services
- Thomas Grundstrom
- thomas.grundstrom&mdsinc.com
-24857
- VECTORsgi
- Matt Murphy
- matt.murphy&vectorsgi.com
-24858
- Vendetta Performance Limited
- Mike Lowrie
- mlowrie&vendetta.ca
-24859
- Shanghai PONX technology com.,Ltd.
- Ruifeng Zhang
- Ruifeng_zhang&163.com
-24860
- tosker.net
- Mike Goggin
- mettaur&gmail.com
-24861
- StudyStack
- John Weidner
- john.weidner&studystack.com
-24862
- Qualimedic.com AG
- Martin v. Boehlen
- edv&qualimedic.de
-24863
- MTI Technology GmbH
- Gerhard Lochmann
- glochmann&de.mti.com
-24864
- Link GmbH
- Tom E. Wierich c/o Link GmbH
- t.wierich&link-gmbh.com
-24865
- Cramer Systems Ltd
- James Dingwall
- james.dingwall&cramer.com
-24866
- Hans Turck GmbH & Co. KG
- Mr. Markus Ingenerf
- markus.ingenerf&turck.com
-24867
- Goldsmiths College, University of London
- Suzanne Payne
- s.payne&gold.ac.uk
-24868
- Technoface Corporation
- Cornelius O'Herlihy
- conchan&technoface.co.jp
-24869
- KLab Inc.
- SNMP MIB Management
- mib&project.klab.org
-24870
- ZE PAK SA
- Przemys³aw Maleszka
- maleszka.przemyslaw&zepak.com.pl
-24871
- Webroot Software, Inc.
- Bryan Gale
- bgale&webroot.com
-24872
- H-D-H
- Dieter Hendricks
- dh&h-d-h.de
-24873
- Procesamiento Digital y Sistemas, S.L.
- Jose Valladares
- jvalladares&prodys.net
-24874
- GO Networks, Inc.
- Executive Office Manager
- info&gonetworks.com
-24875
- Andxor Soluzioni Informatiche S.r.l.
- Alfonso De Gregorio
- iana&andxor.com
-24876
- Atlas Advanced Internet Solutions Ltd.
- Technical Department
- admin&aais.net.uk
-24877
- Informatica y Comunicaciones Avanzadas, S.L.
- Luis Rodrigue
- luis.rodriguez&grupoica.com
-24878
- Mercurio Comunicaciones
- Francisco Perea
- faperea&gmail.com
-24879
- Gi Gesundheitsinformatik GmbH
- Michael Westermann
- post&ginfo.de
-24880
- DIRECCION DE IMPUESTOS Y ADUANAS NACIONALES
- Diego Mauricio Calderon
- dcalderonp&dian.gov.co
-24881
- CERIST
- Aouaouche El-Maouhab
- elmaouhab&wissal.dz
-24882
- Alcatel Japan Ltd.
- Hisu Kang
- hisu.kang&alcatel.co.jp
-24883
- Vertigo Media, LLC
- Faisal Rahman
- frahman&vertigomedia.com
-24884
- Toneware Technology co. Ltd.
- Huazhang Tong
- tonghz&zju.edu.cn
-24885
- Banca Intesa AD Beograd
- Milan Markovic
- milan.markovic&deltabanka.co.yu
-24886
- Eigil Bjørgum
- Eigil Bjørgum
- eigil&bjorgum.no
-24887
- Parlamento de Galicia
- Jorge Remuinan-Suarez
- remuinan&parlamentodegalicia.es
-24888
- Malden Electronics Ltd.
- Richard Reynolds
- support&malden.co.uk
-24889
- IB Technologies Sdn. Bhd.
- Khalil Huzairi Bin Ahmad
- khalil&ibtech.com.my
-24890
- Extant Solutions
- Andrew Hogan
- andrew&extantsolutions.com
-24891
- Instituto Tecnológico y de Estudios Superiores de Occidente A.C.
- José Alberto Guzmán Ramírez
- hostmaster&iteso.mx
-24892
- Great Atlantic and Pacific Tea Company, Inc.
- Christopher Horn
- hornc&aptea.com
-24893
- GE Intelligent Platforms, Inc.
- Chiu Leung
- chiu.leung&ge.com
-24894
- PantheraNet
- Steven Saner
- ssaner&pantheranet.com
-24895
- Medifacts International Inc.
- Kenneth White
- kwhite&medifacts.com
-24896
- Microdental Laboratories
- John Helmuth
- helmuthj&microdental.com
-24897
- Indel Industria Eletronica Ltda
- Fabio Medeiros
- fabsilv&yahoo.com
-24898
- d&b audiotechnik GmbH
- Gunter Coelle
- it-support&dbaudio.com
-24899
- Agama Technologies AB
- Rolf Wilteus
- support&agama.tv
-24900
- Aurora Networks (GoBackTV)
- Dave Baran
- dbaran&aurora.com
-24901
- Future Infonet
- Hyun-Su Choi
- solution&futureinfonet.com
-24902
- Astech Corporation
- horie toshio
- t_horie&astech.co.jp
-24903
- Corporación Politécnica Nacional de Colombia
- Igor Madera Sepulveda
- imadera&gmail.com
-24904
- Skyrecon Systems SA
- François-Philippe IL GRANDE
- francois&skyrecon.com
-24905
- Nextsense Ltd
- Daniel Danilovski
- daniel&nextsense.com
-24906
- Electronic Solutions Ltd.
- Chris Jones
- chris.jones&e-s.co.uk
-24907
- Infopact Netwerkdiensten B.V.
- Support at Infopact
- support&infopact.nl
-24908
- Stored IQ, Inc.
- Janos Haide
- iana&storediq.com
-24909
- Secure-24, LLC
- Sean E. Millichamp
- sean.millichamp&secure-24.com
-24910
- OOO "ElitStudio"
- Alex Unigovsky
- admin&compot.ru
-24911
- Foxbyte Ltd
- Ian Normington
- ian&foxbyte.co.uk
-24912
- ASELSAN INC.
- Ahmet Burak NASUHBEYOGLU
- abnasuh&aselsan.com.tr
-24913
- Cook Group Incorporated
- Ted Hickman
- thickman&cookgroupinc.com
-24914
- WSOFT, Lda.
- Eduardo Rodrigues
- geral&wsoft.pt
-24915
- iG Internet Group do Brasil Ltda
- Daniel Theodoro
- email-ig&ig.com.br
-24916
- Essent Corporation
- Stephen Luisser
- support&essent.com
-24917
- Intermedix Corporation (formerly 'Collaborative Fusion, Inc.')
- Bryan Kaplan
- bryan.kaplan&intermedix.com
-24918
- Radmer
- Randy Radmer
- radmer&gmail.com
-24919
- Web Wizard Design
- Max Schubert
- security&webwizarddesign.com
-24920
- Our Help Desk
- Max Schubert
- max&webscorpion.com
-24921
- MAINDATA, spol. s r.o.
- Mr. Dusan Statelov
- statelov&maindata.info
-24922
- VoX Communications, Inc.
- Phil D'Amore
- damorep&voxcorp.net
-24923
- Shodor Education Foundation, Inc
- Simon Karpen
- skarpen&shodor.org
-24924
- Unicentrix Solutions
- Al Gonzalez
- Al.Gonzalez&Unicentrix.com
-24925
- Jordet
- Stian Jordet
- stian_web&jordet.nu
-24926
- LAIKA, Inc.
- Mahlon E. Smith
- mahlon&laika.com
-24927
- Exegy, Inc.
- David Schuehler
- dschuehler&exegy.com
-24928
- WaterEd Australia Pty Ltd
- Cameron Miller
- cmiller&icewarm.com.au
-24929
- vt100 digital solutions
- Harald Klein
- info&vt100.at
-24930
- synedra information technologies GmbH
- Thomas Pellizzari
- t.pellizzari&synedra.com
-24931
- Mixed Signals, Inc.
- Sam Barone
- oid-admin&mixedsignals.com
-24932
- Mcomms Design
- G. Simonds
- info&mcommsdesign.com
-24933
- angel bosch
- angel bosch
- muzzol&gmail.com
-24934
- ISCG Ltd.
- Piotr Olszewski
- piotr.olszewski&iscg.pl
-24935
- TetraNed
- Edwin de Haan
- e.dehaan&tetraned.nl
-24936
- Snecma Propulsion Solide, Groupe SAFRAN
- Chantal Dessaints
- chantal.dessaints&snecma.fr
-24937
- Universal Display and Fixtures Company
- Alan Bunch
- admin&udfc.com
-24938
- Technolabs S.p.A.
- Umberto Innocente
- Umberto.Innocente&technolabs.it
-24939
- qpass
- Martin Sperl
- admin&rt.solutions.qpass.com
-24940
- Department of Computer Science, National Chiao Tung University
- Jui-Nan Lin
- jnlin&csie.nctu.edu.tw
-24941
- EMKA Technologies SA
- David RYCHEN
- d.rychen&emka.fr
-24942
- Kyle Fox DBA DigitalFennec Networks
- Kyle Fox
- kyle.fox&kayfox.org
-24943
- Rigpa
- Joe Mellon
- joseph.mellon&wanadoo.fr
-24944
- Kreuzinger IT-Trilogie
- Bernd Kreuzinger
- bernd&kreuzinger.de
-24945
- ParaSun Technologies Inc.
- Network Operations Group
- noc&parasun.com
-24946
- Corredoira Abogados
- José E. Corredoira Rodríguez
- jecr&corredoira.biz
-24947
- Shanalyst Corporation
- Yizhong Sha
- ysha&shanalyst.com
-24948
- Mitsubishi Materials Corporation
- Hiroyuki Unoki
- network&mmc.co.jp
-24949
- Sentillion, Inc
- Ron Arbo
- ron.arbo&sentillion.com
-24950
- Uniform Industrial Corp.
- Wyllie Peng
- wyllie&maruco.url.com.tw
-24951
- Industrial Video and Control, LLC
- Oliver Jones
- ojones&ivcco.com
-24952
- Cool Bananas Limited
- Marshall Brown
- marshall&coolbananas.co.nz
-24953
- Numachi
- Brian Reichert
- reichert&numachi.com
-24954
- Mobile Complete
- Shlomi Gian
- sgian&mobilecomplete.com
-24955
- SyncCast
- Sean Hsu
- shsu&synccast.com
-24956
- Innovative Electronic Designs, Inc.
- Ken Tench
- ktench&iedaudio.com
-24957
- Onoclea
- Pawel Sawicki
- pawel.sawicki&pawel-sawicki.com
-24958
- Ascent Media Group
- Ken Martinek
- websrvcs&ascentmedia.com
-24959
- Pankerl - Media
- Florian Pankerl
- oid.admin&pankerl-media.de
-24960
- The Sip-router Project (formerly 'iptel.org')
- Jan Janak
- admin&sip-router.org
-24961
- Tail-f Systems AB
- Martin Bjorklund
- mbj&tail-f.com
-24962
- Atlantic Harbour Limited
- David Abensour
- David.Abensour&atlanticharbour.com
-24963
- SiliconVortex
- Bryan Stenson
- bryan.stenson&gmail.com
-24964
- Shanghai Qianjin Electronic Equipment Co.,ltd
- Dezhi gui
- gdz198&catv-shqj.cn
-24965
- Picdar Technology Limited
- Andy Heather
- support&picdar.com
-24966
- Greenwich Hospital
- Nassar Nizami
- nassarn&greenhosp.org
-24967
- EPCON Sp. z o.o.
- Pawel Arnikowski
- p.arnikowski&epcon.pl
-24968
- Beijing SecuWard Information Security Technology Co.,Ltd
- ChunChen Ma
- macc&secuward.com
-24969
- Wharfe Electronic Data Ltd
- Nick Brown
- nick&wharfedata.co.uk
-24970
- InterWay, s.r.o.
- Richard Holly
- rho&interway.sk
-24971
- GIDE LOYRETTE NOUEL
- Patrick CHAUVIN
- chauvin&gide.com
-24972
- Lipman Electronic Engineering Ltd
- Gilad Hirsch
- giladh&lipman.co.il
-24973
- Guilin Jharden Communication CO., LTD
- Genzhong Liao
- lgz9988&163.com
-24974
- Lootah
- Hamza M Sahib
- hamza&lootah.com
-24975
- WINGS Ltd.
- Igor Starkov
- info&wsoft.ru
-24976
- OmegaSphere Inc.
- Daniel Dent
- ddent&omegasphere.net
-24977
- Sxip Identity
- Ian Brown
- ian&sxip.com
-24978
- Martin Henschke Geraetebau
- Martin Henschke
- martin&dr-henschke.de
-24979
- madpilot.net
- Guido Falsi
- iana&madpilot.net
-24980
- CERVICEM
- DUVERNOY Thierry
- tduvernoy&free.fr
-24981
- Amex Information Technologies Ltd.
- Aniket Jathar
- aniketj&amexit.com
-24982
- Fiebig+Team GmbH
- Andreas Tikart
- Andreas.Tikart&Fiebig-Team.de
-24983
- Tod Lewin
- Tod Lewin
- StoneCutter&TodLewin.com
-24984
- Kestral Computing Pty Ltd
- Mike Rochow
- miker&kestral.com.au
-24985
- Xeround Systems
- Iris Kaminer
- iris.kaminer&xeround.com
-24986
- Bjørn Ruberg konsulenttjenester
- Bjørn Ruberg
- bjorn&ruberg.no
-24987
- Ortiva Wireless Inc.
- Ortiva Support Team
- support&ortivawireless.com
-24988
- Singh Travels
- Deep Sandhu
- webmaster&singhtravels.com
-24989
- Synalogic e.K.
- Markus Kramer
- iana-oid&synalogic.de
-24990
- Bluestem Ltd.
- Systems Administration
- helpdesk&bluestem.co.uk
-24991
- CardContact Software & System Consulting
- Andreas Schwier
- andreas.schwier&cardcontact.de
-24992
- Toko University
- Olaf Fichtner
- computer&mail.toko.edu.tw
-24993
- MySQL, Inc.
- Marc Paley
- mpaley&mysql.com
-24994
- nabios GmbH
- Valentin Demmel
- valentin.demmel&nabios.com
-24995
- Integratech S.A.
- Mariano Bianchi
- mbianchi&integratech.com.ar
-24996
- SAFE Health
- Matthew Burch
- matthew.burch&safehealth.com
-24997
- Cirrologic Ltd
- Rob Lyle
- admin&cirrologic.co.uk
-24998
- SBA Technologies, Inc
- Hesham Elbaga
- helbaga&sba-tech.com
-24999
- VATSIM.net
- Richard Critz
- cz&vatsim.net
-25000
- ConSol* Consulting & Solutions Software GmbH
- Hannes Fremann
- hg&consol.de
-25001
- Codra Ingenierie Informatique
- Jean-Claude Hallynck
- jc.hallynck&codra.fr
-25002
- VistiC Ltd.
- Peter Nunn
- peter.nunn&vistic.net
-25003
- SQUILD
- Matthias Tinnemeier
- m.tinnemeier&squild.de
-25004
- AEGON Magyarorszag Rt.
- Laszlo Toth
- tothlaszlo&aegon.hu
-25005
- sevecek
- Ondrej Sevecek
- ondra&sevecek.com
-25006
- NVision Czech Republic a.s. (formerly 'SITRONICS Telecom Solutions, Czech Republic a.s.')
- Jan Aftanas
- jaftanas&nvision-group.com
-25007
- Precesamiento Digital y Sistemas S.L.
- JOSE VALLADARES
- JVALLADARES&PRODYS.NET
-25008
- I.T.E.N.O.S. GmbH - Mobile Solutions
- Michael Ruppel
- bsm-technik&itenos.net
-25009
- Sysworksoft
- Patrick Garnier
- patrick.garnier&sysworksoft.net
-25010
- Bedag Informatique SA
- Patrice Bonnet
- osm.ism&bedag.ch
-25011
- Cranite Systems Inc.
- Vasu Murthy
- vmurthy&cranite.com
-25012
- Minux Bt.
- Zoltán Fekete
- fekete.zoltan&minux.hu
-25013
- RS Consulting
- Reiner Schmidt
- reiner.schmidt&rs-consulting.de
-25014
- Visimetrics (UK) Ltd
- Dr Barry Mcdonald
- mcdonald&visimetrics.com
-25015
- 2PM Technologies Ltd
- Andrew Ramsdale
- snmp&2pmtech.co.uk
-25016
- Vizrt/Ardendo AB
- Mikael Wahlberg
- mwa&vizrt.com
-25017
- CertSign
- Cristian Garabet
- office&certsign.ro
-25018
- Proxyconn Ukraine
- Andrew Kozachenko
- andrew&proxyconn.kiev.ua
-25019
- ProfiTrade 90 Ltd.
- Péter Dohányos
- peter.dohanyos&profitrade.hu
-25020
- MobilMail Ltd.
- Herbert Straub
- herbert.straub&mobilmail.at
-25021
- Devon County Council
- Robert Slack
- webadmin&devon.gov.uk
-25022
- Medox Exchange, Inc.
- Michael Beck
- mebeck38&gmail.com
-25023
- Cyberspace Technology Corporation Ltd.
- Hiroyuki Ikawa
- ikawa&cst.co.jp
-25024
- Auriga
- Vincent Gaudeul
- technique&auriga.fr
-25025
- Concentrum, Inc.
- Thomas B Winans
- tom.winans&concentrum.com
-25026
- Linear Equipamentos Eletrônicos S.A.
- Pedro Dionísio Pereira Júnior
- pedro&linear.com.br
-25027
- Billerud AB
- Tomas Einborn
- tomas.einborn&billerud.com
-25028
- WebService Sp. z o.o.
- Pawel Gorazda
- pawel.gorazda&webservice.pl
-25029
- Antek Healthware LLC
- Daniel Schipper
- dschipper&antekhealthware.com
-25030
- Ward-Beck Systems
- Tim Clarke
- tim&ward-beck.com
-25031
- Network Orange Inc
- Jim Skoog
- jskoog&bocasw.com
-25032
- DACI Comércio e Serviços de Equipamentos de Informática Ltda.
- Marcos Oliveira
- marcos.oliveira&daci.com.br
-25033
- Naztec, Inc.
- Bryan Beyer
- bryan&naztec.com
-25034
- Dima Ltda.
- Oxiel Contreras
- ocontreras&dima.com.bo
-25035
- JINAN DEAN COMPUTER TECHNOLOGY CO LTD
- JiWei Wang
- great_wjw&163.com
-25036
- Kantonsschule Romanshorn
- Andreas Brunnschweiler
- ksro&bluewin.ch
-25037
- Novovia
- Olivier GAUDE
- contact&novovia.com
-25038
- denver health
- David Boone
- David.Boone&dhha.org
-25039
- vitroconnect systems GmbH (formerly 'infinity-3 GmbH')
- Christian Kleinewaechter
- christian.kleinewaechter&vcsys.de
-25040
- Keytronix GmbH.
- Marcello Presulli
- m.presulli&keytronix.com
-25041
- Microsol Ltd.
- Adrian Kearney
- adriank&microsol.ie
-25042
- JDM Software BV
- Frank Jong
- f.jong&jdm.nl
-25043
- litts.net
- security
- security&litts.net
-25044
- CapWIN
- Joe Kemp
- jkemp&capwin.org
-25045
- MET/Administration wallonne/Belgique
- Christine Vandesteene
- cvandesteene&met.wallonie.be
-25046
- GlobalTouch Telecom
- Paul Leonovich
- pleonovich&xcastlabs.com
-25047
- Fluid4 Studios
- Alan Milford
- oid&fluid4.net
-25048
- Synchronica PLC
- Richard Godfrey
- richard.godfrey&synchronica.com
-25049
- Opengear Inc.
- Peter Hunt
- support&opengear.com
-25050
- IT Knows ApS
- Lars Knudsen
- larsgk&gmail.com
-25051
- Pythagoras Software (UK)
- Benjamin Donnachie
- support&pythagoras.no-ip.org
-25052
- Idya Bt.
- Zsolt Szloboda
- slobo&t-online.hu
-25053
- Ruckus Wireless, Inc.
- Michael Lin
- mlin&ruckuswireless.com
-25054
- Carillon Information Security Inc.
- Patrick Patterson
- ppatterson&carillonis.com
-25055
- Oxford ArchDigital
- Andrew Larcombe
- andrew&oxarchdigital.com
-25056
- Hungarian Television Corporation
- Gabor Peto
- gabor.peto&mtv.hu
-25057
- Rural Technologies Inc
- Scott Mark
- csmark&ruraltechinc.com
-25058
- Bain Capital LLC
- Jona Kee
- jkee&baincapital.com
-25059
- Abicom International
- Mr David Edwards
- dave.edwards&abicom-international.com
-25060
- pbxnsip Inc.
- Kevin Moroz
- km&pbxnsip.com
-25061
- Domaingruppe Riemann2000.de
- Axel Riemann
- axel&riemann2000.de
-25062
- MessageOne Inc
- Keta Sridhar
- keta.sridhar&messageone.com
-25063
- American Tribu Corp
- Andres Paglayan
- andres&paglayan.com
-25064
- Women's Health Services
- Andres Paglayan
- it&whssf.org
-25065
- Identity Engines Inc.
- Anil Gopinath
- anil.gopinath&idengines.com
-25066
- PELCO
- Randy Williams
- rwilliams&pelco.com
-25067
- G Central
- Sergey Galtsev
- support&gcentral.biz
-25068
- Axistech
- Greg Butler
- gbfunk&gmail.com
-25069
- LISA! Reisen GmbH
- Alexander Greim
- alexxx&iltempo.de
-25070
- MULTICERT - Servicos de Certificacao Electronica S.A.
- Jose Eduardo Pina Miranda
- jose.miranda&multicert.com
-25071
- Teradici Corporation
- Jeff Dillabough
- jdillabough&teradici.com
-25072
- LFW ENTERPRISES, INC.
- MARTIN WRIGHT
- MWRIGHT&LFWENTERPRISES.COM
-25073
- Thinking Phone Networks, Inc.
- Aaron Evans
- aaron&thinkingphones.com
-25074
- Presbyterian Healthcare Services
- Jeremy Vanderburg
- jvanderb&phs.org
-25075
- Inventec Multimedia & Telecom(Tianjin) Co.,Ltd.
- Peter Hu
- hu.xian-chen&importek.com
-25076
- 45RU TRUST
- Trent Lloyd
- trentl&hostaway.net.au
-25077
- BGC Australia Pty Ltd
- Andrew Buckeridge
- andrewb&bgc.com.au
-25078
- MKQ Internetservice
- Manuel Krebs
- oinnmb&domainrobot.mkq.de
-25079
- Gyanasoft Inc
- Srinivasan Murari
- smurari&gyanasoft.com
-25080
- Beluga Software, Inc.
- Jason McKee
- it&belugasoftware.com
-25081
- Universidad de Chile
- Kristian Brinckmann
- kbrinckmann&med.uchile.cl
-25082
- FishNet Connect
- Irik Anderson
- irik&future-proof.net
-25083
- Sirius Creations
- David Lillie
- dreamkeeperscomic&gmail.com
-25084
- Argent Productions
- Daniel Collins
- admin&argentproductions.com
-25085
- Metrocast Cablevision LLC
- Aaron J Brace
- abrace&metrocastcablevision.com
-25086
- Sydney Missionary and Bible College Ltd.
- Scott Tester
- itdept&smbc.com.au
-25087
- HWS
- Evgeny V Illyushko
- info&hws.ru
-25088
- Transactional Records Access Clearinghouse
- System Administrator
- tracadmin&gwmail.syr.edu
-25089
- DSK Bank PLC
- Victoria Dimitrova
- victoria.dimitrova&dskbank.bg
-25090
- Ambientia Oy
- Henri Sora
- iana&ambientia.fi
-25091
- Piranha Messtechnik GmbH & Co. KG
- Rüdiger Köpke
- Ruediger.Koepke&piranha-messtechnik.com
-25092
- Aptic AB
- Daniel Gustafsson
- daniel.gustafsson&aptic.se
-25093
- GreysonBaines Innovation
- Bill Barry
- bill&greysonbaines.com
-25094
- Vonage Holdings Corp
- Matthew Ragan
- mdr&vonage.com
-25095
- XenIT GmbH
- Pascal Schneider
- pascal.schneider&xenit.ch
-25096
- Maimonides Medical Center
- Joe Gallagher
- jgallagher&maimonidesmed.org
-25097
- TJX Companies
- David McLure
- david_mclure&tjx.com
-25098
- Reflectent Software, Inc.
- Norman Wright
- nwright&reflectent.com
-25099
- H.E.B. Company Inc.
- Chris Maier
- maier.chris&heb.com
-25100
- Hochschule Vechta
- Sven Schoeppner
- sven.schoeppner&uni-vechta.de
-25101
- Dataarmor Pvt Ltd.
- Nitin Kataria
- kataria.n&gmail.com
-25102
- Phyxia Networks
- Network Operations
- noc&phyxia.net
-25103
- Netsol International Argentina S.A.
- Nestor Charczuk
- ncharczuk&netsolintl.com.ar
-25104
- Gannett Co., Inc.
- IP Administrator
- ipadmin&gannett.com
-25105
- Cable & Wireless Jamaica
- Kevin McDowell
- kevin.mcdowell&cwjamaica.com
-25106
- CSE Sh.p..k.
- Dr. Blerim Rexha
- office&cse-ks.com
-25107
- Stan Winston Studio
- Alan Wollenstein
- sys&stanwinston.com
-25108
- iRadeon, Inc.
- Don Werve
- donw&iradeon.net
-25109
- Wireless Edge Canada Inc.
- Kevin Stadlmayer
- kevin.stadlmayer&wirelessedge.ca
-25110
- Vanguard Technology Corp.
- Tanda Headrick
- tanda&vanguard-tech.com
-25111
- VODCA
- Stefano Gianolini
- stefano&gianolini.ch
-25112
- Top Gun Drywall Supply
- Caleb Walker
- caleb&topgundrywall.com
-25113
- Konstructiv Ltd.
- Vitaly Tsaregorodtsev
- admin&konstructiv.by
-25114
- SSE INFONET LTD
- Jie Liu
- jieliu&sse.com.cn
-25115
- Delbuilt(Pty)Ltd
- Pieter van der Westhuizen
- delbuilt&lantic.net
-25116
- EBInteractive
- Erick BULLIER
- ebi.iana&ebinteractive.net
-25117
- ID Innovative Datenverarbeitung GmbH
- Robert Wolf
- robert.wolf&id-software.de
-25118
- StanaPhone LLC
- Igor Balk
- ibalk&intermedia.net
-25119
- Adder Technology Limited
- Ian Miller
- iana-reg&adder.com
-25120
- SAGUAPAC
- Andres J. Mendez G.
- mendez.andres&saguapac.com.bo
-25121
- Temex Sync
- Marc Le Meur
- temex_sync&yahoo.fr
-25122
- Hauk & Sasko GmbH
- Thomas Welsch
- welsch.public&hauk-sasko.de
-25123
- Barco Orthogon GmbH
- Klaus Neumann
- klaus.neumann&barco.com
-25124
- Trade-On-Technology Holdings
- Jan Dijkstra
- jdijkstra&lantic.net
-25125
- ALWIL Software
- Ondrej Vlcek
- vlk&avast.com
-25126
- Jackson State University
- Jennifer Rawls
- jennifer.a.rawls&jsums.edu
-25127
- Radialink Corp
- Lutful Khan
- lkhan&radialink.com
-25128
- BreastScreen Victoria
- Jacob Seleznev
- jseleznev&breastscreen.org.au
-25129
- SFBC Anapharm Inc.
- Martin Normand
- mnormand&anapharm.com
-25130
- Scouts of Greece, 10th Group of Akropoli, Thessaloniki
- Christos Triantafyllidis
- iana&e-scouts.gr
-25131
- P-tec Co., Ltd.
- Takanobu Kimizuka
- kimizuka&p-tc.com
-25132
- Redeal Ltd
- Peter Jameson
- PJameson&redeal.co.nz
-25133
- HKU School of Professional and Continuing Education
- Wyman Chan
- wyman.chan&hkuspace.hku.hk
-25134
- ComDesign Inc.
- Kenji Terao
- terao&comdesign.co.jp
-25135
- Ministerul pentru Societatea Informațională (formerly 'Ministerul Comunicatiilor si Tehnologiei Informatiei')
- Augustin Jianu
- augustin.jianu&msinf.ro
-25136
- Haute Ecole Arc
- Romain Voumard
- romain.voumard&he-arc.ch
-25137
- Voronezh State Pedagogical University
- Vladimir Bukhal
- vbux&vspu.ac.ru
-25138
- Alyseo
- Yacine Kheddache
- yacine&alyseo.com
-25139
- Adept Internet (Pty) Ltd
- Gideon le Grange
- gideon&adept.co.za
-25140
- Institut Catholique de Toulouse
- Responsable Informatique
- resp.info&ict-toulouse.asso.fr
-25141
- La Poste
- Frédéric Le Bastard
- frederic.lebastard&laposte.fr
-25142
- IP Control Systems Ltd.
- Paul Anderson
- paul&ip-cs.com
-25143
- Damovo Deutschland Gmbh & Co. KG
- Joachim Zirwes
- joachim.zirwes&damovo.com
-25144
- Perpustakaan Institut Pertanian Bogor
- Adi Sujiwo
- jiwo&ipb.ac.id
-25145
- Netzwerk für Kinder- & Jugendarbeit e.V.
- Holger Kaßner
- holger.kassner&kijunetzwerk.de
-25146
- Cyprus Research and Academic Network
- Agathoclis Stylianou
- secretariat&cynet.ac.cy
-25147
- Internet Solutions
- JC Burger
- jc&is.co.za
-25148
- Pivot3, Inc.
- Thomas Grieff
- tomg&pivot3.com
-25149
- National Electronics and Computer Technology Center
- Suriya U-ruekolan
- suriya.u-ruekolan&nectec.or.th
-25150
- KK-DENSO.Co.Ltd
- osamu yonezawa
- yonezawa&kk-denso.co.jp
-25151
- Dragontech Corporation Limited
- Mr. John Chan
- info&dragontechcorp.com
-25152
- UpTime New Zealand Ltd.
- Paul Steffensen
- paul&uptime.co.nz
-25153
- AvanSec
- Saifi Khan
- manager&avansec.com
-25154
- Seeker Wireless Pty Ltd
- Geoff Field
- geoff&seekerwireless.com
-25155
- Unisis Solutions Corporation
- Chen Wang
- ch.wang&unisis.cn
-25156
- GECI GmbH
- Martin Adler
- martin.adler&geci.de
-25157
- Beckhoff Automation GmbH
- Matthias Gehle
- m.gehle&beckhoff.com
-25158
- Aros Magic
- Arun Sagar
- iana.enterpriseid&arosmagic.com
-25159
- OJSC Svyazintek
- Igor Kozlov
- igor.kozlov&svyazintek.ru
-25160
- Arackal Digital Solutions Inc
- Dorin Neacsu
- dneacsu&arackal.com
-25161
- Telavox AB
- Magnus Persson
- magnus.persson&telavox.se
-25162
- Industrias I, S.C.
- Jose Julio Cidon Peon
- julio.cidon&industriasi.com
-25163
- Broadband Power Solutions
- Marique Nicolas
- n.marique&cet.be
-25164
- Interpay
- V.Lamers
- vjl100&hotmail.com
-25165
- FMN communications GmbH
- Heiko Teichmueller
- heiko.teichmueller&fmn.de
-25166
- Fachhochschule Muenster
- Martin Pupp
- martin.pupp&fh-muenster.de
-25167
- Genexis B.V.
- M. Egmond
- m.egmond&genexis.nl
-25168
- Edentity Labs Ltd
- Host Administration
- hostmaster&edentitylabs.com
-25169
- Avco Systems Ltd
- Adam Barratt
- netmaster-oid&avcosystems.com
-25170
- AFA Systems srl
- Francesco Amorosa
- famorosa&afasystems.it
-25171
- Armbruster IT
- Stefan Armbruster
- stefan&armbruster-it.de
-25172
- Integra Soluciones Avanzadas, S.L.
- Sean C. McCarthy
- informacion&integraas.com
-25173
- MET-Ministère de l'Equipement et des Transports
- Christine Vandesteene
- cvandesteene&met.wallonie.be
-25174
- NetOp as
- Erik Larsen
- InternIT&netop.no
-25175
- DCN
- Philippe FROISSANT
- Philippe.Froissant&DCN.fr
-25176
- Familie Uhlig
- Steffen Uhlig
- steffen&familie-uhlig.net
-25177
- VAS "Latvijas Pasts"
- Aivars Junga
- aivars.junga&pasts.lv
-25178
- Trans-European Research and Education Networking Association
-(TERENA)
- John Dyer
- oid-contact&terena.nl
-25179
- GESA Elektronik GmbH
- Martin Schweden
- martin.schweden&gesa-elektronik.de
-25180
- Itonis Ltd.
- Antonin Kral
- antonin.kral&itonis.tv
-25181
- HEBUS SARL
- emmanuel manent
- ema&hebus.info
-25182
- University of Tampere
- Leena Heino
- leena.heino&uta.fi
-25183
- SS WorkGroup Solutions
- Hendrik JA Meyer
- HendrikM&ssws.co.za
-25184
- Zinwave Limited
- Mike Smith
- msmith&zinwave.com
-25185
- Banco Espírito Santo, S.A.
- João Alves
- jfa&bes.pt
-25186
- Uwe Daube
- Uwe Daube
- TRA_Sniber&web.de
-25187
- A.Ir.Br. Associations des Ingénieurs sortis de l'Université Libre
-de Bruxelles, asbl
- A. Pening
- airbr&ulb.ac.be
-25188
- Bob Jones University
- Tom Berg
- tberg&bju.edu
-25189
- INVIA
- Edward Ficaro
- eficaro&inviasolutions.com
-25190
- ETI A/S
- Jesper Bork
- userinterface&eti.dk
-25191
- Smart Bear Inc
- Jason Cohen
- jason.cohen&smartbearsoftware.com
-25192
- Positive Networks, Inc.
- Sean Scott
- noc&positivenetworks.net
-25193
- Wireless Nomad Co-operative Inc.
- Steve Wilton
- steve&wirelessnomad.com
-25194
- Bizanga Ltd
- Olivier Lemarié
- ol&bizanga.com
-25195
- Waha Oil Company
- Abdulwart Heshek
- ael_hsheek&yahoo.com
-25196
- TM Software
- Thorr Tjorvi Einarsson
- tte&t.is
-25197
- eLearningRecord
- Stephen Kidney
- stephen.kidney&elearningrecord.com
-25198
- SmartServ Web Hosting & Design
- Brandon Penglase
- brandon&smart-serv.net
-25199
- Kobe University
- centersystem kakari
- nextsys-license&istc.kobe-u.ac.jp
-25200
- TurkTel Ltd.
- Tanju Cataltepe
- tanju&turktel.net
-25201
- Uniwell Electronics Ltd.
- Hu Yuxin
- huyx&uniwell.com.cn
-25202
- Beechler Real Estate Services
- Shane Kumpf
- sak&mtco.com
-25203
- Pete Rushmere
- Pete Rushmere
- pete&rushmere.org
-25204
- Prodato Integration Technology GmbH
- Markus Schneider
- Markus.Schneider&prodato.de
-25205
- Movial Corporation
- Karri Niskala
- oid-admin&movial.fi
-25206
- Axxess Identification Limited
- Fred Van Eekeren
- fred&axxessid.com
-25207
- JSC "ATLAS"
- Arsen Banduryan
- iana&atlas.ua
-25208
- CSC Scandihealth A/S
- Torsten Jordt
- tjordt&csc.com
-25209
- CURON Inc.
- Ju, Yong Hun
- zoo&curon.co.kr
-25210
- bizEbox
- Scott McNee
- scott&bizebox.com.au
-25211
- Edison Electric Corp.
- Mr. A. Faris
- faris&eege.com
-25212
- Initworks B.V.
- Jop Zinkweg
- info&initworks.com
-25213
- Nexus Web AS
- Raymond Kristiansen
- raymond&nexusweb.no
-25214
- Minnesota Judicial Branch
- Mike Boettcher
- mike.boettcher&courts.state.mn.us
-25215
- Novacell Solutions Ltd
- Mr Paul Brotherton
- Paul.Brotherton&novacellsolutions.com
-25216
- ADI Video Technologies
- Nahum Aharon
- nahum&adi-vt.com
-25217
- Nautilus Hyosung
- Chang, bo-ick
- icarus&hyosung.com
-25218
- httv
- Olivier Bompuis
- olivier.bompuis&httv.fr
-25219
- RPSoft
- Georges Bacha
- info&rpsoft.com
-25220
- sportcentric Systems
- Paul Nelson
- iana&sportcentric.com
-25221
- Viewpoint Construction Software
- Rob Humphreys
- robh&viewpointcs.com
-25222
- Blue Gecko Inc.
- Jonathan Nicol
- jnicol&bluegecko.net
-25223
- Mindbreeze Software GmbH
- Mr. Daniel Fallmann
- daniel.fallmann&mind-breeze.com
-25224
- Grupo Pochteca SA de CV
- Jose Mondragon
- sistemas&pochteca.com.mx
-25225
- The Austin Diagnostic Clinic, P.A.
- Ned Euwer
- neuwer&adclinic.com
-25226
- MaxMD
- Philip J Grabner
- +1.201.963.0005
-25227
- Ohio Department of Transportation
- Spencer Wood
- spencer.wood&dot.state.oh.us
-25228
- NAV Canada
- Alexey Ponomarev
- ponomaa&navcanada.ca
-25229
- Swedish Alliance for Middleware
- Leif Johansson
- leifj&it.su.se
-25230
- The Ohio Casualty Insurance Company
- Jerry Edgington
- Jerry.Edgington&ocas.com
-25231
- Riverforge LLC
- Shawn South
- shawn&riverforge.com
-25232
- Linog consulting
- Francois Logier
- francois.logier&linog-consulting.com
-25233
- ACS
- Dennis Cox
- Dennis.Cox&acs-inc.com
-25234
- Emdeon Corporation
- Matthew Kiser
- mkiser&emdeon.com
-25235
- Windrush Frozen Foods Ltd
- Robbie Roberts
- robbie.roberts&windrushfrozen.com
-25236
- Invitrogen Corporation
- John Merritt
- john.merritt&invitrogen.com
-25237
- L-3 Communications/Narda Satellite Networks
- Tim Duffy
- tim.duffy&l-3com.com
-25238
- GreenLight Networks
- Bill Uhl
- bill&greenlightnet.com
-25239
- Tknika
- Igor Blanco
- iblanco&tknika.net
-25240
- Peggy A. Pugh, MD, CPC
- James Gula
- jlgula&papugh.com
-25241
- Proximus Information Technologies
- Tom Kidd
- tkidd&proximus.ca
-25242
- ACTORS CONSULTING
- jean-michel FAVRE
- actors&actorsconsulting.fr
-25243
- Agglut Technologies, Inc.
- Vikas Ratna
- vikas&agglut.com
-25244
- BrightNet Oklahoma
- Jackie Bates
- noc&brightok.net
-25245
- Order of St. Charbel
- Bruce Sabalaskey
- webmaster&charbelites.org
-25246
- South-Russia State Technical University
- Timur Burykin
- 0x09&mail.ru
-25247
- DANDELION C.A.
- Cesar Villanueva
- dandelionca&gmail.com
-25248
- Solidcore Systems Inc
- Chiradeep Vittal
- chiradeep&solidcore.com
-25249
- Dispuut Interlink
- Rink Springer
- rink&il.fontys.nl
-25250
- AnQ Systems, Ltd.
- TK Wang
- tkwang&anqsystems.com
-25251
- Princeton Alliance Church
- David Roux
- it&princetonalliance.org
-25252
- vptechnologies srl
- Stefano Veltri
- stefano.veltri&vptech.it
-25253
- MFEC Public Company Limited
- Jaruwat Boonmee
- jaruwat&mfec.co.th
-25254
- Makena Technologies, Inc.
- Bruce Benda
- iana&thereinc.com
-25255
- Broadsoft Systems
- Gerry Pyne
- gerry&broadsoft.com.au
-25256
- Nable Communications, Inc.
- Sunghyuk Kim
- picapitt&nablecomm.com
-25257
- Sipera Systems Inc
- Piyush Bhatnagar
- piyushb&sipera.com
-25258
- Randombit Consulting
- Jack Lloyd
- lloyd&randombit.net
-25259
- JWR Software Services Ltd
- Jim Ramsay
- jim_ramsay&blueyonder.co.uk
-25260
- Frauerpower!
- Leah Cunningham
- leah&frauerpower.com
-25261
- Westenberg & Kueppers GbR
- Mr. Sebastian Kueppers
- technik&wk-serv.de
-25262
- Network Automation
- Jan Ulander
- j.ulander&networkautomation.se
-25263
- mareco gmbh
- Markus Zimmermann
- Markus.Zimmermann&mareco.biz
-25264
- Propolys
- Aurelien Bompard
- abompard&propolys.com
-25265
- Dave Pusey - IT Services
- Dave Pusey
- info&davepusey-itservices.co.uk
-25266
- FUH EOS
- Dariusz Telinga
- eos&post.pl
-25267
- Virtual Synthesis
- David McLure
- dpm&virtualsynthesis.net
-25268
- enfon
- Hans-Peter Kaliba
- office&enfon.com
-25269
- CFNetTools
- Eric Lackey
- eric.lackey&gmail.com
-25270
- MeepZor Consulting
- Ken Coar
- Ken.Coar&Golux.Com
-25271
- Lotus Interworks, Inc.
- Venkat Arvapally
- varvapally&lotusinterworks.com
-25272
- GRUPO XMARTS SA DE CV
- Alvaro Ivan parres Peredo
- arabe&xmarts.com.mx
-25273
- Konsole Network
- Michael Wesner
- mike&konsole.net
-25274
- IT2Media GmbH
- Jueren Thurner (jueren.thurner&it2media.de), B.  Eschrich
-(bjoern.eschrich&is4it.de)
- bjoern.eschrich&is4it.de
-25275
- Peter Hall
- Peter Hall
- whiz100&hotmail.com
-25276
- Gear6
- Martin Patterson
- mpatterson&gear6.com
-25277
- Pekao Inc.
- Patryk Kurek
- megido2&o2.pl
-25278
- Canon Electronics Inc.
- Nozomi Masao
- masao&canon-elec.co.jp
-25279
- Nasdaq MTS (formerly 'OMX Group')
- Pamela Duffy
- pamela.duffy&nasdaq.com
-25280
- Market Pulse International
- Paul Rainey
- PaulR&marketpulse.biz
-25281
- Westerstrand Urfabrik AB
- Mats Sunesson
- ms&westerstrand.se
-25282
- MDK Baden-Württemberg
- Daniel Schempf
- daniel.schempf&mdkbw.de
-25283
- CONSEIL GENERAL DU CHER
- Directeur des systemes d'information
- dir.si&cg18.fr
-25284
- Taylor Made Computer Solutions Ltd
- Bob Osola
- bobo&tmcs.co.uk
-25285
- Beheer-Net
- Wietse W. Jonker
- ianamail&beheer-net.nl
-25286
- Open Logic Solutions Ltd.
- Craig Smith
- craig.smith&openlogic.co.uk
-25287
- Megabit Informationstechnik GmbH
- Michael Benten
- technik&megabit.net
-25288
- onShore Development
- Eric Dodson
- eric&onshored.com
-25289
- Alabama A&M University
- Sang Han
- shan&aamu.edu
-25290
- Convert Italia SpA
- Marco DE CATALDO
- mdecataldo&convertitalia.com
-25291
- Zeacom Ltd.
- Peter Bonham
- peter&zeacom.com
-25292
- Skagit County Government
- Lewis Bogan
- lewisb&co.skagit.wa.us
-25293
- MaxMD
- Philip J Grabner
- grabner&max.md
-25294
- EESTEC International
- Florian Friesdorf
- ldapmaster&eestec.net
-25295
- Affiniti
- Dave Janes
- david.janes&affiniti.com
-25296
- VeriCenter, Inc
- Jobey Smith
- jsmith&vericenter.com
-25297
- Hotxt Ltd
- Jon Topper
- jon.topper&hotxt.net
-25298
- Rohm and Haas Company
- Steven Kradel
- skradel&rohmhaas.com
-25299
- Rodic M&B-Co d.o.o.
- Milan Stanic
- mps&oss.co.yu
-25300
- OfficeNet AS
- Torstein Tauno Svendsen
- torstei&officenet.no
-25301
- Netauth Consulting
- Mike Jackson
- michael.jackson&netauth.com
-25302
- Deakin University
- Daniel John Reynolds
- danny&deakin.edu.au
-25303
- subnetz.computing GmbH
- Tilman Koschnick
- til&subnetz.com
-25304
- Demon Netherlands
- Phil Pennock
- iana-enterprise&nl.demon.net
-25305
- Vodafone Holding GmbH, FPU-CEC
- Rainer Bieniek
- Rainer.Bieniek&vodafone.com
-25306
- Sunmine Communications
- James Goins
- nvt6599qko&s5e.net
-25307
- Mintel Group Ltd
- Patrick van Staveren
- pvanstaveren&mintel.com
-25308
- MDES
- Penny Allen
- pallen&mdes.ms.gov
-25309
- Manchester Airport (MHT)
- Paul Connolly
- pconnolly&flymanchester.com
-25310
- Internet Society Luxembourg ASBL
- System administrator
- hostmaster&isoc.lu
-25311
- RedeDominios.com
- Renato Magalhaes
- rsm&rededominios.com
-25312
- NexTag Inc.
- Satwant Jakher
- sjakher&nextag.com
-25313
- Visual Development
- Chris Velazquez
- chris&vdev.net
-25314
- New Visual Wave Cable Communications Co., LTD.
- Mark Chiang
- mark&nvwtv.com.tw
-25315
- E-wang information Systems Inc
- Xiangming Guo
- flydelong&tom.com
-25316
- Karolinska Institutet
- Eric Johansson
- eric.johansson&ki.se
-25317
- Ixanon AB
- Thomas Sparr
- thomas.sparr&ixanon.se
-25318
- NEXCON Telecomunicaciones S.L.
- Javier Leon Anta
- mail&nexcon.es
-25319
- AccessPt Inc.
- Matt Hall
- matt.hall&accessptinc.com
-25320
- University of Vaasa
- Hannu Hirvonen
- hh&uwasa.fi
-25321
- The American Board of Anesthesiology
- Sal Scotto
- sal.scotto&theABA.org
-25322
- Alarius Systems LLC
- Mike Oliver
- ollie&alariussystems.com
-25323
- AirPatrol Corporation
- Mark Bauer
- mbauer&airpatrolcorp.com
-25324
- Rock Hill Telephone Company
- John Johnson
- John.Johnson&comporium.com
-25325
- Trustserver S. L.
- Bruno A. Crespo
- bruno&trustserver.com
-25326
- FurreVille
- Eric Renfro
- erenfro&gmail.com
-25327
- Visible World Inc.
- Erik van de Pol
- erikp&visibleworld.com
-25328
- Deasil Systems INC
- felix sheng
- felix&deasil.com
-25329
- Henfield AB
- Lennart Henang
- lennart.henang&henfield.se
-25330
- The Nation
- Scott Klein
- scott&thenation.com
-25331
- NOW! Consulting GmbH
- Martin Otto
- martin.otto&now-consulting.de
-25332
- CADLock, Inc.
- IT Administrator
- admin.it&cadlock.com
-25333
- Packetframe, Inc.
- Suresh Venkatraman
- sureshv&packetframe.com
-25334
- Ashantiplc Limited
- James Pauls
- info&spywaredefense.com
-25335
- SEAMAX MANUFACTURING PTE.LTD
- jian_zhang
- dvdrw-zj&126.com
-25336
- DSO National Laboratories
- Ng Siew Choo
- siewchoo&dso.org.sg
-25337
- ChinaCache
- Qingrong.Jiang
- qingrong.jiang&chinacache.com
-25338
- RK Systems
- Robert Kline
- bkline&rksystems.com
-25339
- EMC TECH CO., LTD.
- Dong Jin, Shin
- djshin&emctech.net
-25340
- Tiroler Gebietskrankenkasse
- Martin Klingler
- martin.klingler&tgkk.sozvers.at
-25341
- Immosys LLC
- Bill Anderson
- bill-iana&immosys.com
-25342
- IRCCS Policlinico S.Matteo
- Andrea Gelmetti
- a.gelmetti&smatteo.pv.it
-25343
- Fachhochschule Frankfurt am Main - University of Applied Sciences
- Anne Sommermann
- asommer&dv.fh-frankfurt.de
-25344
- BlackSpider Technologies Ltd.
- Matt Dainty
- matthew.dainty&blackspider.com
-25345
- Conseil Général du Val d'Oise
- Bruno PERRIN
- bruno.perrin&valdoise.fr
-25346
- SAMCA
- Irene Marzo
- imarzo&samca.com
-25347
- Tetra Networking V.O.F.
- Bas van Schaik
- bas&dev.tetra.nl
-25348
- SJB Communications
- Sacha Bernstein
- sacha-iana-pe&sjbcom.com
-25349
- CDSw - City Data Software, s.r.o.
- Michal Bursa
- admin&cdsw.cz
-25350
- Haymarket Publishing Services Limited
- Elaine Bevan
- elaine.bevan&haynet.com
-25351
- AMAG Automobil- und Motoren AG
- Marc Brem
- it-sicherheit&amag.ch
-25352
- Kuwait Meteorological Department
- Amir Al Taho
- aaltaho&yahoo.com
-25353
- Gibson, Dunn & Crutcher LLP
- Chris Fritzsche
- cfritzsche&gibsondunn.com
-25354
- Travel Svcs llc
- Jack Trullinger, Jr.
- jtrullinger&travelsvcs.net
-25355
- Shenzhen Haishuo Technologies Co.Ltd
- Hao Huang
- hilomenbit&gmail.com
-25356
- E2E IT Solutions Pty. Ltd.
- Ross Johnson
- RossJohnson&e2eit.com.au
-25357
- Dotstream
- Slava Chernobai
- chernobai&gmail.com
-25358
- HUBER+SUHNER AG
- Daniel Böhm
- dboehm&hubersuhner.com
-25359
- Perspektiv Bredband AB
- Jakob Borg
- jakob&perspektivbredband.se
-25360
- SMACL
- Dominique Pineau
- d-pineau&smacl.fr
-25361
- Dr. Jan-Hendrik Dörner
- Dr. Jan-Hendrik Dörner
- iana&doerner.net
-25362
- Headroom Broadcast GmbH
- Klaus Feige
- feige&headroom.de
-25363
- Medical Imaging Software Amsterdam
- Hans Kramer
- hans.kramer&xs4all.nl
-25364
- Studio Tre s.r.l.
- Andrea Cotti-Cometti
- acc&studiotre.it
-25365
- Digitum Ltd.
- Vassilios Goumas
- goumas&dv.fh-frankfurt.de
-25366
- Iptic Systems
- Adam Casto
- adam&iptic.com
-25367
- Mobile Streams PLC
- Stuart Slade
- stuarts&mobilestreams.com
-25368
- Association Crans
- Stephane Glondu
- oid-admin&crans.org
-25369
- Reliact Solutions S.L.
- Dave Camino
- info&reliact.com
-25370
- ExtendASP LLC
- Lyman Brown
- lyman.brown&gmail.com
-25371
- Arcitecta Pty. Ltd.
- Mr. Jason Lohrey
- jason.lohrey&arcitecta.com
-25372
- Pegasus Consultants (SW) Ltd
- Chris Smith
- chris&pegasus-sw.com
-25373
- Universidade Estadual do Sudoeste da Bahia
- Jose Marcos Araujo
- jmarcos&nprsa.uesb.br
-25374
- Universität Hamburg, Regionales Rechenzentrum / Hamburg University, Computing Center
- Bettina Kuhlmann
- bettina.kuhlmann&rrz.uni-hamburg.de
-25375
- NextSysSecure, Inc.
- Larry Stilwell
- lstilwell&nextsyssecure.com
-25376
- Suretec Systems Ltd.
- Gavin Henry
- ghenry&suretecsystems.com
-25377
- Bauman Moscow State Technical University
- Varnava Sergey
- uneex&yandex.ru
-25378
- Schrodinger, Inc.
- Simon Gao
- gao&schrodinger.com
-25379
- American Chartered Bank
- Rex Choi
- rchoi&americanchartered.com
-25380
- Michael D'Errico
- Michael D'Errico
- mike-asn&pobox.com
-25381
- Rx Networks Inc.
- Peter H. Mueller
- peter&rxnetworks.ca
-25382
- Nanite Services Limited
- Peter Palmer
- ppalmer&naniteservices.co.uk
-25383
- TiChou
- Sébastien MONBRUN
- tichou+oid&tichou.org
-25384
- Alliant Energy
- Jordan Glover
- jglover&alliantenergy.com
-25385
- Societe anonyme de la Communication Securisee
- Henrik Stein
- iana.nospam&scsecure.ch
-25386
- ELETEX Co. Ltd.
- Norihiko Kawanaka
- kawanaka.no&eletex.co.jp
-25387
- xcurenet
- eric Lee
- zhlee&xcurenet.com
-25388
- Gadget Factory Ltd.
- Tatsuya Aoyagi
- ta&gfx.jp
-25389
- Westcoast University of Applied Sciences
- Dieter Rathmann
- rathmann&fh-westkueste.de
-25390
- Ulrich Flamm
- Ulrich Flamm
- ldap&ulrich-flamm.de
-25391
- SECURE-IT SA
- DE WILDE Thomas
- info&secure-it.fr
-25392
- inabensa
- Jose Luis Gomez Bocanegra
- joseluis.bocanegra&inabensa.abengoa.com
-25393
- Alliant Technologies
- Rich Crawford
- Rich.Crawford&Alliantechnologies.com
-25394
- Sunflower Technologies
- Jim Kernahan
- laboratory&sunflowertech.com
-25395
- Aquila, Inc.
- Gary Cauthon
- AquilaTechSupport&aquila.com
-25396
- Digital Alchemists GmbH
- Matthias Meier
- m.meier&digital-alchemists.ch
-25397
- Primetime Medical Software
- Matthew Ferrante
- ferrante&medicalhistory.com
-25398
- GeoForschungsZentrum Potsdam
- Dr. Thomas Bleek
- bl&gfz-potsdam.de
-25399
- RHnet Inc.
- Jón Ingi Einarsson
- cert&rhnet.is
-25400
- InterSystems USA
- Denise Hummel
- dhummel&itsden.com
-25401
- MU Net, Inc.
- William C Unkel
- BillU&munet.com
-25402
- FlanTel Communications
- Barry Flanagan
- barry&flantel.com
-25403
- ClearCanvas Inc.
- Clinton Chau
- clinton&clearcanvas.ca
-25404
- citadel.org (the Citadel groupware project)
- Art Cancro
- ajc&uncensored.citadel.org
-25405
- Boston Linux & Unix
- John Abreau
- snmp&blu.org
-25406
- Iptivia Inc
- Rajendran Rajan
- raju&iptivia.com
-25407
- Engiby sàrl
- Nicolas Bovigny
- nb&engiby.ch
-25408
- BarNet
- Michael Green
- info&barnet.com.au
-25409
- Superclick Networks Inc
- Enrico Demarin
- enrico&superclick.com
-25410
- Technical Resources International
- Arthur Wang
- itsupport&tech-res.com
-25411
- Training Team Srl
- Roberto Franchi
- roberto.franchi&trainingteam.com
-25412
- OrcaWare Technologies
- Blair Zajac
- blair&orcaware.com
-25413
- FH-Trier, University of Applied Sciences
- Ralf Becker
- beckerr&fh-trier.de
-25414
- City of Henderson, Nevada
- David Nelson
- David.Nelson&CityOfHenderson.com
-25415
- crosscert
- se eun kim
- sekim&crosscert.com
-25416
- Active Database Team
- Hyunsik Choi
- advanced80&nate.com
-25417
- rootKlub.org
- Mr. Féng
- gf&rootklub.org
-25418
- INED - Institut National d'Etudes Demographiques
- Marc LAMOUCHE
- hostmaster&ined.fr
-25419
- CompanyName
- Alexandr Motorny
- disel&entry.kiev.ua
-25420
- maf
- Miguel Ángel Ferrer
- service&maferrer.net
-25421
- Postini, Inc.
- Michael Han
- mhan&postini.com
-25422
- Vilnius University
- VU Hostmaster
- hostmaster&vu.lt
-25423
- Babs Paylink AB
- Andreas Ekman
- administrator&babspaylink.se
-25424
- Norcontrol IT (Pty) Ltd
- Brendan Mitchell
- brendan.mitchell&norcontrolit.com
-25425
- Condor LebensversicherungsAG
- Andreas Matthees
- andreas.matthees&condor-versicherungsgruppe.de
-25426
- LenSoft Ltd.
- Sergey Lentsov
- thelenz&scc.lg.ua
-25427
- Avenda Systems, Inc.
- Santhosh Cheeniyil
- santhosh&avendasys.com
-25428
- AGMEN
- Jean-Charles PERNOT
- jean-charles&pernot.org
-25429
- Comarch S.A.
- Jan Srzednicki
- net.dept&comarch.com
-25430
- Netspecialisten
- Jacob Volstrup
- volstrup&avanceret.dk
-25431
- Ingenico
- Jean-Claude Genoud
- jean-claude.genoud&ingenico.com
-25432
- ServersCheck BVBA
- Van Laere
- helpdesk&serverscheck.com
-25433
- HaiVision Systems Inc.
- Frederick Mruzek
- fmruzek&haivision.com
-25434
- Engineering School of Geneva EIG
- Francois Tamone
- tamone&eig.unige.ch
-25435
- Great Lakes Internet, Inc.
- Eliot Gable
- support8&greatlakes.net
-25436
- Loren Data Corp.
- Edison Carter
- edison&ld.com
-25437
- Chair MMSP of Perm State Technical University
- Vychegzhanin Anton
- ldap&mmsp.pstu.ru
-25438
- B-one Aps
- Jakob Goldbach
- iana-admin&b-one.net
-25439
- Digital Genesis Technologies
- James M. Sella
- sella&digital-genesis.com
-25440
- Radiqal, LLC
- Mr. Parag Amin
- parag&radiqal.com
-25441
- lagis Internet Service Provider GmbH
- Ulrich Zehl
- u.zehl&lagis.at
-25442
- AIRAYA Corp
- Mike Nydam
- mnydam&airaya.com
-25443
- louismc
- Louis-Martin Carriere
- louis_m_c&hotmail.com
-25444
- Fastwire
- Dan Young
- djy&fastwire.com.au
-25445
- AstralBlue
- Eugene M. Kim
- ab&astralblue.net
-25446
- Burn Networks Pty Ltd
- David Parrish
- info&burn.net.au
-25447
- Jireh International Inc.
- Stephen Afuape
- stephen&jirehinternational.com
-25448
- Verari Systems, Inc
- Tony Skjellum
- tony&verarisoft.com
-25449
- Beijing Easy Broadband Technology Co.,Ltd.
- ymtang
- ws214331&sohu.com
-25450
- eTraintronics.com
- Howell Dell
- hdell&eTraintronics.com
-25451
- UFPS Tymenskoy oblasti - filial FGUP "Pochta Rossii"
- Sergey V. Kozlov
- sergey.kozlov&tmnpost.ru
-25452
- Sikom Software GmbH
- Steffen Liersch
- S.Liersch&sikom.de
-25453
- Seaview Support Systems Pvt Ltd
- System Administrator
- sysadmin&svw.com
-25454
- LiComm Co., Ltd.
- Meong-Kyu Choi
- cmk116&licomm.com
-25455
- Trinodal S.L.
- Tobias Nieters
- info&trinodal.net
-25456
- Wooribyul Telecom Co., Ltd.
- Junpyo, Lee
- leejp&wooribyul.co.kr
-25457
- Schweizerische Bibliothek f&#252;r Blinde und Sehbehinderte
- Matthias Ragaz
- informatik&sbszh.ch
-25458
- XtraMind Technologies GmbH
- Jan Timm
- it&xtramind.com
-25459
- BON.net Ltd
- Benjamin Timms
- ben-iana&bon.net
-25460
- ComputerLand S.A.
- Lukasz Wycislik
- luke&pik.gliwice.pl
-25461
- PALO ALTO NETWORKS
- Dr. Anupam Bharali
- paniana&gmail.com
-25462
- Applied Wireless Identifications Group, Inc
- Daniel Paley
- d.paley&awid.com
-25463
- NanShanBridge Co.Ltd
- ningzhang
- zhangning&nsbic.com
-25464
- Demarc Technology Group, LLC
- Tony Morella
- tony&demarctech.com
-25465
- First Standards Organisation (FSO)
- Nora Salam
- nora&mefso.org
-25466
- Asia Bank Card Union (ABCUnion.org)
- Sophie Faris
- sophie&abcunion.org
-25467
- B-Lex Information Technologies
- Arnold Hendriks
- info&b-lex.com
-25468
- Fortica Ltd.
- Mika Suomalainen
- mika.suomalainen&fortica.fi
-25469
- Aliasource
- Anthony Prades
- oid&aliasource.fr
-25470
- North Suburban Access Corp.
- Ian R. Cobb
- ian.cobb&ctv15.org
-25471
- Gridpoint Systems
- Ken Young
- keny&gridpointsystems.com
-25472
- Alltek Technology Corp.
- Eddie Liao
- eddieliao&alltek.com
-25473
- Telelogos
- Jean-Yves Bourdais
- jybourdais&telelogos.com
-25474
- Lisis NV
- Wim Van Leuven
- wim.van.leuven&ldc.be
-25475
- Innovant Pty Ltd
- Jamie Vachon
- jamie.vachon&levelonenetworks.com
-25476
- VideoCells Ltd.
- Eran Bida
- snmp&videocells.com
-25477
- alpha nova BetriebsgesmbH
- Rudolf Hatheyer
- rudi.hatheyer&alphanova.at
-25478
- Local Solutions
- Denis Basta
- Denis.Basta&local.lv
-25479
- X-Tend
- Frederic Descamps
- fred&x-tend.be
-25480
- Congruentix LLC
- Amol Hatwar
- amol&congruentix.com
-25481
- Convergin Ltd.
- Michael Katz
- michaelkz&convergin.com
-25482
- Global Village Data Solutions
- Timothy Bogie
- tim.bogie&gvds.com.au
-25483
- iScience Surgical
- Bruce Director
- bdirector&isciencesurgical.com
-25484
- AKDB
- F. Salat
- Franz-Xaver.Salat&akdb.de
-25485
- Patentanwaltskanzlei Horns
- Axel H Horns
- horns&ipjur.net
-25486
- Asset Archives, Inc.
- Nick Downey
- ndowney&assetarchives.com
-25487
- Bishop Technologies, Inc.
- Joe Doyle
- jdoyle&bishopit.com
-25488
- V2 Telecom Ltda.
- Guilherme Spina
- gspina&v2telecom.com.br
-25489
- Henrik Nordstrom Consulting
- Henrik Nordstrom
- henrik&henriknordstrom.net
-25490
- Wagner Tiefkuehlprodukte GmbH
- Dirk-T. Rauber
- dirk.rauber&wagner-pizza.de
-25491
- National Bank of the Republic of Belarus
- Alexandre I Burachevsky
- root&bisc.by
-25492
- Ruukki
- Matti Oja
- matti.oja&ruukki.com
-25493
- VNUnet Europe
- Emanuel Schleussinger
- emanuel_schleussinger&vnu.de
-25494
- Ivan Dolezal
- Ivan Dolezal
- ivan.dolezal&vsb.cz
-25495
- Optimacom Sàrl
- Christophe Alexandre
- optimacom.sarl&gmail.com
-25496
- CEMES-CNRS
- Anne Altibelli
- anne.altibelli&cemes.fr
-25497
- Transbit Spolka z o.o.
- Wojciech Wisniewski
- mariola&transbit.pl
-25498
- InSecMa Solutions GmbH
- Marc Schlichting
- m.schlichting&insecma.de
-25499
- GuideCom GmbH
- Sebastian Wiehage
- ldap&guidecom.de
-25500
- Interkey, Inc.
- Jeffrey Goldschrafe
- jeffg&interkey.net
-25501
- VaultLab, Inc
- CTO/Chief Technical Officer
- p1.iana&vaultlab.com
-25502
- AccuRev, Inc.
- Matt Laudato
- mlaudato&accurev.com
-25503
- Network Integrity Systems Inc.
- Cary Murphy
- carym&networkintegritysystems.com
-25504
- St. Edward's University Inc
- Raymond Spinhirne
- rays&admin.stedwards.edu
-25505
- SpaceNetwork
- Juergen Mira
- NOC&SpaceNetwork.de
-25506
- H3C
- Rugang Cheng
- rugang&huawei-3com.com
-25507
- Japan Maritime Self-Defense Force
- Tsutomu Yoshima
- k-mso-cm01&msdf.mail.jda.go.jp
-25508
- narraSoft Philippines, Inc.
- Joe Daigle
- oidrequest&jwdaigle.net
-25509
- C.MER
- Yan Burman
- yan_b&mer.co.il
-25510
- Symedia S.A.
- Roman Lyubovskiy
- roman&symedia.org
-25511
- SPALE NETWORKS
- Pascal Gloor
- pascal.gloor&spale.com
-25512
- simple-networks
- Torsten Goße
- togo&simple-networks.com
-25513
- VirtualLink Technologies Pte. Ltd.
- Haitao Zhao
- support&vlinktech.com
-25514
- yatininc
- yatin umrotkar
- yatin_u84&yahoo.com
-25515
- LKH Villach
- Andreas Sucher
- andreas.sucher&lkh-vil.or.at
-25516
- Verizonbusiness
- Jim Potter
- jim.potter&verizonbusiness.com
-25517
- Criterium Soluções em Informática Ltda
- Rafael Santos
- rafael.santos&criterium.com.br
-25518
- StorCase Technology, Inc.
- Joel Tang
- Joel_tang&storcase.com
-25519
- Washington County School District
- Jeremy Cox
- jcox&washk12.org
-25520
- Quadrics Ltd
- Lee Porter
- lee&quadrics.com
-25521
- NextConnect Ltd
- D Short
- info&nextconnect.co.uk
-25522
- Renko Technologies
- Arkady Renko
- document.controller&efp.net.au
-25523
- Homecast Co., Ltd.
- Dae-Yeon Hwang
- dyhwang&homecast.net
-25524
- Open Source Hardware Engineering Community (OSHEC)
- Dmitry V. Belimov
- dimon&oshec.org
-25525
- TC&C Telecommunication and Computer Technology Ltd.
- Viktor Kiss
- viktor.kiss&tcandc.com
-25526
- IPRocess
- MELI Antoine
- snmp_pen&iprocess.fr
-25527
- Nebraska Public Power District
- Erik Weinmeister
- etweinm&nppd.com
-25528
- Laboratório Nacional de Computação Científica
- Luiz M. R. Gadelha Jr.
- lgadelha&lncc.br
-25529
- World Links
- Ray Stuart
- ray&world-links.org
-25530
- AirDat LLC
- Brian Dale
- bdale&airdat.com
-25531
- B2E Technologies PTY LTD
- Ronald Da Encarnacao
- ronnied&b2e.co.za
-25532
- BCA Services Ltd.
- Werner Rades
- info&bca-itservices.com
-25533
- IdentityForge, LLC.
- Chad Cromwell
- ccromwell&identityforge.com
-25534
- Lusan Systems
- Nikolai Lusan
- nikolai&lusan.id.au
-25535
- Klas Ltd.
- Peter Hertting
- peterh&klasonline.com
-25536
- Probaris Technologies, Inc.
- Robert Levas
- oids&probaris.com
-25537
- Thomas Friedl
- Thomas Friedl
- friedltoolsoft&web.de
-25538
- GNU Telephony
- David Sugar
- dyfet&gnutelephony.org
-25539
- Osaka University
- OID Administrator
- oid-admin&cmc.osaka-u.ac.jp
-25540
- NetToolWorks, Inc.
- Eric Eicke
- eeicke&nettoolworks.com
-25541
- JStream Technologies, Inc.
- James Chen
- jchen&jstream.com.tw
-25542
- Ortikon Interactive Oy
- Teemu Pohjolainen
- teemu.pohjolainen&ortikon.com
-25543
- Microbit 2.0 AB
- Jonas Andersson
- jonas.andersson&microbit.se
-25544
- Iptune Ltd.
- Vesa Haimi
- info&iptune.com
-25545
- EADS-CASA
- Pedro Fernandez Cardador
- Pedro.Fernandez&casa.eads.net
-25546
- Boots Group PLC
- Dr Tim Martin
- tim.martin&boots.co.uk
-25547
- VION
- Joris te Molder
- joris.te.molder&vionfood.com
-25548
- OpenCraft
- Karim Ratib
- karim.ratib&open-craft.com
-25549
- STAR Group
- Daniel Geyer
- daniel.geyer&star-group.net
-25550
- zhihao
- zhihao
- zzh_1218&hotmail.com
-25551
- AMEC
- Bill Dishman
- bill.dishman&amec.com
-25552
- Poxix
- Jacob Angel Munoz
- me&poxix.com
-25553
- Sonas Innovation Ltd
- Barry Flanagan
- barry&sonasi.com
-25554
- WiderWeb Ltd
- E Moore
- ed&widerweb.co.uk
-25555
- Social Science Research Council
- Christopher Hernandez
- hernandez&ssrc.org
-25556
- Beyond 2000 Ltd
- Bernard Jauregui
- bj&beyond2000.co.uk
-25557
- Xerox -ORG
- Michael Foster
- Michael.Foster&xerox.com
-25558
- Infoblox, WinConnect (formerly 'Ipanto')
- Eric Duchene
- educhene&infoblox.com
-25559
- Tivella Inc.
- Alex Shekhter
- alex&tivella.com
-25560
- Ministerio Publico do DF e Territorios
- Robson Paniago de Miranda
- robsonm&mpdft.gov.br
-25561
- Telecom Protection Technologies Limited
- Chris Down
- chris.down&tptdesigns.co.uk
-25562
- Firmix Software GmbH
- Vinzenz Grabner
- mlzenml&firmix.at
-25563
- Stadtverwaltung Duesseldorf
- Michael Wadenpohl
- michael.wadenpohl&stadt.duesseldorf.de
-25564
- T7 e.V.
- Hajo Bickenbach
- hajo.bickenbach&t7-isis.org
-25565
- pixality GmbH
- Stefan Lippstreu
- iana&pixality.com
-25566
- Staatl. gepr. Inf. Markus KARG
- Markus KARG
- markus.karg&gmx.net
-25567
- Cingular Wireless LLC
- Johnny Walker
- johnny.walker&cingular.com
-25568
- Douglas Fast Net
- Chance Newkirk
- cnewkirk&douglasfast.net
-25569
- Points South
- Austin Brower
- operations&psouth.net
-25570
- Mackelprang Research
- Mark Mackelprang
- mark&mackelprang.com
-25571
- nDosa Technologies Inc
- Kwang-Bock You
- kbyou&ndosatech.com
-25572
- Columbia International College
- Randy de Resendes
- rderesendes&cic-totalcare.com
-25573
- Point Clark Networks Ltd.
- Peter Baldwin
- peterb&pointclark.net
-25574
- FXC Inc.
- Zhao Fengji
- zhao&fxc.jp
-25575
- Bevuta
- Pablo Beyen
- beyen&bevuta.com
-25576
- AXMEDIS Organisation
- Paolo Nesi
- nesi&dsi.unifi.it
-25577
- Norlinx, Inc
- Robert Selph
- rselph&norlinx.com
-25578
- Interchange Corporation
- Scott Simpson
- ssimpson&interchangeusa.com
-25579
- Info Tech, Inc.
- Tom Miller
- tom.miller&infotechfl.com
-25580
- Universidad de El Salvador
- Eric Lopez
- elopez&ues.edu.sv
-25581
- Musmap Team
- Mathieu Parent
- mathieuparent&users.sourceforge.net
-25582
- Employease Inc.
- Patrick Wolfe
- pwolfe&employease.com
-25583
- gfk
- Gregor Kling
- gfk&binary-delight.de
-25584
- Axzona Ltd
- Alan Hughes
- alan&axzona.com
-25585
- Infoglobal, S.A.
- Prudencio Gomez
- info&infoglobal.es
-25586
- Unified Group Ltd
- Scott Bye
- sbye&unifiedgroup.co.uk
-25587
- Jinitech Inc.
- Shawn Zhang
- shawn&jinitech.com
-25588
- University of Texas Center for Agile Technology
- John Holder
- itcontact&cat.utexas.edu
-25589
- Comune di Cagliari
- Pierangelo Orofino
- piero.orofino&comune.cagliari.it
-25590
- Tecnoworld Com. Imp. Exp. Ltda.
- Alberto Sato
- alberto.sato&tecnoworld.com.br
-25591
- National Clearinghouse for Rehabilitation Training Materials
- Kenneth Tingey
- ken.tingey&usu.edu
-25592
- Intercorp
- David Price
- david_price&intercorp.com.au
-25593
- Aethernet Ltd
- Kris Saxton
- kris&aethernet.co.uk
-25594
- Gollard
- Olesov Peter
- olesov&atlantis.ru
-25595
- CZ.NIC, z.s.p.o.
- Ondrej Sury
- ondrej.sury&nic.cz
-25596
- DigitalSign - Certificadora Digital
- Alvaro Matos
- suporte&digitalsign.pt
-25597
- FireEye Inc.
- Jordan Blake
- jordan&fireeye.com
-25598
- Gehlbach Technical Services, Inc.
- Jeff Gehlbach
- jeffg&gehlbachtech.com
-25599
- SecureNet PL
- Wojciech S. Czarnecki
- registry&sec.pl
-25600
- EzValidation Inc.
- Asif Bhimla
- ali&ezvalidation.com
-25601
- FSP Computer & Netzwerke
- Stefan Schaefer
- st-schaefer&fsproductions.de
-25602
- Telekom Austria AG
- Karl Vavrina
- karl.vavrina&telekom.at
-25603
- Locube.com
- Nicolas Camus
- ncamus&locube.com
-25604
- Agos S.p.A.
- Marco Barzaghi
- m.barzaghi&agosweb.it
-25605
- Ingenieurbuero T. Scholz
- Thorsten Scholz
- iana_snmp&demugo.sytes.net
-25606
- USi
- Damien Stuart
- damien.stuart&usi.net
-25607
- Andritz AG
- christian bretterhofer
- christian.bretterhofer&andritz.com
-25608
- Iritec
- Álvaro J. Iradier
- airadier&iritec.es
-25609
- StreamVision
- Perceval Anichini
- perceval.anichini&streamvision.fr
-25610
- The SEEMIS Group
- Chris Higgins
- chris.higgins&seemis.gov.uk
-25611
- Lafayette College
- Bob Bailey
- baileyb&lafayette.edu
-25612
- Trilliant Networks
- François Guillemette
- francois.guillemette&trilliantnetworks.com
-25613
- CGI Concept
- Marek Habersack
- grendello&gmail.com
-25614
- Auroras Entertainment
- Dustin F. Harmon
- dharmon&auroras.tv
-25615
- Computer Savvy
- David Sucharski
- pcdocdave&tech303.com
-25616
- Cardiac Science Corporation
- Bryon Schultz
- bschultz&cardiacscience.com
-25617
- ClearCube Technology
- My Tran
- my.tran&clearcube.com
-25618
- Omnitrol Networks, Inc.
- Joe Ireland
- jireland&omnitrol.com
-25619
- Ultragreen
- Romain GEORGES
- romain&ultragreen.net
-25620
- Ost-West Handelsbank AG
- Mr. Stefan Berndt
- stefan.berndt&owh.de
-25621
- Z Microsystems
- Chris Greve
- snmp-num&zmicro.com
-25622
- JANET(UK) (formerly 'UKERNA (United Kingdom Education and Research Networking Association)')
- Mark O'Leary
- mark.oleary&ja.net
-25623
- OpenVAS
- Tim Brown
- timb&openvas.org
-25624
- Kent School District
- David Norton
- serveradmins&kent.k12.wa.us
-25625
- ChattenAssociates, Inc.
- Leonid Tochinski
- ltochinski&chattenassociates.com
-25626
- Crufty
- Simon Gerraty
- sjg&crufty.net
-25627
- Ohio Department of Public Safety
- David Brown
- dabrown&dps.state.oh.us
-25628
- Perot Systems Corporation
- Bradley Marrs
- brad.marrs&ps.net
-25629
- U.S. Environmental Protection Agency
- Keith Brown
- brown.keith&epa.gov
-25630
- Groupe Mutuel
- Christian Parvex
- cparvex&groupemutuel.ch
-25631
- International Newspaper Network, LLC
- Dustin Ward
- dward&townnews.com
-25632
- Thorold Alarm
- Jon Pounder
- jon&pounder.com
-25633
- lecentre.net
- Sebastien THOMAS
- prune&lecentre.net
-25634
- uniqueobject
- Arne Gerdes
- arnegerdes&uniqueobject.com
-25635
- Carlo Gavazzi Computing Solutions, Inc.
- Mark J. Pascarelli
- markpas&mupac.com
-25636
- Control Alternative Solutions, Inc.
- Prakash Jadeja
- jad&casolinc.com
-25637
- Police Bruxelles CAPITALE Ixelles - ZP 5339
- Frédéric Devos
- freddevos&gmail.com
-25638
- Uniadex, Ltd.
- Masatsugu Fujita
- masatsugu.fujita&uniadex.co.jp
-25639
- KMS Systems Inc
- George Mallard, P.E.
- guru&crashbar.com
-25640
- Real SoftService
- Wang Penghui
- wangpenghui&realss.com
-25641
- Papeteries Hamelin
- Bernardeau Gérard
- gbernardeau&hamelin.fr
-25642
- CHP Consulting ltd.
- Andy Brook
- ops&chp.co.uk
-25643
- Intermediasud
- Claude Combes
- ccombes&e-teleport.net
-25644
- liland open IT solutions GmbH
- Michael Perkonigg
- michael.perkonigg&liland.at
-25645
- Community TV GmbH
- Matthias Subik
- ms&okto.tv
-25646
- b.a.b-technologie GmbH
- Joerg Schmitz-Linneweber
- jsl&bab-tec.de
-25647
- Hungarian Customs Service (VPOP)
- Zoltan Riba
- riba.zoltan&mail.vpop.hu
-25648
- Ecole Nationale Veterinaire de Nantes
- Mr Didier ROY
- roy&vet-nantes.fr
-25649
- Technobox, Inc.
- Larry Reilly
- larry.iana-enterprise&technobox.com
-25650
- SunUp Design Systems, Inc.
- Praveen Sharma
- sysadmin&sunup.com
-25651
- Exalt Communications
- Herman Lee
- hlee&exaltcom.com
-25652
- Tasneem Electronics L.L.C
- Basem Narmok
- narm&go.com.jo
-25653
- Oakley Networks, Inc.
- Jan L. Peterson
- jan.peterson&oakleynetworks.com
-25654
- Psi Systems, Inc.
- David Megel
- dmegel&psi-sys.com
-25655
- MIMS SA
- Frederic Senault
- fs&mims.be
-25656
- Axoïde EURL
- Borgogno Cécile
- contact&axoide.com
-25657
- NWCG
- Jason Runyan
- jason.runyan&usda.gov
-25658
- Essentia S.p.A.
- Andrea Tarasconi
- andrea.tarasconi&essentia.it
-25659
- PolarSat Inc.
- Marc Tibout
- marc.tibout&polarsat.com
-25660
- Starflight Electronics
- John Anderson
- johna&starflightinc.com
-25661
- DataPro Group Limited
- Kenneth Clark
- kennethc&datapro.co.za
-25662
- Opway Optical Technology(Wuxi)Co.Ltd
- Bai Liyong
- lybai&opwaytech.com.cn
-25663
- InfowareLab Co,Ltd.
- ROBIN XIA
- Robin.Xia&cybernaut.com.cn
-25664
- Terascala, Inc.
- Mike Nuss
- mike&terascala.com
-25665
- Essentel Inc.
- Corey Gates
- info&essentel.com
-25666
- Telenav, INC
- Jason Choe
- jchoe&telenav.com
-25667
- Padjen
- Frederik Padjen
- ldap&padjen.de
-25668
- Battelle Memorial Institute
- Peter Dohm
- dohmp&battelle.org
-25669
- Mariner Partners Inc.
- Aleksandar Petrovic
- aleksandar.petrovic&marinerpartners.com
-25670
- California State University, Fullerton
- Sean Atkinson
- satkinson&fullerton.edu
-25671
- EC Hugbunadur Ehf
- Asgeir Halldorsson
- asgeir&ec.is
-25672
- Responsys
- Mike Sherman
- msherman&responsys.com
-25673
- Grupo IT Deusto, S.L.
- Marcos Riosalido
- mriosalido&itdeusto.com
-25674
- jlu.nic.Inc.
- WenZiyan
- wenziyan1208&163.com
-25675
- Test-O-Mat
- Tim Krah
- mail&timkrah.de
-25676
- procilon Gmbh
- Torsten Rienaß
- torsten.rienass&procilon.de
-25677
- Action Soft
- Damien Matraire
- dma&action-soft.com
-25678
- EMBL Heidelberg
- Matthias Helmling
- helmling&embl.de
-25679
- SecureAxis Software
- Chris Elbring
- celbring&secureaxis.net
-25680
- Pixen Technologies Pvt Ltd
- Vijay A Ramamoorthy
- mailrvijay&gmail.com
-25681
- Instituto Municipal de Cultura y Juventud de Burjassot
- Gabriel Prunonosa
- gabriel.prunonosa&imcjb.net
-25682
- Donley Consulting
- Dennis Furr
- denny&donleyconsulting.co.uk
-25683
- Epstein Becker & Green, P.C.
- Mevin Essapen
- MEssapen&ebglaw.com
-25684
- Perot Systems Government Services
- Rich Bashaw
- rich.bashaw&psgs.com
-25685
- Hurricane Labs LLC
- Brian T Glenn
- brian&hurricanelabs.com
-25686
- MCTEL Monaco Telematique
- Daniel Mavrakis
- sms&mctel.net
-25687
- Gendreau & Pelchat
- Francis Gendreau
- francis.gendreau&makwa.net
-25688
- Caixanova
- Juan Manuel Fernández López
- jmfernandez&caixanova.com
-25689
- alsatis
- Frédéric Moulins
- contact&alsatis.com
-25690
- REM Probe Ltd
- Kelvin Ager
- Kelvin.Ager&branch.co.uk
-25691
- Eyes, Japan Co. Ltd.
- Masahiro Kinugawa
- kinugawa&aizu.com
-25692
- ANDREAS STIHL AG & Co. KG
- Erik-Alexander Nadolski
- oidmaster&stihl.de
-25693
- InterNetworX Systems Inc.
- Don Fitzpatrick
- dwf&InterNetworXsystems.com
-25694
- DRS Surveillance Support Systems, Inc.
- Tony Price
- tony.price&drs-sss.com
-25695
- Vestergaard IT
- Peter Dahl Vestergaard
- peterdv&vestergaard.it
-25696
- Nedap N.V.
- Evert Wonnink
- evert.wonnink&nedap.com
-25697
- BBK
- Sonsoles Sagredo
- sonsoles.sagredo&ieuskadi.com
-25698
- KSB Italia S.p.A.
- Nicola Bertellini
- it&ksb.it
-25699
- Generic Variables
- eng.enrico frediani
- e.frediani&usl6.toscana.it
-25700
- Protokon Kft.
- Nagy Attila
- nagy.attila&protokon.com
-25701
- GAMIC mbH
- Marco Costa
- costa&gamic.com
-25702
- PCSofía
- Hernan Berguan
- pcsofia&gmail.com
-25703
- CYBERSYS
- Georges VIDAL
- gvidal&cybersys.fr
-25704
- inter-touch (Malaysia) Sdn. Bhd.
- Peter Fang
- pfang&inter-touch.com
-25705
- Pixtree Technologies, Inc.
- Sehoon Son
- shson&pixtree.com
-25706
- ViaScope Int.
- Park, Sungsoo
- day1102&scope.co.kr
-25707
- Marksman
- Chris Hughes
- chris&hughes-net.net
-25708
- Milde Software Solutions (MSS)
- Marc Milde
- mib&milde-online.com
-25709
- Windstream Communications Inc
- TJ Reece
- ndssupport&windstream.com
-25710
- Phoenix Worldwide Industries, Inc.
- Adrian Esquivel
- aesquivel&phoenixworldwide.com
-25711
- Coral8, Inc.
- Greg Shtilman
- snmp-admin&coral8.com
-25712
- The Higher Gear Group, Inc.
- James Newby
- ldapadmin&highergear.com
-25713
- Magyar Telekom
- Gaál Géza
- gaal.geza1&t-com.hu
-25714
- Chengdu Guyue Electronics Co.,Ltd
- Yibin Hu
- hyb&vip.163.com
-25715
- JumpTV.com Inc.
- Sinisa Djurkic
- sdjurkic&radintl.com
-25716
- Manuel Domínguez Hidalgo
- Manuel Domínguez Hidalgo
- manuel_dominguez_hidalgo&hotmail.com
-25717
- Ravn Webveveriet AS
- Jan Rudolph
- hostmaster&ravn.no
-25718
- Taction
- Tom Welch
- sysadmin&taction.net
-25719
- Polysys Ltd.
- Mr. Ferenc Polyak
- ferenc.polyak&polysys.eu
-25720
- Ingenieurbüro Kuhlmann
- Daniel Migowski
- ldap-admin&ikoffice.de
-25721
- Linwave Technology
- Dave Bell
- dave.bell&linwave.co.uk
-25722
- Integrated Financial Arrangements plc
- Mr Alex Crow
- acrow&integrafin.co.uk
-25723
- Phoenix-Database Informationstechnologie GmbH
- Friedhelm Matten
- Friedhelm.Matten&phoenix-database.de
-25724
- Universiti Sains Malaysia
- Mr Nurul Faizal M.Shukeri
- nfaizal&usm.my
-25725
- SOSeth
- Daniel Fasnacht
- iana&sos.ethz.ch
-25726
- Cyrix Technologies Limited
- James Kan
- james.kan&cyrixtech.com
-25727
- Q9 Networks Inc.
- Sarah Nordstrom
- iana&q9.com
-25728
- ZAO Light Communication
- Shulman Ilya
- ish&lightcom.ru
-25729
- Radiodata GmbH
- Norbert Langermann
- nlangermann&radiodata.biz
-25730
- ASmith Home
- Andrew Smith
- asmith2004&gmail.com
-25731
- Web Xtreme, Inc.
- Dave Conklin
- webservers&webxtreme.com
-25732
- Mirago plc
- Philippe Preget
- Philippe.Preget&Mirago.com
-25733
- Cellact Ltd.
- Amir Dorot
- amir&cellact.com
-25734
- Bolignet-Aarhus
- Michael Molbech
- mgm&bnaa.dk
-25735
- Visionee s.r.l.
- Fabio Radin
- fabio.radin&visionee.com
-25736
- Duval County Public Schools
- James Moore
- moorej&duvalschools.org
-25737
- Reality Communications
- Karl Wagner
- karl&mouse-hole.com
-25738
- INFOLOG GmbH
- Axel Roelker
- a.roelker&infolog.de
-25739
- INTERMET Ueckermuende
- Andreas Pohl
- edv&intermet-uede.de
-25740
- Nakamura Technologies Ltd.
- Sylvester Chigbu
- schigbu&nakamuratech.com
-25741
- Ariane Ingenierie
- antoine gérardin
- agerardin&ariane-ingenierie.net
-25742
- ALDI Einkauf GmbH & Co. oHG
- Ingo Pieper
- i.pieper&aldi.com
-25743
- Krontek Pty Ltd
- Ian Peterkin
- i.peterkin&krontek.com
-25744
- Avillon Networks
- Gi Sangmin
- yalvara&avillon.co.kr
-25745
- Smart Communications, Inc
- Carlo Feliciano N. Aureus
- CNAureus&smart.com.ph
-25746
- ARCADIA LAB srl
- Lanconelli Nico
- info&arcadialab.com
-25747
- YellowJacket Software, Inc.
- Greg Campbell
- gcamp&yellowjacketsoftware.com
-25748
- Templer Wirtschaftsing.-Buero
- Guido Templer
- g.templer&templerconsult.com
-25749
- CenGen, Inc.
- Frank Renwick
- frenwick&cengen.com
-25750
- SAM Group, Inc.
- John Poore
- johnpoore&samgroup.com
-25751
- Python Technology Limited
- Colin Hogben
- iana&pythontech.co.uk
-25752
- Gallery Solo
- Grazyna Tonkiel
- gsiencze&gmail.com
-25753
- KPH Computers
- Kevin Hughes
- kev&kphcomputers.com
-25754
- Shanghai onLAN Communication Tech.Co.,Ltd.
- Xingjian Qin
- qinxingjian&onlan.com.cn
-25755
- Liferay, LLC
- Brian Wing Shun Chan
- bchan&liferay.com
-25756
- Mahidol Wittayanusorn (Public Organization)
- Boonnatee S.
- boonnatee_sak&yahoo.com
-25757
- Minister of Interior of Saudi Arabia
- Abdullah Nasser Alghannam
- aghannam&nic.gov.sa
-25758
- SIF Inc.
- Dong Jiang
- dongj&sifinc.jp
-25759
- Almen Laboratories, Inc.
- Michael Galperin, Ph.D.
- mgalperin&almenlabs.com
-25760
- Doctors Telehealth Network
- Brett Robblee
- brettrobblee&doctel.net
-25761
- ABB Automation GmbH
- Cajus Hahn
- cajus.hahn&de.abb.com
-25762
- PersonalOffice
- Denis Volkov
- denis.v.volkov&gmail.com
-25763
- Happydoo SAS
- Eric VERNIER
- iana&happydoo.com
-25764
- Exmos Ltd
- Gordon Coulter
- gordonc&exmos.com
-25765
- Barclays Global Investors Ltd
- Paul Greer
- paul.greer&barclaysglobal.com
-25766
- Christie Digital Systems
- Ashish Kudsia
- ashish.kudsia&christiedigital.com
-25767
- Koya Ixis, S. C.
- Luis F Blanco M
- lblanco&koyastudio.com
-25768
- DATAllegro, Inc.
- Matt Peebles
- mpeebles&datallegro.com
-25769
- UTRONIX Elektronikutveckling AB
- Mikael Markow
- iana&utronix.se
-25770
- chatelp.org
- Pierre Chatel
- admin&chatelp.org
-25771
- Mobile 365, Inc.
- Prasanna Nagaraj
- prasanna.nagaraj&mobile365.com
-25772
- Astha Technologies Pvt. Ltd.
- Shilpa Joshi
- shilpa&xnapworks.com
-25773
- Wemeus
- Sudhakar Gorti
- svgorti&gmail.com
-25774
- BCEAO
- Abdoulaye Mbodj
- ambodj&bceao.int
-25775
- midPhase Services, Inc
- Zak Boca
- zboca&midphase.com
-25776
- Hangzhou zhongwei electronics Ltd.
- jianbingqin
- jianbingqin&163.com
-25777
- technoms
- Florent DUPONT
- florent.dupont&familledupont.com
-25778
- Irkutsk State Transport University (IrGUPS)
- Andrey Razvodovskiy
- admin&irgups.ru
-25779
- MITO-Performance
- Thorben Ferdinand
- mib&mito-performance.com
-25780
- Sanchin Consulting AB
- Joakim Fallsjo
- snmp&lev.sanchin.se
-25781
- NetFort Technologies Limited
- Sergey Lyubka
- sergey.lyubka&netforttechnologies.com
-25782
- MSA management solutions GmbH
- Holger Berndt
- holger.berndt&msa-solutions.de
-25783
- Bluecom C.A.
- Stein Damman
- info&bluecom.com.ve
-25784
- Deutsche Provinz der Salesianer Don Boscos KoeR
- Hatto von Hatzfeld
- hatto&salesianer.de
-25785
- Universitat Politècnica de Catalunya (UPC)
- Victor Huerta
- hostmaster&upcnet.es
-25786
- AgileSoft BVBA
- Michiel Scharpé
- michiel.scharpe&agilesoft.be
-25787
- dox.at. Softwareentwicklungs und Dienstleistungs GmbH
- Wolf Seidl
- wseidl&dox.at
-25788
- DAIMS Ltd.
- Young-soo Kim
- varchar&daims.co.kr
-25789
- Digital Work Co.,Ltd.
- Kouhei Aonuma
- ao&digital-w.com
-25790
- Sirona Dental Systems GmbH
- Juergen Zimmermann
- juergen.zimmermann&sirona.de
-25791
- certSign.eu
- Wittmer, Christian
- oidmaster&certsign.eu
-25792
- Leader.IT
- Guido brugnara
- info&leader.it
-25793
- Häfele GmbH & co. KG
- Geald Brunner
- gerald.brunner&haefele.de
-25794
- XSALTO
- Renaud ZIGMANN
- oid&xsalto.com
-25795
- Vicarial Technology
- James Lorenzo
- jay.lorenzo&gmail.com
-25796
- Menbit Technology Co., Ltd
- Jerry Menbit
- JMenbit&gmail.com
-25797
- Southerland Consulting, Inc.
- John Buren Southerland
- john&southerland-consulting.com
-25798
- Elaborated Networks GmbH
- Michael Markstaller
- hostmaster&elabnet.de
-25799
- West Liberty Telephone Company
- Andy Meader
- noc&lcom.net
-25800
- Ample Communications Inc.
- Howard Feger
- hfeger&amplecomm.com
-25801
- Identita Technologies Inc.
- Rocky Stefano
- rstefano&identita.com
-25802
- Aliadis
- Thibault Genessay
- noc&aliadis.fr
-25803
- Total System Services, Inc..
- George Perkins
- gperkins&tsys.com
-25804
- Scala, Inc.
- Peter Cherna
- peter.cherna&scala.com
-25805
- Thomson Learning
- Jason Spruance
- jason.spruance&thomson.com
-25806
- Sonnet Technologies, Inc.
- Nicholas Lekkas
- nick.lekkas&sonnetinc.com
-25807
- heung to middle school (tin shui wai)
- tang kwong shing
- tang&heungto.net
-25808
- eBiz Ltd.
- Ben Catherall
- ben&ebiz.co.uk
-25809
- mobileX AG
- Christian Fridgen
- development&mobilexag.de
-25810
- ABE Software
- Matthias Doerfel
- md&abesoftware.de
-25811
- INLOG SA
- Olivier GAYDON
- olivier.gaydon&inlog.com
-25812
- Home Gateway Initiative
- Paolo Pastorino
- paolo.pastorino&telecomitalia.it
-25813
- Sai Furnitures LTD
- Sai Anand
- sai_anand2000&yahoo.com
-25814
- Subzilla
- Tim Dalsing
- tdalsing&yahoo.com
-25815
- Wirevox
- Bill Totman
- totman&gmail.com
-25816
- Roland DG Corporation
- Masumi Hoshino
- masu.hoshino&rolanddg.co.jp
-25817
- Poseidon Networks
- Nitin Bhagnari
- nitinbhagnari&yahoo.com
-25818
- The Sakai Foundation
- Mary Miles
- mmiles&umich.edu
-25819
- DO|YOU|SOFT
- Benoit Plessis
- b.plessis&doyousoft.com
-25820
- SkyBlue Technologies, Inc.
- Constantine Sapuntzakis
- ops-contact&skyblue-technologies.com
-25821
- Consilient Technologies Corp.
- Sean Hogan
- sean_hogan&consilient.com
-25822
- S&T Hungary Ltd.
- Tamas Arato
- tamas.arato&snt.hu
-25823
- CIO Informatique Industrielle
- Christian Charreyre
- christian.charreyre&cioinfoindus.fr
-25824
- Dementia 7
- Frédéric Laugier
- snmp&dementia7.net
-25825
- Asgard's Realm
- Jamin W. Collins
- jcollins&asgardsrealm.net
-25826
- Peter J. Leonard Small Business Consulting Services
- Peter J. Leonard
- pleonard&affinityhealth.org
-25827
- Big Lots Stores, Inc.
- Marady Prak
- maradyprak&biglots.com
-25828
- Texas Health and Human Services
- John Roan
- John.RoanIII&HHSC.State.TX.US
-25829
- Beijing superlink telecommunications Co.Ltd
- sun hui
- sunhui&superlink.com.cn
-25830
- 4Players GmbH
- Christian Celler
- celler&4players.de
-25831
- Rhinocorps, Ltd. Co.
- Freeman P. Pascal IV
- fpascal&rhinocorps.com
-25832
- GlobalSCAPE, Inc.
- Gregory T. Hoffer
- ghoffer&globalscape.com
-25833
- Edward W. Sparrow Hospital Association
- Robert N. Parsons
- Robert.Parsons&Sparrow.org
-25834
- Interoperabilidad S.A. de C.V.
- Mario Delgado
- mario_delgado&interopera.com.mx
-25835
- Patientline UK Ltd
- Keith Jacobs
- keith.jacobs&patientline.co.uk
-25836
- Austrian Academy of Sciences
- DI Melitta Kimbacher
- melitta.kimbacher&oeaw.ac.at
-25837
- Electronnyi gorod Lld.
- Pavel Vladimirovich Chernov
- elkursk&mail.ru
-25838
- Tagawa Software Engineering
- Ichiro OHTA
- ichiro.ohta&nifty.com
-25839
- ISTANTE srl
- Enrico Lorenzini
- direzione&istante.info
-25840
- Logcode SARL
- Orjan Petersson
- nospam&logcode.com
-25841
- Arakelian Software, Inc.
- Gregory Arakelian
- iana&arakelian.com
-25842
- Technica Necesse Est
- Denis Tumpic
- dtumpic&sympatico.ca
-25843
- VoIP.co.uk
- Michael Procter
- michael&voip.co.uk
-25844
- Seneca Technology Corporation
- Hank Skalka
- hank&senecatechnology.com
-25845
- MIYATSU CO.,Ltd
- Tsukasa Okabe
- tk_okabe_1&yahoo.co.jp
-25846
- AIN Manager & Company, Inc.
- Matthew Wilson
- mrw&esrun.com
-25847
- M-Networks, LLC.
- William Mandra
- wmandra&m-networks.net
-25848
- Bally Technologies, Inc.
- Chuck DeVall
- cdevall&ballytech.com
-25849
- deas Deutsche Assekuranz-Makler GmbH
- Frank Gruber
- enterprisenumber&deas.de
-25850
- Smart Tech 21, Inc.
- George F. Taylor
- taylorgf&aol.com
-25851
- 5by5 Software Ventures Ltd.
- Daniel Choy
- dchoy&5by5software.com
-25852
- City Computing Ltd London UK 1767817
- Steven Britton
- snmp&cityc.co.uk
-25853
- Rubin Rt.
- Zoltan Kakuk
- kakci&rubin.hu
-25854
- Multisoft Ltd.
- Peter Perenyi
- snmp-mib&multisoft.hu
-25855
- Net24 Limited
- Nikolai Schupbach
- noc&net24.net.nz
-25856
- Free University of Bozen/Bolzano
- Alessandro Peroni
- it&unibz.it
-25857
- FEMTO-ST
- William Daniau
- william.daniau&femto-st.fr
-25858
- The Royal College of Surgeons in Ireland
- Ciaran Butler
- cmbutler&rcsi.ie
-25859
- The aKamali Group, Inc.
- David A. Beidle
- dabeidle&akamali.com
-25860
- A VonderHaar Networks
- AARON VONDERHAAR
- iana-contact&avh4.net
-25861
- Tanapro GmbH
- Thomas Arn
- edv&tanapro.ch
-25862
- Assist WiseTech S.A.
- Juan C. Plaza
- jcplaza&cl.assist-la.com
-25863
- Brenson Pacific Technologies Ltd
- Andre Thompson
- andre&brepac.com
-25864
- VideoPropulsion Interactive Television, Inc
- Matthew Spransy
- matthew&videopropulsion.com
-25865
- Boise State University
- Sean Jones
- smackjones&gmail.com
-25866
- CHU BESANCON
- Vincent JANNIN
- vjannin&chu-besancon.fr
-25867
- i-qnet
- C.Neufend
- neufend&i-qnet.de
-25868
- Last Mile Gear
- Brian Magnuson
- Support&cni.net
-25869
- MIRAVID Inc.
- Hugo Chung
- hchung&miravid.com
-25870
- FHLBanks Office of Finance
- Stacy Bergert
- bergert&fhlb-of.com
-25871
- Nextwireless. co. ltd.
- SangHo Kim
- smartkim&hotmail.com
-25872
- EMM s.r.o.
- Martin Zemlicka
- zemlicka&emm.sk
-25873
- BitlBee Team
- Jelmer Vernooij
- jelmer&samba.org
-25874
- GrimIce Inc.
- Osbert Morris
- ozzy81&gmail.com
-25875
- Ondrej Svoboda
- Ondrej Svoboda
- iana&svoon.net
-25876
- Gnome Technologies
- Andrew Blanksby
- andrew&gnome-technologies.com
-25877
- Portrait International, Inc.
- Darren Warner
- darren.warner&portraitsoftware.com
-25878
- FineRF
- Daniel Donia
- daniel&finerf.com
-25879
- Mess Creative Electronics B.V.
- Michiel Ettema
- mettema&xs4all.nl
-25880
- AEB GmbH
- Manfred Möbus
- moebus&aeb.de
-25881
- Objective Arts
- Stephen Grant
- sgrant&objectivearts.com
-25882
- Impinj, Inc.
- Bill Ashley
- bill.ashley&impinj.com
-25883
- Elspec-Ltd
- Oren Cohen-Shwartz
- OrenCS&elspec-ltd.com
-25884
- JPK Instruments AG
- Michael Haggerty
- haggerty&jpk.com
-25885
- TQI - Total Quality on Information
- Fabiano C. de Oliveira
- fabiano.oliveira&tqi.com.br
-25886
- Nethit
- Veikko Mustonen
- ldap&nethit.fi
-25887
- Centro Provinciale di Documentazione Modena
- Luca Prampolini
- tecnici&cedoc.mo.it
-25888
- Gestion Professionnelle des Services de l'Assurance
- CORTELLEZZI Philippe
- philippe.cortellezzi&gpsa.fr
-25889
- IFETH Ltd., U.K.
- Mr. Hans J Haase
- office&ifeth.org.uk
-25890
- MNG Networks GmbH
- Ernst Gentner
- ernst.gentner&mngnetworks.de
-25891
- Sms Systems
- Taft Price
- b_j_parker&yahoo.com
-25892
- Teletronics International, Inc.
- Ye Cao
- ye&teletronics.com
-25893
- Dexterra Inc.
- Zeev Lieber
- zlieber&dexterra.com
-25894
- Blue Cross and Blue Shield of Louisiana
- Kathy Constantin
- kathy.constantin&bcbsla.com
-25895
- PS Webhosting
- Philipp Wagner
- pw&ps-support.de
-25896
- Sento Corporation
- Hongyi Gao
- hongyi_gao&hotmail.com
-25897
- Alligacom Inc.
- Dominique Danvoye
- dominique.danvoye&alligacom.com
-25898
- 25th-floor - de Pretis & Helmberger KEG
- Andreas de Pretis
- a.depretis&25th-floor.com
-25899
- Kantonsschule Zug
- Christian Wittenhorst
- wiwi&ksz.ch
-25900
- Blue Frog Solutions Inc.
- Glenn Puchtel
- gpuchtel&bluefrogsolutions.com
-25901
- Vaquero (formerly 'Linterra')
- Michael Owens
- mikeowens&gmail.com
-25902
- M&V Werbeagentur GmbH
- Achim Vogel
- a.vogel&mvwa.de
-25903
- Palm Beach County
- Craig Lessard
- clessard&co.palm-beach.fl.us
-25904
- Fresh Agencja Reklamowa Sp. z o.o.
- Jaroslaw Szczepankiewicz
- jszczepankiewicz&fresh.com.pl
-25905
- Charles University in Prague
- Michal Vocù
- michal&cuni.cz
-25906
- Topchiev Institute of Petrochemical Synthesis
- Igor Ermakov
- ive&ips.ac.ru
-25907
- EMAP France
- Jean-Pascal GUIHARD
- jeanpascal.guihard&emapfrance.com
-25908
- Haicku, S. Coop. Mad.
- Irene Fernandez
- irene&haicku.net
-25909
- IPCMS
- Fabien Muller
- Fabien.Muller&ipcms.u-strasbg.fr
-25910
- Live Software Solutions Ltd.
- Mike Goatly
- MGoatly&livesoftwaresolutions.com
-25911
- ELCA Informatique SA
- Erwin BORDET
- sd.iana&elca.ch
-25912
- PT Teleakses Solusindo (Tel-Access)
- Emil Chandrawisesa
- chandrawisesa&tel-access.com
-25913
- Fi-Mesh Networks Private Ltd.
- Krishna Akella
- akellak&fi-mesh.com
-25914
- Solacom Technologies
- Channy Tremblay
- ctremblay&solacom.com
-25915
- BCM Bureautique S.A.R.L
- Seridj Larbi
- blar&nomade.fr
-25916
- progon engineering
- Christian Wittenhorst
- wiwi&progon.net
-25917
- convey Information Systems GmbH
- Bernhard Froehlich
- ted&convey.de
-25918
- IT-SecuConsult Ltd.
- Sven Steinecke
- sven.steinecke&it-secuconsult.net
-25919
- NorthSpark AB
- Randy Vincelette
- randy.vincelette&northspark.se
-25920
- Institut de Genetique et Microbiologie ( IGM )
- Mazyar IZAD PANAH
- mazyar.izad&igmors.u-psud.fr
-25921
- centerra GmbH
- Daniel Paufler
- daniel.paufler&centerra.de
-25922
- teuto.net Netzdienste GmbH
- Christian Gall
- cg&teuto.net
-25923
- C D P Communications Inc.
- Carlton D. Davis
- cdavis&cdpcommunications.net
-25924
- CatsMuvva.Net
- Nicole King
- nicole&catsmuvva.net
-25925
- Ready Business System
- Jean-Marc BURGSTAHLER
- jean-marc.burgstahler&rbs.fr
-25926
- Computer and Communication (CaC)
- Stefan Klatt
- stefan.klatt&cac-netzwerk.de
-25927
- Marketcetera LLC
- Graham Miller
- oidadmin&marketcetera.com
-25928
- SecureNet Scientific Solutions S.A. de C.V.
- Xavier Arino
- xavier.arino&securenet.com.mx
-25929
- JHU ACM
- Albert Lee
- trisk&acm.jhu.edu
-25930
- ZamKor P. Sagnowski i Wspolnicy Sp. J.
- Krzysztof Satola
- krzysztof.satola&zamkor.pl
-25931
- Datalan, a.s.
- Marek Baumerth
- info&datalan.sk
-25932
- 8labs.com
- Joshua Graham
- jgraham&8labs.com
-25933
- Quantum Technology Marketing Ltd
- Mike Kovacevich
- mike.kovacevich&quantumtm.com
-25934
- Intraway Corporation
- Lucas Lodeiro
- lucas.lodeiro&intraway.com
-25935
- TNT Express Worldwide (UK) Ltd
- Darryl Armstrong
- darryl.armstrong&tnt.com
-25936
- echternacht new media ohg
- Dirk Winter
- dirk.winter&echternacht.com
-25937
- NNIT A/S
- Network department (Responsible: BnnK/Benny Kjærgaard)
- network&nnit.com
-25938
- Axonpro spol. s r.o.
- Ernest Beinrohr
- admins&axonpro.sk
-25939
- Mainstream Technologies, s.r.o.
- Petr Setka
- info&mainstream.cz
-25940
- Lycée Technique d'Ettelbruck
- Marc TEUSCH
- marc.teusch&education.lu
-25941
- WiComm mmc
- Vadim Chernov
- office&vdm-media.info
-25942
- DigiVox B.V.
- Patrick Tepe
- digivox.nl&hotmail.com
-25943
- pixus.net
- Grulert
- mailvon.iana&pixus.de
-25944
- Psychotronics
- Florian Friesdorf
- flow&mytum.de
-25945
- Landwehr EDV Technik
- Klaus-Dieter Landwehr
- kd.landwehr&landwehr-edv.de
-25946
- cintrixx technologies
- Mohan Ranjith
- mohanranjith&yahoo.com
-25947
- Halloo Communications, Inc.
- Jim Li
- jyl087&gmail.com
-25948
- Yellowbank
- Ron Peterson
- iana&yellowbank.com
-25949
- China Agricultural University
- Wang Xu
- kevinw2008&yahoo.com.cn
-25950
- FlyLady & Company, Inc.
- Michael Bennett
- iana-mib-oid&flylady.net
-25951
- Hutman, Inc
- Kevin M. Tilka
- ktilka&hutman.net
-25952
- EyeQ Informationstechnik & Multimedia, Reinhard Sucker & Sohn GbR
- Oliver Sucker
- info&eyeq.de
-25953
- Getitsafe
- Tobias Hansson
- tobias&getitsafe.com
-25954
- XERON
- Douglas Kim
- douglas_kim&xeron.co.jp, douglas_kim&xeron.co.kr
-25955
- Observit Lda
- Pedro Soares
- psoares&observit.com.pt
-25956
- Talk-A-Phone Co.
- Yosef Klein
- yklein&talkaphone.com
-25957
- ATITEL LTDA
- Marcos Santos
- marcos&ati.com.br
-25958
- Secure Networks Lda.
- Pedro Almeida
- palmeida&securenetworks.pt
-25959
- Raia & Cia Ltda.
- Rodolfo Ricci
- rodolfo&drogaraia.com.br
-25960
- Hour Hand Productions Inc.
- Michael D'Auria
- michael&hourhandproductions.com
-25961
- Bizfon, Inc.
- Martin Abbott
- mabbott&bizfon.com
-25962
- Larson Technology
- Brent Larson
- brent&larson.name
-25963
- California State University Stanislaus
- Russell Inman
- rinman&csustan.edu
-25964
- sPearWay Ltd.
- Pierre Frisch
- pierre.frisch&spearway.com
-25965
- Pennsylvania Legislative Data Processing Center
- An Ly
- axl&legis.state.pa.us
-25966
- CBS Broadcasting Inc.
- Ryan Don
- rdon&hvc.rr.com
-25967
- Packetware Inc
- Srinivasa R Nallamotu
- sri&packetware.com
-25968
- Rabid Dog Labs
- Kenneth Clark
- kenneth&rabiddog.co.za
-25969
- SeMarket, S.A.
- J.Angel Recio
- ja.recio&semarket.com
-25970
- Pmovil Ltda.
- Flavio Correa Prado
- fprado&pmovil.com.br
-25971
- SGV
- heinz hoelzl
- heinz.sgv&gvcc.net
-25972
- SUPERCOM
- Angus
- Angus&supercom.com.tw
-25973
- Nexge Technologies (P) Ltd
- Sivalingam
- siva&nexge.com
-25974
- Freedom9 Inc.
- Allen Hsueh
- oidadmin&freedom9.com
-25975
- REUNA
- Juan Carlos Martínez
- jcmartin&reuna.cl
-25976
- Secours Catholique
- J. Paul Nyame
- jnyameew&capgemini.fr
-25977
- Bausparkasse Schwäbisch Hall AG
- Gunther Lochstampfer
- gunther.lochstampfer&kreditwerk.de
-25978
- EGeen
- Heno Ivanov
- heno.ivanov&egeeninc.com
-25979
- Mavenir Systems, Inc.
- Rashad Ali
- info&mavenir.com
-25980
- Van Shung Chong Holdings Limited
- Eric LEUNG (Kai Shing)
- eric.leung&vschk.com
-25981
- Sapian SA
- Victor Saldarriaga
- vsaldarriaga&sapian.org
-25982
- Hillcrest Laboratories, Inc.
- Stephen Scheirey
- Steve.Scheirey&hillcrestlabs.com
-25983
- Telecom Design
- Alexander Naidenovich
- nav&teledes.ru
-25984
- FAST CORPORATION
- Hideo Kuwabara
- H.Kuwabara&fast-corp.co.jp
-25985
- JoyTV10 / S-Vox Ltd (formerly 'Rogers Broadcasting Ltd.')
- Paul Muirhead
- pmuirhead&s-vox.com
-25986
- InterGen Services, Inc.
- Craig Shrimpton
- cshrimpt&intergen.com
-25987
- Grupo de Investigación en Bioingeniería (GIB) CES - EAFIT
- Alvin Garcia Chaves
- algarcia&eafit.edu.co
-25988
- AKH Wien
- Gallauner Roman
- roman.gallauner&akhwien.at
-25989
- Automata Software Inc.
- Jason Rohwedder
- iana-contact&automatasoft.com
-25990
- Security Compliance Corp
- IANA Admin
- admin&securitycompliancecorp.com
-25991
- MasarLabs.com
- Maurizio Sartori
- masar&MasarLabs.com
-25992
- ACEFHAT , A.I.E.
- Juan Ramón Mesa Díaz
- jrmesa&acefat.com
-25993
- Aspalis SAS
- Jean-Paul MALLET
- jeanpaul.mallet&aspalis.com
-25994
- Aspect Capital Ltd
- Cheung Lo
- cheung.lo&aspectcapital.com
-25995
- Network-Unlimited
- Eelco Nieuwstad
- eelcon&xs4all.nl
-25996
- ITRI
- Chilung Wang
- chilung&itri.org.tw
-25997
- Ugly Design, Inc
- Marc Paradise
- marc.paradise&gmail.com
-25998
- Assure Programs Pty Ltd
- Scott Wilson
- scottwilson&assureprograms.com.au
-25999
- Junger Audio-Studiotechnik GmbH
- Manfred Ottenbreit
- manfred.ottenbreit&junger-audio.com
-26000
- John Laesch for Congress
- Jared Lash
- errorlevel&gmail.com
-26001
- Embedded Ventures LLC
- Timothy J. Spires
- tspires&frontiernet.net
-26002
- Youtility Solutions, Inc.
- Graham Gillies
- graham.gillies&youtility.com
-26003
- Adflex Ltd
- Darryl Hughes
- dhughes&adflex.co.uk
-26004
- CONNECT Software AG
- Simon Erhardt
- simon.erhardt&it-connect.de
-26005
- Hessisches Landeskriminalamt DV-kriminalistische Beratungs- und
-Auswertungsstelle
- Berg, Matthias
- matthias.berg&sg613.de
-26006
- Personal & Informatik AG
- Klaus Thiele
- kthiele&pi-ag.com
-26007
- Evert Mouw
- Evert Mouw
- post&evert.net
-26008
- Neosis
- Ashish Disawal
- ashish&neosis.in
-26009
- Sebastian Pasch
- Sebastian Pasch
- pasch&lipa-digital.com
-26010
- Hippogriff LLC
- Bernd Prager
- bernd&prager.ws
-26011
- CEPEL
- Bruno Avila Galvão
- avila&cepel.br
-26012
- Holmboe Consulting
- Henrik Holmboe
- henrik&holmboe.se
-26013
- Kongsberg Seatex AS
- Morten Skille
- morten.skille&kongsberg.com
-26014
- Legando AG
- Alan Moran
- alan.moran&legando.ch
-26015
- Multipolar Corporation Tbk, PT
- Rudy Hidajat
- rudy.hidajat&multipolar.co.id
-26016
- Rederi AB Transatlantic
- Peter Kindbom
- peter.kindbom&rabt.se
-26017
- Raiffeisenbank (Bulgaria) EAD
- Lazar Oleg Konyuhov
- Lazar.Konyuhov&rbb-sofia.raiffeisen.at
-26018
- Westminster College
- Don E. Goodlin, Jr.
- goodlide&westminster.edu
-26019
- nantong vocational college
- guoping huang
- hgp&mail.ntvc.edu.cn
-26020
- DePratti Consulting LLC
- Patrick DePratti
- pdepratti&yahoo.com
-26021
- Ligos Corporation
- Jim Weller
- jweller&ligos.com
-26022
- Kamayo
- Julien Nitard
- julien.nitard&m4tp.org
-26023
- Fachschaft MPI, TU München
- Sebastian Hanigk
- shanigk&fs.tum.de
-26024
- subnet - platform for media art and experimental technologies
- Andreas Förster
- andreas&subnet.at
-26025
- Ari Voutilainen
- Ari Voutilainen
- ari.voutilainen&iki.fi
-26026
- arm4.org
- David Carter
- dcarter&entertain-me.com
-26027
- OpenDS.org
- OpenDS Administrator
- opends&dev.java.net
-26028
- MetaSoft
- Ilya Melamed
- ilya77&gmail.com
-26029
- DuroSystems Ltd.
- Brett Doyle
- mib-snmp&durosystems.com
-26030
- Zobel Software GmbH
- Boris Synak
- boris.synak&zobelsoft.de
-26031
- b-tree GmbH
- Roland Wepfer
- roland&wepfer.com
-26032
- XINU technologies GmbH
- Wolfgang Stanglmeier
- iana&xinu.de
-26033
- On The Network Co.,Ltd
- Kim TaeHyung
- ohsh&otnet.co.kr
-26034
- Adobe Animal Hospital
- Steve Poe
- steve.poe&gmail.com
-26035
- Alinto SA
- ALINTO Network Operation Center
- noc&alinto.net
-26036
- Demoniak Network
- Frederic Pamart
- info&demoniak.ch
-26037
- Dengler Engineering GmbH
- Peter Schulze
- peter.schulze&dengler-gmbh.de
-26038
- Cecom S.A.
- Jose I. Murria
- jimurria&gcener.com
-26039
- CESR
- Hillembrand
- Cedric.Hillembrand&cesr.fr
-26040
- T PARTY
- TAKAHIRO KONNO
- thtprty&gmail.com
-26041
- Optical Internetworking Forum (OIF)
- Andra Kosich
- akosich&oiforum.com
-26042
- Music for Life Institute
- Max Clements
- clementsm&gmail.com
-26043
- LaSer Loyalty
- Sébastien Ducléroir
- admin_fidelisation&e-laser.fr
-26044
- Telemacro Informacoes e Servicos Ltda.
- Fernando Braga
- fernando&telemacro.com.br
-26045
- Wright Patman Congressional Federal Credit Union
- Devin Calef
- dcalef&congressionalfcu.org
-26046
- interActive Systems GmbH
- Thomas Fritzinger
- noc&interactive-systems.de
-26047
- Fritzinger IT-Consult
- Thomas Fritzinger
- noc&fritzinger-consult.de
-26048
- Mo-Sys Ltd
- Wolfgang Stanglmeier
- wolfgang&mo-sys.com
-26049
- Open WWWorks
- Andre Heine
- info&open-wwworks.de
-26050
- Ecole Centrale de Marseille
- Geoffroy Desvernay
- cri&egim-mrs.fr
-26051
- Retep Software
- Peter Mount
- peter&retep.org.uk
-26052
- HALYS
- Gilles Deviercy
- halys&laposte.net
-26053
- Gutjahr GmbH
- Martin Gutjahr
- mg&gutjahr.de
-26054
- ARASOR TECHNOLOGIES PRIVATE LIMITED
- DR. K.AL SRIDHARAN
- sridhar&arasor.net
-26055
- NordicAware AS
- H.Eugen Aandal-Frøystadvåg
- euaan&nordicaware.no
-26056
- Exxim Computing Corporation
- Andrew Jeffries
- ajeffries&exxim-cc.com
-26057
- Alpheus Communications, L.P.
- Tom Fraser
- thomas.fraser&alpheuscommunications.com
-26058
- Codebay Oy
- Sami Vaarala
- sami.vaarala&iki.fi
-26059
- BTECH, Inc.
- Bob Entwisle
- bentwisle&btechinc.com
-26060
- IZT Innovationszentrum Telekommunikationstechnik GmbH
- Rainer Perthold
- info&izt-gmbh.de
-26061
- Artesyn Embedded Technologies (formerly 'Emerson Network Power, Embedded Computing')
- Dan Sheets
- RegistrarEc.Eng&artesyn.com
-26062
- MZL Software Development
- Alan Forbes
- alan&forbesfamilyonline.com
-26063
- Ankhnet Informations Pvt. Ltd.
- Dr. Ajay N. Khosla
- drkhosla&ankhnet.net
-26064
- Braga Moro S.p.A.
- Adelio Abbondio
- adelio.abbondio&bragamoro.com
-26065
- GECO, Inc.
- Ralph Crago
- ralph.crago&gecoinc.com
-26066
- MultiService Forum
- Avri Doria
- avri&acm.org
-26067
- Kyland
- Fan GongChen
- fangongchen&kyland.com.cn,flyheart312&fastmail.fm
-26068
- Shaanxi Key Laboratory of Satellite-Terrestrial Network Tech.R&D
- Chen Ling
- chenling&xjtu.edu.cn
-26069
- IPG Sales Pty Ltd
- Patrick Cole
- pac&independent.com.au
-26070
- neutralities.net
- Contact Executive
- contact&atomic9.net
-26071
- Marcin Raciborski
- Marcin Raciborski
- marcin&msystem.com.pl
-26072
- Beijing Huisen Networks technology Inc
- Xiaodong Wu
- wuxd&passart.cn
-26073
- VEUSTEC SERVICOS DE INFORMATICA LTDA
- Marcelo Botelho
- marcelo.botelho&veus.com.br
-26074
- TUSC
- Chris Taylor
- chris.taylor&tusc.com.au
-26075
- x2s Limited
- J. Coombes
- jcoombes&x2s.co.uk
-26076
- Metrinomics GmbH
- Sven Christel
- s.christel&metrinomics.de
-26077
- Espelt.net
- Aleix Solé Romeu
- lasker&espelt.net
-26078
- S4Software, Inc.
- Peter Walsall
- pwalsall&s4software.com
-26079
- Burk Technology
- Jonathan Burk
- jonb&burk.com
-26080
- AR Department of Information Systems
- Brian Fortson
- brian.fortson&arkansas.gov
-26081
- Lars Kornwinkel
- Lars Kornwinkel
- lars.kornwinkel&web.de
-26082
- CERTIRA
- Jean-Paul ECOCHARD
- jean-paul.ecochard&certira.cnafmail.fr
-26083
- CacheGuard Technologies Ltd. (formerly 'OneTec')
- Charles Tajvidi
- iana&cacheguard.com
-26084
- Enter srl
- Mariano Cunietti
- mcunietti&enter.it
-26085
- Kunstuniversitaet Linz
- Johannes Kremsner
- johannes.kremsner&kunstuni-linz.at
-26086
- PC - ANWENDUNGEN
- Thomas Boscheck
- boscheck&boscheck.de
-26087
- Markus Meyer
- Markus Meyer
- mameye&zone.ch
-26088
- Aspera OHG
- Patrick Loijens
- iana.org&aspera.com
-26089
- Emanuel Haupt
- Emanuel Haupt
- ehaupt&critical.ch
-26090
- qiiq communication inc.
- Gary Zhu
- gang&qiiq.com
-26091
- Lafarge S.A.
- Rami SADI
- rami.sadi&lafarge.com
-26092
- ACEB Electronique
- Marc MALARD
- contact&aceb-elec.com
-26093
- NiBweb
- Nico Bille
- nico&nibweb.net
-26094
- McGibbon IT-services
- Jeroen Haak
- j.haak&xs4all.nl
-26095
- Canopus Co., Ltd.
- Hiroshi Inamura
- hiro-i&canopus.co.jp
-26096
- Synergy Neworking Ltd
- Adam Crisp
- adam.crisp&synergy-networking.co.uk
-26097
- Linux Training NZ
- Ken Lomax
- ken&lomax.gen.nz
-26098
- King County
- Jon Grissom
- jon.grissom&metrokc.gov
-26099
- Shanghai Engineering Research Center for Broadband Technologies & Applications(B-STAR) Co., Ltd.
- Gao Yihe
- yhgao&b-star.cn
-26100
- Cypress Integrated Systems, Inc.
- Brian Donnelly
- brian&cypressintegrated.com
-26101
- NUPPEAD - Núcleo de Pesquisa e Projetos em Educação a Distância
- Marcelo Gigliotti
- admin&nuppead.unifacs.br
-26102
- Advance Internet, Inc.
- Bob Eckert
- beckert&advance.net
-26103
- WOBCOM GmbH
- Sven Holz
- sven.holz&wobcom.de
-26104
- bellwin information Co.,LTD
- juiwenliang
- juiwen&bellwin.com.tw
-26105
- Crummock (Scotland) Ltd
- Ross McKerchar
- it&crummock.com
-26106
- Sentivision Polska sp. z o. o.
- Jakub Gorski
- kuba&sentivision.com
-26107
- Cambridge Display Technology Ltd
- Ellis Karim
- ekarim&cdtltd.co.uk
-26108
- HYDRA FUEL CELL CORPORATION
- Oliver Garr
- oman&pacifier.com
-26109
- TPS Pakistan Pvt Ltd.
- Omair Ahmed Khan
- omair.khan&tpsonline.com
-26110
- PrintMIB, LLC
- Rick Bock
- Rick&PrintMIB.com
-26111
- Informi GIS A/S
- Christian Junker
- iana&informi.dk
-26112
- ISGS
- Dan Thurston
- thurston&isgs.uiuc.edu
-26113
- keuning Information Systems
- Bernd Keuning
- me&bernd-jan.com
-26114
- AXIOHM
- Frederic Sciortino
- frederic.sciortino&axiohm.com
-26115
- JSC STC "Rissa"
- Nikolay Sakhno
- nik&rissa.ru
-26116
- Practical Economic Research Limited
- Mark Smith
- ProjectLynx&shaw.ca
-26117
- Lux Solis, LLC
- Laurence Flath
- lflath&luxsolis.com
-26118
- BFSt
- Gus Thomas
- sppsm&bfst.bund.de
-26119
- Trafsys
- Eugene Zaikonnikov
- eugene.zaikonnikov&trafsys.no
-26120
- cweiske.de
- Christian Weiske
- cweiske&cweiske.de
-26121
- Rishi Valley School
- M R K Murthy Raju
- murthyraju&rishivalley.org
-26122
- Zenitel Norway AS
- Kjell Ove Roete
- kjellove.rote&zenitelcss.com
-26123
- Ministerie van de Vlaamse Gemeenschap, belfla telematica
- Godfried Verhamme
- Godfried.Verhamme&lin.vlaanderen.be
-26124
- ComX Networks A/S
- Per M. Mortensen
- pmm&comx.dk
-26125
- Vegacom a.s.
- Petr Votava
- votava&vegacom.cz
-26126
- Makko Solutions, S. A. de C. V.
- Jesús Alfonso Rodríguez
- jarodriguez&makko.com.mx
-26127
- Beijing Vorx Telecommunications Co, Ltd.
- Meng Qingyang
- hemameng&163.com
-26128
- CommSeed Corporation
- Masami Hanari
- domain&commseed.net
-26129
- Logitek Electronic Systems, Inc.
- Tag Borland
- tag&logitekaudio.com
-26130
- Montserrat College of Art
- Mick Maldonado
- mmaldonado&montserrat.edu
-26131
- Vendini Tickets
- Timothy J Gerk
- tgerk&vendini.com
-26132
- Aegis Semiconductor, Inc.
- Dave Parent
- dparent&aegis-semi.com
-26133
- Center for Remote Sensing Ice Sheets, University of Kansas
- Thorbjorn Axelsson
- thax&cresis.ku.edu
-26134
- Institute for Networked Solutions
- René Stanger
- iana&ins.hsr.ch
-26135
- Mount Airey Group, Inc.
- Bill Russell
- russellwc&mountaireygroup.net
-26136
- GENOME express
- Marcel de Leeuw
- m.deleeuw&genome-express.com
-26137
- The University of Texas System
- Paul Caskey
- netadmin&utsystem.edu
-26138
- INTELBRAS S/A
- Adailton Adam
- adailton.adam&intelbras.com.br
-26139
- Samford University
- Mearl Danner
- jmdanner&samford.edu
-26140
- Reflected Networks, Inc.
- Phil Doroff
- phil&reflected.net
-26141
- EDI-PRO
- Jean-Pierre MOMMENS
- mommens&edi-pro.be
-26142
- 3Way Networks Ltd
- Chris Moore
- snmp&3waynetworks.com
-26143
- Centre d'Alt Rendiment Esportiu
- Marck Collado
- mcollado&car.edu
-26144
- IRTE S.p.A.
- Federico Brazzelli
- federico.brazzelli&irte.it
-26145
- Network Systems
- Boris Polevoy
- boris&netsys.com.ru
-26146
- ZAO NPC SPECTRUM
- Alexander Mishin
- alexmishin&inbox.ru
-26147
- Trivore Corp.
- OID Master
- hostmaster&trivore.com
-26148
- Suburban Medical Laboratory, Inc.
- Michael Nowlin
- mike&smlab.com
-26149
- India Mobility Research (IMR)
- Pratap Sigh Ratra
- pratap.ratra&indiamobility.com
-26150
- FDT Manufacturing, LLC
- Greg Ansley
- cto&telecine.com
-26151
- Win32Tools
- Brandon Bernier
- Brandon&Win32Tools.com
-26152
- Helsinki IT Systems Consulting
- Jukka Hienola
- jukka.hienola&iki.fi
-26153
- HighPoint Technologies, Inc.
- May Hwang
- mhwang&highpoint-tech.com
-26154
- biaix
- Joan Picanyol i Puig
- hostmaster&biaix.org
-26155
- Bancolombia S.A
- Natalia Ramirez Escobar
- nramirez&bancolombia.com
-26156
- Quicksilva Ltd.
- Craig Millard
- itsupport&qxlva.com
-26157
- Chupa Chups, S.A.
- Xavier Roig Gracia
- xroig&chupachups.com
-26158
- Bertram Yacht Inc.
- DANIELE PECA
- daniele.peca&bertram.com
-26159
- Euro Connect
- Stephane LE COZ
- stephane.lecoz&euroconnect.fr
-26160
- VUMS Control Systems, a.s.
- Josef Blahut
- vums&vums.cz
-26161
- Rocketseed
- Thys Kitshoff
- support&rocketseed.com
-26162
- TELROS
- Sergey Bybin
- bybin&telros.ru
-26163
- AirCUVE Co., Ltd.
- You-serk Han
- bluecomp&aircuve.com
-26164
- Tri-vision Electronics Inc
- Cam Siddiqui
- qsiddiqui&aol.com
-26165
- US Airways
- Ron Rickard
- ron.rickard&usairways.com
-26166
- Nebraska Wesleyan University
- Chris St. Pierre
- stpierre&nebrwesleyan.edu
-26167
- Blakemere Technologies Inc.
- Russell Davies
- russell.davies&blakemere.ca
-26168
- Idologic Inc.
- Jeff Gardiner
- webmaster&idologic.com
-26169
- eLynx Ltd.
- Dusty Doris
- ddoris&elynx.com
-26170
- Clario Medical Imaging, Inc.
- Peter McLain
- pbm&clariomedical.com
-26171
- Parallels Holdings Ltd (formerly 'SWsoft, Inc.')
- Pavel Gashev
- admin&parallels.com
-26172
- Keble College
- Steve Kersley
- postmaster&keble.ox.ac.uk
-26173
- monaghen.com
- Troy Monaghen
- troy&monaghen.com
-26174
- SignaCert, Inc.
- John Kasinger
- john.kasinger&signacert.com
-26175
- R&S Medizinsysteme
- Janis Schuller
- iana&rsmedical.de
-26176
- AB Computing Ltd
- Martin Bradford
- mab&abcomputing.co.uk
-26177
- Black Press Group Ltd.
- Dave Blair
- domainadmin&bcnewsgroup.com
-26178
- LandQuest Services Ltd.
- Lorne Chartier
- lorne.chartier&landquestservices.com
-26179
- Connectiva Systems
- Manas Mandal
- mmandal&connectivasystems.com
-26180
- Queens Academic Group Ltd
- Stephen Boswell
- stephen&queens.ac.nz
-26181
- Cohda Wireless Ltd
- Peter N Pham
- peter.pham&cohdawireless.com
-26182
- Entelechy Systems
- Kyle Warner
- kwarner&entelechysys.com
-26183
- Northeastern State University
- William Gillen
- gille001&nsuok.edu
-26184
- NSP
- Christian Pedaschus
- cpedaschus&gmx.de
-26185
- Interalia Inc.
- Charl Coetzee
- oid.admin&interalia.com
-26186
- Yocobox Soluciones Digitales
- Gabriel Czerniecki
- gabrielcz&yocobox.com
-26187
- Scott Logic Ltd.
- Tom Bentley
- tbentley&scottlogic.co.uk
-26188
- Switch Media
- Matt Collier
- matt.collier&switchmedia.co.uk
-26189
- Qstreams Networks
- Ben Warren
- bwarren&qstreams.com
-26190
- Crisp Thinking Ltd
- Adam Hildreth
- adam.hildreth&Crispthinking.com
-26191
- Jadebird Inc.
- Jackie Huen
- jackie&jadebird.com
-26192
- Sony Global Solutions Inc.
- Toshio Hiraga
- Toshio.Hiraga&jp.sony.com
-26193
- Hangzhou Grancom Information & Technology Co.,Ltd.
- Xu Yuanxin
- yuanxinxu&163.com
-26194
- Rasmus Hahn
- Rasmus Hahn
- rassahah&neofonie.de
-26195
- Imagic Bildverarbeitung AG
- Peter Felix
- felix&imagic.ch
-26196
- AVT Audio Video Technolgies GmbH
- Wolfgang Peters
- wpeters&avt-nbg.de
-26197
- HITT GmbH
- Raimund Vogl
- R.Vogl&hitt.at
-26198
- Hedmark University College
- Odd Kristian Lundby
- Odd.Lundby&hihm.no
-26199
- KEEPIXO
- MR JEROME BLANC
- jerome.blanc&keepixo.com
-26200
- Solid Rock IT
- Inigo Kintana
- inigokintana&solid-rock-it.com
-26201
- UHU-Linux Kft.
- Tamási János
- contact&uhulinux.hu
-26202
- Snipe Networks
- Andy Song
- asong&snipenetwork.com
-26203
- I.T. Advance Consulting, Inc.
- Network Administration
- network.administration&itadvance.com
-26204
- University of Utah Department of Medical Informatics
- Aaron Kamauu
- radinfo&akamauu.com
-26205
- Bright Horizons Family Solutions
- George Peguero
- gpeguero&brighthorizons.com
-26206
- On Site Network Solutions, Inc.
- Luis Chanu
- Luis&OnSite.Com
-26207
- FT Interactive Data Inc.
- Paul Andrews
- Paul.Andrews&interactivedata.com
-26208
- PDL BioPharma, Inc.
- Luis Chanu
- Luis.Chanu&PDL.Com
-26209
- Louisiana Department of Health and Hospitals
- Jeff Penton
- jpenton&dhh.la.gov
-26210
- ACM Systems
- Lisa Schamaun
- Lisa.Schamaun&sncorp.com
-26211
- Universidade Federal de Minas Gerais
- Paulo Fernando Seixas
- paulofs&ufmg.br
-26212
- Harmonic Technology Group, LLC
- Rich Dammkoehler
- rich.dammkoehler&harmonicone.com
-26213
- Stahlgruber GmbH & Co KG
- Andreas Jaekle
- andreas.jaekle&stahlgruber.de
-26214
- Afilias Canada
- Michael Young
- myoung&ca.afilias.info
-26215
- Progensys Ltd
- Jason Banks
- jasonb&progensys.co.uk
-26216
- Deck S.r.l.
- Emilio Capparelli
- emilio_k&libero.it
-26217
- Systel SA
- RENOUD Christophe
- contact&systel-fr.com
-26218
- Nova Scotia Cancer Centre
- Michael Hale
- Michael.Hale&cdha.nshealth.ca
-26219
- Enagas S.A.
- Fernando Muñoz Gonzalez
- dsi.inf.sg&enagas.es
-26220
- Gunter, Winston, & O'Neal Corporation
- Winston O. Gunter
- z1126461473&yahoo.com
-26221
- BeTV Belgium
- Belaid Abadja
- babadja&betv.be
-26222
- S&S Pamin
- Sascha-David Pamin
- sascha-david.pamin&web.de
-26223
- Jakobs Family Enterprises
- Keith Jakobs
- elohir&hotmail.com
-26224
- MONITORAPP Co.,Ltd.
- Wonseok Tony Yang
- tony7&monitorapp.com
-26225
- Studio DIGITAL ART
- CRETINON Pierre-Mael
- info.iana&digital-art.net
-26226
- Netcom Systems
- Eldad Zack
- eldadz&netcom.co.il
-26227
- mindjail consulting Ltd.
- Daniel King
- contact&mindjail.net
-26228
- Tricipher, Inc.
- Andy Cottrell
- oid&tricipher.com
-26229
- Data Management S.p.A.
- Richard Golding
- rgolding&datamanagement.it
-26230
- Kirusa Inc.
- Prasanna Uppaladadium
- prasanna&kirusa.com
-26231
- Punch Telematix
- Kenny Gryp
- kenny.gryp&punchtelematix.com
-26232
- scimmia.net
- Alessandro -oggei- Ogier
- info&scimmia.net
-26233
- Stephen Thompson Consulting, LLC
- Stephen Thompson
- stephen&stephent.net
-26234
- Gate Petroleum Company
- Austin McCormack
- amccormack&gatepetro.com
-26235
- Computer Networks Laboratory at Technical University of Kosice
- Juraj Giertl
- juraj.giertl&cnl.tuke.sk
-26236
- Camara de Comercio y Produccion de Santo Domingo
- Jenner Almanzar
- jalmanzar&camarasantodomingo.do
-26237
- Elders Limited
- John Dell'Oso
- john.delloso&elders.com.au
-26238
- Consortium GARR
- Gabriella Paolini
- gabriella.paolini&garr.it
-26239
- Bank Solidarnost
- Dmitry A. Marin
- marin_da&solidar.ru
-26240
- Hochschule Darmstadt
- Andreas Zekl
- zekl&h-da.de
-26241
- ALLCARE ADMINISTRATORS (PTY) LTD
- SAM GELBART
- samg&allcare.co.za
-26242
- Loy & Hutz Aktiengesellschaft
- Dirk Gaudian
- dirk.gaudian&loyhutz.de
-26243
- SIS Schul Internet Service
- Pascal Schuppli
- sisadmin&sis.edube.ch
-26244
- Ocilion IPTV Technologies GmbH
- Markus Schmidleitner
- markus.schmidleitner&ocilion.com
-26245
- Australia MultiDrive Development (AMD)
- Rubayat Islam
- bdbusiness&gmail.com
-26246
- North Seattle Community College
- Paul Piecuch
- ppiecuch&sccd.ctc.edu
-26247
- ServiceTrace e.K.
- Markus Duus
- mduus&servicetrace.de
-26248
- die NetzWerkstatt
- Dominik Meyer
- dmeyer&die-netzwerkstatt.de
-26249
- Transact Services LLC
- Claudio Mendoza
- cmendoza&gate.net
-26250
- Information and Multimedia Center, Gifu University
- Yuichi Uchida
- imc&gifu-u.ac.jp
-26251
- ZZNODE
- Ding Yong
- yong.ding&zznode.com
-26252
- Universidad de Sonora
- Carlos Lizarraga
- carlos&fisica.uson.mx
-26253
- Iduntec
- Henrik Morell
- henrik.morell&iduntec.com
-26254
- PesaPoint Ltd
- Hilary Ngeno
- ngenoh&paynet.co.ke
-26255
- Our Lady of the Lake Hospital, INC.
- Walter Paine
- wpaine&ololrmc.com
-26256
- Fluendo S.A.
- Julien Moutte
- julien&fluendo.com
-26257
- RT-Tech LLC
- Terrell Simms
- terrell.simms&gmail.com
-26258
- Datum International Ltd
- Lavinia Edmed
- ledmed&datumplc.com
-26259
- GlobalX Technologies, LLC
- Jessie Williams
- jwilliams&blansys.com
-26260
- NIBCO INC.
- Ray Storer
- raymond.storer&nibco.com
-26261
- MAXON CIC Corp.
- Seo Kyung Deok
- kdseo&maxoncic.com
-26262
- NMMN New Media Markets & Networks GmbH
- Arne P. Boettger
- technik&nmmn.com
-26263
- Douglas School District
- Bert Twiggs
- btwiggs&dsdk12.net
-26264
- Galeries Lafayette
- Sébastien Guerlet
- sguerlet&galerieslafayette.com
-26265
- Flawed Logic Server Management Software
- Joshua Wilson
- jwilson&cs.utsa.edu
-26266
- LITE-ON TECHNOLOGY CORP.
- Steve Kao
- Steve.Kao&liteon.com
-26267
- Kodiak Networks India Pvt. Ltd
- Pankaj Kumar Roy
- proy&kodiaknetworks.com
-26268
- PositiveArt
- Jonas Westphal
- info&positive-art.de
-26269
- inSORS Integrated Communications, Inc.
- Jon Swanson
- webmaster&insors.com
-26270
- Olivetti S.p.a
- Mario Tavarelli
- m.tavarelli&olivetti.com
-26271
- acosta.se
- Fredrik Acosta
- fredrik&acosta.se
-26272
- SALICRU
- Antoni Triado
- atriado&salicru.com
-26273
- Ventia Pty Limited
- Dario Scopesi
- info&desknow.com
-26274
- Digital Ideas Pty Ltd
- Ian Holland
- networkadmin&digitalideas.com.au
-26275
- Indigo Stone International Ltd
- Lindsay Braine
- lbraine&indigostone.com
-26276
- Heinrich Nirschl
- Heinrich Nirschl
- heinrich.nirschl&gmail.com
-26277
- Voronezh State University
- Andy Igoshin
- noc&vsu.ru
-26278
- Zarafa
- Steve Hardy
- info&zarafa.com
-26279
- Envision Technology Partners, Inc.
- Ray Seggelke
- rseggelke&envisiontechnology.com
-26280
- Adara Networks
- Robert Guillen
- rguillen&adaranet.com
-26281
- The EA Group
- Mark Neff
- markn&eagroup.on.ca
-26282
- FYI Corporation
- Bob Bronar
- bob.bronar&fyicorp.com
-26283
- Christoph Anderegg
- Christoph Anderegg
- ca256&gmx.net
-26284
- Ochsner Health System
- Mark Neill
- mneill&ochsner.org
-26285
- S. I. Tech, Inc.
- Ramesh D. Sheth
- ramesh&sitech-bitdriver.com
-26286
- Alfree Systems
- Maxim Bodyansky
- info&alfree.ru
-26287
- Exelmind Ltd.
- Lahav Savir
- lahavs&exelmind.com
-26288
- Kavaro Oy
- Ossi Väänänen
- ossi&kavaro.com
-26289
- VIMPLICITY Ltd.
- Gideon Feldman
- gidi&vimplicity.com
-26290
- Exatel S.A.
- Peter Debski
- piotr.debski&exatel.pl
-26291
- The Revolution Group Pty Ltd
- Dirk Bermingham
- dirk&revolutionit.com
-26292
- TechSyndicate
- Anthony Brown
- administrator1&nyc.rr.com
-26293
- Interaktivo Risinajumu Grupa, SIA
- Ingemars Asmanis
- ingemars&irgrupa.lv
-26294
- Endurance International Group
- Mark Moseley
- mmoseley&enduranceinternational.com
-26295
- Cyberlog Ltd
- Dennis Fedak
- dfedak&cyberlog.net
-26296
- Resource SiteSeeing Ltda.
- Fernando Gago Gomes
- fgomes&siteseeing.com.br
-26297
- Wireless Broadband Services Pty. Ltd.
- Shannon Wynter
- oid.admin&wbs.net.au
-26298
- Electionmall Technologies Inc.
- Manpreet Singh Nehra
- manpreet&electionmall.com
-26299
- EasternGraphics GmbH
- Max Bidlingmaier
- Max.Bidlingmaier&EasternGraphics.com
-26300
- Genera Oy
- Timo Arpola
- timo.arpola&genera.fi
-26301
- Texas Digital Systems, Inc
- Kevin George
- kgeorge&txdigital.com
-26302
- Blonder Tongue Laboratories, Inc.
- Cliff Fox
- cfox&blondertongue.com
-26303
- CarrierIQ Inc.
- Ivan Aladjoff
- ivan&carrieriq.com
-26304
- SNMPinfo
- David T. Perkins
- dperkins&snmpinfo.com
-26305
- Sykora Technology Inc.
- Boleslav Sykora
- boles&sykora.ca
-26306
- Opportunity Solutions A/S
- Anton Chr. Lauridsen
- alauridsen&opportunity.dk
-26307
- Skyguide - swiss air navigation services ltd.
- Patrick Flach
- patrick.flach&skyguide.ch
-26308
- Saab TransponderTech AB
- Henrik Toorvald
- henrik.toorvald&transpondertech.se
-26309
- Draksoft Soluzioni Informatiche S.a.s.
- Marco Carcano
- mcarcano&draksoft.com
-26310
- Departamento Municipal de Eletricidade de Poços de Caldas
- Anderson Stano
- adurelli&dme-pc.com.br
-26311
- Andreas Kinzler
- Andreas Kinzler
- akinzler&gmx.de
-26312
- Genius Company
- BALTAZAR François
- baltazaf&3il.fr
-26313
- Mark Roscrow
- Mark Roscrow
- mib&roscrow.net
-26314
- Xcontrol GmbH
- Hendrik Krüger
- hendrik&xcontrol.de
-26315
- Asian Access Networks Pte Ltd.
- Malcolm Chng
- support&asianaccessnet.com
-26316
- Pacific States Marine Fisheries Commission
- Todd Kaehler
- kaehler&psmfc.org
-26317
- First Choice Health Network
- Greg Brown
- gbrown&fchn.com
-26318
- Condor Networks
- Ramanathan Sanjeevan
- rams&condornetworks.com
-26319
- HomeCity Net Ltd.
- Spark Tsai
- spark.tsai&chiahsin.com.tw
-26320
- Project Team s.r.l.
- Daniele Asmonti
- info&prjteam.com
-26321
- Christian Tena
- Philip Christian
- philip.christian&christiantena.co.uk
-26322
- Tokyo University of Marine Science and Technology
- Harunori Tokunaga
- tokunaga&e.kaiyodai.ac.jp
-26323
- Informatica Productiva Conocimiento y Tecnologia, S.L.
- Maximo Calero Sanchez
- tecnologia&punto-ip.com
-26324
- Wurm GmbH & Co. KG
- Karsten Vossberg
- oid.admin&wurm-systeme.com
-26325
- GT London Ltd
- David Holroyd
- david.holroyd&goodtechnology.com
-26326
- ADTECH AG
- Christian Schroeder
- schroeder&adtech.de
-26327
- Kassenzahnärztliche Vereinigung Westfalen-Lippe
- Herr Evelt
- Michael.Evelt&zahnaerzte-wl.de
-26328
- Blackfoot Telephone Cooperative, Inc.
- Navan Carson / Internet Administrator
- ncarson&blackfoot.com
-26329
- Simpler-Webb, Inc.
- Andy Webb
- adea&swinc.com
-26330
- South Shore Hopsital
- Daniel MacNeil
- daniel_macneil&sshosp.org
-26331
- Trilink,Inc
- koichiro kimoto
- kimoto&trilink.jp
-26332
- TechnoKad
- Nikolay Ouchilikhin
- nix&TechnoKad.ru
-26333
- Brose Fahrzeugteile
- Christian Gueckel
- christian.gueckel&brose.com
-26334
- MEGATRON DATA SERVICES GMBH
- Alfred Marx
- alfred.marx&megatrondataservices.com
-26335
- DiViNetworks Ltd. (formerly 'IPortent Ltd.')
- Yair Shapira
- yair&divinetworks.com
-26336
- Pawel Kraszewski
- Pawel Kraszewski
- pawel&kraszewscy.net
-26337
- Paper Management Services Ltd.
- Richard Selvey
- richard_selvey&paper-man.co.uk
-26338
- IWICS Inc.
- David W. Mendes
- david.mendes&iwics.net
-26339
- Risk Laboratories, LLC
- Matt Smith
- msmith&risklabs.com
-26340
- SKBrasil
- Hans Marcus Krüger
- hans&skbrasil.net
-26341
- Madein.hu Bt.
- Mihaly Zachar
- zmihaly&madein.hu
-26342
- Fujitsu System Solutions Ltd.
- SATOH Shinobu
- satoh_shinobu&jp.fujitsu.com
-26343
- Grainmustards Co.,Ltd.
- Junichi Yoshida
- jyoshida&grainmustards.com
-26344
- Advanced Institute of Industrial Technology
- Hideki Murakoshi
- hm&aiit.ac.jp
-26345
- PAK ELECTRICAL APPLIANCE CO., LTD
- zhou zhi cong
- congli.cn&gmail.com
-26346
- All-Powerful Dave
- David Gee
- oid&allpowerfuldave.com
-26347
- acens technologies S.A.
- Bea Diéguez
- beatriz.dieguez&acens.com
-26348
- Maenken Systems
- Bjoern Maenken
- maenken&maenken.de
-26349
- Shyam Telecom Ltd.
- Rajeev Jha
- rajeev.jha&shyamtelecom.com
-26350
- Beijing Agree Technology Development Ltd.
- Shammy Chen
- chen.xm&agree.com.cn
-26351
- NILES Werkzeugmaschinen GmbH
- Kurt Kaune
- kurt.kaune&kapp-niles.com
-26352
- Power Systems LLC
- Shawn Moore
- SMoore&PowersystemsLLC.com
-26353
- Blue Lake Rancheria
- Scott Joachim
- scott.joachim&bluelakerancheria-nsn.gov
-26354
- Software Concepts, Inc.
- Andrew Beck
- IANA&SoftwareConceptsInc.com
-26355
- Fiplex Communications Inc.
- Florencia de Goycoechea
- florencia&fiplex.com
-26356
- Vector Technology
- José Orlando Castro
- orlando&vector-technology.com
-26357
- Commonwealth Service Delivery Agency (Centrelink Australia)
- Jennifer Margrison
- comms.support&centrelink.gov.au
-26358
- XM Asia Pacific Pte Ltd
- Sito Tuck Seng
- tuckseng.sito&xm-asia.com
-26359
- Xpressent, Inc.
- Saroop Mathur
- saroop&xpressent.com
-26360
- Woodward Ventures
- Richard M. Woodward
- ldap-schema&woodward-ventures.com
-26361
- Solution Innovators, LLC
- Jay van Achterberg
- regs&solutioninnovators.com
-26362
- Wenzel Elektronik GmbH
- Michael Roeper
- m.roeper&wenzel-elektronik.de
-26363
- Woodhead
- Jerome Combarieu
- jcombarieu&applicom-int.com
-26364
- EID - Empresa de Investigação e Desenvolvimento de Electrónica,
-S.A
- Bento Rações
- bento&eid.pt
-26365
- Critical Links SA
- Antonio Alves
- aalves&critical-links.com
-26366
- Amano Cincinnati
- Vijay Parikh
- vparikh&amano.com
-26367
- Nondeterministic Information Systems
- Alastair Hewitt
- webmaster&nodem.info
-26368
- Micko Group, Inc.
- Dragan Mickovic
- dmickovic&gmail.com
-26369
- Mattig-Schauer Ges.m.b.H
- Johannes Bauer
- Office&mattig-schauer.at
-26370
- Bend Cable Communications, LLC
- Wade Holmes
- dwholmes&bendbroadband.net
-26371
- School of Oriental and African Studies
- Mark Douglas
- postmaster&soas.ac.uk
-26372
- Stadig Technologies, LLC
- Paul Stadig
- paul&stadigtech.com
-26373
- GRI e.V
- Mr. Torsten Geile
- geile&oekonet-bremen.de
-26374
- University of Illinois
- Joseph Barnes
- security&illinois.edu
-26375
- Ockan
- Roberto Costa Filho
- rtcosta&gmail.com
-26376
- Tribunal Regional Eleitoral de Santa Catarina
- Luiz Angelo Daros de Luca
- luizluca&tre-sc.gov.br
-26377
- ACC Ingenierie et Maintenance
- Dominique Chateau-Annaud
- dominique.chateau&accim.com
-26378
- PrettyBit Software Oy
- Pauli Porkka
- postmaster&prettybit.fi
-26379
- I.E.P.A.L.A.
- Fco. Javier Picado Ladrón de Guevara
- informatica&iepala.es
-26380
- buaa608
- GengYawei
- geng_yawei&yahoo.com
-26381
- lwIP - A Lightweight TCP/IP stack
- Christiaan Simons
- cc_simons&yahoo.com
-26382
- Sis'ta Salsa, LLC
- Deana Wright
- sistasalsa&comcast.net
-26383
- Pay By Touch
- Yoni Livshiz
- yoni.livshiz&paybytouch.com
-26384
- GANDI
- Stéphane Enten
- noc+iana&gandi.net
-26385
- BUFETE CONSULTOR DE MEXICO, S.A. DE C.V.
- FELIPE BAROUSSE
- fbarousse&piensa.com
-26386
- Koerber Enterprise
- Mathias Körber
- enterprise&koerber.org
-26387
- John Cantu
- John Cantu
- john.cantu&gmail.com
-26388
- Profil GmbH
- Dr. R. Hilkenbach
- rh&profil-hannover.de
-26389
- Factory Mutual Insurance Company
- Roney R. Brunetti
- roney.brunetti&fmglobal.com
-26390
- Woven Systems Inc.
- James Liao
- jliao&wovensystems.com
-26391
- Kelyan Lab S.p.A.
- Federico Gianni
- f.gianni&kelyanlab.it
-26392
- NetClarity
- Michael Su
- msu&netclarity.net
-26393
- CallCopy, Inc.
- Tarne Tassniyom
- tarne&callcopy.com
-26394
- Emaze Networks S.p.A.
- Alessandro Budai
- oid&emaze.net
-26395
- American Telecommunication Inc.
- Claudio Latorre
- clatorre&amtelusa.com
-26396
- Rising Edge Development LLC
- Kerry Woodbury
- info&risingedgedev.com
-26397
- Oklahoma State University
- Jason Stevens
- jason.stevens&okstate.edu
-26398
- WasaLab Oy
- Juhani Puska
- wasalab&wasalab.com
-26399
- Emencia SARL
- Roger Fernandez
- roger&emencia.com
-26400
- Bundesnetzagentur
- Alexander Pozsgai
- Alexander.Pozsgai&BNetzA.De
-26401
- Alarmtech Polska sp. z o.o.
- Jerzy Tlaga
- jerzy.tlaga&alarmtech.pl
-26402
- ELETRONIQUE PLUS SA
- OLIVIER UMUTONI NICOLAS PATRICK
- umutoni680&hotmail.com
-26403
- IMATech2.net
- Elizabeth Kay Lucas
- ekl&sprintpcs.com
-26404
- SupplyScape Corporation
- Virgil Goins
- dgoins&supplyscape.com
-26405
- The MetalFish Consultancy Ltd.
- Nick Carter
- metalfish&btopenworld.com
-26406
- CyberDefenses, Inc.
- Phil M. Dolbow
- phil.dolbow&cyberdefenses.com
-26407
- Tiger Communications Plc
- peter garner
- peterg&tigercomms.com
-26408
- WolfVision GmbH
- Manfred Schmid
- manfred.schmid&wolfvision.com
-26409
- ERecruiters Ltd.
- Matthew King
- dirmaster&time-net.co.uk
-26410
- Pakamera
- Karol Wozniak
- snmplab&pakamera.com
-26411
- Vocality International Ltd
- Martin Saunders
- snmp_vocality&hotmail.co.uk
-26412
- Alexandr Kara
- Alexandr Kara
- Alexandr.Kara&seznam.cz
-26413
- Golden West Internet Solutions
- Jim Forster
- jforster&rapidnet.com
-26414
- Fenri
- Jan Podany
- jpodany&fenri.com
-26415
- J. & W. Seligman & Co. Incorporated
- William R. Benz
- seligmandomain&jwseligman.com
-26416
- MetaCarta, Inc.
- Greg Harris
- gharris&metacarta.com
-26417
- Transcepta LLC
- David Mannion
- dmannion&transcepta.com
-26418
- Netsafe Information Technology Ltd.
- Yang Shen
- shenyang&netsafe.com.cn
-26419
- transtec AG
- Jörg Ruberg
- joerg.ruberg&transtec.de
-26420
- clan informatik AG
- Marco Mattle
- marco.mattle&claninfo.ch
-26421
- Daughters of Charity Services of New Orleans
- David Ward
- warddj1&cox.net
-26422
- IABG mbH
- Roland Krausser
- krausser&iabg.de
-26423
- Tlantic SI
- Jose Fernando Possebon Junior
- possebon&tlantic.com.br
-26424
- syscare.net
- Maciej Matysiak
- contact-iana.org-mibassign&syscare.net
-26425
- Layered Technologies
- Michael Hale
- mhale&layeredtech.com
-26426
- Forget About IT Ltd.
- Marco van Beek
- mvanbeek&forgetaboutit.net
-26427
- Kansas Department of Health and Environment - State of Kansas
- Norma Jean Schaefer
- njschaefer&kdhe.state.ks.us
-26428
- Bedford Hospital NHS Trust
- Oliver Chandler
- oliver.chandler&bedfordhospital.nhs.uk
-26429
- Xinwei Telecom Technology,Inc.
- Zhakai Yu
- yuzhakai&bj.xinwei.com.cn
-26430
- E Technologies, Inc
- Carilda A Thomas
- cat&the-cat.com
-26431
- Thai National Grid Center
- Sugree Phatanapherom
- sugree_ph&thaigrid.or.th
-26432
- Center of Information technologies of Tatarstan Republic
- Almaz Valiullin
- almaz&mcrt.ru
-26433
- Calyx Internet
- Alexander Grendel
- info&calyx.nl
-26434
- Touch Sense Inc
- Rodolfo Acuna
- tsense.rodolfo&gmail.com
-26435
- Noam Communications
- Sami Lehtimäki
- info&noam.fi
-26436
- HSH Soft- und Hardware Vertriebs GmbH
- Marko Storll
- marko.storll&hsh-berlin.com
-26437
- Universität zu Köln
- Sebastian Hagedorn
- Hagedorn&uni-koeln.de
-26438
- S.V. Paradoks
- H.T. van Veen
- info&paradoks.utwente.nl
-26439
- SFERIA SA
- Wojciech Rolecki
- Wojciech.Rolecki&sferia.pl
-26440
- BliXem Internet Services B.V.
- Jeroen Boonstra
- jeroen&blixem.nl
-26441
- Technikon Forschungs- und Planungsgesellschaft mbH (Ltd.)
- Dr. Klaus-Michael KOCH
- coordination&opentc.net
-26442
- PROLIVAL
- Fabien Marteau
- fmarteau&gmail.com
-26443
- Cinetix Srl
- Annalisa Giusto
- annalisa.giusto&cinetix.it
-26444
- Coroware, Inc
- Martin R. Calsyn
- mcalsyn&coroware.com
-26445
- Special Systems and Software, Inc.
- Jozef Hanus
- jozef.hanus&special.sk
-26446
- Ouvi Divulgacao e Marketing em Celulares Ltda.
- Thomas Woillan
- thomas&ouvi.com.br
-26447
- Compro Computer Services, Inc
- Curtis Rubel
- crubel&compro.net
-26448
- Variomedia AG
- Marten Lehmann
- lehmann&variomedia.de
-26449
- Okto Tecnologia e Serviços de Informática Ltda.
- Cecilia de Paula e Maia
- cmaia&okto.com.br
-26450
- Hubbell Inc.
- Shadi AbuGhazaleh
- sabughaz&hubbell-premise.com
-26451
- Esencis
- Jiri Nemecek
- info&esencis.cz
-26452
- HiTB
- guo yingshou
- guoyingshou&hitb.com.cn
-26453
- VJ Systems
- Vikash Ramanlal
- ramanlalv&paradise.net.nz
-26454
- wealink.com limited Inc.
- Wenming Mao
- wmao&staff.wealink.com
-26455
- Secretariat of Information Technology, Government of Haryana
- Amit Mittal
- amit&hry.nic.in
-26456
- Budapest University of Technology and Economics (BME)
- Peter Popovics
- pop&eik.bme.hu
-26457
- Meditec GmbH
- Torsten Rottmann
- trott&meditec-gmbh.com
-26458
- tetrade inc.
- Pascal Buchbinder
- pascal.buchbinder&tetrade.ch
-26459
- wavesyscom co.,Ltd
- Jea-Yong Park
- wavesyscom&wavesyscom.com
-26460
- Alcor Communications
- Chris Down
- chris.down&alcor.co.uk
-26461
- Knorr & Partner Ingenieure
- Michael Loos
- michael.loos&kpconsult.de
-26462
- LANCK Telecom (Express TeleService Corp.)
- Konstantin Chervyakov
- k.chervyakov&lancktele.com
-26463
- Wyless plc
- Martin Parr
- global_ti&wyless.com
-26464
- Dundalk Institute of Technology
- Ruairi Hickey (Computer Services)
- compserv&dkit.ie
-26465
- i-together Ltd
- Luke Razzell
- weaverluke&gmail.com
-26466
- Leissner Data AB
- Pontus Löfgren
- registry&leissner.se
-26467
- HANZO S/A
- Walter Bertot
- Admin&HANZO.com.br
-26468
- I.T. Management and Consultation Services (ITMACS)
- Dale Conway
- dale&bmcc.nf.ca
-26469
- AirClic Inc.
- Andy Monroe
- snmp&airclic.com
-26470
- Media Movel Serviços Interativos LTDA
- Ricardo Ferro
- rferro&mediamovel.com.br
-26471
- International Teams
- Dann Farquhar
- dann.farquhar&iteams.org
-26472
- Nordic Optical Telescope Scientific Association
- Ricardo Crdenes
- rcardenes&not.iac.es
-26473
- Digiplug
- Béatrice Pipet
- beatrice.pipet&digiplug.com
-26474
- Midwest Connections Inc.
- Zane C. Bowers
- zanecb&midwest-connections.com
-26475
- GTN77
- Eric Geyres
- e.geyres.gtn77&wanadoo.fr
-26476
- Advanced Devices S.p.A.
- Eraldo Corti
- eraldo&tin.it
-26477
- Uwe Perl
- Uwe Perl
- uwe.perl&gmx.de
-26478
- SI3SI
- Laurence Wronski
- lwronski&si3si.com
-26479
- Schenck Process GmbH
- Wolfgang Kaiser
- w.kaiser&schenckprocess.com
-26480
- infler.de
- Patrick Blitz
- pb&fulgor.org
-26481
- Zane C. Bowers
- Zane C. Bowers
- vvelox&vvelox.net
-26482
- Rossonet S.r.l.
- Andrea Ambrosini
- andrea.ambrosini&rossonet.com
-26483
- JW NetSource, LLC
- Jeff Whitman
- jwhitman&jwnetsource.com
-26484
- Cisco Systems, Inc. (formerly 'Arch Rock Corporation')
- Philip Buonadonna
- pbuonado&cisco.com
-26485
- Cryoserver Ltd
- Chris Jolly
- chris.jolly&cryoserver.com
-26486
- The Stanley Works
- STS-NetworkTelco
- STS-NetworkTelco&stanleyworks.com
-26487
- WebSpace-Forum
- Thomas Wendt
- hostmaster&webspace-forum.de
-26488
- Ender Informatics GmbH
- Ender Josef
- josef.ender&ender-informatics.ch
-26489
- IntelliData Systems Ltd
- Mike King
- snmp&intellidatasystems.com
-26490
- Beverli.NET
- Bjarke Lindberg
- bvli&beverli.net
-26491
- Metzler Tech Ltd
- Thomas Metzler
- thomas&metzler.org
-26492
- Dongyang Telecom co., LTD
- Eok One, Lee
- eeone&dyt.co.kr
-26493
- Urzad Marszalkowski Wojewodztwa Malopolskiego
- Mariusz Kowalik
- mariusz.kowalik&umwm.pl
-26494
- CSJGlobal. Inc.
- Seong-Bok Lee
- sblee&csjcorp.com
-26495
- Scope
- Thomas Metzler
- thomas.metzler&scope.org.uk
-26496
- ZipLip, Inc.
- Stephen Chen
- snmp&ziplip.net
-26497
- BitBin LLC
- David Varieur
- bitbin&gmail.com
-26498
- DART Industries Inc
- John Stimpson
- johnstimpson&tupperware.com
-26499
- Memo Serviços Interativos S.A.
- Luiz Rocha
- luizrocha&meflurbrasil.com.br
-26500
- Carl Zeiss AG
- Thomas Prim
- prim&zeiss.de
-26501
- Pari Medical Holding GmbH
- Frank Schmidt
- f.schmidt&pari.de
-26502
- Emerging Information Systems Inc.
- Alvin Lee
- Alvin.Lee&naviplan.com
-26503
- University of Applied Science Osnabrück
- Dipl.-Ing. Ralf Neugebauer
- R.Neugebauer&et.fh-osnabrueck.de
-26504
- A3IP
- Cyril HAENEL
- cyril.haenel&a3ip.com
-26505
- Zenexity
- M. Leonard WEST
- lwe&zenexity.fr
-26506
- IT-Ideas
- Joerg Frahm
- ldap&it-ideas.de
-26507
- TJ NET Spa
- Pietro Marchionni
- pietro.marchionni&tj.net
-26508
- Electronic Forge
- Adrian Buxton
- adrian&electronicforge.net
-26509
- Digital Electronics Corporation
- Keiji Tani
- keiji.tani&mail.digital.co.jp
-26510
- Like Minded People Ltd
- Jason Woodruff
- jason&likemindedgroup.com
-26511
- TAC Bilgisayar Hizmetleri Ic ve Dis Ticaret A.S.
- Yalcin Gerek
- yalcin.gerek&tacas.com.tr
-26512
- GEEK Bilgisayar Muhendislik ve Sanayi LTD STI
- Aykut KARA
- akara&geek.com.tr
-26513
- Hellenic Academic and Research Institutions CertificationAuthority
- Dimitris Zacharopoulos
- jimmy&it.auth.gr
-26514
- Suntel Communications
- Peter Nixon
- peter+iana&suntel.com.tr
-26515
- Tepe Teknoloji
- Aydyn BAKIR
- abakir&tepeteknoloji.com.tr
-26516
- Innovation Designs Ltd.
- Chris Stavrogiannis
- chriss&noc.uoa.gr
-26517
- BESECURE
- Andreas Lalos
- a.lalos&besecure.gr
-26518
- MEG Elektronik Ltd.
- M. Erdinc Gogus
- erdinc&meg.com.tr
-26519
- GEEK Bilgi Teknolojileri LTD STI
- Aykut KARA
- akara&geek.com.tr
-26520
- Pierbridge Limited
- Mark Newburn
- mark.newburn&pierbridge.com
-26521
- Pannasoft Technologies
- Janaka Low
- janaka&pannasoft.com
-26522
- MDG InfoSec
- Ray Flinkerbusch
- iana.org&mdg4infosec.nl
-26523
- American Qualified Plans, Inc.
- Eric Storjohann
- eric.storjohann&aqp.com
-26524
- lyman & associates
- john r. lyman
- j.r.lyman&ezdev.com
-26525
- Golden Dynamic Enterprises Ltd.
- John Ko
- net.mgt&gdeasia.com
-26526
- eTouch Systems Corp
- Ajay Upadhyaya
- aupadhyaya&etouch.net
-26527
- Ircona
- Tim New
- tim.new&ircona.com
-26528
- Kirche fur Oberberg e.V.
- Johannes Rueschel
- hhhannes&web.de
-26529
- CNRST
- Sami Ait Ali Oulahcen
- s.aitalioulahcen&cnrst.ma
-26530
- Telemetry BTT
- Kotov Oleg
- kotovoe&btt.ru
-26531
- Kodak Imaging Network, Inc
- Thomas A. Bell
- tbell&kodakgallery.com
-26532
- eB Technologies (M) Sdn. Bhd.
- Yulianto Widjasena
- yulianto&eb.net.my
-26533
- Nurun inc.
- Carl de Billy
- carl.debilly&nurun.com
-26534
- think project! International (formerly 'AEC/communications GmbH')
- Claus Koch
- claus.koch&thinkproject.com
-26535
- OMNEX Control Systems ULC
- Doru George Botez
- dbotez&omnexcontrols.com
-26536
- Ringland Consulting LLC
- James Ringland
- james&ringland.net
-26537
- Riorey Inc.
- Joe Chisolm
- jchisolm&riorey.com
-26538
- Duaxes Corporation
- Genta Iha
- iha&duaxes.co.jp, kuniaki&bugest.net
-26539
- Ionoscape Associates
- Paul Sapp
- paul&ionoscape.com
-26540
- cudeso.be
- Koen Van Impe
- info&cudeso.be
-26541
- matrix technology AG
- Ralf Hornik
- ralf.hornik&matrix.ag
-26542
- JHC Plc
- Andrew Love
- andrew.love&jhc.co.uk
-26543
- Blade Network Technologies, Inc.
- Cynthia Gabriel
- cynthia.gabriel&bladenetwork.net
-26544
- AVTOVAZ JSC
- Alexander Anokhin
- ava&vaz.ru
-26545
- SalesForce Australia (Salmat)
- Mel Boyce
- mel&salesforce.com.au
-26546
- CP Secure Inc
- Shuang Ji
- shuang_ji&cpsecure.com
-26547
- Nord Data A/S
- Allan Baf
- ndaba&norddata.dk
-26548
- Prévoir Vie Portugal
- João Gonçalves
- joao.goncalves&prevoir.pt
-26549
- Amper
- Manuel Cano
- mcano&amper.es
-26550
- BluePex do Brasil Tecnologia da Informação Ltda - ME
- Sergio Lima
- sergio&bluepex.com
-26551
- Gordon Kapes, Inc.
- Joseph Urbanczyk
- joe_u&gkinc.com
-26552
- Congreso de los Diputados
- MIguel Angel Gonzalo Rozas
- webmaster&congreso.es
-26553
- CTI Networks, Inc.
- CTI Networks Admin
- admin&ctinetworks.com
-26554
- ThingMagic, Inc.
- Margaret Wasserman
- margaret&thingmagic.com
-26555
- NTT IT Co., Ltd.
- Akihiro Hase
- info-ins&ntt-it.co.jp
-26556
- Ethernet Direct Corporation
- Fengching.Chou
- jacky&ethernetdirect-tw.com
-26557
- Stractus
- Wellerson Amarante
- wellerson&stractus.com.br
-26558
- Associated Network Partners, Inc.
- Todd Davis
- tdavis&anpisolutions.com
-26559
- nyukid networks
- Jeffrey Barea
- nyukid&gmail.com
-26560
- Jünger Audio-Studiotechnik GmbH
- Hans Hübner
- hans.huebner&junger-audio.com
-26561
- Zynetix Ltd
- Andy Odgers
- andy.odgers&zynetix.com
-26562
- International Telecommunication Union
- Frederic Faugier
- hostmaster&itu.int
-26563
- TRIADO
- Antoni Triado
- toni&triado.com
-26564
- Emerj Inc
- Andy Pletch
- andy&e-merj.com
-26565
- Studio Technologies, Inc.
- Randy Kelso
- rkelso&studio-tech.com
-26566
- Global Knowledge
- Ryan Leathers
- ryan.leathers&globalknowledge.com
-26567
- Obsidian Consulting Group Pty. Ltd.
- Robert Davidson
- rdavidson&obsidian.com.au
-26568
- Mega Solution Inc.
- Tadashi Takahashi
- takahashi&megasolution.jp
-26569
- Idyria SARL
- Richard Leys
- rleys&idyria.com
-26570
- Cleartone Video Ltd
- Dave Turner
- dave.turner&cleartone-video.com
-26571
- DATANIN LTD
- Nir Aran
- trust&datanin.com
-26572
- Optimal IdM Software, LLC
- John Maring
- JohnMaring&OptimalIdM.com
-26573
- Dawn VME Products
- Charles Linquist
- clinquist&dawnvme.com
-26574
- Dynamics Research Corporation
- Howard S. Clayman
- HClayman&drc.com
-26575
- KB Toys, Inc.
- Jeremy Warren
- jwarren&kbtoys.com
-26576
- Ian Cairns
- Ian Cairns
- ian&iancairns.org
-26577
- Kaufcom GmbH
- Donati Roberto
- info&kauf.com
-26578
- Credito Emiliano S.p.A
- Chiriatti Stefano
- schiriatti&credem.it
-26579
- J. Craig Venter Institute
- Rajeev K Karamchedu
- unixsupport&tigr.org
-26580
- Kaiser Permanente
- Marc S. Hedish
- marc.s.hedish&kp.org
-26581
- Rustenbach.de
- Toralf Rustenbach
- toralf&rustenbach.de
-26582
- Clerity Solutions, Inc.
- Randy Holbert
- randy.holbert&clerity.com
-26583
- Ativa Soluções Tecnológicas Ltda
- Danton Ferreira Vellenich
- danton&ativasolucoes.com.br
-26584
- Brooman.com, LLC
- Andrew Brooman
- andrew&brooman.com
-26585
- Reactrix Systems, Inc.
- Rob Goodman
- rgoodman&reactrix.com
-26586
- Fremnet
- Shannon Wynter
- oid.admin&fremnet.net.au
-26587
- computer betting company gmbh
- Thomas Gusenleitner
- Thomas.Gusenleitner&com-bet.com
-26588
- Nexcom Systems
- Thomas Leseney
- thomas.leseney&nexcom.fr
-26589
- CT Company Ltd.
- Leonid Khvostov
- khvostov&mtu-net.ru
-26590
- CLAIM GmbH & Co. KG
- C. Barth
- info&claim-team.de
-26591
- Kynetia Networks S.L.
- Jose M Corsino
- jose.corsino&kynetia.com
-26592
- Polatis Ltd
- Adam Hughes
- adam.hughes&polatis.com
-26593
- littlemail
- Martin Schwartz
- hostmaster&mail.littlemail.de
-26594
- ASOIU departament of NTUU "KPI"
- Oleksiy V. Khilkevich
- grim&asu.ntu-kpi.kiev.ua
-26595
- Connect Tech Inc.
- David Worthen
- djw&connecttech.com
-26596
- S-INFORMATION TECHNOLOGY CO., LTD.
- In Kweon Yu
- ikyou&swpt.net
-26597
- Comerica Bank
- Walter Seiler
- mike.seiler&sanyuhu.com
-26598
- SUMITOMO OSAKA CEMENT CO.,LTD.
- Katsuya Akizuki
- kakizuki&sits.soc.co.jp
-26599
- University of Glasgow
- Rowland Gilmour
- R.gilmour&compserv.gla.ac.uk
-26600
- China Xiamen Truetel Telecommunications Technologies Co.,Ltd.
- Wang Xiang
- wangx&truetel.com.cn
-26601
- Dunham-Bush Yantai Co. Ltd.
- Mu Bo
- mubo&dunham-bush.com.cn
-26602
- Raceme
- Christophe Boyanique
- mib&raceme.org
-26603
- GEDIM AG
- Dr. Martin H. Ludwig
- internetverwalter&gedim.de
-26604
- IMA GmbH
- Dr. Martin H. Ludwig
- internetverwalter&imagmbh.de
-26605
- PKB Integral
- Alexander Pravdin
- aledin&evpatoria.com.ua
-26606
- Vidactive, S.L.
- Alberto Villar
- alberto.villar&vidactive.com
-26607
- Isco International
- Gary Berger
- gary.berger&iscointl.com
-26608
- Wavelength Corporation, Inc.
- Network Operations Center
- noc&wavelengthmail.com
-26609
- Pentair, Inc
- Joe Licata
- Joe.Licata&pentair-ep.com
-26610
- Ultramain Systems Inc.
- Curt Wennekamp
- it&ultramain.com
-26611
- Exa Corporation
- James Chamberlain
- oidadmin&exa.com
-26612
- Kyoto Sangyo University
- Kohji Ozaki
- ozaki&cc.kyoto-su.ac.jp
-26613
- Audiomedia Ltd.
- Viorel Dehelean
- viorel.dehelean&audiomedia.ro
-26614
- Government of Republic of Srpska
- Darko Savic
- d.savic&vladars.net
-26615
- Noviforum Ltd., Software & Media
- Zvone Jagodic
- root&noviforum.si
-26616
- University Computing Centre - SRCE, University of Zagreb
- Ivan Maric
- ivan.maric&srce.hr
-26617
- Mobitel d.d.
- Saso Stor
- Saso.Stor&mobitel.si
-26618
- HighTech Passport, Ltd.
- Razvan Corneliu VILT
- razvan&htpassport.ro
-26619
- Private Higher education establishment Autononymous
-non-commercial organization Regional Finance and Economy
-Institute
- Vladimir Alexandrovich Goncharov
- admin&rfei.ru
-26620
- West University of Timisoara
- Marinel IORDAN
- miordan&rectorat.uvt.ro
-26621
- Technical University of Cluj-Napoca
- Cristian KLEIN
- cristi&net.utcluj.ro
-26622
- NJERS Communications
- Krunoslav Njers
- noc&njers.com
-26623
- Open Sense Solutions LLC
- Michael Pardee
- oid.iana.org&open-sense.com
-26624
- that's software Berlin
- Patrick Hoffmann
- p.hoffmann&berlin.de
-26625
- Sopris Surfers Inc.
- Ben Plimpton
- bplimpton&sopris.net
-26626
- cativa.net
- Oliver Meyer
- olm&cativa.net
-26627
- VIGOS AG
- Constantin Rack
- info&vigos.com
-26628
- BH Telecom dd Sarajevo
- Emir Fazlinovic
- emir.fazlinovic&bhtelecom.ba
-26629
- Rumati Computers CC
- Jesse Long
- jpl&unknown.za.net
-26630
- PBMS Solucoes Moveis em Informatica Ltda
- Altino Pavan
- altino&purebros.com
-26631
- Waterman Group plc
- Stuart Worrow
- s.d.worrow&waterman-group.co.uk
-26632
- Saunders Properties Pty Ltd
- Daniel Thoroughgood
- Daniel.Thoroughgood&staff.tsninternet.com.au
-26633
- Embedded Internet Solutions, Inc.
- Steven Wu
- ithaha&ipanel.cn
-26634
- BigTribe Corporation
- Daniel Greening
- greening&bigtribe.com
-26635
- Squid Consulting & Integration
- Wai-Sun Chia
- waisun&sqci.biz
-26636
- Dexon Software Inc.
- Ricardo A. Ortiz
- info&dexon.us
-26637
- OMB Sistemas Electrónicos S.A.
- JL. Rueda
- investigacion&omb.com
-26638
- Studio Hamburg Media Consult International GmbH
- Nils Decker
- n.decker&mci-broadcast.com
-26639
- The Schneider Family Tree
- Rik Schneider
- oid&deranged.schneider.org
-26640
- InduSoft Inc.
- Lourenco Teodoro
- info&indusoft.com
-26641
- Yellowbrix
- Rik Schneider
- rschneider&yellowbrix.com
-26642
- Schoelzel - IT Consulting
- Walter Schoelzel
- info&schoelzel-itconsulting.de
-26643
- XL Vision Group
- Gustavo Matsunaga
- matsunaga&xlvision.com.ar
-26644
- International Working Group on Taxonomic Databases (TDWG)
- Ricardo Pereira
- ricardo&tdwg.org
-26645
- Inventive Designers n.v.
- Dieter Wachters
- dieter_wachters&inventivedesigners.com
-26646
- Institute for Parallel Processing, BAS
- Luchesar ILIEV
- oid-manager&acad.bg
-26647
- Banco Safra S/A
- Karen Higashi
- karen.higashi&safra.com.br
-26648
- Avago Technologies Limited
- Ray Frush
- ray.frush&avagotech.com
-26649
- Covidien (formerly 'Tyco Healthcare')
- Joseph W. Davis
- OID.Admin&covidien.com
-26650
- Pandora Media Inc.
- James Erickson
- jerickson&pandora.com
-26651
- Propus Informatica Ltda
- Marlon Dutra
- marlon&propus.com.br
-26652
- MELCO HOLDINGS INC.
- Masumitsu Hatta
- it&melcoinc.co.jp
-26653
- Shanghai Sunstar Telecom Co.ltd
- He,Lin
- helin&sunstar.com.cn
-26654
- NTT resonant Inc.
- hirofumi matsumoto
- fm_tech&nttr.co.jp
-26655
- Advantech Co., Ltd
- Thomas Chung
- thomas.chung&advantech.com.tw
-26656
- Allan Associates
- Edward Allan
- edward&allanassoc.com
-26657
- Ouba
- Denis Sacchet
- ouba&ouba.org
-26658
- Mikro Network Solutions
- Michael Brown
- topo2&pacbell.net
-26659
- Zero9 srl
- Simonluca Landi
- simonluca.landi&mplatform.it
-26660
- Robot Bt.
- Soós László
- sooslaca&robot.hu
-26661
- OpenPanel V.O.F.
- Peter van Dijk
- registries&panelsix.com
-26662
- Alpha Company
- Dmitriy Ermolin
- ermolin_d&alpha-comp.ru
-26663
- Solana Networks Inc.
- Don Bennett
- dbennett&solananetworks.com
-26664
- Centralsoft.org
- Tom Adelstein
- tom.adelstein&gmail.com
-26665
- FaceToFace Software Ltd
- Chris McKay
- chris&defacto.com.au
-26666
- Assuria Limited
- Nick Connor
- nickc&assuria.com
-26667
- Epper & Kranz GbR
- Oliver Epper
- oliver&epper.de
-26668
- SixFamily.Net
- David Six
- david.six&sixfamily.net
-26669
- Sirius Corporation plc
- Duncan Gibb
- duncan.gibb&siriusit.co.uk
-26670
- NetEase.com, Inc.
- Chun Tian
- tianchun&corp.netease.com
-26671
- NetSpring, Inc.
- Takeshi Itoh
- admin&netspring.co.jp
-26672
- NANJING ZIJIN-PHOTEL COMMUNICATION EQUIPMENTS CO.,LTD
- Liu Li Ai
- lliai&tom.com
-26673
- Wyndeham Heron Ltd
- Michael Hales
- mikehales&wyndeham.co.uk
-26674
- Klerx EDV Beratung
- Martin Klerx
- Martin&klerx.de
-26675
- MessageLabs Ltd
- Duncan Ward
- infrastructure&messagelabs.com
-26676
- GSF SAS
- GUERIN CORINNE
- cguerin&gsf.fr
-26677
- Datactics Ltd.
- Andy Ferguson
- sysadmin&datactics.co.uk
-26678
- Canadian Space Agency
- Louis-Philippe Durocher
- Louis-Philippe.Durocher&space.gc.ca
-26679
- EMCom sp. z o.o.
- Jacek Drobiecki
- j.drobiecki&emcom.pl
-26680
- General Dynamics United Kingdom Limited
- Jonathan Hansford
- jonathan.hansford&generaldynamics.uk.com
-26681
- Phi Theta Kappa International Honor Society
- Larry Olin Horn
- ptkdis&ptk.org
-26682
- lohnet.org
- Larry Olin Horn
- hornlo&lohnet.org
-26683
- Vinci Consulting Corp
- Paul Vinciguerra
- pvinci&vinciguerra.com
-26684
- Comm/net Systems, Inc.
- Tom Osterman
- tosterman&commnetsystems.com
-26685
- FOSS MIBs
- Chris Jones
- jonesy&fossmibs.com
-26686
- Softjury GmbH
- Marcel Meckel
- mm&softjury.de
-26687
- LG Technology Inc.
- Lloyd Gilroy
- lgilroy&mac.com
-26688
- Sino-i Technology Ltd.
- Yali Ji
- jiyali&myce.net.cn
-26689
- CAT Telecom Public Company Limited
- Padet Praosri
- padet&thaipki.com
-26690
- PRETTL Produktions Holding GmbH
- Alexander Berger
- alexander.berger&prettl.com
-26691
- Reichert GmbH
- Timm Reichert
- tr&reichert-gmbh.com
-26692
- MOBITEL SA
- Jose Bourbon Ribeiro
- jose.bourbon&dedic.com.br
-26693
- AirPoint Co., Ltd.
- Sang-ho, Kim
- smartkim&airpoint.co.kr
-26694
- Digitals India
- D.K.Shukla
- dkshukla&digitalsindia.com
-26695
- Openlink Financial, Inc.
- Joseph Sera
- jsera&olf.com
-26696
- Marvell Semiconductor Inc.
- Keh-hoh Lii
- klii&marvell.com
-26697
- Arces Network, LLC
- Adrian Goins
- agoins&arces.net
-26698
- Net Project SRL
- Constantin Liviu Faciu
- liviu.faciu&net-project.ro
-26699
- Open Switch Software e Consultoria Ltda
- Eduardo Cruz
- eduardo&openswitch.com
-26700
- Vulcan Materials Company
- Daniel Smart
- dan.smart&vul.com
-26701
- Ocean Rock Corp.
- Raymundo W. Perez
- roskiy&paulwinston.com
-26702
- Wycliffe Bible Translators of Canada Inc
- Bill Cameron
- computer_canada&wycliffe.ca
-26703
- Pittsburgh Supercomputing Center
- James A. Marsteller
- jam&psc.edu
-26704
- Voice Provider Sweden AB
- Per Sautermeister
- per.sautermeister&voiceprovider.se
-26705
- Webbertek (Blunicel Consultoria em Informatica Ltda)
- Celso Kopp Webber
- celso&webbertek.com.br
-26706
- 4AM Lunch Inc.
- Brian Hechigner
- wonko&4amlunch.net
-26707
- Delphi Corp.
- Jim DeSantis
- jim.desantis&delphi.com
-26708
- Cerbercomm LTD
- Or Goshen
- oberon&cerbercomm.com
-26709
- LogicIQ Ltd
- Dr Jan Hruska
- jan.hruska&logiciq.com
-26710
- Elasis S.C.p.A.
- Francischetti Carmine
- francischetti&elasis.it
-26711
- Crolox B.V.
- Derk Gortemaker
- iana&crolox.nl
-26712
- Cutter Project Ltd
- Mike Banahan
- mike.banahan&cutterproject.co.uk
-26713
- Stella Doradus Ltd.
- Justin Collery
- justin&stelladoradus.com
-26714
- ERIS4 s.r.l.
- Stefano Antonelli
- stefano.antonelli&eris4.com
-26715
- Oberlandesgericht München - IT-Stelle d. Justiz
- Robert Steiner
- robert.steiner&olg-m.bayern.de
-26716
- Ganesh TEchnologies Ltd
- Dr Georg Mueller
- georg.mueller&ganesh.net
-26717
- Stroeer Out-of-Home Media AG
- Bellin Christian
- support&stroeer.de
-26718
- ELMA Kurtalj d.o.o.
- Dario Maljur
- dmaljur&elma.hr
-26719
- Baluna GmbH
- Konstantin Avdeev
- kavdeev&baluna.de
-26720
- Cressida Technology Ltd.
- M. Kanafchian
- info&cressida.info
-26721
- EAB GmbH Rhein/Main
- Hayo Volker Hasenfus
- hayo.hasenfus&eab-rhein-main.de
-26722
- S-Telecom (S-Fone)
- Nguyen Sinh Chuong
- chuongns&stelecom.com.vn
-26723
- KUME electric Co., Ltd.
- Kakehi Kozo
- oidadmin&kme.co.jp
-26724
- e-trees.Japan,Inc.
- Kunihiko Ohnaka
- ohnaka&e-trees.jp
-26725
- Eiraku Electric Co.,Ltd.
- Teruaki Onishi
- t-onishi&eiraku.com
-26726
- WireCache, Inc.
- Dave Rosenberg
- rose&wirecache.com
-26727
- Yakshavers Incorporated
- Robby Griffin
- oidadmin&yakshavers.net
-26728
- Transparency Software Inc.
- Michael Cartsonis
- michael.cartsonis&transparencysw.com
-26729
- Sagittar Broadband Communication Solutions
- Dr Stephen Michelson
- smichels&sagittar.com
-26730
- SICS AB
- Mikael Nehlsen
- staff&sics.se
-26731
- Software Libre de Venezuela 777, C.A.
- Wilmer Jaramillo Murcia
- wilmer&softwarelibre777.com
-26732
- COMNET Computer Netzwerke Gmbh
- Michael Bischinger
- bischinger&comnet.at
-26733
- RRD S.p.a.
- Christian Besler
- cbesler&rrd.tv
-26734
- CMYK Energy Software Limited
- Andrew Kay
- andrewjkay&gmail.com
-26735
- Dipl. Ing. T. Biel
- Thorsten Biel
- hostmaster&ing-biel.com
-26736
- Weyhmueller.net
- Oliver Weyhmüller
- oliver&weyhmueller.net
-26737
- Infostream Pty ltd
- Phil Manuel
- support&infostream.com.au
-26738
- BEA International FZE
- Purushottam Kaushik
- pkaushik&beainternational.com
-26739
- Hans Guentner GmbH
- Pacher Michael
- m.pacher&guentner.de
-26740
- Tein Technology S.A.
- Juan Bernabeu
- j.bernabeu&teintechnology.be
-26741
- Etin Systems Co.,Ltd.
- MyoungHo, Kim
- fantasy8&etinsys.com
-26742
- Astralogic cc
- Tony Bartok
- tony&alogic.co.za
-26743
- Lean, LLC
- John W Darby
- johnwinstondarby&gmail.com
-26744
- National Bankcard Services Inc
- Raymond Hausman
- rayh&nbs-inc.com
-26745
- obituariesonline.ca
- Dave Panter
- davepanter&shaw.ca
-26746
- HEBUS
- Antoine JEAN
- optibus&hebus.info
-26747
- GoRoam Ltd
- Andrew McCall
- andrew.mccall&goroam.net
-26748
- Print Fulfillment Services
- Jared Baldridge
- jbaldridge&printfulfillmentservices.com
-26749
- SL Power Electronics Corp
- Greg Wade
- greg.wade&slpower.com
-26750
- Access Integrated Technologies, Inc.
- Jeff Butkovsky
- jbutkovsky&accessitx.com
-26751
- Visual Sciences, LLC
- Akhbar Tajudeen
- akhbar&visualsciences.com
-26752
- Jamul Engineering
- Tom Dilatush
- tom&dilatush.com
-26753
- Mobile Greetings, Inc.
- Jason Dusek
- jd&mobilegreetings.com
-26754
- Asian Institute of Technology
- Agus Harianto
- harianto&ait.ac.th
-26755
- EyeLine Communications CIS LLC
- Pavel Karavanov
- kpv&eyelinecom.com
-26756
- MSE Matthies Softwareentwicklung GmbH
- Claus Matthies
- claus&matthies-six.de
-26757
- Sibinco LLC
- Pavel Karavanov
- kpv&sibinco.ru
-26758
- CECURITY.COM
- Bruno Ricci
- bruno.ricci&cecurity.com
-26759
- SHF Communication Technologies AG
- Sven Koop
- koop&shf.de
-26760
- 0x3f8.net
- Karsten Engelke
- iana&0x3f8.net
-26761
- Eszterhazy Karoly College
- Andras Harsaczki
- harsaczki&ektf.hu
-26762
- DDinformatica
- Andreas Ruge
- rugea&ddinformatica.nl
-26763
- Cestel S.A.
- José Luis Sirera
- jlsirera&cestel.es
-26764
- Novnet HB
- Jan Gustavsson
- pcpajas&gmail.com
-26765
- Universitaet Bielefeld, Fakultaet fuer Mathematik
- Holger Kaelberer
- root&math.uni-bielefeld.de
-26766
- .vantronix secure systems
- Mike Belopuhov
- support&vantronix.net
-26767
- Alcatel-Lucent TMC (formerly 'Alcatel SOC')
- Denis Poirier
- Denis.Poirier&alcatel-lucent.com
-26768
- Comune di Rimini
- Roberto Cremasco
- roberto.cremasco&comune.rimini.it
-26769
- United Technologies Corporation
- chris.leigh&utc.com
- chris.leigh&utc.com
-26770
- Virtutility Ltd
- Philip Hart
- network.manager&virtutility.com
-26771
- Versaterm Inc.
- Steve Underwood
- steve.underwood&versaterm.com
-26772
- The Royal Conservatoire
- Paul Mourus
- mous&koncon.nl
-26773
- Linde IT Services
- Sabrina Sommer
- sabrina.sommer&linde.com
-26774
- EFOTEK CO.,LTD.
- Anna lee
- anna&efotek.com
-26775
- B2BITS Corp.
- Alexander Rivkind
- air&btobits.com
-26776
- maintech GmbH
- Christian Daniel
- cd&maintech.de
-26777
- Declude, Inc.
- David Franco-Rocha
- dfranco&declude.com
-26778
- Nerdboy Services
- Ben Knight
- bkk&nerdboy.net.au
-26779
- PPW "ARAJ" Sp. z o.o.
- Karol Kopacz
- kkopacz&araj.pl
-26780
- GMx Technologies, Inc
- Sam Howard
- iana&gmxtechnologies.com
-26781
- Greg Cockerham
- Greg Cockerham
- greg.cockerham&gilbarco.com
-26782
- TRI-D Systems, Inc.
- Frank Cusack
- frank&tri-dsystems.com
-26783
- Tioga Project
- Sean Champ, Chief Administrator, Tioga Project
- gimmal&gmail.com
-26784
- Acromate, Inc.
- Eui-suk Cha
- escha&acromate.com
-26785
- University of Messina
- Fabrizio La Rosa
- fabrizio.larosa&unime.it
-26786
- Siet SD Mladost - Ynet
- Stefan Gula
- root&ynet.sk
-26787
- Sociedad de Tasación SA
- Marcelo González Würtz
- mgonzalez&st-tasacion.es
-26788
- AbiliSoft Ltd
- David Charles
- dave&abilisoft.com
-26789
- Webworks Sverige AB
- Uno Engborg
- uno&webworks.se
-26790
- Gilbarco Inc.
- Kenneth Ringeman
- ken.ringeman&gilbarco.com
-26791
- Thralling Penguin LLC
- Joseph Benden
- joe&thrallingpenguin.com
-26792
- Promptlink Communications, Inc.
- Anton Shtikhlaytner
- antonsh&promptlink.com
-26793
- Gawab
- Ahmed El Zein
- a.elzein&gawab.net
-26794
- Periodik Labs LLC
- Chris Hawk
- chris&periodiklabs.com
-26795
- Kemnetix Corporation
- P Becke
- pbecke&kemnetix.com
-26796
- Meitai technology Co.,Ltd
- Sanxi Hu
- husanxi2005&163.com
-26797
- Asankya Networks, Inc.
- Scott Ryan
- scott&asankya.com
-26798
- Hippo, spol. s r. o.
- Petr Chupik
- chupik&hippo.cz
-26799
- Rotal.com Ltd.
- Gil Michlin
- gilm&rotal.co.il
-26800
- Jan Welte
- Jan Welte
- ianaoid&icorner.de
-26801
- Network Chemistry, Inc
- Christopher Waters
- cwaters&networkchemistry.com
-26802
- UNESP-FC
- Leonardo Fortunato
- leonardo&fc.unesp.br
-26803
- DITTA DI FEO PASQUALE
- PASQUALE DI FEO
- PDIFEO&DFWARE.IT
-26804
- Digital Opportunity Trust
- Hugh Ranalli
- hranalli&dotrust.org
-26805
- Krebs Consulting & IT-Services GmbH & Co. KG
- Jan Welte
- network&krebs-itservices.de
-26806
- MultiVision Communications
- Yiu Fan Samuel Yau
- syau&mvcinc.com
-26807
- United States Postal Service
- Jeffrey White
- jeffrey.j.white&usps.gov
-26808
- Visual Acting GmbH
- Patrick Raithofer
- raithofer&visualacting.de
-26809
- ENTELIENCE
- Philippe Le Berre
- contact&entelience.com
-26810
- SKIDATA AG
- Steiner Christian
- snmp&skidata.com
-26811
- UNLP
- Javier Diaz
- jdiaz&unlp.edu.ar
-26812
- Flexy Enterprise Solutions Ltd.
- Mowfak Attia
- mowfakattia&hotmail.com
-26813
- Uniwersytet Gdañski
- £ukasz Koz³owski
- luke&univ.gda.pl
-26814
- BVCOM Media Corporation,Ltd.
- Can Wu
- can_wu&cnbvcom.com
-26815
- Advanced Technologies
- Nasser Sunna
- advtechme&gmail.com
-26816
- DTM Consultoria S/C LTDA
- Marcelo Mustafa Murad
- atendimento&dtmhosting.com.br
-26817
- IT Professional d.o.o.
- Zoran Tadic
- zoran&itprofessional.org
-26818
- Servicio Nacional de Meteorología e Hidrologia del Perú - SENAMHI
- Richard Miguel
- rmiguel&senamhi.gob.pe
-26819
- Economists Incorporated
- Robert Czechowski
- czechowski.r&ei.com
-26820
- MicroPortal.info
- marcelo rojas
- desarrollo.java&gmail.com
-26821
- Agent Logic
- Brian Lee
- brian.lee&agentlogic.com
-26822
- Beijing Telestone Technology Co.,Ltd.
- Wang Chunxiao
- wangchunxiao&telestone.com
-26823
- MarzhillStudios
- Jeremy Wall
- jeremy&marzhillstudios.com
-26824
- Conseil Général de Meurthe et Moselle
- Daniel BARRET
- dbarret&cg54.fr
-26825
- netWerkz IT Solutions
- Alex Howells
- alex&netwerkz.co.uk
-26826
- Eon Corporation
- Herb Rose
- hrose&eoncorporation.com
-26827
- ICT 4 Schools
- Gerben van Eck
- germ&eduwijs.nl
-26828
- Han Internetworks Co., Ltd.
- Kyu-Nam Choi
- nami&haninter.net
-26829
- S4 Technology Pty Ltd
- Ross Mark
- ross.mark&s4-technology.com
-26830
- U.S. Home Systems Inc.
- Alex Goff
- softreq&usremodelers.com
-26831
- Community High School District 155
- Mike Bell
- mbell&d155.org
-26832
- Jason Petsod
- Jason Petsod
- jason&petsod.org
-26833
- Barkley Evergreen & Partners
- Larry Penrod
- lpenrod&beap.com
-26834
- Travel & Accommodation ApS
- Ronnie Mose
- rm&travelaccommodation.eu
-26835
- Southernprint Ltd
- David Mears
- david.mears&southernprint.co.uk
-26836
- INVISTA S.à.r.l
- Jeremy McLaughlin
- Jeremy.McLaughlin&invista.com
-26837
- Masaryk Hospital in Usti nad Labem
- Martin Lhotsky
- martin.lhotsky&mnul.cz
-26838
- Haystack Professional Services
- Michael Pierson
- mopierson&gmail.com
-26839
- Diamedx Inc.
- Nikolai Bratkovski
- bratkovski&gmail.com
-26840
- NETWAYS GmbH
- Marius Hein
- info&netways.de
-26841
- Soleo Communications, Inc.
- Mike Thorpe
- oids&soleocommunications.com
-26842
- Telio AG
- Torsten Grunig
- grunig&tel.io
-26843
- Aker Kvaerner Subsea Ltd
- Alisdair Gillespie
- alisdair.gillespie&akerkvaerner.com
-26844
- Endeavor Information Systems Inc.
- Scott Morgan
- Sc.Morgan&endinfosys.com
-26845
- Mark Hooper Ltd
- Mark Hooper
- info&mark-hooper.co.uk
-26846
- Salford City Council
- Peter Wild
- postmaster&salford.gov.uk
-26847
- COLLINS TRUCKING LLC
- MARION BOSTON
- collinstruckingllc&yahoo.com
-26848
- Deutsche Rentenversicherung Niederbayern-Oberpfalz
- Ewald Schmid
- Ewald.Schmid&drv-landshut.de
-26849
- Departamento de Engenharia Informática da Universidade de Coimbra
- Jorge Granjal
- jgranjal&dei.uc.pt
-26850
- VisionOSS Ltd.
- Duncan Kendall
- support&visionoss.com
-26851
- Pénzügyi Szervezetek Állami Felügyelete / Hungarian Financial Supervisory Authority
- Mr. Istvan HORVATH
- bevall&pszaf.hu
-26852
- Consejo General de Colegios Oficiales de Medicos
- Joan Camps Pons
- jcamps&cgcom.es
-26853
- Mueller & Kanduth OEG
- Gerhard Mueller
- iana&mko.at
-26854
- Cherokee International Corporation
- Daniel Bogaerts
- d.bogaerts&cherokee.be
-26855
- CommProve Ltd.
- Alessandro Manetti
- a_manett&yahoo.it
-26856
- EXCELSIS Business Technology AG
- Stephan Engelke
- stephan.engelke&excelsisnet.com
-26857
- Tocaj
- Antoine Jacot-Descombes
- antoine&jacot-descombes.ch
-26858
- ThemSelves
- Arjen Vermeer
- arjen.vermeer&hetnet.nl
-26859
- Compuquest, Inc.
- Cliff Scheller
- cs1nospam&compuquestinc.com
-26860
- 6COM s.r.o.
- Jan Oravec
- jan.oravec&6com.sk
-26861
- BM Polyco Ltd
- Neal Carter
- neal.carter&polyco.co.uk
-26862
- Idilia Inc.
- Derek Brans
- derek.brans&idilia.com
-26863
- CoreBridge
- Said DJENNAOUI
- said.djennaoui&corebridge.com
-26864
- InSight Health Corp.
- Louie Iturzaeta
- louie&insighthealth.com
-26865
- Spirit Linux
- Gleydson Silva
- gleydson&spiritlinux.com.br
-26866
- Gigamon Systems LLC
- Ted Ho
- ted.ho&gigamon.com
-26867
- Infitel Engineering GmbH
- Wolf-Henner Ruhnau
- whr&infitel.com
-26868
- European Bank of development of metallurgy industry
- Sergey Volkov
- volkov&euromet.ru; melnikov&euromet.ru
-26869
- Skype Technologies S.A.
- Vishnu Vemulapalli
- iana-registrations&skype.net
-26870
- ArcheNova Consulting GmbH
- Marcel Betschart
- m.betschart&archenova.com
-26871
- Tidomat AB
- Mathias Henriksson
- mathias.henriksson&tidomat.se
-26872
- Stainsby
- Erik Stainsby
- erik&stainsby.ca
-26873
- Aldea Global S.A.
- Gustavo Adolfo Lucas Cifuentes
- glucas&elperiodico.com.gt
-26874
- More-IT EOOD
- Remko Molier
- rmolier&more-it.com
-26875
- University of Technology of Ho Chi Minh City
- Linh Dang Hong
- dhlinh&hcmut.edu.vn
-26876
- ADITEC Inc.
- SEUNG YOUNG, PARK
- pasey&aditec.co.kr
-26877
- Civic Computing
- Alexios Chouchoulas
- alexios&civiccomputing.com
-26878
- BroadHop Inc
- Ian Campbell
- icampbell&broadhop.com
-26879
- Nine Systems Corporation
- Flint E. Barber
- flintb&ninesystems.com
-26880
- CPUArchitects, Inc.
- Chuck Carpenter
- ccarpenter1&houston.rr.com
-26881
- Univesidad Tecnica Particular de Loja
- Alexander Lopez
- ralopez&utpl.edu.ec
-26882
- Child Exploitation and Online Protection Centre
- David Bryant
- Dave.bryant&ceop.gov.uk
-26883
- Lilla Grän Data och Elektronik
- Daniel Widenfalk
- Daniel&lilla-graen.c.se
-26884
- QuickCircuit
- Dave Cameron
- dave&quickcircuit.co.nz
-26885
- Compu-Share, Inc
- Marvin R Crossnoe
- mcrossnoe&compu-share.com
-26886
- Compact Microwave Indonesia
- T.M. Adham Johan
- adham&ptcmi.com
-26887
- Plenware Group Oy
- Pauli Kuosmanen
- pauli.kuosmanen&plenware.com
-26888
- Caresolve C.V.
- Jos Verdoold
- iana-oid&caresolve.nl
-26889
- NAV E.P.E.
- Manuel Campanico
- manuel.campanico&nav.pt
-26890
- Markus Franzke Software Entwicklung
- Markus Franzke
- markus&bahnhof-batten.de
-26891
- RCZI FORT
- Anatoly Erkin
- support&rczi.ru
-26892
- yyovkov.net
- Yovko Yovkov
- yyovkov&yyovkov.net
-26893
- St.-Willibrord Gymnasium
- Martin Loehnertz
- st.willibrord&loehnertz.de
-26894
- Apparatus Inc.
- John Daily
- jdaily&apparatus.net
-26895
- Crimean Internet Service
- Alexander Yu. Solodukhin
- alt&softwarium.net
-26896
- Efore PLC
- Markku Degerholm
- markku.degerholm&efore.fi
-26897
- Copa Airlines
- Jorge E. Rodríguez B.
- iana&copaair.com
-26898
- Nippon C.A.D. Co.,Ltd.
- Mitsuyuki Komata
- komata&ncad.co.jp
-26899
- University of Zagreb, Faculty of Science
- Alen Kovac
- akovac&chem.pmf.hr
-26900
- Andanza Technologies S.A.
- Daniel Fernandez
- d.fernandez&almatech.es
-26901
- No Wires Allowed Pty. Ltd.
- Carlos Gomez Gallego
- carlos&nowiresallowed.com
-26902
- Xiamen Longtop System Co., Ltd.
- Jack Show
- jzxu&longtop.com
-26903
- Xytac system technologies
- Hideo Noda
- nodah&acm.org
-26904
- Kathmann Consulting, LLC
- Nicholas Kathmann
- nicholas.kathmann&kathmannconsulting.com
-26905
- Aboundi Inc.
- Frank Lai
- fclai&comcast.net
-26906
- Westfax Inc.
- Chad Matheson
- chad&westfax.com
-26907
- Joe Lewis
- Joe Lewis
- joe&joe-lewis.com
-26908
- Pictor Solutions, Inc.
- Rambabu Munjuluri
- rmunjuluri&yahoo.com
-26909
- SUBNET Solutions Inc.
- Anthony Eshpeter
- anthonye&subnetsolutions.com
-26910
- Studentersamfundet ved Aalborg Universitet
- Anette Brix
- edbdrift&s-et.aau.dk
-26911
- Trend Micro Inc. (formerly 'Third Brigade Inc.')
- Bob Durie
- bob_durie&trendmicro.com
-26912
- Cheiron
- Mark Brouwer
- oid&cheiron.org
-26913
- Group Logic, Inc.
- Douglas hill
- doughill&grouplogic.com
-26914
- TIME Networks Inc,.
- HyoungSeok, Park
- hspark&timenetworks.co.kr
-26915
- Wolfpac Mobile, Inc.
- Leo Alvyn Cruz
- infra&wolfpac.net
-26916
- 1822direkt Gesellschaft der Frankfurter Sparkasse mbH
- Sven Schiwek
- sysop&1822direkt.com
-26917
- Netconsulting
- Thomas Heiligenmann
- thomas&heiligenmann.de
-26918
- AF Kursor-Audit Ltd.
- Anton Burkun
- anton.burkun&gmail.com
-26919
- Danpex Corporation
- Kwok Leung
- wing&danpex.com
-26920
- TXT e-solutions SpA
- Domenico Rotondi
- Domenico.Rotondi&TXTGroup.Com
-26921
- MPI for Mathematics
- Willy Tegast
- pen-contact&mpim-bonn.mpg.de
-26922
- TD2 Consulting, LLC
- Trey Drake
- treydrake&td2consulting.com
-26923
- Baptist Health South Florida
- Rodrigo Amarante
- rodrigoa&baptisthealth.net
-26924
- Knewco, Inc.
- Kevin J Kalupson
- kalupson&knewco.com
-26925
- Enigma Data Solutions Ltd.
- Laurence Barry
- lbarry&enigmadata.com
-26926
- Masstech Group, Inc
- Wes Thiessen
- wes.thiessen&masstechgroup.com
-26927
- Extant Networks
- Thomas Matysik
- thomas&extant.net.nz
-26928
- Aerohive Networks, Inc.
- Gavin Zhu
- gzhu&aerohive.com
-26929
- jv consultant
- jacques vincensini
- contact&jvconsultant.fr
-26930
- php-systems.com
- Tim Wilkes
- iana&php-systems.com
-26931
- Reaktor Innovations Oy
- Teemu Matilainen
- teemu.matilainen&ri.fi
-26932
- Visma Software ASA
- Pål Bergan
- pal.bergan&visma.no
-26933
- Tridion B.V.
- Dominique LeBlond
- dominique.leblond&tridion.com
-26934
- Tattile S.r.l.
- Livio Bonisoli
- l.bonisoli&tattile.com
-26935
- Oseo
- Xavier de Broca
- arnaud.jumelet&ext.oseo.fr
-26936
- Ville de Marseille
- Claude MARCY
- cmarcy&mairie-marseille.fr
-26937
- Yahata Kosei Hospital
- Akimichi Tatsukawa
- akimichi_tatsukawa&yahoo.co.jp
-26938
- Worldgroup Consulting Sdn Bhd
- Erika
- sinwee80&gmail.com
-26939
- Tenwa Ltd.
- Simon Dong
- simon&tenwa.com.cn
-26940
- The Economist
- Michael Mann
- michaelmann&economist.com
-26941
- Johnstone Associates
- David Johnstone
- dtj&dtrack.com
-26942
- AIM Professional Systems Ltd
- David Wood
- david.wood&aim.co.uk
-26943
- dieMosers.org
- Reinhard Moser
- reinhard.moser&inode.at
-26944
- Icross Technology
- dbin yoon
- dbin&icrosstech.com
-26945
- INTECH
- Michael Pelletier
- mpelletier&intechjanus.com
-26946
- Aditi Technologies
- Watsh Rajneesh
- rajneeshw&aditi.com
-26947
- MIPC Ltd.
- Arnaldo Nunes do Prado
- arnaldo.prado&gmail.com
-26948
- Lambda Research Inc.
- David Quick
- dquick&lambdares.com
-26949
- InterComputer Corp.
- Bruce James
- Bruce.James&InterComputer.com
-26950
- GUST / Ninja Services
- Jonathan Hunter
- jh-iana-oid2&ninja.org.uk
-26951
- RENAULT-NISSAN B.V.
- Witold KLAUDEL
- witold.klaudel&renault.com
-26952
- Joint-stock company "Bank SOYUZ"
- Vyacheslav Krotov
- Vyacheslav.Krotov&banksoyuz.ru
-26953
- Astronix Technology Inc.
- Antonio Saygbe
- nukantonio&yahoo.com
-26954
- INdustrias Sola Basic, SA de CV
- Emilio Catan
- ecatan&isbmex.com
-26955
- Avalon Networks LLC
- Binon Gorbutt
- bgorbutt&avalonnetworks.us
-26956
- AG04 Innovative Solutions
- Domagoj Madunić
- domagoj.madunic&ag04.com
-26957
- Kognita
- Mr. Siniša Babiæ
- sinisa&kognita.hr
-26958
- Indu-Sol GmbH
- Mr. René Heidl
- heidl&indu-sol.com
-26959
- www.brianmichael.org
- Brian Michael
- brian.michael&yahoo.com
-26960
- VEM Manutenção e Engenharia S/A
- Gerencia Redes
- gerencia.redes&vem.aero
-26961
- TantaComm Systems
- Nicholas Morris
- nmorris&tantacomm.com
-26962
- KPMG International
- Reede Taylor
- dms&dipcon.com
-26963
- ISEANE
- Jerome JOUVENT
- oid&iseane.com
-26964
- van Deenen Support
- Bart van Deenen
- info&vandeenensupport.com
-26965
- Thomas Parquette
- Tom Parquette
- thparque&orangemail.syr.edu
-26966
- Iskoot Israel Ltd.
- Yehudit Nathan
- Yehudit&iskoot.com
-26967
- Assotiation Mir Ltd
- Denis Zagirov
- info&mirgroup.ru
-26968
- KielNET GmbH
- Sven Juergensen
- sj&kielnet.de
-26969
- Bisping & Bisping GmbH & Co. KG
- Magnus Schmidt
- ms&bisping.de
-26970
- Doellken Kunststoffverarbeitung GmbH
- Ingo Gansert
- ssladmin&doellken.com
-26971
- Kudra Technical Services
- Robert Sexton
- robert&kudra.com
-26972
- Quetz Limited
- Keith Brazington
- keith&quetz.co.uk
-26973
- Tomato Vine, Inc.
- Trevor Jorgenson
- tjorgenson&tomatovine.com
-26974
- Disk Bridge
- Graham Wooden
- graham&g-rock.net
-26975
- CompanyName
- ContactName
- ContactEmail
-26976
- NexG Co., Ltd.
- Jae Hak, Lee
- pubs&nexg.net
-26977
- Qball Technologies Ltd.
- Maayan Turner
- produpd&qballtech.net
-26978
- next layer GmbH.
- Andreas Schoder
- noc&nextlayer.at
-26979
- Grenkeleasing AG
- Frank Kessel
- fkessel&grenkeleasing.de
-26980
- Dudley PCT
- Kevin Iddles
- kevin.iddles&dudley.nhs.uk
-26981
- Schrack Energietechnik GmbH
- Konrad Podloucky
- k.podloucky&schrack.com
-26982
- R2 GmbH
- Alexander Rosswog
- alexander.rosswog&r2-gmbh.de
-26983
- RWD Technologies
- Marc Ciarniello
- mciarniello&rwd.com
-26984
- Otto-Petersen-Haus
- Philipp Lay
- ng&oph.rwth-aachen.de
-26985
- ENET Inc.
- Tshikazu Aso
- domain&ene-t.com
-26986
- Southwest Research Institute
- Isaac Wagner
- iwagner&swri.org
-26987
- Gemini Mobile Technologies, Inc.
- Andy Dunlap
- domain-admin&geminimobile.com
-26988
- 7-Eleven, Inc
- Jane Xia-Ballew
- jxia01&7-11.com
-26989
- INTEGRITY Ltd.
- Szabolcs Gyuris
- gyuris.szabolcs&integrity.hu
-26990
- Hudson Digital Systems Inc.
- Michael Andrews
- mandrews&hudsondigitalsystems.com
-26991
- Develer S.r.l.
- Bernardo Innocenti
- info&develer.com
-26992
- ENTEL S.A.
- Fernando Castillo Y.
- fycastillo&entel.cl
-26993
- Promwad Innovation Company
- Petronenko Denis
- petronenko&gmail.com
-26994
- opensma
- John Collaros
- john.collaros&gmail.com
-26995
- Public Joint-Stock Company "Baltiyskiy Bank"
- Mikhail Kopiev
- Kopiev&baltbank.ru
-26996
- Qmax Communications
- Lim Hong Chuan
- hongchuan&qmaxcom.com
-26997
- Studer Professional Audio GmbH
- Simon Gysi
- simon.gysi&studer.ch
-26998
- AudioSoft Ltd.
- Ian Barrows
- ian.barrows&audiosoft.co.uk
-26999
- Grace Community Church of Howard County, Inc.
- Gary Burnett
- gary.burnett&gcconline.org
-27000
- Magistrat Linz, AT
- Hanspeter Klapf
- hanspeter.klapf&mag.linz.at
-27001
- optionsXpress, Inc.
- Matt Connley
- mconnley&optionsxpress.com
-27002
- Zayo Group (formerly 'Onvoy, Inc.')
- David B. Walters
- dwalters&zayoms.com
-27003
- Trigence Corp
- Brigitte Gagne
- bgagne&trigence.com
-27004
- HOT Telecom Ltd.
- Eyal Wax
- eyal.wax&hot.net.il
-27005
- Hackwerk.net
- Peter H. Veerman
- pveerman&hackwerk.net
-27006
- Chalktime
- David B. Walters
- iana-snmp&chalktime.com
-27007
- Luceor S.A.S.
- Benoit Papillault
- benoit.papillault&luceor.com
-27008
- Unified Game
- Stefan Penter
- stefan&unifiedgame.com
-27009
- Bitrail Networks
- Support Center
- support&bitrail.net
-27010
- LBM Systems, LLC
- Xavier Guzman
- xguzman&lbmsys.com
-27011
- Sagamore Systems, Inc
- Eric Hedlund
- ehedlund&sagamoresys.com
-27012
- CASAudit, Inc.
- Ed Goldgehn
- edg&casaudit.com
-27013
- TeleDirect International Inc.
- Mark M. Moore
- CTO&TDirect.com
-27014
- CommGate Systems India Pvt Ltd
- Abhik Biswas
- abhik&commgate.net
-27015
- East Coast Access (PTY) Ltd
- Abdul Rehman Gani
- abdulg&eastcoast.co.za
-27016
- Alphito d.o.o.
- Uros Indihar
- indy&alphito.si
-27017
- world-direct eBusiness Solutions GmbH
- Florian Sailer
- florian.sailer&world-direct.at
-27018
- TDC Switzerland AG
- Michael Bischof
- michael.bischof&sunrise.net
-27019
- Envision Network Technologies Pvt. Ltd.
- Vishwanath H.R.
- vishwa&entl.net
-27020
- Pan Asian Certificate Policy Authority Limited
- Fanny Tse
- fanny.tse&tradelink.com.hk
-27021
- Pactiv Corp.
- Marius Satas
- msatas&pactiv.com
-27022
- Instrumentation Technology Systems Corporation
- Paul Hightower
- phightower&itsamerica.com
-27023
- Nexant, Inc.
- Sergio Brignone
- sbrignone&nexant.com
-27024
- I-Connect Inc
- Soheil Banifatemi
- soheil&i-connect.tv
-27025
- VisionAlive GmbH
- Marc von Jaduczynski
- marc&visionalive.de
-27026
- ILIRIKA D.D.
- Andrej Valencic
- admin&ilirika.si
-27027
- ESTEAM Software GmbH
- David Matthew Bond
- ldap&esteam.de
-27028
- Torgservis Ltd.
- Andrei Petrenko
- a.petrenko&torgservis.com.ua
-27029
- REH
- Wolfgang Reh
- reh&stsweilburg.de
-27030
- Wichorus Inc.
- Joseph L Raja
- joseph&wichorus.com
-27031
- CNS Technology Inc.
- SooHyun Moon
- shmoon&cnstec.com
-27032
- Sobey Digital Technology Co. Ltd.
- Mr.Wang Jizheng
- wangjizheng&sobey.com
-27033
- OK soft GmbH
- Oleg Kiriljuk
- oleg.kiriljuk&ok-soft-gmbh.com
-27034
- Hopling Technologies B.V.
- Ivo van Ling
- ivanling&hopling.com
-27035
- Alamon Telco, Inc.
- Dennis R. Gesker
- gesker&alamon.com
-27036
- Mercy College
- Chris Peckham
- cpeckham&mercy.edu
-27037
- Netmarks, Inc.
- Atsuo Masaki
- masaki.atsuo&netmarks.co.jp
-27038
- Robot Visual Systems Gmbh
- Wolfgang Guse
- wolfgang.guse&robot.de
-27039
- Kehitysyhteistyön palvelukeskus ry.
- Juho Vuori
- juho.vuori&kepa.fi
-27040
- Royal Canadian Mounted Police
- Paul Dube
- systems_tools_support&rcmp-grc.gc.ca
-27041
- KEMET Corporation
- Brian Burch
- brianburch&kemet.com
-27042
- UNIVERSIDAD DE COLIMA
- RAYMUNDO BUENROSTRO MARISCAL
- aldo.cuevas&ucol.mx
-27043
- Centro de Informatica e Automacao do Estado de Santa Catarina
- Reinaldo Sabatini Fernandes
- reinaldo&ciasc.gov.br
-27044
- CLUSTERPOINT LTD.
- GINTS ERNESTSONS
- gints&clusterpoint.com
-27045
- Santillana de Ediciones S.A.
- Federico Peñaranda Nervi
- federicopenaranda&gmail.com
-27046
- Alex Group, spol. s r.o.
- Marian Ondrovic
- marian.ondrovic&alexgroup.biz
-27047
- ASK Interactive UK Ltd
- Andrew Keil
- andrew.keil&askinteractive.net
-27048
- Opteq Systems International Ltd
- Nikki Cliff
- nikkic&opteqint.net
-27049
- Symark Software
- Gyle Iverson
- giverson&symark.com
-27050
- Warrior Technology Services, Inc
- Victor Guerrero
- jvguerrero&warriortech.com
-27051
- Chipidea Microelectronica S.A.
- Fabio Silva
- support&chipidea.com
-27052
- Bay Microsystems, Inc.
- Bob Smedley
- bob&baymicrosystems.com
-27053
- Omnitromics Pty Ltd
- Paul Whitfield
- support&omnitronics.com.au
-27054
- Oneida Baptist Institute
- James Thompson
- technology&oneidaschool.org
-27055
- ZANDER LLC.
- Fred Patterson
- fcpatterson55&gmail.com
-27056
- Zednax Limited
- Alex Masidlover
- alex.masidlover&zednax.com
-27057
- Elektrobit Automotive GmbH (formerly '3SOFT GmbH')
- Markus Roesch
- Markus.Roesch&Elektrobit.com
-27058
- Ventelo Norge AS
- Dag Stenstad
- dag.stenstad&ventelo.no
-27059
- SmartSol d.o.o.
- Tomislav Randjic
- tomislav.randjic&smartsol.co.yu
-27060
- interactive instruments
- Mr. Bernd Weidner
- weidner&interactive-instruments.de
-27061
- NetSENS SRL
- Vasile Vladescu
- operations&netsens.ro
-27062
- OSTIUM-Soluções de Engenharia Lda
- João Pedro Jacob
- joao.jacob&ostium.pt
-27063
- IMocha Consulting Sdn Bhd
- Abid Altaf
- abid&imocha.com.my
-27064
- University of St. Thomas - Houston
- Neil Gaede
- neil&stthom.edu
-27065
- Quagility, Inc.
- Jonathan Mischo
- oid&quagility.net
-27066
- Rave Wireless, Inc.
- Marc C. Poulin
- mcp&ravewireless.com
-27067
- Softinbox Inc.
- Tzuoo-Hawn Yeh
- tzuoohawnyeh&yahoo.com
-27068
- Mooter Media Ltd
- Mark Hetherington
- mark.hetherington&mootermedia.com
-27069
- Kaon Media Co., Ltd.
- Jin, Lee
- jlee&kaonmedia.com
-27070
- DekTec Digital Video B.V.
- Sito Dekker
- sito.dekker&dektec.com
-27071
- Hålogaland IKT-Senter as
- Jan Åge Johnsen
- janaage&hikt.no
-27072
- Euro-emme s.r.l.
- Paolo Signor
- p.signor&euro-emme.com
-27073
- Septentrio nv/sa
- ing. Freddy Voorspoels
- Freddy.Voorspoels&Septentrio.com
-27074
- Point International
- Thomas Conlon
- tom.conlon&point.se
-27075
- RDP B92 a.d.
- Tomislav Randjic
- tomislav.randjic&b92.net
-27076
- Zot Inc.
- Chris Edillon
- jce&zot.com
-27077
- Nanasoft Szoftverfejlesztõ Bt.
- Peter MOLNAR
- molnar.peter&nanasoft.hu
-27078
- lohn.us
- Josemar Müller Lohn
- lohn&lohn.us
-27079
- AT Promotions Limited
- Jason McClean
- jason.mcclean&listawood.com
-27080
- Sequanux
- Gregory Oestreicher
- greg&sequanux.org
-27081
- Trimm, Inc.
- Brian Burch
- brianb&trimminc.com
-27082
- CESMIC - Centro de Excelência em Servidores de Missão Crítica
- Mauro Tapajos
- camilamachado&gmail.com
-27083
- Switching Technologies
- John McDougald
- admin&switchingtechnologies.com
-27084
- Arnulf Wiedemann
- Arnulf Wiedemann
- arnulf&wiedemann-pri.de
-27085
- Greenview Data, Inc.
- Philippe Green
- phil&vedit.com
-27086
- Texas Transportation Institute
- Brad Hoover
- b-hoover&tamu.edu
-27087
- Networking Systems
- Brad Hoover
- bjh6938&yahoo.com
-27088
- Supreme Court of New Mexico
- S. Azuma
- sazuma&nmcourts.com
-27089
- Guus Leeuw IT Solutions
- Guus Leeuw jr.
- leeuwg&guusleeuwit.com
-27090
- Nectia SA
- Claudio Pérez
- cperez&nectia.com
-27091
- Brilliant Telecommunications Inc.
- George Zhao
- george&brilliantwireless.com
-27092
- Astronautics Corporation of America
- Manager of Configuration Management
- m.starr&astronautics.com
-27093
- YUSO.JP
- Yuso KANAMORI
- iana&rcv.yuso.jp
-27094
- RANEEN
- Mohammad Alhashash
- iana-oidreg&alhashash.net
-27095
- Portfolio Wired
- Suzanne Payne
- mail&portfoliowired.co.uk
-27096
- Cadet Family
- Dudley Cadet
- dudley&cadet.us
-27097
- Aphelion Communications Inc
- JIMMY FENG
- jimmy&aphelions.com
-27098
- SOE Software Pty Ltd
- Simon Manners
- simon.manners&soesoft.com
-27099
- Bunda Mulia University
- Edy Sulai
- esulai&bundamulia.ac.id
-27100
- SwiftView, Inc.
- Tyler Walden
- tyler&swiftview.com
-27101
- EMBARC.biz, LLC
- Dudley Cadet
- dudley&embarc.biz
-27102
- GDMC
- Mark Murphy
- mmurphy&wayne.edu
-27103
- Romanian Space Agency (ROSA)
- Cosmin NISTOR
- cosmin.nistor&rosa.ro
-27104
- CFT Ltd.
- Likhatchev Evgueni
- iana_contacts&cft.ru
-27105
- SoftMethod GmbH
- Felix Schupp
- felix.schupp&softmethod.de
-27106
- Averina Software
- Can Balioglu
- can.balioglu&averina.com
-27107
- Supporting Open Source bvba
- Christof Haerens
- christof.haerens&sos.be
-27108
- Micro Elektronische Producten BV
- Leendert Blaauw
- l.blaauw&mep-telecom.com
-27109
- Barnaul State Pedagogical University
- Alexander Mitrohin
- swp&swp.pp.ru
-27110
- Petrozavodsk State University, Computer Science Department
- Vadim Ponomarev
- vadim&cs.karelia.ru
-27111
- Adamentium SAS
- Daniel Teply
- support&adamentium.com
-27112
- MATHEMA Software GmbH
- Michael Wiedeking
- admin&mathema.de
-27113
- APCO Worldwide
- Jim Bullock
- jbullock&apcoworldwide.com
-27114
- electrolyte consulting
- Steffen Voigt
- iana-oid&electrolyte.de
-27115
- Qbit GmbH
- Michael Blaesi
- snmp&qbit.de
-27116
- Freesystems S.L.L.
- Santiago Ramos
- sramos&sysnetworks.net
-27117
- Tux-Logic
- Fabrice Mur
- fmur&tux-logic.com
-27118
- Grontmij NV
- Dr Erik H. ten Winkel
- erik.tenwinkel&grontmij.com
-27119
- ID90 Technologies
- Alejandro Pozzi
- alejandro&id90.com
-27120
- Smar Equipamentos Industriais LTDA
- Marcelo Barros de Almeida
- barros&smar.com.br
-27121
- ikirby.net
- kirby zhou
- kirbyzhou&hotmail.com
-27122
- Shadowcat Systems Ltd.
- Chris Jackson
- chrisj&shadowcatsystems.co.uk
-27123
- ICOP Digital, Inc.
- John Drakey
- jdrakey&icop.com
-27124
- Kociok Beratungsgesellschaft mbH
- Gerhard Kociok
- kociok.edv&gmx.de
-27125
- Accuity LLP
- Matthew White
- anmwhite&yahoo.com
-27126
- Universidade Federal de Sao Carlos
- Helio Crestana Guardia
- helio&dc.ufscar.br
-27127
- Systems and Software, Inc.
- Christopher F. Whelan
- chris.whelan&ssivt.com
-27128
- Landeshauptstadt Hannover
- Rouven Siehndel
- oid.admin&hannover-stadt.de
-27129
- Department of Conservation, New Zealand
- Ken Walker
- kbwalker&doc.govt.nz
-27130
- TehnoCom Ltd.
- Alexander P. Otstavnov
- alcaver&74mail.ru
-27131
- kk+w GmbH
- Roland Kantz
- rkantz&planiglobe.com
-27132
- APIS IT d.o.o.
- Perica Simundic
- oid.admin&apis-it.hr
-27133
- Hensley, Elam & Associates
- Sam Elam
- sam&hea.biz
-27134
- Bangladesh Online Limited
- Syed Samiul Wadood
- admin&bol-online.com
-27135
- 77 Elektronika Kft
- Feher Istvan
- ifeher&e77.hu
-27136
- Osaka Gas Information System Research Institute Co.,Ltd.
- Takashi Yahata
- Yahata_Takashi&ogis-ri.co.jp
-27137
- Proxicom, Inc.
- Akil Franklin
- akil.franklin&proxicom.com
-27138
- Techno Viking
- Dan Bullok
- dan.iana&technoviking.com
-27139
- My2do Solutions
- Warren Strange
- warren.strange&gmail.com
-27140
- Acrodyne Industries, Inc.
- Bill Soreth
- iana-snmp&acrodyne.com
-27141
- Applied Informatics Software Engineering GmbH
- Günter Obiltschnig
- guenter.obiltschnig&appinf.com
-27142
- ALSTEC
- Konstantin Tychkov
- sit&alstec.ru
-27143
- DirectPark GmbH
- Florian Viertel
- webmaster&directpark.de
-27144
- Transact Limited
- Alan Simes
- alan.simes&transactgroup.net
-27145
- GrahamCox.co.uk
- Graham Cox
- grahamcox&cwazy.co.uk
-27146
- Infocentr Company Ltd.
- Mihail Ohotin
- ohotin&icentr.net
-27147
- Mobissimo, Inc.
- Hank Lee
- mobissimo&mobissimo.com
-27148
- ICP-SC
- Gerente de Informática
- icpsc&dtec.sc.gov.br
-27149
- Wenzhou University
- Miaobo Yao
- ymbo.cn&gmail.com
-27150
- Angelltech Co., Ltd.
- Ren Jingyan
- renjy&angelltech.com
-27151
- SK C&C
- MyoungHwan
- nait&skcc.com
-27152
- Institut für Kristallzüchtung Berlin
- Peter Mehlhorn
- pm&ikz-berlin.de
-27153
- Matzke Softwareentwicklung
- Sascha Matzke
- sascha&scourbase.de
-27154
- Telekomunikacja Polska S.A.
- Jacek Borowski
- idb.oid&telekomunikacja.pl
-27155
- MR Copiadoras Digitais Ltda.
- Warlei Alves
- warlei&mrcopiadoras.com.br
-27156
- Warlei Alves
- Warlei Alves
- warlei&teccomonline.com.br
-27157
- Quartet Financial Systems Inc.
- Jean Safar
- jsa&quartetfs.com
-27158
- Department of Internal Affairs, New Zealand
- Matt Duguid
- matt.duguid&dia.govt.nz
-27159
- Persistent Systems, LLC
- Herbert Rubens
- hrubens&persistentsystems.com
-27160
- PlaSec, Inc.
- Terry Neely
- terry&plasecinc.com
-27161
- DeGooroo, Inc.
- Duc Pham
- dadm2006&degooroo.com
-27162
- Serveis de Salut Integrats Baix Empordà
- Pere Rodríguez
- prr&hosppal.es
-27163
- Dolphin Technology Inc
- Network Administrator
- mibcontact&gmail.com
-27164
- CNET Networks Asia Pacific Pte Ltd
- Nikk Eh
- nikk.eh&cnet.com
-27165
- Universidade Tecnológica Federal do Paraná (UTFPR)
- Thiago Herek
- therek&utfpr.edu.br
-27166
- Checchia.NET IT Consulting
- Daniel Checchia
- daniel&checchia.net
-27167
- NIPPON ANTENNA CO.,LTD.
- Osamu MINETA
- o-mineta&nippon-antenna.co.jp
-27168
- Edward Roper
- Edward Roper
- edro+iana&wanfear.net
-27169
- Erlang Financial System (Pty) Ltd
- Danie Schutte
- danie&erlfinsys.net
-27170
- ETHALON GmbH
- Thomas Hackbarth
- thomas.hackbarth&ethalon.de
-27171
- Council of the European Union
- Thierry Manté
- thierry.mante&consilium.europa.eu
-27172
- ArcaBit Ltd.
- Grzegorz Michalek
- grzesiek&arcabit.com
-27173
- Software Consulting Markus Bernhardt GmbH
- Markus Bernhardt
- Markus.Bernhardt&scmb.de
-27174
- Guenther Mair
- Guenther Mair
- guenther.mair&hoslo.ch
-27175
- iO tech s.r.l.
- Luca Salvadori
- alliance&iotecno.com
-27176
- Avinity Systems BV
- Arnoud Zwemmer
- snmp&avinity.net
-27177
- Intendencia Municipal de Montevideo
- Freddy Kugelmass Dodel
- fkmass&informatica.imm.gub.uy
-27178
- ISIB CNR
- Paolo Bison
- Paolo.Bison&isib.cnr.it
-27179
- Ultri
- Brian Winkers
- bwinkers&gmail.com
-27180
- Frontier Science and Technology Research Foundation, Inc.
- Peter Meszynski
- meszynsk&fstrf.org
-27181
- Teak Technologies
- Humphrey Liu
- hcliu&teaktechnologies.com
-27182
- CAI Networks, Inc.
- Dev Manager
- netadmin&cainetworks.com
-27183
- Bluewave Networks Inc.
- Mr. Guna Ramireddy
- guna&bluewavenetworks.com
-27184
- UNAVCO
- Stephen Smith
- ldapadmin&unavco.org
-27185
- Vendorama LTD
- Jason Morehouse
- jm&vendorama.com
-27186
- shenzhen qiaowei investment & development co.,Ltd
- wang baohua
- wangbh&qiaowei.net
-27187
- VALIANT COMMUNICATIONS LIMITED
- Inder mohan Sood
- sood&valiantcom.com
-27188
- SEP Software Engineering Partner GmbH
- Peter Buehrer
- peter.buehrer&sep.ch
-27189
- DD NetService GmbH
- Stefan Dreyer
- ldap&ddnetservice.net
-27190
- michaelbreuer.eu
- Michael Breuer
- mbreuer&michaelbreuer.eu
-27191
- Godalming College
- Daniel Ewen
- danielewen&godalming.ac.uk
-27192
- Soongsil University
- Chang Ho-Jin
- zzang70&gmail.com
-27193
- Patrick Monahan (Drogheda) Ltd
- Willie Lennon
- wlennon&monahansdrogheda.ie
-27194
- DELTA Resources Inc.
- Keegan Mills
- keegan&delta-va.com
-27195
- Stadtwerke Duesseldorf AG
- Ina Opitz
- iopitz&swd-ag.de
-27196
- Harder Software Ltd.
- Ian Harder
- ianh&hardersoft.com
-27197
- Heteonix
- Benjamin Su
- benjamin&hetronix.com.tw
-27198
- Réseau pour l'Excellence en Enseignement Supérieur de l'Afrique
-de l'Ouest(RESAO)
- NDANATCHE Essowèmlou Geraud
- ndana_geraud&yahoo.fr
-27199
- Sepracor Inc.
- Michele Liguori
- michele.liguori&sepracor.com
-27200
- Energy Options, Inc
- Philip Basile
- pbasile&energy-options.com
-27201
- Vianel
- Ali Altiparmak
- ali&vianel.com
-27202
- Business Systems UK Ltd
- Simon Bill
- sbill&businesssystemsuk.com
-27203
- Celesio AG
- Joachim Schlette
- joachim.schlette&celesio.com
-27204
- Seawolf Technologies Inc.
- Jinjun Xu
- jason&seawolftech.com
-27205
- GridApp Systems, Inc
- Dan Cohen
- dcohen&gridapp.com
-27206
- Bitshift, Berchtold IT Solutions
- Patrick Berchtold
- hostmaster&bitshift.ch
-27207
- SevOne Inc
- Vess Bakalov
- vess&sevone.com
-27208
- Opinsys Oy
- Veli-Matti Lintu
- vml&opinsys.fi
-27209
- Lendworx, Inc.
- Al Gifford
- webadmin&lendworx.com
-27210
- Suso Technology Services, Inc.
- Mark Krenz
- ianareg&suso.com
-27211
- Engsound Technical Enterprise Co., Ltd.
- Ching-Hong Huang
- ch_huang&engsound.com.tw
-27212
- Routing International NV
- Karel Deconinck
- Karel.Deconinck&Routing-International.com
-27213
- Banka Slovenije
- Martin Umek
- Martin.Umek&bsi.si
-27214
- Holzhausen Network
- Robert Haensel
- robert.c.haensel&fh-stralsund.de
-27215
- MAGIX AG
- Karsten Stange
- kstange&magix.net
-27216
- Patryk Sciborek
- Patryk Sciborek
- patryk&sciborek.com
-27217
- Digisense Inc.
- Michael MacKay
- standards&digisenseinc.com
-27218
- GASAG Berliner Gaswerke AG
- Steffen Löber
- sloeber&gasag.de
-27219
- Funambol, Inc.
- Stefano Fornari
- iana&funambol.com
-27220
- EFCO Corporation Inc.
- John Bodoni
- jbodoni&efcocorp.com
-27221
- Diebold Software Solutions Inc
- Richard Harris
- Richard.Harris&diebold.com
-27222
- Pathway Connectivity Inc.
- Gary Douglas
- gdouglas&pathwayconnect.com
-27223
- Alcon Technologies, Inc
- Jorge Cano
- jcano&alcon-tech.com
-27224
- OhReally
- Rob la Lau
- rob&OhReally.nl
-27225
- Chiris Networks, Inc.
- Jesse Song
- js&chiris.net
-27226
- Asociación Grupo Universitario de Informática (Universidad de Valladolid)
- Guillermo Rodríguez Cano
- oid&gui.uva.es
-27227
- SC SECPRAL COM SRL
- Mihai Limbasan
- mihailim&security.ro
-27228
- DSP Group Inc.
- Einam Schonberg
- standards&dsp.co.il
-27229
- Engineers Without Borders Canada
- Francis Kung
- francis&ewb.ca
-27230
- E-Portal
- Evgeny Skripa
- skripa&e-portal.ru
-27231
- Big Sky Computer Systems LLC.
- James Hartley
- james.hartley&gmail.com
-27232
- BATM Advanced Communications GmbH
- Markus Pestinger
- mpestinger&batm.de
-27233
- La-Events
- Jeroen de Ruiter
- la&la-events.nl
-27234
- PortAuthority Technologies Inc.
- Lidror Troyansky
- lidror&portauthoritytech.com
-27235
- Politechnika Gdanska
- Adam Tlalka
- adcent&pg.gda.pl
-27236
- Netoracle Ltd.
- Maciej Pedziwiatr
- iana&netoracle.net
-27237
- Smart Data Solutions, Inc.
- Luis P. Rodriguez
- luisrt&smartdatasol.com
-27238
- Winbond Electronics Corp.
- Chin-Wei Hsu
- cwhsu2&winbond.com
-27239
- USC-Satunama
- Wahyu Widodo
- t4mp4h&usc-satunama.org
-27240
- Headnet aps
- Sune Woeller
- woeller&headnet.dk
-27241
- IDC Informatica s.r.l.
- Petrillo Giovanni
- giovanni.petrillo&idc-informatica.it
-27242
- Bilfinger Berger AG
- Fußer,Tobias
- tobias.fusser&bilfinger.de
-27243
- Signal Networks Pvt. Ltd.
- Anand Mallya
- anandmallya&signal-networks.com
-27244
- IronGate S.L.
- Pablo Ruiz Garcia
- pablo.ruiz&iron-gate.net
-27245
- Maltacom plc
- Ing. Charles Galea
- charles.galea&maltacom.com
-27246
- Järfälla Kommun, För- och Grundskolor
- Thomas Hellström
- thomas&jfog.net
-27247
- Radian Group Inc.
- Frank Monzo
- Frank.Monzo&Radian.biz
-27248
- Computer Programs and Systems Inc. (CPSI)
- Sean Wentworth
- seanw&cpsinet.com
-27249
- Picosoft Ltd.
- Rob Melville
- robmelville&blueyonder.co.uk
-27250
- West Linn Paper Company
- Penny Woods
- pwoods&wlinpco.com
-27251
- MedStreaming
- wael elseaidy
- w.elseaidy&comcast.net
-27252
- Excapsa Services Inc.
- Janet Post
- janet.post&excapsa.ca
-27253
- AusRegistry Pty Ltd
- Chris Wright
- chris&ausregistry.com.au
-27254
- FIX Flyer LLC
- George Kledaras
- george&fixflyer.com
-27255
- Tarkhany Regional (County) Open Joint-Stock Bank
- Vladimir Privalov
- lee&tarkhanybank.ru
-27256
- NPF "KRUG"
- Danila Chernetsov
- chernetsovdv&krug2000.ru
-27257
- Valimo Wireless Oy
- Ilkka Pietikäinen
- ilkka.pietikainen&valimo.com
-27258
- NovaSecure AS
- Kare Langedrag
- kare&novasecure.no
-27259
- BEL POWER SOLUTIONS (formerly 'Power-One')
- Juerg Labhart
- juerg.labhart&psbel.com
-27260
- DynaPel Systems Inc.
- Dr. Dieter Koller
- snmp&dynapel.com
-27261
- Servicios Avanzados para las Instituciones S.L.
- Raul Diaz
- rdiaz&viavansi.com
-27262
- DANTE Ltd.
- Otto Kreiter
- oidmaster&dante.org.uk
-27263
- Netsmart Public Health, Inc.
- Kevin Davidson
- kdavidson&ntst.com
-27264
- Nmodel
- Derek Smith
- dereks_letterbox&aapt.net.au
-27265
- Inlet Technologies, Inc.
- Dawn Blalock
- support&inlethd.com
-27266
- freecode
- Wijnand Modderman
- wijnand&freecode.nl
-27267
- Encryptanet, Inc.
- Clay Cover
- ccover&encryptanet.com
-27268
- Hangar Eighteen Enterprises LLC
- Mark McConnell
- mnhangareighteen&gmail.com
-27269
- Mynavi Corporation
- Terutake Usui
- iana-contact&mynavi.jp
-27270
- KoSyS - Kockisch ITK Systems and Services
- Michel Bretschneider
- michel-bretschneider&itk-systems-and-services.de
-27271
- Structured Software Systems Ltd
- David Priestley
- david.priestley&threesl.com
-27272
- Envisioneering Medical Technologies
- Stephen Lewis
- slewis&envisioneeringmedical.com
-27273
- Infinite Video Corporation
- Pete Koat
- prkoat&gmail.com
-27274
- Fastfeed Inc.
- Smruti Parida
- smruti.parida&gmail.com
-27275
- Alexcoder
- Mohammed Habib
- habib&alexcoder.com
-27276
- Technovare Systems, Inc.
- Srikanth Sherman
- sri&technovare.com
-27277
- SatPath Systems, Inc.
- Herkea Jea
- herkea&sat-path.com
-27278
- Sindoricoh Co., Ltd.
- Kyung Sik, Lee
- kyungsiklee&sindo.com
-27279
- GoldenNet Technology Inc.
- Howard Chang
- howard&togoldennet.com.tw
-27280
- Università Degli Studi di Urbino "Carlo Bo
- Claudio Caracci
- caracci&uniurb.it
-27281
- Netcon Systems
- Eric Anton
- eric.anton&netconsys.com
-27282
- Realtek Semiconductor corp.
- Tom Chen
- tom.chen&realtek.com.tw
-27283
- Xcenium Technology
- Laura Redruello
- snmp&xcenium.com
-27284
- Daon Trusted Identity Services (formerly 'Security Biometric Clearing Network')
- Patrick Osborne
- pat.osborne&aaae.org
-27285
- The Nisu research team
- Manuel David Mollar Villanueva
- mm.iana&nisu.org
-27286
- Netopia, Inc.
- Ken Haase
- KHaase&netopia.com
-27287
- University Of Perugia
- Informatic Service Office
- sysadm&unipg.it
-27288
- MySystemAdmin
- Chris Tucker
- com&mysystemadmin.com
-27289
- eGistics, Inc.
- Brad Lee
- blee&egisticsinc.com
-27290
- Beijing Osee Digital Technology Co.Ltd
- Chenrunhai
- chenrunhai&osee-dig.com
-27291
- Bundesministerium für Verkehr, Bau und Stadtentwicklung
- Ulf Jakubke
- snmp.contact&bmvbs.bund.de
-27292
- Topex S.A
- Bica Dumitru
- dumitru.bica&topex.ro
-27293
- Melian Italia SRL
- Andres Kaswalder
- melianitalia&melian.com
-27294
- MacSpecialist
- Adam Karneboge
- adam&macspecialist.com
-27295
- Axel Technology srl
- Paolo Garuti
- paolo.garuti&axeltechnology.com
-27296
- Blizzard Entertainment
- Mike Cramer
- mcramer&blizzard.com
-27297
- SchechterTech LLC
- Harry Schechter
- hjs&schechter.net
-27298
- Asia Pacific Broadband Wireless Communications
- Brian Lin
- brianlin&aptg.com.tw
-27299
- Informed Computing
- Roger Henry
- r.henry&inform.co.uk
-27300
- TRANSCOM TECHNOLOGIES CO.,LTD
- Changbin Zhang
- lampzhang&163.com
-27301
- galaxy.io
- oidmaster galaxy.io
- oidmaster&galaxy.io
-27302
- Der Senator für Bildung und Wissenschaft
- Wolfgang Lühmann
- wolfgang.luehmann&bildung.bremen.de
-27303
- Clear Value
- Adrien Bourland
- oidmaster&clearvalue.eu
-27304
- DKT A/S
- Nikolaj Hermann
- nih&dkt.dk
-27305
- Satis Superque Merce BV
- Harrie Hazewinkel
- harrie&asemantics.com
-27306
- Automated Computing Machinery, S.L.
- Jose San Leandro
- chous&acm-sl.com
-27307
- Rankin County School District
- Scot Hollingsworth
- scoth&rcsd.ms
-27308
- Unique Communications Inc.
- Brandon Griffin
- brandon&unique.net
-27309
- SSRC Media, LLC
- Adam Hebert
- adam&candorworld.com
-27310
- NetIDEAS, Inc.
- Daniel Cushing
- dan.cushing&netideasinc.com
-27311
- Seni Systems, Inc.
- Judet Useinovski
- judet&senisystems.com
-27312
- EDA LTD.
- Dimitar Angelov
- mitko&edabg.com
-27313
- Sintrex Integration Services Pty. Ltd.
- Adrienne Kotze
- adrienne.kotze&sintrex.com
-27314
- Del Systems d.o.o.
- Marko Medos
- ds&delsystems.net
-27315
- Internet Management Technology Laboratory
- Jong-Hyouk Lee
- hurryon&gmail.com
-27316
- Schoeppner
- Sven Schoeppner
- sven.schoeppner&gmail.com
-27317
- Extreme Engineering Solutions, Inc
- Matthew Starzewski
- mstarzewski&xes-inc.com
-27318
- ISE Inc.
- Abboud Assaf
- support&i-s-e.com
-27319
- Nexen Inc.
- I/T Security Manager
- PKI-Admin&nexeninc.com
-27320
- Kingsbury Inc.
- S. Ohara
- baw&kingsbury.com
-27321
- Ready Technology (UK) Limited
- Daniel Pocock
- iana.contact&readytechnology.co.uk
-27322
- 21Net Ltd.
- Kris Ceuppens
- kris&21net.com
-27323
- Kei Communication Technology Inc.
- Takao Awata
- info&ieee802.co.jp
-27324
- Semejny Doktor
- Alexander Galler
- galler&kuzbass.net
-27325
- Ubiquitech A/S
- Lars Skjærlund
- ls&ubiquitech.com
-27326
- EUIT Telecomunicacion, Universidad Politécnica de Madrid
- Daniel Martin
- daniel.martin&upm.es
-27327
- Mobizoom AG
- Daniel Lusti
- dl&mobizoom.com
-27328
- ROSA - Dansk Rock Samråd
- Rasmus Wehner
- rasmus&rosa.org
-27329
- Business Education Council of Niagara
- Matt Watson
- mwatson&becon.org
-27330
- LKHP Inc.
- Shinichiro Suzuki
- s.suzuki&lkhp.ath.cx
-27331
- JTG 99 ApS
- Ilja Godau
- ilja&godau.dk
-27332
- Sogeti
- Edouard JEANSON
- edouard.jeanson&sogeti.com
-27333
- Buzz Systems Ltd.
- Danie Brink
- danie.brink&gmail.com
-27334
- Multidyne Electronics Inc.
- Rick Hormigo
- rickh&multidyne.com
-27335
- Ritek ZRt.
- Zsolt Balogh
- iroda&ritek.hu
-27336
- Converged Access, Inc.
- Pat Cauduro
- pcauduro&convergedaccess.com
-27337
- CableServ Inc.
- Audley Alexander
- audley&cableserv.com
-27338
- ATEME
- Vincent CLERC
- v.clerc&ateme.fr
-27339
- Project Automation S.p.A.
- Fulvio Zanzottera
- oid&p-a.it
-27340
- OpenVPN Solutions LLC.
- James Yonan
- jim&yonan.net
-27341
- Medianstrip
- Mike Ryan
- iana.org&reg.elision.org
-27342
- Haskology Consulting
- Thomas Conway
- drtomc&gmail.com
-27343
- "Telekom Srbija" a.d.
- Information Technology Division
- oid&telekom.yu
-27344
- Dallmeier electronic GmbH & Co.KG
- Norbert Niggemann
- snmp&dallmeier-electronic.com
-27345
- Alticor, Inc
- Richard Mapes
- itsecurity&alticor.com
-27346
- VDA Elettronica spa
- Leonardo Uzcudun
- uzcudunl&vdavda.com
-27347
- Alexandrow Webhosting
- Paul Alexandrow
- paul&alexandrow.org
-27348
- Blue Spruce Technologies, Inc.
- Charles Owens
- iana&bspruce.com
-27349
- Lonardi.org
- Sandro Lonardi
- sandro.lonardi&gmail.com
-27350
- QEW Europe
- David Persson
- qeweurope&gmx.net
-27351
- Medizinische Fakultät Carl Gustav Carus Dresden an der
-Technischen Universität Dresden
- Thomas Kugel
- thomas.kugel&uniklinikum-dresden.de
-27352
- MAYWIDE TECHNOLOGY CO.,LTD.
- Lydia (Li Bin)
- L-suhexiang&126.com
-27353
- ELTA
- Pierre Dubarry
- p.dubarry&elta.fr
-27354
- epona.org
- Ernesto de Miguel
- emadruida&gmail.com
-27355
- University Politechnical of Bucharest
- Gorea Adrian Marius
- admin&comm.pub.ro
-27356
- DWESAB Engineering
- Michel de Wolf
- michel.de.wolf&dwesab.com
-27357
- ANDROME NV
- Chris Flerackers
- cflerackers&androme.be
-27358
- Technology Dynamics, Inc.
- Aron Levy
- linda&theallpower.com
-27359
- HILTRON GmbH
- Matthias Hayer
- matthias.hayer&hiltron.de
-27360
- NLS Technology LLC
- Norm Siegel
- nls&nlstechnology.com
-27361
- Rizon Software Technology Co.,Ltd.
- Quan Zhen
- quanz&rizon.com.cn
-27362
- Symbio Technologies, LLC
- Gideon Romm
- support&symbio-technologies.com
-27363
- TvHead, Inc.
- Cliff Mercer
- cliff.mercer&tvhead.net
-27364
- Axioma Inc.
- Hollister Scholte
- hscholte&axiomainc.com
-27365
- Softech Worldwide LLC
- Akhlaq Khan
- akhlaq.khan&softech.us
-27366
- INSIGNIA MOBILE COMMUNICATIONS,C.A.
- RICARDO CARRILLO
- ricardo.carrillo&insignia.com.ve
-27367
- Visonys AG
- Erwin Huber
- iana-adm&visonys.com
-27368
- Business I.T. Systems Ltd
- Bryan Stone
- info&bits.uk.com
-27369
- Estçe Lauder Inc
- Greg Daggett
- gdaggett&estee.com
-27370
- Hennepin County
- Paul Edoff
- paul.edoff&co.hennepin.mn.us
-27371
- AspellClark
- andy aspell-clark
- aspellclark&yahoo.co.uk
-27372
- Progenist Systems Inc.
- Rudy Huang
- iana&progenist.net
-27373
- Quickpoint Solutions Limited
- Brandon Wong
- brandon.wong.nz&gmail.com
-27374
- MakeITOpen.Net
- Patrice LACHANCE
- ldap&MakeITOpen.Net
-27375
- IT-Systemhaus Thomas Wiese
- Thomas Wiese
- Thomas.Wiese&gmx.info
-27376
- Triple-It ApS
- Stefan Andersen
- stefan&triple-it.dk
-27377
- Groupster
- Marek Jelen
- marek.jelen&gmail.com
-27378
- Belden
- Brad Pope
- brad.pope&belden.com
-27379
- NESS Consulting Ltd
- Ivor Potter
- ivor.potter&nessconsulting.co.uk
-27380
- PCS Process Control Systems AG
- Rolf Stalder
- rolf.stalder&pcs-ag.com
-27381
- Myndit Pty Ltd
- David Garrard
- david&commsnet.com.au
-27382
- OmniAccess S.L.
- Richard Smith
- richard&omniaccess.com
-27383
- Theo Benning GmbH & CoKG
- Ulrich Borkers
- u.borkers&benning.de
-27384
- Werner Industrielle Elektronik
- Jürgen Platz
- platz&werner-electronic.de
-27385
- ELCON Systemtechnik GmbH
- Ronny Priemer
- priemer&elcon-system.de
-27386
- Farmers Group Inc.
- William Buthod
- william.buthod&farmersinsurance.com
-27387
- IHOP Corp.
- Joe Meyer
- joe.meyer&ihop.com
-27388
- Wiremat Ltd
- Karl Simon
- helpdesk&wiremat.com
-27389
- Splunk, Inc.
- Carl Jackson
- carl&splunk.com
-27390
- iCoGo Inc.
- Virgil Dimaguila
- virgil&icogo.com
-27391
- Braintribe IT Technologies
- Roman Kurmanowytsch
- roman.kurmanowytsch&braintribe.com
-27392
- SCHILLER
- MEYER Didier
- didier.meyer&schiller.fr
-27393
- Metrovacesa, S.A.
- Alberto Martin
- sistemas&metrovacesa.es
-27394
- NOSMadeira
- David de Sousa
- ds&nosmadeira.pt
-27395
- AVANSI C. por A.
- Diego Gil Serrano
- dgil&avansi.com
-27396
- Open Journal Project
- Alexey Remizov
- rem&ojp.ru
-27397
- Praxis Balster-De Beer
- Wolfgang Balster
- wolfgang&balster-balsterdebeer.de
-27398
- Bernd Haug
- Bernd Haug
- bernd.haug&gmail.com
-27399
- Ross Video Limited
- Jeff Allen
- administrator&rossvideo.com
-27400
- Randolph-Macon College
- Jeff Hague
- jhague&rmc.edu
-27401
- Dataupia Corporation
- John Chiu
- jchiu&dataupia.com
-27402
- TaTrad GmbH
- Markus Michael
- itadmin&tatrad.de
-27403
- Frontier IT
- Sean Mullen
- sean&frontierit.com
-27404
- SimpleComTools
- Bill W. Crum
- bcrum&simplecomtools.com
-27405
- René Faigle AG
- Mr. Adrian Nenning
- adrian.nenning&faigle.ch
-27406
- Center Communication Systems GmbH
- Erich Freitag
- e.freitag&centersystems.com
-27407
- BUROTEC
- ABAYAD Tarik
- tabayad&burotec.fr
-27408
- Hotelplan AG
- Daniel Rüegg
- sih.systemmanagement&hotelplan.ch
-27409
- Mondi Packaging AG
- Christian Loidolt
- christian.loidolt&mondipackaging.com
-27410
- SkoleSYS A/S
- Jakob Simon-Gaarde
- jakobsg&gmail.com
-27411
- Curtis J Coleman
- Curtis J Coleman
- curtis-iana&spoonhenge.com
-27412
- Icsoft Pty Ltd
- Administrator
- support&icsoft.com.au
-27413
- Labs2 i Lund AB
- Valdemar Mejstad
- valdemar&labs2.se
-27414
- Stadt Chemnitz
- Klemens Lindenthal
- klemens.lindenthal&stadt-chemnitz.de
-27415
- SiRF Technology, Inc.
- Riju Kallivalappil
- rkallivalappil&sirf.com
-27416
- Elvaco AB
- David Vonasek
- dv&elvaco.se
-27417
- FAST TV-SERVER AG
- Stefan Moeller
- smr&tv-server.de
-27418
- FiSEC GmbH
- Dieter Vollstaedt
- dieter.vollstaedt&fisec.de
-27419
- University of New England
- John Vedral
- jvedral&une.edu
-27420
- Southside Community Hospital
- Kyle Hultman
- khultman&sch-farmville.org
-27421
- Synergy for Smart Solutions
- Younes Ouadi
- ouadi&eim.ae
-27422
- Inter Cars S.A.
- Piotr Polkowski
- piotr.polkowski&intercars.com.pl
-27423
- Potts Mullarkey
- Christine Salvage
- snmpenterprise&pottsmullarkey.com
-27424
- Firstin Wireless Technology
- Changhwan You
- turbocpp&firstinwireless.com
-27425
- Affinity Mobile, Inc.
- Max Knake
- mknake&affinitymobile.com
-27426
- VIASOFT Ltd., Ukraine
- Serg Ageyev
- boss&viasoft.com.ua
-27427
- Vecima Networks Inc.
- Laird Froese
- external.registrations&vecima.com
-27428
- Intesys S.r.l.
- Romano Rosponi
- romano.rosponi&intesys.it
-27429
- IT Service Zahner
- Jens Zahner
- info&it-zahner.de
-27430
- Call Genie Inc
- Tim Pushor
- tim.pushor&callgenie.com
-27431
- Steton Technology Group, Inc.
- David Omer
- dms&steton.com
-27432
- Archalien.com
- Bryan Hunwardsen
- archalien&archalien.com
-27433
- Centeris Corporation
- John Geer
- jgeer&centeris.com
-27434
- Hal's Software, Inc.
- Hal Finkel
- half&halssoftware.com
-27435
- Aozora Information Systems Co. Ltd.
- Robert O'Grady
- iana&aozora-is.co.jp
-27436
- Jefferies & Company, Inc.
- Dan Strzelec
- DStrzelec&jefferies.com
-27437
- TOA Corporation
- Shigeru Sugita
- sugita_shigeru&toa.co.jp
-27438
- Eric Lindahl
- Eric Lindahl
- eric&ericlindahl.com
-27439
- OpenAgentSystem
- Justin Kim
- jst.kim&gmail.com
-27440
- Ingo Lantschner
- Ingo Lantschner
- ingo&binonabiso.com
-27441
- PEM GmbH
- Kevin Humphries
- kevin.humphries&pem-systems.com
-27442
- SAPERION AG
- Bernhard Cygan
- Bernhard.Cygan&saperion.com
-27443
- yLabs SRL
- Octavian Cerna
- tavy&ylabs.com
-27444
- Murphy Software B.V.
- Ton Nijkes
- ton&murphy.nl
-27445
- InforMed, LLC
- Ryan Frantz
- ryanfrantz&informed-llc.com
-27446
- PAHL.NET systems
- Ole Pahl
- op&pahl.net
-27447
- Femtio Procent Data AB
- Lars Nordberg
- fpd&telia.com
-27448
- The Aero Group, Inc.
- Jason Nesheim
- jason&aeroinc.net
-27449
- Universidad de Buenos Aires
- Carolina León Carri / Esteban Mocskos
- mcarri&dc.uba.ar
-27450
- RealOrganized, Inc.
- Scott Schmitz
- scott&realorganized.com
-27451
- Aurcon Computer Services
- Darren O'Connor
- darren.oconnor&aurcon.com
-27452
- Billings Clinic
- Information Services
- network&billingsclinic.org
-27453
- LANE COMPANY
- Tony Bowen
- tbowen&lanecompany.com
-27454
- NeoMentis Ltd
- Will Daniels
- mail&neomentis.com
-27455
- Schlesinger Associates, Inc.
- Joe Kreher
- Joe&SchlesingerAssociates.com
-27456
- University of Warwick
- Jaroslaw Zachwieja
- grok&warwick.ac.uk
-27457
- Joomla! (OpenSourceMatter Inc)
- Samuel Moffatt
- sam.moffatt&joomla.org
-27458
- Flo Healthcare
- Karl Haiden
- karl.haiden&flohealthcare.com
-27459
- INTLNET
- JFC Morfin
- info&intlnet.org
-27460
- Digital Maelstrom LLC
- Jeff Hall
- contact&digitalmaelstrom.net
-27461
- Knit One Pearl One
- Olivia Clarke
- knitonepearlone&gmail.com
-27462
- Bubble Motion Pte Ltd
- Gunamony Madhan Dennis
- madhan&bubblemotion.com
-27463
- ThüCom GmbH
- Bernd Wunder
- b.wunder&thuecom.com
-27464
- Projekty Bankowe Polsoft sp. z o.o.
- Maciej Lewandowski
- maciej.lewandowski&pbpolsoft.com.pl
-27465
- Domodesk S.L.
- Departamento de desarrollo
- project&domotium.com
-27466
- Inter IKEA Systems BV
- Anders Östling
- anders.ostling&inter-ikea.com
-27467
- NETHINKS GmbH
- Garry Glendown
- hostmaster&nethinks.com
-27468
- ELTA-R
- Stanimir Stoyanov
- stani&elta.bg
-27469
- Glowlink Communications Technology Inc.
- Bob Estus
- ushq&glowlink.com
-27470
- Kuorem IT Consulting s.l.
- Alfonso Rodriguez Fernandez-Cuesta
- arodriguez&kuorem.com
-27471
- Kotelett Group
- Chris Qvigstad
- hostmaster&kotelett.no
-27472
- Peak Web Consulting, Inc.
- Stephen Friedl
- steve&peakwebconsulting.com
-27473
- Consejo de la Magistratura de la Ciudad Autonoma de Buenos Aires
- Gustavo Panizzo
- root&jusbaires.gov.ar
-27474
- Multi Co
- KAZUYA YAMAGUCHI
- pen-admin&multig.jp
-27475
- CiriTech Systems, Inc.
- Anumele Raja
- araja&ciritech.com
-27476
- MicsGarage
- Michael Lumley
- mic&micsgarage.com
-27477
- Ethrix ltd.
- Avi Kadosh
- avik&ethrix.com
-27478
- Boekingspunt Nederland BV
- Wijnand Modderman
- iana-contact&booking.com
-27479
- Projekt 42! GmbH
- Gerhard Strehle
- gstrehle&zweiundvierzig.de
-27480
- FORSIS GmbH
- Steffen Poppe
- steffen.poppe&forsis.de
-27481
- Arzl Datentechnik
- Markus Arzl
- mark1&arzl.net
-27482
- G2 Microsystems Pty Ltd
- David Goodall
- david.goodall&g2microsystems.com
-27483
- OpenSIPS.ORG (formerly 'OpenSER.ORG')
- Bogdan-Andrei Iancu
- bogdan.iancu&voice-system.ro
-27484
- Eightwire.com Limited
- Daniel Hodson
- daniel.hodson&eightwire.com
-27485
- JSC Public Key Infrastructure
- Viktor Lapin
- csk&ivk.org.ua
-27486
- swissgeek.org
- Olivier Beytrison
- olivier&swissgeek.org
-27487
- Kent County Council
- Mick Mason
- Mick Mason&kent.gov.uk
-27488
- A.T.U Handels GmbH
- Bernhard Panzer
- sysadminwin&de.atu.eu
-27489
- Evangelisch-Lutherische Landeskirche in Braunschweig
- Markus Reinmuth
- edv.lka&lk-bs.de
-27490
- SP Swedish National Testing and Research Institute
- Per-Olof Eliasson ATa
- per-olof.eliasson&sp.se
-27491
- Freeport Technologies Inc.
- David Tucker
- dtucker&freeporttech.com
-27492
- Major Hospital
- Todd Goul
- tgoul&majorhospital.com
-27493
- Dirección de Tecnología Educativa
- Guadalupe Miranda Zamora
- gmiranda2&hotmail.com
-27494
- Seatore Technology
- Juer Lee
- juer.lee&seatore.com
-27495
- Optiway
- Luca Berkovichi
- enadmin&walla.com
-27496
- MALAIWAH.COM
- Michel Belleau
- michel.belleau&malaiwah.com
-27497
- Fiducial Staffing
- Hubert FONGARNAND
- informatique.internet&fiducial.fr
-27498
- Innovative Technology Solutions, LLC
- Leonard Danao
- LDanao&itsllc.com
-27499
- Operations Feedback Systems Pty. Ltd.
- C. Charles Winchcombe
- quinch&ofsystems.com
-27500
- Dawning Ltd.
- Yuan Ma
- mayuan.ict&gmail.com
-27501
- Seldon Systems, Inc.
- Jeff Burgett
- jburgett&seldonsystems.com
-27502
- ARAB BANKING COPORATION
- HUSAM SAOUDI
- HUSAM.SAOUDI&ARABBANKING.COM
-27503
- TD Computer Solutions GmbH & Co. KG
- Thomas Duennemann
- info&tdcs.de
-27504
- Celtius Ltd
- Lasse Kiviluoto
- Lasse.Kiviluoto&celtius.com
-27505
- KT-NET Communications GmbH
- Dieter Klausner
- domadmin&kt-net.at
-27506
- Object Builder Software - Bulgaria
- Georgi Stanchev
- admins&obs.bg
-27507
- Automation Control Products Inc.
- Randy Cannady
- randy&acpthinclient.com
-27508
- TravelCenters of America
- Neil Vergottini
- vergottini.neil&tatravelcenters.com
-27509
- Creanord Ltd.
- Antti Pappila
- antti.pappila&creanord.com
-27510
- NetGain Systems Pte. Ltd.
- Issac Dev Nirmal
- issac&netgain-systems.com
-27511
- Gigante Inc.
- Yoshihisa Koizumi
- koizumi&gigante.jp
-27512
- M3 Technology Group
- Nate Harris
- m3support&m3tg.com
-27513
- Pro-E Automation Sdn Bhd
- Mr.Kanna / Mr.Magesh
- kanna&pro-e.net
-27514
- QTECH LLC
- Basil Budko
- budko&qtech.ru
-27515
- Stockholms stad
- Martin Dolk
- martin.dolk&stadshuset.stockholm.se
-27516
- NIVC AS
- Alexey Ivanov
- amis&amiga.org.ru
-27517
- GT50 Srl (formerly 'Secure Edge Srl')
- Sandro Fontana
- sandro.fontana&gt50.org
-27518
- ProMedica Health System
- Mark Dailey
- mark.dailey&promedica.org
-27519
- Pozicom Technologies, Inc.
- Eric Mayo
- eric&pozicom.net
-27520
- International Electronic Communication Analysts (IECA), Inc.
- Christopher Bonatti
- BonattiC&ieca.com
-27521
- eMusic.com, Inc.
- hgoldwire&emusic.com
- hgoldwire&emusic.com
-27522
- Municipio de la Ciudad de Monterrey
- Sergio Camarena
- sergio&monterrey.gob.mx
-27523
- runlevel3 GmbH
- Stephan Hantigk
- X.500&runlevel3.de
-27524
- TRIAX CZ s.r.o.
- Martin Bednar
- bednar&triax.cz
-27525
- DET 1 AFEREG
- DAVE PHILLIPS
- dave.phillips&oln-afmc.af.mil
-27526
- Kanazawa University
- Tomohiko Imachi
- jimu&imc.kanazawa-u.ac.jp
-27527
- ABB Ltd
- Natalie Eliasson
- domain.administration&abb.com
-27528
- Dragon Stock labo Inc.
- Hiroshi Ito
- hi_02258&yahoo.co.jp
-27529
- dri, Consultoria Informática Lda
- Ricardo Melo
- ricardo.melo&dri.pt
-27530
- decontis GmbH
- Michael Hanel
- no_spam&decontis.com
-27531
- Planned IT Solutions, Inc.
- Scott Pascoe
- manager&planneditsolutions.com
-27532
- Hancock Regional Hospital
- Dan Allee
- dallee&hancockregional.org
-27533
- BKE a.s.
- Jiøí Raputa
- jraputa&bke.cz
-27534
- Widestore srl
- Technical Department
- tech&widestore.net
-27535
- Artwork Systems nv
- Pieter Van Landuyt
- pvla&artwork-systems.com
-27536
- SANTECLAIR
- Benoît REY
- brey&santeclair.fr
-27537
- Educatio Public Services Non-profit Llc.
- dr. Edit Polyák
- edit.polyak&edukht.hu
-27538
- ADTSystems s.r.o.
- Petr Nyklicek
- petr_nyklicek&adtsystems.cz
-27539
- Pacific DataVision, Inc.
- Mike Fox
- mfox&pdvcorp.com
-27540
- SIMPPLE S.L.
- Pere Cortada
- pere.cortada&simpple.com
-27541
- ITSSeevia Group
- Jean-Philippe Roze
- jproze&itsgroup.fr
-27542
- COSAT INC.
- TOMIYAMA Yoshihiro
- tmy&cosat.com
-27543
- Gillware Data Services, LLC
- Wesley Gill
- wesley&gillware.com
-27544
- NSK OpenSource, Inc
- Mike Kilpatrick
- mike_kilpatrick&nskopensource.com
-27545
- NINOMIYA TOWN
- EBIHARA, SHINICHI
- jo-kan&town.tochigi-ninomiya.lg.jp
-27546
- American University of Beirut
- Samih Ajrouch
- samih&aub.edu.lb
-27547
- Four Batons Technology
- Johnathan Mayo
- johnathanm&fourbatons.com
-27548
- KRS Hardware Monitoring Development
- Erik Holzer
- info&kraftstrom.at
-27549
- TELESANTE AQUITAINE
- Régis ROSE
- exploitation&sante-aquitaine.org
-27550
- Alchemy Group Limited
- Dean Ashby
- d.ashby&alchemy.co.nz
-27551
- Farheap Solutions Inc.
- Jared Griffith
- jared.griffith&farheap.com
-27552
- Nimbus, Inc.
- Kang Kyung Wan
- bigskang&gmail.com
-27553
- Salem Academy and College
- Adam Sommer
- sommer&salem.edu
-27554
- PureTech Systems Inc.
- Monroe Thomas
- monroe.thomas&soundprint.com
-27555
- Rosum Corporation
- Dave Gotwisner
- dgotwisner&rosum.com
-27556
- The PTR Group Inc
- Keith Buchanan
- Keith&theptrgroup.com
-27557
- Botech AB
- Henrik Johansson
- henrik.johansson&botech.se
-27558
- IHMC
- James Lott
- jlott&ihmc.us
-27559
- Data Science Group, Inc
- Christian L. Straight
- clstraight&datasciencegroup.com
-27560
- Alan Dick and Company Ltd
- Matt Middleton
- matt.middleton&alandick.com
-27561
- Indeca
- Luis Moreno
- luis&indeca.info
-27562
- daemon software
- Håkan Carlsson
- snmp&daemon.se
-27563
- QStar Technologies, Inc.
- cs&qstar.com
- cs&qstar.com
-27564
- UNIFAL-MG - Universidade Federal de Alfenas
- Vitor Renato Alves de Brito
- vitorrenato.brito&unifal-mg.edu.br
-27565
- Ministerio de Industria Turismo y Comercio
- Carlos Maza
- iana&mityc.es
-27566
- Vizrt
- Fabian Kroell
- fkroell&vizrt.com
-27567
- Baur GmbH
- Martin Naumann
- martinnaumann&mac.com
-27568
- Kupetto
- Marco Cupidi
- kupo&atomictag.com
-27569
- National Digital Medical Archive, Inc.
- Andrew Schaefer
- aschaefer&ndma.us
-27570
- GiaRoCo
- Roberto Giana
- iana&giaroco.ch
-27571
- Guenther Brunthaler EDV Dienstleistungen
- Guenther Brunthaler
- gb_about_gnu&gmx.net
-27572
- CEOS Integradores de Sistemas C.A.
- Oscar Pizarro
- oscar.pizarro&ceos.com.ve
-27573
- TechGuard Security, LLC (formerly 'the-ferret.net')
- Derrick Oetting
- derrick.oetting&techguardsecurity.com
-27574
- 10MT Co.
- wang senlin
- wangsenlin&vip.sina.com
-27575
- DSL Internet Corporation
- Javier Aguirre
- jaguirre&dsli.net
-27576
- Envysion, Inc
- Robert Hagens
- rhagens&envysion.com
-27577
- R. D. Pierce
- Dick Pierce
- dpierce&cartchunk.org
-27578
- cartchunk.org
- Dick Pierce
- dpierce&cartchunk.org
-27579
- Keltron Corporation
- Dick Pierce
- dpierce&keltroncorp.com
-27580
- Integrity Soluções em Informática Sociedade Simples
- Rodrigo Grumiche Silva
- grumiche&integrityit.com.br
-27581
- Netum Oy
- Petri Lappalainen
- petri.lappalainen&netum.fi
-27582
- pH Group Ltd
- Hari Sekhon
- hari.sekhon&phgroup.com
-27583
- Metronik d.o.o.
- Janez Zmuc
- janez.zmuc&metronik.si
-27584
- Upplysningscentralen AB
- Anders Heintz
- anders.heintz&uc.se
-27585
- Orange Nederland BV
- H. Kutukcuoglu
- huseyin.kutukcuoglu&orange-ftgroup.com
-27586
- Altai Technologies Limited
- Sammy Chau
- sammyc&altaitechnologies.com
-27587
- Shinto Densan Corporation
- Goro Murakami
- gmurakami&sdkk.co.jp
-27588
- KingsIsle Entertainment, Inc.
- Emil Ramirez
- eramirez&kingsisle.com
-27589
- ZBN (Zhengzhou Broadcasting TV Network) Co. Ltd.
- Yang Xu
- shiuyx-2006&yahoo.com.cn
-27590
- Cardinal Information Systems Ltd.
- Christian Kvikant
- christian.kvikant&cardinal.fi
-27591
- Bit-Side GmbH
- Andreas Roedl
- a.roedl&bit-side.com
-27592
- Beijing NetEast Technologies Corporation Ltd
- wang ting yu
- w.t.y&163.com
-27593
- Media Excel, Inc.
- Jon Clegg
- jon.clegg&mediaexcel.com
-27594
- Skipper Wireless, Inc.
- Sumitaka Matsumoto
- sam&skipperwireless.com
-27595
- NWP-Technologie Informatyczne
- Przemek Michalski
- przemek.michalski&nwp.pl
-27596
- NONNIC
- Steve Conley
- ssc&sysoplink.net
-27597
- CADIGS Ltd.
- Maik Wittchen
- mwittchen&cadigs.com
-27598
- Ayuntamiento de Madrid - Policia Municipal
- Fco. Javier Guerrero González
- guerrerogja&munimadrid.es
-27599
- BIT-Kazan Ltd.
- Raskin Igor
- barabanov&bit-kazan.ru
-27600
- C?!., C por A
- beno
- sai+gar&2012.vi
-27601
- Higher Institute for Applied Sciences and Technology (HIAST)
- Iyad Seyd Darwish
- isdarwish&hiast.edu.sy
-27602
- Woodforest National Bank
- Victor Chataboon
- vchataboon&woodforest.com
-27603
- Groove Mobile
- Nicholas Saparoff
- nick&groovemobile.net
-27604
- Tetralogyx
- Jean-Loup DARNAY
- jeanloup.darnay&tetralogyx.fr
-27605
- Urzad Miasta Stolecznego Warszawy
- Krzysztof Teperek
- netmaster&warszawa.um.gov.pl
-27606
- Global NetWatch, Incorporated
- Renae Mazur
- renae.mazur&globalnetwatch.com
-27607
- Skin and Cancer Foundation Inc.
- Joe Mercuri
- infotech&skincancer.asn.au
-27608
- Wuhan Yangtze Optical Technology Co., Ltd
- zhengzhi
- zhengzhi&yotc.cn
-27609
- Dash Navigation Inc.
- Senthil Supramaniam
- senthil&dash.net
-27610
- Solarcore, Inc.
- Darren E. Kiel
- darren.kiel&solarcore.com
-27611
- Traffix Systems Ltd
- Ben Volkow
- bvolkow&traffixsystems.com
-27612
- SmartStream Technologies
- Ameya Bhakay
- ameya.bhakay&smartstream-stp.com
-27613
- AlbaNova University Center, the Stockholm Center for Physics,
-Astronomy and Biotechnology
- Iouri Belokopytov
- yb&albanova.se
-27614
- Ascom Sweden AB
- Martin Kvarmo
- martin.kvarmo&ascom.se
-27615
- devolo
- Christian Katsch
- Christian.Katsch&devolo.de
-27616
- Phaedrus Ltd
- Roy Schofield
- roy&phaedrusltd.com
-27617
- PayEx Solutions AB
- Pelle Johansson
- pelle.johansson&payex.com
-27618
- Sihl + Eika Papier AG
- Thomas Moll
- thomas.moll&papyrus.com
-27619
- BeWAN Systems
- Christophe VAN DEPUTTE
- christophe.vandeputte&bewan.com
-27620
- GS1 Uruguay
- Martin Rivadavia
- mrivadavia&gs1uy.org
-27621
- National Information Technologies JSC
- Bagdat Musin
- musin&nit.kz
-27622
- Open Communication Security S.A.
- Marcelo Fiori
- mfiori&opencs.com.br
-27623
- Shavlik Technologies LLC
- Eric Schultze
- eric.schultze&shavlik.com
-27624
- Metanoia Communications Inc.
- WuLung Hsu
- wuulong&gmail.com
-27625
- UZ Brussel
- vital claeys
- vital.claeys&az.vub.ac.be
-27626
- SK-NIC, a.s.
- Patrik Krauspe
- patrik.krauspe&sk-nic.sk
-27627
- Ceskoslovenska obchodni banka, a.s.
- DAVID Zdenek
- zdavid&csob.cz
-27628
- Unum Group
- Jediah Logiodice
- jlogiodice&unumprovident.com
-27629
- Helenic Ministry of Interior Public Administration and
-Decentralization / Helenic Public Administra
- Stasis Antonis
- a.stasis&ypesdda.gov.gr
-27630
- OSI ste civile etudes et recherches
- Jose H. REMY
- jose.remy&openosi.org
-27631
- Touchstone Technologies Inc.
- Robert Hicks
- robert.hicks&touchstone-inc.com
-27632
- MVNO Sherpa
- Hugh McLenaghan
- hmclenaghan&mvnosherpa.com
-27633
- Eternix Ltd.
- CTO
- yoav.zobel&gmail.com
-27634
- ABC Phones of NC Inc.
- Jason DeTiberus
- jason.detiberus&abcphones.com
-27635
- Wholesale Communications Group P/L
- Ben Jones
- bjones&wcg.net.au
-27636
- F. Camara Informática Ltda
- Renato Cesar de Souza
- rcdsouza&terra.com.br
-27637
- Lateral Networks Ltd
- Bob Berryman
- bob&sanlogan.com
-27638
- Gulf Interstate Engineering
- James Delahanty
- ianainfo&gie.com
-27639
- Nashua Mobile (Pty) Ltd
- Richard Mayhew
- richardm&nashuamobile.com
-27640
- Telefonica Moviles España, S.A.
- Marc Mollà Roselló
- marc.mollarosello&telefonica.es
-27641
- Junta de Extremadura
- Rafael Arroyo Perez
- comtic&juntaextremadura.net
-27642
- Manuel Linsmayer
- Manuel Linsmayer
- ldap&expersite.com
-27643
- Zeda Ltd.
- Richard Lawrence
- r.lawrence&zeda.co.uk
-27644
- CFC Informationssysteme Entwicklungsgesellschaft m.b.H.
- Thomas Zellinger
- office&cfc.at
-27645
- PostgreSQL Global Development Group
- Dave Page
- dpage&postgresql.org
-27646
- Systems Engineering & Assessment Ltd
- Gavin Whitelaw
- gjw&sea.co.uk
-27647
- Iskra Zascite d.o.o.
- Bostjan Kroselj
- bostjan.kroselj&iskrazascite.si
-27648
- ESPCI
- Emmanuel Dreyfus
- info&espci.fr
-27649
- Hay Systems Limited
- Technical Support
- support&haysystems.com
-27650
- Herward Hoyer
- Herward Hoyer
- gua808&web.de
-27651
- ProConsultant Informatique
- BOURSON Thierry
- tech&proconsultant.net
-27652
- SUNY
- David Powalyk
- domainmaster&suny.edu
-27653
- MyRunning.com
- Josh Forester
- josh.iana.org&myrunning.com
-27654
- Tain Malta Ltd. (formerly 'Involve Ltd.')
- Hans Engren
- noc&tain.com
-27655
- IFP
- Rainer Faulstich
- Rainer.Faulstich&ifp-beisch.com
-27656
- HafenCity Universität Hamburg
- Michael Knop
- michael.knop&hcu-hamburg.de
-27657
- Hugh McLenaghan
- Hugh McLenaghan
- hughmcl&hotmail.com
-27658
- Agemarks Technologies
- Allen Zhang
- azhang&agemarks.com
-27659
- Atol, Conseils et Développements
- Meunier Laurent
- l.meunier&atolcd.com
-27660
- Deutsche Welle
- Arno Wagner
- arno.wagner&dw-world.de
-27661
- GateSquare Co., Ltd.
- Yoon Hyung Taek
- yun&gate2.co.kr
-27662
- PePWave Ltd.
- Michael Chan
- hostmaster&pepwave.com
-27663
- AFP548.com
- Josh Wisenbaker
- macshome&afp548.com
-27664
- Intuicom, Inc.
- Peter Miller
- snmp&intuicom.com
-27665
- ISR Inc.
- Russ Lohman
- rlohman&spraycool.com
-27666
- NF Media Inc.
- Chen Ming
- chenm&yeah.net
-27667
- Apprion, Inc
- Mike Taylor
- mike.taylor&apprion.com
-27668
- Olivier Molteni
- Olivier Molteni
- olivier&molteni.net
-27669
- easyRAID
- Carsten Wilde
- info&easyraid.com
-27670
- Tirol Kliniken GmbH.
- Erwin Seyrling
- erwin.seyrling&tirol-kliniken.at
-27671
- ATL Systems, Inc.
- Kenji Yamaguchi
- atl-regist&atl-systems.co.jp
-27672
- Electool Systems Kft.
- Tamas Lorincze
- tamas.lorincze&electool.com
-27673
- QUOD Financial SA
- Mickael Rouillère
- mickael.rouillere&quodfinancial.com
-27674
- Mobibrasil Soluçoes Interactivas pela internet
- javier renedo
- fgil&mobibrasil.com
-27675
- Curtiss-Wright Controls, Inc.
- Paralegal
- ksamuelson&curtisswright.com
-27676
- Motionbox, Inc
- Nathan Olla
- sysadmin&motionbox.com
-27677
- Evolution Broadcast Pty. Ltd.
- David Sabine
- dsabine&evolution.com.au
-27678
- Jazzio
- Mo McRoberts
- mo&jazzio.com
-27679
- The Hyde Company
- Franklin Marmon
- marmon&hydeco.com
-27680
- NEMO ENG
- Sung Jin Kim
- helloforest&daum.net
-27681
- Technorati Inc
- Jason Matthews
- jason&broken.net
-27682
- ALBA Software S.L.
- José Luis Sanz Boixader
- albasoft&albasoft.com
-27683
- Mscorp Venezuela C.A.
- Jose Luis Guerrero
- jguerrero&mscorp.com
-27684
- Idopte
- Dimitri Langlois
- dimitri.langlois&idopte.fr
-27685
- Trent University
- Andrew Bell
- andrewbell&trentu.ca
-27686
- Refactored Networks, LLC
- Michael mealling
- michael&refactored-networks.com
-27687
- DataMirror Corporation
- Victor Szabo
- vszabo&datamirror.com
-27688
- Keane, Inc.
- Jim Ouellette
- ssladmin&keane.com
-27689
- Enertel Wireless BV
- Joffrey van Wageningen
- jwageningen&enertel-wireless.nl
-27690
- Arqiva
- Richard Smith
- richard.smith&arqiva.com
-27691
- Framework Computer Consultants Limited
- Andy Dowling
- andy.dowling&frameworksolutions.net
-27692
- Thinware s.r.l.
- Carlo Todeschini
- work&thinware.it
-27693
- Voith AG
- Uwe Gobbers
- uwe.gobbers&voith.com
-27694
- UTU Inc.
- BYUNG JOO KANG
- bjkang&u2tech.co.kr
-27695
- Meteor Mobile
- Adrian Whitwham
- adrian.whitwham&meteor.ie
-27696
- AttoSense
- Erez Mutzafi
- erez&atto-sense.com
-27697
- GRAVITY CIS INC
- Mezentsev Alexandr
- mezentsev&gravity-cis.ru
-27698
- Vaal Hosting
- Nico Coertzen
- admin&vaalhost.za.net
-27699
- Tyche Enterprises, LLC
- Frank Cowell
- fcowell&tyche.net
-27700
- Open Diameter Project
- Vinayak Hegde
- hvinayak&novell.com
-27701
- Origin Electric co.,Ltd.
- Tomonari Koizumi
- koizumtm&hq.origin.co.jp
-27702
- Beijing Softtone Company, Ltd.
- Chen Feijie
- chen.feijie&softtone.com
-27703
- CABO Communications A/S
- Jakob Simon-Gaarde
- jakob&cabo.dk
-27704
- Keisokugiken Corporation
- Kazuo SAITO
- ksaito&kgc.co.jp
-27705
- 1984 ehf
- Mordur Ingolfsson
- mordur&1984.is
-27706
- E-commerce-xhtml 1.1 dot com
- Adam Hayden
- here4u&e-commerce-xhtml.com
-27707
- Siminn
- Haflidi S. Magnusson
- haflidi&siminn.is
-27708
- ISB Brachert
- Marcus Brachert
- Marcus&Brachert.de
-27709
- Software Applications
- Walter Wriesnegger
- wriesnegger&soap.at
-27710
- hostNET Medien GmbH
- Sebastian Jaeschke
- iana&hostnet.de
-27711
- 1053935 Alberta Ltd.
- Sergei Agalakov
- Sergei.Agalakov&gmail.com
-27712
- Managing Company SB JSC
- Alexander S. Efimov
- alexe&sibbereg.ru
-27713
- Ethon
- Arne Steinkamm
- info&ethon.de
-27714
- Arne Steinkamm
- Arne Steinkamm
- arne&steinkamm.com
-27715
- Posterity Technologies Co. Ltd
- Sword Chen
- swordchen&posteritytech.com
-27716
- Minnesota State Colleges and Universities
- Michael Janke
- hostmaster&mnscu.edu
-27717
- CeDoc Modena
- Luca Prampolini
- tecnici&cedoc.mo.it
-27718
- Selfservix IT-Service
- Michael Brandstetter
- brandstetter&selfservix.de
-27719
- Vizioncore, Inc.
- Scott Herold
- sherold&vizioncore.com
-27720
- SBone.DE
- Bjoern A. Zeeb
- oid-registry&zabbadoz.net
-27721
- Dotster, Inc.
- Micah McNelly
- mmcnelly&dotster.com
-27722
- Pennic Consulting Inc
- Nick Cottrell
- nick&pennic.com
-27723
- Permessa Corporation (formerly 'DYS Analytics, Inc.')
- Stephen Grinder
- sgrinder&permessa.com
-27724
- Opticomm Corporation
- Matt Babineau
- mbabineau&opticomm.com
-27725
- Asurion
- Cory Plastek
- directoryservices&asurion.com
-27726
- Executive Coach Inc.
- Edward Lanning
- edward&usacoach.net
-27727
- Antartec S.A.C.
- Alfredo César Zorrilla Ríos
- alfredo.zorrilla&antartec.com
-27728
- Datron World Communications, Inc
- Art Lashbrook
- alashbrook&dtwc.com
-27729
- US Technology Resources LLC
- Biju Gopinath
- biju.gopinath&ustri.com
-27730
- Leporis Corporation
- Peter Zhang
- peter.zhang&leporisco.com
-27731
- Western Power
- Derek Smith
- derek.smith&westernpower.com.au
-27732
- OnionSoftware, Inc.
- Hee-Soon Kim
- snmp&onionsoftware.com
-27733
- ASW Systems s.r.o.
- Michal Leinweber
- lei&aswsyst.cz
-27734
- Squitel
- Jacques Demare
- contact&squitel.com
-27735
- YawaBureau s.r.l.
- Site Administrator
- job415&yawabureau.com
-27736
- Smile Ltd.
- Andrew Brainin
- ab&smile-soft.com
-27737
- Berendsen Group Services GmbH
- Martin Röh
- martin.roeh&berendsen.de
-27738
- VERIT Verwaltungs- und Immobilien-Gesellschaft
- Christian Jenny
- christian.jenny&verit.ch
-27739
- Taunis GmbH
- Christoph Aigner
- avisu&gmx.at
-27740
- ADFC LV Berlin e.V.
- Dirk Slaghekke
- edv&adfc-berlin.de
-27741
- AAA Carolinas
- Mark Daeth
- domainadmin&mailaaa.com
-27742
- Flying Horse Studios
- Greg Ball
- gball&flyinghorsestudios.com
-27743
- Shaney
- Davide Fiorentino
- davide.fiorentino&shaney.net
-27744
- Majik Networks Inc.
- Taylor Dondich
- tdondich&gmail.com
-27745
- 4Step Ltd.
- Zsolt Kovacs
- kovacs&4step.hu
-27746
- The institute of science and technology
- JingShen
- lwshenjing&163.com
-27747
- CAMINO MO
- Marc Olivier CAMINO
- abocomar&yahoo.fr
-27748
- Canon Korea Business Solutions Inc.
- Ho-jin, Kim
- hojikim&canon-bs.co.kr
-27749
- Stennis Institute of Government
- Tim Tsai
- iana&sig.msstate.edu
-27750
- GoodsoftwareLab Co. Ltd.
- Lim WangKyu
- wklim&goodsw.com
-27751
- Firefly FZ LLC
- Thomas Groves
- tom.groves&firefly-group.com
-27752
- 4A Consulting AB
- Marcus Jansson
- snmp&4a.se
-27753
- Nucleo Operacional para a Sociedade de Informação (NOSI)
- Helio Varela
- helio.varela&nosi.cv
-27754
- Affinite Corporation
- Robert Finkle
- rfinkle&affinite.com
-27755
- FiveRuns
- Mark Reynolds
- mark.reynolds&fiveruns.com
-27756
- Renaissoft, Inc.
- Robert LeBlanc
- rjl&renaissoft.com
-27757
- Solis Energy, Inc.
- Duane L. Roberts
- Duane&SolisEnergy.com
-27758
- ServiceSoft Sdn. Bhd.
- Mohamed Shazrin
- shazrin&gmail.com
-27759
- Sense8 UK Ltd.
- Dr. Austin Osuide
- austin&osuide.com
-27760
- Novo Mundo Moveis e Utilidades Ltda
- Frederico C Wilhelms
- fredcw&novomundo.com.br
-27761
- System One GmbH
- Martin Hechenberger
- martin.hechenberger&systemone.at
-27762
- Fixe-Post
- Robert Welz
- welz&fixe-post.de
-27763
- Accuratus Consulting, LLC.
- Jack Pestaner
- jpestaner&accuratusconsulting.com
-27764
- DONG Energy A/S
- Ole Ahleson
- oleah&dongenergy.dk
-27765
- Welltrans O&E Technology Co. , Ltd.
- jin pan
- jing111521&163.com
-27766
- Grid Net, Inc.
- Ray Bell
- ray&grid-net.com
-27767
- JavaService Consulting
- SungJo Kim
- sjkim&javaservice.com
-27768
- Gesellschaft für Netzwerk- und Automatisierungs-Technologie mbH
-(N.A.T.)
- Helmut Laufkoetter
- helau&nateurope.com
-27769
- Université de Perpignan Via Domitia
- Centre de Ressources Informatiques
- ldapadmin&univ-perp.fr
-27770
- MIS Corporate Defence Solutions
- Neal Blount
- neal.blount&mis-cds.com
-27771
- EVOLIS
- OLIVIER Serge
- solivier&evolis.com
-27772
- Sidon GmbH
- Esref Yetkin
- eyetkin&sidon-gmbh.com
-27773
- Zabiuk
- John Zabiuk
- johnz&nait.ca
-27774
- CenturyTel, Inc.
- Chris Hancock
- hostmaster&centurytel.net
-27775
- Site Monitoring Solutions Inc.
- Trey Seastrunk
- treys&site-safe.com
-27776
- IDAC Ltd.
- Masayuki Shigihara
- mshigihara&idac.co.jp
-27777
- Auptyma Corporation
- Peter Utzig
- peter&auptyma.com
-27778
- UnState educational establishment of additional education "Educational center "Meson"
- Anatoly Botcharov
- a.bocharov&meson.ru
-27779
- OFFRATEL
- David MAJOREL
- tech&lagoon.nc
-27780
- Public Surplus, LLC
- Luis Londono
- admin&publicsurplus.com
-27781
- Ministerio de Empleo y Seguridad Social (formerly 'Ministerio de Trabajo e Inmigracion')
- Miguel Gendive
- mgendive&meyss.es
-27782
- OnFin
- Alexandre VALENTIN
- alexandre.valentin&on-fin.com
-27783
- Mulder Innova BV
- W Mulder
- willem&mulderinnova.com
-27784
- Sensata Technologies
- Tom Connors
- SensataNet&Sensata.com
-27785
- Vialogy
- Alan Morrissett
- vadmin&vialogy.com
-27786
- Five Mile Capital Partners, LLC
- Gary Maier
- gmaier&fivemilecapital.com
-27787
- Compart AG
- Stefan Urbat
- sur&compart.net
-27788
- eco-warehouse
- Jeff Gordon
- info&eco-warehouse.net
-27789
- Catalina Technologies
- Gary Maier
- gary.maier&catalinatech.com
-27790
- S5 Wireless Inc
- Eliot Weitz
- eweitz&s5w.com
-27791
- eMobile Networks Inc.
- OID Admin
- oid.admin&emobilenetworks.com
-27792
- Editure Ltd
- Aris Theocharides
- aris.theocharides&editure.com
-27793
- mythofbutterfly.com
- darrik mazey
- contact&mythofbutterfly.com
-27794
- GENETEC Corporation
- Ysohihito Gotoh
- snmp-enterprise&genetec.co.jp
-27795
- Guardian Equipamentos Eletronicos Ltda
- Carlos Alberto Falkenbach
- falk&guardian.ind.br
-27796
- Embedded Control Logic Corp.
- Mark Roberts
- mark&ecl.us
-27797
- Nata-Info Ltd.
- Andrey Ivanov
- support&nata-info.ru
-27798
- SES NEW SKIES B.V.
- Stefan Okhuijzen
- stefan.okhuijzen&ses-newskies.com
-27799
- 7iD Technologies GmbH
- Christian Chladil
- christian.chladil&7id.at
-27800
- PKE Electronics AG
- Manfred Jiras
- m.jiras&pke.at
-27801
- Fejer Megyei Szent Gyorgy Hospital
- Bagyal Tamas
- tbagyal&fmkorhaz.hu
-27802
- NEXPLORE
- Tschirren Adrian
- hostmasters&nexplore.ch
-27803
- HTH Consulting GmbH
- Herbert Thallauer
- iana&hth.co.at
-27804
- Bernard Matthews Foods Ltd.
- Ian Templeman
- ian.templeman&bernardmatthews.com
-27805
- Compagnia Assicuratrice Unipol S.p.A
- Murotti Bruna
- B.Murotti&unipol.it
-27806
- University of Malta
- Dave Mifsud
- systems&csc.um.edu.mt
-27807
- Hawa AG
- Gianni Belotti
- belotti.gianni&hawa.ch
-27808
- SKELVISION SARL
- Jean-Philippe SE CHAO
- jp.sechao&skelvision.com
-27809
- La Mamma Ind. de Alimentos Ltda.
- João Rafael Moraes Nicola
- joaoraf&gmail.com
-27810
- Qovo Systems
- Fatih GEZEN
- f.gezen&qovo.com
-27811
- Ellsworth School System
- Charles Liebow
- cliebow&ellsworthschools.org
-27812
- voipDS - Voice Over IP Directory Services
- Balaji NJL
- balaji&voipds.org
-27813
- linux-on.com
- Sergey Semenyuk
- info&linux-on.com
-27814
- Chiang Family
- Da-Wei Chiang
- todawei&gmail.com
-27815
- Advanced UniByte GmbH
- Michael Drueing
- michael.drueing&advanced-unibyte.de
-27816
- WES Power Technology Inc.
- Philip Crowley
- contact&wespt.com
-27817
- Thorcom Systems Ltd.
- Mike Tubby
- support&thorcom.co.uk
-27818
- Vapo Oy
- Petteri Oravuo
- petteri.oravuo&vapo.fi
-27819
- Calaveras Internet
- Cody Ritts
- cr&caltel.com
-27820
- 121Media Inc.
- Jeffrey Paul
- orgadmin&121media.com
-27821
- Unihost Partnership
- Sven Vollbehr
- service&unihost.eu
-27822
- Comtech Mobile Datacom
- Wayne Sheh
- cmdcit&comtechmobile.com
-27823
- Marienfeld Multimedia GmbH
- Philip Steinkuehler
- philip.steinkuehler&marienfeld-multimedia.de
-27824
- Renzoo Ltd
- Mr. Denis Kotlar
- dkotlar&renzoo.co.uk
-27825
- Battery Force Ltd.
- Christian Karg
- ckarg&battery-force.co.uk
-27826
- Bharat Forge Kilsta AB
- Gunnar Norman
- gunnar.norman&bharatforgekilsta.com
-27827
- i-Solutions AB
- Johan Winäs
- johan.winas&i-solutions.se
-27828
- St. Paul's Cardiac Electrophysiology, Ltd.
- Prof M Malik
- marek.malik&btinternet.com
-27829
- Mira Networks (Pty) Ltd
- Ruan Jonker
- ruanj&miranetworks.net
-27830
- Epitiro Ltd
- Ben Keenan
- bkeenan&epitiro.com
-27831
- Itexis SARL
- Simon Decarpentries
- simond&itexis.com
-27832
- Thomas Bauer
- Thomas Bauer
- thomas.bauer&hauptversammlung.at
-27833
- Bizvox Consultoria e Tecnologia de Voz Ltda
- Patrick Blackman
- patrick.blackman&bizvox.com.br
-27834
- Consumers Energy Corporation
- Chip Smith
- cdsmith&cmsenergy.com
-27835
- Gemstar - TV Guide International, Inc.
- Hostmaster
- hostmaster&tvguide.com
-27836
- jag-stang.ch
- Nicolas Mayor
- jag&jag-stang.ch
-27837
- HanDreamNet
- Choi Soon-Kyu
- soondeng&handream.net
-27838
- Host Grad Inc.
- Vitaly V Velikodny
- velikodny.v&hostgrad.ru
-27839
- Markus Boas
- Markus Boas
- ryven&ryven.de
-27840
- polygon
- Burchenja Valentin Pavlovich
- valentin&severomorsk.info
-27841
- IP Networks Ltd
- Otto Jansson
- oid&ipnetworks.fi
-27842
- Klebanov
- Rob Klebanov
- rklebanov&gmail.com
-27843
- Internet Computing & Security Laboratory
- JunHyung-Lee
- junhyung&icns.khu.ac.kr
-27844
- iVEC
- Chris Hines
- help&ivec.org
-27845
- Netcube Technologies,Inc
- Jaeyoung Heo
- jyheo&netcube.com
-27846
- Prill Tecnologia Ltda
- Luis Augusto C. Sauerbronn
- luis.sauerbronn&prill.com.br
-27847
- VirtenSys Ltd.
- Ian Ormshaw
- ian_ormshaw&virtensys.com
-27848
- Itron GmbH (formerly 'Actaris Gaszaehlerbau GmbH')
- Patric Wust
- patric.wust&itron.com
-27849
- American Research Institute
- Sean Myers
- smyers&americanri.com
-27850
- LiquidXStream Systems Inc
- Pierre Marcotte
- pmarcotte&liquidxstream.com
-27851
- Video Furnace, Inc.
- Adam Yellen
- adam&videofurnace.com
-27852
- GUANGZHOU ZHIYUAN ELECTRONIC CO.,LTD.
- Dikai Liu
- ethernet.support&embedcontrol.com
-27853
- mconsultancy
- Kevin Montuori
- montuori&gmail.com
-27854
- Petr Kutalek
- Petr Kutalek
- petr&kutalek.cz
-27855
- Interactions Corporation
- A. Blake Cooper
- blake&interactions.net
-27856
- The Council of Australian University Directors of Information Technology (formerly 'Australian Access Federation')
- Dr. Rodney G. McDuff
- mcduff&its.uq.edu.au
-27857
- J. Gordon Electronic Design
- Kirk Wolff
- kwolff&jged.com
-27858
- University of Delhi
- Vineet Ghildyal
- vineet&du.ac.in
-27859
- Rapid Information & Communication co. Ltd
- kwangsik, choi
- kumsim&yahoo.co.kr
-27860
- DMS Group
- Nikola Radovanovic
- nikola.radovanovic&dmsgroup.co.yu
-27861
- FILS COMMUNICATIONS LTD
- STAN ONYIME
- filsfamily&yahoo.com
-27862
- AtNOC Corn Zauner OEG
- Clemens Zauner
- czauner&atnoc.net
-27863
- DSR Communications Pty Ltd
- Andrew Petrie
- andrew&petrie.net
-27864
- VOCEL, Inc.
- Frans N. Benders
- oidmaster&vocel.com
-27865
- Tellvox S.A.
- Marco Lonzetti
- mlonzetti&tellvox.com.br
-27866
- Logictec
- James Allan
- jim&logictec.co.uk
-27867
- Entic Services
- Anil Jangity
- anilj&entic.net
-27868
- GuardTime AS
- Mart Saarepera
- mart.saarepera&guardtime.com
-27869
- Microprocessador - Sistemas Digitais, SA
- Joaquim Torres
- joaquimtorres&microp.efacec.pt
-27870
- Hooghuis lyceum
- Ronald van Engelen
- postmaster&hooghuislyceum.nl
-27871
- shee consultants
- Vitor Guerreiro
- vg&shee.org
-27872
- FPT Corporation
- Truong Thi Thu Hien
- hienttt3&fpt.com.vn
-27873
- The Bridgeman Art Library Ltd
- Stuart Gibson
- stuart.gibson&bridgeman.co.uk
-27874
- eurotel spa
- Massimiliano Patriarca
- massimiliano.patriarca&eurotel.it
-27875
- Zenulta Ltd
- Duncan Tincello
- duncan.tincello&zenulta.com
-27876
- ResponsFabrikken Serviços de Telecomunicações Ltda.
- Fabio Garrido
- fg&responsfabrikken.com.br
-27877
- Blustaff S.p.A.
- Francesco Fadda
- f.fadda&blustaff.it
-27878
- agenos GmbH
- Martin Heise
- M.Heise&agenos.de
-27879
- CTDI Nethouse Services GmbH
- Hartmut Boening
- Hartmut.Boening&ctdi-nethouse.com
-27880
- FreeSWITCH
- Brian West
- brian.west&mac.com
-27881
- KCS Digital, Inc.
- Watkins Chen
- watkinschen&kcsdigital.com
-27882
- Puryear Information Technology, LLC
- Dustin Puryear
- dustin&puryear-it.com
-27883
- Extension7
- Dan Lacey
- daniel_p_lacey&yahoo.com
-27884
- Dom Finansowy QS
- Mateusz Kijowski
- mkijowski&dfqs.pl
-27885
- National City Corporation
- Joe Wright
- joseph.wright&nationalcity.com
-27886
- Blacknight Internet Solutions Ltd
- Niall Donegan
- niall&blacknight.ie
-27887
- TUI-NET
- Martin Heise
- iana.org&L13.de
-27888
- AxesNetwork Solutions inc.
- Hugues Boisvert
- IANAManager&axesnetwork.com
-27889
- Beijing Huamei Netwave Technology Co.,Ltd.
- Liu cai jun
- liucaijun&huameiwave.com
-27890
- Roundbox Inc.
- David Hu
- dhu&roundbox.com
-27891
- Intercomgi Argentina S.R.L.
- Hugo Javier Curti
- hcurti&intercomgi.net
-27892
- Navaneethan Shenoy
- Navaneethan Shenoy
- gunmetl&gmail.com
-27893
- DMS
- David Syzdek
- oid&syzdek.net
-27894
- Cube Optics AG
- Carsten Marheine
- marheine&cubeoptics.com
-27895
- ISHD - Inline-Skaterhockey Deutschland
- Stefan Gehrig
- gehrig&ishd.de
-27896
- Harpa Italia Srl
- Cosma Damiano DE ANGELIS
- mdeang&harpaitalia.it
-27897
- QSI srl
- Riccardo De Mattia
- riccardo.demattia&qsi.it
-27898
- RAILOG SPA
- MASSIMO ANGELOTTI
- bruna.caprioglio&railog.net
-27899
- STC Raduga
- Gubanov Alexander
- a_gubanov&ntc-raduga.ru
-27900
- IT-Optics sa
- Damien Sandras
- damien.sandras&it-optics.com
-27901
- Pier 29 Networks CC
- Graham Leggett
- minfrin&sharp.fm
-27902
- Iris, FGUP PKP
- Andrey Bulgakov
- aw_bulgakov&mail.ru
-27903
- Ingenieurbuero fuer EDV und Netzwerktechnik - Stefan Hartmann
- Stefan Hartmann
- stefanh&hafenthal.de
-27904
- Suncorp-Metway Ltd
- Domain Administrator
- dnsinternet&suncorp.com.au
-27905
- Universitaet Wuerzburg
- Rechenzentrum
- warren&rz.uni-wuerzburg.de
-27906
- Community4you GmbH
- Tino Schwarze
- registry&community4you.de
-27907
- tvtv Services a branch of Sony United Kingdom Ltd.
- Operations
- ops&tvtv-services.com
-27908
- projects4web.de
- Stefan Berger
- iana&projects4web.de
-27909
- LogRhythm Inc.
- Phillip Villella
- phil.villella&logrhythm.com
-27910
- Presto Networks, Inc.
- John Cheng
- jcheng&presto-networks.com
-27911
- DDS, Inc.
- Tsuguya Umeda
- penum&dds.co.jp
-27912
- Messaging Architects
- Nick Stefan
- Nick.Stefan&MessagingArchitects.COM
-27913
- The Internet Group (Northland) Ltd.
- Kim Shepherd
- kim&igrin.co.nz
-27914
- iXcall
- Marco van Zoest
- marco&ixcall.net
-27915
- The Computer Centre for Icelandic Savings Banks
- Vifill Sigurdsson
- vifills&spar.is
-27916
- NEC Portugal, S.A.
- Ricardo Monteiro
- Ricardo.Monteiro&aveiro.nec.pt
-27917
- ATCO I-Tek Inc
- Dave Malone
- dave.malone&atcoitek.com
-27918
- Wilfrid Laurier University
- Carl Langford
- clangford&wlu.ca
-27919
- Loto-Quebec
- Simon Bélanger
- simon.belanger&loto-quebec.com
-27920
- Viewtel Co., Ltd.
- JinKyu Son
- sonjk&view-tel.co.kr
-27921
- Information and Mathematical Science Laboratory, Inc.
- Kazuyoshi Takano
- takano&imslab.co.jp
-27922
- Tripoint Corporation Pty Ltd
- Michael Marsden
- mmarsden&tripoint.com.au
-27923
- Trillian GmbH
- Karlheinz Reimann
- k.reimann&trillian.de
-27924
- Titof3000.org
- Christophe SIMON
- titof3000&hotmail.com
-27925
- Canon Ophthalmic Technologies Sp. z o.o. (formerly 'OPTOPOL Technology S.A.')
- Patryk Woźniak
- p.wozniak&canon-ot.com.pl
-27926
- Future Voice Technology
- Daniel Cooper
- dcooper&fvt.com
-27927
- Evangelische Kliniken Bonn gGmbH
- Horst Aurisch
- horst.aurisch&ek-bonn.de
-27928
- Ayecka Communication Systems Ltd.
- Avi Barda
- avib&ayecka.com
-27929
- tarczynski.net
- Frank Tarczynski
- ftarz&tarczynski.net
-27930
- Justware Corporation
- Jun Wu
- vividy&justware.co.jp
-27931
- GFI Italia SpA
- Mariani Massimiliano
- ma.mariani&ois.it
-27932
- LignUp Corporation
- Monica Pal
- monica.pal&lignup.com
-27933
- NOVOTECNO, S.L.
- Ivan Hernandez
- ivan&novotecno.com
-27934
- Computer Science Club
- Calum T. Dalek
- calumtdalek&gmail.com
-27935
- Sigil.org
- Richard Kolkovich
- richard&sigil.org
-27936
- PD-House
- Anders Mundt Due
- anders.mundt.due&pd-house.dk
-27937
- UTNOXIUM SL
- Tomás Sánchez Villanueva
- tsv&utnoxium.com
-27938
- GNU Gatekeeper Project
- Jan Willamowius
- jan&willamowius.de
-27939
- Intellectronika
- Alex Mogilnikov
- alx&intellectronika.ru
-27940
- Stadtwerke Muenchen GmbH
- Christoph Dollt
- Dollt.Christoph&swm.de
-27941
- Elaborata Produtos e Treinamentos de Informatica Ltda.
- Andre Avelino da Costa Santos
- andre&elaborata.com.br
-27942
- Stredni prumyslova skola, Usti nad Labem, Stara 99, p.o.
- Martin Mudroch
- noc&sps-ul.cz
-27943
- VimpelCom Ltd.
- Sergey Dorofeev
- oid&beeline.ru
-27944
- 3Leaf Networks
- Dwayne Shows
- dwayne&3leafnetworks.com
-27945
- Upsys
- Emiliano Castagnari
- ecastag&gmail.com
-27946
- thomaskoch.it
- Thomas Koch
- internet&thomaskoch.it
-27947
- Gridline Communications Holdings Inc.
- Lucas Nihlen
- nihlen&gridlinecommunications.com
-27948
- CPM Ltd.
- Nikolay Fomichev
- sitrix.camheds&gmail.com
-27949
- C. Alex. North-Keys
- C. Alex. North-Keys
- erlkonig&talisman.org
-27950
- Sterling Consulting Group, Inc.
- Anthony Brock
- info&sterlingcgi.com
-27951
- ISGenesis, Inc.
- C. Alex. North-Keys
- erlkonig&isgenesis.com
-27952
- Gazprombank Certification Authority
- Sergey Proselkov
- Sergey.Proselkov&gazprombank.ru
-27953
- bitPlus GmbH
- Bernd Holzinger
- bholzinger&bitplus.de
-27954
- Flexoft Ltd.
- Grant Amaspeur
- alex&flexoft.co.uk
-27955
- GridNode
- Thomas Yee
- its&gridnode.com
-27956
- OPNATEL
- Nerea Azpilicueta
- nerea.azpilicueta&opnatel.es
-27957
- Rettig ICC
- Erich Maierhofer
- erich.maierhofer&rettigicc.com
-27958
- weComm Ltd
- Darren Bourget
- darren.bourget&wecomm.com
-27959
- International Power Switch ApS
- Martin Johansson
- martin&ipwrswitch.com
-27960
- e-Business & Resilience Centre
- Sebastien Bourgasser
- sebastien.bourgasser&ebrc.lu
-27961
- Tribunal de Justica de Santa Catarina
- Gustavo Dagostin da Silva
- gds11561&tj.sc.gov.br
-27962
- Demonhost Inc.
- Soós László
- soos.laszlo&demonhost.hu
-27963
- Westec InterActive Security
- Sean McClanahan
- sean.mcclanahan&westecnow.com
-27964
- Commugen Ltd.
- Eyal Sassoon
- eyal&commugen.com
-27965
- Scribe Technology Inc.
- Martin Lanser
- mlanser&scribetechnology.com
-27966
- Citiway Technology Co.,Ltd
- Simon Tian
- simon&citiway.com.cn
-27967
- APNIC Pty Ltd
- Sanjaya Sanjaya
- technical&apnic.net
-27968
- Akonix Systems, Inc.
- John Bolton
- jbolton&akonix.com
-27969
- Multical Ltda.
- Davor Buvinic
- dbuvinic&multical.cl
-27970
- kryglik.com
- George Kryglik
- nospam&kryglik.com
-27971
- China Infosec Technologies Co.,Ltd.
- Meng Zhang
- zhangm&infosec.com.cn
-27972
- Mac Papers, Inc.
- Richard Cassidey
- richard.cassidey&macpapers.com
-27973
- Open Finance, LLC
- Nicholas Sushkin
- nsushkin&openfinance.com
-27974
- MCS GROUPE
- BRUNO PONTILLO
- bpontillo&mcsfr.com
-27975
- Centec Networks Inc.
- Zhang Jian-bo
- jzhang&centecnetworks.com
-27976
- GEO CONCEPT SA
- M. HOUDAS Olivier
- olivier.houdas&geoconcept.com
-27977
- Genex
- Eric Sanders
- helpdesk&genex.com
-27978
- Stewart Information Service Corporation
- Gary Morris
- Gary.Morris&stewart.com
-27979
- Met Sacramento High School
- Sam Gammon
- samusweb&gmail.com
-27980
- POSYSTECH Co., Ltd.
- Edward Park
- howdoud0&hotmail.com
-27981
- Intrachaos.net
- Randy Hall
- randy&intrachaos.net
-27982
- Servelec Technologies (formerly 'RTUnet Pty Ltd')
- David Williams
- david.williams&servelec-technologies.com
-27983
- TechGuard Security, LLC
- David Maestas
- david.maestas&techguardsecurity.com
-27984
- MSBC Pty Limited
- Michael Janjgava
- support&msbc.com.au
-27985
- Swinburne University of Technology
- Bob Schorer
- bob&swin.edu.au
-27986
- Avonaco Systems Inc.
- Yunfei Zhang
- zhangyf&avonaco.com
-27987
- DataAccess Inc.
- Shoji Kosai
- manager&dacc.jp
-27988
- TOPFIELD Co., Ltd.
- Hyun Ko
- hko&topfield.co.kr
-27989
- Nepro Japan Co., Ltd.
- Kim, Haksung
- ip_info&nepro.jp
-27990
- Ltd. AVTOR
- Gennady Dyadyk
- Gennady.Dyadyk&author.kiev.ua
-27991
- Media Layers Inc.
- Nir Klar
- nir.klar&mlayers.com
-27992
- Endesa Network Factory S.L.U.
- Javier Oviedo
- joeplc&gmail.com
-27993
- Vigintos Elektronika
- Sergej Kovaliov
- serg&vigintos.com
-27994
- Xunta de Galicia. Conselleria de Innovación e Industria. Dirección Xeral de Promocion Industrial e S
- Antonio González Seoane
- antonio.gonzalez&sociedadedainformacion.eu
-27995
- FORTH CORPORATION PUBLIC COMPANY LIMITED
- Mr. Prot Pattakaree
- prot&forth.co.th
-27996
- Entorno Digital
- Systems Department
- miles&entorno.es
-27997
- Me-On-Tv
- Roderick Groesbeek
- meontvsnmp&roderick.triple-it.nl
-27998
- Triple IT
- Roderick Groesbeek
- snmpenterprise&roderick.triple-it.nl
-27999
- Trepesch GmbH
- Frank Kipfmüller
- frank.kipfmueller&trepesch.de
-28000
- Aptivate Ltd
- Chris Wilson
- chris+iana.oid&qwirx.com
-28001
- Tufts Associated Health Plans, Inc.
- EIM Security Administration
- EIM_Administration&tufts-health.com
-28002
- The Source
- Marcio Garcia
- mgarcia&thesource.com.br
-28003
- Bender Est.
- Jeremy Bender
- email&the-benders.com
-28004
- Mobiletech AS
- Sverre Marvik
- sm&mobiletech.no
-28005
- LissProductions
- John Liss
- john&Lissproductions.com
-28006
- United Space Alliance
- Joe Otto
- joe.a.otto&usa-spaceops.com
-28007
- Jasmin Buchert
- Jasmin Buchert
- oid10-jb&jasmin.eu.org
-28008
- Canu Group LLC
- Tom Danner
- tdanner&canugroup.com
-28009
- ActionCOACH Inc.
- Peter Tiggerdine
- petertiggerdine&actioncoach.com
-28010
- Kumamoto Technology and Industry Foundation
- Kenichiro Kozuma
- ken&kmt-ti.or.jp
-28011
- NETNIC CORPORATION
- Daniel Mullen
- domain.services&netnic.ca
-28012
- ChannelSoft (Beijing) Technology Co.,Ltd
- LiMingyan
- channelqa&channelsoft.com
-28013
- Photobucket, Inc.
- Alan Sparks
- asparks&photobucket.com
-28014
- BROADVOX GmbH
- Daniel Mullen
- domain.services&broadvox.com
-28015
- metrocom corporation
- Daniel Mullen
- domain.services&metrocom.ca
-28016
- D-Cube Resource
- Jan Dries
- info&dcube-resource.be
-28017
- tekuso H. Kaelber
- Hannes Kaelber
- kaelber&tekuso.de
-28018
- netjfwatcher
- Yoshimasa Matsumoto
- matsumoto&netwatcher.jp
-28019
- TradeRoot Technologies (Pty) Ltd
- Paul Mouton
- amy.rautenbach&traderoot.com
-28020
- Tefnet
- Tomasz Jezierski
- snmp&tefnet.pl
-28021
- trevedi it-consulting gmbh
- Klaus Brockerhoff
- k.brockerhoff&trevedi.de
-28022
- VITALPHONE SARL
- ATHANASE Jean-René
- iana.ajr&vitalphone.net
-28023
- VITALIX SARL
- ATHANASE Jean-René
- iana.ajr&vitalix.org
-28024
- Pilot Systems
- Alexandre Garel
- contact-iana&pilotsystems.net
-28025
- Capita Business Services Ltd
- Richard Stone
- richard.stone&capita.co.uk
-28026
- Hostbasket
- Hans Thienpondt
- hans&hostbasket.com
-28027
- Moviclips S.A.
- Diego Helmann
- diegoh&moviclips.com
-28028
- Urquhart Consultancy
- Adrian Urquhart
- adrian&urquhart-consultancy.com
-28029
- Mera Systems, Inc.
- Ilya Ustinov
- ilya.ustinov&mera-systems.com
-28030
- The Sidwell Company
- David Larson
- DLarson&sidwellco.com
-28031
- Brightprofiles Resources ltd
- Irem chimezie Bright
- brightprofiles&yahoo.com
-28032
- creat.io, s. r. o. (formerly 'Genesys, s. r. o.')
- Richard Toth
- toth&genesys.sk
-28033
- VERISOFT CONSULTING TECNOLOGIA DA INFORMAÇÂO LTDA
- Fabio Maximo
- infra&verisoft.com.br
-28034
- Belkin Logistics, Inc
- Louise Mc Cullough
- louisem&belkin.com
-28035
- Venture Data L.L.C.
- Frank Barney
- frankb&venturedata.com
-28036
- TalNet
- Tal Raveh
- talr&talr.co.il
-28037
- Iaso Pty Ltd
- Andrew Patterson
- registration+iana&iaso.com.au
-28038
- Triharpskel Productions
- Wayne Morrison
- wm-oid&triharpskel.com
-28039
- Comwave Telecom Inc.
- Ron Barzakay
- rb&comwave.net
-28040
- Technological Educational Institute (TEI) of Crete
- Mr. Babis Tsatsarakis
- babis&staff.teicrete.gr
-28041
- Jackpot.uk.net
- Jack Cleaver
- jack&jackpot.uk.net
-28042
- KMK Solutions
- Kurt Kincaid
- kurt.kincaid&kmksolutions.com
-28043
- Altorian Systems Inc
- Angela Mullins
- info&altoriansystems.com
-28044
- TECOM CO., LTD.
- Michael Jeng
- mjeng&taipei.tecom.com.tw
-28045
- URALSIB Financial Corporation
- Vladimir Makushev
- ca&uralsibbank.ru
-28046
- Distributed Management Sytems Ltd.
- Dr Basil Philipsz
- basil&casque.co.uk
-28047
- Novabase srl
- Marignoni Aurelio
- marignoni&novabase.it
-28048
- Presto - prekladatelske centrum s.r.o.
- Filip Volejnik
- domeny&presto.cz
-28049
- ms2-GmbH
- Marc Sieburg
- info&ms2-gmbh.de
-28050
- Oxford Computer Group (2005) Limited
- James Booth
- james.booth&oxfordcomputergroup.com
-28051
- Atlas IT
- David Barroso Pardo
- networking&atlasit.com
-28052
- Boomer Consulting, Inc.
- Andrew Hanenkamp
- andrew.hanenkamp&boomer.com
-28053
- Tervela Inc.
- Ernest Grella
- egrella&tervela.com
-28054
- Tower Cloud, Inc.
- Robert England
- rfe&england-net.com
-28055
- Beck Datentechnik
- Andreas Beck
- becka-iana-oid&bedatec.de
-28056
- Jojo
- A. Bienvenue
- mplp&free.fr
-28057
- NebuAD Inc.
- Ping Chen
- ping&nebuad.com
-28058
- SNDI (Société Nationale de Développement Informatique)
- SAHOUE Jonas
- jsahoue&yahoo.fr
-28059
- Mohawk Software
- Mark L. Woodward
- markw&mohawksoft.com
-28060
- Telairity, Inc
- Adrian Pop
- apop&telairity.com
-28061
- Interzone Entertainment LLC
- Brendan Ragan
- brendan.ragan&interzonegames.com
-28062
- Kewego SA
- Network Operation Center
- noc&kewego.com
-28063
- SanDisk IL Ltd
- Avraham Shimor
- avraham.shimor&sandisk.com
-28064
- OKTET Labs Ltd.
- Piotr Lavrov
- Piotr.Lavrov&oktetlabs.ru
-28065
- TraviAustria Datenservice für Reise und Touristik GmbH & Co. Nfg. KG
- Stefan Neumann
- traviadmin&travi.com
-28066
- Inomacomp s.r.o
- Tomas Pavlovic / DUSAN NAGY
- dnagy&inomacomp.sk
-28067
- Softcreate Co., Ltd.
- Takeshi Furuhata
- admin&softcreate.org
-28068
- connectBlue AB
- Pelle Bergkvist
- pelle.connectblue&hotmail.com
-28069
- Universidad de Antioquia
- Jefatura de Cómputo
- computo&arhuaco.udea.edu.co
-28070
- Illertech Datensysteme Gbr
- Fischer Daniel
- danfis&dessys.de
-28071
- Gentiae Clinical Research
- Michael Cheung
- michael.cheung&gentiae.com
-28072
- Engine Yard
- Riki Crusha
- company&engineyard.com
-28073
- Grace Reformed Baptist Church
- David White
- ldap&grbc.net
-28074
- Ricu LLC
- Domain Administrator
- call.ricu&yahoo.com
-28075
- Support My System (UK) ltd
- Gijs van Reijendam
- Gijs.van.Reijendam&SupportMySystem.com
-28076
- Recommind, Inc.
- Igor Ebner de Carvalho
- snmp-admin&recommind.com
-28077
- WiseSport (Hong Kong) Limited
- Clement Chow
- camille.mok&wisespotgroup.com
-28078
- Genos Open Source S.L.
- Valenti Jove
- genos&genos.es
-28079
- OpenScale Technologies GmbH
- Constantin Rack
- constantin.rack&openscale.org
-28080
- "ISG" Joint Stock Company
- Vyacheslav Smirnov
- admnoc&isgr.ru
-28081
- New Castle Community School Corporation
- Shawn Iverson
- shawn&nccsc.k12.in.us
-28082
- Rdesign
- Remco Kleine
- r.kleine&rdesign.nu
-28083
- SOSDG
- Andrew D Kirch
- admins&sosdg.org
-28084
- Polk Mechanical Company, LLC
- Ty Lamb
- Ty.Lamb&PolkMechanical.com
-28085
- STMIK Akakom
- Yudhi Kusnanto
- yudhi&akakom.ac.id
-28086
- Universitaet Passau
- Rechenzentrum
- absmeier&uni-passau.de
-28087
- Albentia Systems, S.A.
- Noelia Morón
- nmoron&albentia.com
-28088
- NEC Unified Solutions
- Jaap Keuter
- jaap.keuter&nec-unified.com
-28089
- Sentrigo Ltd
- Guy Lichtman
- GuyL&Sentrigo.com
-28090
- IAM Technology, Inc.
- Dr. John A. Nuber
- john.nuber&iamtech.com
-28091
- Thelese Management
- Matthew King
- mdking&thelesemanagement.com
-28092
- Covelight Systems, Inc.
- Rick Millham
- rmillham&covelight.com
-28093
- Colombia Movil
- Raul Perilla
- raul.perilla&colombiamovil.com.co
-28094
- Voicemail Anywhere, Inc.
- Fred Radford
- Fred.Radford&VoicemailAnywhere.com
-28095
- JPEO JTRS
- Sean Hugelmaier
- srh&spawar.navy.mil
-28096
- Route1 Security Corp.
- Rene McIver
- rene.mciver&route1.com
-28097
- ACKSYS
- Philippe DUPONT
- philippe.dupont&acksys.fr
-28098
- National Interbank Transaction Management and Exchange Co., Ltd.
- Mr. Somchart Fugkeaw
- somchart&pcc.co.th
-28099
- Processing Center Co., Ltd.
- Mr. Somchart Fugkeaw
- somchart&pcc.co.th
-28100
- Groupwhere Consulting, L.L.C.
- Miles Lott
- mlott&groupwhere.org
-28101
- MIVAN KIER JOINT VENTURE LIMITED NEWPARK BUCHAREST
- Costin Gusa
- cgusa&mivankier.ro
-28102
- baringanet gmbh
- Daniel Schnyder
- scd&baringanet.ch
-28103
- Audionics Ltd
- Phil Myers
- philm&audionics.co.uk
-28104
- Evorad
- Kostas Karolemeas
- kostas.karolemeas&evorad.com
-28105
- Arcelor Bremen GmbH
- Marc Djacenko
- Marc.Djacenko&arcelor-bremen.com
-28106
- GEUTEBRUECK
- Dr. M. Döring
- matthias.doering&geutebrueck.de
-28107
- Liangjiang Communications System Inc.
- Kehua Xiao
- xiaokh&liangjiang.com
-28108
- Homisco, Inc
- John Peterson
- jpeterson&homisco.com
-28109
- Rozis BV
- W. van Tongerloo
- Info&rozis.nl
-28110
- Near Infinity Corporation
- David Singley
- david.singley&nearinfinity.com
-28111
- ValuePoint Networks, Inc.
- Michael Edison
- mredison&valuepointnet.com
-28112
- Pioneer Bible Translators
- Stephen Fierbaugh
- stephen.fierbaugh&pbtusa.org
-28113
- Thai Digital ID Co., Ltd.
- Mr. Somchart Fugkeaw
- somchart&thaidigitalid.com
-28114
- Quies Net
- Pascal S. de Kloe
- pascal&quies.net
-28115
- Shenzhen o'wonder Tech Inc
- Alex Shen
- alex.shen.cn&gmail.com
-28116
- 4-tune GmbH
- Christian Schneider
- christian.schneider&4-tune.ch
-28117
- Clear Memo
- Ken Wiesner
- operations&openfax.com
-28118
- ColdSpark Inc
- Paul Trout
- ptrout&coldspark.com
-28119
- Steelworks Technologies
- Steven Lee
- steelworks.net&gmail.com
-28120
- Pinacono Software Studio
- Chawalit Limsowan
- chawalit&pinacono.com
-28121
- Hyperband Networks, Inc.
- Justin Hsu
- jhsu&hyperbandnetworks.com
-28122
- ObjectMastery Pty Ltd
- Bradley Tate
- omadmin&objectmastery.com
-28123
- Intermodus d.o.o
- Hrvoje Hladnik
- hrvoje.hladnik&intermodus.net
-28124
- C-Group
- Paul Palacios
- paul&c-group.com
-28125
- TRINAPS
- Gauthier DOUCHET
- gauthier.douchet&trinaps.com
-28126
- ERAMON AG
- Wolfgang Mair
- w.mair&eramon.de
-28127
- COSSILYS 21
- Joel Harhellier
- joel.harhellier&cossilys21.com
-28128
- CIT
- Ian Tighe
- consulting&iantighe.com
-28129
- Cleversafe , Inc.
- Alan Holmes
- it-admin&cleversafe.com
-28130
- MICHATECH
- Michael Holmetoft Hansen
- MHH&C.DK
-28131
- iBro
- Muhammad Ibrahim Nurmansyah
- ibrahim&ibro.web.id
-28132
- Embarq Holdings Company LLC
- Todd Tomason
- todd.j.tomason&embarq.com
-28133
- INSIST
- Yudhi Kusnanto
- admin&insist.or.id
-28134
- LOT Polish Airlines
- Pawel Klosek
- helpnet&lot.pl
-28135
- Cominfo a.s.
- Tomas Januska
- tjanuska&cominfo.cz
-28136
- Delta Dore SA
- Peter Münster
- pm&deltadore.com
-28137
- NXP Semiconductors B.V.
- Hauke Meyn
- hauke.meyn&nxp.com
-28138
- Icepeak AB
- Tobias Svensson
- tobias&icepeak.se
-28139
- Hrvatske telekomunikacije d.d.
- Bruno Viland
- bruno.viland&t.ht.hr
-28140
- IT GAMES COMERCIO E SERVICOS DE INFORMATICA LTDA
- Fabio Maximo
- infra.itgames&gmail.com
-28141
- CedarOpenAccounts
- Mark Stevenson
- mark.stevenson&cedaropenaccounts.com
-28142
- Nautel Limited
- Robert S. Martin
- smartin&nautel.com
-28143
- Altaigazprom
- Eugene Kostenko
- dek&altaigazprom.ru
-28144
- Trilus d.o.o.
- Marko Udvanc
- Marko.Udvanc&trilus.com
-28145
- origenis GmbH
- Dr. Henrik Kuhn
- henrik.kuhn&origenis.de
-28146
- Fitzpatrick Enterprise OID
- Sean Fitzpatrick
- spfitzpatrick&orange.nl
-28147
- Argon ST
- Matt Keeton
- Matt.Keeton&argonst.com
-28148
- saint-paul luxembourg s.a.
- Jeannot THEIS
- jeannot.theis&saint-paul.lu
-28149
- RBAS
- Mr. Roel Werkman
- roelwerkman&hotmail.com
-28150
- IMS Global Learning Consortium Inc.
- Lisa Mattson
- lisa&imsglobal.org
-28151
- BluePoint Data, Inc.
- Chad Somerlot
- csomerlot&bluepointdata.com
-28152
- Palo Alto Software, Inc.
- Alex Boone
- alex&paloalto.com
-28153
- Newfound Communications, Inc
- Leo Liu
- leo&newfoundcomm.net
-28154
- Lattech Systems (Pty) Ltd
- Truhann van der Poel
- truhann.vanderpoel&lattech.co.za
-28155
- Computer Network Solutions, LLC
- Michael Koprowski
- mkoprowski&computerns.com
-28156
- Reveredata, LLC
- Alexander Levin
- alevin&reveredata.com
-28157
- Octon Technology(Shanghai) Ltd.
- Kent Wang
- kent.wang&octon.cn
-28158
- Great Software Laboratory Pvt Ltd
- Atul Narkhede
- atul&gs-lab.com
-28159
- OOPS Development Organization
- Joung Kyun Kim
- joungkyun&gmail.com
-28160
- Mototech Inc.
- Luke Chen
- luke_chen&mototech.com.tw
-28161
- Anzsoft Co., Ltd.
- Zhan Caibao
- zhancaibao&gmail.com
-28162
- Kazinvestbank
- Alexander Maliyev
- amaliyev&kib.kz
-28163
- Beijing Institute of Technology
- Ling Li
- lilingv&gmail.com
-28164
- think-tux
- jeremy paris
- jeremy.paris&gmail.com
-28165
- InterpharmData Systems (Pty) Ltd.
- Malcolm McLean
- malcolmm&interpharm.co.za
-28166
- Webbed Feet
- Peter van Heusden
- pvh&wfeet.za.net
-28167
- atip GmbH
- Herbert Reininger
- support&atip.de
-28168
- Nextlink Technologies, LLC
- Rick Burton
- rick.burton&nextlinktechnologies.com
-28169
- World Trade Organization
- Ghassan Karam
- pki&wto.org
-28170
- South African National Bioinformatics Institute (SANBI)
- Peter van Heusden
- pvh&sanbi.ac.za
-28171
- Corps Rhenania
- Mr. Eike Moenkemeier
- box&moenkemeier.info
-28172
- Bibliotheksservice-Zentrum Baden-Wuerttemberg
- Hans-Jürgen Götz
- pc-service&bsz-bw.de
-28173
- Advanced Control Systems Design, Inc.
- Christopher Harrington
- chris&acsdi.com
-28174
- Solid State Logic
- Marek Wojtulewski
- itsupport&solid-state-logic.com
-28175
- GlenTech Consulting
- Matthew Dickie
- admin&glentech-consulting.com
-28176
- Rockport PA, LLC
- Rockport Technical
- webmaster&rockportllc.com
-28177
- Buddhadata Consulting, Inc.
- Scott C. Sosna
- ssosna&buddhadata.com
-28178
- Internet Software Solutions
- Steve Hardt
- shardt&internetsoftwaresolutions.biz
-28179
- Bank Zachodni WBK S.A.
- Piotr Lapinski
- cpsinfo&bzwbk.pl
-28180
- Cvörnjek Lagerlogistik GmbH
- Siegfried Cvörnjek
- Siegfried.Cvoernjek&cvr.at
-28181
- Whitestein Technologies AG
- Oliver C. Hoeffleur
- och&whitestein.com
-28182
- Mobile Visions
- Grzegorz Sobanski
- silk&boktor.net
-28183
- MungerWare
- Tim Hosking
- iana&trhosking.com
-28184
- Hagenuk Marinekommunikation GmbH
- Heinrich Fluegel
- heinrich.fluegel&hmk.atlas-elektronik.com
-28185
- zzvcom
- sun yantong
- sunyantong&zzvcom.com
-28186
- SSA Global Technologies
- M.RatnaShilpa
- m_shilpa&yahoo.co.in
-28187
- Uptime Power Services, Inc.
- Registrar
- snmp&dc-power.com
-28188
- Kim Minh Kaplan
- Kim Minh Kaplan
- kaplan&kim-minh.com
-28189
- Intelivox
- Chris Maxwell
- Christopher_Maxwell&yahoo.com
-28190
- Genoscope -- Centre National de Séquencage
- Claude Scarpelli
- iana&genoscope.cns.fr
-28191
- JVS do Brasil LTDA
- Davi Baldin
- davi&jvsinfo.com.br
-28192
- digitallysign
- Sasa Borjanovic
- sasa&borjanovic.info
-28193
- WebPresso
- Nik Arber
- jmail&bluewin.ch
-28194
- Exterity Ltd
- David Peat
- david&exterity.co.uk
-28195
- SKY Italia s.r.l
- Ciro Gaglione
- ciro.gaglione&skytv.it
-28196
- BroadWare Technologies, Inc.
- Vinod Raju
- vinod&broadware.com
-28197
- Wichita State University
- Mike Erickson
- hostmaster&wichita.edu
-28198
- SNC-Lavalin Energy Control Systems Inc.
- Ferdi Di Marco
- ferdi.dimarco&slecs.ca
-28199
- kmel
- Klaus Melchior
- kmel&kmel.de
-28200
- CBC Companies, Inc
- DNS Admin
- dns&cbc-companies.com
-28201
- DBG Inc.
- Dave Josephsen
- dave&dbg.com
-28202
- Albert Bauer KG
- Udo Lembke
- ulembke&abc-digital.com
-28203
- Linux Kernel Austria
- Oliver Falk
- oliver&linux-kernel.at
-28204
- Synerway
- Laurent NINI
- lrn&synerway.com
-28205
- 7-ip Pty Ltd
- Frits Klok
- frits&7-ip.com
-28206
- IKB Deutsche Industriebank AG
- Martin Behrendt
- martin.behrendt&ikb.de
-28207
- Rockford IT Limited
- Ben Sykes
- ben.sykes&rockford-uk.com
-28208
- Accurite Technologies Inc.
- Richard Kelly
- rkelly&accurite.com
-28209
- Up-Mobile Corp
- Arturo Vermolen
- arturo.vermolen&up-mobile.com
-28210
- SunRocket Inc.
- Peter Kuebler
- peter.kuebler&sunrocket.com
-28211
- Emergency Response Management Services Inc.
- Matt Trinneer
- matt.trinneer&ermscorp.com
-28212
- FARIISTA LIMITED
- MR. IMTIAZ A. BAHADUR
- imtiaz&fariista.com
-28213
- Open joint-stock company "Agency for Mortgage Housing Crediting"
- Evdokimov Andrew
- mail&ahml.ru
-28214
- KERNEOS
- Philippe Esposito
- info&kerneos.com
-28215
- 3Roam SA
- Simon Bryden
- simon.bryden&3roam.com
-28216
- FingerPost Ltd
- chris hugh-jones
- miscmail&fingerpost.co.uk
-28217
- Radiant Logic PTY LTD
- Dan Zoltak
- ldap&radiantlogic.com.au
-28218
- The MARF Research and Development Group
- Serguei A. Mokhov
- mokhov&users.sourceforge.net
-28219
- Liam Schneider Consulting
- Liam Schneider
- liamschneider&hotmail.com
-28220
- Brighthouse Networks
- Ron Knapp
- ron.knapp&mybrighthouse.com
-28221
- Stabat Solutions Pty Ltd
- Lucas Barbuto
- lucas&stabat.com
-28222
- Spectrum Communications FZE
- Ashraf Karim
- ashraf&spectrummea.com
-28223
- Quarto Software GmbH
- Christian Walter
- support&quarto.at
-28224
- Efficens Software Ltd.
- Gil Givati
- gil&efficens-software.com
-28225
- OS Security Ltd
- Fabio Origlia
- fabio.origlia&os-security.com
-28226
- Digidiensten
- M. Piscaer
- my&masterpe.nl
-28227
- BTC AD
- Valeria Boyadjieva
- valeria.boyadjieva&btc.bg
-28228
- WIFINET,s.r.o.
- Janèo Matej
- matej.janco&wifinet.sk
-28229
- Pharos Communications Ltd
- Spencer Rodd
- iana-info&pharos-comms.com
-28230
- Fidback CRM Services
- Oualid Jabnoune
- ojabnoune&fidback.fr
-28231
- AM Fire & Electronic Services, Inc.
- Daniel Miller
- dmiller&amfes.com
-28232
- Prince George's Community College
- David Farley
- siteadmin&pgcc.edu
-28233
- iSERVE Ltd.
- Colin Doig
- colin_doig&hotmail.com
-28234
- Cypress Communications, Inc.
- Jeff Gehlbach
- networktools&cypresscom.net
-28235
- Ellie Mae, Inc.
- Michael Tan
- michael.tan&elliemae.com
-28236
- MySpace, Inc.
- Chris Bell
- cbell&myspace.com
-28237
- CodeRyte, Inc
- Emery Ford
- eford&coderyte.com
-28238
- ADE
- Michael Baggett
- mbaggett&ademiami.org
-28239
- University of the Ryukyus
- Hiromitsu Syouji
- admin&cc.u-ryukyu.ac.jp
-28240
- Wavelength Communications, Inc.
- Daniel Corbe
- dcorbe&gmail.com
-28241
- RidgeRun LLC
- Michael Frank
- mfrank&ridgerun.com
-28242
- OraTel Pty (Ltd)
- Jan Van Eeden
- jan&oratel.co.za
-28243
- Pulsar Inc.
- Andrey Pichuk
- apin&nplpulsar.ru
-28244
- Haus am Rügendamm
- Administrator
- administrator&har.fh-stralsund.de
-28245
- agorum Software GmbH
- Oliver Schulze
- oliver.schulze&agorum.com
-28246
- Trusted Peer Networks, Inc
- Graham Finlayson
- graham&simplifymedia.com
-28247
- Maxis Communications Berhad
- Suresh Ramasamy
- rsuresh&maxis.com.my
-28248
- Newport Development Group
- Christopher James
- Christopher.James&NewportDevelopmentGroup.com
-28249
- eonas IT-Beratung und -Entwicklung GmbH
- Helmut Manck
- snmpregistry&eonas.de
-28250
- Enerconv S.r.l.
- Mario Mariotti
- mario.mariotti&enerconv.it
-28251
- The Constitutionalist Party of Iran (CPI)
- Bahman Zahedi
- bahman.zahedi&t-online.de
-28252
- Informatec
- Hans-Peter Riehlein
- iana&informatec.riehlein.de
-28253
- Scivis wissenschaftliche Bildverarbeitung GmbH
- Dr.Uwe Engeland
- info&scivis.de
-28254
- COBS AB
- Anders Niklasson
- anders.niklasson&cobs.se
-28255
- Unassigned
- Removed 2007-10-23
- ---none---
-28256
- InfoGuard AG
- René Mürset
- rene.muerset&infoguard.com
-28257
- NUTRICHEM Diät+Pharma GmbH
- H. Rüdiger Förster
- r.foerster&nutrichem.de
-28258
- EidosMedia S.p.A.
- Massimo Barsotti
- massimo.barsotti&eidosmedia.com
-28259
- Landeshauptstadt Stuttgart (formerly 'bw-trust CA')
- Andreas Demand
- iana-req&stuttgart.de
-28260
- PROGIWEB
- Olivier MARTINERIE
- info&progiweb.com
-28261
- ProfiForms Projekt GmbH
- Andreas Ruch
- andreas.ruch&profiforms.de
-28262
- Chick-fil-A, Inc
- Josh Figaretti
- josh.figaretti&chick-fil-a.com
-28263
- Total Spin Brasil Serviços de Telecomunicações Ltda
- Maria Soller
- maria.soller&spinmymobile.com
-28264
- CLINICARE Corporation
- Devin Nate
- devin.nate&clinicare.com
-28265
- FSB Förster SystemBeratung
- H. Rüdiger Förster
- r.foerster&fsb-wilhermsdorf.de
-28266
- L.A. Specialties Inc.
- Fred R. Goure
- gouref&gmail.com
-28267
- CYBERTRON CO., LTD.
- Stacy Back
- skback&cbtron.com
-28268
- Global Red Solucoes em Software Livre Ltda.
- Cleber Rodrigues
- cleber.gnu&gmail.com
-28269
- Institute for Theoritical Computer Science, Tsinghua University
- Wei Yu
- zig.wei&gmail.com
-28270
- Göteborgs Hamn AB
- Mats Hermansson
- mats.hermansson&portgot.se
-28271
- HTBLuVA Moedling
- Elmar Volgger
- Elmar.Volgger&htl.moedling.at
-28272
- Concurrent Systems (Pty) Ltd
- Braam van Heerden
- oid&concurrent.co.za
-28273
- Starling Advanced Communications
- David Nidam
- dady&starling-com.com
-28274
- MC Control s.r.o.
- Ing. Ondrej Pouchly
- pouchly&mccontrol.cz
-28275
- ioSafe, Inc.
- Marc Bernasconi
- marc.bernasconi&iosafe.com
-28276
- Galeno
- Kristoffer Sjoberg
- info&galeno.se
-28277
- LucasP.com
- Lucas Poznanski
- lucas.poznanski&gmail.com
-28278
- DinnoVan
- ImChang Baek
- billy&dinnovan.com
-28279
- Rocksteady Networks LLC
- Mr. Eric White
- ewhite&rocksteady.com
-28280
- GHL Systems Berhad
- Wong Y-Mi
- ymi&ghl.com
-28281
- Sling Media, Inc.
- Ilya Asnis
- ilya&slingmedia.com
-28282
- Kronos, Inc
- James Turner
- jamesturner&kronos.com
-28283
- MEDITECNIA INNOVA SL
- Arturo Bustos
- info&meditecnia.com
-28284
- Estonian eHealth Foundation
- Indrek Järve
- indrek&e-tervis.ee
-28285
- AGES - Österreichische Agentur für Gesundheit und Ernährungssicherheit GmbH
- DI. Mayer Hans
- hans.mayer&ages.at
-28286
- Daon
- Adrian Allen
- aallen&daon.com
-28287
- Optium Corporation
- Terry Lim
- tlim&optium.com
-28288
- LightRail Inc.
- Kelvin Su
- lightrail.com&gmail.com
-28289
- WhisperItLoud LLC
- Mark Gregory
- msngregory&hughes.net
-28290
- XAware, Inc.
- Kirstan Vandersluis
- kirstan&xaware.com
-28291
- Naval Postgraduate School Center for Network Innovation and Experimentation
- Dr. Alex Bordetsky
- abordets&nps.edu
-28292
- Stepstone Technologies Inc.
- Kathleen Duke
- kathy&stepstonetech.com
-28293
- Julong Sci-tech Co., Ltd.
- Wangquangui
- prince.wang.cn&gmail.com
-28294
- Instituto Reconcavo de Tecnologia
- Chad Riggle
- suporte&reconcavotecnologia.org.br
-28295
- Gainspan Corporation
- Pankaj Vyas
- pankaj.vyas&gainspan.com
-28296
- von KARMAN INSTITUUT VOOR STROMINGSDYNAMICA ivzw
- Raimondo Giammanco
- giammacc&vki.ac.be
-28297
- Lublin Technical University
- Pawel Luty
- p.luty&pollub.pl
-28298
- Info.nl/hf b.v.
- Dick de Waal
- dick&info.nl
-28299
- unixgarage.com
- Mohamed Hussein Sayed
- unxfan&acm.org
-28300
- Miracle TV Corporation
- Narno Dorbecker
- support&mitvcorp.com
-28301
- ONERA
- Philippe CERONI
- philippe.ceroni&onera.fr
-28302
- One Commerce International Corporation
- Glenn Go
- data6&onecommerce.com.ph
-28303
- C.R. Enterprise Business Services
- Charles J. Reid
- cjreid&sonic.net
-28304
- Nexcan Solutions
- Ata Haq
- sales&nexcan.ca
-28305
- Universitas Islam Indonesia
- Wawan Indarto
- wawan&fti.uii.ac.id
-28306
- Foerderverein Buergernetz Ulm/Neu-Ulm e.V.
- Martin Hasch
- martin.hasch&bn-ulm.de
-28307
- PostPath, Inc.
- Glen Dayton
- gdayton&postpath.com
-28308
- Zaragoza Network Management Research Group
- Alvaro Alesanco
- alesanco&unizar.es
-28309
- StatRad LLC (formerly 'Stat Radiology Medical Corp')
- Joe Moock
- jmoock&statrad.com
-28310
- Center for Computational Biology and Bioinformatics
- Brandon Peters
- brjpeter&iupui.edu
-28311
- TECHNOGAMA Ltd.
- Alexander Yeliseyev
- ase&takas.lt
-28312
- Penson GHCO
- Chris Le Grand
- clegrand&pensonghco.com
-28313
- Lantic Systems A/S
- Henrik Kjær Nielsen
- hkn&lantic-systems.com
-28314
- Ariescommerce Ltd.
- Nedelin Georgiev
- nedelin&audiosystems.bg
-28315
- Neology (Pty) Ltd
- Regardt van de Vyver
- iana&neology.co.za
-28316
- Branden Inc.
- Filipe Brandenburger
- filbranden&gmail.com
-28317
- Borran Technologies Inc.
- Colton Jamieson
- colton&borran.com
-28318
- Accelink Technologies Co.,Ltd
- geng xu
- geng.xu&accelink.com
-28319
- IMIMOBILE Private LIMITED
- Mr. Bhat S.S
- ssbhat&imimobile.com
-28320
- Geotechmin OOD
- Alexander Spasov
- a.spasov&geotechmin.com
-28321
- Oniontech, Co., Ltd.
- Justine Lee
- mongmom&oniontech.com
-28322
- THOMSON STS
- Tanguy MILLET
- tanguy.millet&thomson.net
-28323
- Central-European International Bank Ltd.
- Márta Kardos
- martikardos&cib.hu
-28324
- 3ple-Media BV
- Costi Manda
- costi.manda&3ple-media.com
-28325
- Underground_8 Secure Computing GmbH
- Stefan Heumader
- sh&underground8.com
-28326
- ko-sys
- Wolfgang Kohnen
- infrastruktur&ko-sys.com
-28327
- Harry & David Operations, Corp.
- Eric Obendrauf
- eobendrauf&harryanddavid.com
-28328
- Bayerischer Rundfunk
- Johann Sporer
- johann.sporer&brnet.de
-28329
- Base Technologies, Inc.
- Charles A. McCrobie
- cmccrobie&basetech.com
-28330
- Meshdynamics, Inc
- Sriram Dayanandan
- sriram&meshdynamics.com
-28331
- Smiley Media, Inc.
- Eric White
- eric&smileymedia.com
-28332
- Brink's Home Security
- Terry G Phillips
- terry.phillips&brinks.com
-28333
- Simon Niechzial EDV Dienstleistungen
- Simon Niechzial
- simon&niechzial.de
-28334
- Siemens A/S (formerly 'pulz8 Communications ApS')
- Simon Staudt
- simon.staudt&siemens.com
-28335
- Xworks NZ Limited
- Kevin Buckle
- kevin.buckle&xworks.co.nz
-28336
- Voxeo
- Chris Maxwell
- cmaxwell&voxeo.com
-28337
- albatron S.r.l.
- Roberto Ferretti
- roberto.ferretti&albatron.com
-28338
- Mushypea Industries
- David Turner
- dave&mushypea.net
-28339
- Universidade Federal do Pará
- Márcio Pinheiro de Aragão
- aragao&ufpa.br
-28340
- iseek Communications Pty. Ltd.
- Stuart Low
- sysadmin&iseek.com.au
-28341
- Civilogix, Inc.
- Elana Hinners
- elana&civilogix.com
-28342
- Whitley College The Baptist College of Victoria
- Andrew Ross
- aross&whitley.unimelb.edu.au
-28343
- Rogers Wireless - OSS
- Yassir Laraki
- yassir.laraki&rci.rogers.com
-28344
- DeskNet Inc.
- Robert Kelly
- robert.kelly&desknetinc.com
-28345
- SFC Co.,Ltd.
- Motoyoshi Hamasaki
- hamasaki&imagination.co.jp
-28346
- Duplex Secure Ltd
- Nick Grolsen
- busduplex&duplexsecure.com
-28347
- SAMURAIWORKS
- Masatsugu Hosoi
- hosoi&samuraiworks.com
-28348
- Pimp My Proxy
- Sam McLane
- sam&mclane.cc
-28349
- PT. Bank Negara Indonesia, Tbk
- Zaldy Suhatman
- zaldy.suhatman&bni.co.id
-28350
- Shenzhen First Mile Communications Ltd
- LiQuan Wang
- liquan.wang&firstmile.com.cn
-28351
- Vimicro Corporation
- Yuan Chen
- chenyuan&vimicro.com
-28352
- maxcom
- Kim Jung-uk
- maxcom1&hitel.net
-28353
- Vital Images Inc.
- Meera Rajaram
- meera_rags&yahoo.com
-28354
- BCD Travel
- Michael Manning
- michael.manning&bcdtravel.com
-28355
- Promsvyazbank OJSC
- Georgy Dudukalov
- dudukalov&psbank.ru
-28356
- MyWave Internetdienstleistungs AG
- Christian Tremel
- c.tremel&mywave.at
-28357
- Research Institute of China Mobile
- Cheng Liang
- chengliang&chinamobile.com
-28358
- AK IT Services
- Andreas Kippnick
- andreas&kippnick.com
-28359
- Simulina GmbH
- Håkan Källberg
- hk&simulina.se
-28360
- Impi Linux (Pty) Ltd
- Stephan Buys
- stephan&impilinux.co.za
-28361
- Cranix Engineering Co. Ltd.
- Artiom Vasiukov
- vasiukoff&yandex.ru
-28362
- LM2 Consulting Gmbh
- Martin Friedl
- office&lm2.at
-28363
- Bytec Bodry Technology GmbH
- Michael Spinnenhirn
- michael.spinnenhirn&bytec.de
-28364
- widesolutions.it srl
- Palladino Costantino
- info&widesolutions.it
-28365
- Ing.-Buero Dr. Plesnik GmbH
- Arne Handtmann
- service&plesnik.de
-28366
- HostBase
- Thomas Fjellstrom
- tfjellstrom&shaw.ca
-28367
- PROCURE Personalmanagement GmbH
- Andreas Schäfer
- Andreas.Schaefer&fh-bielefeld.de
-28368
- Green Valley B.V.
- Steve Maddison
- sysadmin&greenvalley.nl
-28369
- InetLabs (DE)
- Helmut Franzke
- helmut&franzke.de
-28370
- Infoteh d.o.o.
- Dejan Stanic
- dejan&infoteh.si
-28371
- Nutel Communications, Ltd.
- Hristo Trendev
- htrendev&nutel.cc
-28372
- Gratka Sp. z o.o.
- Piotr Stolc
- p.stolc&gratka.pl
-28373
- Conversant Systems (Pty) Ltd
- Braam van Heerden
- oid&conversant.co.za
-28374
- OpenChoice di Diego Zaccariotto
- Diego Zaccariotto
- diego.zaccariotto&openchoice.it
-28375
- EB Enterprises, Inc.
- Robert B. Bernier
- rbernier10&comcast.net
-28376
- MacroElite Corp.
- Lenny Leblanc
- questions&macroelite.ca
-28377
- Bizztools GmbH
- Teja Berg
- tberg&proventus.de
-28378
- Pulsewidth
- Adam James
- admin&pulsewidth.org.uk
-28379
- Open Systems International, Inc.
- Ryan Tetzlaff
- rtetzlaff&osii.com
-28380
- 01edge technologies
- chandra nath
- nath&01edge.com
-28381
- Red Lion Controls (N-Tron)
- Denis Aull
- Engineering&RedLion.net
-28382
- AirCell LLC
- Brad Schnair
- bschnair&aircell.com
-28383
- Open1X
- Chris Hessing
- chris&open1x.org
-28384
- PConRails, LLC
- Gregoire Gentil
- gregoire&gentil.com
-28385
- Columbia Weather Systems, Inc.
- Brian Smucker
- brian&smuckerdata.com
-28386
- Fujian Fujitsu Communication Software Co., Ltd.
- xu zihui
- xuzh&ffcs.cn
-28387
- svenux
- Sven Schiwek
- info&svenux.de
-28388
- ITB CompuPhase
- Thiadmer Riemersma
- thiadmer&compuphase.com
-28389
- Schneeweis
- Martin Schneeweis
- martin&schneeweis.at
-28390
- 19pouces
- Matthieu Gallet
- admin&19pouces.net
-28391
- Villa Centrum Pty Ltd
- Tom Peltonen
- tpeltonen&villacentrum.com
-28392
- Eclipse Foundation, Inc.
- Denis Roy
- webmaster&eclipse.org
-28393
- the emakers di Fabio Vallino
- Fabio Vallino
- fabio.vallino&theemakers.com
-28394
- Monki
- Matt Willsher
- matt&monki.org.uk
-28395
- NewMarket Corporation
- Stephen Petersen
- steve&newmarket.com
-28396
- Edoceo, Inc.
- David Busby
- busby&edoceo.com
-28397
- BluegrassNet Development
- Jonathan Yarden
- jon.yarden&gmail.com
-28398
- Invictus Networks Pte Ltd
- Chong Yu Meng
- pascalcym&yahoo.com
-28399
- ACHOS.COM
- Tobias Richter
- hostmaster&achos.com
-28400
- Christian Mayer Buero- und EDV-Systeme
- Christian Mayer
- oid&christianmayer.de
-28401
- CirTec AG
- Markus von der Heiden
- markus.vdheiden&gmail.com
-28402
- Conteg
- Vladimir Marek
- vladimir&conteg.com
-28403
- Town & Country Industries
- Sergiusz Stempel
- iana.org&tc-alum.com
-28404
- Cynosure Research
- Kim Davies
- kim&cynosure.com.au
-28405
- Hunt Brothers of Louisiana, LLC
- James Hess
- jhess&huntbrothers.com
-28406
- Slovenija online - SiOL internet d.o.o.
- Andrej Ota
- andrej.ota&siol.si
-28407
- Bradley D. Brown
- Bradley D. Brown
- bradley&brown.name
-28408
- Ramsys Zrt
- Vilmos Nebehaj
- vilmos.nebehaj&ramsys.hu
-28409
- PHOTONICS INC.
- MASAFUMI TAKAGISHI
- GCH06560&nifty.com
-28410
- Ippon Technologies
- Bertrand Pinel
- bpinel&ippon.fr
-28411
- Luhansk Taras Shevchenko National Pedagogical University
- Yuriy Shkandybin
- yshk&lnpu.edu.ua
-28412
- Comtools GmbH
- Frank Vollenweider
- frank&vollenweider.info
-28413
- Brazilian Mercantile and Futures Exchange
- Jochen Mielke de Lima
- jmielke&bmf.com.br
-28414
- Business System Development Pty Ltd
- David Probst
- david&bdevel.com.au
-28415
- Dixie Valley Farm
- Richard Higley
- rhigley&wildblue.net
-28416
- SMX
- Thom Hooker
- admin&smx.co.nz
-28417
- MÖLLER-WEDEL GmbH
- M. Schaper
- m.schaper&moeller-wedel.com
-28418
- Corenet Ltd.
- Mikko Tepponen
- mikko.tepponen&corenet.fi
-28419
- Trilogic
- Evariste Courjaud
- evariste&trilogic.fr
-28420
- Opus Software
- Patrick Theys
- ptheys&yahoo.com
-28421
- Partido Socialista Obrero Español (PSOE)
- Jaime Vazquez
- jvazquez&psoe.es
-28422
- Tobias Scherbaum
- Tobias Scherbaum
- tobias&scherbaum.info
-28423
- Nucomm Inc.
- John B. Payne IV
- jpayne&nucomm.com
-28424
- Rockshore Limited
- Matt Green
- matt.green&rockshore.net
-28425
- Einstein Industries, Inc.
- System Administrator
- sysadmin&einsteinindustries.com
-28426
- Saint Vincent's Hospital
- Lori Reed-Fourquet
- lori.fourquet&sbcglobal.net
-28427
- udicom AG
- Bernhard Knapp
- bernhard.knapp&udicom.de
-28428
- Secure64
- David Roth
- david.roth&secure64.com
-28429
- Novanetic, Inc.
- Jonathan Gettys
- jgettys&novanetic.com
-28430
- Macedonian Academic And Research Network (MARNet)
- Goran Muratovski
- gone&ukim.edu.mk
-28431
- OpenAFS
- Derrick Brashear
- openafs-elders&openafs.org
-28432
- Navajo Technical College
- Mark Trebian
- mtrebian&gmail.com
-28433
- jmedved
- Josip Medved
- jmedved&jmedved.com
-28434
- NHK Integrated Technology Inc.
- Shinji UEDA
- sin-ueda&nhkitec.co.jp
-28435
- AC&T System Co.,Ltd.
- Hang-Youal Yoo
- hyyoo&acnt.co.kr
-28436
- Carnegie Learning
- Lyle Seaman
- templs&carnegielearning.com
-28437
- Torsten Pohl - Software-Entwicklung
- Torsten Pohl
- enterprise-numbers&torsten-pohl.de
-28438
- rybezahl
- Stephan Waldow
- swaldow&gmail.com
-28439
- Tradesoft Technologies Srl
- Paolo Degl'Innocenti
- pinnocenti&dexgate.com
-28440
- Impulse LTD
- Alexey Kovalkov
- alexk&impulsespb.ru
-28441
- Sjöland & Thyselius
- Staffan Ekvall
- staffan.ekvall&st.se
-28442
- RPH Consulting
- Rolf Petter Halle
- rolf.halle&gmail.com
-28443
- Global Trader
- Le Roi Beukes
- lbeukes&gt247.com
-28444
- Diratel S.L.L
- Igor Gonzalez
- sat&diratel.com
-28445
- Dealermade
- Evan Carroll
- evan&dealermade.com
-28446
- Institute of Mathematics and Computer Science, University of Latvia
- Baiba Kaskina
- baiba&latnet.lv
-28447
- Kabona AB
- Bjorn Lundberg
- bl&kabona.com
-28448
- FCS Fair Computer Systems GmbH
- Bernd Goerz
- b.goerz&fair-computer.de
-28449
- koski.org
- Ryan Koski
- ryankoski&gmail.com
-28450
- Internet Texoma, Inc.
- Larry Vaden
- vaden&texoma.net
-28451
- American Water
- Robert P Schreiber
- robert.schreiber&amwater.com
-28452
- Arabian Horse Association
- Brian Kempton
- bkempt&arabianhorses.org
-28453
- amasol AG
- Hans Maurer
- maurer&amasol.de
-28454
- wh4f
- Thomas Karcher
- tk&wh4f.de
-28455
- Trion World Network
- Operations Control Center
- iana&trionworld.com
-28456
- QNIX Pty Ltd
- Sam De Francesco
- sam&qnix.net.au
-28457
- NTT America Enterprise Hosting
- Michael Bessey
- m.bessey&ntta.com
-28458
- Nokia Solutions and Networks (formerly 'Nokia Siemens Networks')
- Jarno Toropainen
- jarnotoropainen&gmail.com
-28459
- Rogue Engineering Inc.
- Tim Kirk or Mark Walsh
- mwalsh&rogue-engr.com
-28460
- Benone Bitencourt
- Benone Bitencourt
- benoneb&gmail.com
-28461
- Mutoh Industries Ltd.
- Hideo Noda
- nodah&acm.org
-28462
- KnoxOne
- Hans Verbrugge
- hans&knoxone.nl
-28463
- beginux.org
- mark voltz
- mark.voltz&gmail.com
-28464
- On Air Networks
- On Air Networks
- ydy0411&naver.com
-28465
- Echola Systems
- Sankaran Ganesan
- sankaran_g&echola.com
-28466
- MrLane.com
- Kam Lane
- kam&mrlane.com
-28467
- PiCell B.V.
- Peter J. Boudewijns
- peter&picell.com
-28468
- Fabio Prina
- Fabio Prina
- fabio&sauro.org
-28469
- Cyber Media (India) Ltd
- Krishna Kumar
- kkkg&cybermedia.co.in
-28470
- St. Lawrence University
- Rhett Thatcher
- sysadmin&stlawu.edu
-28471
- Bremer AG
- Peter Kussmann
- p.kussmann&bremerbau.de
-28472
- tapirdata.com
- Andreas Riedl
- office&tapirdata.com
-28473
- DAVOnet GmbH
- Thomas Rehm
- thomas.rehm&davonet.de
-28474
- periscoptic perceptions
- tracey plummer
- tracey&periscopticperceptions.com
-28475
- Akademickie Centrum Kliniczne - Szpital Akademii Medycznej w Gdansku
- Marcin Stepnicki
- root&ack.gdansk.pl
-28476
- bwin Interactive Entertainment AG
- Werner Huss
- werner.huss&bwin.org
-28477
- Global Tel Link
- James Wink
- jwink&gtl.net
-28478
- Implicit Monitoring Solutions, LP
- Enoch Suen
- enoch.suen&implicits.com
-28479
- Coremetrics
- Cameron Lane
- clane&coremetrics.com
-28480
- Traffic.com, Inc.
- Helen Holzbaur
- itops&traffic.com
-28481
- MicroImaging
- Steven C. Leach
- microimaging&gmail.com
-28482
- Technospace SRL
- Giosue Evangelista
- giosue.evangelista&poste.it
-28483
- Satileon Networks
- Salit Even Shoam
- salite&satileon.com
-28484
- ttb-group
- Matthias Spork
- matthias.spork&ttb-group.de
-28485
- IDTIC. C.A.
- Leonardo Uzcategui
- luzcategui&idtic.com
-28486
- PETR HUMMEL
- PETR HUMMEL
- humlik&seznam.cz
-28487
- Digital Dynamics Inc
- Anthony Machon
- iana&digitaldynamics.us
-28488
- ROBOC Co.,Ltd.
- Itoh Daisuke
- pub_iana_enterprise&roboc.com
-28489
- Devcom Solutions AB
- Stefan Karlsson
- stefan&devcom.nu
-28490
- Kosmos ry.
- Teppo Jalava
- tjjalava&iki.fi
-28491
- mitene internet co.,ltd.
- Akio Higashi
- ahigashi&mitene.or.jp
-28492
- MD PREI KRASKRIPT
- Eugene V. Polozenko
- polozenko&kraskript.ru
-28493
- nexmedia Pte Ltd
- Toby Phipps
- operations&nexmedia.com.sg
-28494
- Orbis Lumen
- Mark Rushing
- mark&orbislumen.net
-28495
- Rodenstock GmbH
- Voelkl Markus
- markus.voelkl&rodenstock.com
-28496
- Unassigned
- Returned 2007-07-18
- ---none---
-28497
- The Cavell Group
- Michael Graham
- mgraham&cavellgroup.com
-28498
- linuxcon
- Reinhold Baldauf
- info&linuxcon.de
-28499
- Differitas as
- John Sletten
- john&differitas.no
-28500
- Tagelin
- Julian Dean
- iana&treworthal.net
-28501
- AMBISEA Technoloy Corp., Ltd
- Stephane Hollande
- it&ambisea.com
-28502
- TeleIDEA BV
- Pio Cardone
- pio.cardone&teleidea.com
-28503
- Unixuser
- Yasser Nabi
- yasser&unixuser.org.uk
-28504
- Proclos
- Peter Füreder
- peter.fuereder&proclos.com
-28505
- Faculdade Metropolitana IESB
- Bruno Gimenes Pereti
- pereti&ump.edu.br
-28506
- OpServices Tecnologia da Informacao S/A
- Paulo Ribas
- paulo.ribas&opservices.com.br
-28507
- Gude Analog- und Digitalsysteme GmbH
- Michael Gude
- info&gudeads.com
-28508
- Cunhol
- Joao Bras
- dsi&cunhol.com
-28509
- FifSource
- Philippe Troin
- phil&fifsource.com
-28510
- John S. Connor
- Pinda Ndaki
- it&jsconnor.com
-28511
- DowKey Microwave
- Giuseppe Bondi
- gbondi&dowkey.com
-28512
- Intellibyte Inc.
- Andrew Tunstall
- atunstall&intellibyte.ca
-28513
- VHV
- Joerg Monpetain
- jmonpetain&vhv.de
-28514
- ITALIACERCA s.a.
- Giosue Evangelista
- giosue.evangelista&poste.it
-28515
- Goerz IT-Consulting
- Bernd Goerz
- goerz&web.de
-28516
- bitglue.com
- Phil Frost
- indigo&bitglue.com
-28517
- 7key
- Andrey Afanasiev
- scum001&gmail.com
-28518
- CA & PARTNERS
- M. AMEKUDJI Cyriaque
- acyriaque&wanadoo.fr
-28519
- NEC Fukui, Ltd.
- Hiroshi Sawada
- hiroshi.sawada&fukui.necel.com
-28520
- Nexsys Consulting Pty Ltd
- Raymond Guy
- rguy&cpay.com.au
-28521
- Jopasana Software & Systems Ltd.
- Ashwini Bomble
- ashwinib&jopasana.com
-28522
- CANDIDO Kommunikationselektronik
- Ing. Andreas Candido
- a.candido&candido-online.at
-28523
- BACH systems s.r.o.
- Radomír Staroštík
- r.starostik&bach.cz
-28524
- Syntech SW Ltd
- Andy Watson
- hostmaster&syntech-sw.com
-28525
- Across Finance, a.s.
- Milan Beňo
- mbeno&across.sk
-28526
- CCS Customer Communication Systems GmbH
- Michael Kärcher
- m-pen-iana&eons.de
-28527
- Adeptra Inc.
- Operations Group
- ops&adeptra.com
-28528
- thevisp
- Philip Saxton
- psaxton&gmail.com
-28529
- NetSolutions Perú S.A.C.
- Irenio Luis Chagua Aduviri
- ichagua&gmail.com
-28530
- Khypoea
- Eric Welsh
- ewelsh&khypoea.com
-28531
- Steven Roth
- Steven Roth
- steve&rothskeller.net
-28532
- AO DAAZ
- Sergey Moshkov
- sam&daaz.ru
-28533
- CYAN
- Matthew Nguyen
- matthew.nguyen&cyanoptics.com
-28534
- City of Jacksonville
- Kevin Haynes
- tsg&coj.net
-28535
- AlarmEngine
- Stefan H. King
- sking&alarmengine.com
-28536
- Zappos.com
- Derek Fedel
- dfedel&zappos.com
-28537
- HEALTHSIGN SL
- MANUEL CANTON
- mcanton&es.wisekey.com
-28538
- Federated Mutual Insurance
- Matthew J. Stein
- MJStein&fedins.com
-28539
- Buf Compagnie
- Administrator
- admin&buf.com
-28540
- Weisberg Consulting, Inc.
- Matt Weisberg
- matt&weisberg.net
-28541
- Net Demon
- Jeff W. Storey
- jstorey&net-demon.com
-28542
- Aleph Web Services
- Thomas Haselwanter
- thomas.haselwanter&aleph-webservices.com
-28543
- Houston Baptist University
- Zung Hoang
- zhoang&hbu.edu
-28544
- ChilesConsulting
- Michael Chiles
- michael.chiles&gmail.com
-28545
- M.G InfoCom Pvt. Ltd.
- Sanket Gupta
- sanket&mindgenies.com
-28546
- Laubheimer
- Markus Laubheimer
- markus&laubheimer.de
-28547
- Australian National University
- Ahmed EL Zein
- ahmed.elzein&anu.edu.au
-28548
- Caja de ahorros de Santander y Cantabria
- Jose Luis Gonzalez Llano
- hostmaster&altamiraonline.com
-28549
- PhysiSoft
- Thomas Schneider
- tschneider&physisoft.de
-28550
- Marand d.o.o.
- Jan Gnezda
- jan.gnezda&marand.si
-28551
- Weird Solutions Sweden AB
- Nicole Östman
- nicoleo&weird-solutions.com
-28552
- Avocet RT Limited
- Dan Maskell
- dan&zippysystems.com
-28553
- Securepoint GmbH
- Bastian Kummer
- bastian.kummer&securepoint.de
-28554
- Care2
- Karl Pietri
- karl&earth.care2.com
-28555
- Manheim Services Corporation
- SNMP Administrators
- snmpadmins&terrier.manheim.com
-28556
- Last.fm Ltd.
- Russ Garrett
- russ&last.fm
-28557
- Hillstone Networks Inc
- Ning Mo
- nmo&hillstonenet.com
-28558
- KEYENCE CORPORATION
- Hideki Ueda
- soft-license&keyence.co.jp
-28559
- Utah State University
- Information Technology - Allen Hill
- tech.contact&usu.edu
-28560
- IServ
- Joerg Ludwig
- joerg.ludwig&iserv.eu
-28561
- eHealthConnecticut
- Lori Reed-Fourquet
- lori.fourquet&sbcglobal.net
-28562
- Fortune System Inc.
- Taketora Kikuchi
- OID-admin&fortunesystem.co.jp
-28563
- RFNC-VNIITF
- Vyacheslav Kharitonov
- hvb&inbox.ru
-28564
- Network Synergy Services, LLC.
- Zung Hoang
- zhoang&houston.rr.com
-28565
- Carley IP
- Jeff Carley
- jeff&thecarleys.net
-28566
- SCache Systems
- Shivaram Narasimha Murthy
- snm&scache.com
-28567
- MEGLA GmbH
- Volker Siebelink
- vsiebelink&megla.de
-28568
- MicroLink
- Ovchinnikov Konstantin
- kst&microlink.ru
-28569
- UltraRAD Corporation
- travis nuzzi
- tnuzzi&ultraradcorp.com
-28570
- Junta de Castilla y Leon
- Alberto Martinez Arribas
- dominios.internet&jcyl.es
-28571
- Hafslund ASA
- Aslak Poppe
- aslak.poppe&hafslund.no
-28572
- Auditiel
- Jerome Dusautois
- jdusautois&auditiel.fr
-28573
- zonekey Inc.
- Lei Wang
- wanglei&zonekey.com.cn
-28574
- ICA-NET s.r.l.
- Marco Piai
- admin&ica-net.it
-28575
- My-Portal.gr
- Zissis Sekros
- zsek&my-portal.gr
-28576
- Longent LLC
- Rick Youngbar
- ryoungbar&longent.com
-28577
- Walnut Valley Unified School District
- Brian Troudy
- btroudy&walnutvalley.k12.ca.us
-28578
- Powerland Computers
- Chad Kitching
- ckitching&powerlandcomputers.com
-28579
- New World Restaurant Group, Inc.
- Scott Morris
- smorris&nwrgi.com
-28580
- MoroSystems, s.r.o.
- Stanislav Hybasek
- info&morosystems.cz
-28581
- Wireless Generation, Inc.
- John Stewart
- admin&wgen.net
-28582
- Linux Systemhaus Schulz
- Karsten Schulz
- kschulz&t800.ping.de
-28583
- Tangent Systems, Inc.
- Steve Mack
- steve.mack&tangent-systems.com
-28584
- Allegro Networks pty ltd
- Darren Philips
- darren.philips&team.allegro.com.au
-28585
- Sniddle LLC
- Mike French
- macvoip&gmail.com
-28586
- EATON Wireless
- John Millsaps
- johnwmillsaps&eaton.com
-28587
- Mobilesoft (Aust) Pty Limited
- Cameron Hutchison
- chutchison&mobilesoft.com.au
-28588
- Kaplan Software, LLC
- Gerald Kaplan
- gkaplan&kaplansoftware.com
-28589
- IDERs Inc
- Sami Kibria
- skibria&iders.ca
-28590
- EVC Inc.
- Tetsuya Shiotani
- tech&evc.jp
-28591
- BEIJING THINKOR INFORMATION TECHNOLOGIES CO.,LTD.
- peream Chen
- guo_gang&126.com
-28592
- Eteration A.S.
- Naci Dai
- naci.dai&eteration.com
-28593
- SCA Timber AB
- Roger Jansson
- roger.jansson&sca.com
-28594
- EXGEN Networks Co., Ltd.
- Seiichi Onda
- master&exgen.co.jp
-28595
- PATRONAS Financial Systems GmbH
- H. Steuer
- steuer&patronas.de
-28596
- CTE Digital Broadcast s.r.l.
- Marco Spada
- mspada&cte-elit.it
-28597
- National Centre for Scientific Research "Demokritos"
- Vassilis Vatikiotis
- sysadmin&iit.demokritos.gr
-28598
- Sambers Italia Spa
- Simone Bettola
- s.bettola&hantarex.it
-28599
- Landmark Communications, Inc.
- Randy Hall
- randy.hall&pilotonline.com
-28600
- Hetra Secure Solutions Corp.
- Dale Cannon
- dcannon&hetrasecure.com
-28601
- Know It All
- Alek Zdziarski
- alekzdz&gmail.com
-28602
- LogicBox, Inc.
- Jason Goemaat
- Jason.Goemaat&logicboxinc.com
-28603
- MEDNETWorld.com, Inc (formerly 'MEDNET USA, Inc')
- Seonho Kim
- seonho.kim&mednetworld.com
-28604
- Factory Creative Studio Ltd.
- Kovács Balázs
- pen&jonapot.hu
-28605
- Logicalis GmbH (formerly 'Minters GmbH')
- Hendrik Hasselberg
- iana&logicalis.de
-28606
- TheFind, Inc.
- Alex Meyer
- pen28606&thefind.com
-28607
- coforum
- Thomas Kalka
- thomas.kalka&gmail.com
-28608
- Technomonk Industries
- Mike Preston
- support&technomonk.com
-28609
- SpongeLava Ltd.
- Paul Thomas
- snmp&spongelava.com
-28610
- Bengt Månsson
- Bengt Månsson
- bengt.mansson&gmail.com
-28611
- CommAgility Ltd
- Paul Alan Moakes
- info&commagility.com
-28612
- Bountiful WiFi LLC
- Brett Steinicke
- brett&bountifulwifi.com
-28613
- Plastek Group
- Chip Lynch
- clynch&plastekgroup.com
-28614
- 6202110 Canada Inc.
- Ryan Wan
- ryan&ryanwan.name
-28615
- Ondrej Vlach
- Ondrej Vlach
- ovlach&nanobyte.cz
-28616
- Orpak Systems Ltd
- Boris Ratner
- bratner&orpak.com
-28617
- KioriSoft, LLC
- John Draughn
- john.draughn&kiorisoft.com
-28618
- Lightning Source
- Jeff Crawford
- jeff.crawford&lightningsource.com
-28619
- Univeris Corporation
- Derek Schenk
- dschenk&univeris.com
-28620
- CSI Communication Systems Inc. AG
- SPRING, Simon
- spring&csi.ch
-28621
- HANDICAP INTERNATIONAL
- david meuleman
- it&handicap.be
-28622
- Integrated Business Systems & Services
- Terrence Sullivan
- tsullivan&ibss.net
-28623
- Pari Networks
- Satyan Raju
- raju&parinetworks.com
-28624
- UNHfree.net
- Dominik Strnad
- info&unhfree.net
-28625
- tarot.com
- Ken Maupin
- hostmaster&tarot.com
-28626
- Laszlo Systems, Inc.
- Paul van Gool
- pvangool&laszlosystems.com
-28627
- Hammernet
- Andreas Kimpfler
- andreas&kimpfler.net
-28628
- Twisted Storage Inc
- Chas. Wegrzyn
- cwegrzyn&twistedstorage.com
-28629
- everRaise.com
- Cd Chen
- cdchen&cdchen.idv.tw
-28630
- The Atlantis Consulting
- Aron Sogor
- aron&theatlantis.net
-28631
- GoonSwarm
- aka 'Solo Drakban'
- tech&goonfleet.com
-28632
- EuroMedia-Service GmbH
- Guido J. Mueller
- guido.mueller&euromedia-service.de
-28633
- DataCentr Ltd.
- Alex Yanchenko
- yanchenko&gmail.com
-28634
- ComAp, spol. s r. o.
- Steiger Miroslav
- steiger&papouch.com
-28635
- Fragnetics LLP
- Kwok Yang Bin
- yangbin&fragnetics.com
-28636
- PHB Eletronica Ltda
- Rogerio Valentim Pereira
- rogerio&phb.com.br
-28637
- DANSUPPORT
- Torben Petersen Egmose
- tpe&dansupport.dk
-28638
- Bellomy Research, Inc.
- Matt Gullett
- mgullett&bellomyresearch.com
-28639
- TxCore, Inc.
- Tim Kuchlein
- tim&txcore.com
-28640
- IT Linux
- Patricio Bruna
- pbruna&it-linux.cl
-28641
- Delinked
- Michael Reynolds
- michael.reynolds&sosdg.org
-28642
- Proveedor de Certificados PROCERT, C. A.
- Oscar Lovera
- oscar.lovera&procert.net
-28643
- SUEIIDISS
- Gustavo Perez
- gustavo&hc.edu.uy
-28644
- Gary Thomas
- Gary Thomas
- g.thomas&mat.ucsb.edu
-28645
- Techila Technologies Ltd.
- Teppo Tammisto
- teppo.tammisto&techila.fi
-28646
- 650mhz
- Pavel Rubtsov
- mhz650&mail.ru
-28647
- EKM4 LIMITED
- Martin D Bacon
- m.bacon&iap.org.uk
-28648
- SIATech Inc.
- Bryan Oswald
- Bryan&siatech.org
-28649
- SIPGear AB
- Urban Engemyr
- urban.engemyr&sipgear.com
-28650
- AxisMobile
- Nadav Fried
- nfried&axismobile.com
-28651
- MODS
- Sylwester Lunski
- slunski&mods.pl
-28652
- The Hartford
- Alexander J Monsiegneur
- amonsiegneur&thehartford.com
-28653
- Physicians Group, L.L.C.
- Chad Sine
- chad&pgllc.com
-28654
- Mobile Interactive Group
- Marcus Kern
- marcus&migcan.com
-28655
- TIANJIN OMUX COMMUNICATION TECHNOLOGY CO.,LTD
- Larry_zhao
- zyf&omux.com
-28656
- iPolicy Networks Limited
- Mannu Kalra
- mkalra&ipolicynetworks.com
-28657
- Fonoklik Iletisim Hizmetleri ve Ticaret A.S.
- Pınar Kapralı Gorsev
- pinar&phonoclick.com
-28658
- EnteGreat, Inc.
- Bob Rose
- bob_rose&entegreat.com
-28659
- The Cooper-Cain Group, Inc
- Pat Cain
- pen-register&coopercain.com
-28660
- Linear Acoustic Inc.
- Rod Campbell
- rod&linearacoustic.com
-28661
- Foster
- Foster Liu
- fliu&gennux.com
-28662
- Richard Gavenda
- Richard Gavenda
- richard.gavenda&net.tvtrinec.cz
-28663
- Arada Systems
- Ravi Puvvala
- iana&aradasystems.com
-28664
- GIFTCS, LLC
- Noah Gift
- noah.gift&gmail.com
-28665
- Village-Island Co.,Ltd.
- Michael VAN DORPE
- michael&village-island.com
-28666
- Elaxys Tecnologia
- Claudio Leonel
- cls&elaxys.com.br
-28667
- confusatron.org
- Keith Zaback
- krz-iana&confusatron.org
-28668
- Devmach.com Linux Support Services
- Aydin Ulfer
- root&devmach.com
-28669
- Bycast, Inc.
- Quentin Vandermerwe
- pmreg&bycast.com
-28670
- Blue Cacao Technologies, S.A. de C.V.
- Vladimir Ernesto Diaz-Aviles
- vedax&bluecacao.com
-28671
- TORINS Ltd.
- Alexey Tokarev
- tav&torins.ru
-28672
- Communication Research Labs Sweden AB
- Anders Lundstrom
- anders.lundstrom&crl.se
-28673
- Conseil Régional de Lorraine
- Xavier ESPUNAS
- xavier.espunas&businessdecision.com
-28674
- KIRNexus GmbH
- Ewald Restle
- ewald.restle&kirnexus.com
-28675
- Phorm, Inc.
- Tiemen Meerman
- admin&phorm.com
-28676
- WireGATE Technology
- Zhi-Feng Dong
- zfdong&wiregatetech.com
-28677
- Sistemas Catastrales S.A.
- Comisario Alejandro Daniel
- acomisario&siscat.com.ar
-28678
- VTK Gent v.z.w.
- VTK Computer
- computer&vtk.ugent.be
-28679
- Middle Atlantic Products
- Peter Skinner
- pskinner&middleatlantic.com
-28680
- Appalachian Regional Healthcare, Inc.
- Darrell Fraliex
- dfraliex&arh.org
-28681
- Crystal Vision Ltd
- Martin Macadie
- martin&crystalvision.tv
-28682
- Planetas Medios Digitales S.L.
- Pablo S. Torralba
- pstorralba&gmail.com
-28683
- Xerox - Document Supplies Europe
- Jarlath Mc Ardle
- Jarlath.McArdle&xerox.com
-28684
- KATE-KOM
- Sinisa Radas
- sradas&kate-kom.com
-28685
- Consultem d.o.o.
- Oliver Jukić
- oliver.jukic&consultem.hr
-28686
- The Hertz Corporation
- James Bowen
- pki&hertz.com
-28687
- infotronic
- livio penzo
- info&infotronic.com
-28688
- Samway Electronic SRL
- Mihai Savu
- mihai.savu&samway.ro
-28689
- PC Solutions Net
- Mobeen Azhar
- moby&pcsn.net
-28690
- morrisey.us
- Richard Morrisey
- r.morrisey&computer.org
-28691
- BLStream Sp. z o.o.
- Lech Karol Pawłaszek
- lech.pawlaszek&blstream.com
-28692
- Karmoy kommune
- Steen Erik Hagland Hansen
- ldap&karmoy.kommune.no
-28693
- Colimbra BV
- Terence Sambo
- tsambo&colimbra.com
-28694
- levigo holding gmbh
- Oliver Bausch
- o.bausch&levigo.de
-28695
- Philadelphia Stock Exchange
- Jonathan Wolf
- jonathan.wolf&phlx.com
-28696
- ASQUARE Consulting GmbH
- Thomas Pajonk
- Thomas.Pajonk&asquare.eu
-28697
- Transcom Enhanced Services
- Michael Hale
- mhale&transcomus.com
-28698
- Teradata Corporation
- Mike Lee
- mike.lee&teradata.com
-28699
- Auto/Con Corp
- Michael L Picio
- mpicio&autoconcorp.com
-28700
- O-Regan.org
- Kevin O'Regan
- kevin&o-regan.org
-28701
- QuVIS, Inc.
- Mark Hodges
- mhodges&cableone.net
-28702
- Charles Sturt University
- Dave McDonnell
- dmcdonnell&csu.edu.au
-28703
- University of Nevada, Las Vegas
- Don Diener
- don.diener&unlv.edu
-28704
- Integrated Broadcast Information Systems Ltd.
- John Haselwood
- john.haselwood&ibistv.co.uk
-28705
- FURUNO ELECTRIC CO., LTD.
- SNMP Administrator
- snmp_admin&furuno.co.jp
-28706
- Airservices Australia
- Michael Bachmann
- michael.bachmann&airservicesaustralia.com
-28707
- National Cancer Center
- Naoyuki Satoh
- admin&ncc.go.jp
-28708
- FUJIFILM Corporation
- Takamasa YAGUCHI
- takamasa_yaguchi&fujifilm.co.jp
-28709
- Universidade de Brasília
- Jacir Luiz Bordim
- bordim&unb.br
-28710
- Dwi Tunggal Putra Private Limited
- Kristiadi Himawan
- kristiadi_himawan&dtp.net.id
-28711
- Department of Zoology, Stockholm University
- Ulf Norberg
- hostmaster&zoologi.su.se
-28712
- META-LEVEL Software AG
- Martin Bauer
- martin.bauer&meta-level.de
-28713
- GDC Technology Ltd
- Ujval Lodha
- ujval&gdc-tech.com
-28714
- Slithy Toves
- Andrew Kailhofer
- andy&toves.com
-28715
- Edfinancial Services
- Gary Lapointe
- glapointe&edfinancial.com
-28716
- Virtual Viewing Ltd
- Peter Kuma
- peter.kuma&virtualviewing.co.uk
-28717
- Zavod K6/4
- Almir Karic
- almir&kiberpipa.org
-28718
- Ministère de l'Education Nationale, Luxembourg
- Centre de Technologie de l'Education, Christian Goebel
- christian.goebel&cte.lu
-28719
- Tarrant County
- Aaron Barnes
- aaronbarnes&tarrantcounty.com
-28720
- Jaguar Software Development
- Brian Mason
- oid&jaguarsoftware.com
-28721
- Affernet Pty Ltd
- Doug Balmer
- sysadmin&affernet.com
-28722
- Network Synergy Pty Ltd
- Trevor Lees
- trevor&networksynergy.com.au
-28723
- GBCOM
- Li Xianping
- iamlixianping&gmail.com
-28724
- AnNeal Technology Inc.
- Mr. Cal Wu
- calwu&anneal.com.tw
-28725
- Atonics Inc.
- Nehemiah Chang
- nehemiah&atonics.com.tw
-28726
- MFLO
- Pae Wan Soo
- mypws&mflo.co.kr
-28727
- EFUN International Corporation
- Jeremy Huang
- jeremy.huang&e-fun.cc
-28728
- Jerich Austria GmbH
- Helmut Wieser
- helmut.wieser&jerich.com
-28729
- GRD
- Valentyn Shapoval
- valsh&microsoft.com
-28730
- NiX
- Norbert Buchmuller
- norbi&nix.hu
-28731
- Edgeware AB
- Johan Rydberg
- johan.rydberg&edgeware.tv
-28732
- Secure Links
- Paul Thresher
- paul&securelinks.net
-28733
- Ronexprim Srl
- Mocanu Petrut
- pm&ronexprim.com
-28734
- Automorpheus.com Corporation
- David Pratt
- fairwinds&eastlink.ca
-28735
- Ahoya Networks Inc
- shuming chang
- shuming&ahoya.com.tw
-28736
- ILOG
- Fabien Lelaquais
- lelaquaf&ilog.fr
-28737
- webapps.jp
- Toru Hiramatsu
- hiramatu&webapps.jp
-28738
- Nippon RAD Inc.
- Hoshino, Shingo.
- hoshino&nippon-rad.co.jp
-28739
- ika
- Jochem Ippers
- ippers&ika.rwth-aachen.de
-28740
- Noval Networks
- Juha Antila
- juha.antila&novalnetworks.com
-28741
- Banco Popular y de Desarrollo Comunal
- Noe J. Castro Rueda
- noecastro&bp.fi.cr
-28742
- Horry Electric Cooperative, Inc.
- Dale Johnson
- administrator&horryelectric.com
-28743
- Greschitz IT Security
- Thomas Greschitz
- office&greschitz.com
-28744
- College of Medicine, University of Ibadan, Ibadan
- Dr Wole Adebiyi
- woleadebiyi&comui.edu.ng
-28745
- Comtest Wireless S.r.l.
- Matteo Prosperi
- matteo.prosperi&comtestwireless.it
-28746
- The Swedish National Archive of Recorded Sound and Moving Images
- Linus Sjoberg
- ls&slba.se
-28747
- GIP AG
- Philipp Dominitzki
- philipp.dominitzki&gip.com
-28748
- LibreStream Technologies Inc.
- Kent Wotherspoon
- snmp&LibreStream.com
-28749
- TeliPhone inc.
- Benjamin Lawetz
- support&teliphone.ca
-28750
- ISEDEV
- Iestyn Elfick
- isedev&gmail.com
-28751
- 4INFO, Inc.
- Jim Cooley
- jcooley&4info.net
-28752
- WAE Technologies, Inc.
- Joshua Olson
- joshua&waetech.com
-28753
- EPS Co., Ltd.
- Hiromichi Nosaki
- h.nosaki&eps.co.jp
-28754
- Vinotech
- Ralph J.Mayer
- oid&vinotech.net
-28755
- comWare GmbH
- Frank Holznagel
- fh&comware-software.de
-28756
- Fachhochschule Worms
- Norbert Drees
- pen-admin&fh-worms.de
-28757
- Mu Dynamics (formerly 'Mu Security')
- PEN Contact
- pen-info&mudynamics.com
-28758
- Centurum Inc.
- Terry Hebert
- HelpDesk&Centurum.com
-28759
- Savant Tecnologia
- Marcos Sungaila
- marcos&savant.com.br
-28760
- Albus-Insec
- Arthur Caranta
- arthur&albus-insec.com
-28761
- MDS America, Inc.
- Gopiballava Flaherty
- gopi&mdsamerica.com
-28762
- Unwire
- Morten Olsen
- mol&unwire.dk
-28763
- CoCoZ
- Julien Francoz
- julien&francoz.net
-28764
- Hollywood Entertainment
- Jen Meneley
- jenm&hlyw.com
-28765
- South Bay Community Network, Inc.
- Ian Kluft
- ik-iana-pen&thunder.sbay.org
-28766
- Tradescape, Inc.
- Jian Zhang
- jian&tradescape.biz
-28767
- Enseo, Inc
- Ed Okerson
- eokerson&enseo.com
-28768
- MasterCard WorldWide
- Todd Telle
- Todd_Telle&mastercard.com
-28769
- Unison Network Labs
- Zhang Wen Ming
- wenming.zhang&unison.net.cn
-28770
- RJ Landau Partners PLLC
- Kristen M. Tsangaris
- kmtsangaris&gmail.com
-28771
- wolery.net
- Oleg Lyashko
- oleg.v.lyashko&gmail.com
-28772
- Blueberry Consultants Ltd
- Martin Green
- hostmaster&bbconsult.co.uk
-28773
- Papier & Recycling Logistik GmbH
- Haschek Martin
- edv&spex.at
-28774
- Ixaris Systems Ltd
- Justin Vassallo
- sysadmin&ixaris.com
-28775
- Expway
- Laurent Le Bourhis
- laurent.lebourhis&expway.fr
-28776
- Neuf Cegetel
- John WALTER
- john.walter&neufcegetel.fr
-28777
- Ignos Estudio de Ingenieria S.L.
- Adrian Perez Jorge
- aperez&ignos.com
-28778
- Intellistream
- Jani Peltonen
- jani.peltonen&intellistream.co.uk
-28779
- Fox-IT B.V.
- Frans van Dorsselaer
- iana&fox-it.com
-28780
- patteran, inc.
- Art Allisany
- ainfo&patteran.com
-28781
- Bowdoin College
- Michael Bowden
- mbowden&bowdoin.edu
-28782
- Earmark Media Services
- William Bloomfield
- netadmin&earmarkmedia.com
-28783
- Venafi
- Jesse Gardner
- jesse.gardner&venafi.com
-28784
- CER International bv
- Ad van den Broek
- iana.inkoop&cer.com
-28785
- Me.Dium, Inc.
- Scott Engstrom
- sengstrom&me.dium.com
-28786
- Vidiom Systems, Inc.
- Tobin Wahlers
- toby&vidiom.com
-28787
- Flex-Networks Inc.
- Karim Virjee
- karim.virjee&date.com
-28788
- Quarantainenet BV
- Casper Joost Eyckelhof
- info&quarantainenet.nl
-28789
- Cory Albrecht
- Cory Albrecht
- coryca&gmail.com
-28790
- Poslovno informacioni sistemi, d.o.o.
- Milos Merdzanovic
- milosmerdzanovic&pis.co.yu
-28791
- SBI Japannext Co Inc
- Ryan McBride
- ryan.mcbride&japannext.co.jp
-28792
- TotalWire S.r.l.
- Alfonso De Gregorio
- iana&totalwire.it
-28793
- Neptuny s.r.l.
- Stefano Moscetti
- stefano.moscetti&neptuny.it
-28794
- slashconcept GbR
- Christoph Pilka
- c.pilka&slashconcept.com
-28795
- uPRESTO, Inc
- Hae-Yeon, Hwang
- hyhwang&upresto.com
-28796
- Haberst Infra AS
- Kristjan Koppel
- it-oid&haberst.ee
-28797
- SCBA Expert Service Centre
- Sergey N Frolov
- frolovs&mail.nnov.ru
-28798
- JSC "SBERCARD"
- Gritsienko Sergey
- ca&sbercard.com
-28799
- Thales Security Solutions and Services
- Ricardo Claudino
- ricardo.claudino&thalesgroup.com
-28800
- QualiConsult Ltda
- André Carneiro
- andre.carneiro&grupoquali.com.br
-28801
- FlexStar Technology, Inc
- Dmitri Repkine
- drepkine&flexstar.com
-28802
- SMS Tecnologia Eletronica LTDA
- Ricardo Seixas
- rseixas&sms.com.br
-28803
- ISCaD GmbH
- Friedhelm Matten
- post&fmatten.de
-28804
- L'Occitane SA
- Jerome CRUZ-MERMY
- iana&loccitane.com
-28805
- Visionary Networks, Inc.
- Sean Whitney
- sean&visionary-networks.com
-28806
- Nationwide Children's Hospital (formerly 'Children's Hospital, Inc.')
- Brian Baacke
- Brian.Baacke&NationwideChildrens.org
-28807
- Mullins Household
- Matthew Mullins
- mokomull&gmail.com
-28808
- accom GmbH & Co. KG
- Michael Portz
- michael.portz&accom.de
-28809
- Netwurk Labs
- Jeff Ritchie
- jritchie&netwurklabs.com
-28810
- Desai Electronic Technology (Sichuan) Co., Ltd.
- Youke Zhou
- yukezhou&hotmail.com
-28811
- SMS spol. s r.o.
- Petr Behavka
- petr.behavka&smed.cz
-28812
- DIGITALK Limited
- Nathan Colman
- ProductDev&digitalk.com
-28813
- Alberta-Pacific Forest Industries Inc.
- Jay Supernault
- dnsadmin&alpac.ca
-28814
- HEALTHGRID
- Yannick LEGRE
- yannick.legre&healthgrid.org
-28815
- Wedjaa
- Fabio Torchetti
- info&wedjaa.net
-28816
- Supplee Technologies
- John R. Supplee
- online&supplee.com
-28817
- Exploreos, Inc.
- Christian Clay Campbell
- operations&exploreos.com
-28818
- St. John Medical Center
- Andy Hight
- delberth25&yahoo.com
-28819
- Titan Consulting Group, Inc.
- Brian O'Neil
- bmoneil&titanconsultinggroup.com
-28820
- XUERON.COM
- Xueron Nee
- xueron&xueron.com
-28821
- GreatWall Systems, Incorporated
- Michael Burr
- register&greatwallsys.com
-28822
- ABE ELETTRONICA S.p.A.
- Roberto Valentin
- roberto.valentin&abe.it
-28823
- Neta Technologies Inc.
- Yap Ye, Cheng Gang
- cyapye&netatechnologies.com
-28824
- JPragma
- Isaac Levin
- info&jpragma.com
-28825
- Bufete de Servicios Informaticos, SA de CV
- Aaron Rivacoba Bohorquez
- arivacoba&gpobsi.net
-28826
- Infinite Innovation, Inc.
- JD McGregor
- jdmcgregor&infiniteinnovationinc.com
-28827
- TLH Systems
- Thomas L Hazen
- TLHazen&ThomasHazen.com
-28828
- Oita Computer Engineering & Consulting Ltd.
- yasuyuki sato
- yasuyuki&cec-ltd.co.jp
-28829
- BMST Co., Ltd
- Andre Song
- song&bmst.net
-28830
- ALCON Telecommunications Co., Ltd.
- Mark Lai
- marks.lai&msa.hinet.net
-28831
- TurboConsult
- Petr Hrebicek
- petr.hrebicek&turboconsult.cz
-28832
- G-cluster Ltd.
- Mr. Antti Kaunisto
- antti.kaunisto&g-cluster.com
-28833
- LUFTHANSA TECHNIK AG
- Samer Abdalla
- samer.abdalla&lht.dlh.de
-28834
- Surecloud
- Toby Scott-Jackson
- toby.scott-jackson&surecloud.com
-28835
- ACXSYS Botswana
- Patrick Andrew Jansen
- patrick&naftec.org
-28836
- BERTANA srl
- Valter Foresto
- progettazione&bertana.biz
-28837
- MVP Health Plan
- Beth McDermott
- bmcdermott&mvphealthcare.com
-28838
- ScreenPC
- Jacques VB Voris IV
- jvoris&screenpc.com
-28839
- ZedX, Inc.
- Joshua Sholes
- systems&zedxinc.com
-28840
- Avcorp Industries Inc.
- Dean Sanderson
- dsanderson&avcorp.com
-28841
- Phönix-PACS GmbH
- Martina Schlesinger
- support&phoenix-pacs.de
-28842
- GJAlves
- Gustavo Junior Alves
- gjalves&gjalves.com.br
-28843
- Dekeyzer
- Jonah Dekeyzer
- jonah.dekeyzer&menzz.be
-28844
- Channel Dynamix
- IANA Administrator
- iana&channeldynamix.com
-28845
- Digital Ocular Networks, Inc.
- Barry P. Benight
- iana&digitalocular.com
-28846
- Universidad de Malaga
- Victoriano Giralt
- victoriano&uma.es
-28847
- D&S Networks
- Andreas Scharein
- a.scharein&ds-networks.net
-28848
- Guangzhou FrameNet Telecommunication Technologies,Co,LTD
- Jianyu Ke
- kjyzy&126.com
-28849
- Professional Products Inc
- Nicholas J Suchyta
- nicks&ppionline.com
-28850
- Felltech Ltd
- Ian McLauchlan
- ianmac&felltech.com
-28851
- Topnordic a/s
- Johnny Boerlum
- jhb&topnordic.com
-28852
- Micro Innovation AG
- Ivo Hengartner
- ivo.hengartner&microinnovation.com
-28853
- Freudenberg Hosting KG
- Team Operating System and Hosting Infrastructure
- hosting.osnt&freudenberg-it.com
-28854
- OOO BB Systems
- Alexander Baikov
- baikov&bbsystems.ru
-28855
- PRESCOM
- Laurent Salagaras
- laurent.salagaras&prescom.fr
-28856
- Concurrent Thinking Ltd.
- Steve Norledge
- steve&concurrent-thinking.com
-28857
- Working Today, Inc.
- Ohad Folman
- oid-manager&workingtoday.org
-28858
- Public Service Mutual Insurance Company
- Ken Mueller
- kmueller&mcarta.com
-28859
- Big Fish Games
- Jeff Tanner
- jeff.tanner&bigfishgames.com
-28860
- GB Development
- Glenn Sills
- gbsills&msn.com
-28861
- Proyecto Conectate al Conocimiento
- Ivan Villamizar
- ivanvillamizar&conectate.gob.pa
-28862
- Sipcall.com Inc.
- Tom Seago
- operations&sipcall.com
-28863
- OSS Integrators, Inc.
- Dave Dickinson
- dave&ossintegrators.com
-28864
- Cosmofon AD
- Nikola Volnarovski
- support&cosmofon.com.mk
-28865
- Achievo Deutschland AG
- Florian Ernst
- florian.ernst&achievo.de
-28866
- TRENDnet, Inc.
- Sonny Su
- s.su&trendnet.com
-28867
- Ping Identity Corporation
- Brian Campbell
- bcampbell&pingidentity.com
-28868
- Anubisnetworks
- João Gouveia
- joao.gouveia&anubisnetworks.com
-28869
- hollaender.net
- Christian Holländer
- iana&hollaender.net
-28870
- Hogskolan i Gavle
- Anders Lordal
- anders.lordal&hig.se
-28871
- Péter Szűcs
- Péter Szűcs
- sherlock&sysop.hu
-28872
- AGENCE LANDAISE POUR L'INFORMATIQUE
- Guillaume BOULOM
- guillaume.boulom&alpi40.org
-28873
- CHIP Xonio Online GmbH
- Steininger Herbert
- hsteininger&chipxonio.de
-28874
- Solarflare Communications Inc.
- Martin Porter
- mporter&solarflare.com
-28875
- secom consulting
- Dr. Andreas Plöger
- ploeger&secom-consulting.de
-28876
- Jordan & Jordan
- Mark Weindling
- markw&jandj.com
-28877
- NRC Systems Ltd
- Nick Clifford
- nick&nrc.co.nz
-28878
- Seikosha Inc.
- Hitoshi Suzuki
- hsuzuki&ksks.co.jp
-28879
- Americanas.com
- Denys Sene dos Santos
- denys.sene&accurate.com.br
-28880
- Westone Information Industry INC.
- chen fuli
- chen.fuli&westone.com.cn
-28881
- dSigma, LLC (formerly 'dCube Technologies, LLC')
- Doug Kehn
- snmp&dsigma.com
-28882
- Michael Eisler
- Michael Eisler
- email2mre-ianaoid&yahoo.com
-28883
- Tomas Bata University in Zlín
- LDAP Admin
- ldap&utb.cz
-28884
- Kucko
- Szabolcs Balogh
- baloghsz&cserkesznet.sk
-28885
- Spolka Inzynierow SIM Sp. z o.o.
- Wojciech Rusinek
- wojciechr&sim.com.pl
-28886
- OXEA Group
- Thorsten Bach
- thorsten.bach&oxea-chemicals.com
-28887
- LabSET
- Vincent MARTIN
- vincent.martin&ulg.ac.be
-28888
- UXtechnology B.V.
- H. de Koning
- techsupport&uxtechnology.com
-28889
- NemoQ Iberica, S.A.
- Jose Monge Martin
- jose.monge&nemoq.net
-28890
- Art Center College of Design
- Jason Blackader
- unix&artcenter.edu
-28891
- College of Dunaujvaros (Dunaújvárosi Főiskola)
- Csaba Kovács
- cs.kovacs&mail.duf.hu
-28892
- Exoweb
- Wang Chun
- wangchun&exoweb.net
-28893
- Rihotec Oy
- Petri Nuuttila
- petri.nuuttila&riihonlahti.com
-28894
- MAXI VIEW HOLDINGS LIMITED
- Chiayi Hsu
- chiayi_hsu&loop.com.tw
-28895
- Caisse Nationale de Sécurité Sociale Maroc
- Tayeb Lahjouji
- tayeb.lahjouji&cnss.ma
-28896
- BCC GmbH
- Florian Reinholz
- florian.reinholz&bcc.de
-28897
- nsec
- Florian Reinholz
- info&n-sec.de
-28898
- Securaplane Technologies
- Glen Singleton
- gsingleton&securaplane.com
-28899
- DataStarved.net
- Tim Garton
- iana&datastarved.net
-28900
- Yasashii Syndicate
- Stacey Ell
- stacey.ell&gmail.com
-28901
- Endicott College
- Robert Klopotoski, Jr
- rklopoto&endicott.edu
-28902
- AnHui University of Technology
- xIaoyin Zhang
- zxy&ahut.edu.cn
-28903
- InterFax
- ran shoklander (shoko)
- shoko&interfax.net
-28904
- Arius Software
- Michael Neame
- mike&ariussoftware.com
-28905
- MeshLinx Wireless, Inc
- Matt Beckwith
- mbeckwith75&yahoo.com
-28906
- Cluenet
- Chris Breneman
- chules&cluenet.org
-28907
- ViASSoL (Virtual Applied Scientific Software Laboratory)(formerly 'ViSSoL (Virtual Scientific Software Laboratory)')
- Dr. Stanislav Koncebovski
- stanislav&chimgan.net
-28908
- MUJIN Systems, Inc.
- Stephen Kim
- stephen.kim&mujinsystem.com
-28909
- 4A-Securer
- Toney Sean
- toneysean&gmail.com
-28910
- Ansitaly
- Mariotti Mario
- mario.mariotti&ansitaly.it
-28911
- CompFort Meridian Polska Sp. z o.o.
- Marcin Marzec
- m_marzec&compfort.pl
-28912
- ZURIEL Ltd.
- Balazs VAMOS
- bvamos&zuriel.hu
-28913
- BitTorrent, Inc.
- Adam Fritzler
- hostmaster&bittorrent.com
-28914
- Alstom Signaling Operation LLC (formerly 'GE Transportation Systems Global Signaling, LLC')
- Jeff Fries
- jeffrey.fries&alstom.com
-28915
- Turtlesystems
- Russell Seymour
- russell.seymour&turtlesystems.co.uk
-28916
- Interop Informatica
- Romulo Giordani Boschetti
- romulo&interop.com.br
-28917
- Comtica
- Lukasz Spica
- lukasz.spica&comtica.pl
-28918
- InfoPrint Solutions Company
- Harry Lewis
- harryl&us.ibm.com
-28919
- Borghesia Consulting
- Vladimir Kraljevic
- office&borghesia.com
-28920
- blaulink GbR
- Martin Burkert
- martin.burkert&blaulink.de
-28921
- Anchiva Systems, Inc.
- Xuyang Li
- xuyang&anchiva.com
-28922
- Crescent Group Ltd.
- Tyler Heal
- t.heal&crescentyk.com
-28923
- Luminator Holding, LP
- Ross Sivertsen
- lrs&luminatorusa.com
-28924
- Megatel Industries Corp.
- Zack Yu
- zack&megatelindustries.com
-28925
- BIGLIST Inc.
- Omar Thameen
- noc-pen&biglist.com
-28926
- Mitteldeutscher Rundfunk
- Roger Busch
- roger.busch&mdr.de
-28927
- First Mallorca
- Sebastian Gloeckler
- sebastian.gloeckler&firstmallorca.com
-28928
- Taylor & Francis Group Ltd
- Domain Administrator
- domainadmin&tandf.co.uk
-28929
- RASKAT
- Vasily Zuev
- vasily&raskat.ru
-28930
- Kilowatt S.A.
- Vicente Marcos Cartas
- vmarcos&kilowattsa.biz
-28931
- MiKe software&network SRL
- Adrian Deac
- ady&mikesnet.ro
-28932
- NazerFarzan
- Mehdi Mazloomi
- mmazloomi&hotmail.com
-28933
- Senado de España
- Jose Luis Bahillo Pereira
- joseluis.bahillo&senado.es
-28934
- tick Trading Software AG
- Jon Bright
- iana_pen&tick-ts.de
-28935
- Sacred Heart College
- Dennis Punjabi
- dennis&shc.edu.bz
-28936
- Information Technology ltda
- Hernan Valdes Pöo
- hernan.valdes&I-Technology.cl
-28937
- DASANTPS Inc.
- Junhan Lee
- junhlee&dasantps.com
-28938
- TAS France
- Franck Zoccolo
- zoccolo&tasfrance.com
-28939
- bremen online services GmbH & Co. KG
- Nils Buengener
- nb&bos-bremen.de
-28940
- IMP Telekom d.d.
- Miha Krejan
- miha.krejan&imp-tel.si
-28941
- Network Solutions Norway ASA
- Fabian Falch
- post&nsn.no
-28942
- Amperion South East
- John Dickinson
- johnd&amperionse.gr
-28943
- Inter Clamp Management AG
- Dieter Gasser
- dgasser&ch.oetiker.com
-28944
- Meyer Associates, Inc
- Brad Mace
- bradm&callmeyer.com
-28945
- nome consulting ltd
- Mike Bell
- iana&nome.ca
-28946
- E-Band Communications Corp
- Jimmy Hannan
- j.hannan&ebandcom.com
-28947
- Trillenium Works
- Lukasz Szanca
- ender&ndr.pl
-28948
- VeePee
- Jérôme Beaufils
- iana&veepee.com
-28949
- Ownage, Inc.
- James Wu
- admin&ownage.com
-28950
- Virtual U at Union College
- Ian Melnick
- melnicki&vu.union.edu
-28951
- IP Fjarskipti
- Hive NOC
- noc&iphive.is
-28952
- Cypress Solutions Inc.
- Frank Li
- fli&cypress.bc.ca
-28953
- AiNETEK CO.,Ltd.
- Max Lee
- info&ainetek.com
-28954
- And-Or Logic
- Syed Mujtaba Ahmed
- programmer316&yahoo.com
-28955
- 9 to 5 Magic
- Ritchie Young
- ritchiey&9to5magic.com.au
-28956
- Allen Martin Ltd
- Paul Davies
- box2&allen-martin.co.uk
-28957
- Institut für Graphische und Parallele Datenverarbeitung, Universität Linz
- Roland Hopferwieser
- rhopfer&gup.jku.at
-28958
- SNAPin Software, Inc.
- David Pratt
- dave&snapin.com
-28959
- Fargo Electronics, Incorporated
- Daniel Fowell
- daniel.fowell&fargo.com
-28960
- resolux
- michel calame
- iana&resolux.fr
-28961
- PIAX Project
- PIAX Administrator
- admin&piax.org
-28962
- Down to Earth Systems
- Michael Trudeau
- system&dtesys.com
-28963
- deyeb
- Li Wei
- guxing203&gmail.com
-28964
- futbag
- Koji Takada
- ktakada&tea.odn.ne.jp
-28965
- KOSnet-EDV
- Alexander Straschil
- office&KOSnet.com
-28966
- 37signals, LLC
- Mark Imbriaco
- mark&37signals.com
-28967
- Optosecurity Inc.
- Eric Pelletier
- iana&optosecurity.com
-28968
- Affinitic s.p.r.l
- Jean-François Roche
- jfroche&pyxel.be
-28969
- Dana Koch
- Dana Koch
- dana.public&gmail.com
-28970
- Digitec Systems
- P. Suresh Kumar
- suresh&digitec.in
-28971
- Incontech Ltd
- Richard Rainbow
- richard.rainbow&incontech.co.uk
-28972
- Keio University
- Tatsumi HOSOKAWA
- keio-net&itc.keio.ac.jp
-28973
- Landschaftsverband Rheinland (formerly 'LVR InfoKom')
- Philipp Franzen
- infokom.it.sec.serv&lvr.de
-28974
- Belarusbank
- Sergei Filatov
- filatov&belarus-bank.by
-28975
- GSI Europe SL
- Operations Team
- op&gsicommerce.eu
-28976
- Intersys Sistemas Interactivos
- Pedro Pablo Salgado
- psalgado&intersys.info
-28977
- NovusEdge
- Michael Klobe
- michael.klobe&novusedge.com
-28978
- Canonical Ltd
- Chris Jones
- chris.jones&canonical.com
-28979
- MwGhennndo
- Mamoru Sakaue
- sakaue.mamoru&mwghennndo.com
-28980
- Leiden University, Faculty of Science
- Roelof van der Kleij
- rvdkleij&chem.leidenuniv.nl
-28981
- TKRJasek
- Emil Micek
- emil.micek&tkrjasek.cz
-28982
- Pachi
- Pachi Neira Lamas
- pachi.neira&lavoz.es
-28983
- TechBase Sp. z o.o.
- Filip Gasperowicz
- f.gasperowicz&a2s.pl
-28984
- Universidade Federal de Mato Grosso do Sul
- Ronaldo Alves Ferreira
- raf&dct.ufms.br
-28985
- Staples, Inc.
- Dot Mastakouras
- dot.mastakouras&staples.com
-28986
- FNMS Project
- Alfred Reibenschuh
- alfredreibenschuh&gmx.net
-28987
- marsldap
- mars hung
- mars&dyinfo.com.tw
-28988
- icanetix Software Systems and Consulting GmbH
- Jeffrey Brendecke
- jwbrendecke&icanetix.com
-28989
- Sociedad Mutual "Seguro de Vida"
- Natalio Cabizón
- ncabizon&smsv.com.ar
-28990
- PrivateMonitoring
- Rene Janitschke
- rene.janitschke&arcor.de
-28991
- Ghz Soluções em Informatica Dracena LTDA ME
- Matheus Fontes
- matheus&ghz.com.br
-28992
- American Century Proprietary Holdings, Inc.
- Bryon McKee
- Bryon_McKee&AmericanCentury.com
-28993
- PCM LLC I
- Brett L. Scott
- bscott&phxcapital.com
-28994
- LiveSquare
- Brett L. Scott
- blscott&livesquare.com
-28995
- Dresser Wayne, Dresser Inc.
- Tim Weston
- tim.weston&wayne.com
-28996
- JAE Enterprises
- Jorge Guerra
- jguerrag&unmsm.edu.pe
-28997
- south china university of technology
- wang xuepeng
- cswangxp&sohu.com
-28998
- Pine Tree Systems
- Bill McMahon
- mcmahon2&comcast.net
-28999
- Voible Communications Ltd
- Jay Fenton
- jay.fenton&voible.com
-29000
- Markus-Alexander Matthé
- Markus-Alexander Matthé
- mmatthe&gmx.net
-29001
- TRISKEL TELECOM SL
- JOSEP BAUCELLS BOIX
- baucells&triskel-telecom.com
-29002
- PGGM
- Immanuel Noorman
- immanuel.noorman&pggm.nl
-29003
- Fibernet International
- JOSE M. MARIN
- fibernet&fibernet.es
-29004
- La Voz de Galicia
- Antonio Garcia González
- antonio.garcia&lavoz.es
-29005
- Joint Stock Company "Scientific & Production Enterprise "ORBITA"
- Sergey P. Korobkov
- sergey&orbita.dp.ua
-29006
- VocaLink Limited
- Darren Wilson
- darren.wilson&vocalink.com
-29007
- R&D ScanEx
- Michael Rusakov
- mik&scanex.com
-29008
- Kaya Software, LLC
- Michael Pellegrini
- mpellegrini&kayasoftware.com
-29009
- Mirth Corporation (formerly 'WebReach, Inc.')
- Jeff Peters
- jeffp&mirthcorp.com
-29010
- National Bank Of Kuwait
- Mr. Mustafa Gangardiwala
- mustafag&nbk.com
-29011
- HeBIS
- Uwe Reh
- reh&rz.uni-frankfurt.de
-29012
- Quality Technology Services
- Jerry Applebaum
- gapplebaum&qualitytech.com
-29013
- Teldat Sp.J. H. Kruszyński, M. Cichocki
- Wojciech Znaniecki
- wznaniecki&teldat.com.pl
-29014
- Intellengine
- Adam Murphy
- amurphy0921&mac.com
-29015
- Keitai Gaming (formerly 'TallTele')
- Anthony Johnson
- aj&keitaigaming.com
-29016
- Professional Partnership Ltd
- Artem Melchuk
- melchuka&gmail.com
-29017
- Buda
- Deepak Siddananja
- deepak.siddananja&gmail.com
-29018
- Network Security Solutions d.o.o.
- Dejan Levaja
- dejan.levaja&netsec.co.yu
-29019
- ACK Networks, Inc.
- Hui Ning
- hui.ning&acknetworks.com
-29020
- Marco Aspromonti
- Marco Aspromonti
- marco.aspromonti&gmail.com
-29021
- MUGLER AG
- Michael Mueller
- michael.mueller&mugler.de
-29022
- Dorstewitz
- Thomas Dorstewitz
- thomas&dorstewitz.eu
-29023
- FaMAF - Facultad de Matematica, Astronomia y Física - Universidad Nacional de Cordoba - Argentina
- Yanina Iberra
- iberra&hal.famaf.unc.edu.ar
-29024
- OSERYS Systèmes
- BEUSCART Dominique
- dominique.beuscart&oserys.com
-29025
- RECRO-net d.o.o.
- Nevenko Bartolincic
- Nevenko.Bartolincic&recro-net.hr
-29026
- GUZMAN
- Hannes Gruber
- hg&guzman.at
-29027
- Netfinity Ltd.
- Kliment Toshkov
- kt&netfinity.bg
-29028
- Jerry Chapman
- Jerry Chapman
- Jerry_W_Chapman&yahoo.com
-29029
- Altierre Corporation
- Michael Laws
- OIDAdministrator&altierre.com
-29030
- Ringier Slovakia, a.s.
- Viliam Spetko
- spetko&ringier.sk
-29031
- ILSC
- Christoph Thron
- christoph.thron&ilmenauer-studentenclub.de
-29032
- Creative Industries
- Damien Overeem
- d.overeem&creativeindustries.nl
-29033
- 4DK Technologies, Inc.
- Ilya Ziskind
- tech&4dk.com
-29034
- Common Sense IT-Consulting GmbH.
- Kurt Pikl
- kurt.pikl&commonsense.at
-29035
- kymz online page
- Kym Hames
- catziyes&yahoo.com
-29036
- CACI International Inc
- Jim Morris
- jmorris&caci.com
-29037
- MooL Invest Kft.
- Mihály Orosz
- orosz.mihaly&mool.hu
-29038
- ICEGEL Kft.
- Mihály Orosz
- orosz.mihaly&icegel.hu
-29039
- Otis College of Art and Design
- Robert S. Walters
- rwalters&otis.edu
-29040
- CX computers & consulting, s.r.o.
- Matej Ondrusek
- ondrusek&cxcom.sk
-29041
- SmartOfficeBuilding
- Mathias Döhle
- matt&tzi.de
-29042
- Toppan
- Paolo Toppan
- paolo&toppan.it
-29043
- Peek&Cloppenburg KG
- Jan Strohbehn
- sphenic&nurfuerspam.de
-29044
- Digital Alert Systems
- Thomas Wood
- wood&digitalalertsystems.com
-29045
- Camp Dresser and McKee, Inc.
- Jerrold Weiner
- weinerjm&cdm.com
-29046
- The Boston Consulting Group, Inc.
- Clay Romeiser
- ianaoid&bcg.com
-29047
- GigaFin Networks
- Vatsal Mehta
- support&gigafin.com
-29048
- Vianet International Ltd
- Greg Johnstone
- Greg.Johnstone&vianet.travel
-29049
- Sichuan Xinhua Winshare Chainstore Co.,Ltd.
- benrong tang
- tbr&wenxuan.com.cn
-29050
- Korcett Holdings, Inc.
- Frank Sheiness
- frank&korcett.com
-29051
- DAIKON Integracion y Desarrollo S.L.
- Jorge Gonzalez Villalonga
- snmp&daikon.es
-29052
- Defzone B.V.
- C. Lemaire
- info&defzone.com
-29053
- Intellio Ltd.
- Adorjan Princz
- adorjan.princz&intellio.eu
-29054
- Bluebell Opticom Limited
- Paul Felix McCann
- paul&bluebell.tv
-29055
- American International Distribution Corporation, Inc.
- Blain Sadler
- bsadler&aidcvt.com
-29056
- logicfish.org
- Mark Fisher
- logicfish&gmail.com
-29057
- Universitaet fuer Bodenkultur, Wien (BOKU)
- System Adminstrators
- hotline&boku.ac.at
-29058
- Neology Corporation
- Ron Burdette
- ronb&neology-rfid.com
-29059
- FAL Solutions
- David Gentry
- dgentry&falsolutions.com
-29060
- Schnapper Vision Studios
- John Reynolds
- schnapper&free.net.nz
-29061
- AFORE Solutions, Inc.
- Samuel Effah
- seffah&aforesolutions.com
-29062
- HEAnet Limited
- HEAnet Network Operations Centre
- noc&heanet.ie
-29063
- Patrick McDonnell
- Patrick McDonnell
- kc9ddi&arrl.net
-29064
- ODDO & CIE
- CAMINO Marc Olivier
- mocamino&oddo.fr
-29065
- 31337 Hackers
- Dennis van Zuijlekom
- iana-assigned-numbers&31337-hackers.net
-29066
- enovatia
- Jens Bliemeister
- jens.bliemeister&enovatia.de
-29067
- The Loop Communications
- Richard Watson
- richard&the-loop.co.za
-29068
- OpenSource Training Ralf Spenneberg
- Ralf Spenneberg
- iana&spenneberg.net
-29069
- HartmannSoft
- Lars Hartmann
- lars.hartmann&hartmannsoft.de
-29070
- Conversion Co., Ltd.
- Naohito Toike
- support&conversion.co.jp
-29071
- ON DEMAND Microelectronics AG
- Robert Schoen
- it&odmsemi.com
-29072
- Neopost
- Sébastien CANTOS
- s.cantos&neopost.com
-29073
- Western Avionics
- Garry Thuna
- gthuna&westernAvionics.com
-29074
- Epic Aviation, LLC
- Carl Lovejoy
- clovejoy&airbpaviation.com
-29075
- Oncology & Hematology Associates of Southwest Indiana, P.C.
- Phil Bolenbaugh
- pbolenbaugh&ohaev.com
-29076
- CP Sharing
- Henk Dick
- hdick&pridis.com
-29077
- Gentgeens Lodge
- Kevin Squire
- gentgeen&linuxmail.org
-29078
- SynapSense Corporation
- Kurt Sowa
- ksowa&synapsense.com
-29079
- Cryptologic Inc.
- Lori Welland
- pem.administrator&cryptologic.com
-29080
- Kiong Software
- Wai Kiong Choy
- waikiong.choy&kiongsoftware.com
-29081
- ISI.NC
- Matthias Bourillon
- mb.isi.nc&gmail.com
-29082
- L2C2 Technologies
- Indranil Das Gupta
- indradg&l2c2.co.in
-29083
- PKO BP SA
- Krzysztof Szczepański
- krzysztof.szczepanski&pkobp.pl
-29084
- OVH
- Octave KLABA
- iana-pen&ovh.net
-29085
- Conergy AG
- Jens Haustedt
- j.haustedt&conergy.de
-29086
- Bethlehem Lutheran School
- Bryan Hoover
- InformationTechnology&blcbls.org
-29087
- roullier
- Christophe Ramon
- cramon&roullier.net
-29088
- SpinVox Ltd.
- Jeremy Spykerman
- oid.admin&nuance.com
-29089
- Intec Software Solutions
- Michael Gargan
- michael&intec.ie
-29090
- Sendza, Inc.
- Ken Adey
- kadey&sendza.com
-29091
- FriendlySNMP
- Friendly SNMP
- iana&friendlysnmp.org
-29092
- Wirama
- Rob Barton
- rob.barton&wirama.com
-29093
- Stekfon
- Alexander Lunyov
- sol289&gmail.com
-29094
- Aquarius Telecom Technologies
- Kan Wang
- kwangok&gmail.com
-29095
- AeroSat Avionics LLC
- Jon Watson
- jwatson&aerosat.com
-29096
- NewACT Ltd.
- Tal Barenboimm, Director of IT
- tal.barenboim&newact.com
-29097
- TRIGLAV, Zdravstvena zavarovalnica, d.d.
- Simon Vidmar
- simon.vidmar&zdravstvena.net
-29098
- DRM Digital Radio Mondiale
- Anne Fechner
- projectoffice&drm.org
-29099
- Larimart S.p.A.
- Marco Stella
- marco.stella&larimart.it
-29100
- Lithustech Sistemas Eletrônicos LTDA.
- Amauri Luis Mocki Junior
- amauri&lithus.com.br
-29101
- Interstate Gas Supply
- Geoff Huffman
- ghuffman&igsenergy.com
-29102
- Cargill Inc.
- Federico Guerrini
- federico_guerrini&cargill.com
-29103
- Naropa University
- Barry Townsend
- barry&naropa.edu
-29104
- Felix Tiede
- Felix Tiede
- iana&pc-tiede.de
-29105
- Intelleflex Corp.
- Heena Nandu
- hnandu&intelleflex.com
-29106
- Xangati
- Xiaohong Pan
- xiaohong&xangati.com
-29107
- Key Solutions
- Pim van Stam
- pim&keysolutions.nl
-29108
- Enleiten Inc.
- Eric Hedberg
- ehedberg&enleiten.com
-29109
- Hoover Treated Wood Products, Inc.
- Randall S. Kelley
- rkelley&frtw.com
-29110
- Woodside Fabrics Limited
- Chris March
- chris.march&woodsidefabrics.com
-29111
- Beijing Poweron Technologies Co., Ltd.
- Alvin Jiang
- jiffy&tom.com
-29112
- Biblioteca de Catalunya
- Ramon Novoa
- rnovoa&bnc.cat
-29113
- Bank Pekao S.A.
- Jan Andrzej Malinowski
- wbb&pekao.com.pl
-29114
- SecureW2
- Tom Rixom
- info&securew2.com
-29115
- ECCO Sko A/S
- Alex Mærsk
- alm&ecco.com
-29116
- Instituto Politecnico de Setubal
- Renato Delgado
- renato_delgado&hotmail.com
-29117
- Xembedded, Inc.
- John H. Sayer
- jsayer&xembedded.com
-29118
- BOSSIO SOLUTIONS & SERVICES SL
- Juan Domingo Bossio
- bossio&hotmail.com
-29119
- Joint Stock Company All-Russian Scientific Research Institute of Television and Radio Broadcasting
- Andrew Otvetchikov
- it&vniitr.ru
-29120
- SYSOON SARL
- Martin Dano
- dano&sysoon.com
-29121
- NZN
- Emanuelis Norbutas
- em&nuel.is
-29122
- TCX Computer Technology
- Hal Finney
- hal.finney&gmail.com
-29123
- Jalasutram, Inc.
- Murali Jalasutram
- mjalasutram&gmail.com
-29124
- IMAGENICS Co,Ltd.
- Takayuki Kono
- kouno&imagenics.co.jp
-29125
- Advance Interactive Technologies Pte. Ltd
- Ching Kwee Chung
- chingkc&ait.sg
-29126
- Osterholm & Associates
- Eric Osterholm
- eric&osterholm.org
-29127
- SV Corporation
- Vinh NGUYEN
- vinh&spatialvoice.com
-29128
- Mindwell Technologies
- Jason Kohles
- admin&mindwell.com
-29129
- dg-solutions
- Daniel Gschliesser
- dg&dg-solutions.at
-29130
- Lithuanian Academy of Physical Education
- System Administrator
- admin&lkka.lt
-29131
- PERSONAL_JG
- Joyabrata Ghosh
- joy.career&gmail.com
-29132
- CalNet
- M. de Ridder
- marnix.de.ridder&rivm.nl
-29133
- ATIS UHER S.A.
- Patrick Roth
- Patrick.Roth&voicecollect.net
-29134
- SpeedXS
- Attilla de Groot
- attilla&speedxs.nl
-29135
- Salvadè S.r.l.
- Marzio Muscionico
- marzio&salvade.com
-29136
- Toys R Us Corporation
- Jeff LoSpinoso
- jeff.lospinoso&toysrus.com
-29137
- michaelgerzabek.com(R)
- Michael Gerzabek
- me&michaelgerzabek.com
-29138
- TWIC Root
- Rex Lovelady
- rex.lovelady&dhs.gov
-29139
- UNICOM DATA GROUP TECNOLOGIA LTDA
- RENATO FERREIRA
- josield&flexvision.com.br
-29140
- ONEDOC AB
- Olle Mårtensson
- olle.martensson&gmail.com
-29141
- LiveOps
- Pete Fritchman
- petef&liveops.com
-29142
- ViewPlus Technologies, Inc.
- Network Administrator
- netadmin&viewplus.com
-29143
- CableWorld Ltd.
- Gabor Kiss
- cableworld&cableworld.hu
-29144
- Unassigned
- Removed 2011-08-16
- ---none---
-29145
- K&P Computer GmbH
- Roland Weckwerth
- weckwerth&kpc.de
-29146
- SwapsWire Ltd
- Brian Power
- brian.power&swapswire.com
-29147
- Proficient Technology
- Wes Shaddix
- wshaddix&gmail.com
-29148
- Axolotl Corp.
- Nick Radov
- nradov&axolotl.com
-29149
- data inform srl
- Marco Marocco
- marco.marocco&datainform.it
-29150
- COMLAB AG
- Urs Roesti
- urs.roesti&comlab.ch
-29151
- Live Data Group, inc.
- Szu-Ching Peckner
- itstaff&livedatagroup.com
-29152
- Palo Alto Unified School District
- Isidro Pimentel
- ipimentel&pausd.org
-29153
- Ridgecrest Financial, Inc.
- Reilly Hayes
- admin&ridgecrestfinancial.com
-29154
- Electromagnetic Technologies Industries Inc.
- Peter Cappiello
- pete&etiworld.com
-29155
- Tews Technologies GmbH
- Uwe Tews
- utews&tews.com
-29156
- Byte Dynamics, SRL
- Adrian Ilarion Ciobanu
- cia&fatbit.pipe2.net
-29157
- Bytemark Hosting
- Patrick Cherry
- iana&bytemark.co.uk
-29158
- Alinea Software Solutions SL
- J.C. Ramos
- jcramos&alineasol.com
-29159
- Nodak Flying Club, Inc.
- Thomas Vacek
- twvacek&hotmail.com
-29160
- L2 Enterprises
- Chris Linstruth
- cjl&qnet.com
-29161
- Hidden-City.NET
- Dragan Stanojevic - Nevidljivi
- invisible&hidden-city.net
-29162
- china lottery online co. ltd.
- wang senlin
- wangsl&clo.com.cn
-29163
- darrow.com
- Darrow Cole
- iana_01&darrow.com
-29164
- EnabledPeople LLC
- Sergey Pecherkin
- highlander&linux-online.ru
-29165
- Antech
- Vincenzo Allia
- v.allia&antech.it
-29166
- NetQoSt
- Martin florent
- florent&netqost.net
-29167
- ISTEC GmbH
- Stefan Zobel
- stefan.zobel&lycos.de
-29168
- T-Mobile International
- Stefan Ponge
- stefan.ponge&t-mobile.de
-29169
- LLC "Astelit"
- Valentyn Shapoval
- valsh&microsoft.com
-29170
- Interactive Quality Services Inc.
- Shan Brickey
- sbrickey&iq-services.com
-29171
- ESET, spol. s r.o.
- Palo Luka
- luka&eset.sk
-29172
- Bresnan Communications, LLC.
- Advanced Services - Systems Engineering
- se&bresnan.com
-29173
- InSpatial LLC
- George Nill
- george.nill&inspatial.com
-29174
- rPath, Inc.
- Brett Adam
- sysadmin&rpath.com
-29175
- phasma.nl
- Remko Christ
- trisooma&xs4all.nl
-29176
- FIRST RABBIT GmbH
- Nils Doormann
- nils&first-rabbit.de
-29177
- Umlautus
- Jakob Saternus
- jakob&uuc.se
-29178
- California State University, Bakersfield
- Russell Jackson
- noc&csub.edu
-29179
- Aginova Sàrl
- Reshad Moussa
- info-ch&aginova.com
-29180
- Ponsse Oyj
- Reijo Hynynen
- reijo.hynynen&ponsse.com
-29181
- Ecole de techologie superieure
- Patrice Dion
- Patrice.dion&etsmtl.ca
-29182
- AMI dept, Sensus Metering Systems, Inc.
- Eric Kidder
- eric.kidder&sensus.com
-29183
- 6PIXIES International
- Philippe Gagnon
- heelios&6pixies.com
-29184
- Humor Rainbow, Inc
- David Cross
- dcross&okcupid.com
-29185
- Digital Fountain Inc.
- Mark Carey
- mcarey&digitalfountain.com
-29186
- Innovative IT Architects. LLC
- Clint Crigger
- ccrigger&iitaconsulting.com
-29187
- Revelation TV
- Dan Donoghue
- dan&revelationtv.com
-29188
- Wavex Technologies Pte Ltd
- Wu Zheng
- zheng.wu&wavex-tech.com
-29189
- Roadside
- Johan Kok
- jkok&roadside.nl
-29190
- Valyd Technologies Pvt Ltd
- Sandeep Nekkanty
- sandeepn&valytech.com
-29191
- Dynatech s.r.o.
- Miroslav Bartánus
- bartanus&dynatech.sk
-29192
- OpusVL
- Stuart Mackintosh
- sm&opusvl.com
-29193
- Fabrix TV LTD.
- Ram Ben-Yakir
- ram&fabrix.tv
-29194
- Shelby County Board of Education
- J.D. Chaves
- jdchaves&shelbyed.k12.al.us
-29195
- ZeelandNet b.v.
- Serge Maandag
- serge&maandag.com
-29196
- Lattice, L.L.C.
- Majdi S. Abbas
- msa&latt.net
-29197
- Kaazing Corp.
- Brian Albers
- brian.albers&kaazing.com
-29198
- PhR
- Philippe Rochat
- fake236&hispeed.ch
-29199
- TERADA ELECTRIC WORKS CO.,LTD
- KUNIYOSHI YOSHINO
- kuniyoshi.yoshino&terada-ele.co.jp
-29200
- UNETsystem Co., Ltd.
- kenneth choi
- kenneth&unetsystem.co.kr
-29201
- Rawenstvo OJSC
- Alexander A. Vasilyev
- vaa&rawenstvo.ru
-29202
- Hari Sekhon
- Hari Sekhon
- hpsekhon&googlemail.com
-29203
- Grupo Santander
- Mariano de la Cruz
- seguridad_corporativa&gruposantander.com
-29204
- Senex Technologies Inc.
- Phil Ciraolo
- pciraolo&senex.ca
-29205
- NewMedia-NET GmbH - Division dd-wrt
- Christian Scheele
- chris&dd-wrt.com
-29206
- vargo.us
- Kevin Vargo
- kevin&Vargo.us
-29207
- Rescentris, Inc.
- Joseph Spitzner
- joe.spitzner&rescentris.com
-29208
- Zandanel Informationstechnologie
- Johann Zandanel
- johann&zandanel.net
-29209
- Hermann Ehlers Haus
- Torsten Irländer
- torsten&heh.uni-osnabrueck.de
-29210
- KARCHER & LADWEIN Ingenieurpartnerschaft fuer Bautechnik
- Thomas Maria Ladwein
- ladwein&klib.de
-29211
- DiOmega GmbH
- Daniel Pfirrmann
- info&diomega.de
-29212
- HOV Services, LLC
- Murat Arslan
- murat.arslan&hovservices.com
-29213
- ARBU
- Armin Burchardt
- armin&arbu.eu
-29214
- Dairiki Solutions
- Geoffrey T. Dairiki
- dairiki&dairiki.org
-29215
- Eyeball Networks Inc.
- Feng Wang
- feng&eyeball.com
-29216
- Onode Server Project
- Olaf Tiemann
- olaf.tiemann&onode.de
-29217
- Grant Street Group, Inc.
- Web Master
- webmaster&grantstreet.com
-29218
- The ALPHAVICTOR® Companies
- Bruce Micek
- ceo&alphavictor.com
-29219
- Wuille bvba
- Pieter Wuille
- pieter&wuille.biz
-29220
- Ciputra Group
- Bayu Krisnawan
- krisna&ciputra.ac.id
-29221
- Enforta
- Denis Kochmashev
- d.kochmashev&enforta.com
-29222
- Weisser
- Christian Weisser
- ch.weisser&gmx.at
-29223
- Stadtverwaltung Bornheim
- Thomas Seck
- iana-contact&stadt-bornheim.de
-29224
- CoreTrek AS
- Aslak Evang
- drift&coretrek.no
-29225
- Marko Karg
- Marko Karg
- marko&gutski.de
-29226
- BERGERAT MONNOYEUR LOCATION
- NGO Su Hong
- s.ngo&bm-loc.fr
-29227
- Criticall Limited
- Stuart Mackintosh
- stuartm&criticall.co.uk
-29228
- Distributed Medical Sverige AB
- Björn Lundmark
- bjorn.lundmark&distributedmedical.se
-29229
- OutServ, Inc.
- Anthony Quinn
- aquinn&outservinc.com
-29230
- Direction Générale de l'Aviation Civile
- Dominique Ruiz
- dominique.ruiz&aviation-civile.gouv.fr
-29231
- Confédération Française Microtel Multimédia
- François Lecluse
- zaurusfr&2m01.net
-29232
- coreIPM
- Gokhan Sozmen
- iana-pen&coreipm.com
-29233
- MCL, Inc.
- Richard P. Earl
- rearl&mcl.com
-29234
- Titan Publishing Group Limited
- Kevin Wooff
- john&paperman.net
-29235
- Protey
- Sergey Skvortsov
- skv&protey.ru
-29236
- APHP Beclere
- Laurent LEPRETRE
- laurent.lepretre&abc.aphp.fr
-29237
- New Hampshire Employment Security
- Bangaru Adabala
- bangaru.adabala&nhes.nh.gov
-29238
- AdBrite, Inc.
- Frank Stutz
- frank&adbrite.com
-29239
- SYSTEMSKILLS COMPUTER TECHNICAL SERVICES LTD.
- Bill Dagg
- sysadmin&consealmail.com
-29240
- HID Global
- Scott Guthery
- sguthery&hidcorp.com
-29241
- Spry Hosting
- Tres Wong-Godfrey
- treswg&spry.com
-29242
- Peabody Energy
- Gregory J. Weatherford
- gweatherford&peabodyenergy.com
-29243
- Resolve Systems
- Thanes Tantiprasut
- duke&resolve-systems.com
-29244
- Lime Wire LLC
- Akshay Kumar
- akshay&limewire.com
-29245
- Commonwealth of Pennsylvania, Governor's Office of Administration
- Frank Morrow
- fmorrow&state.pa.us
-29246
- KnowledgeTrax, LLC
- L van der Feltz
- lvanderfeltz&knowledgetrax.com
-29247
- Secioss Corporation
- Kaoru Sekiguchi
- sekiguchi.kaoru&secioss.co.jp
-29248
- Wanmi Telecom Technologies Co.,Ltd
- danghui he
- hedh0089&sina.com
-29249
- Revue VTK vzw
- Ruben Faelens
- revue&vtk.be
-29250
- EPM expert
- Erdősi, Péter Máté
- perdosi&chello.hu
-29251
- LNM IIT
- parth sarthi
- parth2005&gmail.com
-29252
- Server System Infrastructure (SSI)
- Jim Ryan
- JIM.RYAN&INTEL.COM
-29253
- KBK Consultant
- Kovács, Béla Károly
- kovacsbk&t-email.hu
-29254
- Pulsar Mobile Sp. z o. o.
- Łukasz Pasek
- lukasz.pasek&pulsar.com.pl
-29255
- HRZ Zittau/Görlitz
- Andy Erd
- erd02&stud.hs-zigr.de
-29256
- HALLESCHE Krankenversicherung auf Gegenseitigkeit
- Gert Hinz
- gert.hinz&hallesche.de
-29257
- Fedasil
- Cyrille Bollu
- cyrille.bollu&fedasil.be
-29258
- Mittelrhein-Verlag GmbH
- Thorsten Jungblut
- tj&rhein-zeitung.net
-29259
- California State University, Chico
- David Fuhs
- oidowner&mail.csuchico.edu
-29260
- Tempest Security Intelligence
- Fabio Jun Takada Chino
- fabio.jun&tempest.com.br
-29261
- emQbit
- Nelson Castillo
- nelson&emqbit.com
-29262
- cybermah.com
- Dana Mah
- cybermah&hotmail.com
-29263
- Max Planck Institute of Biochemistry
- H. Lehnert
- hlehnert&biochem.mpg.de
-29264
- apc interactive solutions ag
- Gerald Wallner
- gerald.wallner&apcinteractive.net
-29265
- KIRP GmbH
- Siegfried Viehmann
- Siegfried.Viehmann&kirp.de
-29266
- xvpn
- I. Garbe
- iana&xvpn.de
-29267
- Teleologic Learning Company
- Joseph Lamoree
- jlamoree&teleologic.net
-29268
- Unitarian Universalist Association
- Sean Hogan
- shogan&uua.org
-29269
- SiteXs Netzwerkloesungen & IT-Consulting GmbH
- Hannes Jahn
- snmp&sitexs.at
-29270
- Rogers West
- Jason Rogers
- Rogers.JA&rogerswest.com
-29271
- OBS Technology
- Dave Cole
- dcole&obsmail.com
-29272
- Biological and Popular Culture, LLC
- Allan G. Schrum
- aschrum&biopop.com
-29273
- GCS Software & Consulting KEG
- gerhard castellitz
- gerhard.castellitz&utanet.at
-29274
- BusinessFabric Inc
- Srinivasa Kunamneni
- srini&businessfabric.com
-29275
- Autometrix Precision Cutting Systems
- Caleb Callaway
- caleb&autometrix.com
-29276
- Wizards Internet Limited
- Martin Poole
- mpoole&wizards-internet.co.uk
-29277
- BookieStreet, Ltd.
- Andy Chantrill
- andy&bookiestreet.com
-29278
- Dima Technologies Co.,Ltd
- Sun Le
- sunle&sunlecn.net
-29279
- WuXi ZhongXing Optoelectronics Technology Co., Ltd.
- Xianqin Li
- lixianqin&wxzte.com
-29280
- Widgets
- Paiboon Sriwilaijaroen
- sripaiboon&hotmail.com
-29281
- Trelleborgs Hamn AB
- Tomas Borowiec
- tomas.borowiec&port.trelleborg.se
-29282
- Azuki Software
- Robert Bakic
- robert.bakic&gmail.com
-29283
- dscnet.org
- Stefano Sasso
- stone&dscnet.org
-29284
- Axxana
- Nezer J. Zaidenberg
- scipio&axxana.com
-29285
- Aquanasoft
- Julius Schmidt
- aiju&aquanasoft.de
-29286
- Imagine Communications
- Lior Morad
- lior&imagine-com.com
-29287
- Finite Communication Inc.
- Val Dodge
- iana&finite.com
-29288
- Altus Networks Inc
- Todd Hooper
- todd&altusnetworks.com
-29289
- Advertising.com
- Kevin Stone
- kstone&advertising.com
-29290
- WeGo Health, Inc
- Monte Brown
- monte&wegohealth.com
-29291
- SECRETARIA DE LA FUNCION PUBLICA
- EDDER ESPINOSA ARELLANO
- EDDER&FUNCIONPUBLICA.GOB.MX
-29292
- Ubiquitous Systems Ltd
- Harsh Patel
- harsh.patel&ubisys.co.uk
-29293
- Royal Roads University
- Stephen Beaudry
- steve.beaudry&royalroads.ca
-29294
- Meshweave
- Maxime Curioni
- maxime&meshweave.com
-29295
- IMESC
- Francisco Garcia Gonzalez
- francisco.garcia&imesc.eu
-29296
- IDX Company, Ltd.
- Yasushi Wada
- wada&idx.tv
-29297
- Shenzhen vStrong technology Co.,Ltd.
- Tang Cheng
- tangcheng&v-strong.com
-29298
- Ador Powertron Ltd.
- Kiran Koralkar
- khkoralkar&adorpower.com
-29299
- Zarovs Stelsels Bk
- Frederick Peter Eek
- eekf&ieee.org
-29300
- SSI Schaefer Peem GmbH
- Nikolett Csirmaz
- n.csirmaz&ssi-schaefer-peem.com
-29301
- Braxtel Communications Inc
- John Tarlton
- jtarlton&braxtel.com
-29302
- eSI Mobile Solutions. S.L.L (GENAKER)
- Abraham Iglesias
- abraham.iglesias&genaker.net
-29303
- Telappliant Ltd.
- Harry Roberts
- harry&telappliant.com
-29304
- Services for Business IT Ruhr GmbH
- Marcel Breuer
- marcel.breuer&sbi-ruhr.de
-29305
- IPFIX Reverse Information Element Private Enterprise
- RFC5103 Authors
- ipfix-biflow&cert.org
-29306
- Useful Networks
- Mike Key
- mike&useful-networks.com
-29307
- Loki Industries
- Brad Stockdale
- brad.stockdale&gmail.com
-29308
- RPGfiction
- Richard Homonnai
- richard.homonnai&rpgfiction.net
-29309
- IBM Mittelstand Systeme
- Ardeshir Arian
- arianard&de.ibm.com
-29310
- William Petersen Elektronik A/S
- William Petersen
- wp&wpeas.dk
-29311
- Itay Be'erli
- Itay Be'erli
- itay.beerli&gmail.com
-29312
- Bernecker+Rainer Industrie-Elektronik Ges.m.b.H.
- Stefan Stemp
- stefan.stemp&br-automation.com
-29313
- GloboTech GmbH
- Beat Bolzern
- info&globotech.ch
-29314
- WDV GmbH
- Martin Dümig
- m.duemig&wdv-gmbh.de
-29315
- VAUDE Sport GmbH & Co. KG
- Christian Harf
- christian.harf&vaude.com
-29316
- Astute Networks, Inc.
- James Mai
- jmai&astutenetworks.com
-29317
- Global Technology Inc.
- Eddy Kao
- ekao&primeworldtw.com
-29318
- Doquent Inc
- Pawan Kumar
- pk&doquent.com
-29319
- NTT Communications Corporation
- Makoto Harada
- makoto.harada&ntt.com
-29320
- regio iT aachen gmbh
- Dietmar Körfer
- dietmar.koerfer&regioit-aachen.de
-29321
- IBL Software Engineering, Ltd.
- Marian Andre
- andre&iblsoft.com
-29322
- Cabinplant A/S
- Steen Thyrri Sorensen
- sts&cabinplant.com
-29323
- Lesun Technologies Co.,Ltd
- Sun Le
- sunle&sunlecn.net
-29324
- Voxy Communications
- Yuri Arabadji
- yuri.arabadji&gmail.com
-29325
- Worshipworks Ministries International
- Jayson Crisman
- jcrisman&cityworship.net
-29326
- IBM Rational
- Andrew Himmer
- ahimmer&us.ibm.com
-29327
- barrang
- Michael Chesterton
- michael.chesterton&gmail.com
-29328
- The Stable Group
- Jef Brink
- jbrink&sigmaiq.com
-29329
- Trade Me Ltd
- Platform Team - Matt Duguid
- matt.duguid&trademe.co.nz
-29330
- Cryptic Studios
- Bruce Rogers
- brogers&crypticstudios.com
-29331
- Swan Island Networks, Inc.
- Adam Montville
- adam.montville&swanisland.net
-29332
- Frank Meisschaert
- Frank Meisschaert
- Frank.Meisschaert&telenet.be
-29333
- JBlade LLC
- Tom Larkens
- pd&jblade.com
-29334
- Provider.nl
- Jeroen Boonstra
- jeroen&provider.nl
-29335
- Zajil International Telecom K.C.S.C.
- Rami AlZaid
- ralzaid&zajil.com
-29336
- Bombardier Transportation (Signal) Germany GmbH
- Christoph Lüders
- christoph.lueders&de.transport.bombardier.com
-29337
- Bynari
- Trey Tabner
- trey&bynari.net
-29338
- Kestrel Wireless, Inc.
- Steve Davis
- steve.davis&kestrelwireless.com
-29339
- 3guppies.com
- Brian Finney
- domainadmin&fishtank.3guppies.com
-29340
- joncaves.com
- Jon Caves
- joncaves&btinternet.com
-29341
- Ingenieurbuero Schmid
- Ernst Schmid
- snmp&ejschmid.de
-29342
- Browave Inc.
- Herbert Chen
- herbert.chen&browave.com
-29343
- Grundig SAT-Systems GmbH
- Martin Mollek
- martin.mollek&gss.tv
-29344
- ShangHai HuaBo Taifu Internet Technology Co.,Ltd
- wu jian
- wuj&huabo.net
-29345
- Softing AG
- Dirk Palme
- support.automation&softing.com
-29346
- UKN Group Limited
- Tony Reynolds
- support&ukngroup.com
-29347
- Amadeus Global Travel Ltd.
- Ariel Shatil
- rel&amadeus.co.il
-29348
- RotaBanner Next
- Vadim Nesterov
- nucleusv&gmail.com
-29349
- mediagrids plc
- Chris Tingley
- ctingley&mediagrids.com
-29350
- Remuda Ranch Center for Anorexia & Bulimia Inc.
- Mitchell Fisher
- mitchell.fisher&remudaranch.com
-29351
- Fallibroome High School
- Ant Owen
- ict&fallibroome.cheshire.sch.uk
-29352
- IBEX Technology Co.,Ltd.
- Toshikazu Morita
- morita&ibextech.jp
-29353
- Brewer Science, Inc.
- Ron Chinn
- rchinn&brewerscience.com
-29354
- Health Dialog Services Corporation
- Jennifer Kendall
- jcrusade&healthdialog.com
-29355
- PING e.V.
- Daniel Hess
- dh&ping.de
-29356
- Montville Enterprises LLC
- Adam W. Montville
- adam&montville-enterprises.com
-29357
- Fenster Software
- Yaacov Fenster
- iana&fenster-software.com
-29358
- Zlango
- Yaacov Fenster
- fenster&zlango.com
-29359
- Industrie Dial Face S.p.A.
- Massimo Macrì
- massimo.macri&idf-hit.com
-29360
- AMS Media Sverige AB
- Stefan Halen
- it-avdelningen&aemedia.com
-29361
- Magma
- Brian Stark
- bstark&magma.com
-29362
- Tomizone Limited
- Paul Barnetta
- paul&tomizone.com
-29363
- CHCLab.net
- Choong Hong Cheng
- hongcheng.choong&gmail.com
-29364
- Applied Electro-Magnetics P. Ltd
- Ravindra D. Bankar
- bankar&aemindia.com
-29365
- Penta Investments, a.s.
- Robert Maly
- maly.robert&penta.sk
-29366
- BMI spa
- Umberto Buelli
- nostalgia&nostalgia.it
-29367
- Dreamlab Technologies AG
- André Roth
- ldap-master&dreamlab.net
-29368
- IASC
- Wanchin Lin
- sales&iasc.com.tw
-29369
- Tom Collins L.L.C.
- Tom Collins
- tc314&hotmail.com
-29370
- Daniel Mandler
- Daniel Mandler
- daniel.mandler&web.de
-29371
- CDC Arkhineo
- Bruno Dillet
- bruno.dillet&cdcarkhineo.fr
-29372
- BidiX
- BidiX
- bidix&bidix.info
-29373
- Dillet.net
- Bruno Dillet
- bruno&dillet.net
-29374
- elegiac
- Julien Allanos
- dju&elegiac.net
-29375
- Selekron Microcontrol s.l.
- Miguel Angel Gil
- mgil&selekron.com
-29376
- Trägerverein Bürgernetz Bamberg e.V.
- Thorsten Meinl
- Thorsten&meinl.bnv-bamberg.de
-29377
- Make-A-Byte, Inc.
- Jeremy Hahn
- jeremy.hahn&makeabyte.com
-29378
- CoCo Communications Corp.
- Dennis Edwards
- dennis&cococorp.com
-29379
- Lostar Bilgi Guvenligi A.S.
- Murat Lostar
- murat&lostar.com
-29380
- Beekhul Holdings Pty Ltd
- Mark van Kerkwyk
- iana-contact&vk.net
-29381
- McNeese State University
- Wendell Jones
- OID.PEN&mcneese.edu
-29382
- Dedalus S.p.a.
- Olianti Andrea
- andrea.olianti&deda.com
-29383
- sysview Inc
- Tsay Yaw Hann
- tyheric&gmail.com
-29384
- PD Consulting and Security
- David Rawling
- djr&pdconsec.net
-29385
- ANS
- Krzysztof Oledzki
- krzysztof.oledzki&ans.pl
-29386
- Zetes 3iV CC
- Timur Evdokimov
- timur.evdokimov&voice.zetes.com
-29387
- enovance
- Nicolas Marchal
- n.marchal&enovance.com
-29388
- Activant Solutions
- David Mellinger
- david.mellinger&activant.com
-29389
- LOGIKonline Inc.
- Dave Friedel
- dave&logikonline.com
-29390
- Digital IMS
- Jesse Angell
- info.tech&digitalims.com
-29391
- Strategic Data Pty Ltd
- Adam Clarke
- support&strategicdata.com.au
-29392
- a3 systems GmbH
- Gunter Bach
- gunter.bach&a3systems.com
-29393
- AETA AUDIO SYSTEMS
- Serge DE JAHAM
- sdejaham&aeta-audio.com
-29394
- Centre Hospitalier Régional Universitaire de Lille
- Guillaume DERAEDT
- g-deraedt&chru-lille.fr
-29395
- Pheedo, Inc.
- Jay Rossiter
- systems&pheedo.com
-29396
- VeriSat AS
- Petter Chr. Amundsen
- pca&verisat.no
-29397
- Engineering System Solutions
- IT Administrator
- admin&es2eng.com
-29398
- Workscape
- Christopher Apgar
- hostmaster&workscape.com
-29399
- SIDSA
- Carlos Santos
- carlos.santos&sidsa.es
-29400
- OKC AG
- Christoph Spindler
- webmaster&okc.ch
-29401
- Fullnet, Inc.
- John Fullington
- fje&fullnet.com
-29402
- HELEX
- Radis Vassilis
- v.radis&helex.gr
-29403
- COMWAX
- Clementine CREPIN
- ccrepin&comwax.com
-29404
- Intelligens Rendszerek Divizio Kft.
- Mathe Balazs
- mathe.balazs&ird.hu
-29405
- Unicel do Brasil Telecomunicações LTDA
- Farley A. Sousa
- snmp&unicelbrasil.net
-29406
- Connectbeam
- Shinji Yaguma
- syaguma&connectbeam.com
-29407
- Portal Andres Jadan
- Andres Jadan
- asjm123&gmail.com
-29408
- KEPCO
- Moon-suk, Choi
- cms96&kepri.re.kr
-29409
- Innovation Wireless Inc.
- Simon Hsieh
- simon.hsieh&iwi.net.tw
-29410
- Firesteel Technologies, Inc
- Don Schwemle
- donschwemle&firesteeltechnologies.com
-29411
- Instituto de Tecnologia da Informação e Comunicação do Estado do Espírito Santo - PRODEST
- Lívio Zanol Pereira de Souza Puppim
- livio.zanol&prodest.es.gov.br
-29412
- Prodea Systems
- Jason Cotton
- jason.cotton&prodeasystems.com
-29413
- Access Layers LTD
- MIB Admin
- cfo2008&accesslayers.com
-29414
- Opengate Data Systems
- Matthew Bush
- matthew.bush&opengatedata.com
-29415
- Autentia Real Business Solutions
- Alejandro Perez Garcia
- alejandropg&autentia.com
-29416
- ORBIT TECHNOLOGY GROUP
- Eli Menachem
- elim&orbit-ltd.co.il
-29417
- Felix Schwarz Software-Entwicklung
- Felix Schwarz
- felix.schwarz&schwarz.eu
-29418
- Tracenetwork Corporation Sdn. Bhd.
- Mohd Nawawi Mohamad Jamili
- nawawi&tracenetworkcorporation.com
-29419
- Kapital Insurance Group
- Eduard Shevtsov
- Eduard.Shevtsov&ifdk-insurance.ru
-29420
- West Bengal University of Technology
- Prof. Ashoke R. Thakur (Vice Chancellor)
- vc&wbut.ac.in
-29421
- Kargo Global Inc
- Florian Hoenig
- fhoenig&kargo.com
-29422
- Support Soluções em Informática LTDA
- Renan José Schiavo
- renan&support.inf.br
-29423
- 2V S.r.l.
- Damiano Venturin
- info&2vsrl.it
-29424
- Embryo Web Solutions Ltda
- Janser Priori
- janser.priori&embryo.com.br
-29425
- Materiales Electricos y Mecanicos - MEM Ltda
- Christian Pérez
- c.perez&digifix.com.co
-29426
- State of Mind
- Patrick Koetter
- patrick.koetter&state-of-mind.de
-29427
- EZSAFE
- liang ios
- gdezsafe&gmail.com
-29428
- IKOEmed
- Jacob Foshee
- jfoshee&ikoemed.com
-29429
- SynergyRT
- Hansen Chen
- hansenphysics&gmail.com
-29430
- HMS GmbH
- Martin Hecht
- mhecht&hms-dev.de
-29431
- FaithFamily Academy
- Chris Savage
- csavage&faithfamilyacademy.org
-29432
- Hurco Automation Ltd.
- Bentham Yang
- bentham&hacontrols.com.tw
-29433
- Digma Inc.
- Sergey Listopad
- psychosensor&gmail.com
-29434
- MRK - Media AG
- Ulrich Kamke
- ulrich.kamke&mrk-media.de
-29435
- Wisekey ELA
- Wences Basterra
- wbasterr&es.wisekey.com
-29436
- Central Technology Services
- Sam Richards
- Sam_Richards&ctsinc.biz
-29437
- HNP
- Enrique Diaz de la Puente
- ediazpuente&telefonica.net
-29438
- ARAMEX International Ltd.
- Hani Barghout
- hani&aramex.com
-29439
- Untold Structures P/L
- Pronob Pal
- pronob&visualanalytics.com.au
-29440
- Université Louis Pasteur - UFR de Mathématique et d'Informatique
- Christophe BOCCHECIAMPE
- cb&dpt-info.u-strasbg.fr
-29441
- Quanzhou Normal University
- Wu Weibin
- abangercn&gmail.com
-29442
- ARISE
- Marcin Giedz
- giedz&arise.pl
-29443
- ShangHai RuiGao InformationTechnologies Co.,Ltd
- Li Yang
- yl.666666&yahoo.com.cn
-29444
- Sondara Solucions
- Anton Velo
- techdept&sondara.com
-29445
- Integra S.r.l.
- Gabriele Ceranto
- gabriele.ceranto&integra-web.it
-29446
- Telematik Design
- Dipl.-Ing. Klaus Zachmann
- klaus.zachmann&telematik-design.at
-29447
- Nordic Growth Market NGM AB
- Assar Svensson
- support&ngm.se
-29448
- Gloucester Research Ltd
- Imran Chaudhry
- imranc&gresearch.co.uk
-29449
- Resolvity, Inc
- Hao Wu
- hao.wu&resolvity.com
-29450
- Digistar Telecomunicações S.A.
- Odone Afonso Silva de Moraes Junior
- engenharia&digistar.com.br
-29451
- Interop Technologies
- Interop Tech
- tech&interoptechnologies.com
-29452
- DigitalPersona, Inc.
- Oxana Ivanisov
- Oxanai&digitalpersona.com
-29453
- Brendt Peter
- Peter Brendt
- pbrendt&aon.at
-29454
- O.D.S., Inc.
- Allen Brewer, Ph.D.
- abrewer&odsinc.us
-29455
- CRAHAY.EU
- Gaetan Crahay
- oidmaster&crahay.eu
-29456
- modas mobile Datensysteme GmbH
- Thomas Graf
- tg&modas.de
-29457
- Peer Fusion, Inc.
- Richard Levy
- richard&peerfusion.com
-29458
- ACETEL
- Jangmin Jin
- jangmin.jin&acetel.co.kr
-29459
- Gobierno de Aragón
- Sergio Loras
- sloras&aragon.es
-29460
- Red Bee Media
- Terry Downing or Simon Brand
- terry.downing&redbeemedia.com
-29461
- Authentity - Certificaton Entity
- Eng. João Vaz Martins
- jmartins&prologica.pt
-29462
- Stulz GmbH Klimatechnik
- Michael Knecht
- knecht&stulz.de
-29463
- Axigen Messaging (formerly 'GECAD Technologies')
- Ioan Indreias
- ioan.indreias&axigen.com
-29464
- Inverse groupe conseil
- Dominik Gehl
- dgehl&inverse.ca
-29465
- Aaron Von Gauss
- Aaron Von Gauss
- iana&avongauss.info
-29466
- The Nation Traffic
- Martha Greenberg
- system&thenationtraffic.com
-29467
- Fire Breathing Robot Systems
- Steve Neuharth
- steve.neuharth&gmail.com
-29468
- Fruhen Infotec
- Andreas Tietz
- oid.iana&fruhen-infotec.de
-29469
- Freber Enterprises
- Wilfredo D. Aldana
- kamandi01&comcast.net
-29470
- DAX Technologies Corp
- Brion Feinberg
- brion&daxtechnologies.com
-29471
- VibiT BVBA
- Ward Viaene
- info&vibit.eu
-29472
- Grinning Fool Productions
- Marc A. Paradise
- gf&khalidine.com
-29473
- Humanity Forward
- Theodore Kisner
- tsk&humanityforward.org
-29474
- CHINA NETCOM GROUP BROADBAND SERVICE APPLICATIONS LIMITED CORPORATION FOR NATIONAL ENGINEERING LABORATORY
- zhanglunyong
- zhanglunyong&cnc-labs.com
-29475
- ADILEC S.L.
- Joan Pons
- jpons&adilec.com
-29476
- Viliam Trepák - NETCOM
- Viliam Trepák
- trepo&azet.sk
-29477
- Markas-Al-Nour
- Linus Gasser
- ineiti&markas-al-nour.org
-29478
- University of Chicago, Graduate School of Business
- Darren Young
- darren.young&chicagogsb.edu
-29479
- hc Consulting
- Frank Harenberg
- frank&harenberg.ch
-29480
- Barash Communication Technologies Inc. (BCTI)
- Oleg Barzasekov
- oleg.barzasekov&mts.tm
-29481
- Cambridge Semantics Inc
- Simon Martin
- simon&cambridgesemantics.com
-29482
- Excell Battery Company
- Farrah L. Lelond
- flelond&excellbattery.com
-29483
- Proformatique
- Marc Dequenes
- mdequenes&proformatique.com
-29484
- DevGuy
- Terris Linenbach
- terris&terris.com
-29485
- SMART Technologies ULC
- Linda Waldern
- lwaldern&smarttech.com
-29486
- Roundysoft
- Virgil Dimaguila
- virgil&roundysoft.com
-29487
- Beijing LHWT Microelectronics Inc
- ZhiZhou
- zhouzhi&lhwt.com
-29488
- Jeremy Jones
- Jeremy Jones
- jjones192&nycap.rr.com
-29489
- SlitherSoft
- Jeremy Jones
- jjones192&nycap.rr.com
-29490
- Protech s.a.s.
- Andrea Girardi
- a.girardi&protechgroup.it
-29491
- John Wiley & Sons, Inc.
- Simon Finch
- saefinch&yahoo.com
-29492
- Pischows
- Mickael Sundberg
- engineering&pischows.se
-29493
- Limestone College
- Scott Berry
- sberry&limestone.edu
-29494
- State of Maine Government
- Mark Kemmerle
- Mark.Kemmerle&maine.gov
-29495
- Siteworx, Inc.
- Brad Forrester
- brad&siteworx.com
-29496
- Marc Suttle
- Marc Suttle
- marc.suttle&gmail.com
-29497
- Carbon Planet Pty Ltd
- Jesse Reynolds
- jesse.reynolds.iana.pen&carbonplanet.com
-29498
- Probin
- Probin Acharya
- probin_np&yahoo.com
-29499
- Unassigned
- Removed 2007-09-17
- ---none---
-29500
- StorageSwitch
- Andy Thomson
- andy.thomson&storageswitch.com
-29501
- Algolith Inc.
- Andrew Lee
- andrew.lee&algolith.com
-29502
- MDIT Innovations Inc
- Slobodan Miskovic
- smiskovic&mditinnovations.com
-29503
- GeniNetworks
- Charlie Kim
- kimpd&geninetworks.com
-29504
- SDC ek. för.
- Magnus Engberg
- magnus.engberg&sdc.se
-29505
- Resercom, L.P.
- Jeremy Lujan
- jlujan&resercom.com
-29506
- Telepin Software
- Yassin Mohamed
- yassino&telepin.com
-29507
- InCoDe
- Peter Starchl
- peter.starchl&gmail.com
-29508
- Pfadfinder & Pfadfinderinnenbund Nordlicht e.V.
- Jonathan Jäkel
- info&pbnl.de
-29509
- Naftna Industrija Srbije a.d. Novi Sad
- Dragomir Zizakov
- dragomir.z&nis-naftagas.co.yu
-29510
- ZipTie
- Ryan Kruse
- rkruse&ziptie.org
-29511
- HITACHI Hi-System21 Co.,Ltd. Minami-Team
- Kazuya Ishida
- ishida&hs21.co.jp
-29512
- Integral Sistemas
- Alberto Reis
- areis&integral.com.br
-29513
- MvpZone
- Vinesh Prasanna M
- admin&mvpzone.net
-29514
- NewLines Ltd.
- Anton Nikiforov
- anton&nikiforov.ru
-29515
- Korea Institute of Science and Technology (KIST)
- Sangchul Ahn
- prime&kist.re.kr
-29516
- UUDynamics, Inc.
- Yang Haihua
- hhyang&uudynamics.com
-29517
- AuxalNet
- Ninad Shah
- ninad&auxalnet.com
-29518
- Drew Hess
- Drew Hess
- dhess-web-iana&bothan.net
-29519
- Urząd Zamówień Publicznych
- Grzegorz Jan Ber
- admin&uzp.gov.pl
-29520
- DOMOD
- Michael Bouma
- info&domod.nl
-29521
- Omega Design, s.r.o.
- Tomas Mrozek
- tomas.mrozek&omegadesign.cz
-29522
- Unix Systems Management Pty Ltd
- Graeme Elsworthy
- graeme&unixsm.com.au
-29523
- IE Internet.com Limited
- Ken O'Driscoll
- iana&ieinternet.com
-29524
- Dubai Duty Free
- Faizan Billah
- faizan.billah&ddf.ae
-29525
- Ukrainiain industrial
- Ivan Ablamskiy
- ivan.ablamskiy&gmail.com
-29526
- EBI consulting
- BULLIER Erick
- iana&ebiconsulting.fr
-29527
- Spangenberg Consulting
- Kai Spangenberg
- spangenberg-consulting&hotmail.com
-29528
- TOEL Electronics Ltd.
- Lubomir Toshev
- office&toel-electronics.com
-29529
- CPS Technologies
- Chavanel Jerome
- chavanel&cps-technologies.fr
-29530
- New Medical Co.,LTD.
- Bryan Shin
- yhshin&newmedical.com.tw
-29531
- K3-NETWORKS
- Shinichiro Nakase
- nakase&k3nw.com
-29532
- Pacific West Association of Realtors
- Stephen Davis
- stephend&pwr.net
-29533
- NSSE SSC Charleston
- John Buelk Jr
- jcbuelk&wareonearth.com
-29534
- the hive
- Brendan Clougherty
- brendan&thehive.com
-29535
- BKMKS.COM
- Alex Protasenko
- iana&bkmks.com
-29536
- SKY Perfect JSAT Corporation (formerly 'Space Communications Corporation')
- Hiroshi Uchiyama
- iana-contact&sptvjsat.com
-29537
- Velox
- Kaspar Brand
- iana.pen.07&velox.ch
-29538
- Celeonet
- Florent Monthel
- florent.monthel&etu.utc.fr
-29539
- Lockview
- Paul Taylor
- paul&lockview.net
-29540
- B-204-1
- Emilio García
- e.j.garcia&ieee.org
-29541
- City of Roseville - Information Technology Department
- Patrick Sullivan
- CAAdministrators&roseville.ca.us
-29542
- BroadcastWebs LLC
- Mike Miller
- mike&broadcastwebs.com
-29543
- Inqnet GmbH
- Michael Renner
- renner&inqnet.at
-29544
- University of Montenegro
- Abazovic Dejan
- dejoa&cg.ac.yu
-29545
- Open Source Business Group
- Stefan Schatz
- office&osbg.at
-29546
- Soft- & Hardware Beratung Ebeling
- Jörg Ebeling
- joerg.ebeling&shbe.net
-29547
- Thomas Neumann
- Thomas Neumann
- th.neumann&gmail.com
-29548
- 4Com GmbH
- Jonas Riedel
- riedel&4com.de
-29549
- EDS France SAS/D3SP
- Eric AZAIS
- eric.azais&eds.com
-29550
- Efectivos de Tecnicas, S.A.
- Jorge Santos
- jorge.santos&fedetec.es
-29551
- Dust in the net
- Olivier Migeot
- olivier&migeot.org
-29552
- Three Palm Software LLC
- Patrick Heffernan
- p.heffernan&ieee.org
-29553
- Habegger AG
- Jan Fischer
- jfischer&habegger.ch
-29554
- pouik.org
- Éric de la Musse
- eric&pouik.org
-29555
- CMB Consulting
- Cameron Brice
- cbrice&cmbconsult.com
-29556
- TechMind Ltd.
- Sagi Woo
- sagi&techmind.co.il
-29557
- Titus International Inc
- Stephane Charbonneau
- Stephane.Charbonneau&titus.com
-29558
- Titus Labs Inc
- Stephane Charbonneau
- Stephane.Charbonneau&titus.com
-29559
- Late-Hours
- Christopher M. Hosmer
- Late-Hours&knology.net
-29560
- SBE network solutions GmbH
- Norman Meilick
- nm&sbe.de
-29561
- Yuston BV
- Alain Schuermans
- alain&yuston.com
-29562
- Sophelios BVBA
- Alain Schuermans
- alain&sophelios.com
-29563
- MITANI CORPORATION
- Haruhiko Gotaishi
- gotaishi&mitani-corp.co.jp
-29564
- Opensquad SARL
- Arnaud Brugnon
- arnaud&opensquad.com
-29565
- DCMSYS LLC
- Dmitriy Tochilnik
- dmitri&toch.us
-29566
- OH San Juan de Dios. Provincia Betica
- Emilio Maneiro
- emaneiro&sjd.es
-29567
- Central Informatics Organisation
- Adlin Hisyamuddin
- adlinh&cio.gov.bh
-29568
- Integro Technologies Private Limited (Singapore)
- System Administrator
- admin&integrosys.com
-29569
- Senselogic AB
- Karl Eklof
- karl.eklof&senselogic.se
-29570
- Oak Ridge Associated Univerisites
- Josh Haynes
- Joshua.Haynes&orau.org
-29571
- Mirasys
- Sami Ovaska
- sami.ovaska&mirasys.fi
-29572
- Apotex Inc
- Paul Tenaglia
- ptenaglia&apotex.com
-29573
- Laredo IT
- Francisco Diderot
- ldap&laredoit.net
-29574
- PowerCore Engineering
- John teBokkel
- john&powercoreeng.com
-29575
- Alexander Badent (none)
- Alexander Badent
- abadent&gmail.com
-29576
- Kilgour
- Chris Kilgour
- chris&kilgour.org.uk
-29577
- gateProtect AG, Germany
- Dieter Balsen
- development&gateprotect.de
-29578
- STN BV
- J.A.M. Oortman
- info&stnbv.nl
-29579
- 42media group GmbH
- Markus Tamm
- mt&42mediagroup.com
-29580
- Viyya Technologies Inc.
- John Bay
- jbay&viyya.com
-29581
- Axiomatica
- Roger Neate
- ldap-root&axiomatica.com
-29582
- Nativ Systems Ltd
- Joe Warren-Meeks
- tech&lists.nativ-systems-host.com
-29583
- Angelo State University
- Jason Brake
- security&angelo.edu
-29584
- Tom Link
- Tom Link
- tmlink&cmu.edu
-29585
- Comsec TR Pty. Ltd.
- Emil Andonov
- emil&totalrecallvr.com
-29586
- USG People International N.V.
- Marc Surinx
- msurinx&usgpeople.com
-29587
- Zadig Srl
- Christian Deligant
- cdeligant&zadig.it
-29588
- EGOS! The Education Company
- Mario Fuchs
- mario.fuchs&egos.co.at
-29589
- Wanari Kft.
- György Kemény
- kemeny.gyorgy&wanari.com
-29590
- Lileo Scop Sarl
- Olivier Cadiou
- contact&lileo.fr
-29591
- OpenSS7 Corporation
- Brian Bidulock
- bidulock&openss7.org
-29592
- Corporate Big
- Kristin Valinsky
- kristin&corporatebig.com
-29593
- Bolkhuis
- Stefan Lenselink
- beheer&bolkhuis.nl
-29594
- San Jose State University
- Network Engiineers
- network&sjsu.edu
-29595
- Drury Hotels Corporation
- Domain Administrator
- domain.admin&druryhotels.com
-29596
- CMP Audiovisual
- Carlos Muñoz
- cmp&cmpx.net
-29597
- Nextfour Group Ltd
- Johan Wessberg
- johan.wessberg&nextfour.fi
-29598
- NSI Hosting, Inc.
- Chuck Tellechea
- chuckt&nsihosting.net
-29599
- Torokina Networks
- Mr John Ahern
- john.ahern&torokina.com
-29600
- International Islamic University Malaysia
- Abu Hurairah Abdul Manaf
- hurairah&iiu.edu.my
-29601
- Aricent Communication (Holdings) Ltd.
- Arpna Gupta
- arpna.gupta&aricent.com
-29602
- ALTASIS DI CASTIGLIEGO MICHELE
- MICHELE CASTIGLIEGO
- michele.castigliego&altasis.it
-29603
- Kenoxa GmbH
- Michael Radtke
- tradtke&kenoxa.de
-29604
- Diverse Computing, Inc.
- Michael Keller
- mkeller&diversecomputing.com
-29605
- CellGain
- Pratik Desai
- pdesai&cellgain.com
-29606
- Econoprint, Inc.
- Jeremy Parrish
- jeremyp&msn.econoprint.com
-29607
- Reverb Networks, Inc.
- Cang T Nguyen
- cnguyen&reverbnetworks.com
-29608
- pelzel
- Dieter Pelzel
- dieter&pelzel.at
-29609
- Apogee Labs, Inc.
- Andy Grebe
- andyg&apogeelabs.com
-29610
- Secure Process
- Robert Mann
- robert&secure-process.com
-29611
- Clonewars.org
- Daniel Schreiner
- warmaster&clonewars.org
-29612
- Wi-Links
- Sam Krainer
- sam&wi-links.com
-29613
- Ethos-Networks
- Vadim Eidlin
- vadim.eidlin&ethos-networks.com
-29614
- Aug. Hedinger GmbH & Co. KG
- Christos Zisis
- czisis&hedinger.de
-29615
- 29West, Inc.
- David Ameiss
- mib-admin&29west.com
-29616
- reynald.org
- Reynald Poittevin
- reynald&poittevin.name
-29617
- SyTech
- Igor Konnov
- ikonv&sytech.ru
-29618
- Region Syddanmark
- Carsten Friis
- carsten.friis&regionsyddanmark.dk
-29619
- Johannes Oechsle LAN-Party Netzwerkausruester
- Johannes Oechsle
- service&oechsle-it.de
-29620
- Gamesys Ltd
- Operations Dep/Systems Administrators Team
- sysadmin&gamesys.co.uk
-29621
- BIOS Corporation
- Seimei Matsumura
- matsu&bios.co.jp
-29622
- Megafon OJSC
- Yury Mikhienko
- Yury.Mikhienko&megafonkavkaz.ru
-29623
- Banque du Liban
- Zeina Aoun
- zaoun&bdl.gov.lb
-29624
- RIMOC GmbH
- Dr. Markus Ruppel
- markus.ruppel&rimoc.com
-29625
- Sagi Mehadave
- Sagi Mehadave
- rullevpt&yahoo.com
-29626
- TeleDesign PLC
- Adam Dring
- adam.dring&teledesign.co.uk
-29627
- IDpendant GmbH
- Clemens Haertling
- clemens.haertling&idpendant.com
-29628
- n2N Commerce
- Bill Goodson
- wgoodson&n2ncommerce.com
-29629
- Legg Mason, Inc.
- Todd Behr
- tmbehr&leggmason.com
-29630
- ONE-ANS S.p.A
- Giovanni Salvia
- giovanni.salvia&one-ans.it
-29631
- iptego GmbH
- Stefan Keller
- iana-pen&iptego.de
-29632
- Seko Worldwide
- Chris Johnson
- chris.johnson&sekoworldwide.com
-29633
- Peleton Photonic Systems
- Carol Tracey
- info&peleton.com
-29634
- Dom Inwestycyjny BRE Banku S.A.
- Paweł Kaszyński
- prof.gabka&yahoo.com
-29635
- Dealer Information Systems Corporation
- Dave Dunkin
- webmaster&dis-corp.com
-29636
- SecureMedia
- Sean Higgins
- seanh&securemedia.co.nz
-29637
- TrinitySoft Co.,Ltd.
- Paek, Jin-Ha
- tsse&trinitysoft.co.kr
-29638
- NovaTec Kommunikationstechnik GmbH
- Wilfried Steffens
- wist&novatec.de
-29639
- The Electric Sheep Company, Inc.
- Judd Maltin
- oid-master&electricsheepcompany.com
-29640
- AP Nederland BV
- Luit Huisman
- j.verheul&impactions.eu
-29641
- Hostworks Group Ltd
- Christian Schulze
- christians&hostworks.com.au
-29642
- exxact
- Denis Lomov
- denis.lomov&exxact.com
-29643
- Winkwaves
- Hans de Graaff
- hans&winkwaves.com
-29644
- Antony Vennard
- Antony Vennard
- Quark0909&gmail.com
-29645
- bothan.net
- Drew Hess
- dhess-web-iana&bothan.net
-29646
- VisiWear AS
- Nils Erik Dahlen
- nils&visiwear.com
-29647
- Virtual Broadband Technology, Inc.
- Ben Sprachman
- ben&vbbtech.com
-29648
- QuoPin
- Jaewon, Chung
- jaewonc&quopin.com
-29649
- Infoton Corporation
- Ross H. Jaibaji
- ross&infoton.com
-29650
- Georg Simon GmbH
- Stefan Rittmann
- stefan.rittmann&simon-entsorgung.de
-29651
- vidIP
- Xavier VINCENT
- xvincent&mediatvcom.com
-29652
- Shook Hardy & Bacon LLP
- Henry Duong
- cpane&shb.com
-29653
- Overstock.com Inc
- Nate Auwerda
- nate&overstock.com
-29654
- Freedom Networks
- James Jones
- james&freedomnet.co.nz
-29655
- Kirishi Glass Plant Ltd
- Admin
- admin&steklo.kirishi.ru
-29656
- phaseDOT IT-Business-Solutions
- Emmanuel Zaspel
- Emmanuel.Zaspel&phaseDOT.net
-29657
- VTG Deutschland GmbH
- Reinhart Donner
- 1111&vtg.com
-29658
- Fundacion Integra
- Jose Luis Fernández
- admin&f-integra.org
-29659
- Carestream Health
- Gary Shellenbarger
- gary.shellenbarger&carestream.com
-29660
- AFCO Systems
- Todd Lowe
- tlowe&afcosystems.com
-29661
- Fulcrum Analytics, Inc.
- Elmer Pallarca
- epallarca&fulcrm.com
-29662
- cron IT GmbH
- Remus Lazar
- remus&cron-it.de
-29663
- Embedded X Inc
- Brett Bernath
- brett&embeddedx.com
-29664
- Packet General Networks, Inc.
- Iohannes Plethon
- iana&packetgeneral.com
-29665
- Protractor Software, Inc.
- Lei Xu
- lei&protractor.com
-29666
- Lunixtreme
- Deny C Luchetti
- dcraid&gmail.com
-29667
- Destiny Solutions
- Simon Shi
- sq.simon&gmail.com
-29668
- Kirei AB
- Fredrik Ljunggren
- fredrik&kirei.se
-29669
- Firstlight Networks
- David Lawson
- david&firstlightnetworks.com
-29670
- Medflow Inc.
- Mike Schmidt
- mschmidt&oipacs.com
-29671
- Meraki Networks, Inc.
- Hans Robertson
- iana&meraki.net
-29672
- CSK WinTechnology Corporation
- Tetsuji Iwata
- tetsujii&cskwin.com
-29673
- M3 Design Inc.
- Gray McCord
- gmccord&m3designinc.com
-29674
- thewolfe.net, llc.
- Michael Wolfe
- netsol&thewolfe.net
-29675
- alemo kommunikations GmbH
- Oliver Albers
- oliver.albers&alemo.de
-29676
- net plus tecnolodgy
- Rakesh Giri
- rakesh&netplus.com.np
-29677
- Sensata Technologies - Power Controls WBL
- Michael Maas
- mike.maas&airpax.net
-29678
- Absolute, Ltd.
- Igor Koval
- info&atta-absolute.ru
-29679
- VoiSmart S.r.l. (formerly 'Espia Srl')
- Matteo Brancaleoni
- mbrancaleoni&voismart.it
-29680
- Atlantux Consultores S.L.
- Enrique Zanardi
- ezanardi&atlantux.com
-29681
- AFPy
- Olivier Grisel
- ogrisel&afpy.org
-29682
- DMO Technologies
- David MOSCIPAN
- david-iana&dmo-technologies.com
-29683
- CopperEye Ltd
- Stephen Reed
- it_support&coppereye.com
-29684
- Pioneer Magnetics Inc.
- Param Panesar
- ppanesar&pioneermagnetics.com
-29685
- eVision Pty Ltd
- Scott Caffyn
- scott.caffyn&evision.com.au
-29686
- Bharat Electronics Ltd.
- Charu S. Tripathi
- charustripathi&bel.co.in
-29687
- Absolute Performance, Inc.
- Derek Streeter
- dstreeter&absolute-performance.com
-29688
- Axstor
- Alan Shepherd
- oid_admin&axstor.com
-29689
- Ekplek
- Dameon Wagner
- dameonwagner&gmail.com
-29690
- Doctor Web, Ltd
- Eugeny Gladkih
- john&drweb.com
-29691
- Silver Wave Technology Limited
- George Holmes
- gholmes&silverwave.biz
-29692
- Globesy, s.r.o.
- Zdenko Nečas
- admin&globesy.sk
-29693
- Cobalt Digital
- Kevin Moore
- kmjm&cobaltdigital.com
-29694
- Tethers Unlimited, Inc.
- Tyrel Newton
- newton&tethers.com
-29695
- REWSS A/S
- Brian Wasylowich
- brian.wasylowich&rewss.com
-29696
- CitiFinancial Consumer Finance India Ltd.
- Anil Chopra
- anil.chopra&citi.com
-29697
- Leeds Primary Care Trust
- Information Systems and Delivery
- michael.ross&leedspct.nhs.uk
-29698
- NBG ID
- Adrien VALLET
- avallet&nbgid.com
-29699
- Cetis d.d.
- Bostjan Kolar
- bostjan.kolar&cetis.si
-29700
- Got Linux, Inc.
- Linda Bissum
- linda&gotlinux.biz
-29701
- PMD GmbH
- Mike Waldeyer
- mike.waldeyer&pmd-media.de
-29702
- Eckard Vossas Unternehmensberatung
- Eckard Vossas
- info&aims-consulting.de
-29703
- Stuart Morgan
- Stuart Morgan
- stuart.morgan&vulnlabs.net
-29704
- Carlos Perello Marin
- Carlos Perello Marin
- carlos&pemas.net
-29705
- SNOLAB
- John Roberts
- jroberts&snolab.ca
-29706
- Mapsolute GmbH
- Jens Brey
- jens.brey&mapsolute.com
-29707
- Business & Engineering Systems Corp
- John Cook
- jcook&bnesystems.com
-29708
- InfoStream Technologies
- Abdul Rehman Gani
- hostmaster&infostream.co.za
-29709
- Argibel Servicios Digitales S.L
- Esteban Barón
- esteban&argibel.es
-29710
- London Borough of Camden
- David Nicholls
- david.nicholls&camden.gov.uk
-29711
- 802automation Ltd
- Paul Morgan
- paul.morgan&802automation.com
-29712
- m-sys EDV-Dienstleistungen
- Martin Menhart
- mmsp&m-sys.at
-29713
- LTECH
- WangJun
- wangjun&ltech.cc
-29714
- Kyocera Communication Systems Co.Ltd
- Shinji Higashi
- shinji-higashi&kccs.co.jp
-29715
- Zavod za zdravstveno zavarovanje Slovenije
- Andrej Zlender
- andrej.zlender&zzzs.si
-29716
- Concilio Networks
- Pasi Kovanen
- pasi.kovanen&concilionetworks.com
-29717
- RealDolmen (formerly 'Dolmen Computer Applications')
- Lieven Willems
- Lieven.Willems&realdolmen.com
-29718
- Technological Educational Institution of Athens (T.E.I. of Athens)
- Dimitrios Ninos
- proedr&teiath.gr
-29719
- MICROPLEX Printware AG
- Matthias Krusch
- matthias.krusch&microplex.de
-29720
- xyco technologies AG
- Volker Schnabel
- volker.schnabel&xyco.eu
-29721
- BI-LO, LLC
- Patrick Wyer
- patrick.wyer&bi-lo.com
-29722
- TimeCost
- Marson Nicolas
- info&timecost.ca
-29723
- IMAX Corp.
- Tod Beric
- tberic&imax.com
-29724
- RPC Packaging
- Philippe Mees
- philippe.mees&rpc-asp.com
-29725
- InConcertCC
- Fernando Pardo
- fpardo&inconcertcc.com
-29726
- Rottenbytes
- Nicolas Szalay
- nico&rottenbytes.info
-29727
- John Zornig
- John Zornig
- jzornig&mac.com
-29728
- Planex Technologies S.A.
- Diego G. Nagy
- dnagy335&hotmail.com
-29729
- Logesta Gestion del Transporte S.A.
- Antonio Gomez Gonzalez
- antonio&logesta.com
-29730
- MADEK, Ltd.
- Alexey Shchutsky
- shchutsky&madek.kiev.ua
-29731
- General Dynamics Information Technology
- Derek Smeds
- derek.smeds&gdit.com
-29732
- MTS
- Gary Tock
- gary.tock&mts.com
-29733
- Hypertag Ltd.
- Graham Tricker
- gtricker&hypertag.com
-29734
- Wartsila Corporation
- Joachim Kjellman
- iana&wartsila.com
-29735
- E.T.S.V. Scintilla
- Koen Zandberg
- sot&scintilla.utwente.nl
-29736
- Unified Business Solutions
- Thad Smith
- thad.smith&unifiedbusiness.com
-29737
- Hollywood Center Studios
- Systems Administrator
- sysadmin&hollywoodcenter.com
-29738
- Kerk
- Matthias Kerk
- matthias&tuxlife.de
-29739
- GRETA Sud Normandie
- Emmanuel Langlois
- emmanuel.langlois&sud-normandie.greta.fr
-29740
- MST Systemtechnik AG
- Zdenek Sulc
- sulc&mst.ch
-29741
- Aruba PEC S.p.A.
- Andrea Sassetti
- andrea.sassetti&ca.arubapec.it
-29742
- NetOne S.A.
- NetOne Administration Team
- sysadmin&netone.gr
-29743
- digiremote
- Gregor HARTWEGER
- office&digiremote.at
-29744
- SVP Broadcast Microwave S.L.
- Juan Antonio Burgos
- svp&svpbm.com
-29745
- International Institute for Applied Systems Analysis
- Bartosz Kozlowski
- oid&iiasa.ac.at
-29746
- Satro, s.r.o.
- Michal Vančo
- vanco&satro.sk
-29747
- ExpressThought
- Laurence Lu
- laurence&expressthought.com
-29748
- SophiaSoft
- Caleb Chiu
- mis&sophiasoft.com
-29749
- Matthew R Chase
- Matt Chase
- matt&mattchase.us
-29750
- KTS InfoTech Pvt Ltd
- Tom Thomas
- tom.thomas&ktsinfotech.com
-29751
- Cubico Solutions
- Aurelien Duarte
- aurelien.duarte&cubico.co.za
-29752
- Computer System Laboratory at CMC Faculty, Moscow State University
- Nikita Youshchenko
- yoush&cs.msu.su
-29753
- 3Tera, Inc.
- Peter Nickolov
- iana-reg&3tera.com
-29754
- Karl Blanderer Internetmarketing
- Karl Blanderer
- info&kabin.biz
-29755
- SISTEER
- Tarik ABAYAD
- tabayad&sisteer.com
-29756
- Rochester Community and Technical College
- Chris Dobbins
- hostmaster&roch.edu
-29757
- Oficina de Cooperación Universitaria, S.A.
- Servicios Técnicos
- servicios.tecnicos&ocu.es
-29758
- Polska Grupa Farmaceutyczna
- Remigiusz Boguszewicz
- remigiusz.boguszewicz&gmail.com
-29759
- Engineering Solutions, Inc.
- Carl Osborne
- c3&engs.com
-29760
- CSS Inc.
- Thanh Chiem
- ThanhChiem&csstel.com
-29761
- GoConnect Australia Pty Ltd
- Kevin Wong
- kevin.wong&goconnect.com.au
-29762
- DevMetrix
- Damien Stuart
- dstuart&devmetrix.com
-29763
- ReadyLinks
- Milton Johnson
- milt_johnson&ready-links.com
-29764
- Crypto Team
- Duncan S. Wong
- duncan&cityu.edu.hk
-29765
- Paycor, Inc.
- David J Granger
- dgranger&paycor.com
-29766
- Falcontrol Security GmbH
- Philipp Guehring
- philipp.guehring&falcontrol.com
-29767
- James Hunt
- James Hunt
- filefrog&gmail.com
-29768
- Emporia State University
- Cheryl Alvarado
- calvarad&emporia.edu
-29769
- Accountis
- Martin Pegler
- martin.pegler&accountis.com
-29770
- DIRECT ENERGIE
- Florent GILAIN
- webmaster&direct-energie.com
-29771
- TrioCom Ltd.
- Ing.Martin Paska
- mpaska&triocom.eu
-29772
- Sutter Health
- Jonathan Taylor
- taylorje&sutterhealth.org
-29773
- Genworth Financial
- Jeffrey Tchang
- Jeffrey.Tchang&genworth.com
-29774
- Amobee
- Amit On
- amit&amobee.com
-29775
- WushNet LLC
- Michael Ching
- michaelc&wush.net
-29776
- Checkphone
- Benjamin CALAIS
- bcs&checkphone.net
-29777
- Shaw Industries, Inc.
- Ken Martinson
- ken.martinson&shawinc.com
-29778
- Honeywell Systems Group
- Rajesh Gopalakrishna
- Rajesh.G&honeywell.com
-29779
- Zion Group Limited
- Shaun Stockman
- shaun.stockman&ziongroup.co.nz
-29780
- Secure IT-IS
- Phillip O'Donnell
- info&itis.co.nz
-29781
- XEyedFrog Solutions
- Robert Stabler
- rob.stabler&gmail.com
-29782
- CSK Holdings Corporation
- Osa Horii
- osa.horii&csk.com
-29783
- Brandenburg University of Technology
- Thomas Pawell
- pawell&tu-cottbus.de
-29784
- Turismo Andaluz
- Laura Gonzalez García
- lgonzalez&andalucia.org
-29785
- Ministerio de Agricultura, Pesca y Alimentacion
- Rodrigo Diego de Miguel
- rdiegode&mapa.es
-29786
- Mediterrum SARL
- Mr Pekka HEIMONEN
- heimonen&mediterrum.com
-29787
- T-Systems MMS Dresden
- Thomas Friedland
- tfri&mms-dresden.de
-29788
- GZT Telkom-Telmor Sp. z o.o.
- Krzysztof Czajka
- iptv&telmor.pl
-29789
- Red Lion Controls (BlueTree Wireless Data, Inc.)
- Denis Aull
- Engineering&RedLion.net
-29790
- Yelp Inc.
- Sean Plaice
- splaice&yelp.com
-29791
- Quality Nighthawk
- john chen
- chen&qualitynighthawk.com
-29792
- IPercom
- Richard Blanchet
- snmp-pen-request.iana.org&rb.ipercom.com
-29793
- eNVENT Technologies
- Grant Smith
- grant.smith&envent-tech.com
-29794
- DBD Deutsche Breitband Dienste
- Marc Donner
- donner&dbd-breitband.de
-29795
- CC Computer Consultants GmbH
- Michael E. Kromer
- michael.kromer&computergmbh.de
-29796
- Instituto Mexicano del Seguro Social (IMSS)
- Alexis Diez
- alexis.diez&imss.gob.mx
-29797
- Working Technologies
- Jurgen van der Walt
- jurgenvdw&wtech.co.za
-29798
- Loma Technology Group
- David Kierans
- dave&lomatech.com
-29799
- ex eventu GmbH
- Stephan Kröger
- reg&exeventu.com
-29800
- Zeugma Systems Inc.
- Mike Dreves
- mdreves&zeugmasystems.com
-29801
- DEEPSCAN GR
- Spanoudakis Stefanos
- s_spanoudakis&freemail.gr
-29802
- Comway GmbH
- Rupert Weber-Henschel
- r.weber&comway.net
-29803
- Helsinki Metropolia University of Applied Sciences
- Jukka Veikkolainen
- iana_contact&metropolia.fi
-29804
- Pyroll Oy
- Tero Karstikko
- tero.karstikko&pyroll.com
-29805
- blueocean IT-Services
- Dennis Ploeger
- info&blueocean-design.de
-29806
- Demotera
- Pierre Paysant-Le Roux
- pplr&free.fr
-29807
- Ville de Sevran
- Stephane Gatignon
- iana-req&sevran.fr
-29808
- Nextlead GmbH
- Sebastian Roth
- sebastian.roth&gmail.com
-29809
- Getnet Tecnologia
- Alexandro Corrêa
- alexandroc&getnet-tecnologia.com.br
-29810
- Moving Bytes Communications, Systementwicklung GmbH
- Peter Sprenger
- sprenger&moving-bytes.de
-29811
- Contaduría General de la Nación
- Leonardo Amor
- lamor&cgn.gub.uy
-29812
- Kinetic Avionics Limited
- Martin Stevens
- martin.stevens&kinetic.co.uk
-29813
- Prologica SGPS
- Eng. Joao Vaz Martins
- jmartins&prologica.pt
-29814
- Gandara Center
- IT Administrator
- itadmin&gandaracenter.org
-29815
- Gymnasium Salzgitter-Bad
- Mario Lipinski
- admin&gymszbad.de
-29816
- IRI France
- Jean-Paul Chirac
- jean-paul.chirac&infores.com
-29817
- Gold Mobile
- Iana Administrator
- iana&gold-mobile.com
-29818
- National Financial Partners
- Chris Mankowski
- root&nfp.com
-29819
- Elastiq LLC
- Sean Carey
- sean&densone.com
-29820
- x-Gate
- Sven Richter
- post&sven-richter.de
-29821
- SztupY dot hu
- Sztupák Szilárd Zsolt
- mail&sztupy.hu
-29822
- The Options Clearing Corporation
- Scott Mitchell
- smitchell&theocc.com
-29823
- CallMiner, Inc.
- Kim Brown
- kim.brown&callminer.com
-29824
- Inprint
- Ilya Skorik
- ilya.skorik&inprint.ru
-29825
- NeoAccel, Inc.
- Uday Masurekar
- uday.masurekar&neoaccel.com
-29826
- WiBorne, Inc.
- Kevin Cheng
- info&wiborne.com
-29827
- Qness AB
- Peter Mathiasson
- iana&qness.eu
-29828
- Bellgardt Embedded Systems
- Andreas Bellgardt
- ldap&andreas-bellgardt.com
-29829
- Software Art
- Remco Vossen
- oid&software-art.nl
-29830
- Elektro Slovenija d.o.o
- Gregor Novak
- gregor.novak&eles.si
-29831
- Scuola Superiore S.Anna
- Fabio Pagani
- fabio.pagani&sssup.it
-29832
- Saeil Systems Inc.
- JongMin Choi
- jmchoi&saeilsystems.com
-29833
- GTZ India
- chander bahadur thapa
- neerajku79&yahoo.com
-29834
- PRO-ZETA a.s.
- David Cermak
- prozeta&prozeta.eu
-29835
- bruggmann engineering
- Rico Bruggmann
- bnshe&gmx.net
-29836
- China Internet Network Information Center
- Guonian SUN
- sun&cnnic.cn
-29837
- Erema - Engineering Recycling Maschinen und Anlagen GmbH
- Thomas Felberbauer
- t.felberbauer&erema.at
-29838
- DialogueScience, Inc.
- Anatoly Gladkov
- gladkov&dialognauka.ru
-29839
- Simoco EMEA Ltd (formerly 'Dalman Technical Services Ltd')
- John Witchell
- john.witchell&simocogroup.com
-29840
- llrp.org
- John R. Hogerhuis
- registrar&llrp.org
-29841
- Fat Spaniel Technologies
- Ferdy Nagy
- ferdy.nagy&fatspaniel.com
-29842
- macmon secure gmbh (formerly 'mikado soft gmbH')
- Christian Bücker
- christian.buecker&macmon.eu
-29843
- CargoServer AG (formerly 'ncode gmbh')
- Oli Kessler
- info&cargoserver.ch
-29844
- Centile SA
- Aymeric Renou
- centilesnmp&centile.com
-29845
- VCC Perfect Pictures AG
- Frank Schliefer
- sysadmin&vcc.de
-29846
- Sparkroom, Inc.
- David DeBruin
- ddebruin&sparkroom.com
-29847
- Nav N Go Kft
- Ivan Szkiba
- ivan.szkiba&navngo.com
-29848
- Far Eastern State University
- Anton Yu. Umnikov
- umnikov&uic.dvgu.ru
-29849
- KSB AG
- Wilfried Kipry
- wilfried.kipry&ksb.com
-29850
- Netline Communications Technologies (NCT) Ltd.
- Avi Asher
- avi&netline.co.il
-29851
- Nuclear-Whales Informatikai Bt.
- Zsolt Parragi
- dutow&nwi.hu
-29852
- Gryphon Networks
- Ross Kramer
- rkramer&gryphonnetworks.com
-29853
- eCare4all
- Segis Ferrairó Pons
- segis.fp&gmail.com
-29854
- Advanced Medical Imaging Solutions, LLC
- Bob Williams
- amisllc&yahoo.com
-29855
- T-Mobile Crna Gora d.o.o.
- Dejan Stijovic
- dejan.stijovic&telekom-cg.com
-29856
- anapol
- Petr Mifek
- iana-contact&anapol.cz
-29857
- Ready Set Companies
- John Duncan
- johnduncan&readysetcompanies.com
-29858
- FCA US LLC (formerly 'Chrysler LLC')
- Tony Veach
- tony.veach&fcagroup.com
-29859
- KJC Systems Ltd Co
- Kevin Coyle
- kevin.coyle&kjc.com
-29860
- Octopus Technologies Ltd
- Stephen Beynon
- stephen&octopus-technologies.com
-29861
- N-iX LLC
- Ivan Pesin
- sp_ipesin&n-ix.com.ua
-29862
- NANCY s.r.o
- Boris Pisarcik
- boris&opensolaris.sk
-29863
- Software Logic, Inc.
- Scott Stumpf
- scott.stumpf&softwarelogic.com
-29864
- Typeria
- Dominik Lisiak
- admin&typeria.net
-29865
- Kjaerulff 1 A/S
- Kim Esben Jorgensen
- kej&lastmile.eu
-29866
- Method Analysis Limited
- Michael Wright
- mjw&methodanalysis.com
-29867
- Skanska
- Joachim Abrahmsen
- joachim.abrahmsen&skanska.se
-29868
- Business Security
- Roger Eriksson
- roger.eriksson&businessecurity.com
-29869
- UniNet
- Enrico Zanolin
- enrico&uninet.co.za
-29870
- EUROCOM Satellite Systems AS
- Kjell Danielsen
- Kjell.Danielsen&EUROCOM.no
-29871
- College of Southern Maryland
- David marek
- davem&csmd.edu
-29872
- Project Rialto
- Kelvin Edmison
- kelvin&projectrialto.com
-29873
- OutProtect
- Jim Niemann
- jniemann&outprotect.com
-29874
- TEL2WEB GmbH
- Michael Friese
- m.friese&tel2web.com
-29875
- sorcellerie
- Takashi Yajima
- k-kukutachi&sorcellerie.jp
-29876
- Antwoord voor Bedrijven (ICTU)
- Johnander Jansen
- johnander.jansen&ictu.nl
-29877
- Allnight Computing
- Michael Peck
- allnight4&yahoo.com
-29878
- Reduce My Fee, LLC
- Robert Zuber
- rob&adperk.com
-29879
- Pittman Holdings
- James Pittman
- jamespittman&gmail.com
-29880
- Schelde Naval Shipbuilding
- Lennard van Vugt
- Lennard.vanvugt&schelde.com
-29881
- Brovic ltd. China
- Bryan Su
- sinceresu120&hotmail.com
-29882
- Lambda Networks Ltd
- Lutz Hamann
- l.hamann&lambdaltd.net
-29883
- Telemune Software Solutions Ltd
- Rajesh Bansal
- rajesh.bansal&telemune.net
-29884
- MadaSoft
- Martin Dahling
- martin.dahling&madasoft.no
-29885
- Haute Ecole Specialisee de Suisse occidentale (HES-SO)
- Gremaud Marcel
- marcel.gremaud&hefr.ch
-29886
- beroNet GmbH
- Mr. Guersel Kuecuek
- info&beroNet.com
-29887
- Dirección General del Territorio Marítimo
- Enrique Maldonado
- emaldonado&directemar.cl
-29888
- SpinetiX S.A.
- Diego Santa Cruz
- Diego.SantaCruz&spinetix.com
-29889
- Utilia
- Miroslav Ther
- mt&utilia.info
-29890
- Work Microwave GmbH
- Dr. Gerhard Mocker
- support&work-gmbh.de
-29891
- Bluelon
- Thomas Bonde
- tbo&bluelon.com
-29892
- Genesilico
- Tomasz Jarzynka
- tomee&genesilico.pl
-29893
- Jeroen Koekkoek
- Jeroen Koekkoek
- jtm.koekkoek&home.nl
-29894
- FrenchCries!
- Frank Lesniak
- franklesniak&hotmail.com
-29895
- Fam List Schlattstall
- Christoph List
- hostmaster&list-schlattstall.de
-29896
- VdH Soft
- Danny Van den Hende
- danny&vdhsoft.be
-29897
- QSent
- Chris Nigh
- chris.nigh&qsent.com
-29898
- Acropolis Software SPRL
- Philippe Detournay
- philippe.detournay&acrosoft.be
-29899
- Roosevelt University
- Timothy Hopkins
- thopkins&roosevelt.edu
-29900
- EDEKA Aktiengesellschaft
- Dirk Thomsen
- dirk.thomsen&edeka.de
-29901
- Anaheim Engineering Co., LTD.
- Reiki Hattori
- hattori&anaheim-eng.com
-29902
- Dytecna Limited
- Iain Woolley
- iain.woolley&syen.co.uk
-29903
- Counsel's Chambers Limited
- Michael Wright
- support&counselschambers.com.au
-29904
- abacon products GmbH
- Carina Adler
- carina.adler&abacon.org
-29905
- Perrit
- Jeroen Koekkoek
- j.koekkoek&perrit.nl
-29906
- Dybala
- Krzysztof Dybala
- krzych&stud.ics.p.lodz.pl
-29907
- Webmedia AS
- Erik Matt
- erik.matt&webmedia.ee
-29908
- IndigoVision Ltd
- Keith Manning
- k.manning&indigovision.com
-29909
- Cicero Networks Limited
- Lubos Zisko
- Lubos.Zisko&ciceronetworks.com
-29910
- Open Systems Management Ltd.
- Mr. C. A. Hunt
- oid&osm.co.uk
-29911
- Open-Tec
- Robert Houghton
- Robert.Houghton&Open-Tec.com
-29912
- Hx Technologies Inc.
- Joe Murray
- joe.murray&hxti.com
-29913
- Intelligent Transportation Video
- Daniel Boyd
- dan&intelligenttransportationvideo.com
-29914
- Networkconcepts BV
- John de Graaff
- iana.j&networkconcepts.nl
-29915
- Northwood Logic
- David Rush
- rushd&uwec.edu
-29916
- Lightworks Technology Inc.
- Jinbong Ko
- jinbong&lightworks.co.kr
-29917
- Guangzhou New Postcom Equipment Co.,Ltd.
- Weihe Zhang
- zhangweihe&newpostcom.com.cn
-29918
- Uralsvjazinform Inc.
- Kurenskij Evgenij
- evgenij.kurenskij&samotlor.info
-29919
- CJSC Orbita
- Igor V. Alekseev
- ca&orbitacom.ru
-29920
- mySoftIT GmbH
- Sascha Bitzer
- info&mysoftit.de
-29921
- FV Service KG
- Christof Schroeder
- iana.registry&freudenberg-nw.com
-29922
- Starmark Trading Ltd.
- Bernard Magny
- bmagny&starmark.biz
-29923
- Netris
- Igor Perin
- i.perin&netris.ru
-29924
- GTD Sistemas de Informacion
- Miguel A. Vilarino
- miguel.vilarino&gtd.es
-29925
- Multiplex Ltd.
- Ivan Ivanov
- i.ivanov&multiplex-bg.com
-29926
- Santa Rosa S.A.
- Luis C. Benitez A.
- lbenitez&tocorre.com
-29927
- LOHR
- Bruno Barge
- bruno.barge&lohr.fr
-29928
- RelayHealth
- Marty Smith
- Marty.Smith&relayhealth.com
-29929
- United States Steel Corporation
- Jack Parkin
- jparkin&uss.com
-29930
- Koinema srl
- Matteo La Rosa
- mlarosa&koinema.com
-29931
- Cambridge Imaging Systems
- Simon Booth
- simon&cambridgeimaging.co.uk
-29932
- SOUND4
- Camille Gonnet
- camille&sound4.biz
-29933
- APOAL Inc.
- Franck Zoccolo
- admin&apoal.com
-29934
- Hypermedia Systems Inc. (USA)
- Alexi Papaleonardos
- alexi.papaleonardos-iana&hypermediasystems.com
-29935
- ABC Startsiden AS
- Andreas Marienborg
- andreas&startsiden.no
-29936
- x15
- Pete Slagle
- iana-pen-admin&x15.net
-29937
- ellis stewart design
- joseph ellis stewart
- joseph.stewart&gmail.com
-29938
- The Swedish Coast Guard
- Bengt Nilsson
- bengt.nilsson&combitech.se
-29939
- Alpha Red, Inc
- LR Mack McBride
- network&alphared.com
-29940
- Kawhai
- Network Admin
- info&kawhai.net
-29941
- Pavlov Media, Inc
- Jeremy Jones
- jjones&pavlovmedia.com
-29942
- Himalaya Technologies
- Suresh Ramasamy
- sureshdr&gmail.com
-29943
- Shelton | Johns Technology Group
- Aubrey Wells
- aubrey&sheltonjohns.com
-29944
- COARA Inc.
- Yas Higashino
- yas_h&elf.coara.or.jp
-29945
- Chinauninet
- Mang Lee
- lim&lianmeng.com
-29946
- Media-Saturn IT Services GmbH
- Arthur Drymala
- drymala&media-saturn.com
-29947
- CNW Consulting Network AB
- Per Dalén
- per.dalen&cnw.se
-29948
- Consell de Mallorca
- Antoni Barcelo
- abarcelo&conselldemallorca.net
-29949
- Cassiopea OnLine srl
- Daniele Pizzurro
- daniele&cassiopeaonline.net
-29950
- GMIT GmbH
- Stephan Skrodzki
- info&gmit-gmbh.de
-29951
- DCom, spol. s r.o.
- Rudolf Touzin
- touzin&dcom.cz
-29952
- JSC "Alliance Group Holding"
- Aleksandre Bezhitashvili
- hostmaster&agh.ge
-29953
- deburit chemical engineering GmbH
- Björn-Arne Meyn
- info&deburit.de
-29954
- Health Identity Management Consortium - HIMC
- Seonho Kim
- seonho.kim&mednet.org
-29955
- Medina VoIP
- Sean Harlow
- sharlow&medinavoip.com
-29956
- FreeWave Technologies
- Jordan Fuerst
- jordan&freewave.com
-29957
- PCB Piezotronics Inc.
- Joseph Van Slycke
- jvanslycke&pcb.com
-29958
- Washtenaw Community College
- Rex Roof
- rex&wccnet.edu
-29959
- KolejNet
- Pavel Kislinger
- pavel.kislinger&gmail.com
-29960
- specurio studio
- Masamichi Decimal
- deshi&specurio-studio.com
-29961
- AServer NV
- Henk BAERT
- henk.baert&aserver.com
-29962
- Tag Systems S.A.
- Jukka Kangas
- pen-admin&tagsystems.fi
-29963
- Iron Council
- Keisi Sciuridae
- keisis&ironcouncil.net
-29964
- Tribunal de Contas dos Municipios do Estado do Pará
- Sérgio Cunha
- sergio.cunha&tcm.pa.gov.br
-29965
- Shinymark Enterprises Limited
- Aaron Ho
- aaron.ho&msn.com
-29966
- Advanced Concept Technology Ltd.
- Michael Tang
- michael.tang&aconcept.info
-29967
- B&R Data Systems
- Bob Lynch
- rwl&brenclosures.com.au
-29968
- Universidade Estadual de Campinas (Unicamp)
- Unicamp NOC
- noc&unicamp.br
-29969
- MORISHIMA.NET
- Naoto Morishima
- root&morishima.net
-29970
- Zervina Technologies LLC
- Rich Vaughn
- rvaughn&zervina.com
-29971
- Damogran Apathetic Solutions
- Justin A. McCright
- jam&damogran.org
-29972
- compico
- Juergen Spitzner-von der Haar
- jspitzner&novell.com
-29973
- GemEx Systems, Inc.
- Ben Wong
- benw&gemex.com
-29974
- E-WEB INFORMATION Co.
- Ivan Chang
- ivan&e-web.com.tw
-29975
- Guangzhou Great Symbol Information Technology Co.,Ltd.
- Feixian Xie
- sunny_mr_xie&live.cn
-29976
- Nara Institute of Science and Technology
- Takahiro Tsujii
- tsujii&itc.naist.jp
-29977
- Palm Tree Technology, Inc.
- Lance Reck
- lance&palmtreetechnology.com
-29978
- Gotland University
- Tord Berglund
- tord.berglund&hgo.se
-29979
- Bruker AXS GmbH
- OIDMaster
- OIDMaster&bruker-axs.de
-29980
- Smart Com d.o.o.
- Arso Savanovic
- arso.savanovic&smart-com.si
-29981
- Marben Products
- Philippe CUER
- philippe.cuer&marben-products.com
-29982
- Massive Entertainment
- Erik Karlsson
- erikk&massive.se
-29983
- Waves Audio Ltd.
- Rotem Tzuk
- rotemt&waves.com
-29984
- Byelorussian State University of Informatics and Radioelectronics (BSUIR)
- Network Department
- admin&bsuir.by
-29985
- DETRACOM SAS
- FREZOULS Jean-Michel
- jm.frezouls&detracom.fr
-29986
- NET STREAMS
- Valery BAUDOIN
- vbaudoin&net-streams.fr
-29987
- Hivemind Systems, Inc.
- Clint Miller
- cmiller&hivemindsystems.com
-29988
- Calabrio, Inc.
- Alvin Wong
- alvin.wong&calabrio.com
-29989
- Qwaq Inc.
- Andreas Raab
- andreas.raab&qwaq.com
-29990
- John Smith Network Management
- John Smith
- snmp.stack&yahoo.co.uk
-29991
- Macif
- Dominique Caillaud
- dcaillaud&macif.fr
-29992
- PONT Technology Co.,Ltd
- Hai Liu
- lh&pont.cn
-29993
- Net Marvellous
- Koji Takemura
- takemura&netmars.mobi
-29994
- CONCORD GmbH
- Uwe Böhme
- boehmeu&concord.de
-29995
- FUSAGx
- Pierre Ramlot
- sig&fsagx.ac.be
-29996
- The Lorentz Group
- Jack McKinney
- nsadmin&lorentz.com
-29997
- LavaNet, Inc.
- Julian Cowley
- system&lava.net
-29998
- Kurashiki Cable Television Co.,Ltd.
- YAMAKAWA Toshihiro
- service&kct.co.jp
-29999
- microC Design SRL
- Lucian Lazarescu
- l.lazarescu&microc.ro
-30000
- University of Western Sydney
- Robert Hazeltine
- r.hazeltine&uws.edu.au
-30001
- BROWAN COMMUNICATIONS INCORPORATION
- Gordon Chang
- gordon.chang&browan.com
-30002
- FREEPP INCORPORATION
- Gordon Chang
- gordon.chang&freepp.com
-30003
- Hiflex GmbH
- Rico Leenarts
- rl&hiflex.com
-30004
- TerraNua Ltd
- Brian Matthews
- brian.matthews&terranua.com
-30005
- Raybit Systems korea, Inc
- john choi
- autochoi&raybitsystems.co.kr
-30006
- Mobile Fun
- André Dal Col
- ti&mfun.com.br
-30007
- DOB.SK
- Samuel Behan
- pen-admin&mail.dob.sk
-30008
- Bank Austria Real Invest GmbH
- Mag. (FH) Sonja Koschina
- sonja.koschina&realinvest.at
-30009
- Information Industry Company
- Alex Dobrynin
- adobrynin&informind.ru
-30010
- Embotics Corporation
- Jean-Marc Seguin
- jmseguin&embotics.com
-30011
- Itochu Cable System Corp.
- Masaaki Umeura
- cmts&itochu-cable.co.jp
-30012
- ipoque GmbH
- Daniel Breest
- daniel.breest&ipoque.com
-30013
- Den selvejende institution Paul Bargsøe Kollegiet
- Søren Bøg
- nu&pbk.dk
-30014
- Pecsi Tudomanyegyetem Klinikai Kozpont
- Robert Pottendi
- pen&kk.pte.hu
-30015
- KBC Bank
- Michael Van Gucht
- michael.vangucht&kbc.be
-30016
- Anel-Elektronik AG
- Andrzej Nieduzak
- info&anel-elektronik.de
-30017
- TAG Aviation
- Fred D. Aldana
- faldana&amicharter.com
-30018
- FusionIO
- Michael Zappe
- zapman&fusionio.com
-30019
- Diversified Sales and Service, Inc.
- Ryan Faircloth
- ryan&dss-i.com
-30020
- Silesian University of Technology
- Adam Osuchowski
- adam.osuchowski&polsl.pl
-30021
- Mühlbauer AG
- Auburger Harald
- harald.auburger&muehlbauer.de
-30022
- Guangdong Cirrus Sci-tech Development Co., Ltd
- jie yao
- goon862&163.com
-30023
- ITS-Telecom
- shlomo Tzidkani
- shlomot&its-tel.com
-30024
- In-Tuition Networks Ltd
- Matthew Francis
- mf&in-tuition.net
-30025
- Markus Widmer
- Markus Widmer
- info&markus-widmer.de
-30026
- Blue Caravel
- Joao Violante
- joao.violante&bluecaravel.com
-30027
- Brainfat Networking
- Michael Graves
- admin&brainfat.net
-30028
- Nova CATV, Inc.
- Philip de Vries
- philipd&novacatv.com
-30029
- NENTRON Technology
- HuangYongYao
- HuangYongYao&hotmail.com
-30030
- jamesoff.net
- James Seward
- james-iana&jamesoff.net
-30031
- Penguinlabs LTD
- Laban Mwangi
- lmwangi&penguinlabs.co.ke
-30032
- Beijing Xintong Huaan Technologies Co. Ltd
- Ning Mo
- ning.mo&gmail.com
-30033
- Atabyte
- Jared Bartimus
- Jarediana&theaog.com
-30034
- IIJ Engineering,Inc. (formerly 'Net Care,Inc.')
- Naohiko Sugiyama
- oid&iij-engineering.co.jp
-30035
- Formosa Wireless Systems Corp.
- Joy Cheng
- joy&tw-wireless.com
-30036
- Nomad Digital Ltd
- Paul Herring
- paul.herring&nomadrail.com
-30037
- Company Extrim pro, Ltd.
- Maxim A. Serebrov
- serebrov&xrm.ru
-30038
- ALMDUDLER-LIMONADE A. & S. Klein GmbH & Co KG
- Stefan Neumann
- postmaster&almdudler.com
-30039
- Topdog-software.com
- Andrew Colin Kissa
- andrew&topdog-software.com
-30040
- Tartu University Hospital
- Kati Korm
- kati.korm&kliinikum.ee
-30041
- Universität Augsburg
- Maria Schmaus
- maria.schmaus&its.uni-augsburg.de
-30042
- Dynaco Oy
- Jussi Peltola
- pelzi&pelzi.net
-30043
- Coral Automação Municipal
- Ricardo Bueno
- ricardo&coral.srv.br
-30044
- Walter Dorwin Teague Associates, Inc.
- Daniel Chin
- oid.admin&teague.com
-30045
- davidfuchs.ca
- David Fuchs
- david&davidfuchs.ca
-30046
- rh-tec Business GmbH
- Sebastian Abt
- sa&rh-tec.de
-30047
- WorthTEK
- Jeff Wilkinson
- iana-pen&worthtek.com
-30048
- BNC Technologies Co.,Ltd.
- Lijie Jiang
- jlj&bnc.com.cn
-30049
- Acorn Active Media Foundation
- Joshua King
- josh&acornactivemedia.com
-30050
- Jushri Technologies, Inc
- Zhao Yu
- yu.zhao&jushri.com
-30051
- EDICOM (INTERCAMBIO ELECTRONICO DE DATOS Y COM SL)
- JOSE VILATA
- jvilata&edicom.es
-30052
- Agora SA
- Slawomir Mateuszczyk
- slaw&gazeta.pl
-30053
- MDoffice Inc
- Darshak Shah
- darshak&mdoffice.com
-30054
- Untangle Inc.
- John D. Irwin
- jdi&untangle.com
-30055
- BKK Essanelle
- Daniel Schindler
- daniel.schindler&bkk-essanelle.de
-30056
- Bando Electronic Communication Co., Ltd.
- Yoowon Kim
- ywkim&bandoec.com
-30057
- AIO Systems
- Yossi Appleboum
- yossia&web-silicon.com
-30058
- otaking.se
- Tobias Franzén
- pen&otaking.se
-30059
- Alarislabs
- Ilya Ustinov
- neon&alarislabs.com
-30060
- sevenstax
- Tolga Tuncay
- netadmin&sevenstax.com
-30061
- Imprimerie Nationale
- Martin LAFON
- martin.lafon&saqqarah-international.fr
-30062
- CRIX International
- Terry Zagar
- terry.zagar&ngc.com
-30063
- Kantonsspital Luzern
- Stefan Muri
- stefan.muri&ksl.ch
-30064
- Jens Kaiser
- Jens Kaiser
- jens&kaiser-von-kleve.de
-30065
- Arista Networks, Inc. (formerly 'Arastra, Inc.')
- Bill Fenner
- fenner&aristanetworks.com
-30066
- Swissdotnet
- Steve Jacot-Guillarmod
- steve.jacot-guillarmod&swissdotnet.ch
-30067
- Imprint Global Pty Ltd
- Bruce Haefele
- bruce.haefele&imprintglobal.com
-30068
- Walker Chandiok Grant Thornton
- Benoy George
- bge&gt-india.com
-30069
- Candlelight Software
- Jarvis Cochrane
- jarvis&cochrane.com.au
-30070
- Lufthansa Systems Indonesia
- Ferdinand Neman
- ferdinand.neman&lhsystems.co.id
-30071
- Colby Dillion
- Colby Dillion
- colby.dillion&gmail.com
-30072
- The Government of Brunei Darussalam
- Mr. Foo Jong Ai
- noc&netrust.net
-30073
- WYS S.O.C Corporation.
- SAM Wu
- sam_wu&wys.com.tw
-30074
- Beijing Sharenet Information Technology Co.,Ltd.
- Liu Yongxin
- lyx_sd&163.com
-30075
- Humanomed
- Antonio Batovanja
- Antonio.Batovanja&humanomed.co.at
-30076
- ATILF - Analyse et Traitement Automatique de la Langue Francaise
- Zenaida TUCSNAK
- zina.tucsnak&atilf.fr
-30077
- clanconley.com
- Ron Conley
- ronconley&yahoo.com
-30078
- Novella SatComs Limited
- Ventura Rufino
- vtrufino&novella.co.uk
-30079
- Open Mobile Alliance (OMA)
- Dwight Smith
- dwight.smith&motorola.com
-30080
- Fraport AG
- Dr. Karsten Weronek
- k.weronek&fraport.de
-30081
- Philip Morris USA
- David Brown
- David.C.Brown&pmusa.com
-30082
- David Computer Service
- David Liang
- winstonliang&hotmail.com
-30083
- Intelleca
- Daniel Rothmann
- danier&intelleca.co.za
-30084
- 1dian.com
- Lixin Zhou
- zhou.lixin&gmail.com
-30085
- Knopad Software SRL
- Dragos Novac
- drnovac&gmail.com
-30086
- Arinbe Technologies, Inc.
- Jim Horner
- jhorner&arinbe.com
-30087
- NEU-INFO
- Jun Chen
- rainbow_jun&163.com
-30088
- Wuhan Gewei Electronic Technology Co., Ltd.
- Yuqiang Yao
- yaoyuqiang&gemwei.com
-30089
- Ak Kamal ISCC LLP
- Pavel Karabidi
- pkarabidi&akkamal.kz
-30090
- shaikh
- adil shaikh
- adil.shaikh&gmail.com
-30091
- SeaBright Insurance Company
- Jeff Wilkinson
- iana-pen&sbic.com
-30092
- Zavarovalnica Maribor d.d.
- Uros Kositer
- uros.kositer&zav-mb.si
-30093
- GEMAC Gesellschaft für Mikroelektronikanwendung Chemnitz mbH
- Peter Laux
- laux&gemac-chemnitz.de
-30094
- Beijing US-Sino Diverse Telecom Equipment Co.,Ltd.
- Tony Guan
- guanxu&diverse-telecom.com
-30095
- Kom-Pakt
- Tomasz Gaska
- tomasz.gaska&kompakt.pl
-30096
- dataway GmbH
- Anthony Uk
- hostmaster&dataway.ch
-30097
- Familie Dieter Baerwolf
- Stephan Baerwolf
- matrixstorm&gmx.de
-30098
- BBP AG
- Ian Wilcox
- sysadmin&bbp.ch
-30099
- MorphoTrust USA (formerly 'L-1 Identity Solutioins, Inc.')
- Eric Osterberg
- eosterberg&morphotrust.com
-30100
- greenBytes Inc.
- Paul Zuchowski
- psz&getgreenbytes.com
-30101
- SUNIX Co., Ltd.
- Vincent Thai
- double_thai&sunix.com.tw
-30102
- team Communication Technology Management GmbH
- Philip Kamenarsky
- philip.kamenarsky&te-am.net
-30103
- One Reel
- Jeramey Crawford
- jeramey&onereel.org
-30104
- ERR
- Alar Sing
- alar.sing&err.ee
-30105
- JARS OG
- Johannes Simon
- office&jars.at
-30106
- Board of European Students of Technology
- Peter Verwilst
- info&best.eu.org
-30107
- SEACON TERMINALS LTD
- T CLARKE
- TIM&SEACON.CO.UK
-30108
- Xaragua® Enterprise Corporation
- John Adolphe
- info&xaragua.com
-30109
- CompIT SRL
- Nazzareno Prinzivalli
- developers&compit.it
-30110
- MDEV Desenvolvimento de Software para Celular Ltda
- Ricardo Walter Hildebrand
- ricardo.walter&mdev.com.br
-30111
- Pacific NETwork Imaging, Inc.
- Mike Watters
- mike-iana&nmmg.net
-30112
- Network Solutions Private Limited
- Venkatesan Sivasubramani
- venkatesan.s&netsol.co.in
-30113
- Fornova
- Hai Zaar
- haizaar&gmail.com
-30114
- Reserved
- Updated 2013-05-02
- ---none---
-30115
- Damien Degois
- Damien Degois
- damien&degois.info
-30116
- Jims Group
- Andy Zaugg
- andy.zaugg&jims.net
-30117
- Telefield, Inc.
- Kim, Tae-Woo
- twkim&telefield.com
-30118
- Hostdime.com, INC
- Ray Fernandez
- iana&hostdime.com
-30119
- UNION FENOSA, S.A.
- MANUEL MARTINEZ GARCIA
- mmartinezgarcia&unionfenosa.es
-30120
- Nayatek S.L.
- Chris Jolly
- cjolly&nayatek.com
-30121
- scoyo
- Lukas Loesche
- lukas.loesche&bertelsmann.de
-30122
- MdbNet
- Martin de Bruin
- mdbnet&telkomsa.net
-30123
- MaResCom GmbH
- Steffen Opel
- iana-contact&marescom.net
-30124
- ABAJAX
- Tyrel Newton
- tyrel.newton&fatcatter.com
-30125
- ANDURAS AG
- Sven Anders
- anders&anduras.de
-30126
- LSI JAPAN CO.,LTD.
- Kaoru Kusachi
- tika&lsi-j.co.jp
-30127
- Deft Labs Inc.
- Ryan Nitz
- contact&deftlabs.com
-30128
- Neovest, Inc.
- Aaron Heber
- pen&neovest.com
-30129
- Trask solutions
- Svoboda Tomas
- tsvoboda&trask.cz
-30130
- Hyperwave AG
- Bernhard Heidegger
- pen&hyperwave.com
-30131
- OMA
- Fugaku OMA
- oid&oma.jp
-30132
- ANAC
- Emanuel livramento
- emanuel.livramento&anac.cv
-30133
- iControl Networks
- Chris DeCenzo
- snmpadmin&icontrol.com
-30134
- Bitscape
- Axel Hinrichs
- iana&bitscape.de
-30135
- e-mehlbox.eu
- Holger Librenz
- hostmaster&e-mehlbox.eu
-30136
- Sharif University of Technology
- Mohsen Moeeni
- moeeni&sharif.edu
-30137
- SHANDONG TRANSPARENT COMMUNICATIONS CO,LTD
- Duan Donghua
- duan_6868&sina.com
-30138
- Sparkassen Informatik GmbH & Co. KG
- Klaus-Dieter Joos
- Klaus-Dieter.Joos&sparkassen-informatik.de
-30139
- AMS Engineering Sticht Gmbh
- Schossleitner Robert
- robert.schossleitner&ams-engineering.com
-30140
- Advantech B+B SmartWorx s.r.o. (formerly 'Conel s.r.o.')
- Tomas Paukrt
- tomas_paukrt&advantech-bb.com
-30141
- Landesbetrieb Daten und Information Rheinland-Pfalz
- Holger Weil
- OIDMaster&ldi.rlp.de
-30142
- National Magazine Company
- Alex Williams
- alex&natmags.co.uk
-30143
- DecisionSoft LTD
- James Muscat
- jrem&decisionsoft.com
-30144
- Kepware Technologies
- Tony Paine
- tony.paine&kepware.com
-30145
- Active Media Architects, Inc.
- Andy Lintner
- iana_contact&activema.com
-30146
- Dovetail Storage, Inc.
- Marc S. Hedish
- marc.hedish&dovetailstorage.com
-30147
- Magnus.net
- Jerry Puoplo
- jerryp&magnus.net
-30148
- CrossWorld
- Kevin Weaver
- kevin.weaver&crossworld.org
-30149
- TECNOVA LTDA
- Francisco Javier Valdés
- fvaldes&tecnova.cl
-30150
- Nizhny Tagil Iron & Steel Works
- Eugene Krapivin
- ekrapivin&mail.ru
-30151
- Zimbabwe Revenue Authority
- Allen Saruchera
- asaruchera&zimra.co.zw
-30152
- nLogy s.r.o.
- Kamil Srot
- kamil.srot&nlogy.com
-30153
- Keystone Electronic Solutions
- John Eigelaar
- john&kses.net
-30154
- e-Vox
- Drazen Zoric
- drazen&e-vox.eu
-30155
- OpenBSD Project
- Reyk Floeter
- reyk&openbsd.org
-30156
- The Positive Internet Company Ltd
- Paul Smeddle
- pauls&positive-internet.com
-30157
- Kalopa Research Limited
- Dermot Tynan
- dtynan&kalopa.com
-30158
- EMPRESA BRASILEIRA DE TELECOMUNICACOES S A - EMBRATEL
- Alessandro Fernandes Martins
- amartins&embratel.net.br
-30159
- Scientific Games Racing
- Yulia Nikanorova
- nikanorova&scigames.eu
-30160
- Insomniac Games, Inc.
- Cameron Mac Millan
- casm&insomniacgames.com
-30161
- Orbital Spuds Development, Inc.
- Philip de Vries
- philipd&orbitalspuds.com
-30162
- Farez
- Hadjali Salem
- salem.hadjali&farez.fr
-30163
- Johannes H Laxdal
- Johannes H Laxdal
- johannes&laxdal.org
-30164
- Radium Network Solutions
- Jonathan Coppin
- jcoppin&radiumnetwork.com
-30165
- Derek Belrose
- Derek Belrose
- derekb&realgeeky.com
-30166
- Blue Ridge Networks, Inc.
- Fatih Comlekoglu
- Fatih&BlueRidgeNetworks.com
-30167
- Tavasti Solutions Oy
- Markku Tavasti
- tavasti&tavastisolutions.com
-30168
- dnsee
- andrea denaro
- a.denaro&dnsee.com
-30169
- pragma:s Jan Schlosser
- Jan Schlosser
- jan.schlosser&pragma-s.de
-30170
- Smart Health Solutions Pty Ltd
- Jon Hughes
- jon.hughes&smarthealth.com.au
-30171
- NET SPACE Daniel Kiper
- Daniel Kiper
- dkiper&net-space.pl
-30172
- OpenGoss Corporation
- Ery Lee
- ery.lee&gmail.com
-30173
- Convey Plus TC
- Antuan Avdioukhine
- antuan&gmail.com
-30174
- Deka Works
- Antuan Avdioukhine
- antuan&gmail.com
-30175
- Jeff Knecht
- Jeff Knecht
- jeff_knecht&yahoo.com
-30176
- Hirotoshi Hamada
- Hirotoshi Hamada
- Hirotoshi.Hamada&gmail.com
-30177
- Geodesic Limited
- Atul Chitnis
- atul.chitnis&geodesic.com
-30178
- Martin County School District
- Lucas Parker
- parkerl&martin.k12.fl.us
-30179
- Cervantes S.A.
- Miguel Chavez
- mchavez&seguroscervantes.com
-30180
- PetRays L.P.
- Damon Hopkins
- dhopkins&horizonradiology.com
-30181
- Public Works Government Services Canada
- Roger Carisse
- Roger.Carisse&pwgsc.gc.ca
-30182
- 3G Factory S.A.R.L
- Thierry Barnier
- tbarnier&3g-factory.com
-30183
- KES INC.
- Naomi Miyahara
- miyahara&kin.co.jp
-30184
- Gleim Internet, Inc.
- Larry Gleim
- contact&gleim.com
-30185
- AWEK microdata
- Michael Westermann
- mw&microdata-pos.de
-30186
- TRINAMIC SOFTWARE FACTORY
- BARTOLOME PAYERAS
- tomeu&trinamic.net
-30187
- HCS GmbH
- Stefan Podskubka
- s.podskubka&hcs.at
-30188
- MB-technology GmbH
- Oliver Schäfer
- oliver.schaefer&mbtech-services.com
-30189
- Bravura Solutions (UK) Limited
- David Carter
- dcarter&bravurasolutions.com
-30190
- Solera Networks
- Brian Edginton
- bedginton&soleranetworks.com
-30191
- IPTRADE SA
- Philippe Joliet
- iana&iptrade-networks.com
-30192
- Veraz Networks
- Dutt Kalapatapu
- dutt&veraznet.com
-30193
- ComdataNetwork, Inc.
- Steve Brenner
- sbrenner&comdata.com
-30194
- Egon Frerich
- Egon Frerich
- egon&frerich.eu
-30195
- Carlson Wireless Technologies, Inc.
- Chris Anderson
- canderson&carlsonwireless.com
-30196
- Smith Travel Research
- Denis Caron
- NetAdmin&smithtravelresearch.com
-30197
- kestan.co.uk
- Jonathan Leach
- jrleach&kestan.eclipse.co.uk
-30198
- Coherent Solutions
- Maksim Belov
- maxb&coherentsolutions.com
-30199
- Abaca Technology Corporation
- Peter Hsu
- phsu&abaca.com
-30200
- ePrize LLC
- Sean Millichamp
- sean.millichamp&eprize.com
-30201
- Metaverse Republic
- Nicholas Chase
- nchase&earthlink.net
-30202
- HCE Engineering
- Mr. Armando Genovese
- info&hcedesign.it
-30203
- Forschungsverbund Berlin e.V.
- Rudolf Bender
- bender&fv-berlin.de
-30204
- Faculty of Physics and Applied Informatics, University of Lodz
- Marek Garbaczewski
- tech&phys.uni.lodz.pl
-30205
- Sirrix AG security technologies
- Alexander Kasper
- a.kasper&sirrix.com
-30206
- Invisible Software Ltd
- Charles Lecklider
- iana-pen&invis.net
-30207
- Level 3 Solutions, LLC
- Matthew Brothers
- support&l3wv.com
-30208
- Firecode Soluções em Tecnologia LTDA
- Leandro Cavalcante Damascena
- leandro.damascena&gmail.com
-30209
- Universita' Ca' Foscari Venezia
- Giacomini Giuseppe
- gigiacom&unive.it
-30210
- Logalty Servicios de Tercero de Confianza, S.L. (formerly 'Postaltrust, S.L.')
- Palmira Aldeguer
- Palmira.Aldeguer&garrigues.com
-30211
- THE CHUNICHI SHIMBUN CO., LTD.
- Norihito Kawashima
- msren&chunichi.co.jp
-30212
- ON telecomm
- ONtel MIS
- root&ontel.com.tw
-30213
- Vertex Pharmaceuticals
- Robert Bodajla
- robert_bodajla&vrtx.com
-30214
- CVSDude PTY LTD
- Nikolai Lusan
- servers&cvsdude.com
-30215
- Serenity Information Systems
- Raymond Chan
- raymond.c.p.chan&gmail.com
-30216
- Azolia
- francois COLOMBIER
- francois&azolia.fr
-30217
- Osinet S.A.
- Matias G. Lambert
- matiaslambert&osinet.com.ar
-30218
- AltaVoz S.A.
- Robert Hilliard
- robert&altavoz.net
-30219
- Verivue, Inc
- Frederick Slama
- fslama&verivue.com
-30220
- Wavestream Corp
- Keith King
- keith&wavestream.com
-30221
- UnboundID Corp
- UnboundID OID Administrator
- oid&unboundid.com
-30222
- Home Credit Finance Ukraine
- Stesenko Ed
- ed&agrobank.com.ua
-30223
- OOe Gebietskrankenkasse
- Guenther Rasch
- guenther.rasch&ooegkk.at
-30224
- NCC Hoorn
- Niek Last
- niek.last&ncchoorn.nl
-30225
- Cotendo
- David Drai
- davidddrai&gmail.com
-30226
- Mairie de Besançon - France
- Alain MERCIER
- informatique_systeme&besancon.fr
-30227
- Channelot Ltd.
- Danny Sade
- danny&channelot.com
-30228
- Visipia
- Jesper L. Nielsen
- jln&visipia.com
-30229
- debian-community.org
- Andreas Putzo
- andreas&putzo.net
-30230
- dimedis GmbH
- Jörn Reder
- snmp.pen&dimedis.de
-30231
- morphism
- Markus Pfeiffer
- iana-registry&morphism.de
-30232
- www.themaine.net
- Bruce Higgins
- bruce&themaine.net
-30233
- John Muir Health
- William J Halverson
- William.Halverson&JohnMuirHealth.com
-30234
- NBT Infra
- Adalberto Branco Araujo
- adalberto&nbtinfra.com
-30235
- Gordon & Louis Technologies
- Matt Giacomini
- mgiacomi&gltech.com
-30236
- Desktone Inc.
- Andrew Hobgood
- andrew.hobgood&desktone.com
-30237
- EteVan Technologies co., Ltd.
- Zhong GuangLei
- eternalvangard&gmail.com
-30238
- XandMail
- Jean-Michel Dubois
- dubois&xandmail.com
-30239
- Archisys SARL
- FLORENT CARRE
- contact&archisys.fr
-30240
- Vivesta
- Pascal van Buijtene
- pascal&vivesta.nl
-30241
- Jeffrey Ricker LLC
- Jeffrey Ricker
- info&jeffreyricker.com
-30242
- Info Consultoria e Informatica Ltda.
- Jocimar Soto de Gois
- jocimar&infoconsultoria.com.br
-30243
- network.co.at GmbH
- Peter Zednik
- peter.zednik&network.co.at
-30244
- Dazzle
- Vesa Auvinen
- vesa.auvinen&dazzle.fi
-30245
- The Washington Post Company
- Paul Bailey
- corpitadmin&washpost.com
-30246
- Diventus GmbH
- Hans-Juergen Rux
- hru&diventus.com
-30247
- Coopers Peele (France) SARL
- Olivier Pichon
- op&coopers-peele.com
-30248
- Webkuteer
- Srinivas Peesapaty
- info&webkuteer.com
-30249
- marek.priv.at
- Philipp Marek
- philipp&marek.priv.at
-30250
- Telecom design (France)
- Didier FILHOL
- df&telecom-design.com
-30251
- CampusLAN Software GmbH
- Tobias Federl
- tobias.federl&campuslan.de
-30252
- Jetair N.V.
- Filip Hosten
- filip_hosten&jetair.be
-30253
- Certisign Certificadora Digital S.A.
- Anderson Farias
- afarias&certisign.com.br
-30254
- The Main Street America Group
- Tammy Jutras
- tammy.jutras&msagroup.com
-30255
- County of San Bernardino
- Cameron Brice
- cbrice&isd.sbcounty.gov
-30256
- Telecommunication Technologies Ltd.
- Kaplyar Eduard
- eddy&teletec.com.ua
-30257
- Intrcomm Technology
- Trey Tabner
- trey&intrcomm.net
-30258
- Xalyo Systems
- Andre Wiesel
- awiesel&xalyo.com
-30259
- LWsystems GmbH & Co. KG
- Martin Werthmoeller
- info&lw-systems.de
-30260
- Zenitel Netherlands BV
- Niek Last
- niek.last&zenitel.com
-30261
- HigherGround, Inc.
- Samuel Smith
- ssmith&highergroundinc.com
-30262
- Cacholong
- Matthijs Mohlmann
- matthijs&cacholong.nl
-30263
- Klopf
- Michael Klopf
- mklopf&gmx.at
-30264
- Axiometric, LLC
- David Albert
- david_albert&axiometric.com
-30265
- Hinfox Bt.
- Babcsány Péter
- hinfox&hinfox.com
-30266
- Inca Digital Printers ltd
- Nick Trotter
- nick.trotter&incadigital.com
-30267
- sofinco
- christophe yayon
- cyayon&sofinco.fr
-30268
- PENN Warehousing & Distribution, Inc.
- Don Hills
- Don.Hills&pennci.com
-30269
- via donau Österreichische Wasserstraßengesellschaft mbH.
- Paul Stiedl
- paul.stiedl&via-donau.org
-30270
- Microdata Tecnologia Ltda
- Franco Motta
- franco&microdata.com.br
-30271
- Netsense
- Johan Henselmans
- johan&netsense.nl
-30272
- Cache IQ, Inc (formerly 'Storspeed Inc')
- Kris Meier
- kmeier&CacheIQ.com
-30273
- Sairyx
- Arlen Christian Mart Cuss
- celtic&sairyx.org
-30274
- Greenfossil Pte Ltd
- Cheong Chung Onn
- chungonn&greenfossil.com
-30275
- TeraCortex
- Christian Hollstein
- chollstein&teracortex.com
-30276
- OEAMTC
- Peter Burian
- peter.burian&oeamtc.at
-30277
- Software Cellular Network Ltd
- Jonathan Oddy
- jonathan.oddy&truphone.com
-30278
- Peykasa Messageware Co
- Fatememeh Imani Mehr
- imanimehr&peykasa.com
-30279
- Gladserv Limited
- Brett Sheffield
- brett&gladserv.com
-30280
- delta4 business solutions gmbh
- Thomas Wopienka
- wopienka&delta4.at
-30281
- AussieHQ Pty Ltd
- Tim Sharpe
- t.sharpe&aussiehq.com.au
-30282
- Hammond Street Developments Pty. Ltd.
- Peter Sawyer
- peter&hsd.com.au
-30283
- GRADIOR GROUP a.s.
- Martin Skrasek
- it&gradior.cz
-30284
- Intersoft
- SeungWon Son
- sonsw&itsoft.co.kr
-30285
- TMT SYSTEM
- Tadeusz Lesiecki
- lesiecki&tmtsystem.pl
-30286
- Tridymedia
- Guillermo Farias Diaz
- gfarias&tridymedia.cl
-30287
- Agito Networks Inc.
- Sandeep Rangarajan
- sandeep&agitonetworks.com
-30288
- Alog Datacenters do Brasil S/A
- Raphael Costa
- raphael.costa&alog.com.br
-30289
- Brian W Bush
- Brian W Bush
- b.w.bush&acm.org
-30290
- Vangenechten Packaging
- Wouter D'Haeseleer
- wdhaeseleer&vangenechten.com
-30291
- Sujansky & Associates, LLC
- Walter Sujansky
- wsujansky&sujansky.com
-30292
- Monit24.pl
- Tom Kuzniar
- tomasz.kuzniar&monit24.pl
-30293
- Collège Dunoyer de Segonzac
- Charlemagne Fabrice
- flash_math&yahoo.fr
-30294
- InnoTrans Communications Inc.
- Betty Juan
- snmp&inno-trans.com
-30295
- I2Net Christian Nordmann
- Christian Nordmann
- nordmann&i2net.de
-30296
- Innovation & Support Centre
- Graham Watkins
- pki&isc.gov.om
-30297
- The Clockwork Lab
- Alan Kligman
- alan.kligman&gmail.com
-30298
- Industrial Control and Communication Limited
- Steve Stean
- steve.stean&industrialcontrol.co.uk
-30299
- SEP Bulgaria JSC
- Svetlozar Grancharov
- sgrancharov&sepbulgaria.com
-30300
- Internetworking & Broadband Consulting Co., Ltd.
- Hiroyuki Kato
- iana-pen&ibc21.co.jp
-30301
- Invada Records Pty Ltd
- Fraser Stuart
- oid&arkhostings.com
-30302
- NuSuara Technologies Sdn Bhd
- Liu Wai Kat
- wkliu&nusuara.com
-30303
- KomSens
- Leo Korbee
- Leo.Korbee&xs4all.nl
-30304
- CHAMBRE D'AGRICULTURE DU BAS-RHIN
- Zhiqiang CHEN
- chen&bas-rhin.chambagri.fr
-30305
- ITIS Holdings PLC
- Shane Nash
- servicedesk&itisholdings.com
-30306
- SATEL Oy
- Samuli Aura
- standards.support&satel.com
-30307
- Invidi Technologies
- Lloyd Peterson
- lloyd&invidi.com
-30308
- Clearspring Technologies, Inc.
- William Valadez
- william&clearspring.com
-30309
- Svenska Linuxföreningen
- Jens Hjalmarsson
- jens&se.linux.org
-30310
- Remigio Conti
- Remigio Conti
- ianamail&shareskills.org
-30311
- Cartiza Networks
- James J. Halpin
- jim.halpin&cartizanetworks.com
-30312
- educagri
- khalid.farrahe
- khalid.farrahe&educagri.fr
-30313
- Indanet AG
- Fabian Huegle
- fabian.huegle&indanet.de
-30314
- Seltec Computers Ltd.
- Jonathan deBoer
- jonathan&seltec.ab.ca
-30315
- Papierfabrik Palm GmbH & Co. KG
- Walter Thum
- w.thum&papierfabrik-palm.de
-30316
- Unassigned
- Removed 2011-01-20
- ---none---
-30317
- First Sensor Technology GmbH
- Vladimir Cvetic
- vladimir.cvetic&first-sensor.com
-30318
- GSoft BG
- Plamen Dimitroff
- plamen&gsoftbg.com
-30319
- SmartPropertyManager Ltd
- Paolo Fragapa
- pfragapa&yahoo.co.uk
-30320
- Exeltech
- Raymond Sgroi
- ray&exeltech.com
-30321
- Unison Technologies
- Igor Balk
- ibalk&unison.org
-30322
- International Broadband Electric Communications, Inc. (IBEC)
- Cole Moody
- cole.moody&ibec.net
-30323
- Eigen LLC
- Troy DesBiens
- troy.desbiens&eigen.com
-30324
- Interface Masters, Inc.
- Ben Askarinam
- sales&interfacemasters.com
-30325
- Grin AB
- Peter Björklund
- peter.bjorklund&grin.se
-30326
- ShoreGroup, Inc.
- David Lovy
- dlovy&shoregroup.com
-30327
- Metro Servers Inc.
- Syan Selvarajah
- syan&metroservers.com
-30328
- Travis Hein
- Travis Hein
- info&travnet.org
-30329
- CONRAC GmbH
- Eberhard Kurz
- e.kurz&conrac.de
-30330
- Atom Consultants Co.,Ltd.
- Tomoyasu Fujii
- dev-reg&atom24.com
-30331
- Octant Informatique
- Alain Ganuchaud
- support&octant-fr.com
-30332
- eXXcellent solutions
- Martin Renner
- m.renner&exxcellent.de
-30333
- GRIPS - Gillen & Partner
- Oliver Loch
- o.loch&grips-net.de
-30334
- Korscient Consulting Limited
- Luke Roberts
- support&korscient.com
-30335
- DXI Networks
- David Bell
- david.bell&dxi.net
-30336
- Eirteic Consulting Ltd
- Jan Wiktorowicz
- jan.wiktorowicz&eirteic.com
-30337
- Luceat Spa
- Gabriele Bettoni
- info&luceat.it
-30338
- Smart421
- Technical Services
- technicalservices&smart421.com
-30339
- National Center of Digital Signature Authentication - Ministry of Information and Communications of Viet Nam
- Dr. Dao Dinh Kha - Director
- dinhkha&mic.gov.vn
-30340
- Moderntimes
- Jimmy Joong
- mt&moderntimes.com.tw
-30341
- Deltacast
- Olivier Antoine
- software-management&deltacast.tv
-30342
- Pellucid Consulting LLC
- James Strain
- j.strain&pellucidllc.com
-30343
- Middle East Education through Technology
- Max Goldman
- admin&meet.mit.edu
-30344
- Possimo Technologies Sdn Bhd
- Mohd Azlan Kenali
- azlan&possimo.com
-30345
- TMS, LLC
- Ivan Kovalenko
- kovalenko&tms.ru
-30346
- IT & Design Solutions GmbH
- Moritz Kobel
- moritz.kobel&itds.ch
-30347
- Bekatul Port
- Danang Wijanarko
- danang.wijanarko&gmail.com
-30348
- W-I-E-S-E-R.net
- Matthias Wieser
- matthias.wieser&hiasl.net
-30349
- Kvant-Efir
- Sergey Pylypchuk
- digital&kvantefir.com
-30350
- Caucho Technology, Inc.
- Nam Nguyen
- nam&caucho.com
-30351
- Philip Gladstone
- Philip Gladstone
- philip-iana&gladstonefamily.net
-30352
- sneudert.de
- Sebastian Neudert
- info&sneudert.de
-30353
- Symmetria Hungary Ltd.
- Gabor Glavak
- gabor.glavak&symmetria.hu
-30354
- EPiQ Life Science AB
- Mikael Fredriksson
- info&epiq.se
-30355
- Digital Research Services LLC
- Steven Smith
- admin&time-stamp.net
-30356
- Domeo BV
- Jeroen Veldhorst
- j.h.veldhorst&avisi.nl
-30357
- Unix-network
- Christian Schiffler
- c.schiffler&unix-network.de
-30358
- Pro:Atria Ltd
- Tim Adams
- sales&proatria.com
-30359
- Tango Networks
- Patty Landgren
- pattylandgren&tango-networks.com
-30360
- Trustwave Holdings, Inc.
- OIDAdmin
- OIDAdmin&trustwave.com
-30361
- Triple Play Communications
- Keith Riffee
- keith.riffee&3playcomm.com
-30362
- Brandwidth
- Bo Miller
- bo&morebrandwidth.com
-30363
- N.V. Devoteam Telecom & Media
- Frank Verelst
- frank.verelst&devoteam.com
-30364
- NewMedia Publications Ltd
- Ronald A Porter
- info&newmediaonline.co.uk
-30365
- INEO SUEZ Group - INEO SYSTRANS
- Luis Lopez
- luis.lopez&ineo.com
-30366
- M-Tech
- Byung-kwon, Lee
- pungss&m-tech.co.kr
-30367
- Dragonfly Technologies Pty Ltd
- Branko Ninkovic
- bninkovic&dragonflytechnologies.com.au
-30368
- Whitewall Networks
- Saravana Krishnamurthy
- info&whitewallnetworks.com
-30369
- Grupa Lotos S.A.
- Marek Paluch
- marek.paluch&grupalotos.pl
-30370
- GIHAR LTD
- FESCHENKO VLADIMIR IVANOVICH
- vladimir-its&yandex.ru
-30371
- Financial Link Sdn Bhd
- Ho Sing Guan
- sgho&financial-link.com.my
-30372
- SANBlaze Technology, Inc.
- Steve Looby
- slooby&sanblaze.com
-30373
- Wallix
- Vincent Bernat
- vbernat&wallix.com
-30374
- Opencode Systems Ltd
- Krum Boychev
- krum.boychev&opencode.com
-30375
- Innovature Labs
- Prasanth Prabhakaran
- sysadmin&innovaturelabs.com
-30376
- Outright Solutions
- A.R. van Grieken
- info&outrightsolutions.nl
-30377
- Baseblack Ltd
- John Kozak
- jk&baseblack.com
-30378
- True Corporation PCL
- Natapope Sarakhette
- natapope_sar&truecorp.co.th
-30379
- Southcoast Health System
- Dave Burke
- burked&southcoast.org
-30380
- Aggienerds
- William Reading
- bill&aggienerds.org
-30381
- FRIENDSHIP-SYSTEMS
- Konrad Lorentz
- lorentz&FRIENDSHIP-SYSTEMS.com
-30382
- Kristoff Kiefer
- Kristoff Kiefer
- kiewie&kiewie.de
-30383
- ViaCom Informatics Ltd.
- Sandor Jager
- jager.sandor&viacomkft.hu
-30384
- Interjato Telecom
- Eduardo Andrez de Oliveira
- eduardo.andrez&gmail.com
-30385
- CAVOK Software Systems GmbH
- Jos Hartman
- jos.hartman&cavok.eu.com
-30386
- Software Service Christoph Bach
- Christoph Bach
- info&project.simplebill.de
-30387
- Singlesnet.com
- Matthew Von-Maszewski
- matthew&thehive.com
-30388
- nobisCum
- Bernhard Czech
- bcz&nobiscum.de
-30389
- Hangzhou Digicast Technology Co., Ltd.
- Song Jingtao
- sjt&digicast.cn
-30390
- City of Garden Grove
- Keith Winston
- keithw&ci.garden-grove.ca.us
-30391
- Alex Potter Consulting
- Alex Potter
- alex&ap-consulting.co.uk
-30392
- Globolog GmbH
- Reinhard Mauer
- reinhard.mauer&globolog.com
-30393
- Cibenix
- David Johnston
- david.johnston&cibenix.com
-30394
- Kyoto University
- Yasuo Okabe
- oid-admin&kuins.kyoto-u.ac.jp
-30395
- Alhambra-Eidos
- Consuelo Iglesias Pérez
- consuelo.iglesias&a-e.es
-30396
- Cambridge Consultants
- Philip Morris
- Philip.Morris&CambridgeConsultants.com
-30397
- TELERAD SA
- Patrice Mariotte
- p.mariotte&telerad.fr
-30398
- Leader Technologies
- Benjamin Gordon
- ben&leadertech.com
-30399
- LogiSync LLC
- Greg Saltis
- gsaltis&logisync.com
-30400
- Red Condor, Inc.
- Adam Rosenstein
- adam&redcondor.com
-30401
- Fedora Project
- Fedora Admin
- admin&fedoraproject.org
-30402
- Halsted Surgery
- Mike Slowey
- halstedm&halstedsurgery.com
-30403
- Secure Computing Networks
- Eric F Crist
- ecrist&secure-computing.net
-30404
- never.no AS
- Andreas Dahl
- andread&never.no
-30405
- ClaimLynx, Inc
- Eric F Crist
- ecrist&claimlynx.com
-30406
- Aubesoft Inc.
- Denis Benoit
- denis.benoit&aubesoft.com
-30407
- CRISALID SARL
- PIERRE YAGER
- pierre&crisalid.com
-30408
- Ulrich Boddenberg Informatique
- Ulrich B. Boddenberg
- ulrich&boddenberg.de
-30409
- FTR Pty Ltd
- Henry Hickling
- hhickling&fortherecord.com
-30410
- Jozef Hatala
- Jozef Hatala
- jh-oid&skrt.org
-30411
- Parker Hannifin Corp
- Christopher J. Nappi
- cnappi&parker.com
-30412
- Aeroflex Incorporated
- David Hagood
- iana_contact&aeroflex.com
-30413
- Channel Islands Stock Exchange LBG
- Donald Fraser
- d.fraser&cisx.com
-30414
- OBJECT Sistemas Multimidia Ltda
- Wagner Correa Ramos
- wagner&object.com.br
-30415
- PANSKY TECHOLOGY CORPORATION CHENGDU GROUP
- QI ZHANG
- zhangqi&pansky.com.cn
-30416
- Latenter
- Marco Poli
- oid-admin&latenter.com
-30417
- RLG Informatica
- Arthur Beltrão
- arthur.beltrao&rlginformatica.com.br
-30418
- Jewelry Television
- Raj Ramanathan
- raj.ramanathan&jtv.com
-30419
- Novgorod State University
- Sergey Popov
- Sergey.Popov&novsu.ru
-30420
- Softex Insoporated
- Apurva Bhansali
- apurva_bhansali&softexinc.com
-30421
- NAVICON A/S
- Thomas Borg Salling
- support&navicon.dk
-30422
- Fatwire Corporation
- Francisco Braganza
- braganza&fatwire.com
-30423
- Centene Corporation
- Tony Kuo
- tkuo&centene.com
-30424
- Oak Scientific, LLC
- Mark Ping
- mping&oakscientific.com
-30425
- Innovative Communications Engineering
- Steve Chinatti
- chinatti&ice-llc.com
-30426
- Universal Solutions Group, Inc.
- Brian Salisbury
- brian.salisbury&usgct.com
-30427
- 2inches
- chuck sumner
- iana&a.2inches.com
-30428
- Telekom Research & Development Sdn Bhd
- Mohammad Harris Mokhtar
- harris&tmrnd.com.my
-30429
- Amnafzar Co.
- AliAsghar Hedayati
- info&amnafzar.com
-30430
- carnero.ca
- Carlos A. Carnero Delgado
- carlos&carnero.ca
-30431
- Telvent Environment, S.A.
- Carlos Macias Jimenez
- carlos.macias&telvent.abengoa.com
-30432
- Open System Solutions (UK) Limited
- Steve Brown
- sb&opensystemsolutions.co.uk
-30433
- Dah Sing Life Assurance Company Limited
- Timothy Poon
- timothypoon&dahsing.com
-30434
- Satelcom Oy
- Leif Saarela
- leif.saarela&satelcom.fi
-30435
- Dalarna University
- Anders Nordahl
- ano&du.se
-30436
- Aralia Systems Ltd.
- Marcelo Grossi
- administrator&aralia.co.uk
-30437
- Fortna, Inc
- Mike Sherman
- mikesherman&fortna.com
-30438
- capecom GbR
- Stefan Weber
- sweber&chello.at
-30439
- layerX Technologies
- Larry Underwood
- lunderwood&layerxtech.com
-30440
- PROXIFLEX
- Jean-Yves Linet
- contact&proxiflex.fr
-30441
- MATRA Systems (UK)
- Matthew Dodkins
- matthew.dodkins&matra.co.uk
-30442
- Adaptive Spectrum and Signal Alignment, Inc.
- Marc Goldburg
- mgoldburg&assia-inc.com
-30443
- Schooner Information Technology, Inc.
- Randy S Balaban
- rsb&2BitProgrammers.com
-30444
- 2-Bit Programmers
- Randy S Balaban
- rsb&2BitProgrammers.com
-30445
- Genie Technology Management
- Robert Cebollero
- rob&genietm.com
-30446
- Mobile Technika, Inc.
- Shinichiro Iwatsuru
- tsuru&mobiletechnika.jp
-30447
- Pete Gooch
- Pete Gooch
- pete.gooch&gmail.com
-30448
- Sörlöv Holding
- Daniel Sörlöv
- daniel&sorlov.com
-30449
- Institute of Psychology and Pedagogics of Development
- Konstantin Kuzvesov
- root&ippd.ru
-30450
- Teleglobe Canada ULC
- Alex Fournier
- alex.fournier&vsnlinternational.com
-30451
- CPEGM
- Cyril Genisson
- cyril.genisson&gmail.com
-30452
- Xoft, Inc.
- Bruce Director
- bdirector&xoftinc.com
-30453
- Kannel Software Foundation
- Stipe Tolj
- stolj&kannel.org
-30454
- Santa Barbara City College
- Devin Neiman
- Neiman&sbcc.edu
-30455
- Wm Morrison Supermarkets PLC
- Dr Tim Nicholls
- viralto&gmail.com
-30456
- sugat.com.np
- Sugat Sikrikar
- me&sugat.com.np
-30457
- CYGNET Technology BV
- Rik van der Kemp
- rik&cygnet-ecm.com
-30458
- Thomas Duclos Software
- Thomas Duclos
- thomas579&centurytel.net
-30459
- EchoStorm Worldwide, LLC
- James Chamberlain
- jchamberlain&echostorm.net
-30460
- Perfomix Technologies Intl(P) Ltd
- Sony Lazarus
- sonylazarus&gmail.com
-30461
- Radley Network Technologies CC
- Joon Radley
- joon&radleys.co.za
-30462
- Freifunk Halle
- Steven Barth
- webmaster&freifunk-halle.net
-30463
- Supridatta Teleinformatica Ltda.
- Clovis Wichoski
- clovis&supridatta.com.br
-30464
- Tecnosistemas Inc.
- Douglas Villalobos Viales
- dvillalobos&masbanking.com
-30465
- Visage Mobile, Inc
- Jamuel P. Starkey
- jstarkey&visagemobile.com
-30466
- Privantis SA
- Yves Genevier
- ygenevier&gmail.com
-30467
- Carlson Wagonlit Travel
- James Whitlow
- jwhitlow&carlsonwagonlit.com
-30468
- Solid Technologies, Inc
- Byung-seok Lee
- bslee&st.co.kr
-30469
- Synacor Inc
- Geoff Franks
- monitor&synacor.com
-30470
- CyberTrails
- Shawn Ostapuk
- shawn.ostapuk&cybertrails.net
-30471
- TwoPiRadian Infotech Private Limited
- Indrajit Raychaudhuri
- indrajit&2pirad.com
-30472
- CityLink, Ltd.
- Vadim Ponomarev
- vadim&drevlanka.ru
-30473
- Steropes Technologies Limited
- Timothy Poon
- timothy.poon&steropes.com
-30474
- CJSC "InCore"
- Dennis Agafonov
- support&incore.ru
-30475
- Intra2net AG
- Thomas Jarosch
- iana-pen&intra2net.com
-30476
- BIS
- Drav Sloan
- dsloan&bis-internet.co.uk
-30477
- gig mbh berlin
- Frank Gruber
- support&gig-mbh.de
-30478
- Enventis
- Chris Halverson
- chalverson&enventis.com
-30479
- GlobeStar Systems Inc.
- Jason Wilson
- jwilson&globestarsystems.com
-30480
- DotLibre
- Association DotLibre - PM Alamy
- iana&dotlibre.info
-30481
- HySky Communications
- Michael Boone
- michael_boone&hysky.com
-30482
- Omnes Loquantur Limited
- Neil Davies
- hostmaster&omlq.co.uk
-30483
- Virtual Switching Consultancy Limited
- Pong Yip Nam
- yn.pong&vsc.com.hk
-30484
- OPTeam SA
- Tomasz Trojanowski
- tomek&uninet.com.pl
-30485
- RTC-Siberia Co., Ltd.
- Vladimir Veretennikov
- otir&rustelcom.ru
-30486
- thomas kobienia
- thomas kobienia
- tk_oid&mamps.de
-30487
- Hydra Labs
- Jacob Feisley
- jacob&darkhorsenetworks.com
-30488
- Boardlink Group Limited
- Mr Michael Parton
- mikeparton&hawarden.co.uk
-30489
- FAMIPOW
- Francois BAYART
- francois&famipow.be
-30490
- Dtella Labs
- Jacob Feisley
- admins&dtella.org
-30491
- Helping Hand PC Services & Networking, Inc.
- Brian Porter
- brian&helpinghandpc.com
-30492
- Hypertek Inc.
- Dr. Martin J. Burns
- burnsmarty&aol.com
-30493
- Digitek spa
- Matteo Fortini
- m.fortini&selcomgroup.com
-30494
- Microlink Telecom
- Marcio Pinheiro Gomes
- iana&microlink.com.br
-30495
- RoundTrip Systems
- Don Mileff
- don&roundtripsystems.com
-30496
- E-Smart Systems d.o.o.
- Miljan Djakonovic
- miljan.djakonovic&e-smartsys.com
-30497
- Beijing EaseSea Interman Technology Co.,
- Xiaoqiang Ye
- yexq&eastseagroup.com
-30498
- AeroScout
- Amir Vahkover
- amir.vashkover&aeroscout.com
-30499
- Design 2000 Pvt Ltd
- Hussain Shafee
- shafee&design2000.com.mv
-30500
- Forca A/S
- Lasse Berget
- lab&forca.dk
-30501
- Institute for Networking Technology
- Kirill A. Ivanov
- kir&int.spb.ru
-30502
- The Norwegian Polar Institute
- Bjørn Hjelle
- bjorn.hjelle&npolar.no
-30503
- Bastart
- Axel Gembe
- ago&bastart.eu.org
-30504
- Punctual Software Inc.
- Florin Seceleanu
- florin.seceleanu&punctualsoftware.com
-30505
- Swiss Life Deutschland Operations GmbH
- Mark Kaus
- oid-admin&swisslife.de
-30506
- ooma Inc.
- Samir Sharma
- ssharma&ooma.com
-30507
- Extreme Copper, Incorporated
- Robert Nino
- rob&extremecopper.com
-30508
- Medavie Blue Cross
- Vincent Power
- vince.power&medavie.bluecross.ca
-30509
- Shenzhen Leagsoft Technology Co., Ltd..
- Fang Yuwei
- fangyw&leagsoft.com
-30510
- Bestwiz Softwarw Development (Dalian) Co.,Ltd.
- Li Shouming
- lsming&dl.cn
-30511
- Arts Alliance Media
- Samuel Cozannet
- samuel.cozannet&artsalliancemedia.com
-30512
- ATEIS
- Robert Seassau
- r.seassau&ateis.com
-30513
- Ford Motor Company
- Jeff Coplai
- jcoplai&ford.com
-30514
- Lavínia Tavares
- Lavinia Tavares
- laviniatavares&yahoo.com
-30515
- m7 evolution
- Sebastian Schneider
- sebastian.schneider&m7-evolution.com
-30516
- oclane
- didier Belot
- didier.belot&oclane.com
-30517
- Zoot Enterprises, Inc.
- Justin Buhler
- justin.buhler&zootweb.com
-30518
- CoolIT Systems Inc.
- Mike Holden
- mike.holden&coolitsystems.com
-30519
- Wieldim
- Brandon Dimcheff
- bdimchef-iana&wieldim.com
-30520
- IAESTE Austria
- Axel Groß
- axel.anai.gross&iaeste.at
-30521
- Collab
- Pedro Gomes
- pedro.gomes&collab.pt
-30522
- kludge.ca
- Cory Oldford
- oldfordroad&gmail.com
-30523
- Taichung Veterans General Hospital
- Ang-Hsuan Lin
- ahlin&vghtc.gov.tw
-30524
- Intersoft Electronics
- Erik Moons
- erik.moons&intersoft-electronics.com
-30525
- H&S Ventures, LLC
- Network Operations Center
- noc&hsventures.org
-30526
- Astec Solutions
- Mario Gonzalez
- mgonzalez&astec.com.mx
-30527
- Mochi Media, Inc.
- Matthew Dempsky
- matthew&mochimedia.com
-30528
- V.Saint-Denis
- Vincent Saint-Denis
- vincent&saint-denis.hd.free.fr
-30529
- Vkernel Corporation
- Beverley Reynolds
- snmp&vkernel.com
-30530
- INTI Electronica e Informatica
- Gustavo Alessandrini
- gusi&inti.gov.ar
-30531
- LEANDRO DA SILVA MENDES INFORMATICA ME
- Leandro da Silva Mendes
- theflockers&gmail.com
-30532
- Alox
- YoungJu, Park
- starp&alox.com
-30533
- DASANCNS
- Jeong Chan, Lee(DASANCNS)
- jclee&dasancns.com
-30534
- Tajinc.ORG LLC
- Tim Spriggs
- contact&tajinc.org
-30535
- Alphasoft GmbH
- Axel Freimuth
- info&alphasoft.biz
-30536
- BMTI
- Yvon Jacquelin
- contact&bmti.fr
-30537
- Welsh Blood Service
- Daniel Rainbird
- daniel.rainbird&wbs.wales.nhs.uk
-30538
- webLyzard
- Arno Scharl
- scharl&weblyzard.com
-30539
- Sappi Fine Paper
- Matt Oberpriller
- matt.oberpriller&sappi.com
-30540
- Zymeworks Inc.
- Luke Cyca
- luke&zymeworks.com
-30541
- Exacq Technologies, Inc.
- Matthew M. DeLoera
- mdeloera&exacq.com
-30542
- Komes Co. Ltd.
- Dr. İrfan Acar
- irfan.acar&komes.com.tr
-30543
- QuartzNet
- Alexander Boulette
- alexanderfb&gmail.com
-30544
- iTAS Technology Corp.
- Charles Liu
- charles.liu&itas.com.tw
-30545
- Akademia Podlaska
- Artur Krycki
- kryckia&ap.siedlce.pl
-30546
- JLA Ltd
- Dave Atkin
- datkin&jla.com
-30547
- Institute of Physics of the ASCR, v. v. i.
- Michael Kratky
- kratky&fzu.cz
-30548
- Alberta Blue Cross
- Wade Fasek
- wfasek&ab.bluecross.ca
-30549
- Merli dr. Clizio Consultant
- Clizio Merli
- clizio&clizio.com
-30550
- Konexxo GmbH
- Sven Frommholz
- hostmaster&konexxo.de
-30551
- Transtruct Foundation
- Noah Fontes
- nfontes&transtruct.org
-30552
- MicroBlade, Inc.
- Dan Skolnik
- Dan.Skolnik&MicroBlade.us
-30553
- LincWare
- Eric Lenio
- eric&lincware.com
-30554
- Mitsubishi Space Software Co.,Ltd.
- Mitsuhiro Sambe
- sambe&mss.co.jp
-30555
- mikhailelias.net
- Mikhail Elias
- iana&mikhailelias.net
-30556
- King Faisal University
- Hakeem Sadiq
- Sadiq&Kfu.Edu.Sa
-30557
- Sapphire Computer Systems (UK) Ltd
- Andrew Johnson
- andrew.johnson&sappsys.co.uk
-30558
- Ticketcorner AG
- Daniel von Allmen
- daniel.vonallmen&ticketcorner.com
-30559
- Krüger Network Training & Consulting
- Samuel Krüger
- info&kr-network.de
-30560
- Pumpkin 3D
- Administrator
- admin&pumpkin3d.com
-30561
- expact.it
- Raimund Sacherer
- raimund.sacherer&gmail.com
-30562
- Universidad de Montemorelos, A. C.
- J. David Mendoza
- jdmendoza&um.edu.mx
-30563
- Blackwave Inc.
- Jeremy Decker
- support&blackwave.tv
-30564
- Algarroba
- Luis Coll
- lncoll&algarroba.com
-30565
- GTS Nextra
- Jan Stanik
- hostmaster&gtsnextra.sk
-30566
- Dr. Gregory M. Stone & Associates
- Gregory M. Stone
- gms&stone-associates.com
-30567
- Port One Internet, Inc.
- Ken Reiss
- kreiss&portone.com
-30568
- Msona Limited
- Francesco Salamida
- francesco.salamida&msona.co.uk
-30569
- Globitel
- Alaa Halawa
- alaa.halawa&globitel.com
-30570
- Arch Red Oy
- Heikki Vatiainen
- oid&archred.com
-30571
- Mesto Domazlice
- Petr Vondras
- vondras&mesto-domazlice.cz
-30572
- TDC-NetDesign A/S (formerly 'NetDesign A/S')
- Gregers Paludan Nakman
- gpna&tdcnetdesign.dk
-30573
- Photon Meissener Technologies GmbH
- Frank Jaehnig
- f.jaehnig&PhotonAG.com
-30574
- Fixma S.L.
- Luis N. Coll Aleixandre
- luis.coll&fixma.es
-30575
- castLabs GmbH
- Martin Tews
- martin.tews&castlabs.com
-30576
- Wills and co Stockbrokers
- Oli Comber
- oli&3ait.co.uk
-30577
- Opus Notion
- Heath Jones
- hj1980&gmail.com
-30578
- T Proje Muhendislik Dis Tic Ltd. Sti.
- Murat Yaran
- murat.yaran&tproje.com
-30579
- Arab Bank (Switzerland)
- Steve Erzberger
- it.operations&arabbank.ch
-30580
- Peninsula Engineering Solutions Inc
- Gustavo Lara
- soymelvin&gmail.com
-30581
- Appriver LLC
- Steve Mcilwain
- smcilwain&appriver.com
-30582
- RSP Systems A/S
- Andreas Rune Fugl
- andreas&rspsystems.com
-30583
- AhMuseIndustry.Net, LLC
- Michael Strother
- ahmuse&hotmail.com
-30584
- Allegory Software, Inc.
- Ron Turner
- raturne&shaw.ca
-30585
- SmartShare Systems
- Morten Broerup
- info&smartshare.dk
-30586
- Xytronix Research & Design, Inc.
- David Witbeck
- david&xytronix.com
-30587
- JumpGen Systems, LLC
- Matthew Dharm
- mdharm&jumpgen.com
-30588
- Euphonix, Inc
- Jim McTigue
- jmctigue&euphonix.com
-30589
- HIS Technologies (HK) Limited
- Boris Chan
- boris&histechs.com
-30590
- Österreichische Pensionsversicherungsanstalt
- Markus Paschinger
- Markus.Paschinger&pva.sozvers.at
-30591
- Hetzner Pty Ltd
- Wynand van Dyk
- wvd&hetzner.co.za
-30592
- Nico Roeser
- Nico Roeser
- n-roeser&gmx.net
-30593
- Spyderweb Consulting
- Tim Aslat
- admin&spyderweb.com.au
-30594
- LSTC
- Nathan Hallquist
- nathan&lstc.com
-30595
- Xenatech Co Ltd (South Korea)
- Nagaraju Surulivel
- snraj&xenatech.co.kr
-30596
- Unioncast
- Wenyue Ren
- suchasplus&unioncast.tv
-30597
- Kan sp. z o.o.
- Tomasz Klimaszewski
- tomasz.klimaszewski&kan.pl
-30598
- H.C. Starck GmbH
- Percy Engler
- percy.engler&hcstarck.com
-30599
- SimplisIP
- POIRIER Laurent
- lpoirier&simplisip.fr
-30600
- Deltatec
- Louis Plair
- software-management&deltatec.be
-30601
- podhart.net
- Ing. Oldrich Horak
- olda.horak&podhart.net
-30602
- Tyson Foods, Inc.
- Doug Fieldhouse
- hostmaster&tyson.com
-30603
- JXX Technologies
- Jarod Watkins
- jarod&jxxtech.net
-30604
- Uhland
- Stephan Nies
- nies.stephan&googlemail.com
-30605
- Landmark Digital Services
- Tim Stinson
- stinson.timothy&gmail.com
-30606
- eTour
- Ludovic LANGE
- pen-iana&agisvoyages.com
-30607
- Saskatchewan Blue Cross
- Janice Matus
- jmatus&sk.bluecross.ca
-30608
- FACULDADE NOVAFAPI
- Manuel Gonçalves da Silva Neto
- manuelg&novafapi.com.br
-30609
- Temboo, Inc.
- Judd Maltin
- oid-manager&itemboo.com
-30610
- UVT Unternehmensberatung für Verkehr und Technik GmbH
- Volkmar Klos
- peniana.reg&uvt.de
-30611
- Maessa Telecontrol
- Andreu Palou
- apalou&maessa.com
-30612
- EK3 Technologies Inc.
- Dennis Michaelson
- dgm&ek3.com
-30613
- ATIS
- Steve Barclay
- sbarclay&atis.org
-30614
- Expandium SAS
- Rémy Chibois
- remy.chibois&expandium.com
-30615
- Creative Technology Ltd.
- Stanley Lim
- stanley_lim&ctl.creative.com
-30616
- MagmaTec (Pty) Ltd
- Brent Lightley
- brent&magmatec.co.za
-30617
- Advanced Digital Systems Inc. (ADS)
- John Higgs
- jh&advanceddigital.com
-30618
- Rostocker Freizeitzentrum e.V.
- Norman Lüttgerding
- nluett&rfz-online.de
-30619
- TOSHIBA MITSUBISHI-ELECTRIC INDUSTRIAL SYSTEMS CORPORATION
- Tadashi Hara
- HARA.tadashi&tmeic.co.jp
-30620
- Sloka Telecom Private Limited
- Upendra Ram Praturi
- upendra&sloka.in
-30621
- Global Holdings Group
- John Betts
- john&globalholdings.org
-30622
- Centre des technologies de l'information de l'Etat , Luxembourg (formerly 'Centre Informatique de l'Etat , Luxembourg')
- Daniel Nickels
- cie.oid&ctie.etat.lu
-30623
- Federal Signal Corporation, Integrated Systems
- Tim Morten
- tmorten&fedsig.co.uk
-30624
- ALALOOP SAS
- Jean-Louis Melin
- jlmelin&alaloop.com
-30625
- tollwerk sinnesnavigatoren
- Dipl.-Ing. Joschi Kuphal
- info&tollwerk.de
-30626
- VeriSign
- Sean Kent
- skent&verisign.com
-30627
- bitGate data systems GmbH
- Siarhei Litvinko
- Siarhei.Litvinko&bitGate.de
-30628
- NIDEC CORPORATION
- NANAE WATANABE
- NANAE_WATANABE&notes.nidec.co.jp
-30629
- ArchCyber Technology Co. Ltd.
- Kidd Hsieh
- kidd.hsieh&archcyber.com
-30630
- AfriNIC Ltd.
- Systems Administrator
- sysadmin&afrinic.net
-30631
- Terra
- Gediminas Strazdas
- gediminas.st&terraelectronics.com
-30632
- CJSC Kyivstar GSM
- Hostmaster of Kyivstar
- hostmaster&kyivstar.net
-30633
- Universitaet fuer Musik und darstellende Kunst Wien
- Hermann Rothe
- admin-list&mdw.ac.at
-30634
- Eddahbi Karim
- Eddahbi Karim
- da.templar&acm.org
-30635
- II. gimnazija Maribor
- Mirko Pesec
- mirko.pesec&druga.org
-30636
- AMT DATA
- Jean-Jacques Broussat
- info&amtdata.com
-30637
- Haagenti Group Inc.
- William Waites
- ww&haagenti.com
-30638
- Larry Sturtz
- Larry Sturtz
- lws49028&yahoo.com
-30639
- Smart Education sp. z.o.o
- Miroslaw Kaminski
- m.kaminski&smarteducation.pl
-30640
- Unlimi-Tech Software Inc
- Christian Charette
- ccharette&utechsoft.com
-30641
- AJA Video Systems, Inc.
- fred dominikus
- ianaadmin&aja.com
-30642
- AOptix Technologies, Inc.
- Wendell Yin
- wyin&aoptix.com
-30643
- Databits
- Pete Fritchman
- petef&databits.net
-30644
- Amir Rezghian
- Amir Rezghian
- arezghian&gmail.com
-30645
- Entry Point, LLC
- Robert Peterson
- ccp&jdcinc.net
-30646
- NYCLIX
- Mikhail Elias
- mikhail.elias&nyclix.org
-30647
- Value Team
- Stefano Lattanzi
- stefano.lattanzi&valueteam.com
-30648
- iSupportISP, LLC
- Scott M. Grim
- engineering&isisp.org
-30649
- INetU, Inc.
- Frank Clements
- fclements&inetu.net
-30650
- Para Systems, Inc.
- Robert Calhoun
- rcalhoun&minutemanups.com
-30651
- Precognet
- Edoardo Costa Sanseverino
- edoardo.costa&gmail.com
-30652
- GlenMarshall.us
- Glen F. Marshall
- admin&glenmarshall.us
-30653
- Comability
- Tal Schoenfeld
- tal&comability.com
-30654
- College of Policy Science, Ritsumeikan University
- College of Policy Science
- admin&ps.ritsumei.ac.jp
-30655
- Diamond Valley College
- Chris Lowe
- chris.lowe&dvallcoll.vic.edu.au
-30656
- lancehendrix.com
- Steven Lance Hendrix
- lance&lancehendrix.com
-30657
- Eaton-Williams
- Adrian Coles
- adrian.coles&eaton-williams.com
-30658
- BTC Business Technology Consulting AG
- Stephan Backhaus
- stephan.backhaus&btc-ag.com
-30659
- Scilla Systems Inc.
- Raimo Järvi
- raimo.jarvi&scillasystems.com
-30660
- Onsite Media Network Inc.
- Wayne Dick
- wdick&onsitemedianetwork.com
-30661
- zubData
- Directory Services
- ds&zubdata.com
-30662
- Tara Systems GmbH
- Robert Sertic
- Robert.Sertic&tara-systems.de
-30663
- Tall Umbrella
- David Maust
- davidm&tallumbrella.com
-30664
- P. Bryan Consulting Inc.
- Paul C. Bryan
- pbryan&pbryan.com
-30665
- APG Algemene Pensioen Groep N.V.
- Otto van Staveren
- otto.van.staveren&apg.nl
-30666
- Online Rewards
- Chris Jacobson
- chris.jacobson&online-rewards.com
-30667
- Port40
- David Kempf
- info&port40.com
-30668
- BrControls
- w.h.v.petersen
- w.vanpetersen&brcontrols.com
-30669
- Research for Science, Art and Technology (RFSAT) Ltd
- Dr. Artur Krukowski
- RTD&rfsat.com
-30670
- Vololink Pty Ltd
- Milan Prosenica
- milan.prosenica&vololink.com
-30671
- Crocus-com Company
- Valentin Reshetnyak
- vresh&crocuscom.com
-30672
- Ancerno Ltd.
- Evan Perry
- webmaster&ancerno.com
-30673
- EDELCA
- Jose Miguel Parrella Romero
- jparrella&edelca.com.ve
-30674
- NTS Workspace AG
- Simon Obi
- noc&nts.ch
-30675
- Wayne State University School of Medicine
- Bobby Rose
- brose&med.wayne.edu
-30676
- D-TA Systems Inc.
- Angsuman Rudra
- abose&d-ta.com
-30677
- C4i Security LLC
- Scott Joachim
- joachim.scott&c4isecurity.com
-30678
- Nomovok Ltd
- Heli Koskimäki
- it&nomovok.com
-30679
- Xicom Technology
- Steve Trigero
- steve.trigero&xicomtech.com
-30680
- City of Walsenburg, Colorado
- Michael Sheldon
- msheldon&spisys.net
-30681
- Donald Swauger Consulting
- Donald William Swauger
- swauger&hotmail.com
-30682
- davidrobin.net
- david robin
- david&davidrobin.net
-30683
- quadium.net
- Tim Howe
- vsync&quadium.net
-30684
- YAZAKI Corporation
- YASUO ISHIMA
- ishima.y2&sys.yzk.co.jp
-30685
- TSTENG
- Sangwook Park
- psw&tsteng.co.kr
-30686
- N-iTUS
- Jerome Lee
- dmlee&n-itus.com
-30687
- CoSolIT
- Florian Frank
- info&cosolit.de
-30688
- ShenZhen DaShi Technology Co.,LTD
- FangCheng
- alanhappy&163.com
-30689
- Planet Controls Pty Ltd
- Steve Kelly
- steve&planetcontrols.com.au
-30690
- Institute of Computational Mathematics and Mathematical Geophysics SB RAS
- Sergey Nechaev
- nechaev&ssd.sscc.ru
-30691
- Wapice Ltd
- Teemu Niemi
- admin&wapice.com
-30692
- WS Atkins PLC
- Paul Southway
- paul.southway&atkinsglobal.com
-30693
- global infinipool GmbH
- Martin Scholl
- ms&infinipool.com
-30694
- FaxBack, Inc.
- Mike Oliszewski
- mikeo&faxback.com
-30695
- Chrysler Financial
- Fred Hoshowski
- FJH7&chryslerfinancial.com
-30696
- Deimos Engenharia, S.A.
- Marcos Bento
- marcos.bento&deimos.com.pt
-30697
- CPC (UK)
- Graham Blake
- graham.blake&cpcuk.co.uk
-30698
- n1ety
- Dean Maluski
- dmaluski&n1ety.com
-30699
- Ubipart Ltd
- Anssi Lindqvist
- support&ubipart.com
-30700
- Telefonia Dialog SA
- Radoslaw Zdunek
- radoslaw.zdunek&dialog.net.pl
-30701
- Norwegian University of Life Sciences (UMB)
- Ola-Gunnar Juelsrud
- ola-gunnar.juelsrud&umb.no
-30702
- A2E Technologies
- Leon Havin
- leon&securigy.com
-30703
- Oberthur Technologies
- José Cervera
- j.cervera&oberthurcs.com
-30704
- Dipl.-Ing. Eberhard Iglhaut
- Eberhard Iglhaut
- mail&iglhaut.com
-30705
- SoundBite Communications
- Chris Marko
- cmarko&soundbite.com
-30706
- OpenDNS, LLC
- bill fumerola
- billf&opendns.com
-30707
- Solaiemes
- Javier Lopez Fernandez
- fjlopez&solaiemes.com
-30708
- Stej - Stefan & Jens Internet Services AB
- Victor Jerlin
- victor.jerlin&stejtech.net
-30709
- NCCI Holdings, Inc
- James Murray
- james_murray&ncci.com
-30710
- IT Soft Ltd.
- Plamen Dimitroff
- plamen&itsoft.bg
-30711
- Coolman, Inc
- James Coolman
- jcoolman&comcast.net
-30712
- BDO Seidman, LLP
- James Coolman
- jcoolman&bdo.com
-30713
- Oopss.org
- Thomas Martin
- admin&oopss.org
-30714
- Harry Wettke Consulting
- Harry Wettke
- info&wettke.de
-30715
- Q-layer
- Carl D'Halluin
- carl&qlayer.com
-30716
- Alston & Bird LLP
- Carlos Batista
- carlos.batista&alston.com
-30717
- Odysseyware Inc.
- Richard Porter
- rporter&odysseyware.com
-30718
- TSB Bank Ltd
- David Clarke
- david.clarke&tsbbank.co.nz
-30719
- Elektroservice
- Petr Odlozil
- odlozil&email.cz
-30720
- Etone
- Zhiyong Wang
- wangzhiyong&etonetech.com
-30721
- Agenor d.o.o.
- Visnja Ivanovic-Opacic
- V.Ivanovic-Opacic&agenor.com.hr
-30722
- ProSoft Technology
- Matthew Sund
- msund&prosoft-technology.com
-30723
- FreeCode International Inc.
- Preeti Baheerathan
- preeti.baheerathan&freecodeint.com
-30724
- Vietnam Commercial Computing and Communication
- Nguyen Dinh Nam
- nguyendinhnam&gmail.com
-30725
- all included software gmbh
- Leo von Klenze
- lvk&alinso.de
-30726
- fj3.us Enterprises
- Jeff Doyle
- jeff&fj3.us
-30727
- SNIX/net International
- Nick Gustafson
- nick.iana&snix.com
-30728
- Siltanet
- Charly Rohart
- charly.rohart&siltanet.fi
-30729
- SLM Corporation
- Domain Techadmin
- domain.techadmin&salliemae.com
-30730
- Seanodes
- Christophe Guittenit
- christophe.guittenit&seanodes.com
-30731
- BODET S.A
- Philippe REY
- philippe.rey&bodet.com
-30732
- NetSocket, Inc.
- Steve Yao
- syao&netsocket.com
-30733
- Umpqua Bank
- Don Larsen
- DonLarsen&UmpquaBank.com
-30734
- Florian Sailer
- Florian Sailer
- f.sailer&outlook.com
-30735
- BLUECOARA Networks
- Hideo NAKAMITSU
- nomo&bluecoara.net
-30736
- Kyoeisangyo corp.
- Shigeki Asano
- asano&kyoeisangyokk.co.jp
-30737
- Servicios Tecnicos Agrupados S.A.
- Luis Escribano Ulibarri
- luis&stagsa.com
-30738
- Optenet
- Jesús Vázquez
- jvazquez&optenet.com
-30739
- Jason Antman
- Jason Antman
- jason&jasonantman.com
-30740
- Assyst Gesellschaft für Automatisierung Software und Systeme mbH
- Albert Cester
- albert.cester&assyst-intl.com
-30741
- Configo Systems GmbH
- Christof Egner
- cegner&configo.de
-30742
- Glimmerglass Networks Inc.
- Salman A. Qamar
- salman&glimmerglass.com
-30743
- Global Village Telecom
- Diego Rossetto
- drossetto&it7.com.br
-30744
- Mississippi River Maritime Association
- Chris Cunningham
- chris&concentriamaritime.com
-30745
- Open Channel Software
- Larry Mills-Gahl
- lmg&openchannelsoftware.com
-30746
- Opensolutions GmbH & Co. KG
- Andreas Piening
- andreas.piening&opensolutions.net
-30747
- THR Systems
- System Administrator
- admin&thr.sk
-30748
- Raumtex Biehl
- Frank Heß
- admin&raumtex-biehl.de
-30749
- Marabu EDV -Beratung und -Service GmbH
- Carsten Schulze
- carsten.schulze&marabu-edv.de
-30750
- Mesh City Wireless
- Daniel Roady
- droady&meshcity.com
-30751
- Pentadyne Power Corporation
- Claude Kalev
- claude.kalev&pentadyne.com
-30752
- INFOGROUP S.p.A:
- Massimiliano Panichi
- m.panichi&infogroup.it
-30753
- University of Tsukuba
- Osamu Tatebe
- tatebe&cs.tsukuba.ac.jp
-30754
- Erik Abele Technology Consulting
- Erik Abele
- erik&eatc.de
-30755
- faultinjection.net
- Alex Senkevitch
- alex&senkevitchs.net
-30756
- CodersApple.com
- Krishna Gadde
- gopi.gadde&gmail.com
-30757
- FAR NETWORKS SRL
- Nicola Fracassi
- nicola.fracassi&farnetworks.com
-30758
- Comtech Systems, Inc.
- Charles R. Schroeder
- cschroeder&comtechsystems.com
-30759
- ShowSys
- Jason Pontius
- jpontius&showsys.com
-30760
- ELECTRO STANDARDS LABORATORIES
- KEN SEPE
- KSEPE&ELECTROSTANDARDS.COM
-30761
- Telavista B.V.
- Ward van Wanrooij
- wvanwanrooij&telavista.com
-30762
- Mbira Technologies
- Systems Administrator
- hostmaster&mbira.com
-30763
- GlassFish Networks
- Michael Helmeste
- elf&glassfish.net
-30764
- QlikTech
- Johan Jeansson
- johan.jeansson&qliktech.com
-30765
- GAMA V2
- Hamid Toloei
- hhamedto&ucsd.edu
-30766
- Tomas Shulman
- Tomas Shulman
- tomishulman&gmail.com
-30767
- Full Spectrum Inc.
- Menashe Shahar
- mshahar&fullspectrumnet.com
-30768
- Collège de France
- Cyrille Ghesquiere
- cyrille.ghesquiere&college-de-france.fr
-30769
- Citec S.p.A.
- Alberto Storch
- a.storch&citec.it
-30770
- Alberto Storch
- Alberto Storch
- a.storch&mclink.it
-30771
- HealthPlus of Michigan
- Walter Seiler
- mike.seiler&sanyuhu.com
-30772
- ProCom Professional Communication & Service GmbH
- Wolf-Dieter Fischer
- Wolf-Dieter.Fischer&procom-communication.de
-30773
- FlyCatcher
- John Brooks
- john&flycatcher.co.uk
-30774
- Anthena Technology, Inc.
- Sri Chaganty
- schaganty&athena-technology.com
-30775
- XControl Sistemas & Soluciones Ltd.
- Ricardo Moreno
- ricardo_moreno&etb.net.co
-30776
- Dronas 2002, S.L.U.
- Javier Martínez Martí
- jmartinezm&nacex.es
-30777
- Cymotec
- Mirko Pilger
- pilger&cymotec.de
-30778
- Murilo Fujita
- Murilo Fujita
- murilofujita&gmail.com
-30779
- Apelon, Inc
- Harold Solbrig
- hsolbrig&apelon.com
-30780
- Charles McCrobie
- Charles McCrobie
- charles.mccrobie&gmail.com
-30781
- Infonova Consultores
- Nacho Rodríguez
- nacho.rodriguez&infonova.es
-30782
- HiliSoft
- MU Yangzhi
- muyangzhi&hilisoft.com
-30783
- IceCell ehf
- Andreas Fink
- afink&gni.ch
-30784
- Fink Consulting GmbH
- Andreas Fink
- afink&finkconsulting.com
-30785
- Bitfrost AS
- Georg Engstrand
- post&bitfrost.no
-30786
- Defne
- Abdulhakim Unlu
- abdulhakimu&yahoo.com
-30787
- Global Networks Switzerland AG
- Gregor Riepl
- griepl&gni.ch
-30788
- VScape
- Kerry L. Bonin
- kerry&vscape.com
-30789
- Market Technologies, Inc.
- Roberto Villarreal
- rvillarreal&mktec.com
-30790
- Cortex Informatica
- Francisco J. A. Souza
- fj_souza&hotmail.com
-30791
- brass Media Inc.
- Joel Ranck
- joelranck&brassmedia.com
-30792
- Huber Verlag für Neue Medien GmbH
- Anno v. Heimburg
- heimburg&huberverlag.de
-30793
- Ingram Book Co.
- Mark Mise
- mark.mise&ingrambook.com
-30794
- Platinumtel Communications
- Tom Ross
- tom&platinumtel.com
-30795
- Zeltiq Aesthetics, Inc.
- Corydon A. Hinton
- chinton&zeltiq.com
-30796
- Videon Central, Inc.
- Arthur Shipkowski
- art&videon-central.com
-30797
- elconas
- Robert Heinzmann
- services&elconas.de
-30798
- Delta Lambda Phi National Social Fraternity
- Adam J. Moore
- adam.moore&dlp.org
-30799
- SkyNet Community VPN
- Steven Gilberd
- steven.gilberd&gmail.com
-30800
- Bee Ware SA
- Mendoza Florent
- florent.mendoza&bee-ware.net
-30801
- IGUS-ITS GmbH
- Frank Müller
- frank.mueller&igus-its.de
-30802
- FireScope, Inc.
- Matt Rogers
- mrogers&firescope.com
-30803
- Vyatta, Inc.
- Justin Fletcher
- mibs&vyatta.com
-30804
- Lattice Limited
- Sreejith Kalyat
- sreejith&latticelimited.com
-30805
- Solegy LLC
- James Faeldon
- jfaeldon&solegysystems.com
-30806
- ipcenter.at
- Markus Hof
- support&ipcenter.at
-30807
- Franz Krainer - netal
- Franz Krainer
- franzk&netal.com
-30808
- Sun International Management Limited
- Peter Horvath
- suninternational&mtnloaded.co.za
-30809
- PacketOps
- Tracey Bernath
- tbernath&packetops.com
-30810
- Universitaet Bremen - Fachbereich 3
- Christian Manal
- moenoel&informatik.uni-bremen.de
-30811
- Herley-CTI
- Alan Kobb
- administrator&Herley-CTI.com
-30812
- ObjectTel, Inc.
- Todd Lehmann
- support&objecttel.com
-30813
- Advanced Telecom Technologies
- Tracey Bernath
- tbernath&advancedtelecomtech.com
-30814
- Institut français de recherche pour l'exploitation de la mer
- Eric Bernard
- Eric.Bernard&ifremer.fr
-30815
- Intecna Soluciones
- Pedro Salido López
- psalido&intecna.es
-30816
- escape studio
- julien BASTIDON
- julien&escape-studio.com
-30817
- illuminate Solutions
- Hervé Barsanti
- hbarsanti&i-lluminate.com
-30818
- Powerset, Inc.
- Richard Hesse
- richard&powerset.com
-30819
- software security networks - Lukas Gradl
- Lukas Gradl
- iana&ssn.at
-30820
- Fighting Penguin Business Systems
- Kevin Fries
- kfries&fightingpenguin.com
-30821
- Cape Cod Sensors
- Stephen Hall
- sahtech2002&comcast.net
-30822
- General Conference of Seventh-day Adventists
- Adriano Brancher
- adriano.brancher&dsa.org.br
-30823
- Akimeka
- John Wang
- jwang&akimeka.com
-30824
- SH Solutions
- Steffen Heil
- info&sh-solutions.de
-30825
- CentraComm Communications, Ltd.
- Loren Weith
- noc&centracomm.net
-30826
- SmartOptics AS
- Dirk Lutz
- d.lutz&smartoptics.com
-30827
- RIZ-Transmitters Co. (formerly 'RIZ ODASILJACI d.d.')
- Zvonimir Lucić
- zvonimir.lucic&riz.hr
-30828
- Colfax Corporation
- Christoph Jandek
- c.jandek&allweiler.de
-30829
- United Technologists Europe Limited (UTEL)
- andrew anten
- andrew.anten&utel.co.uk
-30830
- G & L Geissendörfer & Leschinsky GmbH
- Mark Eisenblätter
- eisenblaetter&gl-systemhaus.de
-30831
- Network Center of Tianjin University
- Fudi Liu
- arraynil&163.com
-30832
- CompuCredit Corporation
- Andrew G Whitlock
- andrew.g.whitlock&compucredit.com
-30833
- Clearspeed Technology plc
- Andrew Lonsdale
- librarian&clearspeed.com
-30834
- VirtueFusion
- Steven Goodliff
- steven.goodliff&virtuefusion.com
-30835
- Blue Box Group, LLC
- Stephen Balukoff
- stephen.balukoff&blueboxgrp.com
-30836
- WINGServers
- Pradeep Dalvi
- pradeep&dalvi.co.in
-30837
- Edge Velocity Corporation
- Michael Larson
- info&edgevelocity.com
-30838
- Cash America Net of Illinois, LLC
- Michael Vallaly
- domainmaster&cashnetusa.com
-30839
- Skidmore College
- Scott Wright
- swright&skidmore.edu
-30840
- Replify Ltd
- Wesley Darlington
- wesley.darlington&replify.com
-30841
- Astase
- Adrien Reboisson
- adrien-reboisson&astase.com
-30842
- APINC (Association Pour l'Internet Non Commercial)
- Herve Rousseau
- herve&apinc.org
-30843
- Blogreen
- Romain Tartière
- pen&blogreen.org
-30844
- Lucas IT Services
- D.J. Lucas
- dj&lucasit.com
-30845
- Mechron Power Systems
- Nicolas Novak
- jay_omega&mac.com
-30846
- IPsmarx Technology Inc.
- Arash Vahidnia
- arash&ipsmarx.com
-30847
- 9Star Research, Inc.
- Simon Lee
- itadmin&9starresearch.com
-30848
- “SITRONICS Smart Technologies”, LLC
- Eugene Shishov
- Shishov&sitronics-smart.com
-30849
- Magellan Netzwerke GmbH
- Mike Schneider
- support&magellan-net.de
-30850
- The University of Hong Kong
- System Services Team
- group-its-system&hku.hk
-30851
- Accolm
- Hamidreza Khajeh Alizadeh Attar
- hamid.attar&accolm.com
-30852
- Knipp Medien und Kommunikation GmbH
- Elmar Knipp
- Elmar.Knipp&knipp.de
-30853
- Mikro Værkstedet
- Jakob Simon-Gaarde
- jakob&mikrov.dk
-30854
- Heinlein Support GmbH
- Peer Heinlein
- p.heinlein&heinlein-support.de
-30855
- Geckologic GmbH
- Steffen Schumann
- steffen.schumann&geckologic.com
-30856
- Bandwidth.com, Inc.
- James Milko
- jmilko&bandwidth.com
-30857
- Data Device Corporation
- Vilis Kristofs
- kristofs&ddc-web.com
-30858
- Mobile News Channel S.A.
- Cédric PERINET
- iana-pen&mnc.ch
-30859
- E-Solutions
- Joost Daem
- jdaem&esolutions.be
-30860
- Betgenius
- Andrew Hodgson
- sysadmin&betgenius.com
-30861
- Venture Craft Networks
- Shaunak Sarkar
- webmaster&venturecraft.net
-30862
- Nancy Universite
- Vincent MATHIEU
- Vincent.Mathieu&nancy-universite.fr
-30863
- Samsung Electro-Mechanics Co., LTD.
- Dae-Min Jang
- dmjang&samsung.com
-30864
- CD-adapco
- Chris Hamilton
- systems&uk.cd-adapco.com
-30865
- Cilantro Cafe
- Mohammad Mahmoud Aly
- alhashash&alhashash.net
-30866
- ID2go IT-solutions
- Dr. Axel Schmidt
- axel.schmidt&id2go.de
-30867
- Volksmission entschiedener Christen e.V.
- Christoph Fischer
- christoph_fischer&volksmission.de
-30868
- Kansas City Web Repair Co.
- Brett Heroux
- brett.j.heroux&hero-ux.com
-30869
- Weiland Associates, Inc.
- FJ Weiland
- fj&effjay.com
-30870
- InterRed GmbH
- Heinz Kunz
- system&interred.de
-30871
- Luce Forward Hamilton and Scripps LLP
- Network Operations
- postmaster&luce.com
-30872
- Uniloc USA
- Casey S. Potenzone
- casey&uniloc.com
-30873
- Confident, Inc.
- Paul Kriebel
- paul&confidentinc.com
-30874
- Tuneology
- Francis Taylor
- narf&alum.mit.edu
-30875
- InnoDomus
- Marko Lappalainen
- registrar&innodomus.com
-30876
- Divmod, Inc.
- Duncan McGreggor
- oubiwann&divmod.com
-30877
- Giogio IT
- Hansjürg Wenger
- pen&giogio.ch
-30878
- Panacea Vision Co. LTD
- Poobet Mongkolwat
- poobet&panaceavision.com
-30879
- Pavleck LLC
- Jeremy D. Pavleck
- jeremy&pavleck.net
-30880
- Chaos Computer Club München e.V.
- Patrick Otto
- codec&muc.ccc.de
-30881
- ELycée S.A.S.
- Denis JOUVIN
- denis.jouvin&elycee.com
-30882
- Nanjing Xian Zhi Lu Technology Co.,Ltd.
- Xing Xiuyi
- hubertstar&gmail.com
-30883
- Correlix Inc.
- Boaz Bash
- boaz.b&correlix.com
-30884
- Covertix
- Tzach Kaufmann
- tkaufmann&covertix.com
-30885
- Rookie Inc.
- T.Hayashi
- hayashi&rookie-inc.com
-30886
- Sichuan Jiuzhou Electronic Technology Co.,Ltd
- Lutao Zhang
- satanfire345&163.com
-30887
- Alfred KUHSE GmbH
- Marco Anetzberger
- fe_reg&kuhse.de
-30888
- cittadino GmbH
- Miguel Marquez Gonzales
- marquez.gonzales&freenet.de
-30889
- Valero Energy Corporation
- Matt Moulder
- matt.moulder&valero.com
-30890
- Institut de Recherche en Ophtalmologie
- Sylvain Bolay
- it&irovision.ch
-30891
- Gramant
- Denis Yeldandi
- dyeldandi&gramant.ru
-30892
- Mirada PLC
- Jaime Vallori
- jaime.vallori&mirada.tv
-30893
- CJSC Goodwin
- Sergey Bakulin
- snmp&goodwin.ru
-30894
- INTRA-SYS GmbH
- Frank Fahlbusch
- ffa&intra-sys.de
-30895
- antonis.mobi
- Antonis Hadjiantonis
- pen&antonis.mobi
-30896
- Knitebane.net
- Rich Shappard
- knitebane&gmail.com
-30897
- McDonald's Corporation
- Michael J. Eisenberg
- ITSecurity&us.mcd.com
-30898
- NetworkedAssets GmbH
- Joerg Mueller-Kindt
- jmk&networkedassets.com
-30899
- Montana State University
- Ivan R. judson
- ivan.judson&montana.edu
-30900
- ipWorks Co., Ltd.
- Tycoon Lee
- master&ipworks.co.kr
-30901
- UNITED INFORMATION TECHNOLOGY CO.LTD
- TanYinhong
- tanyh&uit.com.cn
-30902
- GoBGK
- Bryan Gonderinger
- bjg&gobgk.com
-30903
- Registru Centras
- Saulius Kvedaravicius
- saulius&registrucentras.lt
-30904
- Radius Sweden AB
- Anders Grahn
- anders.grahn&radius.net
-30905
- INNOVA S.A.
- Nassos Tsadaris
- n.tsadaris&innova-sa.gr
-30906
- IFS Ing.-Vertriebsbuero für EDV Softwaretechnik GmbH
- Joerg Roschke
- roschke&ifs.de
-30907
- Paradigm Communication Systems Ltd
- Christopher Draycott
- chris.draycott&paracomm.co.uk
-30908
- RtVision, Inc.
- Chris Frederick
- support&rtvision.com
-30909
- wbb wireless
- wbb wireless
- wbb.wireless&gmail.com
-30910
- WS Live, LLC
- Patrick Powers
- ppowers&wslive.com
-30911
- Christopher Hubbard
- Christopher Hubbard
- guyverix&yahoo.com
-30912
- Indent Solutions LLC
- Sivanaga Dantuluri
- siva&indentsolutions.com
-30913
- UMC ELECTRONICS CO., LTD.
- Ken Sudo
- k-sudo&umc.co.jp
-30914
- Oliver Oehme EDV-Service GmbH
- Martin Meinhold
- martin.meinhold&oehmeedv.de
-30915
- Beijing Shengtian Engineering Design&Consult Inc. (bjst)
- xumaokui
- xumaokui&163.com
-30916
- TeamQuality
- Andrea Spinelli
- andrea.spinelli&imteam.it
-30917
- jillstephens.org
- Jill Stephens
- jsopera&gmail.com
-30918
- Catatrepa, S.A.
- Ariel Fatecha
- afatecha&gmail.com
-30919
- Unipier Ltd.
- Arie Gofer
- arie.gofer&unipier.com
-30920
- Scania Infomate
- Erik Lonroth
- erik.lonroth&scania.com
-30921
- john horton consultancy ltd
- john horton
- jh_squirrel&yahoo.com
-30922
- Telsasoft
- Jose Barbe
- barbe&telsasoft.com
-30923
- Max-Planck-Institute for Mathematics in the Sciences
- Rainer Kleinrensing
- rainer&mis.mpg.de
-30924
- Jantronics
- Janet Plato
- techgrrl2003&yahoo.com
-30925
- Robust Solutions LLC
- Pavel Labushev
- p.labushev&gmail.com
-30926
- flexmedia.com.tw
- stephen.wang
- smellychen&hotmail.com
-30927
- Mainova AG
- Klaus-Dieter Hollstein
- soc&mainova.de
-30928
- Loycon s.c.
- Tomasz Madry
- biuro&loycon.pl
-30929
- Schuberg Philis
- Roeland Kuipers
- rkuipers&schubergphilis.com
-30930
- Billiamware SW
- William H Swortwood III
- whswort&us.ibm.com
-30931
- Sheldon Networks Inc
- Stuart Sheldon
- hostmaster&actusa.net
-30932
- Epicenter Inc
- David Wang
- dwang&epicenterinc.com
-30933
- nick125
- Nick Devito
- nick&nick125.com
-30934
- STECO Ltd
- Constantin Stefan
- cs&steco.biz
-30935
- Railway Equipment Company
- Robert Wagner
- rwagner&rwy.com
-30936
- Texas State University
- Mark Hughes, Technology Resources
- es-idm-admins&txstate.edu
-30937
- Communications-Electronics Solutions Pty Ltd
- Michael McMahon
- mike.mcmahon1&c-esolutions.com.au
-30938
- N8 Identity Corp.
- Mike Gillan
- mike.gillan&n8id.com
-30939
- Embrapa Gado de Corte
- Carlo César Simioli Garcia
- carlo&cnpgc.embrapa.br
-30940
- SC FITS SRL
- Alexandru Tica
- alexandru.tica&fits.ro
-30941
- iFACTORY Consulting
- Victor Luyt
- victorl&ifactoryconsulting.co.za
-30942
- Global IP Solutions, Inc.
- Tina le Grand
- tina.legrand&gipscorp.com
-30943
- MultiQ Products AB
- Gunnlaugur Jonsson
- gunnlaugur.jonsson&multiq.se
-30944
- PCMS Group PLC
- Tony Espley
- tony.espley&pcmsgroup.com
-30945
- Chengdu Guangda Electronic&Telecommunication Technology Development Co., Ltd.
- Wu Hengzhong
- gddz&vip.163.com
-30946
- Department of Computer Engg.
- Mohammad Sana Akhtar
- msaelectronics&gmail.com
-30947
- YAMAKI ELECTRIC CORPORATION
- Toshio Itoh
- toshio-itoh&yamaki-ec.co.jp
-30948
- Cloudmark, Inc.
- Kevin San Diego
- iana&cloudmark.com
-30949
- Aha! Software
- Peter Gallanis
- support&ahasoftware.com
-30950
- Transneptune
- Kit La Touche
- kit.la.t&gmail.com
-30951
- N Green
- N Green
- giddleberry&gmail.com
-30952
- CONSTALANT JSC
- Dimitar Dimitrov
- ddimitrov&constalant.com
-30953
- Novotronik GmbH
- Mr. Michael Grimminger
- mg&novotronik.de
-30954
- IDS services
- Robin Schroeder
- r.schroeder&ids-services.de
-30955
- Flavio Poletti
- Flavio Poletti
- flavio&polettix.it
-30956
- yTech GmbH
- Dieter Hey
- dieter.hey&ytech.de
-30957
- WHP International SAS
- Stéphane Peyrucq
- s.peyrucq&whp.fr
-30958
- Slavenet
- Thomas Wanderer
- discoboy&slavenet.org
-30959
- ZhongLianTong electronics corporation, Ltd
- Zhiqiang Zhang
- cys0403&hotmail.com
-30960
- Innotube, Inc.
- John Kim
- jhkim&innotube.com
-30961
- RedShift Inter Networking
- Phanindra Jujjavarapu
- phani&redshiftnetworks.com
-30962
- Denis Knauf
- Denis Knauf
- deac&DenKn.de
-30963
- HUTON
- Hong ki ho
- khhong&huton.co.kr
-30964
- ZLGMCU
- David Zhang
- software&zlgmcu.com
-30965
- University "Dunarea de Jos" Galati
- Adrian ISTRATE
- Adrian.Istrate&ugal.ro
-30966
- SHENZHEN CLEVER ELECTRONIC CO.,LTD.
- Debo Qin
- qindebo&hotmail.com
-30967
- VVAAQIS
- Alexander Buslayev
- foralex&mail.ru
-30968
- For Sale Digital Internet-Agentur GmbH
- André Lehmann
- technik&for-sale-digital.de
-30969
- 2MI Tecnologia
- Marcos Amorim
- marcos&2mi.com.br
-30970
- IC Plus Corp.
- Reyes Wu
- reyes_wu&icplus.com.tw
-30971
- ALEXON CO.,LTD.
- Toshio Masuchi
- toshio&alexon.co.jp
-30972
- College of Lake County
- John Chan
- jchan&clcillinois.edu
-30973
- RightsAssist, LLC.
- Ray Gauss II
- ray&rightsassist.com
-30974
- kitASP
- Ken Saigoh
- Ken.Saigoh&kitASP.com
-30975
- cvicse Ltd.
- wei.kj
- weikj_sky&126.com
-30976
- Netezza Inc
- John Skier
- jskier&netezza.com
-30977
- SPINLOCK d.o.o.
- Davor Ocelic
- docelic&spinlocksolutions.com
-30978
- Cordium Links, LLC
- Elizaberth Randall, PhD
- erandall&cordiumlinks.com
-30979
- E.C.O. Institut für Ökologie
- Leo Unglaub
- unglaub&e-c-o.at
-30980
- Krazan and Associates, Inc
- John Giannetti
- johngiannetti&krazan.com
-30981
- MagtiCom LTD
- George Chelidze
- gchelidze&magticom.ge
-30982
- Jacobs University Bremen
- Juergen Schoenwaelder
- j.schoenwaelder&jacobs-university.de
-30983
- Gurulabs.it
- Alessandro Tatini
- info&gurulabs.it
-30984
- GNS Systems GmbH
- Jan Niemann
- jan.niemann&gns-systems.de
-30985
- Gadgets & Technology Solutions LLC
- Information Group
- info&gadgetstechsolutions.com
-30986
- Paymetric Inc.
- Genady Vishnevetsky
- mis&paymetric.com
-30987
- Norpak Corporation
- William Barry
- wbarry&norpak.ca
-30988
- PowerFile, Inc
- Dave Loewith
- dloewith&powerfile.com
-30989
- Hiscox Plc
- Marc White
- marc.white&hiscox.com
-30990
- Food for the Hungry
- Shawn Parrish
- sysadmin&fh.org
-30991
- PCS do Brasil Ltda
- Celso Pasquini
- celso.pasquini&pcsbrasil.com.br
-30992
- Wrocław University of Economics
- Borys Pogoreło
- borys&ue.wroc.pl
-30993
- Sure3 Networks, LLC
- Josh Wyse
- josh&sure3.com
-30994
- SSB Progetti srl
- Fulvio Monti
- fulvio.monti&ssbprogetti.it
-30995
- WebMessenger, Inc.
- Boris Georgiev
- contact&webmessenger.com
-30996
- BlackMesh
- Dan Reif
- dan.reif+IANAPEN&gmail.com
-30997
- Telecom South America S/A
- Daniel Korndorfer
- daniel&tesatelecom.com
-30998
- Fikus Development Corp.
- Filip Bujanic
- fbujanic&fikus.com
-30999
- Rohati Systems, Inc.
- Kirti Prabhu
- kirti&rohati.com
-31000
- stelcom
- chen shaowei
- claris_chen-iana&yahoo.com.cn
-31001
- secomicon GmbH
- Florian Speidel
- fs&secomicon.com
-31002
- COSI
- Bill Michaelson
- ianapen&bill.from.net
-31003
- China Pacific Insurance (Group) Company Limited
- Haibin ZHANG
- zhanghaibing&cpic.com.cn
-31004
- Nautile SARL
- GABUT Frederic
- fgabut&nautile.nc
-31005
- ODS-Medical GmbH
- Ralf Zwoenitzer
- r.zwoenitzer&ods-medical.com
-31006
- EnergoData
- Akhmedov Dmitry
- akhmedov-dv&energodata.ru
-31007
- Ikse.net
- Alexandre Dath
- iana&ikse.net
-31008
- Business & Decision
- IT Team Contact
- iana&businessdecision.com
-31009
- PRECISION ELECTRONICS LTD.
- Amit Kumar Mittal
- amit.mittal&pelindia.com
-31010
- Cymphonix Corp
- Trevor Paskett
- tpaskett&cymphonix.com
-31011
- Enterprise Management Consulting Ltd.
- Michael Maclean
- michael&emcuk.com
-31012
- Home Works S.p.A.
- Tani Alessandro
- support&homeworks.it
-31013
- School District of Philadelphia
- Rich Bateman
- techops&phila.k12.pa.us
-31014
- FXtion Limited
- Simon Dowson
- simon.dowson&fxtion.com
-31015
- Nalco Company
- PKI Administrator
- pki&nalco.com
-31016
- Socrata, Inc.
- Paul Paradise
- oid-master&socrata.com
-31017
- tele.sjb.partners AG
- Thomas Bach
- t.bach&telesjb.ch
-31018
- HeLi NET iTK
- Dennis Ploeger
- ploeger&helinet.de
-31019
- Tecal Engenharia Ltda
- Ricardo Smith
- rsb&tecal.com.br
-31020
- Teachers Credit Union
- Robert Boenne
- Robert.Boenne&tcunet.com
-31021
- Nstein Technologies Inc.
- Mikhail Moussikhine
- mikhail.moussikhine&nstein.com
-31022
- Sun&seeds Solutions S.L.
- Adolfo Gómez
- agomez&sunandseeds.com
-31023
- Veeam Software
- Alexey Vasilyev
- Alexey.Vasilyev&veeam.com
-31024
- Swiss Reinsurance Company
- Beat Meyer
- beat_meyer&swissre.com
-31025
- NPAI SA
- Gabriel GIL
- gabriel.gil&npai.fr
-31026
- Gil Leduc Industries
- Gabriel GIL
- gabriel.gil&gli-services.fr
-31027
- SyTech Corporation
- Tigrane Koutoudjian
- tigrane&sytechcorp.com
-31028
- Onse telecom corporation
- Lee Byung Hee
- bhlee&onsetel.co.kr
-31029
- HYUNDAI Digital Technology Co.,Ltd
- Jeong, junho
- jhjeong&hdt.co.kr
-31030
- Voipex Limited
- Adam Hill
- adam&voip-x.co.uk
-31031
- VO2 Labs
- Jean Charles Passard
- jcharles&provectio.org
-31032
- jcsbk
- Michael Schmidt
- m.schmidt&jcs.warburg.de
-31033
- Elodig
- Emmanuel Guiton
- egn&elodig.fr
-31034
- Schleifenbauer Products BV
- Alain Schuermans
- alain&schleifenbauer.com
-31035
- Haniriito Co.,Ltd.
- Kazuma Asano
- k-asano&haniriito.jp
-31036
- Svyaz Engineering M JSC
- Kapustin Sergey
- s.kapustin&allmonitoring.ru
-31037
- Luxms Inc.
- Serg Shestakov
- serg&luxms.com
-31038
- Next Generation Creative LLC
- Ben Buchwald
- ben&ngcreative.com
-31039
- JinniWare Software
- Robert Nelson
- robert&jinniware.com
-31040
- Doze.net
- Mike Joseph
- mj&doze.net
-31041
- TZ Communications Ltd
- Igor Marnat
- i.marnat&tz.ru
-31042
- Uny IT B.V.
- Richard Spoorenberg
- Richard.Spoorenberg&UnyIT.nl
-31043
- Eclipse Options (HK) Ltd.
- Nick Gustafson
- nick.gustafson&eclipseoptions.com
-31044
- Alfresco Software Ltd.
- IT Services
- its&alfresco.com
-31045
- Fry Consulting, Inc.
- Peter J. Fry
- iana&fryconsulting.com
-31046
- Collogia Unternehmensberatung AG
- Markus Stockhausen
- markus.stockhausen&collogia.de
-31047
- Aptilon Holdings Inc
- Jason Terlecki
- netops&aptilon.com
-31048
- Art Of Mobile
- Chris Goo
- domain&artofmobile.com
-31049
- Midtronics Inc.
- Carolyn Lynch
- CLynch&Midtronics.com
-31050
- CyT Comunicaciones y Telemática S.R.L
- Ezequiel Blanca
- Eblanca&cytcomunicaciones.com.ar
-31051
- Mojix Inc.
- Christopher Jones
- chris&mojix.com
-31052
- Liberty Alliance
- Eric Tiffany
- eric&projectliberty.org
-31053
- Evolved Intelligence
- Paul Brickell
- paul.brickell&evolvedintelligence.com
-31054
- TTech
- Marcus Vitek
- m.vitek&ttech.at
-31055
- gfsb Gesellschaft fuer Systemberatung mbH
- Dr. F. Schlenker
- frederik.schlenker&gfsb.de
-31056
- Thunderbird Resorts
- Ramiro Samaniego
- rsamaniego&thunderbirdresorts.com
-31057
- Ergowells
- Jerry Wintrode
- jwintrode&gmail.com
-31058
- Teragauge
- Support Group
- support&teragauge.com
-31059
- Known Star (Beijing) Kiosks Co.. LTD
- Han Zhigang
- hanzg&known.cn
-31060
- Video Internet Technologies LTD.
- Yuriy Bukhtiyarov
- yuriy&vitcompany.com
-31061
- Cheops Elektronik Handels- und Fertigungs KG
- Uli Steffenhagen
- steffenhagen&cheops-elektronik.de
-31062
- Aeracode
- Andrew Godwin
- andrew&aeracode.org
-31063
- Daniel Saul
- Farfel MacNoogen
- novkes.ro&gmail.com
-31064
- Optimal Satcom, Inc.
- Ahsun H. Murad
- amurad&optimalsatcom.com
-31065
- Toyo Electronics Corp.
- Takahiro Suda
- t.suda&toyonics.co.jp
-31066
- GSP - Loteamentos
- José Santiago
- ti.santiago&gsp.com.br
-31067
- On Line Informatica
- Felix Costa
- felix&online.eti.br
-31068
- Tyfon Svenska AB
- Tyfon Hostmaster
- hostmaster&tyfon.net
-31069
- Belvok Ltd.
- Sergei Gavrikov
- info&belvok.com
-31070
- Zentzu Inc.
- René Larivière
- rene.lariviere&zentzu.com
-31071
- Intelinet AS
- Kristian Berg
- kristian.berg&intelinet.no
-31072
- proQuest Computersysteme GmbH
- Uli Sambeth
- support&airquest.com
-31073
- Radian Company
- Alexander Nikitin
- naa_radian&mail.ru
-31074
- Electronimec, Inc
- Rob Berry
- rjberry&rjcontrol.com
-31075
- Mobigeo
- Marcin Bartoszek
- mbartoszek&mobigeo.pl
-31076
- Jan Fischer
- Jan Fischer
- jan.fischer&mac.com
-31077
- Systems Neurobiology Laboratory
- Chris Hiestand
- chiestand&salk.edu
-31078
- Nankai Densetsu CO.,LTD.
- YOSHIAKI SANADA.
- sanada_iana&nankai-densetsu.co.jp
-31079
- Bircher ProcessControl AG
- Markus Auer
- markus.auer&bircher.com
-31080
- Galileo International
- Travelport Technology Operations
- sysadmin.italy&galileo.com
-31081
- Perlan Technologies Polska Sp. z o.o.
- Piotr Buliński
- pbulinski&perlan.com.pl
-31082
- EUNETIC GmbH
- Markus Koelmel
- info&eunetic.eu
-31083
- ALTE LEIPZIGER Versicherung a. G.
- Soenke Schau
- schaus&alte-leipziger.de
-31084
- TechSAT GmbH
- Armin Gruner
- ag&techsat.com
-31085
- Greyware Automation Products, Inc.
- SNMP Support Group
- support&greyware.com
-31086
- Technology Nexus Secured Business Solutions AB
- Mark Manning
- oid.admin&nexussafe.com
-31087
- Enfo Broadcast AS
- Steve Tveit Pedersen
- steve.tveit.pedersen&enfobroadcast.com
-31088
- Extend Health, Inc.
- Mark Stafford
- mstafford&extendhealth.com
-31089
- Clemson University
- Jeff Bate
- jeff&clemson.edu
-31090
- Scale Computing, Inc.
- Mike Olson
- iana-contact&scalecomputing.com
-31091
- Andreas Tsiotsias
- Andreas Tsiotsias
- andreas_tsiotsias&btconnect.com
-31092
- GFI Software Ltd
- Quintin Zammit
- postmaster&gfi.com
-31093
- Passguard
- Chris Southern
- southern&passguard.com
-31094
- dynaTrace Software, Inc.
- Ted Feyler
- ted.feyler&dynatrace.com
-31095
- SEC (Software Engineering Center, Chinese Academy Of Sciences)
- Zheng Shaolin
- slzheng&sec.ac.cn
-31096
- koyo electric co,ltd
- kajiwara terumitsu
- kajiwara&koyo-pb.co.jp
-31097
- Mouse-hole.com
- Karl Wagner
- karl&mouse-hole.com
-31098
- PJM Interconnection, L.L.C.
- George M. Fazio, Jr.
- noc&pjm.com
-31099
- SZ-ID b.v.
- Richard Spoorenberg
- R.Spoorenberg&sz.nl
-31100
- Metascopic
- Jason Dusek
- jsn&metascopic.com
-31101
- Future Spirits Co,Ltd.
- Takeshi Kitada
- kitada&future-s.com
-31102
- u10 Networks
- Philip Mulholland
- phil&u10networks.com
-31103
- Daniel Ellard
- Daniel Ellard
- ellard&gmail.com
-31104
- EPRO Telecom Services Ltd.
- Tim Li
- tim-li&eprotel.com.hk
-31105
- WMHost
- Toni Walther
- hostmaster&wmhost.com
-31106
- 23projects.org
- Torsten Grunig
- tgrunig&gmail.com
-31107
- Global Protocols
- Kara Hale
- hale&globalprotocols.com
-31108
- Compriva Communications Privacy Solutions Inc.
- Bill Dagg
- system.admin&compriva.com
-31109
- IAVANTE Foundation
- Carlos González
- listas1&maycar.net
-31110
- UAB "BT-Grupe"
- Andrius Vasauskas
- andrius&bt-group.lt
-31111
- Norfello Oy
- Tuomas Rasila
- tuomas.rasila&norfello.com
-31112
- XForm Systems GmbH
- Jan Winkler
- j.winkler&xformsystems.de
-31113
- Swemel JSC
- Alexander Zakharov
- zh&swemel.ru
-31114
- Aetna Group S.p.A.
- Gianluca Semprini
- gsemprini&aetnagroup.com
-31115
- InfoWatch
- Svetlana Ashkinazi
- Svetlana.Ashkinazi&infowatch.com
-31116
- Cuesta College
- Grant Chesy
- gchesy&cuesta.edu
-31117
- Quality Bicycle Products, Inc.
- Greg Sampson
- greg&qbp.com
-31118
- Cryptomach Ltd.
- Sergey Golovashych
- sg&cryptomach.com
-31119
- I-node S.r.l.
- Massimiliano Perantoni
- admin-c&i-node.it
-31120
- QiPlay
- Yannick Brehon
- y.brehon&qiplay.com
-31121
- Techfirm, Inc.
- Katsuya Matsumoto
- unyo-news&techfirm.co.jp
-31122
- VoIPFuture Ltd.
- Thomas Koehn
- snmp&voipfuture.com
-31123
- WuHan Teklong Technology Co.,Ltd
- Stephen Wan
- wh.teklong&gmail.com
-31124
- ABF Baltic AS
- Juri Gurjanov
- yuri&abfbaltic.ee
-31125
- Ressources Informatiques
- Laurent COUDROT
- coudrot&r-i.fr
-31126
- ASTELLIA
- julien LECOEUVRE
- j.lecoeuvre&astellia.com
-31127
- Emerson Process Management
- Bob Huba
- bob.huba&emerson.com
-31128
- Lead Tech Design
- Samira CHAHIBI
- samira.chahibi&ltdsa.com
-31129
- Alaska Satellite Facility
- Theron Bair
- tbair&asf.alaska.edu
-31130
- Basho Technologies, Inc.
- Justin Sheehy
- justin&basho.com
-31131
- Ilove2ski
- Kristin Grifin
- kristin.l.griffin&gmail.com
-31132
- Dictao
- Julien Montagne
- jmontagne&dictao.com
-31133
- Triton Container Intl
- Chris Bradley
- cbradley&triu.com
-31134
- Kinderedheart
- Bob Clayton
- bob&kinderedheart.com
-31135
- Diglinks GmbH
- Badri Pillai
- badri&diglinks.com
-31136
- Gestión de Seguridad Electrónica S.A. - GSE S.A.
- Héctor García Buitrago
- hector.garcia&gse.com.co
-31137
- Bildungszentrum Uster
- Stephan Göldi
- stephan.goeldi&bzu.ch
-31138
- DrJays.com, Inc.
- Kelsey Hudson
- khudson&drjays.com
-31139
- Viv Diwakar
- Viv Diwakar
- viv&vdiwakar.com
-31140
- TouK Sp. z o. o. s. k. a.
- Pawel Zuzelski
- pen-contact&touk.pl
-31141
- GEMIK
- Michael Geisberger
- web&gemik.com
-31142
- 7signal Oy
- Anton Puolakka
- anton.puolakka&7signal.com
-31143
- Andreas Stenius Teknikkonsult
- Andreas Stenius
- andreas.stenius&astekk.se
-31144
- Corporación Santandereana para el Avance y la Innovación Científica y Tecnológica - Avance
- Greful Montaño
- gmdead&gmail.com
-31145
- Holido
- Philipp Maske
- philipp.maske&holido.com
-31146
- MatrikonOPC
- Brad Huddleston
- brad.huddleston&matrikonOPC.com
-31147
- RiverStar Software
- John Conneely
- admin101&riverstarsoftware.com
-31148
- Saga d.o.o. Beograd
- Sasa Antic
- sasa.antic&saga.rs
-31149
- South-West University
- Ivo Damyanov
- damianov&swu.bg
-31150
- TriumStar International Co., Ltd.
- Peter Liu
- peterliu&triumstar.com.tw
-31151
- Sixgreen
- Brill Pappin
- bpappin&sixgreen.com
-31152
- Allegea Information Services
- Jose Marcos Gomes
- support&allegea.net
-31153
- Aonalu
- Priam Kanealii
- priamk&gmail.com
-31154
- ck-productions
- Charles Krüger
- postmaster&ck-productions.de
-31155
- SeYo Solutions
- Yonas Hambissa
- info&seyosolutions.com
-31156
- By Light Professional IT Services
- Craig McManus
- craig.mcmanus&by-light.com
-31157
- Patersons HR & Payroll Solutions
- Douglas Baigrie
- douglas.baigrie&sg.patersons.net
-31158
- Team Engineers
- Bollavaram MohanReddy
- dev&teamengineers.in
-31159
- Stadtwerke Speyer GmbH
- Stefan Nitsche
- it-service&sws.speyer.de
-31160
- DARTALIS S.A.
- Joerg Stefan Folz
- folz&dartalis.lu
-31161
- SMT&C Co., Ltd.
- Tycoon Lee
- tycoonlee&smtnc.co.kr
-31162
- EMC Electronic Media Communication SA
- Cristian Fochetti
- emc.mail&bluewin.ch
-31163
- Ultra Electronics - Tactical Communication Systems
- Andre-Claude Paulin
- andre-claude.paulin&ultra-tcs.com
-31164
- xweb OG
- Erwin Raab
- ip-admin&xweb.cc
-31165
- Active Storage, Inc.
- Skip Levens
- skip&activestoragelabs.com
-31166
- ViM Internetdienstleistungen Gmbh
- Rainer Hinterberger
- r.hinterberger&vim.at
-31167
- Home State Bank
- Ken Porter
- Ken.Porter&homestatebank.com
-31168
- Pleora Technologies Inc.
- Igor Sales
- igors&pleora.com
-31169
- Medical Facilities of America
- Hunter French
- hunter_french&mfa.net
-31170
- PNG Development Group
- Glenn Randers-Pehrson
- glennrp&gmail.com
-31171
- Ning Inc
- Theral Mackey
- ops&ninginc.com
-31172
- Broward Sheriff's Office
- Collin Bennett
- collin_bennett&sheriff.org
-31173
- Alaska Department of Fish & Game
- Corey Kos
- corey.kos&alaska.gov
-31174
- Mobile Active Pty Ltd
- System Administrators
- admins&mobileactive.com
-31175
- Partition Tragic
- Giacomo Cariello
- info&partitiontragic.org
-31176
- Largic Co.,Ltd.
- Daisuke.Gendou
- gendou&largic.jp
-31177
- Quantm
- Barney Flint
- barney_flint&trimble.com
-31178
- GroundHog Software
- Warwick Smith
- sysadmin&groundhog.com.au
-31179
- Micro Research Ltd
- B. J. Hill
- bjh&micres.biz
-31180
- Centre for Development of Advanced Computing
- Dr. Subrata Chattopadhyay
- subratac&cdacb.ernet.in
-31181
- DBALab S.p.A.
- Riccardo Gajo
- riccardo.gajo&dbalab.it
-31182
- Ville de Luxembourg
- Sven Lamberty
- slamberty&vdl.lu
-31183
- The Logic Group Enterprises Ltd
- Mohammad Rahin
- mohammad.rahin&the-logic-group.com
-31184
- EWE AG
- Stephan Backhaus
- stephan.backhaus&ewe.de
-31185
- Kell Systems
- Stephen Fitton
- stephen.fitton&kellsystems.co.uk
-31186
- mybasta.com
- Dov Zamir
- dov&mybasta.com
-31187
- Secure Designs, Inc.
- Scott Underwood
- scott&firelan.net
-31188
- Engel Solutions AG
- Product Admin
- admin&engel-solutions.com
-31189
- Rhombotech LLC
- Ben Sanchez
- ben&rhombotech.com
-31190
- Hackers' Treasure Zoo
- Jason Dusek
- jsn&hackerstreasurezoo.org
-31191
- Alset Corporation
- John Wruble
- jwruble&alsetcorp.com
-31192
- Hella KGaA Hueck & Co.
- Uwe Lutter
- uwe.lutter&hella.com
-31193
- DT Netsolution GmbH
- Daniel Schwager
- daniel.schwager&dtnet.de
-31194
- Public Association "RENAM" (Research and Educational Networking Association of Moldova)
- Bogatencov Peter
- bogatencov&renam.md
-31195
- audio data Ton- und Datentechnik GmbH
- Achim Strauch
- achim.strauch&audio-data.de
-31196
- Sosialistisk Venstreparti
- Lars Svanberg Jakobsen
- lars.jakobsen&sv.no
-31197
- Ousmane Ba International Business Automation
- Ousmane Ba
- oba&iba.net
-31198
- Thomas Stein
- Thomas Stein
- thomas.stein&koeln.de
-31199
- E-learning SA
- Jerome Coignard
- admin_retd&crossknowledge.com
-31200
- is-ro Informations-Architektur
- Lothar Rösch
- info&is-ro.net
-31201
- Dotcom-Monitor Inc
- Technical Support
- support&dotcom-monitor.com
-31202
- wiredobjects
- Sven Wilhelm
- wilhelm&wiredobjects.eu
-31203
- Jenomics GmbH
- Benjamin Schiller
- info&jenomics.de
-31204
- I-James Technology
- Etienne Bagnoud
- etienne&i-james.com
-31205
- Newsroom Solutions, LLC
- Damian Hess
- dhess&newsroomsolutions.com
-31206
- DRS Test and Energy Management, LLC
- Todd Lumpkin
- tlumpkin&drs-tem.com
-31207
- Vertica Systems, Inc
- Mario Barrenechea
- mario&vertica.com
-31208
- Seneca College of Applied Arts & Technology
- Louis Koutsovitis
- louis.koutsovitis&senecac.on.ca
-31209
- Lightcomm Technology
- Eric Zhang
- eric.zhang&lightcomm.com
-31210
- Cross Technologies, Inc.
- Nanalee Wegener
- nanalee&crosstechnologies.com
-31211
- Engineering Design Team, Inc.
- Chet Britten
- chet&edt.com
-31212
- Senotron GmbH
- Martin Fieseler
- info&senotron.de
-31213
- Integrat (Pty) Ltd
- Herman Cremer
- integrat-support&usa.net
-31214
- ADIPSYS
- Francois Bourdais
- contact&adipsys.com
-31215
- PFS
- Lars G. Sander
- lars.sander&gmx.net
-31216
- PCM Industries
- Paul C. Murdock
- web&pcmindustries.net
-31217
- AST
- Sergio A. Martinez
- ast&adinet.com.uy
-31218
- UCOPIA Communications
- Julien Rotrou
- jrotrou&ucopia.com
-31219
- kubus IT GbR
- Falko Fochtmann
- falko.fochtmann&kubus-it.de
-31220
- Syberian
- Elliott Ing
- elliott&syberian.co.uk
-31221
- Niggemann Innovations GmbH
- Thomas Minor
- iana-pen&niggemann-innovations.de
-31222
- Idium AS
- Vidar S. Ramdal
- vidar&idium.no
-31223
- Spider Financial
- Mohamad EL-Bawab
- mohamad.el-bawab&spiderxl.com
-31224
- Horizon Semiconductors
- Nikolay Assa
- Nikolay.Assa&horizonsemi.com
-31225
- Pulse Power and Measurement Ltd.
- Jacek Batkowski
- jbatkowski&ppm.co.uk
-31226
- NWG Technologies, LLC
- Chris Heath
- cheath&nwgtechnologies.com
-31227
- US Cable
- Chris Allermann
- callermann&uscable.com
-31228
- RUSTEDCOMPUTING.COM
- Matthew Herzog
- matthew.herzog&gmail.com
-31229
- One Convergence
- Nilay Tripathi
- nilay.tripathi&oneconvergence.com
-31230
- Lazurit
- Alexander Chekalin
- achekalin&lazurit.com
-31231
- Longhurst Group
- Iain Burnley
- iain.burnley&longhurst-group.org.uk
-31232
- Ringcentral, Inc.
- Alexey Oudalov
- alexu&ringcentral.com
-31233
- Almira Labs, S.L.
- Juan J. Olmedilla Arregui
- juan.olmedilla&almiralabs.com
-31234
- Inter7 Internet Technologies, Inc.
- Matt Brookings
- pen&inter7.com
-31235
- ENVALE SYSTEMS PVT. LTD.
- BHUPENDRA SHAH
- envalesystems&gmail.com
-31236
- PartyGaming PLC
- Kriek Jooste
- kriekj&partygaming.com
-31237
- e.sigma Technology AG
- Max Bidlingmaier
- mbidlingmaier&esigma-technology.com
-31238
- baumann.at - concepts & sulotions
- Dr. Christian Baumann
- cbaumann&baumann.at
-31239
- AustriaPro (e-Zustellung)
- Dr. Christian Baumann
- c.baumann&e-zustellung.at
-31240
- i-move internet gmbh
- Dr. Christian Baumann
- c.baumann&i-move.at
-31241
- Cross Industries AG
- Günter Kavsek
- guenter.kavsek&crossindustries.at
-31242
- Foster Link Inc.
- Brian Foster
- brian&fosterhardware.com
-31243
- Interhost AS
- Asbjørn Sannes
- asbjorn.sannes&interhost.no
-31244
- Fresh Media Group
- Andrew Burke
- andrew.burke&freshmediagroup.com
-31245
- Brandon Werner
- Brandon Werner
- brandonwerner&acm.org
-31246
- Realmagic Technology Ltd.
- Peter Peng
- peter.penghai&163.com
-31247
- DigiSSL Inc
- Pontus Engblom
- poppe&digissl.eu
-31248
- Field Solutions, LLC
- Jeff Sussna
- itops&fieldsolutions.com
-31249
- Daruma Telecomunicacoes e Informatica S/A
- Alexandre Pereira da Silva
- a.pereira&daruma.com.br
-31250
- Avnet
- Brian Roller
- brian.roller&avnet.com
-31251
- Olé Telecom
- noc&oletelecom.com.br
- noc&oletelecom.com.br
-31252
- ELMECH
- Leszek Wolski
- leszek.wolski&gmail.com
-31253
- Andre Hotzler EDV-Dienstleistungen
- Andre Hotzler
- iana_nospam&andrehotzler.de
-31254
- Fooman Limited
- Kristof Ringleff
- iana&fooman.co.nz
-31255
- MAC Telecom Technologies Pvt Ltd
- Vishwanath Patil
- vpatil&macil.in
-31256
- CSO srl
- Piet de Jong
- p.dejong&csoitalia.it
-31257
- elxsi networking services
- Martin Kluge
- mk&elxsi.de
-31258
- 3onedata Technology Co. Ltd.
- Jeff Ji
- jcy&3onedata.com.cn
-31259
- Sisnetinfo CO., ltd.
- Joo-Yeop Kim
- nwanda&sisnetinfo.co.kr
-31260
- Phebus
- Jonathan Phebus
- jonathan&pheb.us
-31261
- Placid Sky Consulting
- Herman Slagman
- iana&placid-sky.org
-31262
- HOLA S.A.
- Alberto Crespo
- sistemas&hola.com
-31263
- Riga Technical university
- Ģirts Zemītis
- girts.zemitis&rtu.lv
-31264
- TEGNIX
- Adrián Boubeta
- adrian.boubeta&tegnix.com
-31265
- Queensland Studies Authority
- Bernard Wright
- bernard.wright&qsa.qld.edu.au
-31266
- Privredna komora Srbije
- Djuro Vojnovic
- djuro.vojnovic&pks.co.yu
-31267
- Zivios, LLC.
- Mustafa A. Hashmi
- mustafa.hashmi&emergen.biz
-31268
- Nubium Systems
- Dubravko Maracic
- dubravko&nubiumsystems.com
-31269
- Sapotek Inc.
- Oscar Mondragon
- info&sapotek.com
-31270
- XRoads Networks
- Daren French
- dfrench&xroadsnetworks.com
-31271
- Geni, Inc
- Edward Greenberg
- edg&geni.com
-31272
- Ed Greenberg Technical Services Corp
- Ed Greenberg
- ed&edgreenberg.com
-31273
- RIS Technology
- Nate Johnson
- info&ristech.net
-31274
- Webmasterprogramm GmbH
- Tom Regner
- cso&webmasterprogramm.de
-31275
- TTG ULUSLARARASI TELEKOMINIKASYON ILETISIM HIZMETLERI ve ELEKT.TIC.LTD.STI
- Mehmet Beyaz
- mehmet.beyaz&ttgint.com
-31276
- DSA Volgmann
- Heiko Caspers
- heiko.caspers&dsa-volgmann.de
-31277
- Fluidmesh Networks, Inc.
- Umberto Malesci
- snmp&fluidmesh.com
-31278
- Alphons Tech. Co. Ltd
- Hyun Jung, Cho
- chj97&alphons.co.kr
-31279
- Shenzhen Routdata Technology Co., Ltd
- bai yugang
- baiyugang&routdata.com
-31280
- Premiersoft (Singapore) Pte Ltd
- Yap ES
- yapes&premiersoft.com.sg
-31281
- sourcephotonics
- Patrick Li
- Patrik.Li&sourcephotonics.com.cn
-31282
- Solid Access Technologies LLC
- Jaroslav Belonoznik
- jaroslav.belonoznik&solidaccess.com
-31283
- SONOWAND AS
- Per Inge Mathisen
- perim&sonowand.com
-31284
- Spazidigitali
- Luca Mearelli
- l.mearelli&spazidigitali.com
-31285
- Beijing 3V Communication Technology Co.,Ltd.
- ZhiXue Liu
- jiaoxl216&163.com
-31286
- Valora Holding AG
- Ulrich Tehrani
- ulrich.tehrani&valora.com
-31287
- FutureIT
- Itay Levi
- itayl&futureitsoft.com
-31288
- Partners Data Systems, Inc.
- Robert Kelly
- robert.kelly&partnersdata.com
-31289
- SARL SECOM - GMixon - Pixeliris
- EMMANUEL RUIZ
- emmanuel&gmixon.com
-31290
- Nissan Finacial Services Co., Ltd.
- IWAO SHIOYA
- applicant&nissan-fs.co.jp
-31291
- Minutolo
- Antonio Minutolo
- antonio.minutolo&arcor.de
-31292
- WPC-Vogt
- Stephan Vogt
- vogt&wpc-vogt.de
-31293
- Tata Város Polgármesteri Hivatala
- Hetényi Csaba
- csabiwork&tata.hu
-31294
- Impetus Infotech (india) pvt. ltd.
- A. K. Vyas
- amitk.vyas&impetus.co.in
-31295
- Aqualectra B.V.
- Roland van der Veen
- rvdveen&aqualectra.nl
-31296
- Kynetix
- Anil Kripalani
- amk&kynetix.com
-31297
- Dortmund University of Technology
- Stefan Rapp
- stefan.rapp&tu-dortmund.de
-31298
- Hochschule Anhalt (FH)
- Thomas Gast
- admin.pen&zik.hs-anhalt.de
-31299
- Elite CRM Software Ltd.
- Max Yu
- maxyu&elitecrm.com
-31300
- Emmeskay
- Michael Tiller
- itservices&emmeskay.com
-31301
- Litheware Pty Ltd
- Tim Hudson
- tjh&litheware.com
-31302
- ScuttledMonkey
- Terry Funk
- terryfunk&gmail.com
-31303
- HelloWeb
- Vincenzo Farruggia
- admin&helloweb.eu
-31304
- Andes SCD
- Claudia Juliana Mantilla Otero
- cjulianamantilla&yahoo.com
-31305
- Sure Tech (HK) Limited
- Judy Zhou
- judy&suretech.com.hk
-31306
- Severed Head Software Ltd.
- Mark Adams
- severe.redhead&gmail.com
-31307
- astarsoft
- guoqing wang
- wanggq&ec-tech.net.cn
-31308
- Pacific Network Research
- Rodney Thayer
- rodney&pnresearch.com
-31309
- QuintessenceLabs Pty Ltd
- John Leiseboer
- jl&quintessencelabs.com
-31310
- CRYPTECHNIQ Pty Ltd
- John Leiseboer
- jleiseboer&cryptechniq.com
-31311
- CEMA ASP
- Uwe Beer
- ubeer&mycema.com
-31312
- Jens Axboe Linux Kernel
- Jens Axboe
- axboe&kernel.dk
-31313
- Nets DanID A/S
- Martin Thiim
- mthii&nets.eu
-31314
- Priva B.V.
- SNMP Support Group
- snmpsupport&priva.nl
-31315
- Thales Alenia Space Italia
- Stefano Buratti
- stefano.buratti&thalesaleniaspace.com
-31316
- Seed Linux
- Stuart Herbert
- stuart&stuartherbert.com
-31317
- ADTelecom S.L.
- Victor M. Palacio Tárrega
- victorpalacio&adtelecom.es
-31318
- Southern Symentech & Solutions Private Limited
- Mohamed Siraj
- siraj&symentech.net
-31319
- Portugal Telecom, SA
- Engº. José Rodrigues
- jose.t.rodrigues&telecom.pt
-31320
- Disig, a.s.
- Peter Miskovic
- peter.miskovic&disig.sk
-31321
- Munisense BV
- Joffrey van Wageningen
- joffrey&munisense.com
-31322
- Sierra Wireless, Inc.
- Tom Kavanaugh
- tkavanaugh&sierrawireless.com
-31323
- eXelate Media
- Shlomi Aflalo
- shlomia&exelate.com
-31324
- CTS Corporation
- Troy Tate
- troy.tate&ctscorp.com
-31325
- Howard University
- Tyrone E. Boyd
- tboyd&howard.edu
-31326
- Apollo Security Sales, Inc.
- Dennis Hall
- technical.admin&apollo-security.com
-31327
- Greenplum
- Ben Werther
- bwerther&greenplum.com
-31328
- Whispering Wolf Productions
- J. Grizzard
- hostmaster&lupine.org
-31329
- Diginext B.V.
- Ridouan Agarad
- info&diginext.com
-31330
- Comstar, Inc
- Sangho Lee
- shlee&comstar.co.kr
-31331
- Commuture Corp
- Matthew Harvey
- matthew&commuture.com
-31332
- Dr.Reisacher
- Dr. Anton Reisacher
- dr.reisacher&gmx.de
-31333
- Purekernel Systems Limited
- Mohamed Ghouse
- mg&purekernel.co.uk
-31334
- Unicon, Inc.
- John A. Lewis
- jlewis&unicon.net
-31335
- John Antypas
- John Antypas
- ja&antypas.net
-31336
- Neovera, Inc.
- Michael Hertrick
- mike.hertrick&neovera.com
-31337
- Union & Comstar
- Sangho Lee
- shlee&comstar.co.kr
-31338
- Kavach Networks Private Limited
- Uttam K Jaiswal
- uttam&kavach.net
-31339
- NPP Triada-TV LLC
- Panov Ivan
- panov&triadatv.ru
-31340
- Jiwalu
- Michael Eyang
- jiwalu&gmail.com
-31341
- innoSysTec GmbH
- Markus Miller
- markus.miller&innosystec.de
-31342
- S-Terra CSP
- Dmitri Sokolov
- ds&s-terra.com
-31343
- Festo AG & Co. KG
- Matthias Daum
- rmd&festo.de
-31344
- Tripadvisor
- Sean Hart
- shart&tripadvisor.com
-31345
- Sun Microsystems (B.C.) Inc.
- Paul C. Bryan
- pbryan&sun.com
-31346
- Cine-tal
- Scott Pillow
- SPillow&cine-tal.com
-31347
- Spirus Applied Learning Solutions AG
- Dawid Kucinski
- dkucinski&spirus.com
-31348
- DONET S.A.C
- Erick Martin Lavado Sarmiento
- erlavado&gmail.com
-31349
- Digital Wave Co.,Ltd.
- Mingyan Wang
- wangmy&digitalwave.cn
-31350
- Government Information Management Unit, Ministry of Finance, Finland
- Hannu Korkeala
- hannu.korkeala&vm.fi
-31351
- managedhosting.de GmbH
- Heino Gutschmidt
- heino.gutschmidt&managedhosting.de
-31352
- Meteogroup Deutschland
- Dennis Schulze
- admin&meteogroup.de
-31353
- iKu Systems & Services GmbH & Co. KG
- Andreas Niederlaender
- iana&iku-systems.de
-31354
- Computa Services and Consultants Ltd
- Gareth Thomson
- gareth&computa.co.uk
-31355
- Tuxicoman
- Guy Martin
- gmsoft&tuxicoman.be
-31356
- Casa Brasil
- Renê de Lima Barbosa
- rene.lima&casabrasil.gov.br
-31357
- Guoke tek,Inc.
- JiaXing Zhu
- hake2002&126.com
-31358
- id3 Semiconductors
- Xavier CHOPIN
- xavier.chopin&id3.eu
-31359
- Orcanthus
- Xavier CHOPIN
- xavier.chopin&id3.eu
-31360
- revenco
- cheng junnan
- chengjunnan&revenco.com
-31361
- conject AG
- Tobias Wildgruber
- tow&conject.com
-31362
- FHeigl
- Florian Heigl
- florian.heigl&gmail.com
-31363
- Sumlogic Innovations
- Alex Cameron
- support&sumlogic.net
-31364
- BEE MediaSoft Limited
- Yin Liang
- yinliang&dmxtechnologies.com
-31365
- MaxSP Corporation
- Robert Lanning
- Robert.Lanning&maxsp.com
-31366
- MMJ Group, Inc
- LaMont Jones
- poc&mmjgroup.com
-31367
- Asseco Slovakia, a.s.
- Jan Bartek
- jan.bartek&asseco.sk
-31368
- Systancia SA
- Emmanuel Théotime
- support&systancia.fr
-31369
- OhmForce
- David ROBIN
- david.robin&ohmforce.com
-31370
- Jugendzentrum e.V., Karlstr. 13
- Julian Reich
- jreich&epplehaus.de
-31371
- Communicado, Inc.
- Kevin Shih
- kevin.shih&communicado-inc.com
-31372
- University of Southern Indiana
- Travis Ennis
- tlennis&usi.edu
-31373
- CENELEC TC79 WG7 CCTV Surveillance Systems
- Frank Rottmann
- Frank.Rottmann&web.de
-31374
- Plansmith Corporation
- Christopher Hartman
- cdhartman&plansmith.com
-31375
- The Hub Partnership LLP
- Nils Toedtmann
- london.ict&the-hub.net
-31376
- Reliable science & technology co.,Ltd
- Jevy Ren
- rjw&263.net
-31377
- buunSoft
- Martin Brändle
- mb&buun.de
-31378
- Vervis COMINT Services GmbH
- Christoph Woellinger
- snmp&vervis.de
-31379
- inform solutions GmbH
- Andre Beckers
- abeckers&inform-solutions.de
-31380
- Citec
- Martin Thygesen
- martin.thygesen&citec.com.au
-31381
- TI-WMC
- Tom Lippmann
- tom.lippmann&ti-wmc.nl
-31382
- EDEKA Handelsgesellschaft Suedwest mbH
- Meinrad Koller
- oid.admin&edeka-suedwest.de
-31383
- east taiya wireless telecommunication Inc.
- xia zhan gao
- xzg302&yahoo.com.cn
-31384
- Port25 Solutions, Inc.
- Juan Altmayer Pizzorno
- iana-pen&port25.com
-31385
- Zylex Systems
- Christoff van Zyl
- christoffv&zylex.co.za
-31386
- ARCHE Engenharia e Comercio de Sistemas de Automacao e Teleinformatica Ltda
- Antonio Carlos Camargo Leite
- accleite&arche.com.br
-31387
- Row 44, Inc.
- Chris Browne
- cbrowne&row44.com
-31388
- On-Net Surveillance Systems, Inc. (OnSSI)
- Gadi Piran
- gpiran&onssi.com
-31389
- Sven Richter
- Sven Richter
- post&sven-richter.de
-31390
- Ural State Forest Engineering University
- Dr. Andrej Kravtsov
- dec-usfeu&yandex.ru
-31391
- Oakton Community College
- John Wade
- jwade&oakton.edu
-31392
- Squared Financial Services Ltd.
- Piotr Pryzmont
- ppryzmont&squaredfinancial.com
-31393
- OneBeacon Insurance
- Aaron Ferreira
- aferreira&onebeacon.com
-31394
- Victron Energy B.V.
- Jeroen Hofstee
- jhofstee&victronenergy.com
-31395
- The Translational Genomics Research Institute
- John Forrister
- jforrister&tgen.org
-31396
- HPC Systems Inc.
- Kenji Morimoto
- morimoto&hpc.co.jp
-31397
- Armor Safe Technologies, LLC
- Jonathan Bosch
- jbosch&armorsafe.com
-31398
- Suburbia Public Access Network
- Trent Anderson
- domainadmin&suburbia.org.au
-31399
- SCALABLE NETWORK TECHNOLOGIES
- Unghee Lee
- ulee&scalable-networks.com
-31400
- WaveGuider Technology Ltd
- chry santhemun
- chrysanthemun&21cn.com
-31401
- Sarbarian Software
- Davi Baldin H. Tavares
- davi&sarbarian.com
-31402
- WINLAB
- Joseph Miklojcik
- jfm3&winlab.rutgers.edu
-31403
- Mgame Japan Corp.
- Taekjin Jun
- taekjin&mgame.co.jp
-31404
- Optiwave Photonics Limited
- Jonnadula Ravikanth
- ravik&optiwavephotonics.com
-31405
- X-tec GmbH ICNS
- Dittert Philipp
- dittert&x-tec.de
-31406
- Le Studio Vert
- Sylvain Floury
- suivi&lsv.fr
-31407
- ON-X
- Guillaume Lachenal
- pen-contact&on-x.com
-31408
- Cincinnati Country Day School
- Jeffry A. Spain
- certadmin&countryday.net
-31409
- Telemetry Network System
- Thomas Grace
- Thomas.Grace&navy.mil
-31410
- TenRoses SRL
- Sysops
- nsalvo&tenroses.com.ar
-31411
- Edinboro University of Pa
- Jonathan Blaine
- jblaine&edinboro.edu
-31412
- Carter and Associates
- Randall L Carter
- StuckIn70s&sbcglobal.net
-31413
- eBiz Consulting Inc.
- Walter Jia
- walter_jia&hotmail.com
-31414
- MMK
- Dmitry Zaytsev
- dimaz&mmk.ru
-31415
- Nederlands Ministerie van Buitenlandse Zaken
- Dirk Bundhund
- dirk.bundhund&siemens.com
-31416
- Edevag Consulting HB
- Stefan Edevag
- info&edevag.com
-31417
- Tokyo University of Science
- Devendra Narayan
- narayan&cc.kagu.tus.ac.jp
-31418
- Adexso Advanced Expert Solutions
- Agustin Salguero Cruz
- Agustin.Salguero&Adexso.com
-31419
- Skalarit AB (formerly 'Skvader Systems AB')
- Nicklas Björk
- nicklas.bjork&skalarit.se
-31420
- team2work GbR
- Kai Zirlewagen
- kai.zirlewagen&team2work.de
-31421
- Coblan srl
- Frank Contrepois
- info&coblan.it
-31422
- Retailp S.A.S.
- Damien Truffaut
- dtruffaut&retailp.com
-31423
- Identity Technology Ltd
- Jason Banks
- jasonb&identitytechnology.net
-31424
- Egothor
- Leo Galambos
- lg&hq.egothor.org
-31425
- Mountain Power Inc.
- Carson Yuen
- cyuen&mountainpower.ca
-31426
- Fitbit, Inc.
- Alistair Weddell
- aweddell&fitbit.com
-31427
- ticketpro GmbH
- Stefan Kolb
- ldap-schema&ticketpro.ch
-31428
- PT. Telemetri Indonesia
- Ceda Wan
- c.wan&telemetri.co.id
-31429
- RealConnect (Pty) Ltd
- Nick Dalton
- helpdesk&realconnect.co.za
-31430
- RSU GmbH
- Steffen Schmidtke
- s.schmidtke&rsu-online.de
-31431
- CoSiSo
- Richard Speelmans
- richard&cosiso.nl
-31432
- Courtyard Electronics Ltd
- Hugh Reynolds
- hugh&courtyard.co.uk
-31433
- Toumaz Technology Limited
- Nikolaos Kasparidis
- nick.kasparidis&toumaz.com
-31434
- Minerva-Korea
- Ji Hoon, Jung
- jjh9922&minerva-korea.com
-31435
- Users, Incorporated
- Carl Bennett
- carlbennett&users.com
-31436
- Ansley & Associates, Inc.
- Greg Ansley
- gja&ansley.com
-31437
- Call & Call Holding S.p.A.
- Ugo Paternostro
- ugo.paternostro&callecall.it
-31438
- phoops s.r.l.
- Ugo Paternostro
- ugo.paternostro&phoops.it
-31439
- Correo Uruguayo
- Javier Lago
- javierl&correo.com.uy
-31440
- Embedded Data Systems, LLC
- Chay Wesley
- Chay&EmbeddedDataSystems.com
-31441
- Eurika srl
- Paolo Adami
- paolo.adami&eurika.net
-31442
- JonDos GmbH
- Rolf Wendolsky
- certification&jondos.de
-31443
- The Alberta Library
- Fletcher Nichol
- fnichol&thealbertalibrary.ab.ca
-31444
- MAKELSAN LTD.
- Umut OGUZ
- uoguz&makelsan.com.tr
-31445
- FatBox Inc.
- Evan Borgstrom
- evan&fatbox.ca
-31446
- catpipe
- Phil Regnauld
- pr&catpipe.net
-31447
- IRGA Production Company
- Łukasz Zosiak
- lukasz.zosiak&irga.com.pl
-31448
- Prolancer Pty Ltd
- Emil Andonov
- sysadmin&prolancer.com.au
-31449
- Perfect Line S.A.
- Szymon Kowalczyk
- szymon.kowalczyk&perfectline.pl
-31450
- David Rourke
- David Rourke
- pen&drourke.co.uk
-31451
- ipado - Informatiker-Partnerschaft Pauxberger und Domschke
- Thomas-Michael Domschke
- th.domschke&ipado.eu
-31452
- VS Information Systems
- Vlastimil Setka
- setka&vsis.cz
-31453
- Zyrion Inc.
- Rajib Rashid
- rajib.r&zyrion.com
-31454
- towebs inc.
- leonardo alminana
- l_alminana&yahoo.com.ar
-31455
- Bulb
- Neven Stipcevic
- neven.stipcevic&bulb.hr
-31456
- ScapeCaster
- Sean Kent
- ryoohki&gmail.com
-31457
- Meebo, Inc.
- Paul Handly
- paulh&meebo-inc.com
-31458
- RAVIOLIKINGDOM.COM
- Steve Antonini /Ferdinando Ferrari
- fferrari_it&yahoo.it
-31459
- United States Peoples Virtual Party
- John Francis Lee
- jfl&uspvp.org
-31460
- Versatile Security Sweden AB
- Joakim Thoren
- Joakim.Thoren&versasec.com
-31461
- sächsische Informations-Compagnie zu Berlin | Marcus Pauli
- Marcus Pauli
- marcus.pauli&informations-compagnie.de
-31462
- Canare
- Shiro Tsunai
- shirou-tsunai&canare.co.jp
-31463
- Itibia Technologies Inc.
- Suker.Yao
- suker.yao&itibia.com
-31464
- EPCOM IT-Systeme, Pirker & Zauner OEG
- Joachim Zauner
- hostmaster&epcom.cc
-31465
- Systemica Consulting
- Thomas Muller
- ttm&online.no
-31466
- NeoConsult A/S
- Thomas Larsen
- info&neoconsult.com
-31467
- Gravity Interactive, Inc.
- Kelvin Mok
- systems&gravityus.com
-31468
- The Bluenote Group
- Jeffrey McCamley
- jmccamley&thebluenotegroup.com
-31469
- Alior Bank S.A.
- Tomasz Graca
- tomasz.graca&alior.pl
-31470
- Vector Data LLC
- Skye Nott
- snott&vectordata.com
-31471
- SunStrom GmbH
- Daniel Zwahr
- daniel.zwahr&sunstrom.de
-31472
- Axcera Inc.
- Dimitar Staykov
- dimitars&ad2007.com
-31473
- NOVA Chemicals Corporation
- Sandra Nanke
- nankes&novachem.com
-31474
- Viagenie inc.
- Marc Blanchet
- marc.blanchet&viagenie.ca
-31475
- ITS Schmidinger GmbH
- Markus Schmidinger
- markus.schmidinger&its-schmidinger.de
-31476
- Deviant Software
- Joe Richards
- deviantsoftware&gmail.com
-31477
- TTC MARCONI s.r.o.
- Jiri Dlouhy
- dlouhy&marconi.ttc.cz
-31478
- Pluribus
- Ronald McCormick
- ramccor&pluribus.org
-31479
- Grey Group
- Sean McHugh
- smchugh&grey.com
-31480
- Universidade Federal do Rio Grande
- Centro de Processamento de Dados
- suporte&furg.br
-31481
- ABBRIS Ltd.
- Sergey Podushkin
- abbris&abbris.ru
-31482
- Top Level Internet Pty Ltd
- Chris Jones
- chrisj&toplevel.net.au
-31483
- Universidad Rey Juan Carlos
- Tomás Herrero
- servred&urjc.es
-31484
- Basset AB (formerly 'BassetLabs AB')
- Mathias Andersson
- mathias.andersson&bassetglobal.com
-31485
- FlexSecure GmbH
- Markus Ruppert
- info&flexsecure.de
-31486
- CGI Sweden AB (formerly 'Logica Norr AB')
- Henrik Andreasson
- se.certificateservice&cgi.com
-31487
- The Transaction Company
- Vladimir Dzhuvinov
- vd&valan.net
-31488
- oxylane
- Thomas Sagnimorte
- thomas.sagnimorte&decathlon.com
-31489
- Manchester Computing Ltd
- Dave Bracken
- Support&ManchesterComputing.co.uk
-31490
- Monnsta
- Matthew King
- matthew.king&monnsta.net
-31491
- Cabo Telecom
- Eduardo Andrez de Oliveira
- adm-l&cabotelecom.com.br
-31492
- BOCOM SECURITY(ASIA PACIFIC) LIMITED
- HUAI DONG MO
- mohd&bocom.cn
-31493
- The Hospital Authority Hong Kong
- Tony Chan
- tchanwt&ha.org.hk
-31494
- Host 17
- Steve Ingram
- steve&host17.net
-31495
- Combe Walden Associates Limited
- Neil Cordell
- neil&combe-walden.com
-31496
- NetModule AG
- Martin Meuli
- hostmaster&netmodule.com
-31497
- Haute Ecole d'Ingénierie et de Gestion du Canton de Vaud (HEIG-Vd)
- Olivier Liechti
- olivier.liechti&heig-vd.ch
-31498
- Stiftung Sympany
- Sascha Affolter
- sascha.affolter&sympany.ch
-31499
- Novozymes A/S
- Roman Ford
- rfor&novozymes.com
-31500
- Lindsay Broadband Inc.
- Vic Race
- vrace&lindsaybroadbandinc.com
-31501
- Khaledma
- khaled Moustafa Ahmed
- khaledmaa2000&yahoo.com
-31502
- Mantaray AB
- Martin Bjornstrom
- martin.bjornstrom&mantaray.se
-31503
- Sanitas S.A. de Seguros
- Ignacio Campos Alonso
- icampos&sanitas.es
-31504
- Networkers AG
- Rainer Schneider
- schneider&networkers.de
-31505
- Dirección General de Tráfico
- Pedro Gimeno
- pgimeno&dgt.es
-31506
- Dragonfly Grzegorz Marszałek
- Grzegorz Marszałek
- graf0&post.pl
-31507
- arcutronix Gmbh
- Thomas Geffert
- arcutronix-pen&arcutronix.com
-31508
- Internat der Maristenbrüder Mindelheim
- Michael Beham
- michael&styre.de
-31509
- Soapstone Networks
- Steve Babineau
- babs&soapstonenetworks.com
-31510
- New Horizons
- Jay Burkey
- jayb&nhokc.com
-31511
- Henry Ford Community College
- Sandro Silvestri
- sandro&hfcc.net
-31512
- BittWare, Inc.
- Ron Huizen
- rhuizen&bittware.com
-31513
- Prosul - Projetos, Supervisão e Planejamento LTDA.
- Flavio do Carmo Junior
- flaviocj&prosul.com
-31514
- Software Horizons Inc.
- Ramal Murali
- ramal&shorizons.com
-31515
- SizeIT Drift Aktiebolag
- Erik Wallin
- helpdesk&sizeit.se
-31516
- Zen Internet Limited
- Jeremy Nicholls
- Jerry.Nicholls&zeninternet.co.uk
-31517
- Akixa
- Gerhard Scheffler
- scheffler&akixa.com
-31518
- International All Sports Limited
- Jeff Cheah
- jeff.cheah&iasbet.com
-31519
- Jakko Network
- Georg Jakovidis
- tr-080712-pen&jakko.net
-31520
- iPerfecta Japan Ltd.
- Kenji Ueno
- tec-info&iperfecta.net
-31521
- Univar Benelux S.A.
- Christian Van Simaeys
- Christian.VanSimaeys&univareurope.com
-31522
- Washington Apple Pi, Ltd.
- Jon C. Thomason
- jonct&tcs.wap.org
-31523
- Community Health Information Collaborative
- Cheryl Stephens
- cstephens&medinfosystems.org
-31524
- müller it gmbh
- Thomas Mueller
- service&muellerit.ch
-31525
- NEC Laboratories Europe
- Thomas Dietz
- dietz&neclab.eu
-31526
- Change Networks A/S
- Tais M. Hansen
- tais.hansen&changenetworks.dk
-31527
- VMF Nord ek för
- Hans Weslien
- Hans.Weslien&vmfnord.se
-31528
- SIEMENS S.A: IA SPAIN
- Jose Antonio Corral Rubio
- joseantonio.corral&siemens.com
-31529
- Pensionskasse SBB
- Mario Fascetti
- edv.support&pksbb.ch
-31530
- TSI Power Corporation
- Jason Marckx
- jason&tsipower.com
-31531
- Immutify Limited
- Bruce Skingle
- Bruce.Skingle&immutify.com
-31532
- Ensynch, Inc
- Brad Turner
- bturner&ensynch.com
-31533
- ScanSafe Ltd
- Jim Walker
- ops&scansafe.com
-31534
- Adfinis SyGroup AG (formerly 'SyGroup GmbH')
- Daniel Aubry
- info&adfinis-sygroup.ch
-31535
- Parkeon
- Thierry Machicoane
- pkn-iana-pen&parkeon.com
-31536
- OpenNHRP project
- Timo Teräs
- timo.teras&iki.fi
-31537
- Gossamer Threads Inc.
- Alex Krohn
- alex-iana&gossamer-threads.com
-31538
- Velocity Network
- Justin Kruszewicz
- justin.kruszewicz&velocitynetwork.net
-31539
- Traveling bits, Inc.
- Brian Kurle
- bk&travelingbits.com
-31540
- INTEC Inc.
- Technologies Dept.
- takada_kazuhiro&intec.co.jp
-31541
- Yaamen Inc
- Michael Koverman
- yaamen&yaamen.net
-31542
- Robert Carleton
- Robert Carleton
- rbc&rbcarleton.com
-31543
- RIONERO
- Rocco RIONERO
- iana-pen-contact&rionero.com
-31544
- Sistema Integrado de Defesa Social
- Rui César
- rui&sids.mg.gov.br
-31545
- Yellowbook Inc
- IT Security
- penadmin&yellowbook.com
-31546
- Rotary International
- Chris Morley
- it&rotaryhumm.com
-31547
- COGITO Management Consulting
- Dmitry Chernyshov
- integration&cogito.ru
-31548
- Media & Broadcast Technologies
- Olivier Braun
- OID.Admin&mediabroadcast-t.com
-31549
- Shu-Te University
- Po-Yu Lin
- poyu.lin&gmail.com
-31550
- K Franchise Vertriebssysteme Gesellschaft m.b.H.
- Ernst Zechmeister-Machhart
- iana&kika.com
-31551
- Niechoj electronic GmbH
- Christian Hoffmann
- info&niechoj.de
-31552
- Disforce
- Bos Ruud
- admin&disforce.be
-31553
- Invocrown Ltd
- James Fryer
- jim&invocrown.com
-31554
- Elvys Ltd.
- Karol Rohrer
- karol.rohrer&elvys.sk
-31555
- VCS Aktiengesellschaft
- Michael Henke
- michael.henke&vcs.de
-31556
- TiQ srl
- Marco Cadario
- marco.cadario&tiq.it
-31557
- Vision Technologies Inc.
- David Wilson
- dwilson&visntec.com
-31558
- David M Brooke
- David M Brooke
- mail&davidmbrooke.co.uk
-31559
- pathSolutions
- Tim Titus
- ttitus&pathsolutions.com
-31560
- ARTEC Computer GmbH
- Jerry Artishdad
- admin&artec.org
-31561
- Telecomproduct
- Demidenko Sergey
- sd&tpr.ru
-31562
- Backcountry.com
- Ben Preston
- bpreston&backcountry.com
-31563
- HGST
- Takashi Mine
- takashi.mine&hitachigst.com
-31564
- Chainzone Tech. Ind.
- Yanglei
- yanglei&chainzone.com
-31565
- Nurminen Logistics Oyj
- Topi Tukiainen
- Topi.Tukiainen&nurminenlogistics.com
-31566
- Ytti
- Saku Ytti
- pem&ytti.fi
-31567
- EURECA
- Alexander Marugin
- a_marugin&eureca.ru
-31568
- Licensys Pty Ltd
- Barry Kruger
- bkruger&licensys.com
-31569
- Branden Schneider
- Branden Schneider
- branden_ny&yahoo.com
-31570
- Gnodal
- Tony Ford
- tony&gnodal.com
-31571
- Narratone Pte Ltd
- Joseph Loh
- joseph&narratone.com
-31572
- Consolidated Smart Systems
- Matt Bregger
- mattb&consolidatedsmart.com
-31573
- Peel District School Board
- Paul Kimberley
- Paul.Kimberley&peelsb.com
-31574
- Security Monster
- Sebastiaan Mangoentinojo
- sebastiaan&securitymonster.net
-31575
- InnoGames GmbH
- Michael Krelin
- michael.krelin&innogames.de
-31576
- CTC Engineering Ltd.
- Mihail Borisov
- michail&ctc-bg.com
-31577
- 7Safe Ltd.
- Jordan Hrycaj
- Jordan.Hrycaj&7Safe.com
-31578
- A2x Trefzer Consulting
- Benedikt Trefzer
- trefzer&a2x.ch
-31579
- virgitech
- nassif alexan
- nalexan&virgitech.com
-31580
- Departamento de Engenharia Eletrônica - CEFET RJ
- Carolina Soares da Conceição
- caca_soares&yahoo.com.br
-31581
- REDDOXX GmbH
- Alexander Bauer
- alexander.bauer&reddoxx.com
-31582
- Caixa Geral de Depósitos
- Nuno Costa
- nuno.costa&cgd.pt
-31583
- AgilTech
- Victor Salaman
- salaman&elamal.com
-31584
- Ben Jen Online
- Ben Jen
- bjen&benjenonline-inc.com
-31585
- Umoe Communication
- Martin E. Koch
- enterprisenumber&tech.umoecom.no
-31586
- Teragram, A SAS Company
- Chris Heller
- heller&teragram.com
-31587
- Univ Community
- Weiyue Liu
- Weiyue.Liu&gmail.com
-31588
- IceWave
- Nicholas Hubbard
- nicholashubbard&icewave.net
-31589
- Axlon Electronics Corporation
- Tony Kao
- tonykao&axlon.com
-31590
- MRI Cardiac Services, Inc
- Dwight Ball
- dwight.ball&provaimages.com
-31591
- Digital Governance
- Andre Esser
- it-dept&digitalgovernance.co.uk
-31592
- Jump Trading, LLC
- Michael Wassong
- mwassong&jumptrading.com
-31593
- Electronic Child Health Network
- Nick Seward
- nick.seward&echn.ca
-31594
- Elm Technology
- Pedram Ghovonlou
- pedram&elmtech.com.au
-31595
- KGlobal Tech Co., Ltd.
- Kim Yeong Su
- kimch96&gmail.com
-31596
- OJSC iCFO
- Anton Siluyanov
- it&icfo.ru
-31597
- Global Real Estate And Technology Consortium, Inc.
- Corey Leong
- cleong&gr8c.org
-31598
- Grok-A-Lot, LLC
- Glen F. Marshall
- admin&grok-a-lot.com
-31599
- P0F Sistemske Storitve Grega Bremec s.p.
- Grega Bremec
- gregab&p0f.net
-31600
- Beijing TechSolute Technology Co., Ltd.
- Danffer Liu
- danfferliu&danfferliu.com
-31601
- DreamGarage Inc.
- Daisuke AIBA
- admin&dreamgarage.jp
-31602
- Raying Technology Co., Ltd.
- Wu Yuehua
- wuyuehua5&gmail.com
-31603
- Information Society Development Committee under the Government of the Republic of Lithuania
- Vaidotas Ramonas
- v.ramonas&ivpk.lt
-31604
- Sunny Multimedia Co.,ltd
- Wei lin
- Daemon&sunnymmc.com
-31605
- Ekahau Oy
- Tomi Heinonen
- tomi.heinonen&ekahau.com
-31606
- LUMINOUS POWER TECHNOLOGIES PVT LTD
- RICHIE SARASWAT
- richie.saraswat&luminousindia.com
-31607
- eBox technologies S.L
- Javier Uruen Val
- juruen&warp.es
-31608
- Emaging
- Ivan Havlicek
- ivan.havlicek&gmail.com
-31609
- Lisp
- Chun Tian (binghe)
- binghe.lisp&gmail.com
-31610
- Noisivne
- Dimy Jeannot
- it&noisivne.com
-31611
- California Creativity Association, Inc.
- Bob Burns
- wm0809&californiacreativity.org
-31612
- Roessner-Network-Solutions
- Christian Roessner
- christian&roessner-net.com
-31613
- Extrawerk
- Lars-Helge Wilbrandt
- l.wilbrandt&extrawerk.de
-31614
- Ubuntu NL
- Dennis Kaarsemaker
- dennis&ubuntu-nl.org
-31615
- LEVELER, LLC
- M. JANUSZEWSKI
- info&levelerllc.com
-31616
- LINUX INK
- Oleg Sadov
- sadov&linux-ink.ru
-31617
- Celeste
- Alexandre Boulanger
- sysadmin&celeste.fr
-31618
- Cloudpic
- Mike Chang
- pen&cloudpic.com
-31619
- Editora Abril S.A.
- Alexandre Bressane
- alexandre.bressane&abril.com.br
-31620
- The J.M. Smucker Company
- Don Iles
- don.iles&jmsmucker.com
-31621
- MoCA - Multimedia over Coax Alliance
- Gary Langille
- Gary.Langille&echostar.com
-31622
- Meddius LLC
- Michael Chapman
- michael.chapman&meddius.com
-31623
- Information Security Corp.
- Michael J. Markowitz
- markowitz&infoseccorp.com
-31624
- Premier Heart
- Michael Graziano
- admin&premierheart.com
-31625
- Astron-Fortis Inc
- Ville Walveranta
- vwal&astronfortis.com
-31626
- Lee-Dickens Ltd
- Simon Andrews
- simona&lee-dickens.co.uk
-31627
- Preferred Voice, Inc.
- Bern Bareis
- bbareis&preferredvoice.com
-31628
- Opticom Communications LLC
- Susana Tinman
- iana&opticom.co.il
-31629
- fengyun.ltd
- Yu Fei
- yufeixiaoyu&gmail.com
-31630
- media concept GmbH
- Roland Köppe
- rkoeppe&mc-engineering.de
-31631
- Conseil Régional Nord - Pas de Calais
- DE ZORZI Livio
- l.dezorzi&nordpasdecalais.fr
-31632
- Shanghai Titan Technology Co., Ltd.
- Zu-xiong Qiu
- qiu1111&sh-titan.com
-31633
- Quickline Business AG (formerly 'EBM Telecom AG')
- Benjamin Schlageter
- benjamin.schlageter&business.quickline.ch
-31634
- ICT Embedded b.v.
- Jorg Wissink
- Jorg.Wissink&ict.nl
-31635
- TextFunnel
- Richard Smith
- operations&textfunnel.com
-31636
- Shanghai Colorful Magnetic Resonance Technology Co. Ltd.
- Yang Guang
- gyangc&online.sh.cn
-31637
- Peak Communications Ltd
- Nick Denby
- nick&peakcom.co.uk
-31638
- Indra Systems, Inc.
- Alfonso Urdaneta
- aurdaneta&indra-systems.com
-31639
- Litmus Logic
- James Ryan
- james&litmuslogic.com
-31640
- 7ia
- Alexander Bokovoy
- registry&7ia.org
-31641
- CFH Software
- Kees Helminck
- cfh&lansurvey.com
-31642
- Eurotech S.p.A.
- Mauro Barella
- m.barella&eurotech.it
-31643
- m-creations gmbh
- Kambiz Darabi
- darabi&m-creations.com
-31644
- Perthro Ltd
- James Beckett
- snmp&perthro.co.uk
-31645
- Network Critical
- Sam Battaglia
- sam&networkcritical.com
-31646
- Virgina Department of Motor Vehicles
- Christopher Nicholl
- christopher.nicholl&dmv.virginia.gov
-31647
- Ministerio de Defensa de la Nación
- Alina Di lernia
- webmaster&mindef.gov.ar
-31648
- HANGZHOU DPTECH Technologies Co., Ltd.
- Winnie Wan
- wannylan115&sina.com
-31649
- keksbude.net
- Tobias Hommel
- iana&keksbude.net
-31650
- Feline Soul Systems
- Bearcat M. Sandor
- bearcat&feline-soul.net
-31651
- W Key s.r.l.
- Andrea Borghi
- registry&wkey.it
-31652
- Arcadia Consulting
- Gonzalo Gómez García
- gonzalo&arcadiaconsulting.es
-31653
- Ing. Reinhard Hirz IT Services
- Ing. Reinhard Hirz
- pen&hirz.at
-31654
- EM Software & Systems
- Christian Nielsen
- cnielsen&emss.co.za
-31655
- Martek di Meucci Marco
- Marco Meucci
- info&martek.it
-31656
- Beijing Autelan Technologies Co Ltd.,
- Haiyang Ni
- nihy&autelan.com
-31657
- Infinitus d.o.o.
- Bojan Šernek
- bojan.sernek&infinitus-outdoor.com
-31658
- LightSoftware
- Luca Borghini
- Lukino2000&Gmail.com
-31659
- TurnovFree.net, Sdružení
- Zdeněk Styblík
- stybla&turnovfree.net
-31660
- eSure Labs, Inc.
- Verrol L. Adams
- verrola&esurelabs.com
-31661
- Logilab, SA
- Ludovic Aubry
- sysadmin&logilab.fr
-31662
- TIGNET Open Source Solutions
- Thomas Martin
- ciscofu&gmail.com
-31663
- New York State Assembly
- Matt Garretson
- iana&assembly.state.ny.us
-31664
- Bravo Tech, Inc.
- Xun Gu
- info&bravotechinc.com
-31665
- StrongMail Systems Inc.
- Aaron Ferguson
- aferguson&strongmail.com
-31666
- AirCanopy Internet
- Kris Kenyon
- kkenyon&aircanopy.net
-31667
- Ministerstwo Sprawiedliwosci
- Szymon Jakubczuk
- jakubczuk&ms.gov.pl
-31668
- KRAFT Benjamin Jean
- KRAFT Benjamin Jean
- benj&bkraft.fr
-31669
- Tema Networks Ltd.
- Niko Jokinen
- niko.jokinen&temanetworks.com
-31670
- Jaworsito
- Daniel Jaworski
- daniel&jaworsito.pl
-31671
- Anunda Technology Co, Ltd.
- krit wongrujira
- kwkrit&gmail.com
-31672
- XORTEC
- David Fortier
- david.fortier&xortec.fr
-31673
- Datacenter Luxembourg
- Raoul Thill
- sysadmin&sysadmin.dclux.com
-31674
- Global Star Solutions ULC
- Eddie Jin
- eddie.jin&starsolutions.com
-31675
- coldspot.de
- Kevin Loehmann
- kevin.loehmann&coldspot.de
-31676
- Mantara Inc
- David Arnold
- sysadm-notify&mantara.com
-31677
- REMEC Broadband Wireless
- Cherice Jobmann
- cherice.jobmann&remecbroadband.com
-31678
- Tenalt d.o.o.
- Jure Kodžoman
- jure&tenalt.com
-31679
- droidnest.org
- Egor Medvedev
- dsx&droidnest.org
-31680
- Altor Networks
- Todd Ignasiak
- todd&altornetworks.com
-31681
- South African Post Office
- Martinus Scheffers
- Martinus.Scheffers&postoffice.co.za
-31682
- Audinate Pty Ltd
- Aidan Williams
- iana-snmp-pen&audinate.com
-31683
- community engineering gmbh
- Thomas Wichser
- tom&tom201.net
-31684
- EBM WEBSOURCING
- Gaël BLONDELLE
- gael.blondelle&ebmwebsourcing.com
-31685
- IDG GmbH
- Waldemar Cebulla, Norbert Ell
- norbert_ell&idg.de
-31686
- Harry Jede
- Harry Jede
- walk2sun&arcor.de
-31687
- Lorica Solutions
- David Straitiff
- dstraitiff&loricasolutions.com
-31688
- rtfmcomputing.com
- Tyson Boellstorff
- perlcat&alltel.net
-31689
- editspot, LLC
- Webmaster
- webmaster&editspot.com
-31690
- Sensorlogic, Inc
- Rich Lackey
- operations&sensorlogic.com
-31691
- FIMMG - Federazione Italiana Medici di Medicina Generale
- Lorenzo Cipriani
- lorenzo.cipriani&gruppocm.it
-31692
- Close Premium Finance
- Infrastructure Support
- mking&closepf.com
-31693
- MerlinTechs
- Shannon Mitchell
- shannonm&merlintechs.com
-31694
- Heilig Graf
- Steve Pouillon
- stevepouillon&telenet.be
-31695
- BNYConvergex Execution Solutions LLC
- Luca Mihailescu
- srt&bnyconvergex.com
-31696
- Haberler Enterprises Ltd
- Michael Haberler
- iana&mah.priv.at
-31697
- Peer 1
- Scott Clark
- sclark&peer1.com
-31698
- Bluemoon Games
- Christopher Mettin
- anno.1067&t-online.de
-31699
- Gymnasium Querfurt Broadcasting Channel
- Christopher Mettin
- cmettin&gqbc-online.com
-31700
- Ice House Productions
- Marshall Anschutz
- oid.iana&icehousepro.us
-31701
- Sonoa Systems
- Ganesan Vivekanandan
- ganesan&sonoasystems.com
-31702
- India Logics, LLC
- Eric Desgranges
- eric&vcardprocessor.com
-31703
- Institut D'Aéronomie Spatiale de Belgique
- Arnaud Lefebvre
- A.Lefebvre&aeronomie.be
-31704
- ASPICON GmbH
- Jochen Held
- support&aspicon.de
-31705
- lug.org.uk
- Hugo Mills
- hugo&lug.org.uk
-31706
- Torrenga Engineering, Inc.
- Brent A. Torrenga
- lists&torrenga.com
-31707
- Tamil IPTV Inc
- Ruban Selvarajah
- ruban&tamiliptv.tv
-31708
- Meddiff Technologies Pvt. Ltd. (formerly 'MedSphere Technologies Pvt Ltd')
- Tapesh K Agarwal
- contactus&meddiff.com
-31709
- Sistema FIESC
- Murilo Nunes Elias
- murilone&fiescnet.com.br
-31710
- Torrenga Surveying LLC
- Brent Torrenga
- lists&torrenga.com
-31711
- Mystiq Mobile Pte Ltd
- Madhan Dennis
- madhan&mystiqmobile.com
-31712
- gpf.me.uk
- Steven Carr
- gpf&gpf.me.uk
-31713
- Khipu Networks Ltd.
- Steven Carr
- steven.carr&khipu-networks.com
-31714
- national center for missing and exploited children
- Uriah robins
- Urobins&NCMEC.org
-31715
- Portware, LLC
- Ary Khatchikian
- mepshteyn&portware.com
-31716
- Wilder & Associates
- Roel Bondoc
- roel&wilder.ca
-31717
- Rogue Project Inc
- Jamie Robillard
- jrobillard&planttel.net
-31718
- Krausser EDV
- Eric Krausser
- eric&krausser-edv.de
-31719
- Programmer.com.hk
- Quentin Chung
- quentin.chung&programmer.com.hk
-31720
- Jan Dittberner IT-Consulting & -Solutions
- Jan Dittberner
- jan&dittberner.info
-31721
- ArgoSoft JSC
- Andrei Zelenkin
- andrewzelenkin&tut.by
-31722
- Spellman High Voltage Electronics Corporation
- David Kafrissen
- david&spellmanhv.com
-31723
- Communication Systems Company
- Ahmed Banihammad (Company supervisour: Laurent Bouillet)
- ahmad.khayyat&gmail.com
-31724
- Das Labor e.V.
- Daniel Otte
- daniel.otte&ruhr-uni-bochum.de
-31725
- E-Cert
- Gonzalo Paredes
- gparedes&e-certchile.cl
-31726
- Rancore Technologies (P) Ltd.,
- Somya Mishra
- somya.mishra&rancoretech.com
-31727
- U.S. Department of Energy
- Robert Patrick
- robert.patrick&hq.doe.gov
-31728
- Monografias.com
- Administrador Monografias.com
- administrador&monografias.com
-31729
- art of defence GmbH
- Alexander Meisel
- alexander.meisel&artofdefence.com
-31730
- MiMOMax Wireless Limited
- Dennis Aberilla
- dennis.aberilla&mimomax.com
-31731
- Sunwave Communications Co. Ltd.
- Bao Xianguo
- xianguo_bao&sunwave.com.cn
-31732
- DropFire, Inc.
- Gregory Harman
- greg&dropfire.com
-31733
- KEPID AMSTECH Co., LTD.
- Yong Sik, Ryu
- ysryu&amstech.co.kr
-31734
- Dayang Technology Development Inc.
- yanjiema
- admin&dayang.com.cn
-31735
- ZAO NPK Microtec
- Golovin Vladimir
- st&microtec.ru
-31736
- Filipstads kommun
- Roger Nordqvist
- roger.nordqvist&filipstad.se
-31737
- Digital Systems Ltd
- Daniel Kalchev
- daniel&digsys.bg
-31738
- S.C. LTHD Corporation S.R.L.
- Chis-Serban Dinu-Razvan
- csdr&lthd.com
-31739
- penagosg
- guillermo penagos
- penagosg&gmail.com
-31740
- University of Prince Edward Island
- John Cunningham
- jcunningham&upei.ca
-31741
- ProLogic, Inc.
- Mark Stahl
- mstahl&prologic-inc.com
-31742
- Avenue A | Razorfish
- Steve Craft
- steve.craft&aa-rf.com
-31743
- eXerp ApS
- Ole Husgaard
- osh&exerp.com
-31744
- ADESA, Inc.
- Rob McBroom
- rob.mcbroom&adesa.com
-31745
- Centro Federal de Educação Tecnológica de Pelotas
- Anderson Medeiros Gomes
- amg1127&cefetrs.tche.br
-31746
- Gemalto
- Edson Luiz Alves de Oliveira Junior
- edson.oliveira-external&gemalto.com
-31747
- AAP Communications, LLC
- Robert Williams
- it&aapcomm.com
-31748
- JED Capital, LLC
- Robert Williams
- it&jedcapital.com
-31749
- Need To Know News, LLC
- John Harada
- it&needtoknownews.com
-31750
- marcher.it
- Martin Marcher
- martin&marcher.it
-31751
- Burleson Technology Group, LLC.
- Cody Burleson
- cody&burlesontech.com
-31752
- Omniscient Technologies
- Todd Kover
- kovert&omniscient.com
-31753
- ALCEST'IS
- Abdellah LAHOUAOUI
- Abdellah.Lahouaoui&gmail.com
-31754
- Triwest Healthcare Alliance
- JR Ashby
- jashby&triwest.com
-31755
- LINK Lab.Inc.
- Shiro Chiba
- chiba&link-lab.co.jp
-31756
- GXMU(Guangxi Medical University)
- Yaowang Lin
- webmaster&mainbi.com
-31757
- Internet Telephony Users Association Inc.
- Duane Groth
- support&e164.org
-31758
- Infinova LLC
- Jeffrey Liu
- jl&infinova.com
-31759
- Stoo Networks
- Tim Stewart
- tim&stoo.org
-31760
- C-Matic Systems Ltd
- James Ashby
- james.ashby&cmatic.co.uk
-31761
- RFI Engineering B.V.
- Michel Stam
- mstam&rfi-engineering.com
-31762
- Fujian Star-net Communication Co.,Ltd
- Yuan Tao
- taoy.msn&live.cn
-31763
- Bitel Távközlés és Biztonságtechnika Kft
- Koós Sándor
- koos.s&bitel.hu
-31764
- inmedias.it Gesellschaft für Informationstechnologie mbH
- Mats Schwieger
- jms&inmedias.it
-31765
- Advance Display Technologies, Inc.
- Jody Thomas
- jody.thomas&adtimedia.com
-31766
- ShowIT
- Jay Templeton
- jay.templeton&showit.net
-31767
- Nootek
- Nick Tolstokulakov
- nick&nootek.ru
-31768
- SHARP Electronics (Europe) GmbH
- Stephan Rimpau
- stephan.rimpau&sharp.eu
-31769
- Kassenärztliche Vereinigung Bayerns
- Helmut Zühlke
- ito-unix&kvb.de
-31770
- Bachmann GmbH & Co KG
- Jens Matheis
- jm&bachmann.com
-31771
- eGenix.com Software, Skills and Services GmbH
- Marc-Andre Lemburg
- info&egenix.com
-31772
- International Paper
- Mark S. Johnson
- mark.johnson&ipaper.com
-31773
- GEWI Europe GmbH & Co. KG
- Hagen Geppert
- hagen.geppert&gewi.com
-31774
- RealTimeSites
- Felipe Gutierrez
- felipe&realtimesites.com
-31775
- Gellings CO
- C.O. Gellings
- information&cgellings.nl
-31776
- TheLogInn
- Flip Vernooij
- flip&theloginn.nl
-31777
- DATAPREV - Previdencia Social
- Jarbas Peixoto Júnior
- jarbas.junior&gmail.com
-31778
- SMHS Ltd
- OID Registry Manager
- oidmanager&smhs.co.uk
-31779
- Innocom-arcodan
- Soeren Straarup
- soeren.straarup&innocom.dk
-31780
- Acipia
- Jonathan SEMCZYK
- support&acipia.fr
-31781
- TG Mess-, Steuer- und Regeltechnik GmbH
- Julian Rath
- rath&technikgruppe.com
-31782
- SyferLock Technology Corporation
- Abu Marcose
- support&syferlock.com
-31783
- MetroSouth Medical Center
- LeAndre Jones
- ldjones&metrosouthmedicalcenter.com
-31784
- EndlerNET GmbH
- Matthias Endler
- iana-pen&endlernet.com
-31785
- Derouineau
- Aurélien Derouineau
- aurelien&derouineau.com
-31786
- Zdravstveni dom Ljubljana
- Robert Ludvik
- robert.ludvik&zd-lj.si
-31787
- Syren Technologies
- LeAndre Jones
- support&syrentec.net
-31788
- QSG Verkehrstechnik GmbH
- Dirk Thamer
- thamer&qsg-verkehrstechnik.de
-31789
- HD Software & Systeme GmbH
- Dirk Thamer
- dirk.thamer&hd-systeme.de
-31790
- Compressus, Inc
- Kelli Mierzwa
- kmierzwa&compressus.com
-31791
- County of Erie, New York
- Michael Schenkel
- michael.schenkel&erie.gov
-31792
- Adways Co., Ltd.
- Yusuke Watase
- isys-products&adways.net
-31793
- TEMIX S.p.A.
- Gaetano Calabro
- g.calabro&temix.it
-31794
- Infinovate, Inc.
- David Stahl
- david.stahl&infinovate.com
-31795
- Board of Regents of The University System of Georgia
- Todd Watson
- nic-admin&usg.edu
-31796
- IdentiPHI, Inc
- Cory Womacks
- identiphi_iana_pen&telus.net
-31797
- Neetze Online
- Heiner Ohm
- ho&neetze.net
-31798
- Rewse Lab.
- Tatsunori Shibata
- info&rewse.jp
-31799
- TreStore GmbH
- Jens Witte
- jens.witte&trestore.de
-31800
- VividLogic Inc
- Ram Balaraman
- ram&vividlogic.com
-31801
- Biap, Inc.
- Aaron Johnson
- support&biap.com
-31802
- Aquasys
- George Mengelberg
- george.mengelberg&aqua-sys.org
-31803
- Secureware Inc
- Hiroki Nogawa
- nogawa&secure-ware.com
-31804
- Office of State Revenue
- Paul Gonsior
- paul.gonsior&osr.nsw.gov.au
-31805
- IBA CZ, s.r.o.
- Jiri Syrovy
- jiri.syrovy&ibacz.eu
-31806
- VirtualTec Solutions AG
- Markus Wild
- info&virtualtec.ch
-31807
- Universidad de Caldas
- Manuel Felipe Lopez Correa
- felipe&ucaldas.edu.co
-31808
- Togliatti State University
- Mikhail Titarenko
- mihail&tltsu.ru
-31809
- Josef Lux und Sohn Baumeister GmbH
- Martin Milinovsky
- system&luxbau.at
-31810
- Cinterion GmbH
- Dr. Iavor Antonov
- Iavor.Antonov&cinterion.com
-31811
- IKOR Products GmbH
- Henry Reckewitz
- support&ikor.de
-31812
- United Tote Co.
- Phillip R. Paradis
- phillip.paradis&unitedtote.com
-31813
- Dikmenoglu
- Yusuf Dikmenoglu
- mail&dikmenoglu.de
-31814
- Amway of Australia
- Craig Hamilton
- a2kwebadmin&a2k.com.au
-31815
- BEAR Solutions (Australasia) Pty Ltd
- Wayne Richard Morrison
- waynem&bearsolutions.com.au
-31816
- PrintFleet Inc.
- Wallace Welles
- wwelles&printfleet.com
-31817
- Connexis Kft.
- László Vasváry
- vasvary&connexis.com
-31818
- Droitech eSolutions Private Limited
- Dipesh Sharma
- info&droitech.com
-31819
- CHENGBO NETWORK TECHNOLOGY CO. ,LTD
- shijun.cao (曹世军)
- caoshijun&kcsji.com
-31820
- Federal Prison Industries (UNICOR)
- Manuel Martinez
- mmartinez&central.unicor.gov
-31821
- eonBIT as
- Stian Strandem
- snmp.pen&eonbit.com
-31822
- X2B Security
- Matthias Scherrer
- matmei&yahoo.com
-31823
- Schweitzer Engineering Laboratories, Inc.
- Jason Kraft
- infosec&selinc.com
-31824
- Solar Technology, Inc
- Tom Rothamel
- tom&rothamel.us
-31825
- HTW Dresden FB Informatik
- Thomas Schubert
- thom_schu&gmx.de
-31826
- Logic United GmbH
- Dominik Westner
- westner&logicunited.com
-31827
- Sharedband Limited
- Paul Evans
- paul.evans&sharedband.com
-31828
- Pegasus Telecom
- Juliao Braga
- jb&pegasus.com.br
-31829
- MIPIH
- Equipe CSIM / MIPIH
- csim-infrastructure&mipih.fr
-31830
- deCODE genetics
- Eirikur Hjartarson
- Eirikur.Hjartarson&decode.is
-31831
- Ad Hoc Network srl
- Primo Rossi
- info&adhoc.net
-31832
- Los Angeles Community College District
- Jorge Quinones
- quinonj&email.laccd.edu
-31833
- ACI Worldwide Inc
- Murray Chapman
- murray.chapman&aciworldwide.com
-31834
- BecauseWeCan.at
- Thomas Fritz
- fritztho&gmail.com
-31835
- John Berninger
- John Berninger
- john&ncphotography.com
-31836
- DTS Systeme GmbH
- Felix J. Ogris
- hostmaster&dts-online.net
-31837
- Medinformatix Incorporated
- Nak Phaingdy
- nak&medinformatix.com
-31838
- ITech ROMANIA Ltd.
- Cristian MOHR
- Cristian.Mohr&ITechROMANIA.com
-31839
- Gridiron Systems Inc.
- David Korz
- dkorz&gridironsystems.com
-31840
- ChoicePoint Asset Company LLC
- Vic Bancroft
- Vic.Bancroft&Choicepoint.Com
-31841
- University of Western Macedonia
- Panagiotis Voutskidis
- pvoutskidis&uowm.gr
-31842
- e2E Services Limited
- Mr Alan Hughes
- alanhughes&e2eservices.co.uk
-31843
- GUISYS CORPORATION
- Mike Petersen
- mbp&guisys.com
-31844
- Satellite Systems Corporation
- Mark Kelso
- mkelso&satsyscorp.com
-31845
- Dans Rock Electronics
- Marlon L Kasekamp
- engineering&dansrockelectronics.com
-31846
- Wimba
- System operations
- sysops&wimba.com
-31847
- Bejing XCZY networks Inc.
- Chen.Yaping
- chenyaping&bjxczy.com
-31848
- Sherman Finanial Group LLC
- Bob Banasik
- pki&sfg.com
-31849
- Jacobsson Programutveckling
- Oscar Jacobsson
- oscar.jacobsson&gmail.com
-31850
- OTN Systems NV
- Patrick Van der Linden
- patrick.van_der_linden&otnsystems.com
-31851
- WH-Netz - Verein fuer Netzwerksicherheit und Technologietransfer e.V.
- Damian Philipp
- kontakt-iana&wh-netz.de
-31852
- Pirean Ltd.
- Mike Cartwright
- mike.cartwright&pirean.com
-31853
- LLC Mail.Ru
- Alexander Bykov
- bykov&corp.mail.ru
-31854
- Stix AS
- Christopher Rasch-Olsen Raa
- christopher&stix.no
-31855
- Plusnet plc
- Plusnet Network Operations Team
- noc&plus.net
-31856
- Wycliffe Bible Translators USA
- Peter Reilly
- preilly&wycliffe.org
-31857
- Tirepiste
- Daniel Hokka Zakrisson
- daniel&hozac.com
-31858
- Intellimedia Systems Ltd
- Richard Hosking
- hostmaster&intellimediasystems.com
-31859
- HFR,Inc
- Shin Myong-Ha
- mhshin&hfrnet.com
-31860
- Science and Technology Facilities Council
- Ian Johnson
- ian.johnson&stfc.ac.uk
-31861
- embinet GmbH
- Stephan Eisvogel
- info-iana&embinet.de
-31862
- Infinity Trust SRL
- Chifu Valerian
- vchifu&infinitytrust.ro
-31863
- Australian Research Collaboration Service
- Professor Anthony Williams
- anthony.williams&arcs.org.au
-31864
- kunden-server.org Network Services
- Markus Petzsch
- markus&petzsch.eu
-31865
- Durchmesser
- Marius Rieder
- marius.rieder&durchmesser.ch
-31866
- st. bernard software
- Robert Scott
- rscott&stbernard.com
-31867
- Unassigned
-
- ---none---
-31868
- The Village Group, Inc.
- Wes Kussmaul
- wes&authentrus.com
-31869
- Empowering Media, Inc.
- Lawrence Ludwig
- larrylud&gmail.com
-31870
- Minkamau
- Hanspeter Uebelbacher
- einar&bluewin.ch
-31871
- MO Technologies
- Mark G. Owens
- owens&motech.net
-31872
- Nanzan Gakuen
- Yoshihiro Mizota
- inet-admin&nanzan.ac.jp
-31873
- Elanti Systems Inc.
- Terry Dawson
- terry.dawson&elantisystems.com
-31874
- Alpha Networks Inc.
- Celina Hsieh
- Celina_Hsieh&alphanetworks.com
-31875
- ShangHai XinLan Electronic Technology Co.,Ltd.
- Liang Gao
- gl1982&live.cn
-31876
- de Koomen
- Marco de Koomen
- iana&dekoomen.nl
-31877
- Karel Electronics
- Sinan İkeda
- sinan.ikeda&karel.com.tr
-31878
- Chamaeleon AG
- Florian Kluth
- rhn&chamaeleon.de
-31879
- TelASIC Communications
- CJ Wang
- cjwang&telasic.com
-31880
- Programma Verwijsindex
- M. Dell
- mike.dell&ictu.nl
-31881
- GGH Engineering s.r.l.
- Paolo Signor
- p.signor&gghsrl.com
-31882
- Metrotek
- Stanislav Bulov
- bulov&metrotekcom.ru
-31883
- Openstat (formerly 'Vega')
- Anton Yuzhaninov
- iana-pen&openstat.com
-31884
- Kuipers Electronic Engineering
- Marco de Koomen
- kee&tmx.nl
-31885
- ProDaM
- Björn Müller
- bjoern.mueller&prodam.de
-31886
- Syntactic Sugar s. r. o.
- Miroslav Stepanek
- miroslav.stepanek&syntacticsugar.com
-31887
- Schering-Plough Corporation
- Sean Finnerty
- sean.finnerty&spcorp.com
-31888
- AdminDB.org
- Herbert Specht
- office&admindb.org
-31889
- Apantac LLC
- Thomas Tang
- thomas.tang&apantac.com
-31890
- Chicken and Porn
- Allan Clark
- allanc&chickenandporn.com
-31891
- Universidade do Estado do Rio de Janeiro
- Alexandre Sztajnberg
- alexszt&uerj.br
-31892
- T3G Technology Co.,Ltd
- Yueliang Zong
- zong_yl&163.com
-31893
- NelNet
- Hinrich Eilts
- Hinrich.Eilts&nelnet.de
-31894
- RPBUS LLC
- Ron Svedersky
- ron&rpbus.com
-31895
- Chita Medias Network INC.
- Shinkai Masatomo
- shinkai&medias.co.jp
-31896
- Doxense SARL
- Christophe Chevalier
- chevalier&doxense.com
-31897
- Knowledge Powered Solutions
- Neil Howard
- domains&kpsol.com
-31898
- bit4id
- Antonio Chello
- info&bit4id.com
-31899
- CS Group - Puerto Rico
- Jose E. Calderon
- jecalderon&csgrouppr.com
-31900
- Tarleton State University
- James Wiley
- NetAdmin&Tarleton.edu
-31901
- Backstop Solutions Group
- John Skopis
- jskopis&backstopsolutions.com
-31902
- Ann Arbor Public Schools
- Ed Cline
- clinee&aaps.k12.mi.us
-31903
- Global Information Technology, Inc
- Huu Do
- huu.do&globalit-i.com
-31904
- Mandli Communications, Inc.
- D.J. Nephew
- djnephew&mandli.com
-31905
- Springdale Public Schools
- Albert Crosby
- acrosby&sdale.org
-31906
- NMI InfoSecurity Solutions
- Andrew T. Robinson
- iana&nmi.net
-31907
- Dimenzio Informatika Ltd.
- Sandor Hincs
- shincs&dimenzio.com
-31908
- Orange Jordan
- Qusai Jadoun
- qusai.jadoun&orange-jtg.jo
-31909
- Textiel Verhaeghe BVBA
- Pieter Verhaeghe
- pieter&verhaeghe-textiel.be
-31910
- Haley Limited
- Nicholas Cull
- nicholas.cull&haley.com
-31911
- Mine Site Technologies Pty Ltd
- Chris Snell
- c.snell&minesite.com.au
-31912
- Gyventoju registro tarnyba prie Lietuvos Respublikos Vidaus reikalu ministerijos
- Marija Norkeviciene
- grt&vrm.lt
-31913
- Smith Micro Software, Inc.
- David Sperling
- dsperling&smithmicro.com
-31914
- AFCC Inc.
- Erik Little
- erik&afccinc.com
-31915
- Nstrument, Inc
- Craig Roffers
- croffers&nstrument.net
-31916
- Exatrol Corporation
- David Sharp
- ianasnmp&exatrol.com
-31917
- Tian Di Ying Cai(SinoProfessional) Ltd.
- Li Chang Geng
- LRGCC&YAHOO.COM.CN
-31918
- JSC „Izhevskiy Radiozavod“
- Alexander Kurko
- kurko&irz.ru
-31919
- Emerion.com
- Philipp Marek
- philipp.marek&emerion.com
-31920
- PHARMDATA,s.r.o.
- Michal Rezny
- rezny&pharmdata.cz
-31921
- STS GROUP SA
- Michel Gumilar
- michel.gumilar&group-sts.com
-31922
- Keeneo SAS
- Alberto Avanzi
- alberto.avanzi&keeneo.com
-31923
- Frontier Electronic Systems Corp.
- Reagan Thomas
- rthomas&fescorp.com
-31924
- DmitryKulgavy
- Dmitry Kulgavy
- dkulhavy&gmail.com
-31925
- Miyowa
- Laurent Labatut
- llabatut&miyowa.com
-31926
- Siklu Communication LTD
- Lior Mordechay
- lior.m&siklu.com
-31927
- SQdata
- Norbert Thiebaud
- norbert&sqdata.com
-31928
- Q-Industries, Inc.
- Tony Czeh
- pczeh&q-industries.com
-31929
- AKUA Corp
- Greg Kerr
- Greg.Kerr-oid&akua.com
-31930
- Wiinz Ltd
- Philip Bergen
- philip&wiinz.com
-31931
- CLERTECH.COM,INC
- MANETIRONY CLERVRAIN
- monti&clertech.com
-31932
- 4IPNET, INC.
- Cadon Sheu
- mis&4ipnet.com
-31933
- Powerbox Australia
- Peter Keeler
- design&powerbox.com.au
-31934
- Getronics Pinkroccade Healthcare BV
- M.G.J.M. Lenferink
- marcel.lenferink&getronics.com
-31935
- Younou, Inc.
- Michael Duff
- hostmaster&younou.com
-31936
- Inventum Technologies Private Limited
- Padam Jeet Singh
- padam.singh&inventum.net
-31937
- NAW Enterprises Inc
- Trevor Davis
- tdavis&new-atom.net
-31938
- anderScore GmbH
- Jan Luehr
- jan.luehr&anderscore.com
-31939
- rkirkpat.net
- Ryan Kirkpatrick
- penadmin&rkirkpat.net
-31940
- TV1.DE
- Michael Fink
- iana&tv1.de
-31941
- EcoliHub
- Ms. Dawn Whitaker
- dwhitaker&purdue.edu
-31942
- AKRUPP Networking
- Andreas Krupp
- AndreasKrupp&gmx.net
-31943
- Clemens Fink
- Clemens Fink
- iana.oid&clez.net
-31944
- ish group pty ltd
- Ari Maniatis
- ari&ish.com.au
-31945
- Advanced Powers Merchant Empires
- Brian Zablocky
- zabmilenko&gmail.com
-31946
- Elenos Srl
- Massimo Liggio
- m.liggio&elenos.com
-31947
- Yomu Project
- Philipp Kaluza
- yomu-maint&yomu.de
-31948
- RC Alltech Power Systems Pvt Ltd
- I.Nagaraju
- rcalltechups&rcalltechups.com
-31949
- Spikelops
- Andrew Hepburn
- spike&spikelops.com
-31950
- Nextivity, Inc.
- Curtis Clinton
- cclinton&nextivityinc.com
-31951
- Organizacion de Servicios Directos Empresarios
- Juan Ignacio Narvaiz
- juan.narvaiz&osde.com.ar
-31952
- Miroslaw Lach
- Miroslaw Lach
- iana&lach.waw.pl
-31953
- Markus Falb
- Markus Falb
- markus.falb&fasel.at
-31954
- E-smile Co., Ltd.
- Hideo Saito
- saito&e-smile.ne.jp
-31955
- Prolar Corporation
- Engineering Department
- abuse&prolar.net
-31956
- GuangZhou E-Standard Software Technology Co.,Ltd.
- Yin Zhongbin
- yzbin&126.com
-31957
- TSDA - Tecnologia e Soluções Digitais Aplicadas LTDA
- Fernando Garcia Pina
- fernando&tsda.com.br
-31958
- INDUSTRONIC Industrie-Electronic GmbH & Co. KG
- Wilfried Lenz
- wilfried.lenz&industronic.de
-31959
- EDV-Beratung Robert Velter
- Robert Velter
- Robert&Velter.de
-31960
- Altech ISIS
- Stefan Burwitz
- burwitzs&altechisis.com
-31961
- PubliTronic bv
- Jeroen Domburg
- jeroen&publitronic.nl
-31962
- Flybe
- Nathan Burden
- nathan.burden&flybe.com
-31963
- BEJING Tongtian Century Technology CO.LTD
- Yang Xiaofei
- xfyang1973&hotmail.com
-31964
- chengdu goldtel communication (group) co.,ltd
- jichanghu
- jch_zxc&yahoo.com.cn
-31965
- PGE Gornictwo i Energetyka S.A.
- Pawel Koc
- pawel.koc&bot.pl
-31966
- Lampe-Batkin Associates, Inc.
- Adam Batkin
- adam&batkin.net
-31967
- Thomas Production Company, L.L.C.
- Colin Thomas
- colin.thomas&thomasproduction.us
-31968
- Datum Systems, Inc.
- Michael Boutte
- mike&datumsystems.com
-31969
- Gradwell dot com Ltd
- Stuart Herbert
- stuart.herbert&gradwell.net
-31970
- Siegel Daten- und Anwendungsservice
- Stefan Siegel
- iana&sdas.de
-31971
- MQuest S.A.
- Claudio Latorre
- snmp&mquest-technologies.com
-31972
- Gruppo Software Oy
- Mikko Ahonen
- info&grupposoftware.com
-31973
- thejof.com
- Jonathan Lassoff
- jof&thejof.com
-31974
- Cavazza Anna Sas
- Giacomo Cesari
- giacomocesari&tiscali.it
-31975
- Cable Vision Electronics Co., Ltd.
- Kevin S.H. Huang
- kevinhuang&cable-vision.com.tw
-31976
- INTEG Process Group, Inc.
- Richard Shulkosky
- rshulkosky&integpg.com
-31977
- Saia-Burgess Controls AG
- Schneeberger Francis
- francis.schneeberger&saia-burgess.com
-31978
- Forticom
- Kristijonas Siaulys
- kristijonas&forticom.lt
-31979
- AltimatOS
- Gary Greene
- greeneg&altimatos.com
-31980
- Melog.com
- Radomir Klacza
- rklacza&melog.com
-31981
- Hongdian Technologies
- Xiao Gong
- xgong&hongdian.com
-31982
- ORNL Federal Credit Union
- Michael West
- mwest&ornlfcu.com
-31983
- FOUGEROLLE
- Pascal HOYAU
- pascal.hoyau&fougerolle-fr.com
-31984
- Ericsson Australia Pty. Ltd.
- Lindon Parker
- lindon.parker&ericsson.com
-31985
- Syphan Technologies
- Carl Sherratt
- carl&syphan.com
-31986
- GOL MOBILE PRODUTOS E SERVIÇOS DE TECNOLOGIA DA INFORMAÇÃO LTDA.
- Reinaldo Mello
- reinaldo&golmobile.com.br
-31987
- Splatterladder
- Torsten Sachse
- proddi&splatterladder.com
-31988
- MEN Mikroelektronik Nuernberg GmbH
- Detlev Schaadt
- detlev.schaadt&men.de
-31989
- EverMAX s.r.o.
- Martin Zizka
- zizka&evermax.cz
-31990
- Continental AG
- Klaus Steger
- Klaus.Steger&continental-corporation.com
-31991
- TOSCO CORPORATION
- Toru Uetani
- toru.uetani&tosco.co.jp
-31992
- Oceana Sensor Module
- Jens Hult
- jhult&oceanasensor.com
-31993
- Parinya Software
- Parinya Thipchart
- thipchart&gmail.com
-31994
- NxGen Communications Pte Ltd
- Lim Kheng Yong
- khengyong.lim&nxg-c.com
-31995
- National Bank of Poland
- Jacek Skibinski
- jacek.skibinski&nbp.pl
-31996
- Brian Thomas Matthews Limited
- Brian Matthews
- brian&btmatthews.com
-31997
- Cellusys
- Alan Murphy
- alan&cellusys.com
-31998
- NOVA KREDITNA BANKA MARIBOR d.d.
- Andrej Radosevic
- aradosevic&nkbm.si
-31999
- Adcon Telemetry GmbH
- Robert Ernst
- r.ernst&adcon.at
-32000
- Ekstrem Bir Bilgisayar
- Ozcan Oksuz
- oksuz&bilkent.edu.tr
-32001
- Convercom AG
- Marcel Haldemann
- marcel.haldemann&convercom.ch
-32002
- Ba-Bi Mobile Media Co. Ltd.
- Yan Leung
- yanl&ba-bi.com
-32003
- herbstwest.de
- Alvaro Aguilera
- alewar&herbstwest.de
-32004
- On-Waves ehf
- Roch-Alexandre Nomine
- roch&on-waves.com
-32005
- Obra Social de Empleados Publicos de Mendoza (OSEP)
- Leandro Santinelli
- lsantinelli&osep.mendoza.gov.ar
-32006
- Fashion Institute of Technology of the State University of New York
- Bryan Gucwa
- bryan_gucwa&fitnyc.edu
-32007
- Innovative Labs
- Joaquin Penroz Olavarría
- jpenroz&grupoinl.com
-32008
- Digital Rapids Corp
- Brian Stevenson
- brian&digital-rapids.com
-32009
- OuterNet
- Jamie Pugh
- jamie&outer.net
-32010
- Pixelworks
- Nick Huang
- NHuang&pixelworks.com
-32011
- Kabel Deutschland GmbH
- Hadmut Danisch
- hadmut.danisch&kabeldeutschland.de
-32012
- Penango, Inc.
- Sean Leonard
- oid+iana&penango.com
-32013
- Intranet Solution
- Paul Kumlin
- paul.kumlin&itsol.fi
-32014
- ESAC
- Salvatore Cataldi
- salvatore.cataldi&esacsrl.com
-32015
- ExtraHop Networks, Inc.
- Jesse Rothstein
- hostmaster&extrahop.com
-32016
- Latvia University of Agriculture
- Aldis Berzins
- aldis&llu.lv
-32017
- LinQuest Corporation
- Naveen Reddy
- naveen.reddy&linquest.com
-32018
- Law Offices Of Roger E. Naghash
- Roger E. Naghash
- ren&lawfirm4u.com
-32019
- Intellon Corporation
- Charles Maier
- charles.maier&intellon.com
-32020
- doudemoii
- Hideo Saito
- hideo&doudemoii.net
-32021
- Positron Inc.
- Jean-Francois Mailhot
- jfmailhot&positronaccess.com
-32022
- Pegatron Computer Inc.
- Hausen Lo
- hausen_lo&pegatroncorp.com
-32023
- American Clean Air, Inc. (formerly 'XeNSiiS')
- Jeff Doyle
- webmaster&americancleanair.net
-32024
- Applied Polymorphism
- Khaled Atiyeh
- khaled_Atiyeh&hotmail.com
-32025
- Primal Research
- Randel Anderson
- anderson&primalresearch.com
-32026
- Sigma ITS Co., Ltd.
- Yasutatsu Arai
- arai-yasutatu&sigmaits.jp
-32027
- Edvina AB
- Olle E Johansson
- info&edvina.net
-32028
- Tray International Services and Administration (Pty) Ltd
- Benjamin Michel
- benjamin.michel&tray-international.com
-32029
- The Rafferty Patent Law Firm, PC
- Ryan Rafferty
- mail&raffertyfirm.com
-32030
- Commodity Systems
- André Gentil
- agentil&commodity.com.br
-32031
- XITIJ INDIA
- Bhavinkumar Patel
- bhavin&xitij.net
-32032
- DWI Technologies
- Daniel Wamara
- dwamara&dwitech.com
-32033
- Apfelwald
- Florian Buchwald
- florian.buchwald&apfelwald.net
-32034
- Finnsat Ltd.
- Paul Kumlin
- it&finnsat.fi
-32035
- ISEN Consulting and Services
- Ken Xing
- kenxing&isenconsulting.com
-32036
- Borders Group Inc.
- Art Hill
- networkservices&bordersgroupinc.com
-32037
- Commerce Lab
- Yaroslav Tarasenko
- ytarasenko&gmail.com
-32038
- TELZAS
- Tomasz Smialkowski
- tomasz.smialkowski&telzas.com.pl
-32039
- Total Computer Kft.
- Andras Herczig
- office&rendszergazdak.hu
-32040
- Tecno&Logic Consulting
- Sergio Ninotti
- s.ninotti&tecnoandlogic.it
-32041
- Association Paris-Montagne
- Georges Racinet
- georges.racinet&paris-montagne.org
-32042
- Virginia Community College System
- Christopher Glaze
- cglaze&vccs.edu
-32043
- Hacklab Toronto Club Inc.
- Owen Jacobson
- owen.jacobson&grimoire.ca
-32044
- IVOCS
- Gerard Havermans
- gerard.havermans&ivocs.com
-32045
- Avanquest Software
- Kamel Messaoudi
- kmessaoudi&avanquest.com
-32046
- NetMatch
- Angelo Höngens
- systeembeheer&netmatch.nl
-32047
- IDRIX
- Mounir IDRASSI
- mounir.idrassi&idrix.fr
-32048
- x9000.com Consulting Services Limited
- Paul Prior
- paulprior&x9000.com
-32049
- FacilityONE
- Dr Robin Alston
- ralston&facilityone.com
-32050
- PacketFlux Technologies, Inc.
- Forrest W Christian
- forrestc&packetflux.com
-32051
- SAMsystems GmbH
- Heribert Oechsler
- h.oechsler&samsystems.de
-32052
- Toronto Hydro Corporation
- Kshamit Dixit
- KDixit&torontohydro.com
-32053
- 3Y Power Technology, Inc.
- Jamie Chen
- jamie.chen&3ypower.com
-32054
- IPSL (formerly 'IPSL/CETP')
- Elisabeth Porteneuve
- elisabeth.porteneuve&latmos.ipsl.fr
-32055
- Service to Youth Council Inc
- Information and Communication Technology
- ict&syc.net.au
-32056
- Vietnam Datacommunication Company (VDC)
- Hung La The
- hunglt&vdc.com.vn
-32057
- Mercury Brain Systems
- Hidetoshi YOSHIMOTO
- yoshimoto&mercury-bs.com
-32058
- Vietnam Posts and Telecommunications Group (VNPT)
- Cuong Nguyen Xuan
- cuongnx&vnpt.com.vn
-32059
- Axis Network Technology Limited
- Roger McCalman
- snmp&axisnt.co.uk
-32060
- Babelway
- Mathieu Pasture
- mathieu.pasture&babelway.com
-32061
- VAS Latvijas Valsts radio un televizijas centrs
- Dmitrijs Telnovs
- dmitrijs.telnovs&lvrtc.lv
-32062
- Endersys
- Omer Faruk Sen
- info&endersys.com
-32063
- The eID Company
- Olivier LIBON
- olivier.libon&eidcompany.be
-32064
- state51
- Tomas Doran
- t0m&state51.co.uk
-32065
- jonEbird
- Jon Miller
- jonEbird&gmail.com
-32066
- EAFB - Escola Agrotécnica Federal de Barbacena-MG
- Herlon Camargo
- herlon.camargo&eafb.org.br
-32067
- IPaXiom Networks
- Saber Fakih
- saber&ipaxiom.com
-32068
- Scherndl
- Scherndl Bernhard
- admin&scherndl.at
-32069
- University of Laverne
- Mark Smith
- msmith&ulv.edu
-32070
- Laser Interferometer Gravitational-Wave Observatory (LIGO)
- Stuart Anderson
- anderson&ligo.caltech.edu
-32071
- Vialtus Solutions
- Roeland Mertens
- roeland.mertens&vialtus.com
-32072
- SEKIZAWA Corp. Inc.
- SEKIZAWA Kazuya
- k_sekizawa&nazca-net.co.jp
-32073
- MesaVida Information Management
- Robert Pettengil
- rcp&mesavida.com
-32074
- Prorail BV
- Chris Verhoef
- chris.verhoef&prorail.nl
-32075
- XS Networks BV
- Eric Veraart
- e.veraart&xsnetworks.net
-32076
- Connectical IT
- Andrés J. Díaz
- ajdiaz&connectical.com
-32077
- Sumlock Electronics (NE) Ltd
- John Osborne
- john.osborne&sumlock.co.uk
-32078
- Zentrum Servicios SA de CV
- William Anderson Carcamo
- william&zentrum.com.mx
-32079
- ESTeem Wireless Modems Inc.
- Brent Strecker
- support&esteem.com
-32080
- Baseline Communications
- Ingvild Sorteberg
- ingvild.sorteberg&baseline.no
-32081
- Cytec Industries Inc.
- Tariq Rahman
- tariq.rahman&cytec.com
-32082
- Unassigned
- Removed 2010-08-26
- ---none---
-32083
- HealthBlocks, Inc.
- Darin Greaham
- darin&healthblocks.com
-32084
- DeltaNode Ltd.
- Hans Schillstrom
- hans.schillstrom&deltanode.com
-32085
- E.ON Business Services GmbH
- Florian Dietrich, Peter Marschall
- pki&eon.com
-32086
- Fiberblaze
- Jakob Hilmer
- ftth&fiberblaze.com
-32087
- x:fer GmbH
- Markus Wernig
- info&xfer.ch
-32088
- College of Micronesia-FSM
- Kenneth Girrard
- kgirrard&comfsm.fm
-32089
- IMS Messsysteme GmbH
- Christian Thiel
- christian.thiel&ims-gmbh.de
-32090
- Waumovil
- Alsenitd Rausseo
- arausseo&waumovil.com
-32091
- AES Corporation
- Bill Goretkin
- goretkin&goretkin.com
-32092
- pragma people
- Alfonso Ferrigno
- a.ferrigno&gmail.com
-32093
- Engineering Systems Incorporated
- Sys Admin (Walter Hawkins)
- sysadmin&esi-il.com
-32094
- Vantage Tech Solutions
- Ishwara Kedila
- viked2000&yahoo.com
-32095
- Hosei University Research Institute, California
- Ivan Ho
- ivan&huric.org
-32096
- APD Technologies Inc.
- Anthony D'Souza
- support&apdtech.com
-32097
- Reorder
- Luca Bortot
- l.bortot&reorder.it
-32098
- Baseline IT
- Darren Hemphill
- darren&baselineit.co.za
-32099
- Midnight Oil Consulting, INC.
- Ketema Harris
- ketema&midnightoilconsulting.com
-32100
- Oversi Networks
- Ronen Itzhaki
- roneni&oversi.com
-32101
- Telinea d.o.o.
- Adi Vaizovic
- adi.vaizovic&telinea.com
-32102
- Tiaxa
- Raul Tremsal
- rtremsal&tiaxa.net
-32103
- New York Connect
- Eric Futch
- efutch&nyct.net
-32104
- InCharge Systems, Inc
- Patrick Looby
- patlooby&inchargesys.com
-32105
- Chief Security Officers, SA
- Fernando Cardoso
- noc&cso.pt
-32106
- HaDiKo e.V.
- Noël Weidenhammer
- vorstand&hadiko.de
-32107
- SOH Systems
- Scott O'Hare
- sohare&suffolk.lib.ny.us
-32108
- PLANAR LLC
- Vladimir Kuznetsov
- kuznetsov&planar.chel.ru
-32109
- ADC Co.,LLC
- Nevolin Anatoly
- permadc&mail.ru
-32110
- IPVox Sdn Bhd
- Kim Lindberg
- support&ip-vox.com
-32111
- Digital Solutions Ltd.
- Peyo Hristov
- peyo&digitalsol.net
-32112
- CENARIO systems GmbH (formerly 'VCS Computer-Systeme GmbH')
- Christian Kirschner
- iana.pen&vcs-web.de
-32113
- Vocord
- Alexey Kadeishvili
- alexey.kadeishvili&vocord.ru
-32114
- ORELIA SAS
- Christophe GLEMAREC
- christophe.glemarec&orelia.fr
-32115
- Zweites Deutsches Fernsehen Anstalt des oeffentlichen Rechts
- Tobias Botens
- zvd&zdf.de
-32116
- ACTIV Financial Systems, Inc.
- Simon Gray
- Simon.Gray&ActivFinancial.com
-32117
- Unassigned
- Returned 2008-10-20
- ---none---
-32118
- iWave Software
- Julius Clayton
- JClayton&iwavesoftware.com
-32119
- tera.sys hardware inc.
- Michael Habacher
- m.habacher&terasys.at
-32120
- Focon Electronic Systems A/S
- Frank B. Jakobsen
- SWLicense&focon.dk
-32121
- Armstrong Relocation
- Chris Phelan
- cphelan&goarmstrong.com
-32122
- Netafim Australia
- Aaron Were
- awere&netafim.com.au
-32123
- Sidlinger Computer Corporation
- Bruce D. Sidlinger
- bruce&sidlinger.com
-32124
- Stadtverwaltung Ludwigshafen
- Stefan Hofem
- stefan.hofem&ludwigshafen.de
-32125
- Small Media Giant Ltd
- Marek Zwiefka-Sibley
- marek&smallmediagiant.com
-32126
- Lietuvos archyvu departamentas prie Lietuvos Respublikos Vyriausybes
- Inga Petraviciute
- arch.dep&archyvai.lt
-32127
- Darkware Co.
- Gergely Szerovay
- gergely.szerovay&gmail.com
-32128
- Octotelematics S.r.l.
- Mario Pandolfi
- system&octotelematics.com
-32129
- Innovation Center Computer Assisted Surgery (ICCAS)
- Stefan Bohn
- stefan.bohn&iccas.de
-32130
- Data Elements for Emergency Department Systems (DEEDS)
- Kevin M. Coonan, MD
- kevin.coonan&gmail.com
-32131
- ESPN, Inc.
- Diane Larivee
- ESPN.SNMP.PEN.Management&espn.com
-32132
- UltraMonkey-L7 Project
- Kouhei TANUMA
- ultramonkey-l7-devel&lists.sourceforge.jp
-32133
- nativenet.ch
- Andreas Schuerch
- andreas.schuerch&nativenet.ch
-32134
- Zestysoft
- Ian Brown
- snmp&zestysoft.com
-32135
- WWK Lebensversicherung a.G.
- Jürgen Neumeier
- juergen.neumeier&wwk.de
-32136
- Hackburg
- Pierre Spring
- pierre.spring&caillou.ch
-32137
- TECNOSTEEL
- Giuseppe Basso
- marketing&tecnosteel.it
-32138
- Universidade Federal de Itajubá
- Pablo Marques de Oliveira
- pablo&unifei.edu.br
-32139
- Applitron Datasystem AB
- Niklas Hallqvist
- niklas&appli.se
-32140
- Chalmers University of Technology AB
- Chalmers NIC
- cth-nic&chalmers.se
-32141
- University of Maryland Center for Environmental Science
- Robert Sink
- sinkr&cbl.umces.edu
-32142
- Solid Solutions
- Satoshi ARA
- satoshi.ara&solids.jp
-32143
- Finsignia LLC
- Susan Potter
- susan.potter&finsignia.com
-32144
- TransHuman Design
- Ryan Rawdon
- ryan&soldat.pl
-32145
- Allergan, Inc.
- Tomasz Kozlowski
- kozlowski_tomasz&allergan.com
-32146
- Validian Corporation
- Peter Ritchie
- validian&peterRitchie.com
-32147
- Rob Johnson
- Rob Johnson
- RBJ1128&Gmail.com
-32148
- Individuali veikla
- Donatas Cerniauskas
- donatas&cerniauskas.com
-32149
- UXCG
- Corey Reynolds
- corey.reynolds&uxcg.com.au
-32150
- Zetron, Inc.
- Clark Emerick
- cemerick&zetron.com
-32151
- NerdGroup
- Fernando Ribeiro
- fernando.ribeiro&gmail.com
-32152
- Rearden Labs
- Ian Buckley
- ian.buckley&rearden.com
-32153
- damosys ltd.
- yun hyung taek
- yun0512&gmail.com
-32154
- iXuros Limited
- Brian Andrews
- info&ixuros.com
-32155
- Humana, Inc.
- Ajay Gupta
- agupta&humana.com
-32156
- TechCare
- Bertrand Allo
- bertrand.allo&tcare.fr
-32157
- IntelMS (Pty) Ltd.
- Darryl Garth Vine
- support&bluebird.co.za
-32158
- Alcom
- Jan-Erik Eriksson
- jee&alcom.ax
-32159
- Ancla Internet, S.L.
- Jordi Llonch
- llonchj&gmail.com
-32160
- Power Innovation Stromversorgungstechnik GmbH
- Ulrich Carstensen
- u.carstensen&powerinnovation.com
-32161
- Trilogy Communications Ltd
- Philip Luke
- phil.luke&trilogycomms.com
-32162
- Eutecert
- Jakubowski Marcin
- gcth&eutecert.eu
-32163
- Umber Systems
- Valia Osborne
- vai&umbersystems.com
-32164
- JWARE TECHNOLOGIES
- Francois SaintLu
- oid-pen&jwaretechnologies.com
-32165
- WestGrid
- Lixin Liu
- liu&sfu.ca
-32166
- Computacenter
- Steven Mai
- steven.mai&computacenter.com
-32167
- REDCOM Laboratories, Inc
- Daniel J Hazekamp
- it&REDCOM.com
-32168
- Fiber-Span
- James Stewart
- jstewart&fiber-span.com
-32169
- Turkcell Teknoloji Arastirma ve Gelistirme A.S.
- Ender ULUSOY
- ender.ulusoy&turkcellteknoloji.com.tr
-32170
- MAYA Group
- Christopher DeMarco
- it&maya.com
-32171
- SeaMicro Inc
- Carl Yang
- carl&seamicro.com
-32172
- Prefeitura Municipal de Franco da Rocha
- Rodrigo Campos
- rca.campos&gmail.com
-32173
- Royal Observatory Edinburgh
- Horst Meyerdierks
- network-manager&roe.ac.uk
-32174
- Universidade Estadual do Oeste do Paraná
- Ademar Feil
- ademar&unioeste.br
-32175
- Thieme ICT Services B.V
- Ron Offerman
- rofferman&ticts.nl
-32176
- GlobalTelecom
- Jongryong Kim
- jrkim&globaltelecom.co.kr
-32177
- Barossafarm
- Dominic Storey
- dstorey&barossafarm.com
-32178
- ecotel communication ag
- Dennis Kuchenbecker
- dennis.kuchenbecker&nacamar.de
-32179
- SANDS INDIA Pvt Ltd
- Suseendran Renga Bashyam
- micro&sandsindia.com
-32180
- Moscow Branch of Federal Migration Service, Russia
- Gennady Kudryashoff
- gk&pvu.msk.ru
-32181
- Amuser SpA
- Technical Support
- technicalsupport&amuser.it
-32182
- cubro
- Gabriel Guriencu
- office&cubro.net
-32183
- Answers.com
- Derek Balling
- derekb&answers.com
-32184
- Instantiations Inc
- Seth Hollyman
- hostmaster&instantiations.com
-32185
- Environmental Technology, Inc.
- Chuck Gartland
- cgartland&networketi.com
-32186
- Prolexic Technologies
- Paul Sop
- paulsop&prolexic.com
-32187
- Founder International Inc.
- Xu Hao
- xu_hao&founder.com
-32188
- SkyCash Sp. z o.o.
- Anton Lundberg
- anton.lundberg&skycash.com
-32189
- Richards-Zeta Building Intelligence
- David Leimbrock
- dleimbrock&richards-zeta.com
-32190
- REDOUBT, Inc.
- Albert Lingelbach, Jr.
- alingelb&yahoo.com
-32191
- Emergensys solutions inc.
- Jerome Tetreault
- jerome.tetreault&emergensys.net
-32192
- Vanguard Rugged Storage LLC
- Craig Watson
- craig.watson&vanguard-rugged.com
-32193
- I-New Unified Mobile Solutions AG
- Mario Zsilak
- mario.zsilak&i-new.com
-32194
- InDorse Technologies
- Daniel Pohl
- daniel.pohl&indorse-tech.com
-32195
- CommTel Network Solutions Pty Ltd.
- Paul Ross
- paulr&commtelns.com
-32196
- EBFS AG
- Denis Korobow
- it&ebfs.eu
-32197
- Bunkspeed, Inc
- James Briant
- jamie.briant&bunkspeed.com
-32198
- Esang Technologies Co., Ltd.
- Min-yeong, Lee
- michel&esangtech.com
-32199
- Louisiana Immersive Technologies Enterprise
- Tech Support
- techsupport&lite3d.com
-32200
- Seven Networks, Inc.
- Mika Uusitalo
- mika.uusitalo&seven.com
-32201
- Sonitor Technologies AS
- Øystein Haug Olsen
- oo&sonitor.com
-32202
- Saima Sistemas, S.L.
- Vaino Venermo
- vaiski&saimanet.net
-32203
- Pixeon
- Gabriel Bianco
- gabriel.bianco&pixeon.com.br
-32204
- Mykola Grechukh
- Mykola Grechukh
- nick.grechukh&gmail.com
-32205
- Twistround Ltd
- Per Larsson
- iana&twistround.com
-32206
- Oksijun
- Michael Gwin
- iana&oksijun.net
-32207
- U.S. Department of Transportation
- Eric Baldwin
- eric.baldwin&dot.gov
-32208
- www.jointhegrid.com
- Edward Guy Capriolo
- edlinuxguru&gmail.com
-32209
- Escuela Bancaria y Comercia
- Victor Ilich Mendoza Celis
- vi.mendoza&ebc.edu.mx
-32210
- eAgency, Inc.
- Boyd Machtolff
- bmachtolff&eagency.com
-32211
- Positech Consulting Ltd
- Paul O'Sullivan
- pos&positechconsulting.com
-32212
- Armstrong International, Inc.
- Luke Way
- luke&armstronginternational.com
-32213
- Luke Rules
- Luke Way
- iana&lukerules.com
-32214
- GRETA de Bordeaux
- Sébastien Monbrun
- admin-a-0332820l&ac-bordeaux.fr
-32215
- John Anson Co. LLC
- John Anson
- janson&johnanson.com
-32216
- SIOS Technology, Inc.
- motomichi tanaka
- mtanaka&sios.com
-32217
- BÖWE Systec GmbH
- Wolfgang Meinelt
- wolfgang.meinelt&boewe-systec.com
-32218
- tedman.com
- Ted Leung
- tedman&tedman.com
-32219
- NBS srl
- Silvio Fabi
- s.fabi&nbsgroup.it
-32220
- Esperion Therapeutics, Inc.
- David Thibault
- admin&esperion.com
-32221
- Intera Group, Inc.
- Michael E. Laws
- mlaws&interainc.com
-32222
- TCM Networks
- Matthew Gray
- matthew.gray&tcm.co.za
-32223
- Shanghai Kyattinfo Inc.
- Johnny Liu
- johnny&kyattinfo.com
-32224
- Epivalley Co., Ltd.
- Byung Joo, Kang
- bjkang&epivalley.com
-32225
- PCCW Mobile
- Thomas Ng
- itstng&msn.com
-32226
- Ingenieurbuero für innovative Informationstechnik
- Joerg Beckmann
- jb&iiit.de
-32227
- ArtSoft Consult
- Fulop Levente
- hostmaster&artsoft-consult.ro
-32228
- MERAWEX Sp. z o. o.
- Witold Grabysz
- merawex&merawex.com.pl
-32229
- Nokia (formerly 'Novarra, Inc.')
- William Boyle
- william.boyle&nokia.com
-32230
- Aeris Communications, Inc.
- Bob Fultz
- Bob.Fultz&aeris.net
-32231
- hbcms
- Davi Huang
- support&hbcms.com
-32232
- Landratsamt Muenchen
- Agnes Taffertshofer
- agnes.taffertshofer&lra-m.bayern.de
-32233
- Vionis d.o.o.
- Igor Ostriž
- igor.ostriz&vionis.info
-32234
- KMUX Project
- Wilhelm Meier
- wilhelm.meier&fh-kl.de
-32235
- ProAce International Trading Ltd.
- George Chan
- proacehk&gmail.com
-32236
- DATASPHERE S.A.
- Patrick Monnerat
- pm&datasphere.ch
-32237
- Atea Systems Ltd.
- Murray Lum
- support&ateasystems.com
-32238
- Venture Research Inc.
- Kevin Baker
- tech&ventureresearch.com
-32239
- Emnico Technologies Ltd
- Heydar Faramarzi
- heydar&emnico.com
-32240
- Clipsal China Ltd.
- Keith Leng
- jianqing-keith.leng&cn.schneider-electric.com
-32241
- Vederie
- Jozef Bombiak
- JozefB&vederie.com
-32242
- Comic Relief
- Anthony Mizon
- amizon&saviso.com
-32243
- FAUSER AG
- Marc Fauser
- marc.fauser&fauser-ag.com
-32244
- CASO - Consultores Associados de Organizações e Informática
- César Alves
- calves&caso.pt
-32245
- PingUs Solutions oHG
- Oliver Kiel
- oliver.kiel&pingus.de
-32246
- IBS.Datafort
- Nick Perhunkov
- nperhunkov&ibs.ru
-32247
- NewNet Communication Technologies, LLC
- Kutluk Uslu
- kutluk.uslu&newnet.com
-32248
- Wanzl Metallwarenfabrik GmbH
- Juergen Haemmerle
- Juergen.Haemmerle&wanzl.de
-32249
- National Food Technology Research Centre
- Patrick A. Jansen
- patrick&naftec.org
-32250
- San Francisco International Airport, Information Technology & Telecommunications
- Daniel Gonzales
- daniel.gonzales&flysfo.com
-32251
- ETRI SRC
- Jun Seob Lee
- juns&etri.re.kr
-32252
- Pavol Jozef Šafárik University in Košice
- Michal Ráček
- michal.racek&upjs.sk
-32253
- DANU Technologies
- Michael Slevin
- ms1&danutech.com
-32254
- Hoare Lea and Partners
- Julian Beech
- julianbeech&hoarelea.com
-32255
- J. Christof GmbH
- Wolfgang Spinotti
- iana&christof-group.com
-32256
- Sonlinc A/S
- Lars Skjærlund
- lsk&sonlinc.dk
-32257
- RealTime Intelligence
- Winona Whitener
- winona.whitener&poweredbyrex.com
-32258
- WYDE Voice, LLC
- Dmitriy Bondar
- noc&wydevoice.com
-32259
- Meyer Tool, Inc.
- Michael Kinney
- mikek&meyertool.com
-32260
- PacketDNA Inc.
- Sonny Chaiwala
- sonnyc&packetdna.com
-32261
- Varolii
- Shayne Balduf
- shayne.balduf&varolii.com
-32262
- Cyber Operations, Inc.
- Kevin Etheridge
- kevin&cyberoperations.com
-32263
- Plus Net Solutions
- Javier Outón
- jouton&plusnetsolutions.com
-32264
- National Institute of Informatics
- Kazutsuna Yamaji
- yamaji&nii.ac.jp
-32265
- Johnny Software Studio
- JianZhuo, Liu
- jjkkxyz&gmail.com
-32266
- Power PLUS Communications AG
- Bartosz Dendor
- b.dendor&ppc-ag.de
-32267
- I.S.T. Austria
- Ing. Michael Brandstaetter
- iana_pen&ist-austria.ac.at
-32268
- Hobby Lobby Stores, Inc.
- John Sargent
- john.sargent&hobbylobby.com
-32269
- Novantiqua multimedia
- Paolo Tentori
- paolot&promo.it
-32270
- Elseta
- Tomas Sinkunas
- info&elseta.com
-32271
- Zaxmy
- Johan Zaxmy
- oid&zaxmy.com
-32272
- Sebastien Aperghis-Tramoni
- Sebastien Aperghis-Tramoni
- sebastien&aperghis.net
-32273
- netzwerkplanet.
- Christian Lox
- lox&netzwerkplanet.com
-32274
- Sheffield Teaching Hospitals Foundation Trust
- Steven Wood
- steven.wood&sth.nhs.uk
-32275
- Interscan Navigation Systems
- Andrew Cain
- info&interscan.com.au
-32276
- SiChuan Public Information Industry Co.Ltd (SCPI)
- lei li
- lilei5353&hotmail.com
-32277
- ZTI
- Pascal Lequeux
- pascal.lequeux&zti.fr
-32278
- RT Systems (Pty) Ltd
- George Daras
- george&minelight.co.za
-32279
- Ryan J Thompson
- Ryan Thompson
- iana&ry.ca
-32280
- Johnston Press Plc
- Richard Grant
- richard.grant&thenews.co.uk
-32281
- Videoplaza
- Dante Buhay
- dante&videoplaza.com
-32282
- DaimonLab
- Damiano Scaramuzza
- dscaramuzza&daimonlab.it
-32283
- TBits.net GmbH
- Thomas Börnert
- tb&tbits.net
-32284
- erefer
- Frederic Rouyre
- rfr&inter-land.net
-32285
- Sumavision Technologies Co.,Ltd
- guoqiang zhao
- sumavisionzhao&126.com
-32286
- ACD Elektronik GmbH
- Jürgen Striegel
- juergen.striegel&acd-elektronik.de
-32287
- Sattvik Software & Technology Resources, Ltd. Co.
- Daniel Solano Gómez
- pen&sattvik.com
-32288
- eg-electronic GmbH
- Thomas Henkel
- thenkel&eg-electronic.de
-32289
- CellSpotting.com
- Carl Johan Ferner
- calle.ferner&cellspotting.com
-32290
- Records For Living, Inc.
- Simone L. Pringle
- simone&RecordsForLiving.com
-32291
- lingzhou NetWork
- jack zhang
- jackzhangcl&163.com
-32292
- Florida Department of Children and Families
- Larry Kenyon
- Larry_Kenyon&dcf.state.fl.us
-32293
- netfutura GmbH & Co. KG
- Kevin Streit
- kevin.streit&googlemail.com
-32294
- Lewis Silkin
- Nicolas Martin
- nicolas.martin&lewissilkin.com
-32295
- cPanel Inc
- David Koston
- dave&cpanel.net
-32296
- Beach Horizon LLP
- John Oconnell
- bcm_test&yahoo.co.uk
-32297
- s2company s.r.l.
- Francesco Ronsivalle
- francesco.ronsivalle&s2company.it
-32298
- Communication Networks, LLC
- Robert Gallagher
- rgallagher&comnet.net
-32299
- Coatesoft
- Greg Coates
- greg&coatesoft.com
-32300
- Alcorn McBride Inc.
- Joy Burke
- joy&alcorn.com
-32301
- Siemens IT Solutions and Services
- Frank Wagner
- f.wagner&siemens.com
-32302
- Insert Data Here
- Thomas James
- tvjames&insertdatahere.net
-32303
- Anchor Systems Pty Ltd
- Anchor NOC
- noc&anchor.net.au
-32304
- Lojas Maia LTDA.
- Julianne Martins Cavalcanti
- juliannecavalcanti&lojasmaia.com.br
-32305
- KAMP Netzwerkdienste GmbH
- Roland Irle
- ri&kamp.de
-32306
- Soolbox Association
- Vincent Batoufflet
- contact&phantoom.net
-32307
- Embedded Systems
- Lukasz Panasiuk
- lukasz.panasiuk&embedded-systems.com.pl
-32308
- NLI Business Support as
- Stian Viddal
- stian.viddal&nli.no
-32309
- Chittagong Online Limited
- Aniruddha Barua
- cto&colbd.net
-32310
- Edge Technologies
- Sven Wallage
- support&edgetech.eu
-32311
- CPI Progetti S.p.a.
- Marcella Ceruti
- m.ceruti&cpiprogetti.it
-32312
- International Hellenic Univeristy
- Iraklis Kamilatos
- support&ihu.edu.gr
-32313
- Red Lambda, Inc.
- Matt Whitlock
- mwhitlock&redlambda.com
-32314
- sp-its
- Stephan Peijnik
- sp&sp.or.at
-32315
- Virtual Management Technologies
- Mark Gibson
- markg&vmtech.net
-32316
- From2
- Hyunwoo Park
- airtrain&from2.co.kr
-32317
- The National Library of Norway
- IKT NETT
- IKT-nett&nb.no
-32318
- Tom Geudens Private Enterprise Limited
- Tom Geudens
- tom.geudens&gmail.com
-32319
- Fernau Avionics Ltd
- Alasdair McFarlane
- alasdair.mcfarlane&fernau.com
-32320
- Supermarchés Match
- Vercoutère Morgan
- mvercout&supermarchesmatch.fr
-32321
- eSystems, Inc.
- Vivek Sawhney
- contact&esystems-inc.com
-32322
- Conseils Oy SimplySecure
- Teemu Rissanen
- teemu.rissanen&conseils.fi
-32323
- Filb.de
- Matthias Butz
- matze&filb.de
-32324
- Certus Digital, Inc.
- Vickie Eigel-Danielson
- vickie.eigel-danielson&certusdigital.com
-32325
- BadgerNet.net
- James Kinneavy
- kinneavy-j&sa.ucsb.edu
-32326
- NewAge Ukraine Inc.
- Sergey Reshetnikov
- greyshaman&gmail.com
-32327
- RF Industries
- Bart Voskulen
- bart.voskulen&rfi.com.au
-32328
- legendsec Technology Co.Ltd
- Sideng WANG
- wangsd&legendsec.com
-32329
- Shenzhen Guanri Technology Co., Ltd.
- tommy Zhao
- zxf770330&163.com
-32330
- Olitechs
- Olivier Brizard
- brizard.olivier&gmail.com
-32331
- Nimbus Data Systems, Inc.
- Thomas Isakovich
- tom&nimbusdata.com
-32332
- Siscard S.A.
- Ramiro Morales
- morales&siscard.com.ar
-32333
- IRRINGER.DE
- Siegfried Irringer
- pki&irringer.de
-32334
- CGNet
- Christian Garling
- christian&cg-networks.de
-32335
- Nippon Control System Corporation (NCS)
- Hiroshi Nonaka
- nonaka&nippon-control-system.co.jp
-32336
- Micro Ocean Technologies Sdn Bhd
- Chin Yee Wee
- yw_chin&mocean.com.my
-32337
- ISRACARD LDT
- Eran Peer
- epeer&isracard.co.il
-32338
- United Biscuits
- Steve Hackett
- steve_hackett&biscuits.com
-32339
- Schweitzer GmbH - Architektur & Generalplanung
- Michael Schweitzer
- m.schweitzer&schweitzerplan.de
-32340
- DCTI
- Catalin Petrescu
- catalin&dcti.ro
-32341
- Gangola Designs
- David Gangola
- ianapen&gangola.com
-32342
- XORP, Inc.
- Paul Zeldin
- paul.zeldin&xorp.net
-32343
- Shop Direct Home Shopping Limited
- Carl Gogerty
- Carl.Gogerty&ShopDirect.Com
-32344
- advanscope Inc.
- daisuke nakamoto
- nakamoto&advanscope.jp
-32345
- RF Monolithics, Inc.
- Greg Ratzel
- gratzel&rfm.com
-32346
- Digi Telecommunications Sdn Bhd
- Suresh Ramasamy
- sureshr&digi.com.my
-32347
- SiteScanner Europe AB
- Peter Germundsson
- peter.germundsson&sitescanner.se
-32348
- Cross Country Systems
- Markus Södergren
- oid&cc-systems.com
-32349
- iRedMail
- Zhang Huangbin
- michaelbibby&gmail.com
-32350
- Bedework.org
- Mike Douglass
- douglm&rpi.edu
-32351
- Genscape, Inc
- Mike Frohme
- mfrohme&genscape.com
-32352
- Rindels Information Management Systems (RIMS)
- Rodney Rindels
- rodney&rindels.net
-32353
- Baidu
- Lin Guo
- guolin&baidu.com
-32354
- vertico Software GmbH
- Martin Schuhmacher
- ms&starface.de
-32355
- KOCAK Corp
- AYDIN KOCAK
- aydin.kocak&turkom.com.tr
-32356
- Syslogic Ltd.
- Zoltan Nemeth
- zoltan.nemeth&syslogic.hu
-32357
- Solo Networks Inc.
- Xu Bingcan
- bingcanxu&126.com
-32358
- Epiphan Systems Inc.
- Pavel Zeldin
- pzeldin&epiphan.com
-32359
- UNIVERSITY OF UDINE
- Renato Spoletti
- renato.spoletti&uniud.it
-32360
- Dneprooblenergo
- Vitaliy Pidodnya
- hawk&mail.dp.energy.gov.ua
-32361
- CAIR
- Eugene Atroshkin
- eugene&cair.ru
-32362
- IDT SPC
- BEURTON Pierre
- beurton&idt-fr.com
-32363
- Engineering & Software GmbH
- Sandro Exner
- ViTex&es-manebach.de
-32364
- Universidade Federal do Estado do Rio de Janeiro UNIRIO
- Ademir Dias Lima
- direcao_cpd&unirio.br
-32365
- Mino Wireless USA Inc
- Amardeep Nikumbh
- amardeep&minowireless.com
-32366
- Pragmatic Data
- Gunther Schadow
- oid&pragmaticdata.com
-32367
- Communication Automation Corporation
- John Sweeney
- sweeney&cacdsp.com
-32368
- Faculty of Information Technology - Nguyen Tat Thanh College
- Le Tri Anh
- khoa.cntt.ntt&gmail.com
-32369
- Uptime-IT
- Daniel Frederiksen
- post&uptime.dk
-32370
- University of Zielona Gora
- Maciej Deorowicz
- m.deorowicz&wnb.uz.zgora.pl
-32371
- Complex IT Solutions
- Traian Petrache
- traian.petrache&complexitsolutions.ro
-32372
- Web Sages
- James S. White
- whitejs&websages.com
-32373
- paternostro.org
- Ugo Paternostro
- ugo&paternostro.org
-32374
- RidgeviewTel LLC
- Vince Jordan
- vjordan&ridgeviewtel.com
-32375
- Secorix, Inc.
- George Parsons
- gparsons&secorix.com
-32376
- RAM Mobile Data
- Bart Lubberdink
- b.lubberdink&ram.nl
-32377
- archIT
- Thomas Besser, Elke Spanke
- archIT&uni-karlsruhe.de
-32378
- TB Solutions Security S.A.
- Responsable de sistemas
- iana&tb-security.com
-32379
- Lake Michigan Credit Union
- Greg Sopcak
- admin&lmcu.org
-32380
- Instituto Curitiba de Informática
- Estevão Thomacheski Rodrigues
- erodrigues&ici.curitiba.org.br
-32381
- Milwaukee County Government
- Keith Parkansky
- dnsmgr&milwcnty.com
-32382
- Mixtur Interactive, Inc.
- Mark Eissler
- itservices&mixtur.com
-32383
- Iojik Inc.
- Marc Guastavino
- iojik_iana&simonide.org
-32384
- Henchmonkey
- John Cater
- katre&henchmonkey.org
-32385
- Beijing Bohui Science & Technology Co., Ltd
- Jiabin Zhang
- zhangjb&bohui.cn
-32386
- Proxicast, LLC
- Kevin Weaver
- kweaver&proxicast.com
-32387
- Etisalat
- Vijaya Sarathi
- LSarathi&etisalat.ae
-32388
- The NetBSD Foundation
- Alistair Crooks
- agc&NetBSD.org
-32389
- MILLENNIUM ARTS Group
- Andreas Bartl
- iana&rz.millenniumarts.org
-32390
- ID7 Ltd.
- Wallace Anderson
- wallace.a&id-7.com
-32391
- Systemhuset Episteme AS
- Vladimir Petrov
- admin&episteme.no
-32392
- Secure-MSP GmbH
- Christian Lotz
- christian.lotz&securemsp.com
-32393
- Onesto Services Oy
- Olli Helenius
- olli&onesto.fi
-32394
- Solutions and Services, a.s.
- Vit Moravec
- vit.moravec&saservices.cz
-32395
- SalamanderSoft Ltd
- Richard Willis
- iana&salamandersoft.co.uk
-32396
- Ohio University
- Bruce Tong
- tongb&ohio.edu
-32397
- iRobot Corporation
- Daniel Allis
- dallis&irobot.com
-32398
- Eaton Vance Management
- Matthew McNamara
- mmcnamara&eatonvance.com
-32399
- Nederland Live
- Joost Rohde
- info&nederlandlive.nl
-32400
- WaveMaker Software, Inc.
- Edward J Callahan
- ecallahan&wavemaker.com
-32401
- AMP Financial Services New Zealand
- Michael Robinson
- michael_robinson&amp.co.nz
-32402
- Greenson Pty Ltd
- David Green
- david&greenson.com.au
-32403
- China fuzhou evideo
- Chunchao Wang
- wangcc&star-net.cn
-32404
- NetHawk Oyj
- Timo Ainali
- timo.ainali&nethawk.fi
-32405
- Selectron Systems AG
- Alexandre Lechenne
- alexandre.lechenne&selectron.ch
-32406
- Koncept Sp. z o.o.
- Piotr Romanczuk
- piotr.romanczuk&koncept-studio.com.pl
-32407
- GeCOSoft Consulting GmbH
- Lueder Heinemann
- heinemann&gecosoft.com
-32408
- Daniel Andrade Costa Silva
- Daniel Andrade Costa Silva
- daniacs&gmail.com
-32409
- Voxel dot Net, Inc.
- James W. Brinkerhoff
- jwb&voxel.net
-32410
- RF Code Inc
- Michael Primm
- mprimm&rfcode.com
-32411
- Swedish Orient Line
- Catarina Rockstrand
- catarina.rockstrand&sollines.se
-32412
- Minot Enterprises, Inc.
- Michael VanHecke
- mjvanhecke&minotinc.com
-32413
- ECbridges, Inc.
- Benjamin Madsen
- bmadsen&ecbridges.com
-32414
- Veracity UK
- Colin McLeod
- colin.mcleod&veracityusa.com
-32415
- Comax BV.
- David Levi
- comax.bv&gmail.com
-32416
- DOCOUT S.L.
- Roberto Gonzalez
- soporte&docout.es
-32417
- Kinamik Data Integrity S.L.
- Mr. Nadeem Bukhari
- nbukhari&kinamik.com
-32418
- Marne & Elk Horn Telephone Co
- Noel Leistad
- noel&metc.net
-32419
- Institut Straumann AG
- Manuel Piessnegger
- csoe&straumann.com
-32420
- Payment Processing, Inc.
- Kai Wang
- kwang&paypros.com
-32421
- Bertholdsson
- Jörgen Bertholdsson
- snmp&bertholdsson.com
-32422
- Universidade Federal de Viçosa
- Eduardo Jaime Quirós Batres
- dojai&ufv.br
-32423
- Rogaland fylkeskommune (County of Rogaland)
- Frode Sjovatsen
- frode.sjovatsen&rogfk.no
-32424
- Harry Jackson - Boozled
- Harry Jackson
- harry&hjackson.org
-32425
- CRW Data AB
- Rickard Karlsson
- rickard.karlsson&crw.se
-32426
- Institute for Studies in Theoretical Physics and Mathematics (IPM)
- Hessamaddin Arfaei
- arfaei&ipm.ir
-32427
- Bornis Group
- Parham Ghaffarian
- info&bornisgroup.com
-32428
- Sepehr S. T. Co. Ltd.
- Shahriar Pourazin
- pourazin&sepehrs.com
-32429
- University of Isfahan
- Arash Givchi
- arash.givchi&gmail.com
-32430
- NADAM CO.,LTD
- You-hyun Yang
- fromasia&na-dam.com
-32431
- Yukthi Systems Pvt. Ltd
- Avinash Sultanpur
- avinash.s&yukthi.com
-32432
- LDAP Study Union
- Ruixue Cheng
- Forever_Chrx&hotmail.com
-32433
- NetCeler
- Julien Graglia
- jgraglia&netceler.com
-32434
- Telenor Telecom Solutions AS
- Espen Alexander Strømme
- Espen-Alexander.Stromme&telenor.com
-32435
- TamoSoft Ltd.
- Michael Berg
- support&tamos.com
-32436
- Intersec
- Jean-Marc Coic
- jean-marc.coic&intersec.com
-32437
- Obsidian Research
- Jason Gunthorpe
- jgunthorpe&obsidianresearch.com
-32438
- PROMONT Soluções Ltda.
- Mr. Nilton Cezar Carvalho
- nilton&promont.com.br
-32439
- ShangHai YoSee Ltd.
- JunWu
- wujun&ruijie.com.cn
-32440
- kinopsis.net
- Lorenzo Pastrana
- netman&kinopsis.net
-32441
- Netwell Ltd.
- Evgeny Chepusov
- echepusov&netwell.ru
-32442
- MPS.ETI.BR
- Marcos Paulo Serafim
- mps&mps.eti.br
-32443
- Internet Research Institute, Inc.
- Dai Nishino
- dai&iri.co.jp
-32444
- Fibercom Technologies (ShenZhen) CO.,LTD
- Yong Xie
- xieyong&fibercomtec.com
-32445
- Lamoree Software
- Joseph Lamoree
- joseph&lamoree.com
-32446
- Paessler AG
- Dirk Paessler
- info&paessler.com
-32447
- CASERIS GmbH
- Frank Offermanns
- Frank.Offermanns&caseris.de
-32448
- Addition IT Sweden AB
- Jesper Lönnqvist
- jesper.lonnqvist&addition-it.se
-32449
- Cuatrecasas Abogados
- Jaume Echevarria
- syc&cuatrecasas.com
-32450
- MICRON ENGINEERING DI MANCA MASSIMO
- MASSIMO MANCA
- massimo.manca&micronengineering.it
-32451
- B-Source SA
- Claudio Crosio
- claudio.crosio&b-source.ch
-32452
- Damaya UK
- Adam Charlton
- support&damaya.co.uk
-32453
- Terrapin Associates
- Paul Curtis
- pfc&terrapin.com
-32454
- Atrato, Inc.
- Product Support
- pen&atrato.com
-32455
- E-Tag, Inc
- Richard Grant
- info&e-tag.name
-32456
- Freebox SAS
- Maxime Bizon
- mbizon&freebox.fr
-32457
- Iptec, Inc.
- Bent T. Jensen
- bjensen&iptec-inc.com
-32458
- Colorado Clinical Research ECG Core Lab
- Ken Barz
- CCRECGCorelab&cpcmed.org
-32459
- HappyEnd
- Lorenzo Pastrana
- lorenzo.pastrana&happyend.fr
-32460
- The Digital Freehold
- Lew Pitcher
- lew.pitcher&digitalfreehold.ca
-32461
- Brinker Pharmaconsulting
- Bjoern-Arne Meyn
- bjoernmeyn&brinkerpharma.de
-32462
- VIP Systems Co., Ltd.
- Masato Ina
- ina&vips.co.jp
-32463
- Coalese Corporation
- Andrzej Taramina
- andrzej&coalese.com
-32464
- IDH GmbH
- Marcel Bucher
- mbucher&idh.ch
-32465
- All Options International B.V.
- Thijmen Klok
- this.is.a.spam.magnet.please.use.the.phone&alloptions.nl
-32466
- guifi.net
- Fundació Privada per a la Xarxa Oberta, Lliure i Neutral guifi.net
- fundacio&guifi.net
-32467
- SysDesign
- Ralf Dorfner
- postmaster&sysdesign-edv.de
-32468
- Teamnett AS
- Ruslan Valiyev
- rva&teamnett.no
-32469
- Network Design GmbH
- Ovidio Raimondi
- rai&ndm.ch
-32470
- Forschungszentrum Jülich
- Thomas Eickermann
- th.eickermann&fz-juelich.de
-32471
- Daitec GmbH
- Steiner Daniel
- daniel&daitec.it
-32472
- Tikona Digital Networks
- Tarun Kumar
- tarun.kumar&tikona.in
-32473
- Example Enterprise Number for Documentation Use
- See [RFC5612]
- iana&iana.org
-32474
- Kialco Group
- Patrick O'Donnell
- odonnell.pb&gmail.com
-32475
- Ambit Communicate
- Rob Mitchelmore
- oid.registry&midworld.co.uk
-32476
- Bell's Booking Agency
- Nathan Bell
- nathanbell&netzero.net
-32477
- ISAccountable
- David Kaufman
- support&isaccountable.com
-32478
- RF Window Co., Ltd.
- Julian Kim (Chang-Woo Kim)
- knox0210&rfwindow.com
-32479
- AppEx Networks
- Michael Tong
- xtong&appexnetworks.com
-32480
- Ollix
- Olli Wang
- olliwang&ollix.com
-32481
- Unitronics
- Benny Magrafta
- benny&unitronics.com
-32482
- Qnective AG (formerly 'Qporter Schweitz AG')
- David Saborido
- david.saborido&qnective.com
-32483
- Octrooicentrum Nederland
- T.A. van der Laan
- beheer&octrooicentrum.nl
-32484
- Escatronic GmbH
- Sven Packebusch
- sven.packebusch&escatronic.de
-32485
- Live Interactive S.A.
- Paulo Crescionini
- paulo.crescionini&liveinteractive.net
-32486
- DCK Worldwide
- David Hirsh
- dhirsh&dckww.com
-32487
- League of American Orchestras
- Brian Tanaka
- btanaka&field15.com
-32488
- The College of New Jersey
- Shawn Sivy
- ssivy&tcnj.edu
-32489
- Alan Savage
- Alan Savage
- pen&alansavage.co.uk
-32490
- Pringo
- Harvard Young
- harv&pringo.com
-32491
- Beijing UniTrust Tech. Service Co.,Ltd.
- Changli Zhang
- tsa&tsa.cn
-32492
- maas-martin.nl
- Mark Maas
- mark&maas-martin.nl
-32493
- CPS Color Equipment S.p.A.
- Giuseppe Manicardi
- elisabetta.maffei&cpscolor.com
-32494
- Kwasniak
- Janusz Kwasniak
- janusz&kwasniak.de
-32495
- Screwfix Ltd
- Brett Hastings
- brett.hastings&screwfix.com
-32496
- MindLogix
- Robert Mircea
- robert.mircea&mind-logix.com
-32497
- Centex Service Co. LLC.
- Eric Romine
- emailadministrator&centex.com
-32498
- Clockwork Active Media Systems, LLC
- Ben Beuchler
- insyte&clockwork.net
-32499
- TecCon, inc.
- Bill Buhler
- bill.buhler&teccon.net
-32500
- Virtual Computer, Inc.
- Alex Vasilevsky
- alex&virtualcomputer.com
-32501
- Telemisis Ltd
- Glen Cumming
- glen.cumming&telemisis.com
-32502
- Pancetera Software, Inc.
- Mitch Haile
- snmp&pancetera.com
-32503
- Purewire Inc.
- Jeff Hartley
- jhartley&purewire.com
-32504
- Washington Division of URS Corporation
- Bruce LaMont Turner
- lamont.turner&wgint.com
-32505
- Aptix IT SRL
- Javier Kohan
- jk_iana&aptix.com.ar
-32506
- KOR Networks
- Kevin F. O'Riordan
- kfor&compsoc.com
-32507
- First Community Services, Inc
- Riaz Maulvi
- riaz.maulvi&fcserv.com
-32508
- Siemon
- Frank Velleca
- frank_velleca&siemon.com
-32509
- luminis
- Hans Bossenbroek
- hans.bossenbroek&luminis.nl
-32510
- Watchdata
- zhiming liu
- zhiming.liu&watchdata.com
-32511
- Fountainhead Investments Ltd.
- IANA Role Account
- iana-role&U10R.net
-32512
- Zen Soluciones
- Sébastien Cramatte
- scramatte&zensoluciones.com
-32513
- Buerologistik GmbH & Co. KG
- Joris Fischer
- joris.fischer&buerologistik.de
-32514
- JSC Effortel
- Blinov A. Sergey
- sergey.blinov&effortel.ru
-32515
- Rebtel Networks AB
- Mathias Adler
- mathias.adler&rebtel.com
-32516
- Gisdata
- Tihana Cajic
- tihana.cajic&gisdata.com
-32517
- Accsys GmbH
- Eike Gehler
- eike.gehler&accsys.de
-32518
- VirtuOz
- Tim Chen
- tech&virtuoz.com
-32519
- Wireless Mundi S.L.
- Enrique Cimadevila Lage
- ecimadevila&wirelessmundi.com
-32520
- Anglo European Aviation AG
- Charles Orford
- c.orford&angloeuropean.com
-32521
- kontur networx
- Sascha Dorow
- s.dorow&kontur-networx.de
-32522
- Creare Inc.
- William H. Finger
- whf&creare.com
-32523
- ACN - Agència Catalana de Notícies
- Alex Argelaguet
- iana&acn.cat
-32524
- Zaxia
- Sylvain St-Pierre
- sylvain.st.pierre&zaxia.com
-32525
- Gold Lasso, Inc.
- Richard Kilcoyne
- pen-admin&goldlasso.com
-32526
- Object Partners Inc.
- Steve McCoole
- admin&objectpartners.com
-32527
- Yugma Inc.
- Tom Hudak
- thudak&yugma.com
-32528
- Acquia, Inc
- Ethan Fremen
- ethan&acquia.com
-32529
- Warped Communications, Inc.
- William Coldwell
- billc&warped.com
-32530
- uid0 Networks
- Mario Iseli
- mario.iseli&finecom.ch
-32531
- Nokeena Networks Inc.
- Kumar Narayanan
- kumarn&nokeena.com
-32532
- Regis Corporation
- Mark Anderson
- mark.anderson&regiscorp.com
-32533
- Xue Can
- Xue Can
- xuecan&gmail.com
-32534
- MB Connect Line GmbH
- Siegfried Mueller
- mueller&mbconnectline.de
-32535
- ZT Systems
- ZT Systems Contact
- iana&ztsystems.com
-32536
- Ergobyte Informatics
- George Nikolaidis
- gnikolaidis&ergobyte.gr
-32537
- voidmage.net
- Pascal Grün
- pascal&voidmage.net
-32538
- NetCare Service Co., Ltd.
- Ryuji Kaneko
- KanekoR&e-care3.net
-32539
- Cinnober Financial Technology AB
- Anders Lindgren
- anders.lindgren&cinnober.com
-32540
- Manlight
- Alain REPINGON
- alain.repingon&manlight.com
-32541
- Alsion
- Konstantin Stepanov
- milezv&yandex.ru
-32542
- Banco Credicoop
- Diego Barrios
- dhbarrios&bancocredicoop.coop
-32543
- Raidbr Solucoes em Informatica LTDA
- William A. Knob
- william.knob&raidbr.com.br
-32544
- Kentucky Department of Education
- Kenneth Brakefield
- netadmin&education.ky.gov
-32545
- Army & Air Force Exchange Service
- Tyna Porter
- Porterty&aafes.com
-32546
- Valcom Inc.
- Bill Kowalkowski
- bkowalkowski&valcom.com
-32547
- SenSage, Inc
- Eric Karlson
- eric.karlson&sensage.com
-32548
- University of North Carolina - General Administration
- Steven Hopper
- regmaster&northcarolina.edu
-32549
- Govierno de la Provincia de Corrientes
- Matias Soler
- gnuler&gmail.com
-32550
- COVETEL R.S:
- Jesús Lara
- jesuslara&covetel.com.ve
-32551
- Valunex
- Claudia Vanesa Ramirez
- claudia.ramirez&valunex.com.ar
-32552
- FreeIT
- Heiko Bernloehr
- hb7&gmx.net
-32553
- Hopewiser Ltd
- Philip Whineray
- pdw&hopewiser.com
-32554
- Vincent Wang
- Vincent Wang
- vincentwhc&yahoo.co.nz
-32555
- RND.fr
- Guillaume du Bourguet
- gdubourguet&rnd.fr
-32556
- Bruno Medici Consulting
- Bruno Medici
- iana&bmconseil.com
-32557
- Hungarian Chamber of Civil Law Notaries (MOKK)
- Zoltan Naszali
- naszali&mokk.hu
-32558
- Kleinhenz Elektronik GmbH
- Simon Richter
- Simon.Richter&kleinhenz.com
-32559
- Paradigma Tecnologico S.L.
- Emilio Jose Mena Cebrian
- emena&paradigmatecnologico.com
-32560
- Tsubata Engineering Co., Ltd.
- Tetsuya Nishiura
- t.nishiura&aios.jp
-32561
- E.D.S.I. Trend Argentina S.A.
- Maximiliano Cittadini
- maximilianof&trendargentina.com.ar
-32562
- Ambrado Inc.
- Fabrice Deyber
- fabrice.deyber&ambrado.com
-32563
- DRK gemeinnützige Krankenhaus GmbH Sachsen
- Stephan Frenzel
- frenzel.stephan&drk-chemnitz.de
-32564
- Asidev s.r.l.
- Giacomo Bagnoli
- info&asidev.com
-32565
- Neissware GmbH
- Harald Neiss
- iana-pen&neissware.de
-32566
- I2C, Industrie Innovation Conseil
- Pascale Delmas
- pascale.delmas&i2c-conseil.com
-32567
- Alastria Networks Limited
- Peter Wood
- p.wood&alastria.net
-32568
- Integral
- Ing. Bernhard Nickel
- bernhard.nickel&integral.at
-32569
- Gayux
- Hinfray Romain
- contact&gayux.fr
-32570
- Hillyton Electronic Technology Co., Ltd.
- Jiang Sanyi
- support&hillyton.com
-32571
- Peering Portal, Inc.
- donghan, kim
- khan&peeringportal.com
-32572
- Ciavox
- Marcio Luis Gunther
- mgunther&oninet.com.br
-32573
- ONI-Net C&S
- Marcio Luis Gunther
- mgunther&oninet.com.br
-32574
- DSIT - ReimsMetropole
- Hamid ZINE
- hamid.zine&reimsmetropole.fr
-32575
- Daniel Palffy
- Daniel Palffy
- dpalffy&rainstorm.org
-32576
- Aydayev's Investment Business Group
- Eldar Aydayev
- eldar&aydayev.com
-32577
- Proximetry, Inc.
- Walter Buga
- wbuga&proximetry.com
-32578
- GeekDude.com
- Chuck Hein
- chein.snmp&geekdude.com
-32579
- Gianluca D'Andrea
- Gianluca D'Andrea
- gianlucadandrea&gmx.com
-32580
- HDT Hanseatische Datentechnik GmbH
- Michael Zastrow
- michael.zastrow&hdt.de
-32581
- REMOTEK CORPORATION
- hwal hu
- service&jplop.twbbs.org
-32582
- N2 Networks
- Bradley Kennedy
- bk&nn2.us
-32583
- Litespan Inc.
- Alex Ferdman
- alex&litespan.net
-32584
- DesignArt Networks
- Avner Aloush
- avnera&designartnetworks.com
-32585
- VIGITRONIC
- Pascal MICOUD
- contact&vigitronic.com
-32586
- Instituto Venezolano de Investigaciones Cientificas
- Jesus E. Quiroz S.
- quirozsjesuse&gmail.com
-32587
- WiKID Systems, Inc.
- William Owen
- nowen&wikidsystems.com
-32588
- MVLogix
- Markus Veutner
- mv&mvlogix.de
-32589
- Effinger
- Markus Effinger
- domains&effinger.org
-32590
- Axiom Networking
- Angus Jordan
- angus.jordan&axiomnetworking.ca
-32591
- Deltares
- Bart Jan Kelter
- BartJan.Kelter&Deltares.nl
-32592
- Pintu
- Tom Willis
- Tom.Willis&Pintu.com
-32593
- Crystal Media Inc.
- Hank Chang
- hank&crystalmedia.com.tw
-32594
- Invensys Robertshaw Industrial Products
- Benjamin N. Lease
- ben.lease&invensyscontrols.com
-32595
- Nextgen Networks
- Sherryn Bryden
- sherry.bryden&nn.com.au
-32596
- PLATH PROCITEC Suisse AG
- Sascha Clavadetscher
- iana&pps-ag.ch
-32597
- Double Negative
- James Braid
- jamesb&dneg.com
-32598
- Providence Life Services
- John K. Hohm
- jhohm&provinet.com
-32599
- SUPEMIR
- Ngah Moudjeu Roussos
- moudjeu&yahoo.fr
-32600
- ClearCrypt Inc.
- Ramana Devarapalli
- ramana&clearcrypt.com
-32601
- GenCore Candeo, Ltd.
- Phil Burks
- genesis&genesisworld.com
-32602
- Faculdade SEAMA
- Lucien Rocha
- lucien&seama.edu.br
-32603
- DVS Solutions
- Dave Brockman
- dave&dvstn.com
-32604
- FRC Component Products
- Ahmet B Basagalar
- ahmet&thebluezone.com
-32605
- Structual Biology Research Center,High Energy Accelerator Research Organization,KEK
- Honda,Nobuo
- nhonda&post.kek.jp
-32606
- Crystaline Infotech
- Tushar Barhate
- ulkal&crystalindia.com
-32607
- Goldan
- Tomasz Woźniak
- goldan&hot.pl
-32608
- Federal Home Loan Bank
- Stephen Morrow
- smorrow&fhlbdm.com
-32609
- Development Consultants Incorporated
- Kauser Kabealo
- kauser&devconinc.com
-32610
- Jilin University Information Technologies Co., Ltd.
- Jilin University Information Technologies Co., Ltd.
- yuankai_zhao&jit.com.cn
-32611
- IMage Manipulation Systems Inc
- Larry Linde
- linde&imageman.com
-32612
- MORISAKI TAKATOSI
- MORISAKI TAKATOSI
- t-morisaki&muj.biglobe.ne.jp
-32613
- California State Legislature
- Terrie Moon
- terrie.moon&LC.CA.GOV
-32614
- YOU Telecom India Pvt. Ltd.
- HARINDRA AKBARI
- harindra.akbari&youtelecom.com
-32615
- ELPROC sp. z o.o.
- Tomasz Lobejko
- serwis&elproc.com.pl
-32616
- OpenSourceXpress Ltd.
- Jiang Xin
- worldhello.net&gmail.com
-32617
- Polytechnical Engineering College in Subotica
- Dr. Szilveszter Pletl
- pszilvi&vtssu.rs
-32618
- Fiok i Wspólnicy Sp. z o.o.
- Marcin Bis
- pen&fiok.pl
-32619
- Movik Networks, Inc.
- Pramod Kalyanasundaram
- pramod&movik.net
-32620
- AnueSystems
- Vivi Zhang
- vzhang&anuesystems.com
-32621
- Franklin University
- Alex Kelly
- certs&franklin.edu
-32622
- CACE Technologies
- Gerald Combs
- info&cacetech.com
-32623
- Kuni Automotive
- David Valdez
- david.valdez&kuniauto.com
-32624
- Khomp Ind. e Com. Ltda
- Rodolfo Leffa
- rodolfo&khomp.com.br
-32625
- GoPC Pty Ltd
- Chris Hoy Poy
- noc&gopc.net
-32626
- Security Cube
- Kashif Ali
- kali&securitycube.net
-32627
- Emageon, Inc.
- Razvan Atanasiu
- razvan.atanasiu&emageon.com
-32628
- AXIOMTEK Co., Ltd.
- Alex Pan
- alexpanhl&gmail.com
-32629
- DIGI Ltd
- Antal GERGELY
- antal.gergely&hu.digi.tv
-32630
- Trezorix
- Sander van der Meulen
- sander&trezorix.nl
-32631
- LIYO Technology Co. Ltd.
- liyotech
- liyotech&liyotech.com.tw
-32632
- Excluvior
- Sascha Dobbelaere
- sascha.dobbelaere&excluvior.eu
-32633
- Ors TISZAY
- Ors TISZAY
- molyza&gmail.com
-32634
- Bluetick, Inc.
- Luis Rodriguez Chiappetta
- lchiappetta&bluetickinc.com
-32635
- Sisters of Mercy Health Systems
- Jeff McDonald
- jeff.mcdonald&mercy.net
-32636
- ITS Electronics Inc
- Gershon Deutsch
- gdeutsch&itselectronics.com
-32637
- Perceptech Inc.
- Patrice Fournier
- patrice.fournier&perceptech.ca
-32638
- iStor Networks Inc.
- Mark ODell
- modell&istor.com
-32639
- Tribunal Electoral del Poder Judicial de la Federación
- Dirección de Seguridad Infomática
- seguridad.informatica&te.gob.mx
-32640
- NeoCatena Networks Inc.
- Lukas Grunwald
- rnd&neocatena.com
-32641
- Security Services Framework
- Harjinder Singh Takher
- harjinder.takher&gmail.com
-32642
- Föreningen DIS
- Bo Kleve
- bok&dis.se
-32643
- Krakowskie e-Centrum Informatyczne JUMP
- Jakub Jelen
- admin&kei.pl
-32644
- BWS Consultores C.A.
- Victor Medina
- victor.medina&bws.com.ve
-32645
- Coty Inc.
- Silvano Nanni
- silvano_nanni&cotyinc.com
-32646
- Pneumatic Tube Products Co, Inc
- Brian Knittel
- brian&quarterbyte.com
-32647
- Federal Defender Office
- Brian Brunelle
- brian_brunelle&fd.org
-32648
- Vortex Technology Networks
- Steve McMaster
- steve-iana&h4xx0r.us
-32649
- Beijing Raycomm Digital Technology Co.,LTD
- Zhipeng Lu
- bclzchina&yahoo.com.cn
-32650
- Namtrac Kft.
- Csaba Toth
- info&namtrac.hu
-32651
- Newtec Communications GmbH
- Dirk Fleischer
- pen&tellitec.be
-32652
- Machine VFX
- Darren Hildebrand
- sysadmin&franticfilms.com
-32653
- Piksel Ltd.
- GIS - Global Infrastructure Design
- gis-gid&piksel.com
-32654
- Institut für Experimentelle Kernphysik, KIT
- Thomas Kuhr
- admin&ekp.uni-karlsruhe.de
-32655
- Classics Animated
- Adrian Hill
- adrian.hill&classicsanimated.com
-32656
- Hypios
- Praden Florian
- florian.praden&hypios.com
-32657
- particle dynamics GmbH
- Martin Wilck
- martin.wilck&particle-dynamics.de
-32658
- Iconoclast IT
- Fabio Origlia
- fabio.origlia&iconoclast.it
-32659
- SAT-TRAKT d.o.o.
- Aleksandar Pejic
- aleksandar.pejic&sattrakt.com
-32660
- Joachim Keltsch
- Joachim Keltsch
- joachim&keltsch.net
-32661
- MITSUBISHI ELECTRIC ENGINEERING CO.,LTD.
- Tachizaki Kenji
- Tachizaki.Kenji&ma.mee.co.jp
-32662
- NTTME
- CHIBA SHIGERU
- schiba&ntt-me.co.jp
-32663
- IFIN Sistemi srl a socio unico
- Antonio Taschin
- antonio.taschin&ifin.it
-32664
- DSR Information Technologies Ltd.
- József Bodnár
- bodnar&dsr.hu
-32665
- Veccsa S.A.
- Pablo Ybalo
- pybalo&veccsa.com
-32666
- Integrated Healthcare Solutions
- Gary Hamilton
- ghamilton&ihsolutions.org
-32667
- Ultrablend LLC
- Spencer Berg
- sberg&ultrablend.com
-32668
- IPFire.org
- Michael Tremer
- m.s.tremer&gmail.com
-32669
- consistec Engineering & Consulting GmbH
- Martin Nicolay
- iana&consistec.de
-32670
- Consilience Software
- Howard Hsieh
- support&consiliencesoftware.com
-32671
- Graspi
- Urs Spitzer
- urs&graspi.ch
-32672
- betabuild.net
- Steve Moore
- pen.iana.org&betabuild.net
-32673
- WAB Sicherheitssysteme GmbH
- Joachim Klingler
- klingler&wab-sicherheitssysteme.de
-32674
- GeekNode
- Alexandre Legrix
- alex&bragon.info
-32675
- Cracow University of Economics
- Bartłomiej Kołodziej
- kolodzib&uek.krakow.pl
-32676
- Softwarehuset.DK
- Morten Stigaard Laursen
- morten&softwarehuset.dk
-32677
- EMI Music Ltd.
- Nirav Patel
- nirav.patel&emimusic.com
-32678
- Framestore Ltd
- Stephen Willey
- stephen.willey&framestore.com
-32679
- Zinc Solutions
- Antoine Reid
- areid&zinc-solutions.com
-32680
- Rentabiliweb Group
- Julien Mangeard
- admin&rentabiliweb.com
-32681
- Atwal Inc
- jaspreet atwal
- jaspreet.atwal&gmail.com
-32682
- Text Team GmbH & Co. KG
- Thorsten Marquardt
- Marquardt&text-team.de
-32683
- TOKYO KEIKI INC.
- Strategic Information Systems Offiece
- tonet-mgr&tokyo-keiki.co.jp
-32684
- Healthtrans LLC
- Scott Seekamp
- sseekamp&healthtrans.com
-32685
- Redefine Sp. z o.o.
- Łukasz Mierzwa
- lukasz.mierzwa&redefine.pl
-32686
- Holly Corporation
- Jay Blanchard
- jay.blanchard&hollycorp.com
-32687
- Digital Finance SPDA
- Denis Benoit
- denis.benoit&digitalfinance.ca
-32688
- Gigle Semiconductor
- Daniel Robles
- dani.robles&gigle.biz
-32689
- MWJ Computing
- Matthew W. Johnson
- networkoperations&mwjcomputing.com
-32690
- Comrex Corporation
- Yeasah Pell
- yeasah&comrex.com
-32691
- eXMeritus Software Federal Systems, Inc
- Robin Alman
- support&exmeritus.com
-32692
- Amcom Telecommunications Ltd
- Ian Bishop
- hostmaster&amnet.net.au
-32693
- E-számla Zrt.
- Adam Popper
- adam.popper&e-szamla.hu
-32694
- ComputerPride
- Francis Kamuyu
- kamuyu&computer-pride.co.ke
-32695
- VOZPP
- Andrei Nikodimov
- postmaster&vozpp.vsi.ru
-32696
- ZAKLAD PRODUKCYJNY TEL-KA S.C.
- Piotr Zwierko
- tlk&tel-ka.com.pl
-32697
- ACO Serverin Ahlmann GmbH & Co. KG
- Ehrhardt Petter
- epetter&aco.com
-32698
- SE-Elektronic GmbH
- Munz, Claudia
- munz&se-elektronic.de
-32699
- Thales Alenia Space France
- Herve Dubosq
- herve.dubosq&thalesaleniaspace.com
-32700
- INBUSS Informatikai Szolgáltató és Kereskedelmi Kft.
- PÁLFALVI Tamás
- tamas.palfalvi&inbuss.hu
-32701
- Loyalty Partner GmbH
- Dominik Pekarek
- dominik.pekarek&loyaltypartner.com
-32702
- Joint Stock Company "NPO RusBITech"
- Vladimir Podobaev
- rusbitech_cct&mail.ru
-32703
- Centre de Recherche Henri Tudor - SANTEC
- Uwe Roth
- uwe.roth&tudor.lu
-32704
- JSC ErshovTelecom
- Stanislav Scherbakov
- stok&artkamneva.ru
-32705
- dSys e.K.
- Andreas Becker
- andreas.becker&dsys.de
-32706
- Reech Capital Ltd
- Alessandro Evangelista
- alessandro.evangelista&sungard.com
-32707
- Pi Consulting (UK) Limited
- Christopher Henson
- cth&piconsulting.co.uk
-32708
- Dimaco Systems S.R.L.
- Vassilios Zafiropoulos
- vassilios.zafiropoulos&dimacosystems.com
-32709
- AirTies
- Beri Levi
- beri&airties.com
-32710
- Lojas Renner S.A.
- Claiton Alexandre Vieira
- claiton&lojasrenner.com.br
-32711
- fides AG
- Thomas Koch
- koch&fides.ag
-32712
- Linden Lab
- Paul Heffner
- heff&lindenlab.com
-32713
- Flox-arts.net
- Florent MONTHEL
- noc&flox-arts.net
-32714
- IPS MeteoStar
- Steven Packard
- spackard&meteostar.com
-32715
- IBM Managed Security Services
- Marc Mamane
- mmamane&us.ibm.com
-32716
- Alea Soluciones SLL
- Eduardo Ferro Aldama
- eferro&alea-soluciones.com
-32717
- Gemintek Corporation
- Jesse Huang
- jesse.huang&mail.gemintek.com.tw
-32718
- Southwestern University of Finance and Economics
- Song Xiaohui
- sxh&swufe.edu.cn
-32719
- 3Nokta Bilisim Teknolojileri Ltd.
- E.Kaan Adanali
- yardim&3nokta.net
-32720
- CVR Transport Kft
- Katalin Gallwitz
- katalin.gallwitz&cvrtransport.hu
-32721
- RTPHYS
- Erik Roelofs
- admin&rtphys.net
-32722
- MAASTRO
- Erik Roelofs
- erik.roelofs&maastro.nl
-32723
- Pacemaker Cluster Project
- Andrew Beekhof
- andrew&beekhof.net
-32724
- AIRDATEC TECNICOS, S.L.
- LUIS MIGUEL PEDRAZA
- lm.pedraza&airdatec.es
-32725
- Trans Iceland
- Anna Jonna Armannsdottir
- annajonna&gmail.com
-32726
- Tatis
- Christhonie Geldenhuys
- christhonie.geldenhuys&tatis.com
-32727
- Webtech as
- Jan Helge Salvesen
- Jan.Helge.Salvesen&webtech.no
-32728
- Grid Dynamics Consulting Services, Inc
- Edward Tregubov
- techsupport&griddynamics.com
-32729
- EMS Satcom
- Cheryl Hyslop
- hyslop.c&emssatcom.com
-32730
- Mobile For You - M4U
- Eduardo Paredes
- eduardo.paredes&m4u.com.br
-32731
- obviously-nice
- Heinz-M. Graesing
- heinz-m&web.de
-32732
- W.K. Kellogg Foundation
- Technology Support
- TechSupport&wkkf.org
-32733
- Phybridge Inc
- Oliver Emmanuel
- oliver.emmanuel&phybridge.com
-32734
- City of Seattle
- John Jacobson
- John.Jacobson&seattle.gov
-32735
- SecurityNet.cz s.r.o.
- Arne Rusek
- hukot&hukot.cz
-32736
- SHD System-Haus-Dresden GmbH
- Steffen Langer
- steffen.langer&shd-online.de
-32737
- Meghnaben Daxeshbhai Patel
- Meghnaben Daxeshbhai Patel
- meghna_vapi&yahoo.com
-32738
- Delta Nusantara Networks Co., Ltd.
- Dedy Deng
- dedy&delta.net.id
-32739
- Saimaan Lehtipaino Oy
- Timo Pelkonen
- timo.pelkonen&sanoma.fi
-32740
- Lehtikanta Oy
- Timo Pelkonen
- timo.pelkonen&sanoma.fi
-32741
- Savon Paino Oy
- Timo Pelkonen
- timo.pelkonen&sanoma.fi
-32742
- Hämeen Paino Oy
- Timo Pelkonen
- timo.pelkonen&sanoma.fi
-32743
- Sanomala Oy
- Timo Pelkonen
- timo.pelkonen&sanoma.fi
-32744
- KAMEKO Bt
- Mester József
- mesterjoco&gmail.com
-32745
- DURAG data systems
- Dipl.-Ing. Holger Frantz
- holger.frantz&durag-data.de
-32746
- Instituto de Biología, Universidad Nacional Autónoma de México
- Sergio Luis Chavarria Cisneros
- schavarria&ibiologia.unam.mx
-32747
- telenet AG Rhein-Main
- Joachim Majunke
- info-ipi&telenet-ag.de
-32748
- KolosStudio
- Kolos Andrew
- sirkonst&kolosstudio.ru
-32749
- TrustMission
- Raymond de Bernis
- rdb&trustmission.com
-32750
- LigoWave
- Matt Hardy
- mhardy&ligowave.com
-32751
- Solytron
- Vladimir Ivanov
- Vladimir_Ivanov&solytron.bg
-32752
- John Will Motors
- Paul Murphy
- paul&johnwill.co.uk
-32753
- Omniture Inc.
- Network Operations Center
- noc&omniture.com
-32754
- Dexcel Electronics Designs Pvt Ltd
- Amit Sinha
- amit.sinha&dexceldesigns.com
-32755
- Wesabe, Inc
- Sam Quigley
- sq&wesabe.com
-32756
- Creative Solutions Laboratories Sp. z o.o.
- Borys Stanczew
- Borys.Stanczew&CSLab.com.pl
-32757
- ChartConnect Inc.
- Josh Plunkett
- josh&chartconnect.com
-32758
- ANAGKY BVBA
- Willem Verbruggen
- willem.verbruggen&anagky.be
-32759
- PRIM'X Technologies
- BINET SERGE
- serge.binet&primx.eu
-32760
- Koliada
- Guy McIlroy
- guy&koliada.com
-32761
- Deliberant
- Matt Hardy
- mhardy&deliberant.com
-32762
- AKSolutions
- Hal Asbridge
- halasbridge&aksolutions.com
-32763
- YMAGIS
- Olivier Lemaire
- olivier.lemaire&ymagis.com
-32764
- inTechnology PLC
- Dale Douglas
- dale.douglas&intechnology.com
-32765
- WebHost Asia Pacific Pty Ltd
- Peter Bos
- peter.bos&webhostap.com
-32766
- Capricode
- Vesa Järvitalo
- hostmaster&capricode.com
-32767
- JPPA Gerenciamento e Projetos S/S LTDA.
- Leonardo Agustini
- lda&jppa.com.br
-32768
- Educational Service Unit 6
- Administrator
- vexie&esu6.org
-32769
- BIZICLE
- Stefan Pukallus
- spukallus&yahoo.de
-32770
- Hoedl-Online-Systemtechnik
- Friedrich Hoedl
- systemtechnik&hoedl-online.de
-32771
- Fujitsu Tohoku Systems Ltd.
- Kazuo Takahashi
- tohoku-ipwatcher&cs.jp.fujitsu.com
-32772
- Declera Ltd.
- Alek Paunov
- alek&declera.com
-32773
- Jeremy Self
- Jeremy Self
- finder83&gmail.com
-32774
- wei fang lesheng electronic CO.,LTD
- sun rui jun
- srj_01&sina.com
-32775
- Gigaset Communications
- John Spence
- Spence.John&gigaset.com
-32776
- Harry J.E Day
- Harry J.E Day
- harry&dayfamilyweb.com
-32777
- BowBridge Software
- Joerg Schneider-Simon
- joerg.schneider-simon&bowbridge.net
-32778
- Raiffeisen Bank Hungary
- Attila Klapper
- attila.klapper&raiffeisen.hu
-32779
- BBS AS
- Jan Helge Salvesen
- Jan.Helge.Salvesen&bbs.no
-32780
- synergetic AG
- Andreas Kippnick
- a.kippnick&synergetic.ag
-32781
- Groupe Chevalier
- Julien Dufourcq
- hostmaster&chevaliergestion.fr
-32782
- Conseil Général du Morbihan
- Deredec Nicolas
- nicolas.deredec&cg56.fr
-32783
- ECRIN SYSTEMS
- Bruno BERUARD
- bruno.beruard&ecrin.com
-32784
- Amplia Soluciones S.L.
- Javier Martinez
- javier.martinez&amplia.es
-32785
- PWI Consultants
- Pierre Wieser
- itadmin&wieser.fr
-32786
- MasonRay Networks
- Tim Ray
- tim.ray&masonray.com
-32787
- Aprend Technology
- Robert Alvarez
- ralvarez&aprendtech.com
-32788
- Ennoris Trans
- Evgenij Kravtsov
- ejkrav&gmail.com
-32789
- Institute of Economics, Management and Law
- Timur Batyrshin
- batyrshin&ieml.ru
-32790
- Raz-Lee Security
- Eli Spitz
- eli.spitz&razlee.com
-32791
- ICSMED AG
- Joerg Riesmeier
- icsmed-iana&riesmeier.de
-32792
- Atex Group Ltd.
- Keith Judson
- keith.judson&atex.com
-32793
- Shenick Network Systems
- Kevin Glavin
- kevin.glavin&shenick.com
-32794
- LuTong Optoelectronic Technology Co.,Ltd
- Samlee
- Samleever&163.com
-32795
- Westnet Ptd Ltd
- Jay Turner
- mta.admin&staff.westnet.com.au
-32796
- i-STS Manufactuiring
- Robert Heezeman
- roberth&staticpower.com.au
-32797
- Asempra Technologies
- Parimal Puranik
- iana&asempra.com
-32798
- Netlinx, Inc.
- Patrick H. Piper
- ppiper&netlinxinc.com
-32799
- www.thingall.com
- Bing Zhou
- zhoub1631&163.com
-32800
- www.neuq.edu.cn
- Bing Zhou
- zhoub1631&163.com
-32801
- ObjectFX
- Robert Streich
- robert.streich&objectfx.com
-32802
- Inuk Networks
- Aled Treharne
- aled.treharne&inuknetworks.com
-32803
- Research Institute for Linguistics, Hungarian Academy of Sciences
- Csaba Oravecz
- oravecz&nytud.hu
-32804
- Unify Software and Solutions GmbH & Co.
- Andrew Hutton
- andrew.hutton&unify.com
-32805
- CR Host
- Jose Romeiro Filho
- romeiro&romeiro.info
-32806
- scientia.net
- Christoph Anton Mitterer
- calestyo&scientia.net
-32807
- TVACE
- Sang Lyoul, Lee
- lyoul&tvace.co.kr
-32808
- SynTech Soc. Coop. a R.L.
- Franco Marchesini
- franco.marchesini&gmail.com
-32809
- Evalesc GmbH
- Thomas Rohde
- rohde&evalesc.de
-32810
- Lancashire Constabulary
- Chris Ayres
- chris.ayres&lancashire.pnn.police.uk
-32811
- Gemnet bv
- Marcel Nijenhof
- m.nijenhof&kpn.com
-32812
- ICFO
- Gonçal Badenes
- goncal.badenes&icfo.es
-32813
- GXPCONSULT LIMITED
- Raj K. Bains
- pen&gxpconsult.eu
-32814
- RealTime7 Inc.
- Dwight Kulkarni
- dwight&realtime-7.com
-32815
- Consert, Inc
- Bill Boswell
- bboswell&consert.com
-32816
- AREYOUNET.COM
- Yann Zinenberg
- yzinenberg&areyounet.com
-32817
- Shifted Labs
- Jake Douglas
- jakecdouglas&gmail.com
-32818
- Tecton Limited
- Andrew Wood
- woody&tecton.co.uk
-32819
- Infonet Network Systems
- Anishkumar Kurup
- anish&infonet.co.in
-32820
- Mundo Linux
- Vitor Rentes Pimentel
- vitor_rentes_pimentel&hotmail.com
-32821
- martin mollet informatik
- Martin Mollet
- software&mollet.ch
-32822
- PGS
- Paul Stenius
- pauls&cs.lamar.edu
-32823
- Hextra Digital, S.L.L.
- Xavier Rubio Jansana
- xrubio&hextra-digital.com
-32824
- Free Open Source Solutions Inc.
- Karoly Molnar
- kmolnar&eseri.net
-32825
- LS cable
- lee joo sam
- leejusam&lscable.com
-32826
- Tongji University
- Lu Hai
- lh&tongji.edu.cn
-32827
- Siemens I MO TS
- Guenther Sing
- guenther.sing&siemens.com
-32828
- Guntermann & Drunck GmbH Systementwicklung
- Dirk Stieler
- snmp-contact&gdsys.de
-32829
- Marc Cain GmbH
- Steffen Hessing
- steffen.hessing&marc-cain.de
-32830
- Questora Software, CJSC
- Edward Tregubov
- techsupport&griddynamics.com
-32831
- IDS
- Harald Härtl
- snmpadmin&ids.de
-32832
- Optech Fibres Limited
- Jason Mellors
- support&optechsupport.co.uk
-32833
- Université Lille 2 Droit et Santé
- François Périchon
- francois.perichon&univ-lille2.fr
-32834
- ANTALIS SPAIN
- Mario Boulanger
- mario.boulanger&antalis.com
-32835
- Data Driven Logistics Limited
- Gary Aston
- gary.aston&datadrivenlogistics.com
-32836
- C2SAT communications AB
- Andreas Nilsson
- andreas.nilsson&c2sat.se
-32837
- Lohmann GmbH&Co.KG
- Edgar Ehrhardt
- Edgar.Ehrhardt&lohmann-tapes.com
-32838
- University of AJK CS&IT Campus Mirpur azad Kashmir
- Usman Ali
- 4usmanali&gmail.com
-32839
- olea medical
- Faycal Djeridane
- faycal.djeridane&olea-medical.com
-32840
- Krum Independent School District
- Greg Tappert
- technology&krumisd.net
-32841
- Constant Contact
- Jason Parsons
- iana&constantcontact.com
-32842
- Seidl KEG
- Rainer Seidl
- rs&sibris.com
-32843
- Information Computing Center of Ministery of Communications and Information Technologies
- Araz Mirzayev
- oid-admin&rabita.az
-32844
- die-rudolphs
- Michael Rudolph
- michael.rudolph&die-rudolphs.de
-32845
- Metric Systems Corporation
- John Clark
- jclark&metricsystems.com
-32846
- Cougaar Software, Inc.
- William Drew
- wdrew&cougaarsoftware.com
-32847
- DataStress
- Mario Huizinga
- snmp&datastress.com
-32848
- Arquila Limited
- David Ross
- david&arquila.com
-32849
- Active Broadband Neworks Inc
- Adam Dunstan
- adam&a-bb.net
-32850
- C4i Pty Ltd
- Graeme Charles
- graemecha&hotmail.com
-32851
- Aytel
- Adrian Penny
- adrian&aytel.co.uk
-32852
- Towerstream
- Chris Manigan
- cmanigan&towerstream.com
-32853
- Pixel8 Networks
- Michael Lin
- mlin&pixel8networks.com
-32854
- OmniGlobe Networks, Inc.
- Zhixue Liu
- aliu&omniglobe.com
-32855
- Total Transaction Management, LLC
- Benson Lim
- benson.lim&ttmsolutions.com
-32856
- JL Ingram & Associates CC T/A The Hardware Junction
- Johnathan Ingram
- jingram&hardwarejunction.co.za
-32857
- Openware
- Jan Rozema
- jan&openware.nl
-32858
- nerdnet.ca
- Colin R Hahn
- colin.hahn&sasktel.net
-32859
- Escuela Politécnica Nacional
- Diego Rocha
- diegojavier95&hotmail.com
-32860
- Expert Systems (Pvt.) Ltd.
- Mubbashir Ahmad
- mubbashir&expertsystems.net
-32861
- Shenzhen LinkPower Network Systems Co.,LTD.
- William Lou
- williamloucn&gmail.com
-32862
- Böning IT-Service
- Jörn Peter Böning
- dspx&gmx.net
-32863
- OmniTI Labs
- Theo Schlossnagle
- jesus&omniti.com
-32864
- Workflow.com, LLC
- Packy Hyland
- oid&workflow.com
-32865
- Heol Design
- Philippe Irrien
- pirrien&heoldesign.com
-32866
- rockyluke
- Antoine MILLET
- antoine.millet&gmail.com
-32867
- University of Economics Prague
- Petr Hofmann
- petr.hofmann&gmail.com
-32868
- Diamante Technology Advisors, Inc.
- Ken Savela
- ksavela&diamanteconsulting.com
-32869
- Gravitas MM Ltd
- Dariush Marsh-Mossadeghi
- dariush&gravitas.co.uk
-32870
- Fujian Sunnada Communication Co., Ltd
- yun chen
- 12310cy&163.com
-32871
- BUPT Incowin Information Communication Technology Institute Ltd.
- LiuYong
- liuyong&incowin.com.cn
-32872
- Royal Alberts Broadcasting Network
- Subu Ayyagari
- subu.ayyagari&gmail.com
-32873
- KONE Corporation
- Jani Hautakorpi
- jani.hautakorpi&kone.com
-32874
- Novatium Solutions Private Limited
- Venu Gopala Raju Kanumuri
- venu&novatium.com
-32875
- vedicis
- Francois-Frederic Ozog
- ff&vedicis.com
-32876
- Marian Fotul
- Marian Fotul
- oid.admin&fotul.sk
-32877
- Radio Amateurs Against Packet Radio
- Vesa Tervo
- keymaster&grim.raapr.org
-32878
- MediaPod SARL
- Pascal JARDE
- iana&mediapod.net
-32879
- Eugene 4J School District
- Troy Knabe
- knabe&4j.lane.edu
-32880
- Knerer & Lang Architekten GmbH
- Alvaro Aguilera
- alvaro.aguilera&herbstwest.de
-32881
- BeeMobile
- Mark Lever
- lever&beemobileusa.com
-32882
- GameAccount Global Ltd
- Sasedharen Chinnathambi
- schinnathambi&gameaccount.com
-32883
- One23 Designs
- Mark Lever
- lever&one23.org
-32884
- Chemnitzer Verlag und Druck GmbH & Co. KG
- Peter Nawroth
- peter.nawroth&freiepresse.de
-32885
- H-Net AG
- Marcel Kleiber
- marcel.kleiber&h-net.ch
-32886
- Restorepoint (formerly 'TADASoft Ltd')
- Riccardo Valente
- riccardo&restorepoint.com
-32887
- Joseph King ICT Consultants
- Yusuf Rajah
- yusuf&josephking.it
-32888
- Bizsensors
- Soumadeep Sen
- soumadeep&bizsensors.com
-32889
- The College at Brockport State University of New York
- Kevin Colagio
- kcolagio&brockport.edu
-32890
- Bigred Solutions Ltd
- Stephen Solberg
- stephensolberg&bigredsolutions.com
-32891
- Jangwhan Kim
- Jangwhan Kim
- kim.jangwhan&gmail.com
-32892
- caplog-x GmbH
- Christian Regner
- christian.regner&caplog-x.de
-32893
- BJ's Deisgn & Consulting, Inc.
- Colenso W Price
- cw&bjsdesign.com
-32894
- Touro College
- Yitzchak Schaffer
- yitzchas&touro.edu
-32895
- BRICOM Technology Co., Ltd.
- Yi Huaixun
- yihuaixun&sina.com
-32896
- Jarn AS
- Laurence Rowe
- lrowe&jarn.com
-32897
- Megware Computer GmbH
- Robert Hommel
- robert.hommel&megware.de
-32898
- Spectrum Health
- Patrick J. O'Hare
- informationsecurity&spectrum-health.org
-32899
- Quist Ltd.
- David D'Acquisto
- iana&quist.ch
-32900
- Dimensional Insight
- Toby Burress
- tdb&dimins.com
-32901
- SAGI-B Expert Group Sp. z o.o.
- Konrad Sagala
- konrad.sagala&sagi-b.pl
-32902
- Verizon
- Christopher M. Gonzalez
- Chris.Gonzalez&verizon.com
-32903
- Lincoln Laboratory
- Edward Kuczynski
- edk&ll.mit.edu
-32904
- NUMLOG
- Francis GASCHET
- fg&numlog.fr
-32905
- Cognito Ltd
- Mr A Potter
- andy.potter&cognitomobile.com
-32906
- Rorotika Technologies
- Hugo Mokken
- pen-iana&rorotika.com
-32907
- NPO RTC, Ltd.
- Sergey Koupreyenko
- ksw&npo-rtc.ru
-32908
- ADVENAGE GmbH
- Dr. Lutz Grüneberg
- lutz.grueneberg&advenage.com
-32909
- Kinek Technologies Inc.
- Michael Hartery
- michael.hartery&kinek.com
-32910
- Impeq Technologies BV
- Stefan van Zoggel
- s.van.zoggel&impeq.com
-32911
- Brian Raaen Network Consulting
- Brian Raaen
- iana-pen&brianraaen.com
-32912
- Duck Creek Technologies, Inc
- Johnny Ramirez
- networkservices&duckcreektech.com
-32913
- Electrodata Recorders Pty Ltd
- Sunil Hargunani
- sunilh&electrodata.com.au
-32914
- Pharmacy Chain 36.6
- Alexeychenko Mikhail
- mikhail.alexeychenko&gmail.com
-32915
- Edinburgh's Telford College
- John Yeaman
- pen&ed-coll.ac.uk
-32916
- Lane Community College
- Thad Cowdin
- cowdint&lanecc.edu
-32917
- GT Apps Limited
- Radim Marek
- radim&laststation.net
-32918
- Institut Sainte Catherine
- Hénoch Hervé
- h.henoch&isc84.org
-32919
- Barking Iguana
- Craig R Webster
- craig&barkingiguana.com
-32920
- ETSA
- Laurence Le Floc'h
- llefloch&etsa.fr
-32921
- Orbis Technology Ltd
- Andre Esser
- it-notice&OrbisUK.com
-32922
- Verathon
- Stephen Dudycha
- sdudycha&verathon.com
-32923
- Alastair Carr
- Alastair Carr
- alastairrcarr&tiscali.co.uk
-32924
- Menturagroup Ltd
- Markku Kentta
- markku.kentta&menturagroup.com
-32925
- Treck Inc.
- Peter Carney
- pcarney&treck.com
-32926
- WebOnyx
- Jared Laprise
- jared&webonyx.com
-32927
- Unlabeled Artists Group, LLC
- Chris Osborn
- domain.admin&unlabeled.com
-32928
- BrightHouse
- Dean Robinson
- dean.robinson&brighthouse.co.uk
-32929
- Squarewave Computing
- Robert Niederreiter
- office&squarewave.at
-32930
- Wolfgang Karall EDV Consulting and Training
- Wolfgang Karall
- office&karall-edv.at
-32931
- TOTEC AMENITY LIMITED (formerly 'easynet, inc.')
- Kazuhito Aono
- Kazuhito_Aono&totec.co.jp
-32932
- Direct Telecom Ltd
- Andrey Nikolayev
- nikolayev&directtel.ru
-32933
- Conduct AS
- Lars Preben Sorsdahl
- lars.preben&conduct.no
-32934
- Institute of Biophysics, AS CR, v.v.i.
- Josef Jursa
- jursa&ibp.cz
-32935
- Amalto Technologies
- Bruno Grieder
- bruno.grieder&amalto.com
-32936
- Atelier Decora
- Jannis Jacobsen
- drift&decora.no
-32937
- uma information technology GmbH
- Daniel Doegl
- daniel.doegl&uma.at
-32938
- Server Racks Australia
- Gordon Campbell
- support&server-racks-australia.com.au
-32939
- Fachhochschule Hannover
- Jürgen Rosemeyer
- ldap&fh-hannover.de
-32940
- NCC AB
- Henrik Liljeqvist
- henrik.liljeqvist&ncc.se
-32941
- Azet.sk, a.s.
- Ivan Debnár
- debnar&firma.azet.sk
-32942
- Voltage Security
- Robert Slifka
- rob.slifka&voltage.com
-32943
- HEXIOS
- Tom Casaer
- tom.casaer&hexios.be
-32944
- drs4drs
- Robert Pollard
- rpollard&drs4drs.com
-32945
- Norsk eSport DA
- Einar S. Idsø
- einar.oid&norsk-esport.no
-32946
- Manuel Meistrowitz
- Manuel Meistrowitz
- manuel_meistrowitz&web.de
-32947
- Nuclemed S.A.
- Gustavo Coscia
- gcoscia&nuclemed.com.ar
-32948
- UniFirst Corporation
- Brian Doiron
- bdoiron&unifirst.com
-32949
- SunWater
- Bill Holder
- bill.holder&sunwater.com.au
-32950
- Meucci Solutions
- Lieven De Bontridder
- lieven.de.bontridder&meucci-solutions.com
-32951
- Wellseeing Communication Technology Co.,Ltd
- Neill Wang
- xingye_wang&126.com
-32952
- PheeNet Technology Corp.
- Ms. Eileen Wei
- eileen&pheenet.com.tw
-32953
- YACOUB Automatiom GmbH
- Peter Schuetz
- ps&yat.de
-32954
- Italiaonline S.p.A.
- Mantovani Alberto
- alberto.mantovani&italiaonline.it
-32955
- Hrvatske sume d.o.o
- Ratko Pacadi
- ratko.pacadi&hrsume.hr
-32956
- ipct.net
- Michael Linke
- info&ipct.net
-32957
- IN Switch Solutions
- Sebastian Bello
- sebastian.bello&inswitch.us
-32958
- YMMV LLP
- Andy Brown
- snmp&ymmv.co.uk
-32959
- Audit Bureau - Qatar
- Mahmoud Albatarni
- mahmoud&albatarni.com
-32960
- Ringsted Kommune
- Tobias Moelgaard Laursen
- tom&ringsted.dk
-32961
- KBC Consumer Finance
- Radoslaw L. Zak
- radoslaw.zak&zagiel.com.pl
-32962
- Beijing Gefei Tech. Co., Ltd
- Guo Xiaoxia
- gxx&cbvt.com
-32963
- Taekjin Solutions
- Taekjin Jun
- taekjin&mgame.co.jp
-32964
- Brand Up LLC
- Robert Goodyear
- domain-admin&brand-up.com
-32965
- REAL Solutions S.A.
- Eric NOEL
- eric.noel&real.lu
-32966
- eSpida Limited
- Paul Hanson
- Paul.Hanson&espida.co.uk
-32967
- Centro de Tecnologia da Informação Renato Archer
- Alexandre de Almeida Duarte
- alexandre.duarte&cti.gov.br
-32968
- HELiX Software + Support GmbH
- Raimund Hölle
- raimund.hoelle&helix.de
-32969
- Odin TeleSystems Inc
- Hanz Johansson
- hanz&odints.com
-32970
- Caltha - Krzewski, Mach, Potempski Sp. J.
- Rafał Krzewski
- Rafal.Krzewski&caltha.pl
-32971
- MUZICALL
- Benjamin Kohler
- sysadmin&muzicall.com
-32972
- TransWorks, Inc.
- Greg Rhoades
- greg.rhoades&trnswrks.com
-32973
- POP.PL - Internetowe Systemy Sieciowe
- Slawomir Bem
- admin&pop.pl
-32974
- Stimulus Software
- Jamie Band
- jamie&stimulussoft.com
-32975
- CircleSoft Llc
- Gerard J. Cerchio
- gjpc&circlesoft.com
-32976
- HyC Américas
- René Fuentes Riquelme
- rene.fuentes&hyctv.com
-32977
- TELoIP
- Network Administrator
- netadmin&teloip.com
-32978
- IntelliDOT Corporation
- Brandon Gilmore
- bgilmore&intellidotcorp.com
-32979
- XIX
- Markus Juenemann
- markus&juenemann.net
-32980
- Hitachi Systems Engineering Services, Ltd. (formerly 'Hitachi Systems Engineering and Solutions, Ltd.')
- Yasumasa Ichioka
- wiseaudit.rm&ml.hitachi-systems.com
-32981
- Arcadyan Technology Corporation
- Thomas Lee; Tom Teng
- tom_teng&arcadyan.com
-32982
- Trends Telematics BV
- Theo Belder
- development&trends.nl
-32983
- Open Computing Solutions
- Todd Shadburn
- tshadb&opencomputingsolutions.com
-32984
- Advantage Telecom
- Fedor A. Kosilov
- fkosilov&adtel.ru
-32985
- Philips Electronics (Israel) LTD - Philips HealthCare
- Amir Rosenbloom
- amir.rosenbloom&philips.com
-32986
- Kommunik8 Inc.
- Brad Gawne
- board&kommunik8.com
-32987
- Barrowa
- Kelvin Carman
- kelvin.carman&barrowa.com
-32988
- Dott. Giulimondi Gabriele
- Gabriele Giulimondi
- gabriele&giulimondi.it
-32989
- in-volv
- Gintaras Vaira
- gintaras.vaira&in-volv.com
-32990
- Prahm IT-Systemdienstleistungen
- Jens Prahm
- j.prahm&prahm-it.de
-32991
- dix.cz
- Tomas Hruby
- th&dix.cz
-32992
- ladava.com
- Matjaz Ladava
- matjaz&ladava.com
-32993
- OpenSAF Foundation
- Henry Turko
- henry&erin-services.com
-32994
- Standingstone
- Simon Woods
- simon&standingstone.de
-32995
- Vendio Services, Inc.
- Lorin Scraba
- netops&corp.vendio.com
-32996
- GOURMET NAVIGATOR INCORPORATED
- KIMURA Hiroshi
- registry-tec&gnavi.co.jp
-32997
- Tuijnman Professional Services
- Daniel Tuijnman
- daniel&velotype.nl
-32998
- Shanghai DareGlobal Technologies Co.,Ltd.
- Yuguang, Yang
- yangyuguang&dare-tech.com
-32999
- Air Transportation Advancement Program
- Jeong, Woo-Cheol
- wcjeong&hist.co.kr
-33000
- Zeon Corporation
- Shixian Ma
- sxmabj&hotmail.com
-33001
- Micro Talk Systems Corp.
- Eda Ryuichiro
- eda&greentag.to
-33002
- Open End AB
- Anders Hammarquist
- iko&openend.se
-33003
- SHENZHEN GONGJIN ELECTRONICS CO.,LTD
- xiaojian luo
- luoxiaojian&twsz.com
-33004
- Universal Scientific Industrial (Shanghai) Co., Ltd
- yun zhu
- yun_zhu&usish.com
-33005
- Artio Oy
- Urho Tamminen
- info-fi&artio.net
-33006
- MGB-Tech B.V.B.A.
- Bruno De Maesschalck
- bdm&mgb-tech.com
-33007
- Schoenhofer Sales And Engineering GmbH
- Dirk Fuks
- dirk.fuks&schoenhofer.de
-33008
- TV 2
- Robert Uglehus
- rug&tv2.no
-33009
- Stadtverwaltung Mannheim
- Certificate Support
- cert&mannheim.de
-33010
- IRB Barcelona
- Francisco Lozano
- its&irbbarcelona.org
-33011
- digital performance
- Stephan Scholz
- info&dp4.de
-33012
- FASTFOOD-SERVICE LTD.
- Dmitry Demianov
- barlone&yandex.ru
-33013
- NexAira, Inc.
- Michael Manulis
- mmanulis&nexaira.com
-33014
- Network Zen
- Glen Zorn
- gwz&net-zen.net
-33015
- Emilie Myers and Associates
- Julian Myers
- julian&emiliemyers.com
-33016
- Ajuntament de Barcelona
- M Mercedes Mestre Antoli
- mmestre&bcn.cat
-33017
- Mobito Inc
- Ryan Humiya
- services&mobitocorp.com
-33018
- Pilin-Echtar.NET
- JF MASSARD
- jf.massard&gmail.com
-33019
- Huntsville Hospital
- Ryan Petraszewsky
- ryanp&hhsys.org
-33020
- Rebel 2000 Limited
- Colin Gaunt
- colin.gaunt&rebel2000.com
-33021
- WFG PARTICIPAÇÕES S.A.
- CARLOS ARCE
- carce&xpg.com.br
-33022
- Simon & Stolle GbR
- Frank Stolle
- f.stolle&hosting-agency.de
-33023
- Eoos Technologies GmbH
- Norbert Niederhuebner
- nn&eoos-technologies.com
-33024
- Lenovo Chinaweal System & Service Co.,Ltd
- wangquanbo
- wangqb&lenovo-cw.com
-33025
- Atlanta Advanced Communications Holdings Limited
- peter.xu
- xq&axelwave.com.cn
-33026
- Positive Advisory S.A.
- Artur Kulinski
- akulinski&positiveadvisory.pl
-33027
- CAJA DE AHORROS DE GALICIA
- Manuel Duran
- manueld&caixagalicia.es
-33028
- Prassel S.r.l.
- Nicola Murino
- n.murino&prassel.it
-33029
- CJSC “Borisoglebsk Communication System"
- Smirnoff Sergey
- eto&bss.vrn.ru
-33030
- Timico Ltd
- Paul Sherratt
- networks&timico.net
-33031
- C.G.C.,a.s.
- Roland Prochazka
- prochazkar&cgc.sk
-33032
- CTP GmbH
- Martin Obermair
- m.obermair&ctp-gmbh.com
-33033
- Probability PLC
- Marcus Gustavsson
- admins&probability.co.uk
-33034
- Taleo Inc.
- Martin Tremblay
- noc&taleo.com
-33035
- InGenius Software
- Ralph Curtis
- Ralph&InGenius.com
-33036
- A.ö. Krankenhaus der Elisabethinen Linz
- IKT Abteilung
- it&elisabethinen.or.at
-33037
- Broadcast International
- J. Dean Brederson
- dean.brederson&brin.com
-33038
- Fluor Corporation
- Darren Albers
- Darren.Albers&fluor.com
-33039
- Adapt4 LLC
- Bob Lawless
- support&adapt4.com
-33040
- BeatleNet Ltd.
- Uri Mozer
- uri&beatlenet.com
-33041
- ZEIT Verlag Gerd Bucerius GmbH & CO KG
- Ingo Paschke
- ingo.paschke&zeit.de
-33042
- bitrausch
- Markus Ketterl
- info&bitrausch.net
-33043
- Shared Autonomous sYstems
- Morten Hermanrud
- mhe&say.no
-33044
- Mantica Solutions S.L.
- David Ramirez
- david.ramirez&mantica-solutions.com
-33045
- JinPeng
- Wang Yong
- wangyong.net&gmail.com
-33046
- NEXTWERK IT-Services GmbH
- Christopher Banck
- Christopher.Banck&nextwerk.de
-33047
- Freifunk Potsdam e.V.
- Kai Sommer
- iana&freifunk-potsdam.de
-33048
- Brand
- Hans-Juergen Brand
- pen&brand-online.info
-33049
- Mellanox Technologies LTD
- Sagi Rotem
- sagir&mellanox.co.il
-33050
- China IWNCOMM Co., Ltd.
- Zheng Li
- iad&iwncomm.com
-33051
- flykernel
- Mike Dong
- mikedong&flykernel.com
-33052
- Dhyan Infotech Inc.,
- Sai Krishnan
- sai&dhyanit.com
-33053
- Vialis bv.
- Eelco van Dam
- eelco.van.dam&vialis.nl
-33054
- iPLON GmbH The Infranet Company
- Thomas Kurz
- kurz&iplon.de
-33055
- Van Dijk Educatie BV
- Hessel Smid
- hessel.smid&vandijk.nl
-33056
- Cambridge Research Systems Ltd.
- Don Jackson
- don.jackson&crsltd.com
-33057
- CRISOL DE FRUTOS SECOS S.A.T
- Jordi Tormo
- jtormo&crisolfs.com
-33058
- Stratus Telecommunications
- Arun Dharankar
- Arun.Dharankar&StratusTelecom.Com
-33059
- MOBITRUM
- Ray Wang
- ray_wang&mobitrum.com
-33060
- International Computer Science Institute
- David Johnson
- iana&icsi.berkeley.edu
-33061
- University of Shanghai for Science & Technology
- Wang Jia Lin
- realeric327&hotmail.com
-33062
- Netvision Telecom Inc.
- Han Young Song
- hysong&netvisiontel.co.kr
-33063
- DVN Technology Limited
- Chaplin J.F. Chen
- chaplinchen&dvnholdings.com
-33064
- A2B Electronics AB
- Emil Ljungdahl
- emil.ljungdahl&a2b.se
-33065
- CertiCon a.s.
- Kamil Kantar
- kamil.kantar&certicon.cz
-33066
- SmartSynch, Inc.
- Derek Gibbs
- dgibbs&smartsynch.com
-33067
- Lake Cumberland District Health Department
- Robert M Campbell
- robertm.campbell&ky.gov
-33068
- F2Ware Inc.
- Helen Pai
- helen&f2ware.com
-33069
- Grieshaber Logistik AG
- Marius Titz
- mtitz&grieshaberlog.com
-33070
- Alkaloid Networks LLC
- Ben Klang
- ben&alkaloid.net
-33071
- BBMS AS
- Erlend Ringstad
- tech&bbms.no
-33072
- subsist GmbH
- Jens Graefe
- jens.graefe&subsist.de
-33073
- System Analysis and Information Technologies Conference
- Mykhailo Makukha
- sait&sait.org.ua
-33074
- Oryx Mail Systems GmbH
- Arnt Gulbrandsen
- arnt&oryx.com
-33075
- linux systeme thomas
- Jens Thomas
- info&linux-systeme-thomas.de
-33076
- SCORE42 SAS (formerly 'Virtual Internet Service Provider')
- RAKOTOMALALA Renaud
- renaud.rakotomalala&score42.eu
-33077
- InformSvyazStroi, Ltd.
- Aleksei Miheev
- amiheev&st-host.ru
-33078
- Ganymeade Systems
- Dan Schaper
- dschaper&ganymeade.com
-33079
- EmblaCom Oy
- Niclas Svahnström
- niclas.svahnstrom&emblacom.com
-33080
- Drexler Hard- und Software e.K.
- Kai Edinger
- admin&drexler-software.de
-33081
- KOGAN
- Kevin Cadogan
- kevin.cadogan&bigpond.com
-33082
- zozs.se
- Linus Karlsson
- iana.admin&zozs.se
-33083
- Seafreeze Acquisition LLC,
- Allen Williams
- allenwilliams&seafreeze.com
-33084
- Box and Dice Software Pty Ltd
- Support
- support&boxdice.com.au
-33085
- Mueller Ltd. & Co. KG
- Franziska Seibold
- franziska.seibold&mueller.de
-33086
- ims Info Management System AG
- Oskar Persano
- ope&ims-info.ch
-33087
- International School of Stuttgart e. V.
- Juergen Eichenbrenner
- support&issev.de
-33088
- Versatile Knowledge System
- Karol Depka Pradzinski
- karolrvn&verknowsys.info
-33089
- Fachhochschule für öffentliche Verwaltung NRW
- Martin Wolf
- martin.wolf&fhoev.nrw.de
-33090
- xxlboy
- Florin Buzec
- florin.buzec&yahoo.com
-33091
- TCRP
- Carlos Visser
- carlos_visser&tcrpmail.com
-33092
- Opsource
- John Hedden
- jhedden&opsource.net
-33093
- LexisNexis RIAG
- Philip Schwartz
- philip.schwartz&lexisnexis.com
-33094
- Netactive Systems Ltd
- Gary R Smith
- gary.smith&netactive.co.uk
-33095
- HyTrust, Inc.
- Hemma Prafullchandra
- hemma&hytrust.com
-33096
- Hard To Port Productions
- Stephanie Carlyle
- stephanie&hardtoportproductions.com
-33097
- Adligo Inc
- Scott Morgan
- scott&adligo.com
-33098
- Gradient Effects
- Kelly Bergougnoux
- systems&gradientfx.com
-33099
- Rudra Nevatia
- Rudra Nevatia
- admin&rudranevatia.com
-33100
- ELITE Sistemas
- Jose Luis Martin Peinado
- elite&elitegrupo.com
-33101
- Danube Data Center GmbH
- Roland Felnhofer
- admin.network&danubedc.com
-33102
- Engelsburg Gymniasum
- Jannes Jeising
- j.jeising&webkassel.de
-33103
- EmisFR
- Stephane BERTHELOT
- sberthelot&emisfr.com
-33104
- KyaPanel
- Anahuac de Paula Gil
- anahuac&anahuac.biz
-33105
- D-ns
- Anthony Bousselier
- admin&d-ns.fr
-33106
- Softbooking
- Alexandre Georges
- alexandre.georges&softbooking.com
-33107
- Meetup, Inc.
- Qing Shou
- qing&meetup.com
-33108
- Nexen Services, Alter Way Hosting
- LDAP Administrator
- ldapadmin&nexenservices.com
-33109
- Cumquat Information Technology BV
- Jan Vissers
- Jan.Vissers&cumquat.nl
-33110
- ITD Network SA
- Cvetelin Petkov
- cpetkov&itdnet.net
-33111
- dickicht.org GbR, Ragnar Nevries & Robert Waltemath
- Ragnar Nevries
- iana-pen&dickicht.org
-33112
- Vidient Systems, Inc.
- Jon Cook
- joncook&vidient.com
-33113
- FXhome
- Toby Walsh
- pen.malone&fxhome.com
-33114
- Maricopa County Community College District
- Norm Dye
- n.dye&domail.maricopa.edu
-33115
- Shamir Systems Ltd.
- Ofer Dar
- ofer&shamir-sys.co.il
-33116
- Solvo, Ltd.
- Andrew L. Shwaika
- als&solvo.ru
-33117
- Linuxense Information Systems Pvt. Ltd.
- Rajkumar Sukumaran
- raj&linuxense.com
-33118
- Freescale Semiconductor
- Sen Li
- sen.li&freescale.com
-33119
- AltaStream Controls Inc
- Miroslav Ristic
- mristic&altastream.com
-33120
- eZ Systems
- Maik Seyring
- it&ez.no
-33121
- Tadcom AB
- Simon Percivall
- simon&tadcomab.se
-33122
- Vestmark, Inc.
- William Porter
- wporter&vestmark.com
-33123
- ProTel Communications Ltd
- Ravin Dimantha
- ravin&protelnet.com
-33124
- ASKing Co., Ltd.
- Akiko Ohtsuki
- iana-pen&asking.co.jp
-33125
- Precise Power, Inc.
- Daniel Baileys
- dbaileys&precisepower.com
-33126
- DataSoft Corp.
- Luke Ritchie
- luke.ritchie&datasoft.com
-33127
- Dialog und Medien Agentur der ACS mbH
- Carsten Kollmeier
- kollmeier&dialog-medien.net
-33128
- Semperian Capital Management
- Ingmar Hupp
- ingmar.hupp&semperian.co.uk
-33129
- ENTEREST GmbH
- Stefan Deigmüller
- stefan.deigmueller&enterest.com
-33130
- Virtual Instruments Corporation
- Andrea Nagao
- andrea.nagao&virtualinstruments.com
-33131
- Drexel University
- Paul Keenan
- pen-mgr&drexel.edu
-33132
- Lichti² GbR
- Roland Thomas Lichti
- rlichti&kaiserpfalz-edv.de
-33133
- Daedalus Software, Inc.
- Stefano Santoro
- SSantoro&DaedalusSoftware.com
-33134
- LS Industrial Systems Co.,Ltd.
- YoungChan, Kim
- yckimc&lsis.biz
-33135
- PeakSystems
- Alexander Krasnov
- a_krasnov&peaksystems-software.com
-33136
- ELPRO VIDEOLABS srl
- Renzo Parile
- r_d&elprovideolabs.com
-33137
- JIGAR
- JIGAR BULCHANDANI
- jigarbulchandani&ymail.com
-33138
- TENA SDA
- Bhagat Bandlamudi
- bandlamudib&tena-sda.org
-33139
- 5gbit.de
- Andre Brandt
- webmaster&5gbit.de
-33140
- theBside
- Kirk Bridger
- kbridger&shaw.ca
-33141
- e-Rank Internetdiensten
- Rens Admiraal
- rens&e-rank.nl
-33142
- Manuel Kobashigawa
- Manuel Kobashigawa
- mk.sysnet&yahoo.com
-33143
- Clipsal Australia Pty Ltd
- Tim Bates
- tim.bates&clipsal.com.au
-33144
- Kitten Wranglers Unlimited
- Rina Carman
- rinacarman&gmail.com
-33145
- Digivision Entertainment Private Limited
- Parvez Ahmad Rishi
- parvez.rishi&smarttv.co.in
-33146
- Stiftung Nikolauspflege
- Michael Weinberger
- Michael.Weinberger&nikolauspflege.de
-33147
- Olivier BONHOMME
- Olivier BONHOMME
- obonhomme&nerim.net
-33148
- British Columbia Wireless Network Society
- Matthew Asham
- matthewa&bcwireless.net
-33149
- Defining Technology, Inc.
- Bruce Olsen
- bruce.olsen&definingtech.com
-33150
- silmarilli.eu
- Ludovic Dupont
- silmarilli.eu.oid&gmail.com
-33151
- CAIL Technologies
- Jim Walker
- jim_walker80&yahoo.com
-33152
- ASIC North, Inc.
- Mike Laramie
- mike.laramie&asicnorth.com
-33153
- TeleDNA Communications Pvt. Ltd.
- Jitendra Patil
- jitupatil&teledna.com
-33154
- NPO Impuls
- Alexei Lystsev
- impuls_ntc&mail.ru
-33155
- Code Jawa
- Trio Syamsul Benny
- tech_support&codejawa.com
-33156
- Monsternett AS
- Helge Milde
- helge&monsternett.no
-33157
- fqdn dot Ro
- Daniel Crisan
- crisandaniel&gmail.com
-33158
- ak obs, ltd.
- Igor Artemov
- info&omobus.ru
-33159
- AGS INFORMATIQUE
- Hamed AZOUAOU
- h.azouaou&agsinformatique.fr
-33160
- The Invariant Autocracy
- Peter M Gerdes
- hostmaster&invariant.org
-33161
- www.libvoip.com
- Cullen Jennings
- fluffy&cisco.com
-33162
- DCS Internet Pty Limited
- Benjamin Wakefield
- ben&team.dcsi.net.au
-33163
- Gundersen Lutheran
- David P. Mezera
- dpmezera&gundluth.org
-33164
- datahouse AG
- Daniel Meister
- daniel.meister&datahouse.ch
-33165
- Minds + Machines
- Jothan Frakes
- jothan&mindsandmachines.com
-33166
- Fiasko Software
- Joakim Soya
- jsoya&fiaskosoftware.com
-33167
- Trusted Logic
- Erwan David
- Erwan.David&trusted-logic.com
-33168
- mLife Sp. z o.o.
- Andrzej Trawiński
- andrzej.trawinski&mlife.pl
-33169
- Via-Vox Limited
- shaun gibson
- shaun.gibson&via-vox.net
-33170
- International Financial Data Services (Canada) Ltd.
- Sarah Nordstrom
- snordstrom&ifdsgroup.com
-33171
- HELIKA, a.s.
- Petr Kralik
- petr.kralik&helika.cz
-33172
- NetClean Technologies Sweden AB
- Bengt Gördén
- bengt.gorden&netclean.com
-33173
- Annidis Health Systems Corp
- Rob Andrews
- roba&annidis.com
-33174
- COMM-connect A/S
- Steen Moeller
- steen.moeller&comm-connect.com
-33175
- ZIEHL industrie-elektronik GmbH+Co KG
- Uwe Ziehl
- u.ziehl&ziehl.de
-33176
- Rambla
- Wout Decré
- wout&rambla.be
-33177
- Radiation Oncology Victoria
- Philip Yarra
- admin&radoncvic.com.au
-33178
- Jilin University
- Hongmei Yu
- hmyu&jlu.edu.cn
-33179
- omod
- Dan White
- whitehse&gmail.com
-33180
- PayLife Bank GmbH
- Martin Steinbichler (Systemtechnik)
- iana&paylife.at
-33181
- LASELEC S.A.
- Olivier LARRIGAUDIERE
- olivier.larrigaudiere&laselec.com
-33182
- Advanced Network Engineering Consultants Limited
- Christopher J Knight
- anecltd&gmail.com
-33183
- SystemsPromAutomatic
- Anatoly Danilov
- ermolaew&bk.ru
-33184
- AsiaRF Ltd.
- Tzong Der Lai
- sales&asiarf.com
-33185
- jps networks
- James Shaw
- iana&jpsnetworks.co.uk
-33186
- Data Robotics, Inc
- Rod Harrison
- rod&drobo.com
-33187
- Commission de la santé et de la sécurité du travail (CSST)
- Francis Bugeaud
- francis.bugeaud&csst.qc.ca
-33188
- DANS – Data Archiving and Networked Services
- Henk van den Berg
- henk.van.den.berg&dans.knaw.nl
-33189
- Droplet Technology Inc
- Arun Mahajan
- arun&droplet-tech.com
-33190
- Petroleum Development Oman LLC
- Sueliman Al-Harthy
- suleiman&pdo.co.om
-33191
- Equine Technology Pte Ltd
- Dr Peter Lim Boon-Lum
- peterlim09&equinetech.net
-33192
- University of Žilina
- Ján Janech
- jan.janech&fri.uniza.sk
-33193
- Powercom Consultants Pty Ltd
- Nick Sonneveld
- nick&powercomgroup.com
-33194
- Kreditor Europe AB
- Per Björn
- sysadmin&kreditor.se
-33195
- Bimash LLP
- Beibut Yerzhanov
- beibut.yerzhanov&bimash.kz
-33196
- VITA
- John Rynearson
- techdir&vita.com
-33197
- WIT
- M. DUFFAU Georges
- georges.duffau&wit.fr
-33198
- SISCA
- Samuel littierre
- Samuel.littierre&sis-ca.fr
-33199
- "TERRATEL" LLC
- Aleksandr Sobkovych
- oleksandr.sobkovych&terratel.eu
-33200
- Gelber Group LLC
- A. Blake Cooper
- bcooper&gelbergroup.com
-33201
- 3F Elettronica s.n.c.
- Federigi Dino
- 3felettronica&3felettronica.com
-33202
- ASUMO CO., LTD.
- Yamagishi Makoto
- yamagishi_m&asumo-inc.com
-33203
- SensiMesh Pte Ltd
- Wu Zheng
- zheng.wu&sensimesh.com
-33204
- Sprillion Technologies
- Shivaram Upadhyayula
- snm&sprillion.com
-33205
- Elman srl
- Pierluigi Fiori
- p.fiori&elmansrl.it
-33206
- Aqueouslife
- Richard Graham
- richard&aqueouslife.co.uk
-33207
- CEJIL - Center for Justice and International Law
- Mariano Absatz
- baby&baby.com.ar
-33208
- AMB Consulting SARL
- Alexandre Berge
- alexandre.berge&amb-consulting.com
-33209
- Dich Networks Co.
- Andrew Wan
- andrew&dich.com.tw
-33210
- Qvantel
- Malyadri Beegala
- malyadri.beegala&qvantel.com
-33211
- Westminster College
- Troy Gerber
- tgerber&westminstercollege.edu
-33212
- Rötzer Engineering
- Torsten Schmidt
- schmto&hrz.tu-chemnitz.de
-33213
- Moeller GmbH
- Arnd Stein
- arnd.stein&moeller.net
-33214
- IPBFR
- Michel Pallard
- pallard&ipb.fr
-33215
- Swisscanto Assetmanagement AG
- Stefan Liechti
- stefan.liechti&swisscanto.ch
-33216
- Dr. August Oetker Nahrungsmittel KG
- Maik Wegnar
- mwegnar&oetker.de
-33217
- accessec GmbH
- Sebastian Rohr
- rohr&accessec.com
-33218
- Polar Circle AS
- Kim A. Betti
- post&polar-circle.no
-33219
- Causata Ltd
- John Graham-Cumming
- jgc&causata.com
-33220
- Netfonds Bank ASA
- Bjørn Nordbø
- drift&netfonds.no
-33221
- Insumo Systems
- Steve Gibson
- sgibson&insumo.com.au
-33222
- INECOIEC
- Omar Poch
- omar&inecoiec.com.ar
-33223
- Aero-Info Technologies Co.,Ltd.
- Geng Wang
- wanggeng&ait.cn
-33224
- CJSC Rosta
- Alexey Lychagin
- alex&zaorosta.ru
-33225
- Obelux Oy
- Mr. Reijo Järnstedt
- reijo.jarnstedt&obelux.fi
-33226
- Inline Internet Online Dienste GmbH
- Ansgar Sonntag
- sonntag&inline.de
-33227
- PromiNet s.r.o
- Ing. Marek Zidek
- marek.zidek&prominet.sk
-33228
- AareNet AG
- Daniel Jaggi
- daniel.jaggi&aarenet.com
-33229
- COMUNICI GmbH
- Sebastian Mauer
- s.mauer&comunici.com
-33230
- Blueloop Ltd
- Jon Gerdes
- gerdesj&blueloop.net
-33231
- AvL Technologies
- Scott Bakken
- sbakken&avltech.com
-33232
- stderr.nl
- Matthijs Kooijman
- matthijs&stdin.nl
-33233
- ALERT Life Sciences Computing, S.A.
- Luis Costa
- luis.costa&alert.pt
-33234
- Halon Security
- Jonas Falck
- jonas.falck&halonsecurity.com
-33235
- DataHack
- Erik Lax
- root&datahack.se
-33236
- AMTRON GmbH
- Hans-Dieter Gehlen
- registration&amtron.net
-33237
- Authernative, Inc.
- Dipankar Das
- dipankar.das&authernative.com
-33238
- ReachLocal, Inc.
- System Operations
- sysops&reachlocal.com
-33239
- Active Control Technology Inc.
- Peter Baranowski
- pbaranowski&activecontrol.com
-33240
- Salamander Technologies, Inc.
- Rob Jones
- rjones&salamandertechnologies.com
-33241
- CITIZEN SYSTEMS JAPAN CO., LTD.
- Masaji Iwata
- engineering-div&systems.citizen.co.jp
-33242
- PanTek
- Federico Sanchez
- fedesp&gmail.com
-33243
- China Broadband Wireless IP Standard Group
- Liu Wei
- bwips&chinabwips.org
-33244
- William Demant Holding
- Niklas Lagersson
- nil&oticon.dk
-33245
- kaf.cz
- Antonin Faltynek
- tonda&kaf.cz
-33246
- UAB Pivot Capital Management
- Saulius Bauzinskas
- itservice&pivotcapital.com
-33247
- Daton Securities Co., Ltd.
- Yuchanghong
- ychxhy&gmail.com
-33248
- Radix Development Corporation CC
- Andre Liebenberg
- andre&radix.co.za
-33249
- BI@Work S.r.l.
- Mauro Aiuto
- mauro.aiuto&biatwork.com
-33250
- SmurfitKappa News press
- Andrew Magill
- andrew.magill&smurfitkappa.ie
-33251
- REASON TECNOLOGIA S.A.
- Conrado Seibel
- conrado.seibel&reason.com.br
-33252
- Flashlight Engineering & Consulting
- David Hoots
- dlhoots&flec.tv
-33253
- MiS Inc.
- Ian McMaster
- ian.mcmaster&gmail.com
-33254
- TimeData Corporation
- Terry Martin
- tmartin&timedatacorp.com
-33255
- Kentucky Christian University
- Gregory C. Richardson
- grichardson&kcu.edu
-33256
- Small Office Networks
- Gena Gulchin
- gena&sonetworks.com
-33257
- Dienste fuer Menschen gGmbH
- Hardtmann Stephan
- shardtmann&abakus.de
-33258
- dzhon pty. ltd. (formerly 'mosais pty. ltd.')
- Rob Gillan
- rob&dzhon.com
-33259
- Martin DiViaio
- Martin DiViaio
- martindiv&yahoo.com
-33260
- Triescom Co., Ltd.
- Katsuhito Ozawa
- katsuhito.ozawa&triescom.co.jp
-33261
- Resilans AB
- Bengt Gördén
- bengan&resilans.se
-33262
- Jäger Computergesteuerte Messtechnik GmbH
- Thomas Böhne
- TBoehne&ADwin.de
-33263
- Raiffeisenverband Suedtirol Gen.
- Reinhold Trocker
- security&raiffeisen.it
-33264
- EPI Service Ltd
- Marek Stuczynski
- mareks&epi-uk.com
-33265
- Robert Rhea Photography
- Robert Rhea
- robert.rhea&robertrheaphotography.com
-33266
- ISOMEDIA, Inc.
- Stephen Milton
- milton&isomedia.com
-33267
- The SPACEPOL Corporation
- Mrs. Chantal Gagnon
- spacepol&spacepol.ca
-33268
- ClearTech Ltda
- Ricardo Lopes
- rlopes&cleartech.com.br
-33269
- Ecessa corporation
- Qui Huynh
- qui&ecessa.com
-33270
- Sysmap Solutions
- Daniel Andrade
- daniel.silva&sysmap.com.br
-33271
- Baptist Care (SA) Inc
- James Newport
- jnewport&baptistcaresa.org.au
-33272
- Med-RT, LLC
- John Faltys
- jfaltys&med-rt.com
-33273
- Gomez & Associates
- Antonio F. Gomez
- afgcala&gmail.com
-33274
- Nestle Waters North America
- Ben Herman
- dnsadmin&perriergroup.com
-33275
- The Hutchins School
- Ian MacRae
- ian.macrae&hutchins.tas.edu.au
-33276
- KDN (Korea Electric Power Data Network)
- Jung Ho. Ryu
- jhryu&kdn.com
-33277
- Pfiffner Gruppe
- IT Support
- it&pfiffner.com
-33278
- Confident Instruments, Inc.
- Gilbert Baker
- baker&confident-instruments.com
-33279
- Mazioli LTDA-ME
- Gleydson Mazioli da Silva
- gleydson&mazioli.com
-33280
- OWFS -- One Wire Filesystem
- Paul H Alfille
- paul.alfille&gmail.com
-33281
- New Dream Network
- Jeremy Kitchen
- jeremyk&newdream.net
-33282
- Eastern Oregon University
- Timothy Willey
- twilley&eou.edu
-33283
- AN-D.cz
- Adam Nemcek
- adam.nemcek&an-d.cz
-33284
- Macquarie Group Limited
- Adam Brimo
- adam.brimo&macquarie.com
-33285
- NavStar Geomatics Ltd
- Glen Bjorgan
- gbjorgan&navstar.ca
-33286
- KIPAC
- Stuart Marshall
- marshall&slac.stanford.edu
-33287
- Epix LLC
- Bogdan Ćulibrk
- hostmaster&epix.rs
-33288
- GEVAS software GmbH
- Thilo Schoen
- software&gevas.de
-33289
- Metalor
- Jerome Copin
- adminmaster&metalor.com
-33290
- Bundesverfassungsgericht
- Oswald Plaikner
- it-reg&bundesverfassungsgericht.de
-33291
- Microvideo Ltd
- Dan Brennan
- dbrennan&microvideo.co.uk
-33292
- Fordham University
- Bruce Portz
- bportz&fordham.edu
-33293
- Jenkins Shipping Company Ltd
- hans van der Meyden
- hans&vanmeyden.co.uk
-33294
- Lincor Solutions Ltd
- Yannick Servel
- yannick.servel&lincor.com
-33295
- Georg Utz, Inc.
- Thomas Schwank
- thomas.schwank&us.georgutz.com
-33296
- LepomisLab, LLC
- Vlad Ershov
- vershov&lepomislab.com
-33297
- Arion Systems Pvt. Ltd.
- Swapneel Kore
- swapneel&arionsys.net
-33298
- Wikimedia Foundation, Inc.
- Mark Bergsma
- mark&wikimedia.org
-33299
- Ithos USA
- Michael O'Mara
- omara.michael&verizon.net
-33300
- Linkare TI
- José Pedro Pereira
- jpereira&linkare.com
-33301
- Mee IT Solutions Co.,Ltd.
- Jaruwat Boonmee
- jaruwat&meeit.co.th
-33302
- Trio Datacom
- Richard Gipps
- rgipps&netspace.net.au
-33303
- Dannatu AG
- Juergen Sprenger
- juergen.sprenger&dannatu.ch
-33304
- EudoxeSoft SARL
- Nicolas Delisle
- ndelisle.iana&eudoxesoft.com
-33305
- Ark Computing
- Alexios Chouchoulas
- alexios-ark&bedroomlan.org
-33306
- Telemaque
- Tristan Mahé
- tristan&telemaque.fr
-33307
- St. Jude Children's Research Hospital
- Will Schmied
- OIDAdmin&stjude.org
-33308
- DataCode srl
- Massimo Lusetti
- massimo&datacode.it
-33309
- Aochuang Electronic Equipment Co.,Ltd.
- Luo Jun
- luojun&live.com
-33310
- ZMC Elektronika d.o.o.
- Viktor Varga
- viktor.varga&zmc.rs
-33311
- Everest Software International
- Alexander Pastuhov
- apastuhov&hotmail.com
-33312
- Forenet, Inc.
- Neco Fang
- necofang&forenet.cn
-33313
- SoeKul, LLC
- Luke Stamm
- iana&soekul.com
-33314
- Servicio Nacional de Rehabilitación
- Javier Badaracco
- javier&snr.gov.ar
-33315
- Max-Planck-Institut fuer Informatik
- Dirk Raufer
- ldap-adm&mpi-inf.mpg.de
-33316
- Government of Saskatchewan
- Myles Sartor
- myles.sartor&gov.sk.ca
-33317
- INCITS Technical Committee T11
- Claudio DeSanti
- cds&cisco.com
-33318
- AIDS Law Project
- Brian Honermann
- honermannb&alp.org.za
-33319
- Technische Universität Kaiserslautern
- Heiko Krupp
- heiko.krupp&rhrk.uni-kl.de
-33320
- Skarvon
- Alexander Krasnov
- Krasnov&serviceline.ru
-33321
- Tradesmen International Inc
- Charles Bushong
- domains&tradesmeninternational.com
-33322
- Progress Financial
- David Bryson
- dbryson&progressfin.com
-33323
- Chaos Eternal Network
- Charles Etherme
- chaoseternal&gmail.com
-33324
- Istochnik Ltd.
- Marat N. Faizrakhmanov
- maratnf&bk.ru
-33325
- MSB Micro Systems
- Danny Stemmet
- support&msbmicro.com
-33326
- PERTUS
- Piotr Bylinski
- p.bylinski&pertus.pl
-33327
- ZIP Sistemas S.L.
- Ferran Lax
- f.lax&zipsl.com
-33328
- NetArt Piotr Nowak
- Grzegorz Piszczek
- hostmaster&netart.pl
-33329
- Encode Networks Svenska AB
- Björn Lantz
- bjorn.lantz&encode.se
-33330
- Relevantum Oy
- Vesa Keinänen
- vesa.keinanen&relevantum.fi
-33331
- Balance Network Co. ,Ltd.
- Changyu Yang
- ycy034&163.com
-33332
- City of Edmonton
- Shirley Fenton
- shirley.fenton&edmonton.ca
-33333
- Morningstar Corporation
- IT Support
- software&morningstarcorp.com
-33334
- STEALTHbits Technologies, Inc.
- Phil Burgard
- phil.burgard&stealthbits.com
-33335
- TrueOffice
- Dmitry Shurupov
- Dmitry.Shurupov&trueoffice.ru
-33336
- Kat5Design
- Ron McLeod
- ron.mcleod&kat5design.com
-33337
- elineis
- pierre-mael Cretinon
- com.iana&elineis.com
-33338
- Comkom GmbH
- Christian Dergovics
- cdergo&comkom.at
-33339
- The Charity Bus
- Andy Ryan
- thecharitybus&googlemail.com
-33340
- Fundacio Privada Universitat Abat Oliba CEU
- Responsable de sistemas
- iana&uao.es
-33341
- Beijing TongFang Gigamega Tech. co., Ltd.
- Zhujun Qin
- qinzhj82&gmail.com
-33342
- u-blox AG
- Mike Burgener
- mike.burgener&u-blox.com
-33343
- Storebrand ASA
- IAM Admin
- iamadmin&storebrand.no
-33344
- SC Garant Industries SRL
- Neacsu Marian
- industries.garant&gmail.com
-33345
- Branded Payment Solutions
- David Kelly
- itsupport&bpscards.com
-33346
- Conseil Général des Pyrénées Atlantiques
- BODET Thomas
- thomas.bodet&cg64.fr
-33347
- Papa John's International, Inc
- Christopher Rodman
- christopher_rodman&papajohns.com
-33348
- Voidnet.biz
- James Horner
- humankind135&gmail.com
-33349
- Mohawk College of Applied Arts and Technology
- Jeff Howard
- jeff.howard&mohawkcollege.ca
-33350
- GALLACCI COMMUNICATIONS
- Gabriele Gallacci
- mailing&gallacci.com
-33351
- Hospital Service Association of Northeastern Pennsylvania
- Robert Budd
- robert.budd&bcnepa.com
-33352
- MAX Technologies
- Yvon Belec
- ybelec&videotron.ca
-33353
- 2Ring
- Jirka Novak
- jiri.novak&2ring.com
-33354
- Kaasjager Consultancy
- Alexander Kaasjager
- kalex&kalex.nl
-33355
- Ozeki Informatics Ltd.
- Mr. Gyula Rábai
- gyula.rabai&ozeki.hu
-33356
- HEADJAPAN Co.,Ltd.
- Enzo Fukura
- contact_mib&mx.headjapan.com
-33357
- TWINSEC GmbH
- Thomas Kriener
- thomas.kriener&twinsec.de
-33358
- ApplianSys Ltd
- John Robson
- support&appliansys.com
-33359
- VUT GmbH
- Julian Backes
- j.backes&vutonline.de
-33360
- Kahaf (pvt) Ltd
- Muhammad Shoaib
- shoaib&kahaf.com
-33361
- Cursum
- R A Hazeleger
- robert.hazeleger&cursum.nl
-33362
- DataSchenk, Inc.
- Jeffrey Schenk
- Jeffrey.Schenk&DataSchenk.com
-33363
- Duff & Phelps, LLC.
- Scott Goodwin
- scott.goodwin&duffandphelps.com
-33364
- ginkgotek
- huo ju
- huoju&ginkgotek.com
-33365
- Edelbluth Engineering
- Juergen Edelbluth
- juergen.edelbluth&edelbluth.eu
-33366
- Columbia Data Products, Inc
- Lance Hudson
- lhudson&cdp.com
-33367
- VIRTUALMGS
- Myles Sartor
- msartor&virtualmgs.com
-33368
- VTRON TECHNOLOGIES LTD.
- Zhentao Liu
- liuzhentao&vtron.com
-33369
- Sino-telecom Technology Co.,Ltd
- Wan Renyong
- wanry&sino-telecom.com
-33370
- Erasmus MC Rotterdam
- Maarten Bijl
- m.a.bijl&erasmusmc.nl
-33371
- Kelkoo
- Eric VEYRET
- eric.veyret&kelkoo.com
-33372
- Infocare AS
- Jan Terje Andersen
- jan.terje.andersen&infocare.no
-33373
- ZeroPoint.it
- M. Shoaib Ahmed
- sysadmin&zeropoint.it
-33374
- SFProjects
- Sebastian Fillinger
- sebastian&fillinger.de
-33375
- Dalee LLC
- Andrey Nikolaev
- andrey.nikolaev&dalee.ru
-33376
- Argeon Limited
- Balázs András Dohányos
- dohanyos.balazs&argeon.hu
-33377
- Paul Armstrong
- Paul Armstrong
- iana&otoh.org
-33378
- Zetta, inc
- Theral Mackey
- tmackey&zetta.net
-33379
- KLabs
- Inseok Choi
- ischoi&klabs.re.kr
-33380
- ICS Computer Services SA
- Gordan Vosicki
- admin&icsa.ch
-33381
- DVS Digital Video Systems AG
- Konstantin Schinas
- schinas&dvs.de
-33382
- chillyweb
- Niklas Schulze
- ns&hardware-area.de
-33383
- Audisoft Technologies
- Jean-Pierre Harvey
- jpharvey&audisoft.net
-33384
- eSaturnus
- Dong Hoon Van Uytsel
- donghoon.vanuytsel&esaturnus.com
-33385
- Feeva Technology Inc.
- Don Gilletti
- don.gilletti&feeva.com
-33386
- Hyper9
- Ryan Kruse
- rkruse&hyper9.com
-33387
- SS7 Solutions
- Martin Quevedo
- martin.quevedo&ss7solutions.com
-33388
- InCASE - Sven Mueller
- Sven Mueller
- iana-pen-registration&incase.de
-33389
- Keyboard Monkeys Ltd.
- Reiner Jung
- reiner&kb-m.com
-33390
- Cormedica
- Marcelo O. Rodriguez
- cormedica&cormedica.com.ar
-33391
- OSI d.o.o.
- Rudi Ponikvar
- rudi.ponikvar&osi.si
-33392
- Source Allies, Inc
- Scott Peshak
- scott&sourceallies.com
-33393
- C-NET Information Technology LTD.
- POOR, Laszlo
- poor.laszlo&cnet.hu
-33394
- Mio Software Laboratory Inc.
- Naoki Nishiyama
- naoki&miolab.com
-33395
- Washington State Consolidated Technology Services
- Internal Certificate Authority Administrator
- CTSDLPKIAdmin&watech.wa.gov
-33396
- Ferpa Consultoria e Sistemas Ltda.
- Fernando Hackbart
- fernando&ferpaconsultoria.com.br
-33397
- CreAPPtive Limited
- Ian Lee
- ian.lee&legend-engg.com
-33398
- Traffic Management Technologies
- Gerhard Lamprecht
- glamprecht&tmtservices.co.za
-33399
- Egyption Root certification authority
- Dr. Sherif Hazem Nour el-din
- snoureldin&mcit.gov.eg
-33400
- Anywire Corporation
- Makoto Yamashita
- yamashita&anywire.jp
-33401
- Servera, Inc.
- Kevin Shih
- kevin.shih&servera-inc.com
-33402
- Quadrizen
- Stephen E. Halpin
- oid-wn5rw5&quadrizen.com
-33403
- Radiocomp ApS
- Anne Christensen
- ach&radiocomp.com
-33404
- Dipl.-Ing. Christian Lindemann
- Christian Lindemann
- ldm_admin&arcor.de
-33405
- EISST Limited
- Corrado Ronchi
- cronchi&eisst.com
-33406
- Keller Williams Realty Intl
- Ben Mayfield
- sysadmin&kw.com
-33407
- I-Evolve
- Justin Elze
- jelze&i-evolve.com
-33408
- BASIS International Ltd.
- Adam Hawthorne
- adamh&basis.com
-33409
- The Chronicle
- Kenneth Moir
- LicenseManagement&chronicle.com
-33410
- FETAC
- Giovanni Zaidan
- gzaidan&fetac.ie
-33411
- QNETIC LTD.
- Tom Gleason
- tom.gleason&qnetic.com
-33412
- Kootenai Electric Cooperative, Inc.
- Art Malin
- malina&kec.com
-33413
- ADSLWEB-dot-Net
- Pieter de Rijk
- domreg&adslweb.net
-33414
- Monitis Inc.
- Hovhannes Avoyan
- havoyan&monitis.com
-33415
- N-Com, L.P.
- Brad Landis
- blandis&ncom.com
-33416
- wondersgroup
- zhang fengchang
- alain&wondersgroup.com
-33417
- PiN GmbH
- Kurt Harders
- harders&pin-gmbh.com
-33418
- Rila Feinkost-Importe GmbH und Co. KG
- Kurt Harders
- k.harders&rila.de
-33419
- CNStreaming Technologies Co., Ltd
- Li Jie
- jie.li&cnstreaming.com
-33420
- Voalte, Inc
- Oscar Callejas
- o.callejas&voalte.com
-33421
- South Gloucestershire Council CYP ICT
- Nick Pearce
- Nick&sgcyp.org.uk
-33422
- Com-Ned Netwerken B.V.
- Ronald Huizer
- ronald&comned.com
-33423
- TriaGnoSys GmbH
- Matthias Holzbock
- matthias.holzbock&triagnosys.com
-33424
- ITXTEND LLC
- Raghunathan KV
- raghukv&itxtend.com
-33425
- Fortisbank NL NV
- Steven Geerts
- steven.geerts&nl.fortis.com
-33426
- Mirae Ikorn company
- Sai Thi Hien Ninh
- sthninh&mikorn.com
-33427
- 5V Technologies Ltd.
- Hsu Chih-Ming
- mein_hsu&5vtechnologies.com
-33428
- TRAKCE, a.s.
- Bretislav Otruba, Ing.
- otruba&trakceol.cz
-33429
- Mobile Experts sp. z o.o.
- Adam Wos
- adam.wos&mobileexperts.pl
-33430
- Libra Szoftver Zrt
- Mihaly Kepler
- mkepler&mve.hu
-33431
- Oberfinanzdirektion Karlsruhe
- Robert Foerderer
- robert.foerderer&ofdka.bwl.de
-33432
- MAHLE International GmbH
- Michael Zerrer
- michael.zerrer&mahle.com
-33433
- Interwetten
- Otahal Helmut
- it-admin&interwetten.com
-33434
- SDC Sistemi di Computer
- Federico Scaramuzza
- pen-iana&essedici.it
-33435
- dicas digital image coding GmbH
- Matthias Wegener
- wegener&dicas.de
-33436
- Lepida spa
- Maurizio Coppari
- maurizio.coppari&lepida.it
-33437
- Heidelberg Engineering GmbH
- Michael Reutter
- mreutter&heidelbergengineering.com
-33438
- RIPN
- Mikhail Vsevolodov
- vsev&ripn.net
-33439
- Centralx
- Marcos Moreira
- mm&centralx.com.br
-33440
- Centro Brasileiro de Pesquisa e Tecnologia em Informática Médica
- Marcos Moreira
- mm&cpqt.com.br
-33441
- Science Systems and Applications, Inc.
- Owen Steinert
- admin&ssaihq.com
-33442
- Bernards
- Jason Wise
- supportdesk&bernards.com
-33443
- Novus Entertainment Inc.
- Norio Sakuta
- norio.sakuta&novusnow.ca
-33444
- obtelecom
- xuxin
- xuershao&hotmail.com
-33445
- The London Library
- Will David
- will.david&londonlibrary.co.uk
-33446
- Relay Station Ltd
- Alexander Fisher
- alex.fisher&relaystation.co.uk
-33447
- Comtech Ltd.
- Balázs Bagó
- dev&comtech.co.hu
-33448
- Chemtura Corporation
- Michael Baker
- michael.baker&chemtura.com
-33449
- Time2Dive
- michael koch
- michael&time2dive.at
-33450
- Facultad de Ingenieria Informatica, CUJAE
- Bislandry Vejo
- bvejo&ceis.cujae.edu.cu
-33451
- Infomed
- Maykel Moya
- moya&infomed.sld.cu
-33452
- Comsenz.Ltd
- Joanna Zhang
- zhangjuan&comsenz.com
-33453
- Polylogics Consulting, Inc.
- Rod Dorman
- rodd&polylogics.com
-33454
- Nippon Sogo Systems, Inc.
- Kazuhiro Seo
- k-seo&nssys.co.jp
-33455
- BVE Solutions
- Boris Eschenko
- redhat&ngs.ru
-33456
- DCF Technologies
- Uri Margalit
- uri&dcftech.com
-33457
- DANET.CZ s.r.o.
- Roman DAVID
- rdavid&danet.cz
-33458
- Colégio Santo Agostinho
- César Augusto Simões Goudouris
- cesar&csa.com.br
-33459
- Vivisimo, Inc.
- Chris Gillin
- gillin&vivisimo.com
-33460
- //SEIBERT/MEDIA GmbH
- Torsten Rehn
- trehn&seibert-media.net
-33461
- DS Media Labs, Inc.
- Glenn R. Martin
- iana&dsmedialabs.com
-33462
- Zmac1, Inc.
- Dan Maus
- noc.oid&zmac1.com
-33463
- Limelight Networks, Inc.
- Wylie Swanson
- wylie&llnw.com
-33464
- Leo Lab
- Leo Wang
- xfwang0724&hotmail.com
-33465
- Unlimited Bandwidth LLC
- Jim Albanese
- jalbanese&ubllc.com
-33466
- Kadeo Pty Ltd
- Shaun Deans
- shaun&kadeo.com.au
-33467
- Cyprotex
- David Roe
- d.roe&cyprotex.com
-33468
- Future Skies
- Charles Hull
- charles.hull&future-skies.com
-33469
- Produban Servicios Informaticos Generales
- David Manchado
- dmanchado&produban.com
-33470
- Vista Systems, Corp.
- Derek Smithson
- derek.smithson&vistasystems.net
-33471
- Alekstra Oy
- Jani Piitulainen
- pen&alekstra.com
-33472
- Sittig Industrie-Elektronik GmbH & Co. KG
- Michael Sittig
- michael.sittig&sittig.de
-33473
- Unassigned
- Returned 2017-01-20
- ---none---
-33474
- Regex
- M. van Buytene
- martijn&regex.nl
-33475
- Botswana Power Corporation
- Hanno van der Maas
- hanno&bpc.bw
-33476
- Kittelberger media solutions GmbH
- René Gerisch
- sysadmin&kittelberger.de
-33477
- Sommer Mess-Systemtechnik
- Bernd Herstelle
- iana&sommer.at
-33478
- aserva GmbH
- Alexander Scheibner
- alexander.scheibner&aserva.de
-33479
- TradingScreen Inc
- Jon Andrews
- jon.andrews&tradingscreen.com
-33480
- Canadian Automobile Association, South Central Ontario
- Alex Savitsky
- asav&caasco.ca
-33481
- Manufacturing Resources International
- John Schuch
- jschuch&mri-inc.net
-33482
- ManageIQ, Inc.
- Oleg Barenboim
- oleg.barenboim&manageiq.com
-33483
- Goldflower Incorporated
- Dr. Charles Cavanaugh
- cdc&goldflowerinc.com
-33484
- Initech s.r.o.
- Petr Antonov
- development&initech.cz
-33485
- Caribou Software
- Jeremy Phillippe
- jeremy.phillippe&caribousoftware.com
-33486
- Silk Information Systems, Inc.
- Brandon Bates
- info&silkisi.com
-33487
- Packet Ship Technologies Limited
- Paul Clark
- paul&packetship.com
-33488
- MoaningMarmot
- Emmanuel Blot
- emmanuel.blot&free.fr
-33489
- NERO Network
- Stephen Fromm
- stephenf&nero.net
-33490
- GeneGO Inc.
- Maxim Kuznetsov
- max&genego.com
-33491
- Malviny International
- Jiri "Malviny" Maly
- malviny&post.cz
-33492
- Broadex Technologies, Shanghai
- Zhu Hangtian
- hangtian.zhu&broadex-tech.com
-33493
- Loadcom Technology Shenzhen Co., Ltd.
- wangdadong
- dolphine51&163.com
-33494
- Sekoci Maju Jaya
- Kunto Harjadji Baiquni
- kbaiquni&esemje.com
-33495
- AXPO INFORMATIK AG
- Matthias Gysin
- Matthias.Gysin&axpo.ch
-33496
- Spurious Logic Technology Services
- Ian Tarasevitsch
- Ian.Tarasevitsch&gmail.com
-33497
- Vahni Solutions
- Cariappa Bollera Appaiah
- cariappa.ba&vahnisolutions.com
-33498
- Andrew Kipcharskiy
- Andrew Kipcharskiy
- avkipcharskiy&mail.ru
-33499
- KPN HotSpots
- Jan Haitjema
- jan&kpnhotspots.com
-33500
- Vertex Antennentechnik GmbH
- SNMP Administrator
- snmp&vertexant.de
-33501
- Novatice Technologies
- Erwan HAMON
- tech&novatice.com
-33502
- Comunidad Autonoma Region de Murcia
- Tomas Sanchez Sandoval
- tomas.sanchez&carm.es
-33503
- Heavens-Above GmbH
- Chirstopher Peat
- chris.peat&heavens-above.com
-33504
- Narodni technicka knihovna
- Jakub Shanel
- j.shanel&stk.cz
-33505
- tw telecom, inc.
- Bill Sella
- bill.sella&twtelecom.com
-33506
- Dassault Systemes (formerly 'Enginuity PLM LLC')
- Carl P. Miller
- carl.miller&3ds.com
-33507
- Elster Electricity, LLC
- Edward J. Beroset
- edward.j.beroset&us.elster.com
-33508
- Avere Systems, Inc.
- Daniel S. Nydick
- support&averesystems.com
-33509
- Sociedad Hebraica Argentina
- Leandro Fernández
- leandro&hebraica.org.ar
-33510
- Provincial Health Services Authority
- Jason Freeman
- jfreeman&phsa.ca
-33511
- Radiant Technologies, Inc.
- Tae Joon Ha
- tjha&radiantech.net
-33512
- TheMarkets.com LLC
- Albert Rech
- arech&themarkets.com
-33513
- Arvensian
- Jon Gray
- jon&arvensian.co.uk
-33514
- LUMANTEK
- Kang Myung Soo
- mskang&lumantek.com
-33515
- Antonio Cunha Barbosa
- Antonio Barbosa
- cunha.barbosa&gmail.com
-33516
- Zhuhai Jiasin Industry Co., Ltd
- xiaohu yu
- yuxh&jiasin.com
-33517
- Scourger.nl
- Richard K. Noorlandt
- info&scourger.nl
-33518
- Tap / Bkruse & Associates LLC
- Ivan D Vasin
- ivan&vacced.com
-33519
- SkyMesh PTy Ltd
- Brett Johnson
- brett.johnson&skymesh.net.au
-33520
- Modern Module Inc.
- Alex Qian
- alexqian&e-mmi.com
-33521
- IKT Advanced Technologies s.r.o.
- Jiri Smitka
- jiri.smitka&ikt.cz
-33522
- soit GmbH
- Haik Schwebke
- h.schwebke&soit.de
-33523
- Sword Real Time
- Stuart Banks
- stuart.banks&rtel.com
-33524
- measanctum
- Bren Norris
- bren.norris&measanctum.com
-33525
- Bewigo Technologies SARL
- Omar BENHAMID
- omar.benhamid&bewigo.com
-33526
- DonaldWilson.Info
- Donald Wilson
- donald&donaldwilson.info
-33527
- USDA
- Rich Barr
- richard.barr&usda.gov
-33528
- Krestfield
- Darren Wilson
- darren.wilson&krestfield.com
-33529
- MIDASPLUS, INC.
- David Stachowski
- dave.stachowski&acs-inc.com
-33530
- EasyWay
- Wang Yongfeng
- wangsir512&126.com
-33531
- Dmitry Komarchev
- Dmitry Komarchev
- komarchev&gmail.com
-33532
- Valsts Robežsardze
- Sergey Lukashevich
- sergejs.lukasevics&rs.gov.lv
-33533
- Linkdevices Technology, Inc.
- Victor Romanchuk
- vroma&linkdevices.com
-33534
- Systembase Limited
- Mr A Steward
- tech&systembase.com
-33535
- Herning Kommune
- Kim Skotte Larsen
- itakl&herning.dk
-33536
- INESC Porto
- Joao Neves
- Joao.Neves&inescporto.pt
-33537
- BCV solutions s.r.o.
- Zdenek Burda
- info&bcvsolutions.eu
-33538
- EDX Software Design
- Eduard Furrer
- Eduard.Furrer&TheEDX.ch
-33539
- Europcar Information Services
- Mounir Chaabane
- jerome.dufournet&europcar.com
-33540
- Ion Beam Applications
- Fabrice Deleau
- fabdel&gmail.com
-33541
- w3variance
- Christian Hammerl
- c.hammerl&w3variance.de
-33542
- CBC Cologne Broadcasting Center GmbH
- Günter Neitzel
- guenter.neitzel&cbc.de
-33543
- UHU Systems Kft.
- Pozsár Balázs
- info&uhusystems.com
-33544
- T.Rowe Price
- Mark Gogel
- mark_gogel&troweprice.com
-33545
- Entelec Control Systems
- Kris Daniels
- kris.daniels&entelec.be
-33546
- Axiros GmbH
- Natalia Vaisberg
- info&axiros.com
-33547
- Liberty Mutual Insurance Company
- Liberty Communications Services
- registerdomainus&libertymutual.com
-33548
- Managed I.T.
- Kiall Mac Innes
- kiall&managedit.ie
-33549
- ZnamiNet
- Bartosz Radwan
- biuro&znaminet.pl
-33550
- BIXOLON Co., Ltd.
- Chulhui, LEE
- swallow&bixolon.net
-33551
- David Jones
- Chris Freeman
- cfreeman&davidjones.com.au
-33552
- HiFull Technology
- Forrest Zhang
- forrest&hifulltech.com
-33553
- TBC Solutions
- Kwek Yuan
- kwekyuan&tbcsolutions.com.sg
-33554
- Genetech AB
- Bo Danielsson
- bo.danielsson&genetech.se
-33555
- RACOM s.r.o.
- Ing. Marek Prasil
- marek.prasil&racom.eu
-33556
- Hyperthought Solutions
- Scott Kelly
- scott&hyperthought.com
-33557
- University of Kent
- Matthew Slowe
- M.Slowe&kent.ac.uk
-33558
- powertron engineering co., ltd.
- Jung Ha-Jin
- powertro&powertron.co.kr
-33559
- AXION - Red de Banda Ancha de Andalucia S.A.
- Antonio Marcos Linares Cabrera
- amlinares&axion.es
-33560
- Commercial Court of Tula Region
- Alexander Senturin
- avsenturin&tula.arbitr.ru
-33561
- Express Gifts ltd
- Andrew Gerrard
- hostmaster&findel.co.uk
-33562
- Judako AB
- Johan Udd
- johan.udd&judako.se
-33563
- CNEA - Regional Centro
- Martinez Rodrigo
- rmartinez&rcentro.cnea.gov.ar
-33564
- MEDIATECH
- Antony Simonneau
- technique&mediatech.fr
-33565
- Epic Event International Pty Ltd
- Ian Henderson
- ian.henderson&epicevent.com
-33566
- Dublin University Internet Society
- Stephen Dolan
- mu&netsoc.tcd.ie
-33567
- Vira Realtime, Ltd.
- Oleg Mityagin
- o.mityagin&rlt.ru
-33568
- Bakoma SA
- Paweł Jankowski
- pawel.jankowski&bakoma.pl
-33569
- ERG S.p.A.
- Danilo Greco
- dgreco&erg.it
-33570
- RENATA WEB SYSTEMS
- Alexey V. Degtyarev
- alexey&renatasystems.org
-33571
- MRC Epidemiology Unit
- Iain Morrison
- iain.morrison&mrc-epid.cam.ac.uk
-33572
- Educational Service Unit 10
- Jordan Clark
- admin&esu10.org
-33573
- Corps Saxo-Montania
- Dennis De Matteis
- admin&saxo-montania.de
-33574
- waxtie
- Martin Sharp
- martin.sharp&waxtie.com
-33575
- Inovatic d.o.o.
- Boris Jakov Anic-Curko
- anic&inovatic.hr
-33576
- AP Router Industria Eletronica Ltda.
- Guilherme F. Weidle Jr
- guilherme&aprouter.com.br
-33577
- CenIP
- Sosa Lugones, Marcelo Martin
- marsosa&cenip.com.ar
-33578
- Jason B. Alonso
- Jason B. Alonso
- pen&hackorp.com
-33579
- Fairfield County, Ohio
- Andrew Michael Stemen
- astemen&co.fairfield.oh.us
-33580
- Anacom Eletrônica Ltda
- Alexandre Rodrigues
- arodrigues&anacom.com.br
-33581
- OpenMind S.r.l.
- Fabrizio Giustina
- fabrizio.giustina&openmindonline.it
-33582
- Errigal, Inc.
- Darren Hoffman
- darren.hoffman&errigal.com
-33583
- BSoft
- Bart van Pelt
- bvpelt&solcon.nl
-33584
- OnlLine Technologies
- Dr Nikos Baltas
- nikos&flowgrid.com
-33585
- Intehel
- Xu Hailong
- mail2xhl&sohu.com
-33586
- Institute of Information science, Beijing Jiaotong University, China
- Chongyan Xia
- sunnyxcy&sohu.com
-33587
- PlayBox Technology Ltd.
- Ludmil Kushinov
- support.bg&playbox.tv
-33588
- Autek Ingenieria, SL
- Manuel Sanz
- manuel.sanz&autek.es
-33589
- Ministarstvo unutrasnjih poslova Republike Srbije
- Dragoslav Stanižan
- dragoslav.stanizan&mup.gov.rs
-33590
- Faltermeier
- Florian Faltermeier
- florian.faltermeier&gmail.com
-33591
- GIE Astria
- Bénédicte TAILLEBOIS
- benedicte.taillebois&astria.com
-33592
- Gryphon Technology Pty Ltd
- Stephen Gryphon
- sgryphon&gryphontechnology.biz
-33593
- Errigal Inc.
- Patrick Gary
- patrick.gary&errigal.com
-33594
- Daniel Hommel
- Daniel Hommel
- daniel&hommel4u.de
-33595
- San Francisco State University
- Joellen Fung
- jfung&sfsu.edu
-33596
- Adventist Health System
- Kirk Ott
- kirk.ott&ahss.org
-33597
- Clasdix SRL
- Leandro Fernández
- lfernandez&clasdix.com.ar
-33598
- isi-muenchen ltd.
- Marc Ende
- me&isi-muenchen.de
-33599
- Dolf - Systems
- Matej Bucar
- matej&dolf-systems.com
-33600
- OMNIconnect Pty Ltd
- Graeme Lee
- graemel&omniconnect.com.au
-33601
- KIRYUNG
- LEE MYUNG HEE
- mh&huvent.com
-33602
- northstarlabs.net
- Jeff McCune
- mccune.jeff&gmail.com
-33603
- Infotech enterprises
- Ajay Krishnan
- ajaykrishnanm&infotechsw.com
-33604
- SARL LES CAGOTS
- Marc Mouttet
- mmouttet&yahoo.fr
-33605
- Soft & Control Technology s.r.o.
- Jozef Nagy
- register&sct.sk
-33606
- HI5 Networks, Inc
- Aaron Chu
- achu&hi5.com
-33607
- SeeChange Health
- Mike Stinebaugh
- mstinebaugh&seechangehealth.com
-33608
- RipCode, Inc.
- Nick Bozadzis
- nick.bozadzis&ripcode.com
-33609
- Softtek
- Eduardo Bernot
- eduardo.bernot&softtek.com
-33610
- fastip, llc
- Benjamin Black
- iana&fastip.com
-33611
- Transmicro
- Rodrigo Deppe
- deppe&transmicro.com.br
-33612
- Com Hem AB
- Simon Ehrlin
- advisory&comhem.com
-33613
- CRISPYLOGICS
- Jochen Schmidt
- js&crispylogics.com
-33614
- DPD Polska Sp. z o.o.
- Daniel Kiper
- dkiper&dpd.com.pl
-33615
- Cross Country Automotive Services
- Jack Moore
- networkrenewals&atxg.com
-33616
- Ohio Supercomputer Center
- Doug Johnson
- djohnson&osc.edu
-33617
- David Kraeutmann
- David Kraeutmann
- david&davidkra.net
-33618
- Nito Programs
- Stephen Cleary
- oid.nito-programs&xoxy.net
-33619
- FreeComm Data Communication Co., Ltd.
- Ivans Tang
- ivans_tang&163.com
-33620
- CertusNet
- CertusNet
- zhangrt&certusnet.com.cn
-33621
- Asmens dokumentu israsymo centras prie Lietuvos Respublikos vidaus reikalu ministerijos
- Aldona Gudeliene
- aldona.gudeliene&vrm.lt
-33622
- 4Dst International Telecommunications (Pty) Ltd
- Andrew Gaylard
- mib&4dst.com
-33623
- Pokrovskoe Ltd
- Roman Osipov
- RomanOsipov&gmail.com
-33624
- Beijing VBON Science & Technology Development Co.,Ltd.
- Xiao Kewei
- keweixiao&163.com
-33625
- xallaraparadigm
- Marcus Griep
- iana-pen&xpdm.us
-33626
- Reouel
- Alon Vilozny
- alonsovilo&gmail.com
-33627
- code-drohne.de
- Andreas Zekl
- accountz1&frechheit.net
-33628
- Egyption Government Certification Authority
- Engineer.Atef Mohamed Yassin Khallaf
- govca&mof.gov.eg
-33629
- t-Linux Ltd.
- Denis Pynkin
- denis.pynkin&t-linux.by
-33630
- Iridea (M) Sdn Bhd
- Ishraf Ismail
- ishraf&ir-idea.com
-33631
- Poczta Polska
- Kamil Perfecki
- kamil.perfecki&katowice.poczta-polska.pl
-33632
- AGNEKO
- Vasiliy Gusev
- gusev&agneko.com
-33633
- Herman Andersson Oy
- Hannu Vanninen
- hannu.vanninen&hermanandersson.fi
-33634
- Reale Seguros Generales
- Eduardo Cunha
- eduardo.cunha&reale.es
-33635
- Ruby Sync
- Ritchie Young or Nowhere Man
- babar2k6&gmail.com
-33636
- TechnoSec
- Marco Pennelli
- marco.pennelli&technosec.net
-33637
- Walla Walla University
- Paul Harvey
- noc&wallawalla.edu
-33638
- Voiceboard Corporation
- Doug Fuller
- doug&voiceboard.com
-33639
- Vestas Wind Systems A/S
- Torben Jorgensen
- trjor&vestas.com
-33640
- TCPOS SA
- Ivan Salvetti
- ivan.salvetti&tcpos.com
-33641
- Ajimi
- Bastien DOUCE
- iana&ajimi.fr
-33642
- Denmark - Fujitsu Services A/S
- Michael Soerensen
- privateenterprisenumber&fujitsu.dk
-33643
- Comgroup GmbH
- Markus Schmidt
- markus.schmidt&comgroup.de
-33644
- Sytel Limited
- Garry Pearson
- garryp&sytelco.com
-33645
- MKS Inc.
- Russell Robinson
- russell&mks.com
-33646
- Extelia
- pierre-marc pinel
- pierre-marc.pinel&extelia.fr
-33647
- Mashlab / Huther & Sommer GbR
- Oliver Sommer
- oliver&mashlab.com
-33648
- Ireth
- Walter Summonte
- walter.summonte&ireth.net
-33649
- Pramana Inc
- Guru Rajan
- guru&pramana.com
-33650
- AdaCore SAS
- AdaCore contact
- iana-contact&eu.adacore.com
-33651
- Sparkplug Inc
- Patrick Randall
- engineering&sparkplug.net
-33652
- Cousteau Network Development LLC
- Joop Cousteau
- jcousteau&gmail.com
-33653
- Opulan Technologies Corp.
- Zhiheng Gan
- zgan&opulan.com
-33654
- Posidex Techonologies Pvt Ltd
- Bhavani Shanker C
- madhusudan&posidex.com
-33655
- OVOCENTRUM V+V s.r.o.
- Petr Tuček
- ptucek&euronet-group.cz
-33656
- Wardsback Brotherhood
- Frédéric CORNU
- fcornu&wardsback.org
-33657
- Harald Würger
- Harald Würger
- iana&wuerger.net
-33658
- V.D.S. - Video Display Systems Srl
- Mauro Barella
- mbarella&vds-it.com
-33659
- Università di Bari
- Sabino Calo
- s.calo&csi.uniba.it
-33660
- Lower Colorado River Authority
- Paul Griffin
- Paul.Griffin&lcra.org
-33661
- LineRate Systems, Inc.
- John Giacomoni
- John.Giacomoni&LineRateSystems.com
-33662
- AfroDuck Productions
- Andrew Butcher
- abutcher&csee.wvu.edu
-33663
- Manz Automation AG
- Mathias Glaser
- mglaser&manz-automation.com
-33664
- Conei Cia. Int. de Inversiones
- Iván Baranda
- ibaranda&conei.com
-33665
- Liveperson
- Leonid Mirsky
- leonid&liveperson.com
-33666
- STMIK Mikroskil
- Des Dulianto
- desdulianto&mikroskil.ac.id
-33667
- SADA Systems Inc. - Apps Division
- Nicky Parseghian
- nicky.parseghian&sadasystems.com
-33668
- ECtel LTD.
- Eyal Zamir , Chief System Architect
- eyalz&ectel.com
-33669
- Kevin R. James Enterprise Services
- Kevin R. James
- kevin&jameses.net
-33670
- Arctic Lake
- Niels Buhl
- niels.buhl&arcticlake.com
-33671
- HESTIA FRANCE
- Mr Daniel SPITZ
- hestia&hestia-france.com
-33672
- intecsoft GmbH
- Marco Grunert
- marco.grunert&intecsoft.de
-33673
- Lacerda Sistemas de Energia
- Enrico Caruso
- enrico&lacerdasistemas.com.br
-33674
- NUVICO
- Royal Lee
- royal.l&nuvico.com
-33675
- Zydax, LLC
- Mark Swayne
- iana&zydax.com
-33676
- Happy Jack Software LLC.
- Mona Gamboa
- ian&happyjacksoftware.com
-33677
- HiWiFi Networks
- Jie Song
- js&hiwifi.net
-33678
- Fähnle IT-Solutions
- Matthias Fähnle
- info&faehnle-it-solutions.de
-33679
- The University of Waikato
- Dougal Mair
- maird&waikato.ac.nz
-33680
- Bankart, d.o.o.
- Matej Bučar
- matej.bucar&bankart.si
-33681
- Deutsche Papier Vertriebs GmbH
- Christian Amberger
- AmbergerC&deutsche-papier.de
-33682
- Tyze.com
- Jerry Hutchings
- jerry&tyze.com
-33683
- Agilink Systems Corp.
- Wolfgang Tolkien
- wtolkien&agilink.ca
-33684
- eCern Inc
- Robert Stanton
- stanton&ecern.com
-33685
- Netgroup A/S
- Hroi Sigurdsson
- hs&netgroup.dk
-33686
- NetVitesse S.A.R.L
- Antoine Roux
- admin&net-vitesse.com
-33687
- NETAVIS Software GmbH
- Lazar Jozsef
- jlazar&netavis.net
-33688
- Packet Power
- Paul Bieganski
- paul&packetpower.com
-33689
- mediQ
- Stephan Goeldi
- goeldi&goeldi.com
-33690
- shenzhen etoptech co.,Ltd
- Genbay.Zheng
- Genbay.Zheng&163.com
-33691
- MOSTCOM Ltd.
- Sergey Kuznetcov
- ksn&moctkom.ru
-33692
- Meona GmbH
- Matthias Wuttke
- info&meona.de
-33693
- SMALS
- Monitoring Office
- supervision&smals.be
-33694
- Knexus Research Corporation
- Erskin L. Cherry
- erskin.cherry&knexusresearch.com
-33695
- National Oilwell Varco
- Ruijing Ou
- ruijing.ou&nov.com
-33696
- Trulix Systems
- Tim Lyons
- tim.lyons&trulix.com
-33697
- Klaus Becker Kopiersysteme -Service-GmbH
- Sebastian Schnitzler
- info&bueroit.de
-33698
- ACRA CONTROL LTD.
- Nikki Cranley
- cranley&acracontrol.com
-33699
- TAG Video Systems
- Waldman Gal
- galwa&tagvs.com
-33700
- Saginaw Valley State University
- Timothy Patterson
- tjpatter&svsu.edu
-33701
- Cathay Pacific Airways Ltd.
- Jacky Cheng
- spajacc&cathaypacific.com
-33702
- Technalogix Ltd.
- Aaron Sivacoe
- aaron&technalogix.ca
-33703
- ziggurat29
- David Lemley
- dev&ziggurat29.com
-33704
- Middle Office Solutions, LLC
- Robert Tjia
- rtjia&middleofficesolutions.com
-33705
- Global 360 Inc
- Dave Berglund
- dave.berglund&global360.com
-33706
- OPVISION Technology Co.,Ltd
- Dai xinghe
- daixinghe&163.com
-33707
- United International College
- Evan ZHU
- evanzhu&uic.edu.hk
-33708
- SPIT elektromechanica BV
- Robert Boers
- robert.boers&spit.nl
-33709
- OnTimeLine
- Jan Leinemann
- Leinemann&OnTimeLine.de
-33710
- Tawasul Telecom
- Mohammed Al-Kout
- tawasuladmin&tawasultele.com
-33711
- Campanja AB
- Berner Setterwall
- berner.setterwall&campanja.com
-33712
- CSC PYXUS-2006
- Andrey Wacker
- andrey_wacker&pyxus2006.com
-33713
- WB Electronics sp. z o.o.
- Andrzej Asztemborski
- a.asztemborski&wb.com.pl
-33714
- Neuralitic Systems Inc.
- Sebastien Nobert
- it&neuralitic.com
-33715
- Axcient, Incorporated
- Dave Garnett
- dave&axcient.com
-33716
- Jiangsu Hengtong Photoelectric Stock Co., Ltd
- Wang Chong
- chenb&hengtonggroup.com
-33717
- Nirmitsu Technologies Private Limited
- Ganesh Gudigara
- ganesh&nirmitsu.com
-33718
- Lava-Tech
- Ren wenyue
- suchasplus&gmail.com
-33719
- EBU / UER
- Bajas françois
- bajas&ebu.ch
-33720
- ELTA Systems Ltd.
- David Tayouri
- dtayouri&elta.co.il
-33721
- Thrane & Thrane
- Finn Berthelsen
- finn.berthelsen&cobham.com
-33722
- MC SECURITY Co., Ltd.
- Sachio Ohnishi
- s.ohnishi&mcsecurity.co.jp
-33723
- laurentum.de
- Wolfgang Lorenz
- wo.lorenz&gmail.com
-33724
- EBDSoft
- Francesc Guasch
- frankie&ebdsoft.com
-33725
- Bimeng Communications System Co.,Ltd
- Tianhang Chen
- chentianhang&bmcsys.com.cn
-33726
- White Sands Technology
- Michael A. O'Donoghue
- modonoghue&whitesands.com
-33727
- Caerian Inc
- Simon Wheatley
- scw&caerian.com
-33728
- Adaptive AI, Inc.
- Kirill Katsnelson
- kkm&adaptiveai.com
-33729
- Beijing Pannet Information Technology Co., Ltd.
- Zhanchun Gao
- bj-pannet&163.com
-33730
- Stefan aulbach
- Stefan Aulbach
- info&stefan-aulbach.de
-33731
- Asito B.V.
- Robert Boers
- r.boers&asito.com
-33732
- NetResults S.r.l.
- Stefano Lucetti
- stefano.lucetti&netresults.it
-33733
- sw-k software & system engineering
- Mr. Sebastian Woelk
- sebastian.woelk&sw-k.net
-33734
- chini.info
- Davide Chini
- oid&chini.info
-33735
- Buzzlogic Inc.
- Robert B. Carleton
- bcarleton&buzzlogic.com
-33736
- fylleri.is
- Hlynur Kristjánsson
- hlynur&fylleri.is
-33737
- Soprano Design Pty Ltd
- Peter Cleary
- support&soprano.com.au
-33738
- Animelliure
- Marc Serra Romero
- mad93&majomo.com
-33739
- ANTRICE S.A
- Ioan Petrescu
- iopet&antrice.ro
-33740
- Interdatanet - DET
- Franco Pirri
- fpirri&gmail.com
-33741
- Yellowstone Soft
- Hermann Betz
- betz&yellowstone-soft.de
-33742
- Net4Promotions
- Biswajit Das
- net4promotions&gmail.com
-33743
- Zentrum für Soziale Innovation
- Johannes Simon
- simon&zsi.at
-33744
- Application Solutions (Safety and Security) Ltd.
- Andy Binks
- abinks&asl-control.co.uk
-33745
- College for Creative Studies
- Matt Halcrow
- mhalcrow&collegeforcreativestudies.edu
-33746
- imagine that
- jeff bachiochi
- jeff&imaginethatnow.com
-33747
- OnlineOK
- Micheal Smith
- xulfer&cheapbsd.net
-33748
- Wilcox Technologies
- Andrew Wilcox
- AWilcox&Wilcox-Tech.com
-33749
- VoLGA Forum
- Kurt Bischinger
- kurt.bischinger&t-mobile.at
-33750
- Iritel A.D. Beograd
- Zoran Miljkov
- info&iritel.com
-33751
- OBEJ di Galantini Andrea
- Andrea Galantini
- andrea&obej.it
-33752
- Gen-Z Technologies inc.
- Eric Pelletier
- ericp&gardeplus.ca
-33753
- Beijing CircLoop Digital Image Tech.Co.,Ltd
- ZhuXuzhen
- circloop&vip.163.com
-33754
- Duelco A/S, Denmark
- Harry Vohs
- hav&duelco.dk
-33755
- www.capad.de
- Christian Adamski
- christian.adamski&googlemail.com
-33756
- keimatsu.com
- Dan Keimatsu
- keimatsu&keimatsu.com
-33757
- Oblong Industries, Inc.
- Kyle Thomas Miller
- kyle&oblong.com
-33758
- Inquinox, LLC
- Jack McKinney
- jack_mckinney&inquinox.com
-33759
- Golden Micro Systems Corporation
- Yukiko Suzuki
- suzuki&g-micro.co.jp
-33760
- Ministerstvo Finansov Chelyabinskoy oblasti
- Alexander Povyshev
- minfin74&mail.ru
-33761
- OptimSys, s.r.o.
- Pavel Cenek
- cenek&optimsys.cz
-33762
- Global Display Solutions SpA
- Maurizio Garabunato
- m.garabunato&gds.com
-33763
- AD Holdings plc
- Chris Blood
- adh.snmp&googlemail.com
-33764
- I-bridge B.V.
- Luis Santos
- luis.santos&ibridge.nl
-33765
- Sapienza Consulting Ltd
- Saso Bruzzese
- saso.bruzzese&sapienzaconsulting.com
-33766
- panagenda GmbH
- Franz Walder
- admin&panagenda.com
-33767
- Korean Broadcasting System (KBS)
- Sung soo, Lee
- deniro33&kbs.co.kr
-33768
- Beijing ZhonghongLida Technology Development Co., Ltd.
- Arthur Lee
- webmaster&leadal.com
-33769
- Universidad de La Habana
- Abel Marrero Santos
- marrero&uh.cu
-33770
- Telcom Research
- Brian Weppler
- bweppler&telcomresearch.com
-33771
- Academy Consult München e.V.
- Martin Klenk
- it&academyconsult.de
-33772
- The Portalus Group
- Donald Norwood
- dnorwood&portalus.com
-33773
- Weather Kat
- Matthew Soffen
- truffle-iana&weatherkat.com
-33774
- Pyro Networks
- Yogendra Agarwal
- yogendra.agarwal&pyrogroup.com
-33775
- Moscow Metering Company
- Vladimir Vodolazkiy
- vvv&miccorp.ru
-33776
- Orca Interactive LTD
- Zevik Knobler
- zevik.knobler&orcainteractive.com
-33777
- Cadmos microsystems S.r.l.
- Federico Lanza
- f.lanza&cadmos.it
-33778
- TIKLA tv
- Deren Bdag
- deren95&live.com.au
-33779
- Stefan Seelmann
- Stefan Seelmann
- mail&stefan-seelmann.de
-33780
- Grosvenor Technology Ltd.
- Stephen Woolhead
- siw&gtl.biz
-33781
- FreeKey::Labs s.l.
- Javier Lasheras Peña
- lasi&freekeylabs.com
-33782
- Pictage, Inc.
- Michael Brown
- mbrown&pictage.com
-33783
- Chinarainbow Technology CO.,LTD
- zhoupeng
- pengzhou&chinarainbow.com.cn
-33784
- AvFinity, L.L.C.
- Steve D. Perkins
- sdp&avfinity.com
-33785
- La Salle University
- Mark Purcell
- purcell&lasalle.edu
-33786
- Iquall S.A.
- Matias G. Lambert
- matias.lambert&iquall.net
-33787
- KaHo Sint Lieven
- Jorn Lapon
- jorn.lapon&kahosl.be
-33788
- juris GmbH
- juris Rechenzentrum
- domain&juris.de
-33789
- Medical IT
- VILSON COBELLO JUNIOR
- vilson.cobello&medicalit.com.br
-33790
- InFocus Corporation
- Kevin Thompson
- kevin.thompson&infocus.com
-33791
- XelNet
- Raphaël Barrois
- oid&xelmail.com
-33792
- Noisebridge
- Jonathan Lassoff
- ops&noisebridge.net
-33793
- inviCRO, LLC
- Christian Lackas
- lackas&invicro.com
-33794
- Myungmin Systems, Inc.
- Ashuaria Lee
- ashuaria&myungmin.com
-33795
- SOLIT Information Security
- Joerg Folz
- info&solit.lu
-33796
- ROMTELECOM S.A.
- Mihai Cosma
- ns_sa&romtelecom.ro
-33797
- ESRI Portugal
- Sandro Batista
- sandro.batista&esri-portugal.pt
-33798
- Suefke Softwareentwicklung
- Martin Suefke
- ianapen.20.masuefke&recursor.net
-33799
- LinkSat
- Jack Thomasson
- jkt&linksat.com
-33800
- CARFAX INC
- Larry Dorman
- mohelpdesk&carfax.com
-33801
- Colorquick, LLC
- Philip Panelli
- ppanelli&crwgraphics.com
-33802
- Xensor Systems Incorporated
- Kurt Van Laar
- xtensor&xtensor.com
-33803
- Manor AG
- Urs Schmid
- urs.usm.schmid&manor.ch
-33804
- Chrisalys
- Christopher Tarento
- contact&chrisalys.org
-33805
- Peak Drive Solutions Ltd
- Andrew Eastham
- andy-snmp-admin&peakdrive.com
-33806
- UTILISE IT LIMITED
- Andrew Douthwaite
- hostmaster&utilise-it.co.uk
-33807
- Internexo Ltda.
- Danton Nunes
- danton.nunes&inexo.com.br
-33808
- Jim Montague Software LLC
- Jim Montague
- pennum&jimmontaguesoftwarellc.com
-33809
- Topomaro
- Roberto Giovanardi
- roberto.giova&gmail.com
-33810
- Masterhost, CJSC
- Dmitry V Krikov
- iana&masterhost.ru
-33811
- Idendego Inc.
- Brian Pederson
- security&idendego.com
-33812
- Goodus, Inc.
- Yoonkwon Kim
- yoonkwon.kim&goodus.com
-33813
- Invenso
- Brecht Yperman
- brecht.yperman&invenso.com
-33814
- IProNet Sistemas, S.A.
- Mikel Martin
- mikelmartin&ipronet.es
-33815
- Archean Technologies
- Julien Vermillard
- jvermillard&archean.fr
-33816
- PROFILAX, s.r.o.
- Jozef Remenec
- remenec&profilax.sk
-33817
- CopyKnight Technologies Ltd
- Martin North
- hostmaster&copyknight.com
-33818
- asco
- Ralf Doeblitz
- doeblitz&netzverwaltung.net
-33819
- StreetGeek
- Michael Farrell
- michael.farrell&streetgeek.com.au
-33820
- DECOIT GmbH
- Andre Brandt (Systemmanagement)
- systemmanagement&decoit.de
-33821
- Proliphix, Inc.
- Paul Ciarfella
- pciarfella&proliphix.com
-33822
- Computer Task Group, Inc.
- Mike Beekey
- michael.beekey&ctg.com
-33823
- comspace GmbH & Co. KG
- Holger Paschke
- support&comspace.de
-33824
- Spirent Communications of Rockville, Inc.
- Ntinos Solos
- ksolos&spirentcom.com
-33825
- ECHO KEISOKUKI Co.,Ltd.
- NAOKI ISHIHARA
- field_2005&clock.co.jp
-33826
- Lutong Network Technology Co., ltd
- Ben Xu
- benx&sjtu.org
-33827
- Dan Hirsch
- Dan Hirsch
- thequux&gmail.com
-33828
- NTT Plala Inc.
- Dan Keimatsu
- n-mail&plala.co.jp
-33829
- Novel Communication Co., LTD.
- ZhaoGuangLu
- boyce&126.com
-33830
- One97 Communication (P) Limited
- Avnindra P. Singh
- avnindra.singh&one97.net
-33831
- noFilis AutoID GmbH
- Martin Dobler
- martin.dobler&nofilis.com
-33832
- Biologische Heilmittel Heel GmbH
- Christian Huber
- huber.christian&heel.de
-33833
- Nettare Srl
- Giuseppe Risi
- giuseppe.risi&nettare.net
-33834
- Salford
- Zdenek Mejzlik
- zdenek.mejzlik&salford.cz
-33835
- REGS DE CATALUNYA, S.A.
- Mario Lacambra Calahorra
- mlacambra&gisa.cat
-33836
- Alliaria, S.L.
- Carles Giner
- carles.giner&alliaria.com
-33837
- GESTIÓ D'INFRAESTRUCTURES, S.A.
- Mario Lacambra Calahorra
- mlacambra&gisa.cat
-33838
- Voxline Contact Center
- Alex Bertuqui
- abertuqui&voxline.com.br
-33839
- CONFESOL
- Márcio André
- marcio&confesol.com.br
-33840
- LEDZGO
- Stephane Van Geystelen
- vangeys&ledzgo.com
-33841
- ArenaNet
- Jared Chavez
- jared&arena.net
-33842
- SIBIO
- Thierry Vaillant
- sysadmin&sibio.fr
-33843
- ProIS d.o.o.
- Sasa Dautovic
- office&prois.hr
-33844
- Blastwave.org, Inc.
- Dennis Clarke
- dclarke&blastwave.org
-33845
- Microlab Snc
- Giulio Sfoglietti
- giuliosfoglietti&microlabprogetti.com
-33846
- DISA CSD MONTGOMERY
- Reggie Adkins
- reginald_adkins&emainc.com
-33847
- maXan Pty Ltd
- Grant Maxwell
- grant.maxwell&maxan.com.au
-33848
- Hot Solder Ltd
- Iain Derrington
- Iain.Derrington&hotsolder.co.uk
-33849
- Universidad Autónoma de Colombia
- Edward J Morales
- webmaster&fuac.edu.co
-33850
- Capgemini Spain SLU
- Pedro J. Molina
- pmolinam&capgemini.es
-33851
- Combilent A/S
- Brian Johansen
- BRJ&combilent.com
-33852
- Tractis
- David Garcia
- david.garcia&tractis.com
-33853
- "STM" Co., Ltd
- Vasily Redkin
- support&ctm.ru
-33854
- RP Compounds GmbH
- Michael Laue
- mlaue&rpcompounds.com
-33855
- ADVtools
- Sebastien ANDRIVET
- sebastien&advtools.com
-33856
- Ansgar Jonietz
- Ansgar Jonietz
- ansgar&jonietz.de
-33857
- SECONS s.r.o.
- Martin Hinner
- info&secons.com
-33858
- Aveco s.r.o.
- Jiří Bašek
- iana.adm&aveco.com
-33859
- JRD
- Enno Davids
- enno06&metva.com
-33860
- The Insitu Group
- Andrew Hayes
- andrew.hayes&insitu.com
-33861
- CONGUIDE
- Jens Hartmann
- info&conguide.com
-33862
- Large Binocular Telescope Observatory
- Stephen Hooper
- shooper&lbto.org
-33863
- Mantaro Networks, Inc.
- Ken McInerney
- ietf&mantaro.com
-33864
- Praktiker Services GmbH
- Adam Bielak
- PKIAdmin&praktiker.com
-33865
- Atukorala Holdings Ltd. (formerly 'Squad 17 Limited')
- Uditha Atukorala
- info&aholdings.biz
-33866
- Lionic Corp.
- Roger Chien
- roger.chien&lionic.com
-33867
- Infrascape Technologies Limited
- Imran Khan
- ikhan&infrascape.com
-33868
- DOSIsoft
- MR Grandjean Pascal
- grandjean&dosisoft.com
-33869
- Kompas Xnet d.o.o.
- Joze Markic
- joze.markic&kompas-xnet.si
-33870
- EXXOSS S.P.R.L.
- Olivier Cant
- olivier&exxoss.com
-33871
- ZIBImed GmbH
- Volker Zipfel
- volker.zipfel&zibimed.de
-33872
- Alpha Technologies, Inc. (formerly 'Cheetah Technologies L.P.')
- Mark Bereit
- mbereit&alpha.com
-33873
- ARC Créations
- Marc Laflutte
- m.laflutte&arc-cre.com
-33874
- Novita
- Gregor Malensek
- info&novita.si
-33875
- National Bank of Ukraine
- Max Kozlovsky
- nbumailprog&gmail.com
-33876
- Van Hameren ICT diensten
- Peter van Hameren
- peter&hameren.com
-33877
- Publications Office
- Marita Logan
- opoce-liso&publications.europa.eu
-33878
- Children's Miracle Network
- Scott Lance
- slance&childrensmiraclenetwork.org
-33879
- Global IT Bilisim Hizmetleri Ltd.
- Kivanc Oskay
- koskay&globalit.com.tr
-33880
- Isca Networks Corporation Ltd
- Martin Cole
- martin_cole&iscanetworks.com
-33881
- ETM Electromatic Inc.
- Wei Qin
- wqin&etm-inc.com
-33882
- Four Color Studio
- Jason Silkey
- jason&fourcolorstudio.com
-33883
- The Bank of Lithuania
- Rimvydas Zilinskas
- rzilinskas&lb.lt
-33884
- NSG
- Steve Barrass
- steve.barrass&nsg.com
-33885
- Abhineet Singh Chauhan
- Abhineet Singh Chauhan
- ronin_b007&yahoo.com
-33886
- UNICEF
- Sean Boyd
- SBoyd&unicef.org
-33887
- Integrasul Solucoes em Informatica Ltda.
- Edson Dino Salvati
- edson&integrasul.com.br
-33888
- Aqua Cooler Pty Ltd
- Andrew Blackmore
- andrew&aquacooler.com.au
-33889
- Do-Style,INC.
- Toshiaki Sakazume
- toshiaki&do-style.com
-33890
- KUB Ltd.
- Khaustov Ivan
- pavel&tomline.ru
-33891
- goettert.net Internet Service
- Daniel Goettert
- info&goettert.net
-33892
- Be IP s.a.
- Steve Frécinaux
- sfrecinaux&beip.be
-33893
- Specialized Information Systems Ltd.
- Vitaliy Verveyko
- office&specinfosystems.com.ua
-33894
- Aulofée
- Cuir Lionel
- aulofee&aulofee.com
-33895
- The Joint Commission
- Kurt Stehlik
- kstehlik&jcaho.org
-33896
- DDO Organisation sarl
- Donnet, Sylvain
- sdonnet&ddo.net
-33897
- GSA
- Raju Bhupatiraju
- raju.bhupatiraju&gsa.gov
-33898
- Synovel Software Technologies Pvt. Ltd.
- Siva Edupuganti
- sivakrishna&synovel.com
-33899
- rahmn.com, llc
- Michael Rahmn
- michael&rahmn.com
-33900
- Next Level Security Systems, Inc.
- Peter Jankowski
- pete&nlss.com
-33901
- ezwww.ch
- Thierry Bagnoud
- hosting&ezwww.ch
-33902
- Tiju Paul
- Tiju Paul
- tijupi&yahoo.com
-33903
- nenunic
- Yingzhe Hou
- houyz&nenu.edu.cn
-33904
- Sergei Butakov
- Sergei Butakov
- sergei&bslos.com
-33905
- iVoltaire.org
- Nicolas A. Bérard-Nault
- nicobn&gmail.com
-33906
- WANTS Inc.
- Hidehiro Sasaki
- sasaki07&wantsinc.jp
-33907
- SECURITAS DIRECT ESPAÑA S.A.U.
- Jose Antonio Aparicio Rubio
- joseantonio.aparicio&securitasdirect.es
-33908
- Seowonintech Co., Ltd
- Jude Jung
- gsjung&seowonintech.co.kr
-33909
- Open Joint Stock Company Belvnesheconombank
- Sergey Kazuk
- kss&bveb.minsk.by
-33910
- BSN Medical GmbH
- Hartmut Volkmar
- hartmut.volkmar&bsnmedical.com
-33911
- Cerillion Technologies Limited
- David Ball
- david.ball&cerillion.com
-33912
- FULLSEE Electronics Co., Ltd. Beijing
- Scan Li
- fullseetech&126.com
-33913
- ClusterDB.com
- Andrew Morgan
- andrew&clusterdb.com
-33914
- Monmouth Telecom
- Mark Stevens
- oid-admin&monmouth.com
-33915
- Middle East Number Thirteen -Financial Services
- Mohamad Amin Peelechi
- m.amin.peelechi&gmail.com
-33916
- Freeman Decorating Services, Inc.
- Tommy Mhire
- tommy.mhire&freemanco.com
-33917
- Intact Financial Corporation
- Richard Daigle
- richard.daigle&intact.net
-33918
- Top Producer Systems
- Morgan Crocker
- morgan.crocker&topproducersystems.com
-33919
- ImmediaTV Corporation (formerly 'Magenta Video Networks')
- Ciro Noronha
- ciro&immediatv.com
-33920
- DLT Limited (formerly 'Remote Management Systems Limited')
- Darren Lucinsky
- DL&DLTLimited.com
-33921
- Molowa
- Olivier Pallière
- olivier&molowa.com
-33922
- Byzoro Networks Ltd.
- xie yongjiu
- xieyongjiu&byzoro.com
-33923
- Axione
- Thomas FAGART
- thomas.fagart&axione.fr
-33924
- Ebor Computing Pty Ltd
- Bill Cumpston
- snmp.info&ebor.com
-33925
- Progetto 3000 srl
- Alessandro Sebastianutti
- snmp-admin&progetto3000.com
-33926
- buzzword.org.uk
- Toby Inkster
- mail&tobyinkster.co.uk
-33927
- Cambridge Leaning Center
- Durk Kim
- durkkim&gmail.com
-33928
- Ibuildings
- John Le Drew
- john&ibuildings.com
-33929
- Universitat Jaume I
- Juanjo Villaplana
- villapla&si.uji.es
-33930
- Contineo Systems
- Milton Lie
- milton&contineosystems.com
-33931
- IK-TECH
- Joerg Weichbrodt
- jw&ik-tech.de
-33932
- MEDIACAST CO., LTD.
- Satoru Nonaka
- nonaka&mcast.co.jp
-33933
- QOX,Inc
- Katsumi Honda
- khonda&qox.jp
-33934
- XenData Limited
- Mark Broadbent
- xendata&xendata.com
-33935
- RedFox Communications Ltd
- Mark Fenwick
- mark&redfox.co.uk
-33936
- Sentilla Corporation
- Pradip De
- pradip&sentilla.com
-33937
- LinuxBox.cz
- Petr Kopecky
- info&linuxbox.cz
-33938
- Ordina
- Alwin Warringa
- alwin.warringa&ordina.nl
-33939
- Bolt Court Consulting
- Jamie Hosker
- admin&boltcourtconsulting.com
-33940
- Wuhan Hongxin Telecommunication Technologies Co.,Ltd
- Zheng Zhi
- zhengzhi&hxct.com
-33941
- Business Logic Systems
- Stefan Szalai Dragos
- stefan.dragos&gmail.com
-33942
- NakedApe
- Anton Emmerfors
- anton.emmerfors&bredband.net
-33943
- Faculty of Electrical Engineering Banja Luka
- Mihajlo Savic
- badaboom&etfbl.net
-33944
- Compower Systems Inc.
- Juan Gil Niehorster
- jgil&compowersystems.com
-33945
- OHO Interactive
- Chris OConnor
- chris&oho.com
-33946
- Vencomm
- Alexandre Vézina
- avezina&vencomm.ca
-33947
- MAGICONLINE
- Adel Mezibra
- amezibra&magic.fr
-33948
- Azienda USL Ferrara
- Boccafogli Luca
- l.boccafogli&ausl.fe.it
-33949
- Geotech Ltda
- Ramiro Tostes
- ramirobot&gmail.com
-33950
- Zilogic Systems Pvt. Ltd.
- Ganesan Paramasivam
- iana&zilogic.com
-33951
- taunusstein.net
- Christian Felsing
- hostmaster&taunusstein.net
-33952
- ZimZahm Productions
- Thomas P. Zahm
- tpzahm&gmail.com
-33953
- DLT Limited
- Darren Lucinsky
- DL&DLTLimited.com
-33954
- International School of Beijing
- Damir Tejic
- dtejic&isb.bj.edu.cn
-33955
- Better Place
- Emek Sadot
- emek.sadot&betterplace.com
-33956
- Oversun
- Timur Izhbulatov
- t.izhbulatov&mchost.ru
-33957
- NCHOVY Inc.
- Yang, BongYeol
- xeraph&nchovy.com
-33958
- Skytap
- Lonnie Hutchinson
- lonnieh&skytap.com
-33959
- The Egyptian Company for Networks and Computer Security Services
- Ossama Husain
- info&snsegypt.com
-33960
- Nordnet AB
- Johan Tanner
- johan.tanner&nordnet.se
-33961
- enCentro Systems Inc
- Celso Meira
- celso.meira&encentro.eu
-33962
- icuetv
- George Kurian
- gkurian&icuetv.com
-33963
- OCCN Ltd.
- Thomas Steinbach
- pen&occn.co.uk
-33964
- ParaVolve Development Corporation
- James W. Brinkerhoff IV
- jwb&paravolve.net
-33965
- R-DATA Sp. z o.o.
- Grzegorz Szczyglowski
- grzegorz.szczyglowski&gmail.com
-33966
- FUNAI ELECTRIC CO., LTD.
- Masahiro Matsuo
- matuo&funai.co.jp
-33967
- The Now Factory
- Paul Colgan
- paul.colgan&thenowfactory.com
-33968
- Puleo Electronics Inc.
- Jim Montesion
- snmp&puleoinc.com
-33969
- Canfield Research Group
- Robb Canfield
- robb&canfield.com
-33970
- TradeHelm, Inc.
- Frank Gallagher
- frank.gallagher&tradehelm.com
-33971
- VanceInfo Technologies Inc.
- Jianmin Gao
- gao_jianmin&vanceinfo.com
-33972
- RFPA
- ROUSSELET Michel
- rfpa&rfpa.com
-33973
- Net Entertainment NE AB
- Christofer Olofsson
- chol&netent.com
-33974
- Agency.com
- Craig Webster
- cwebster&agency.com
-33975
- GnomishThoughts
- Ryan McHugh
- ryan.mchugh&gnomishthoughts.com
-33976
- HackThisSite
- Kage Konjou
- admin&hackthissite.org
-33977
- BLIP
- Dan Granville
- dan&blipcreative.com
-33978
- YAGI ANTENNA INC.
- mimura makoto
- mimura.makoto&yagi.h-kokusai.com
-33979
- Hong Kong Trade Development Council
- Shirley Yik
- shirley.sl.yik&hktdc.org
-33980
- DDB Link
- Julien LEROY
- jl&ddb.fr
-33981
- Tek-Ops.com
- Michael Schenck
- mschenck&tek-ops.com
-33982
- New Internet Technologies Sp. z o. o.
- Michał Kiędyś
- mk&newit.pl
-33983
- Total Tel International Pty Ltd
- Kim Beveridge
- info&ttiadvant.com
-33984
- Spark::red LLC
- Troy Anderson
- troy&sparkred.com
-33985
- MigraTech
- Philippe CHAUVAT
- infos&migratech.fr
-33986
- Universidade Federal de Pernambuco
- Jose Antonio Monteiro de Queiroz
- jose.queiroz&ufpe.br
-33987
- Lakstins Family, LLC
- Brian Lakstins
- brian&lakstins.com
-33988
- Comm.SEC di Valter Foresto
- Valter Foresto
- valter.foresto&gmail.com
-33989
- Hyette S.A.
- Manuel Cabrera Caballero
- manuel.cabrera&hyettemail.com
-33990
- Cassandra Research Center
- Matteo Slaviero
- matteo.slaviero&we-cassandra.com
-33991
- Beaumaris Networks
- Sunil Mudholkar
- sunil&bninet.tv
-33992
- Louisiana Community and Technical College System
- Lee Hammett
- lhammett&lctcs.edu
-33993
- Coalinga State Hospital
- Chris Kashuba
- ckashuba&csh.dmh.ca.gov
-33994
- Nei til EU
- Atle Solbakken
- atle&neitileu.no
-33995
- Pixip.net Gmbh
- Michael Raab
- info&pixip.net
-33996
- Diateam
- Guillaume Prigent
- snmp&diateam.net
-33997
- OneMedNet Corporation
- Jeffrey Yu, MD
- jeffrey.yu&onemednet.com
-33998
- Agily Networks Inc.
- Kirill Pertsev
- kika&agily.com
-33999
- Xiangmin Technology Co.,Ltd
- Ran Bi
- biran&xiangmin-tech.com
-34000
- BYNE (formerly 'SIMB Tecnologia')
- Vitor Espindola
- vitor&byne.com.br
-34001
- ingrifo
- Kamil Kaluzny
- rev&o2.pl
-34002
- WriteX ltd
- Victor V Kudlak
- info&kentos.ru
-34003
- AdRiver
- Victor Kudlak
- mega&adriver.ru
-34004
- PETROFAC INT LTD
- ABDUL ARSHAD
- abdul.arshad&petrofac.com
-34005
- Community Technology
- George Lee
- communitytechnology&yahoo.com
-34006
- Number Kuus Konsultatsioonid OÜ
- Raivo Metsvaht
- raivo.metsvaht&kuus.ee
-34007
- SKYSOFT ATM
- SEBASTIEN DUX
- sebastien.dux&skysoft-atm.com
-34008
- Tech Mahindra
- Vandana Awatramani
- vandana.awatramani&techmahindra.com
-34009
- YGOMI Europe Ltd.
- Daniel Nanassy
- Daniel.Nanassy&ygomi.com
-34010
- Paraflux, Inc.
- Scott Gimenez
- hostmaster&paraflux.com
-34011
- Donet, Inc.
- David Mezera
- david&donet.com
-34012
- Internet Doorway, Inc.
- John Havard
- admin&netdoor.com
-34013
- CBTS
- Barry Hall
- robert.hall&cbts.cinbell.com
-34014
- B1 Systems GmbH
- Jan Dennis Bungart
- bungart&b1-systems.de
-34015
- Pinghu Feihong Technology Co.,LTD
- Shujian Li
- lsj115&163.com
-34016
- management of procurement for state needs of Krasnodar Region
- Roman Osipov
- romanosipov&gmail.com
-34017
- telecommunication software gmbh
- Markus Meixner
- office&telecomsoftware.com
-34018
- MAC GUFF LIGNE
- Bruno MAHE
- mglsys&macguff.fr
-34019
- Agrokor
- Igor Bagic
- admin&agrokor.hr
-34020
- OpenHTTPD
- Peter Müller
- iana&openhttpd.net
-34021
- Hosteam
- Bartosz Waszak
- bartosz.waszak&hosteam.pl
-34022
- ITG SOLUTIONS S.A.C.
- Hector Zapata
- hector.zapata&itgsolutions.com.pe
-34023
- zumbi
- gustavo panizzo
- gfa&zumbi.com.ar
-34024
- Department of Homeland Security
- Raymond G. Melusky Jr.
- Raymond.melusky&dhs.gov
-34025
- Accelerated Data LLC
- Kevin Cornell
- kevin&xlr8edllc.com
-34026
- Alphalink
- Dominique Broeglin
- iana&alphalink.fr
-34027
- Qumu, Inc.
- David Bukhan
- dbukhan&qumu.com
-34028
- Idaho Power Company
- Shaun Skidmore
- ipcosnmp&yahoo.com
-34029
- TLSPU (formerly 'HaqaSoft')
- Adrian Hungate
- adrian&tlspu.com
-34030
- metatux.net
- Lars Buerding
- mtx-oid&metatux.net
-34031
- ViewStor Pty Ltd
- Kean Lim
- kean.lim&viewstor.net
-34032
- Amateur Radio Club (ARC) ITB
- Adityo Jiwandono
- jiwandono&gmail.com
-34033
- Unix Linux Authority Kft
- Gyula Afra
- hq&unixlinuxauthority.com
-34034
- Active Web Solutions Ltd
- Richard Prodger
- richard.prodger&aws.net
-34035
- IPsoTV
- Maria ARNAUD
- maria.arnaud&ipsotv.com
-34036
- Benchmark Group
- LE BARS Guillaume
- lebars&benchmark.fr
-34037
- European Nazarene College
- J. Alan Schrock
- itdirector&eunc.edu
-34038
- USGN
- Scott Wessels
- swessels&usgn.net
-34039
- Conversant Solutions Pte Ltd
- Yew-Jin Chua
- yewjin&conversant.com.sg
-34040
- OrgLDAP Project
- Timur Izhbulatov
- timochka&gmail.com
-34041
- unattended-gui
- Mario Gzuk
- gzuki&users.sourceforge.net
-34042
- T-Mobile Hrvatska d.o.o.
- Damir Perkov
- damir.perkov&t-mobile.hr
-34043
- Suffolk University ITS
- Keith Hersh
- khersh&suffolk.edu
-34044
- Adesta LLC
- Teri Shindo
- tshindo&adestagroup.com
-34045
- Vex
- Rafael Ugolini
- rafael.ugolini&vexcorp.com
-34046
- Midwatch Systems Inc.
- Bruce Claremont
- mid1&midwatchsystems.com
-34047
- THENEWPASTAWAVE.COM
- FERDINANDO FERRARI
- fferrari_it&yahoo.it
-34048
- Novell Consulting Ukraine Ltd
- Andriy Trotsenko
- ATrotsenko&novell.com
-34049
- Spirtech
- Frederic Levy
- contact&spirtech.com
-34050
- Cloudhopper, Inc.
- Joe Lauer
- joe.lauer&cloudhopper.com
-34051
- Universidade Estadual de Ponta Grossa
- Luiz Gustavo Barros
- luizgb&uepg.br
-34052
- Mount Desert Island Biological Laboratory
- Roy McMorran
- mcmorran&mdibl.org
-34053
- Associação Hospitalar Santa Rosália
- Geraldo Lopes de Souza
- ti&ahsr.com.br
-34054
- Australian Nursing Federation
- Will Dowling
- will.dowling&anfiuwp.org.au
-34055
- Vietnam National University, Hanoi
- Dzung Phung Chi
- dungpc&vnu.edu.vn
-34056
- Tranquil Hosting
- Chris Thunes
- cthunes&tqhosting.com
-34057
- Beehive Security
- Anthony Iacobucci
- steve&beehivesecurity.com
-34058
- Babicom
- Steve Babineau
- babineau&gmail.com
-34059
- NII "Vektor"
- Pustozerov Andrey
- pustozerov_aa&nii-vektor.ru
-34060
- Nexgen Technologies
- Marcel Manning
- netpro25&gmail.com
-34061
- COS-CRPF
- yann GUILLOUX
- yguilloux&cos-crpf.com
-34062
- Mosart Medialab AS
- Morten Larsen
- morten&mosartmedialab.no
-34063
- Hyves / StartPhone Ltd
- Roald van Loon
- noc&hyves.nl
-34064
- Böcherer Angewandte Informatik
- Wolfgang Böcherer
- info&bai.de
-34065
- Ricoh Europe PLC
- Ben Robinson
- ben.robinson&ricoh-europe.com
-34066
- Interpublic Group of Companies, Inc.
- Martin Wilkins
- Martin.Wilkins&interpublic.com
-34067
- OWVAT
- Charles Sauerbier
- charless&clarityconnect.com
-34068
- GAI-Tronics Corporation
- Joseph Walter
- JWalter&gai-tronics.com
-34069
- Information Security Services Association
- Chris Spohn
- cspohn&issa.org
-34070
- TeachMKs
- Jonathan Compton
- JECompton&gmail.com
-34071
- Hearst Communications Inc.
- Jerry W. Talbot II
- jtalbot&hearstsc.com
-34072
- NBEE Embedded Systems S.L.
- Miguel Angel Ajo
- miguelangel&ajo.es
-34073
- ISS
- Sherif Elian
- sherif.elian&issholding.com
-34074
- IDP Co.,Ltd.
- Kouji Mikami
- stdreg&idp-jp.com
-34075
- Deltatec - Tecnologia de Sistemas Lda
- José Semedo
- jsemedo&deltatec.pt
-34076
- Datakom Ltd
- Metin Hekimoglu
- datakom&datakom.com.tr
-34077
- BRVZ Bau- Rechen und Verwaltungszentrum GmbH
- Norbert Gaberle
- it&bauholding.com
-34078
- Informtekhnika & Communication, LLC
- Andrey A. Ramazov
- ramaz&infotek.ru
-34079
- Axios Systems
- Scott Leckie
- scott.leckie&axiossystems.com
-34080
- rtCamp Solutions Pvt. Ltd.
- Rahul Bansal
- rahul&rtcamp.com
-34081
- INSYS Microelectronics GmbH
- Werner Eberle
- weberle&insys-tec.de
-34082
- CitySync Limited
- Nico Bekooy
- support&citysync.co.uk
-34083
- Erayd LTD
- Steven Gilberd
- admin&erayd.net
-34084
- Universidade Federal de Juiz de Fora
- Rodrigo Costa Duarte
- rodrigo.duarte&ufjf.edu.br
-34085
- AWeber Communications, Inc.
- Ryan Steele
- ryans&aweber.com
-34086
- Talari Networks
- John E Dickey
- jdickey&talari.com
-34087
- Ultra Electronics, Nuclear Sensors & Process Instrumentation
- Ernest Cisneros
- ernest.cisneros&ultra-nspi.com
-34088
- Visioneer Inc
- John Dexter
- john_dexter&visioneer.com
-34089
- Newport Electronics, Inc.
- Kei Ho
- kho&newportus.com
-34090
- TFB Technology Ltd.
- Nicola Worthington
- nicolaw&tfb.net
-34091
- Benchlabs Limited
- Will Wright
- will&benchlabs.com
-34092
- MyMail PLC
- Lin Htun
- lh&mymail.net.mm
-34093
- UAB Profimus
- Donatas Cerniauskas
- info&profimus.lt
-34094
- Fanamoj (JSC)
- Morteza Razavi
- info&fanamoj.com
-34095
- Gymnazium Jaroslava Seiferta
- Jiri Bohac
- jbohac&jikos.cz
-34096
- Trilogical
- Asaf Tvito
- asaft&trilogical.com
-34097
- Racktivity
- Niko Vinken
- nvinken&racktivity.com
-34098
- farbwahl GbR
- Stefan Michalsky
- stefan.michalsky&farbwahl.de
-34099
- Palestine Polytechnic University
- Ghannam Aljabari
- galjabari&ppu.edu
-34100
- Tompkins Cortland Community College
- Brandon Wood
- woodb&tc3.edu
-34101
- Aimetis Corp
- Ryan Wightman
- ryan.wightman&aimetis.com
-34102
- Perversia Networking
- Johannes Heyder
- viva&perversia.net
-34103
- BV-Tech S.p.A. (formerly 'Bluestone S.r.l.')
- Mirko Innocenti
- m.innocenti&bv-tech.it
-34104
- Ceton Corp
- Alexander Faucher
- afaucher&cetoncorp.com
-34105
- Local Website Consulting
- Tim Drew
- tim_drew&hotmail.com
-34106
- TESCOMA s.r.o.
- Petr Absolon
- iana&tescoma.com
-34107
- SELEX ES LTD (formerly 'SELEX GALILEO')
- Davina Forster
- davina.forster&finmeccanica.com
-34108
- IAM Solutions GmbH & Co. KG
- Michael Raunft
- iana.contact&iam-solutions.de
-34109
- G&G Fitness Equipment Inc.
- Christopher Bennett
- cbennett&livefit.com
-34110
- Code Blue Corporation
- Mick Doran
- mdoran&codeblue.com
-34111
- Confamiliares de Caldas
- Gustavo Adolfo Gonzalez Gutierrez
- redes&confamiliares.com
-34112
- NetServe365
- Joel Reed
- jreed&netserve365.com
-34113
- CertifiCall
- Florian MAURY
- contact&certificall.fr
-34114
- Mitchell International
- Configuration Management or Stephanie Plein
- configuration.management&mitchell.com
-34115
- NIW Solutions
- Ian West
- ian&niw.com.au
-34116
- EhangCommucation & Technology Ltd.
- Alexander Fox
- wuzl&ehangcom.com
-34117
- Information System Products Co.,Ltd.
- Eitaro Washio
- washio&isp21.co.jp
-34118
- HL komm Telekommunikations GmbH
- Matthias Branzko
- it-admin&hlkomm.de
-34119
- Max Planck Institute for Human Cognitive and Brain Sciences
- Dr. Helmut Hayd
- hayd&cbs.mpg.de
-34120
- Laketec Communications Inc.
- Steve Foutty
- sfoutty&laketec.com
-34121
- Alias
- Patrice Peyrano
- support&alias.fr
-34122
- Retrix Hosting, Inc.
- Patrick Gibson
- patrick&retrix.com
-34123
- Akitogo Internet and Media Applications GmbH
- Gunnar Lieb
- admin&akitogo.com
-34124
- Digital Measures
- Scott Severtson
- tech&digitalmeasures.com
-34125
- Beyond Semiconductor
- Tomaz Markelj
- tomazm&beyondsemi.com
-34126
- Infocon S. A.
- Francisco J. Guzman
- javier_guzman&ieee.org
-34127
- Allgemeiner Deutscher Fahrrad-Club Landesverband Nordrhein-Westfalen e.V.
- Jan Bartels
- penregistration&adfc-nrw.de
-34128
- Fabri
- Alexander Stanley
- alexanderwstanley&gmail.com
-34129
- TUBITAK BILGEM BTE
- Bulent CANDAN
- bulent.candan&bte.tubitak.gov.tr
-34130
- ALCEA
- M VO-QUI BRUNO
- bvoqui&alcea.fr
-34131
- United In Song
- Rocky Skinner
- admin&unitedinsong.com.au
-34132
- Cash America International, Inc.
- Joseph Hellinger
- jhellinger&cashamerica.com
-34133
- Safety Vision, L.P.
- Raymond Parfett
- rparfett&safetyvision.com
-34134
- OpenTTD
- Patric Stout
- truebrain&openttd.org
-34135
- Forever Home Improvement
- Gary Gies
- gies&google.com
-34136
- VeNMSOL Technologies
- VINAYAGAM Mariappan
- vinayagam_m&hotmail.com
-34137
- Athens Wireless Metropolitan Network (AWMN)
- Socrates Panoussiou
- admin&awmn.net
-34138
- CER FRANCE POITOU-CHARENTES
- DIDIER dominique
- ddidier&86.cerfrance.fr
-34139
- Vasista Systems Inc
- Sharad Vasista
- sharadvasista&hotmail.com
-34140
- MAISONNEUVE Informatique
- MAISONNEUVE Michel
- maisonneuve01&orange.fr
-34141
- EXPRESS
- John Flores
- jflores&express.com
-34142
- Bank of Thailand
- Ed Yampratoom
- edy&bot.or.th
-34143
- Netrounds Solutions AB (formerly 'Absilion AB')
- Norbert Vegh
- norbert.vegh&netrounds.com
-34144
- Böhler Edelstahl GmbH & CoKG
- Josef Scheiber
- josef.scheiber&bohler-edelstahl.at
-34145
- Károly Róbert College, Gyöngyös, Hungary
- Kalcsó Gábor
- mofli&karolyrobert.hu
-34146
- Telogic Ltd.
- Low Kim Seng
- telogicsnmp&gmail.com
-34147
- MANGO
- Eduard Hernandez Vilanova
- eduard.hernandez&mango.com
-34148
- PRESENSE Technologies GmbH
- Friedrich Delgado Friedrichs
- iana&pre-sense.de
-34149
- IMATRIX Corp.
- Toshiyuki Hamasaki
- tech&imatrix.co.jp
-34150
- Syndicat IT & Internet
- Niels Dettenbach
- nd&syndicat.com
-34151
- Peppe-Certification
- Giuseppe Tumino
- peppe.tumino&gmail.com
-34152
- esd electronic system design gmbh
- Oliver Thimm
- oliver.thimm&esd.eu
-34153
- Päivölän Kansanopisto
- Asko Aulanko
- tech&paivola.fi
-34154
- Texprezzo Group BV
- Ferenc Holzhauser
- ferenc.holzhauser&textendo.com
-34155
- Tendril Networks
- Ben Hoyt
- bhoyt&tendrilinc.com
-34156
- Orel Analytics
- Greg Sterijevski
- gsteri1&hotmail.com
-34157
- Instituto Nacional de Matemática Pura e Aplicada
- Manoel Prazeres
- prazeres&impa.br
-34158
- Gouvernement de la Polynésie Française
- Leonard TAVAE
- leonard.tavae&informatique.gov.pf
-34159
- Pelican Engineering, Inc.
- Larry White
- lwhite&pelicaneng.com
-34160
- Certichron Inc
- Todd Glassey
- tglassey&certichron.com
-34161
- CUSI(China unicom system integration limited corporation)
- Wanchun Ye
- yewc1&chinaunicom.cn
-34162
- Symplified Inc.
- Harout Hedeshian
- hhedeshian&symplified.com
-34163
- ITMemphis
- David Aldridge
- david&daldridge.com
-34164
- Fubra Limited
- Mark Sutton
- servers&fubra.com
-34165
- Convergence CT, Inc.
- Donn Mukensnable
- dmuk&convergencect.com
-34166
- Stellar Switches, Inc.
- Donald Eastlake 3
- donald.eastlake&stellarswitches.com
-34167
- Power Admin LLC
- Doug Nebeker
- support&poweradmin.com
-34168
- Richer link co.ltd
- Bill Chen
- william&richerlink.com
-34169
- Northsun.net
- Karl Stevens
- iana-reg&northsun.net
-34170
- TTK S.A.S.
- Stefan Balatchev
- sbalatchev&ttk.fr
-34171
- Wingpath Ltd.
- Frank O'Gorman
- frank.ogorman&wingpath.co.uk
-34172
- Fixme Internet-käyttäjät ry
- Santtu Pajukanta
- tech&fixme.fi
-34173
- PD Software s.r.o.
- Pavel Dedík
- pavel.dedik&pdsoftware.eu
-34174
- FastOnlinePM
- W. Greg Youree
- wgyouree&gmail.com
-34175
- Advanced Navigation & Positioning Corporation
- Rob Hoeye
- rhoeye&anpc.com
-34176
- Hedgehog Oy Ltd
- Kalle Rönkkö
- kalle.ronkko&hedgehog.fi
-34177
- Bond Technical Management
- Michal Werner
- michal&bondtm.com
-34178
- Paragon Electronic Design Limited
- Shane Harrison
- shane.harrison&paragon.co.nz
-34179
- Inland Revenue Department of Sri Lanka
- Lal Silva
- lal&photolk.com
-34180
- Photop Technologies, Inc.
- qiaozong lee
- qiaozong.li&photoptech.com
-34181
- DARSHAN DUDHORIA
- DARSHAN DUDHORIA
- DARSHAN&DUDHORIA.COM
-34182
- Area SX
- Massimo Battisti
- info&areasx.com
-34183
- Global Data Logistix (Pty) Ltd
- Michael Karakashian
- michael.karakashian&globaldatalogistix.com
-34184
- Universität Hohenheim
- Bjoern Breiner
- bjoern.breiner&uni-hohenheim.de
-34185
- EBANK ONLINE (BEIJING) TECHNOLOGY Co., LTD
- chenzhe
- chenzhe&chinabank.com.cn
-34186
- TEAMCAST
- Sebastien MAHEUT
- support&teamcast.com
-34187
- WAGNER Group GmbH
- Claus-Peter Reinecke
- claus-peter.reinecke&wagner.de
-34188
- Klocktornet AB
- Patrik Lindahl
- patrik&klocktornet.com
-34189
- Max Planck Institute for the science of light
- Benjamin Klier
- benjamin.klier&mpl.mpg.de
-34190
- SSCANRFK54425
- charles sauerbier
- charles.sauerbier&navy.mil
-34191
- Human Factors International
- Michael Adams
- hostmaster&humanfactors.com
-34192
- Sikjur
- Christoph Kiechle
- iana&sikjur.de
-34193
- McKinney Identity Management Solutions, LLC
- Shawn McKinney
- shawn.mckinney&sbcglobal.net
-34194
- Jerusalem College of Technology
- avraham shir-el
- avraham&jct.ac.il
-34195
- ZID, Vienna University of Technology
- Jan Zabloudil
- jan.zabloudil&tuwien.ac.at
-34196
- Catchy.net BV
- Berend van der Laan
- berend&catchy.net
-34197
- EXANE
- ALIBELLI TONY
- tony.alibelli&exane.com
-34198
- Pragmatic Source SARL
- Farzad FARID
- ffarid&pragmatic-source.com
-34199
- West Virginia University
- Christopher Boyer
- ckboyer&mail.wvu.edu
-34200
- Planet-Work
- Frédéric VANNIÈRE
- tech&planet-work.com
-34201
- Neuberger Berman
- Timothy Warren
- tim.warren&nb.com
-34202
- Thing in the Corner Enterprises, LLC
- Wesley F. Arnold
- wesley.arnold&dwwtc.com
-34203
- TrustAlert
- Arie Kanarie
- penholder&trustalert.com
-34204
- Netweb Technologies
- Hemant Agrawal
- hemant&netwebindia.com
-34205
- Altrusoft AB
- Hans Höök
- hans.hook&altrusoft.se
-34206
- Penguin Solutions
- Florian Tischler
- admin&penguin-solutions.at
-34207
- tmira solutions
- Miguel Angel Nieto Jimenez
- manieto&tmira.com
-34208
- Telefin S.p.A.
- Luigi Ferrarini
- ferrarini&telefin.it
-34209
- Vamed Management und Service GmbH & CO KG
- Thomas Gallistl
- domainadmin&vamed.com
-34210
- Evangelische Kirche von Kurhessen-Waldeck
- Torben Busse
- edv.lka&ekkw.de
-34211
- Hanil Display
- Youngje Lee
- yj0000&dreamwiz.com
-34212
- Function International
- John Hughes
- jjhii&functioninternational.com
-34213
- ooVoo, LLC
- Michael Nordberg
- michael.nordberg&oovoo.com
-34214
- ACEnet
- Craig Squires
- csquires&mun.ca
-34215
- Acksen Ltd
- Richard Phillips
- richard.phillips&acksen.com
-34216
- Izmir University Of Economics
- Aydin MUTLU
- aydin.mutlu&ieu.edu.tr
-34217
- SKY Network Television Ltd
- Murray Knox
- mknox&skytv.co.nz
-34218
- DEW Industrial Electronics (Pty) Ltd, t/a SOS Industrial Electronics
- Ron Edge
- info&sos-ind.co.za
-34219
- wer-kennt-wen.de
- Frederik Padjen
- frederik.padjen&wer-kennt-wen.de
-34220
- CreAim B.V.
- Rogier Pafort
- pafort.rogier&creaim.nl
-34221
- TELEFRANG AB
- ROBERT WIIK
- ROBERT.WIIK&TELEFRANG.SE
-34222
- SOLTENLAR, S. L.
- JUAN CARLOS FERNANDEZ GARACHANA
- juancarlos&soltenlar.com
-34223
- chaos Studio
- Paul Adams
- paul&chaos-studio.com
-34224
- OpenSpirit S.A.
- Pedro Morris
- pmorris&openspirit.com.ar
-34225
- S30LABS IT ADVANCED SYSTEMS
- Fernando Marin
- fmarin&s30labs.com
-34226
- EION Inc
- jaganbabu Rajamanickam
- jagan&eion.com
-34227
- Software Machine S.r.l.
- Andrea Bertolotto
- info&softwaremachine.eu
-34228
- Radialpoint SafeCare General Partnership
- Sebastien Coutu
- sebastien.coutu&radialpoint.com
-34229
- Codewalker Solutions
- Gustavo Neto
- gustavo.neto&codewalker.com.br
-34230
- GCI Science & Technology Co. ,Ltd.
- Xiaojun Guo
- guoxiaojun&chinagci.com
-34231
- Open Cobalt Project
- John Dougan
- jdougan&acm.org
-34232
- Lucian-Alexandru Stanescu
- Lucian-Alexandru Stanescu
- luci&cnix.ro
-34233
- Kruger
- Fábio Ricardo Krüger Sartori
- fabio&krugerconsultoria.com.br
-34234
- Land Srl
- Claudio Dosio
- dosio&land.it
-34235
- Cork IT
- Alberto Reis
- contato&corkit.com.br
-34236
- Pixie
- Kiall Mac Innes
- info&pix.ie
-34237
- AssureTec Systems, Inc.
- Erich Weihrauch
- IT&AssureTec.com
-34238
- NewsWatch, Inc.
- Masahiro Kajiura
- penadmin&newswatch.co.jp
-34239
- Innovating Distributed Systems S.L.
- Miguel Angel Jimenez
- info&idsystems.es
-34240
- DARS d.d.
- Matjaz Vidic
- matjaz.vidic&dars.si
-34241
- Competella AB
- Lennart Bauer
- lennart.bauer&competella.com
-34242
- PerspecSys Inc.
- Terry Woloszyn
- admin&perspecsys.com
-34243
- Rob Sims
- Rob Sims
- iana-z&robsims.com
-34244
- Media Capital - Editora Multimedia S.A.
- Bruno Furtado
- bmfurtado&mediacapital.pt
-34245
- Circle Software Group B.V.
- Marc Bremmers
- Bremmers&circlesoftware.nl
-34246
- Hacktor
- Ruben de Groot
- ruben&hacktor.com
-34247
- Stationtostation
- Ruben de Groot
- ruben&stationtostation.nl
-34248
- Cykor Systems Ltd
- Nick Tsirides
- nick&cykorsystems.com
-34249
- Triada d.o.o.
- Jure Ferbezar
- jure.ferbezar&triada.si
-34250
- Arkadin
- Vincent THINSELIN
- v.thinselin&arkadin.com
-34251
- FREESTONE INTERNATIONAL GROUP LIMITED
- FRANK ZHANG
- frank&freestone.hk
-34252
- XPS ELETRÔNICA LTDA
- Antonio Henrique Pires de Sant'Anna
- antonio&xps.com.br
-34253
- VIAFIRMA, S.L.
- Benito Galan
- bgalan&viafirma.com
-34254
- Savannah Networks LLC
- Scott Cudney
- snmp&savannah-networks.com
-34255
- Corner Bowl Software Corporation
- Michael Janulaitis
- michael&cornerbowl.com
-34256
- HUMICOM co,. ltd
- Jang, Tae Seok
- tsjang&humicom.co.kr
-34257
- Defense Systems Group, NTT DATA Corporation
- Junsuke Suzuki
- suzukijns&nttdata.co.jp
-34258
- Otip Office
- Satoru Otsubo
- hatt3&otip.jp
-34259
- The State Higher School of Vocational Education in Elblag
- Adam Zaleski
- admin&pwsz.elblag.pl
-34260
- Apttsoft
- Saravana Kumar.V
- saravanakumaar.v&gmail.com
-34261
- MeVis Medical Solutions AG
- Sebastian Meyer
- sebastian.meyer&mevis.de
-34262
- Joinville Eau Vive
- Vincent Behar
- info&jevck.com
-34263
- picoChip Designs Ltd
- Spenser Poultney
- operations&picochip.com
-34264
- I.C.E. Logic Ltd.
- Dmitry A. Khromov
- info&icelogic.net
-34265
- OMNITECH SECURITY
- Pierre Gélard
- pgelard&omnitech.fr
-34266
- Unochapeco
- Sergio Wanderley
- stw&unochapeco.edu.br
-34267
- Swedbank AB
- Pavel Balashov
- Pavel.Balashov&swedbank.ee
-34268
- Martin Luther College
- Aaron Spike
- spikeac&mlc-wels.edu
-34269
- SLA Corporation
- Eric Collins
- eric.collins&slacorp.com
-34270
- Bamag GmbH
- Rene Streuber
- rene.streuber&bamag.net
-34271
- Geomidi Informatica Ltda.
- Marcos Ambrosio
- ambrosio&geomidi.com.br
-34272
- JSC NCC
- Glushko Artyom
- aglushko&ncc-volga.ru
-34273
- TMNS B.V.
- Walter Snel
- wsnel&tmns.com
-34274
- Sipwise GmbH
- Andreas Granig
- agranig&sipwise.com
-34275
- Boyne Resorts
- Ryan Kneeshaw
- rkneeshaw&boyneresorts.com
-34276
- Signaturgruppen A/S
- Niels Frimodt Sørensen
- niels&signaturgruppen.dk
-34277
- Jens Meißner
- Jens Meißner
- heptalium&gmx.de
-34278
- Janitza electronics GmbH
- Marec Andreessen
- pen-contact&janitza.de
-34279
- JoutCon Oy
- Antti Lautamies
- antti.lautamies&joutcon.fi
-34280
- Metva
- Enno Davids
- enno06&metva.com
-34281
- Taiwan Dichen Co, Ltd.
- YANG WAN SHAN
- hackerkevin&gmail.com
-34282
- MEON-yamaguchi
- Kenichiro Miyoshi
- support&stellar.meon.ne.jp
-34283
- CA-Jinchen Software Co.,Ltd
- Zhou Li
- zhou.li&ca-jc.com
-34284
- Elisa Oyj
- Matti Swan
- matti.swan&elisa.fi
-34285
- S.C. DigiSign S.A.
- Iosif Szavuj
- admin&digisign.ro
-34286
- Feusi Bildungszentrum AG
- Heinz Dubach
- informatik&feusi.ch
-34287
- Raiffeisen Bank Kosovo JSC
- Bujar Ibrahimi
- bujar.ibrahimi&raiffeisen-kosovo.com
-34288
- Centralna banka Crne Gore
- Božo Cvetkovski
- bozo.cvetkovski&cb-cg.org
-34289
- IRE Rayos X S.A.
- Jose Maria VENEROSO BENITEZ
- jmvene&irerayosx.com
-34290
- RS2i
- Fahrid Djebbari
- fdjebbari&rs2i.fr
-34291
- xrow GmbH
- Björn Dieding
- service&xrow.de
-34292
- Spring Street Storage
- gabriel wolney
- mgrwolney&yahoo.com
-34293
- Coyote Creek
- Dave Theodore
- dtheodore&coyotecrk.com
-34294
- C-Cron GmbH
- Markus Heinze
- markus.heinze&c-cron.de
-34295
- Dalian Gigatec Electronics Co.,Ltd
- Dalian guokun
- guo_kun1977&126.com
-34296
- Dalian Maritime University
- Wang Renda
- renda&newmail.dlmu.edu.cn
-34297
- Mobistar sa/nv
- Philippe RASSEL
- philippe.rassel&mail.mobistar.be
-34298
- ConteXtream
- Harold Lowenthal
- harold&contextream.com
-34299
- Datavalet Technologies Inc.
- RnD Department
- it&datavalet.com
-34300
- Croix Rouge Francaise
- Manson Thomas
- mt&mansonthomas.com
-34301
- NEON, Inc.
- Leo Bredehoft
- lbredehoft&neoninc.org
-34302
- NetIntegrate Solutions Inc
- Chris Roylance
- chris&netintegrate.ca
-34303
- Skyline Network Engineering
- Michael Branan
- snmp&skylinenet.net
-34304
- Feynman Group, Inc.
- Mike Wilson
- administrator&feynman.net
-34305
- Developing Solutions, Inc.
- John Minnis
- iana&developingsolutions.com
-34306
- Canodus (formerly 'Decre')
- Wout Decré
- wout&canodus.be
-34307
- Deckland
- Martin Ried
- MartinRied&gmx.net
-34308
- Ford & Mason Ltd
- Andrew Ford
- A.Ford&ford-mason.co.uk
-34309
- Archimedes Solutions GmbH
- Marco Fagiolini
- mfx&archimedes-solutions.de
-34310
- UBINETSYS.CO., LTD.
- Jinju, Lee
- ceo&ubinetsys.com
-34311
- Data Net Solutions Group, Inc.
- Mark Greco
- mgreco&4datanet.com
-34312
- Accanto Systems S.r.l.
- Silvani Lucia
- lucia.silvani&accantosystems.com
-34313
- iDMS
- COUROUBLE Bertrand
- bcourouble.idms&nordnet.fr
-34314
- Datanomic Ltd.
- Richard Evans
- richard.evans&datanomic.com
-34315
- Broadband United GmbH
- Georg Herrmann
- info&broadbandunited.de
-34316
- PDSG
- Igor Klacansky
- iklacansky&pdsg.com
-34317
- Fabric Technologies
- James Waite
- james.waite&fabrictechnologies.com
-34318
- iEARN-USA
- Jeffrey Spiro
- jeffrey&us.iearn.org
-34319
- Inveneo Inc.
- Mark Summer
- it&inveneo.org
-34320
- Octo Wireless LLC
- Michel Stam
- mstam&octo-wireless.com
-34321
- ICP DAS Co., Ltd
- LiLing Huang
- liling_huang&icpdas.com
-34322
- Hoojima Ltd
- Ofir Mano
- ofir&xmousse.com
-34323
- Zolfo Cooper
- Faruk Patel
- fpatel&zolfocooper.eu
-34324
- Ministry for Information Society of Montenegro
- Ruzica Miskovic
- ruzica.miskovic&gov.me
-34325
- Investec
- Herman Young
- hyoung&investec.co.za
-34326
- Nokia Technologies
- Teemu Savolainen
- teemu.savolainen&nokia.com
-34327
- Farmacia Valentini
- Pablo Juan Valentini
- pablo_valentini&hotmail.com
-34328
- Tmcpcorp
- Matthew Heck
- customerservice&tmcpcorp.com
-34329
- DOCOMO interTouch
- Roseller Armirola
- roseller.armirola&docomointertouch.com
-34330
- Webyog Softworks Pvt Ltd
- Sayan Chaliha
- Sayan.Chaliha&webyog.com
-34331
- Vilant Systems Oy
- Anssi Kolehmainen
- anssi.kolehmainen&vilant.com
-34332
- Forex Club International Ltd
- Aleksandr Ivanov
- ivanov-av&fxclub.org
-34333
- Streamit BV
- Johan van der Stoel
- johan&streamit.eu
-34334
- Psylock GmbH
- Stefan Al. Brandl
- stefan.brandl&psylock.com
-34335
- Javahar Private Limited
- Javahar Ragothaman
- javahar&gmail.com
-34336
- Shenzhen Meikai Electronics Co., Ltd.
- Fred Xiao
- fred.xiao&meikai-cn.com
-34337
- Batracomiomachia
- Emilio Anzon
- emilio&anzon.it
-34338
- Bredbandstelefoni i Sverige AB
- Olle E Johansson
- noc&bbtele.net
-34339
- Asesoría CTDATA
- Luis Jiménez
- ljjimenez&gmail.com
-34340
- hoip.org
- David Pérez
- david&hoip.org
-34341
- Globalinx
- Thomas Powers
- thomas.powers&globalinx.com
-34342
- Prime Creation Technology Limited
- Michael Tso
- michael.tso&primecreation.com
-34343
- Saint-Petersburg Industrial Joint-Stock Bank
- Valeriy Kobak
- vkobak&siab.ru
-34344
- PNI Digital Media Inc.
- Adam Cheal
- operations&pnimedia.com
-34345
- Bloodhound Technologies Inc
- David Whipple
- dwhipple&bloodhoundinc.com
-34346
- Astral Media Radio inc.
- Charle Demers
- charle.demers&gmail.com
-34347
- ATX Innovation, Inc.
- David Lemley
- dave&atxinnovation.com
-34348
- AKC Solutions
- Maurice Kamgaing
- info&akcsolutions.com
-34349
- miraclesoft beijing co.ltd
- ji xiang yang
- jixiangyang&miraclesoft.com.cn
-34350
- Bingley Grammar School
- John Ralph
- john.ralph&bingleygr.ngfl.ac.uk
-34351
- iseemedia Inc.
- Ivan Yuan
- ivany&iseemedia.com
-34352
- Kamailio.ORG
- Daniel-Constantin Mierla
- daniel&kamailio.org
-34353
- ClairMail
- Ashwin Pejavar
- ashwin.pejavar&clairmail.com
-34354
- CGS, LLC
- Terry Rossio
- tcr&cgstogo.com
-34355
- sol4.net
- David Watson
- pen&sol4.net
-34356
- Inepex Ltd.
- Gabor Buza
- gabor.buza&inepex.com
-34357
- Plaid Tie Software
- Brian Bowling
- brian&plaidtiesoftware.com
-34358
- Servicios técnico comerciales en Internet S.C.P
- Francisco Monteagudo
- monti&servitec.net
-34359
- Nucleus Connect Pte Ltd
- Lim Hong Chuan
- hclim&nucleusconnect.com
-34360
- Silmor.de Projects
- Konrad Rosenbaum
- konrad&silmor.de
-34361
- Matrixware Information Services GmbH
- Oliver Falk
- oliver&linux-kernel.at
-34362
- FH Aachen
- Jörn Tomczak
- tomczak&fh-aachen.de
-34363
- Illallangi Enterprises
- Andrew Cole
- andrew.cole&illallangi.com
-34364
- geinitz.info
- Andreas Geinitz
- andreas&geinitz.info
-34365
- Beijing Eastcat Information Technology Company
- Liwenhao
- vovon&sohu.com
-34366
- Erwin Peters Systemtechnik GmbH
- Dieter Gleske
- d.gleske&epsystem.de
-34367
- Fire Check Consultants Pty Ltd
- Laurie Odgers
- l.odgers&firecheck.com.au
-34368
- General Dynamics Mediaware
- Ron Bar-Tor
- rbartor&mediaware.com.au
-34369
- NanoSoft AG
- Peter Stadler
- support&nanosoft.ch
-34370
- Papier- und Kartonfabrik Varel GmbH & Co KG
- Thomas Bonsack
- t.bonsack&pkvarel.de
-34371
- A1 Systems Ltd.
- Alexander Arkhipov
- a.arhipov&alt1.ru
-34372
- Tubedale Limited
- Gerrard Whitmore
- ged.whitmore&tubedale.co.uk
-34373
- ESCAUX
- Wim Livens
- iana-pen&escaux.com
-34374
- Paki Shells Internet Services
- Mohsin Rizwan
- mohsin&pakishells.net
-34375
- Mevio
- Dan Benson
- ops&mevio.com
-34376
- Automática y Regulación S.A.
- Rubén Lepe Morales.
- rlepe&auter.cl
-34377
- Locaweb Ltda
- Gilberto Mautner
- email-tec&locaweb.com.br
-34378
- q1cc.net
- Markus Dangl
- sky&q1cc.net
-34379
- Cheers Co.,Ltd
- Takashi Yoshida
- info&cheersnet.jp
-34380
- Puppet Labs, Inc. (formerly 'Reductive Labs, Inc.')
- Luke Kanies
- luke&puppetlabs.com
-34381
- Inixa - Security & Communication
- Julio Rilo Blanco
- jrilo&inixa.com
-34382
- Bigdogs Bros & Co.
- Massimo Liggio
- snmp.master&gmail.com
-34383
- INEX/ZAMIR
- David Goldstein
- davidg&inexzamir.com
-34384
- Sipoon kunta
- Viktor Eskman
- iana-pen&sipoo.fi
-34385
- Hinge Software Co.,Ltd.
- QingDa Yu
- qingda.yu&hingesoftware.com
-34386
- Intelligent Mechatronic Systems Inc.
- David Campbell
- dcampbell&intellimec.com
-34387
- Component Engineering, Inc
- Larry DeSoto
- ldesoto&componentengineering.com
-34388
- O'Reilly Automotive, Inc.
- Dustin McIlvain
- dmcilvain&oreillyauto.com
-34389
- Geofront
- Mike Woods
- mike&geofront.co.uk
-34390
- BlackGinger
- Deon Borman
- infotech&blackginger.tv
-34391
- Owens Corning
- Andy Michaelson
- dn-admin&owenscorning.com
-34392
- 3 Rivers Communications
- Tim Hodges
- tim.hodges&3rivers.coop
-34393
- blau Mobilfunk GmbH
- Tobias Galitzien
- tg&blau.de
-34394
- Whiplashcentret
- Morten Nielsen
- webmaster&whiplashcentret.org
-34395
- OMESH Networks
- Michael Lee
- michael.lee&omeshnet.com
-34396
- Metropolitan Government of Nashville & Davidson County
- Joseph Roselli
- Joseph.Roselli&nashville.gov
-34397
- Cloud Scope Technologies, Inc.
- Masaru Sugawara
- system-admin&cloud-scope.com
-34398
- LANCARD.COM inc,
- Hiroki MINEMATSU
- info&lancard.com
-34399
- coravy. Ltd.
- Stefan Saasen
- admin&coravy.com
-34400
- Research electronics AB
- Sven-Åke Eriksson
- sae&researchelectronics.se
-34401
- Studio Moderna d.o.o.
- Tomaz Grad
- tomaz.grad&studio-moderna.com
-34402
- Siskiyou County
- Eric Silfies
- eric.silfies&co.sisqjustice.ca.us
-34403
- unseregedanken.de
- Jan Dennis Bungart
- info&unseregedanken.de
-34404
- skyenet
- Laura Eckardt
- iana&comsound.de
-34405
- City of Cape Town
- Alan Moon
- Alan.Moon&capetown.gov.za
-34406
- Generals Network, OZ
- Marek Bečka
- yuen&klacno.sk
-34407
- nexus AG
- Gerrit Raith
- gerrit.raith&nexus-ag.de
-34408
- WANET s.r.o.
- Bruno Redl
- wario&wanet.cz
-34409
- Bebidas Gaseosas del Noroeste S.A.
- Alberto Gallego Patino
- alberto.gallego&begano.es
-34410
- Foss-on-line
- Sergej Mamontov
- mmm&foss.kharkov.ua
-34411
- Playtech Estonia OÜ
- Kristjan Bek
- kristjan.bek&playtech.com
-34412
- Mutina Technology S.r.l.
- Stefano Torri
- storri&mutinatechnology.com
-34413
- Global Substation Solutions Inc.
- Milos Prodanovic
- milos.prodanovic&gss.eu.com
-34414
- Beijing Galaxy Golden Star Technology & Development Ltd.
- Li Weijun
- tianyino&gmail.com
-34415
- Superna Analytics Inc.
- Keith MacEwen
- keith.macewen&supernaanalytics.com
-34416
- Ottawa Area Intermediate School District
- Patrick Donlin
- pdonlin&oaisd.org
-34417
- eGestalt Technologies Pvt. Ltd.
- Sanjay Debnath
- sanjay.debnath&egestalt.com
-34418
- Santa Clara University
- Todd Schmitzer
- tschmitzer&scu.edu
-34419
- Regis University
- Erich Delcamp
- oidadmin&regis.edu
-34420
- Hochschule RheinMain - University of Applied Sciences
- Ralph Weichert
- oid-itc&hs-rm.de
-34421
- Benoit Eletrodomesticos LTDA
- Mauro Delazeri
- mauro.delazeri&benoit.com.br
-34422
- Kingley Health
- Alexander Komarov
- alias.iana&kingleyhealth.com
-34423
- Jamtlands County Council - Sweden
- Mikael Johnson
- mikael.johnson&jll.se
-34424
- Lansen Technology
- Martin Hassel
- martin.hassel&lansentechnology.com
-34425
- Archant Limited
- Peter Bailey
- Peter.Bailey&archant.co.uk
-34426
- Wind Telecomunicazioni S.p.a
- Luca Ferrandino
- luca.ferrandino&mail.wind.it
-34427
- Czeh Consultants
- Tony Czeh
- tony&czeh.us
-34428
- UAB Lema
- Vidmantas Balcytis
- vidma&lema.lt
-34429
- Less Rain GmbH
- Marcus Pauli
- marcus&lessrain.com
-34430
- www.fiber-space.de
- Kay Schluehr
- kay&fiber-space.de
-34431
- ForceFive AG
- Stefan Bicanic
- stefan.bicanic&forcefive.de
-34432
- Lescom AG
- Schneider Pascal
- pascal.schneider&lescom.ch
-34433
- UniControls a.s.
- Petr Cvachouček
- cvachoucek&unicontrols.cz
-34434
- HongTEC (BeiJing) Co., Ltd
- zhu yuechen
- zhuyuechen&hong-tec.com
-34435
- North Loop Networks
- Mike Corneille
- mcorneille&northloopnetworks.com
-34436
- TS-Associates plc
- Steve Rodgers
- steve&ts-a.com
-34437
- Consequor Consulting AG
- Frank Goenninger
- frank.goenninger&consequor.de
-34438
- DOHMEN, HERZOG & Partner GmbH
- Frank Herzog
- frank.herzog&dhp-gmbh.de
-34439
- West Virginia State University
- Eugene Stowers
- estowers&wvstateu.edu
-34440
- Velocix Limited
- David Ferguson
- mibs&velocix.com
-34441
- NTT Basic Research Laboratories
- Hirofumi Ueshima
- ueshima&will.brl.ntt.co.jp
-34442
- e-utile S.p.A.
- Dario Dainelli
- dario.dainelli&e-utile.it
-34443
- Narinet Inc.
- Wonkyu Park
- wkpark&narinet.com
-34444
- STS Studi Tecnologie Sistemi S.r.l.
- Flavio Poletti
- flavio.poletti&stsconsulting.it
-34445
- Capgemini Nederland B.V. ( Netherlands )
- Renato Bianchessi
- renato.bianchessi&capgemini.com
-34446
- Hasenohr Consulting
- Paul Hasenohr
- consulting&hasenohr.eu
-34447
- Beijing Huoohuoo Technology Co., Ltd
- yadong shi
- huoohuoo&gmail.com
-34448
- G-Bits Network Technology Co., Ltd.
- Chao Xu
- xuc&g-bits.com
-34449
- Laguna Ventures, Inc.
- Sally Smith
- ssmith&lvi-usa.com
-34450
- JCNetwork e.V.
- Rami Baccar
- rami.baccar&jcnetwork.de
-34451
- OS3 srl
- Fabio Rotondo
- fabio.rotondo&os3.it
-34452
- EDV-Service Oliver Strucken
- Oliver Strucken
- post&strucken.net
-34453
- OPT Tahiti
- Christopher LOUIS
- christopher.louis&opt.pf
-34454
- VIS Visual Information Systems Limited
- John Bengston
- john&vis-ranger.com
-34455
- Primex Family of Companies
- Mark Meyer
- mmeyer&primexinc.com
-34456
- Dashwire, Inc.
- Garrett Honeycutt
- noc&dashwire.com
-34457
- Rex Wheeler
- Rex Wheeler
- rex&fuzzy.com
-34458
- K.S.Transplaneta Ltd
- Karsten Siebert
- Karsten.Siebert&transplaneta.com
-34459
- Network Box Corporation Ltd
- Mark Webb-Johnson
- mark.johnson&network-box.com
-34460
- xplo.re IT Services
- Michael Maier
- michael.maier&xplo-re.org
-34461
- Ithaxis
- Patrick Marteau
- p.marteau&ithaxis.fr
-34462
- init AG
- Martin Hase
- mhase&init-ka.de
-34463
- Corey Farrell
- Corey Farrell
- iana-reg&coreyfarrell.com
-34464
- Pragma Securities
- David Mechner
- sysad&pragmafs.com
-34465
- CyPace, Inc.
- Jeremy Murtishaw
- jeremy&cypace.com
-34466
- polyformal System- & Formarbeit
- Stefan Pampel
- stefan.pampel&polyformal.de
-34467
- REPOTEC CO., LTD.
- Jeffrey Hsu
- jeffrey&repotec.com
-34468
- Open Source Solution Technology Corporation
- Kentaro Nomura
- info&osstech.co.jp
-34469
- LOGIT CORPORATION
- takeshi yoshida
- yoshida&logit.co.jp
-34470
- Institute of Cybernetics at Tallinn University of Technology
- Riina Maigre
- riina&ioc.ee
-34471
- Trust-iD BV
- Marcel A. Wendt
- mwendt&trust-id.nl
-34472
- Hogeschool van Amsterdam
- Maurik van den Haak
- m.van.den.haak&hva.nl
-34473
- DOKOM Gesellschaft für Telekommunikation mbH
- Stefan Skuballa
- requests&dokom21.de
-34474
- ALT-LAN
- Maxim Tabolkin
- info&alt-lan.ru
-34475
- Polytronics Engineering Ltd.
- Eric Roman
- eric&polytronicseng.com
-34476
- BIA-Net GmbH
- Heiko Meyn
- mail&bia-net.de
-34477
- K & V spol. s r.o.
- Lubos Stanek
- stanek.l&kavdane.cz
-34478
- CMS Hasche Sigle
- Thoralf Tietboehl
- thoralf.tietboehl&cms-hs.com
-34479
- DWEB SOLUÇÕES PARA INTERNET
- AMADOR GONÇALVES
- suporte&dwebhosting.net
-34480
- iModules
- Todd Decker
- tdecker&imodules.com
-34481
- World Fuel Services
- Julio Pereira
- gwadmin&wfscorp.com
-34482
- Lambdazero IT
- Stefano Fiorini
- stefano.fiorini&lambdazero.it
-34483
- Himalaya networks
- Magesh Pat
- pat&himalayanetworks.com
-34484
- Toolio Systems
- Al Wheeler
- toolio&toolio.net
-34485
- R2Meton AB
- Per Lindström
- Per.Lindstrom&r2m.se
-34486
- Hanno.dk
- Jesper Hanno Hansen
- jesper&hanno.dk
-34487
- Kemi Shipping Oy
- Jukka Ponkala
- jukka.ponkala&kemishipping.fi
-34488
- Kryptiq Corporation
- Matthew R. Wilson
- mwilson&kryptiq.com
-34489
- Nikon AG
- Raimund Geiger
- raimund.geiger&nikon.ch
-34490
- Teliwave Pte Ltd
- Kok Yew Meng
- noc&teliwave.com
-34491
- Almaz-Antey Telecom
- Dmitry Grishin
- charit13&gmail.com
-34492
- Aryaka Networks
- Steve Jankowski
- aryaka-IANA&aryaka.com
-34493
- CPSG
- Hyrum Mills
- CPSG.IANA&LACKLAND.AF.MIL
-34494
- HSQ Technology
- Jason Spence
- jspence&hsq.com
-34495
- Streetcar Ltd
- Richard Smith
- richard.smith&streetcar.co.uk
-34496
- Cision US Inc.
- Brian Crocker
- oid-admin.us&cision.com
-34497
- LinSec Consulting
- Shane Machon
- shane&linsec.com.au
-34498
- IRBIS-T
- Gennady Gromov
- gromov&shtyl.ru
-34499
- Martin Merkel
- Martin Merkel
- martin-merkel&web.de
-34500
- LAOLA1 Multimedia GmbH
- Guido Rudisch
- guido.rudisch&laola1.at
-34501
- S. C. Null Team Impex SRL.
- Diana Cionoiu
- diana&null.ro
-34502
- Millikin University
- Craig Janssen
- infotech&millikin.edu
-34503
- WMI Computer
- Birger Brunswiek
- mib-admin&wmicomputer.de
-34504
- GuangZhou Comble Information Technology Co.,Ltd.
- Peter Zhou
- zhou&cbetek.com
-34505
- SIEGNETZ-IT GmbH
- Ralf Zimmermann
- technik&siegnetz.de
-34506
- Twinfalls Technologies
- Eric Bond
- eric.bond&telus.net
-34507
- Safe Consulting AS
- Øystein Tusvik
- oidadmin&safeinnovations.com
-34508
- Wyatt Tarrant & Combs LLP
- Rick Humphrey
- rhumphrey&wyattfirm.com
-34509
- Portland State University
- Jim Stapleton
- hostmaster&pdx.edu
-34510
- Optimum Path Systems, Inc
- Steven Webel
- steven&visualdatacenter.com
-34511
- Trinity County Office of Education
- Robert Jackson
- ctech&tcoek12.org
-34512
- graphische Informationstechnik Beratungsgesellschaft mbH (grit)
- Stephan Reichhelm
- iana.contact&grit.de
-34513
- RMT INC
- John Saley
- John.Saley&rmtinc.com
-34514
- Australian College of Remote and Rural Medicine
- David Warring
- david.warring&gmail.com
-34515
- Whitemice Consulting
- Adam Tauno Williams
- awilliam&whitemiceconsulting.com
-34516
- Network Applied Communication Laboratory
- Hiroshi Inoue
- support&netlab.jp
-34517
- Eastcom Systems Pte Ltd
- Charles Madapa
- charles&eastcom-systems.com
-34518
- Movianto GmbH
- Michael Rocktäschel
- michael.rocktaeschel&movianto.com
-34519
- UK Border Agency
- Vincent Blake
- vincent.blake&trustedborders.co.uk
-34520
- Mudra Communications Pvt. Ltd.
- Chirag A. Gandhi
- it&mudra.com
-34521
- Comlink Telecommunication Services Inc
- Arshad Patel
- awp&comlinkinc.com
-34522
- Pinnacle Wireless
- Doug Ehlers
- dehlers&idsmindshare.com
-34523
- BlueKrypt
- Damien Giry
- damien.giry&bluekrypt.com
-34524
- RIS2048, Lda
- Pedro Leite
- pedro.leite&ris2048.pt
-34525
- Yesin.NET
- Erol Yesin
- erol&yesin.net
-34526
- Techsologic
- Michael Stapleton
- michael.stapleton&techsologic.com
-34527
- Matrix Telecom Pvt. Ltd.
- Rakesh Rathod
- rakesh.rathod&matrixtelesol.com
-34528
- SecureWare
- Vassilis Poursalidis
- poursal&csd.uoc.gr
-34529
- Iuniperus S.r.l.
- Filippo Solinas
- netmgm&iuniperus.it
-34530
- Netpioneer GmbH
- Ulrich Hochholdinger
- admins&netpioneer.de
-34531
- landofnever.net
- Dario Turchetti
- support&landofnever.net
-34532
- mkbdoos
- L.B. Sparreboom
- luuk.sparreboom&mkbdoos.nl
-34533
- Compuvisor Lab
- Vadim Kataev
- vm&compuvisor.net
-34534
- Trimble MRM
- Erol Yesin
- erol_yesin&trimble.com
-34535
- JetTek LLC
- Gregory Orsini
- greg.orsini&jettekfix.com
-34536
- fdXtended
- Anton Van Cauteren
- anton&fdxtended.com
-34537
- The Moses H. Cone Memorial Hospital
- Dee Davis
- webadministrator&mosescone.com
-34538
- s.a. D'Ieteren n.v.
- Fabrice Coppens
- servercorp&dieteren.be
-34539
- Netcom XXI Informatica y Comunicaciones, S.L.
- Emilio Hernandez
- eh&netcom-xxi.com
-34540
- azeti Networks GmbH
- Uwe Holz
- uwe.holz&azeti.net
-34541
- Bematech S.A.
- Joao Cadamuro Junior
- joao.cadamuro&bematech.com.br
-34542
- kindwind technological ltd.
- huang zufeng
- zf.huang&kindwind.com.cn
-34543
- Susquehanna International Group
- Troy Phifer
- troy.phifer&sig.com
-34544
- Certant
- Juan Heguiabehere
- idm&certant.com
-34545
- Cistera Networks
- Ramana Guntor
- rguntor&cistera.com
-34546
- RedZinc Ltd
- Vincent Caffrey
- Vincent&Redzinc.net
-34547
- Glory Global Solutions (formerly 'Talaris')
- James William Long
- james.long&uk.glory-global.com
-34548
- Badischer Landwirtschaftlicher Hauptverband e.V.
- Jürgen Liebs
- Juergen.Liebs&BLHV.DE
-34549
- University of Saskatchewan
- Ken Glover
- ken.glover&usask.ca
-34550
- Austin Hughes Electronics Ltd.
- Ed Chan
- ed.chan&austin-hughes.com
-34551
- Zettacon Systems Inc.
- Malik Mazhar
- mazhar&zettacon.com
-34552
- IP SQUARE Softwareerzeuger GmbH
- Ronan Kelly
- admin&ipsquare.at
-34553
- Spryware
- Kenneth Felix
- Ken&spryware.com
-34554
- GrandPower
- Sunbin
- sunbin&grandpower.com.cn
-34555
- Eurasian energy corporation JSC
- Alexey Kramnyuk
- akramnyuk&eec.enrc.com
-34556
- EDAN INSTRUMENTS CO., LTD.
- Wenqiang Peng
- pwqlwl&gmail.com
-34557
- Ministerio de Justicia
- Angelines Turón
- seguridad_calidad&lista.mju.es
-34558
- Unassigned
-
- ---none---
-34559
- Maschinenfabrik Reinhausen GmbH
- Gerhard Reichl
- g.reichl&reinhausen.com
-34560
- Marquise Technologies
- Gregory Medwed
- support&marquise-tech.com
-34561
- VITALATIV, s.r.o.
- Vitaly Tsaregorodtsev
- iana&vitalativ.com
-34562
- FUHST MEHRENS
- Jonas Fuhst
- h.mehrens&fuhst.com
-34563
- Calame
- Philippe Rochat
- web100&sikatizen.com
-34564
- Hoseo telecom Co., Ltd.
- Lee min ki
- qhfleagle&hoseotel.co.kr
-34565
- KVARTA Ltd.
- Todor Manev
- tmanev&gmail.com
-34566
- Tradar Limited
- Tristan Clow
- tristan.clow&tradar.com
-34567
- Micronetics, Inc.
- Thomas Rizzo
- trizzo&micronetics.com
-34568
- Synectics
- Jamie Donald
- jamie.donald&synx.com
-34569
- KB "Uniastrumbank"
- Mixaylin Aleksey
- mixaylin&uniastrum.com
-34570
- Netdeep Tecnologia
- Marcos Paulo Serafim
- mpserafim&netdeep.com.br
-34571
- SIGNION SYSTEMS
- T. PRAVEEN KUMAR
- praveen&signion.com
-34572
- NARI-RELAYS Electric Co., Ltd.
- Liu Minghui
- liumh&nari-relays.com
-34573
- Finaf S.p.A
- Claudio Rocchi
- c.rocchi&angelini.it
-34574
- Blackbit Studio
- Andrea Gronchi
- info&blackbit.it
-34575
- Kent Imaging Inc.
- Matt Cervi
- matt&kentimaging.com
-34576
- HS Emden/Leer
- Ingo Herz
- herz&technik-emden.de
-34577
- Correlation Systems Ltd
- Erel Rosenberg
- erel&cs.co.il
-34578
- OpenNMS Sans Effort (OSE)
- Samuel Mutel
- opennmsse&free.fr
-34579
- SYM Technology, Inc.
- Hyunwoo Lee
- jason.lee&symtechnology.com
-34580
- Need Solutions
- Thierry LUCON
- thierry.lucon&needsolutions.fr
-34581
- J3TEL
- Aymeric Tiburce
- qualit&j3tel.fr
-34582
- Tuenti Technologies
- Matías Surdi
- msurdi&tuenti.com
-34583
- V-Private AG
- Stephan Paschke
- stephan.paschke&v-private.net
-34584
- unterberg-electronic Gmbh
- Thomas Unterberg
- thomas&unterberg-electronic.de
-34585
- REWE-Informations-Systeme GmbH
- Andreas Thimm
- andreas.thimm&rewe-group.com
-34586
- Ontario Teachers Pension Plan Board
- Brett McClellan
- brett_mcclellan&otpp.com
-34587
- Hiive Systems
- Glenn Fowler
- sysadmin&hiivesystems.com
-34588
- Beijing office of International Air Transport Association
- Fan Aihua
- fanah&iata.org
-34589
- Adnovate
- Joris Jansen
- jjansen&adnovate.com
-34590
- Novus Produtos Eletronicos Ltda
- Sandro Rafael dos Santos
- sandro.santos&novusautomation.com
-34591
- JSC Proryv-Komplekt
- Maksim Yanin
- YaninMA&Proryv-komplekt.ru
-34592
- Shenzhen C-Data Technology Co.,Ltd.
- Alan Cui
- yunliang_cui&cdatatec.com
-34593
- Zhilabs
- Julio César Arpírez Vega
- jarpirez&zhilabs.com
-34594
- Growing Opportunity Finance India Private Limited
- Immanuel Jeyaraj
- ijeyaraj&gopportunity.net
-34595
- Xteam Network(Beijing) Co.,Ltd
- zhaohai
- zhaohai&18mail.cn
-34596
- Casalogic A/S
- Troels Hansen
- th&casalogic.dk
-34597
- CADT Software and Drafting, S.L.
- Pascual Castellon Gadea
- p.castellon&cadt.com
-34598
- Cable Sense Ltd
- Phil Garner
- phil.garner&cablesense.net
-34599
- 3SI Security Systems NV
- Bart Saerens
- bart_saerens&3sisecurity.com
-34600
- TECSEM Tecnologia em Sistemas Embarcados
- Tiago Dall'Agnol
- tiago&tecsem.com.br
-34601
- MongoDB
- Eliot Horowitz
- eliot&mongodb.org
-34602
- Bomgar Corporation
- Tal Guest
- ProdInfo&bomgar.com
-34603
- Seria AS
- Jon-Eirik Pettersen
- joneirik&seria.no
-34604
- Fibernetics Corp
- Yvon Bertrand
- role.iana.pen&fibernetics.ca
-34605
- SL Corporation
- Michael Kairys
- michael&sl.com
-34606
- Wayne RESA
- Jim Rarus
- rarusj&resa.net
-34607
- Newdaysoft Co., Ltd
- Nam-Hyun , Kim
- nhkim&newdaysoft.co.kr
-34608
- American Society for Microbiology
- Edward Kurowski
- ekurowski&asmusa.org
-34609
- Vine Telecom Co., Ltd
- Young Hur
- young&vinetel.co.kr
-34610
- Grand Future Beijing Info-Tech Co., Ltd.
- Sun Ligang
- slg&valuex.cn
-34611
- Berufsförderungswerk Oberhausen
- Michael Detambel
- detambel&bfw-oberhausen.de
-34612
- Alteris Sp. z o.o.
- Robert Frączek
- robert.fraczek&alteris.pl
-34613
- iKron Ltd.
- Peter Timar
- sysadm&ikron.hu
-34614
- Technocats GmbH
- John Ainhirn-Williams
- john.williams&technocats.org
-34615
- Magyar Államkincstár / Hungarian State Treasury
- Izsa Jeno
- oid.admin&allamkincstar.gov.hu
-34616
- ActualWeb Soluciones Informaticas
- Rafael Forcada
- info&actualweb.es
-34617
- RCDevs
- Charly Rohart
- charly.rohart&rcdevs.com
-34618
- Gruppo TNT S.r.l.
- Giuseppe Bonariva
- beppe&gruppotnt.com
-34619
- 3Dicom, S.L.
- Rafael Forcada
- info&3dicom.es
-34620
- Asuerus van Tuijl
- Asuerus van Tuijl
- asuerus&asuerus.nl
-34621
- imacab
- Bouchrahi abdelhaq
- abdelhaqb&imacab.ma
-34622
- Heimore Group AB
- Daniel Roig
- daniel.roig&heimore.com
-34623
- USF1
- Frank Cusack
- frank.cusack&usf1.com
-34624
- Tokavuh Technologies oy
- Sami Kuhmonen
- sami&tokavuh.com
-34625
- Actavis Group hf
- Leslie Potts
- lpotts&actavis.com
-34626
- A-Real Consulting LLC
- Alexey Guskov
- lexag&mail.ru
-34627
- Digifix Ltda
- Christian Perez
- c.perez&digifix.com.co
-34628
- Citrus Networks
- Noel Kelly
- nkelly&citrusnetworks.net
-34629
- MP Advanced Multimedia
- Ignacio Alles
- ia&mpadvanced.com
-34630
- Tigron BVBA
- Gerry Demaret
- info&tigron.be
-34631
- Janelia Farm Research Campus/HHMI
- Eric Trautman
- trautmane&janelia.hhmi.org
-34632
- Cohort Technology Ltd
- Keith Gilbert
- technical&cohorttechnology.com
-34633
- norgie.net
- Mike Hemstock
- mikeh&csits.net
-34634
- Graduate School of Education and Information Studies
- Luke Brannon
- brannon&gseis.ucla.edu
-34635
- Pi-Systemprogrammierungs-GmbH
- Martin Trübner
- martin&pi-sysprog.de
-34636
- Contact Center Compliance Corporation
- Alex Hisen
- alexh&dnc.com
-34637
- Revenue Solutions, Inc
- John Walker
- jwalker&rsimail.com
-34638
- Memphis Network Service Ltd.
- Robson Stedille
- rst&memphisnetwork.com.br
-34639
- Conformity Inc
- Roy Kipp
- rkipp&conformity-inc.com
-34640
- Nodnet
- Juho Ylikorpi
- juho.ylikorpi&nodnet.fi
-34641
- Dimac Hosting AB
- Jonas Frost
- jonas&duplo.org
-34642
- Rugged Information Technology Equipment Corporation
- Stanley Papush
- stan&ritecrugged.com
-34643
- Garmin International
- Jason Anderson
- jason.anderson&garmin.com
-34644
- Potomac & Bluebonnet Technolgy LLC
- Robb Hill
- robb&protoping.com
-34645
- Adael Wireless SARL
- Mathieu Alengrin
- malengrin&adael.net
-34646
- HellermannTyton Data Ltd
- Jason James
- jason.james&htdata.co.uk
-34647
- KAMOME Engineering, Inc.
- Kohji Osamura
- sysadmin&kamomeengineering.com
-34648
- The-Box Development
- Jac Kersing
- info&the-box.com
-34649
- netvisiontel
- Moon-Jin, Yeom
- mjyeom&netvisiontel.co.kr
-34650
- P2Cache Pte Ltd
- He Hin Hoong
- hhhoong&p2cache.com
-34651
- agama co,ltd
- luo yaojun
- luoyaojun&sina.com
-34652
- IPF Technology Ltd
- Stanislav Chernikov
- s.chernikov&ipftechnology.com
-34653
- Irisys
- Neil Sumpter
- neils002&irisys.co.uk
-34654
- La Gentz KG
- Gregor Dorfbauer
- office&lagentz.at
-34655
- Berthold Boeser Ingenieurbuero
- Berthold Boeser
- info&ib-boeser.de
-34656
- ATS, Applicazione Tecnologie Speciali
- Campo Marilina
- marilina.campo&atsmed.it
-34657
- Seifert mtm Systems (Malta) Ltd.
- George Saliba
- george.saliba&seifert-mtmsystems.com
-34658
- Sysadmins LV
- Vadims Podans
- vpodans&sysadmins.lv
-34659
- EPLAN Software & Service GmbH & Co. KG
- Andreas Marxen
- marxen.a&eplan.de
-34660
- SIA Datu Sistemas
- Gatis Zeiris
- info&dsistemas.lv
-34661
- Islandsbanki
- Jon Elias Thrainsson
- sys&islandsbanki.is
-34662
- Ajuntament de Sant Adria de Besos
- Juan Antonio Vera Nieto
- javera&sant-adria.net
-34663
- Lavinia Interactiva
- Lluis Ribes
- lribes&lavinia.tc
-34664
- Trident Micro Systems
- Adam Yonce
- ayonce&tridentms.com
-34665
- ENTEL S.A. BOLIVIA
- Wilfredo Carrillo
- wilfredo.carrillo.o&gmail.com
-34666
- Lava Business Solutions
- Adam Kolakowski
- adamk&lava.pl
-34667
- DSP LABS S.r.l.
- Riccardo Scussat
- dsplabs&dsplabs.net
-34668
- Koine Servizi S.r.l.
- Bruno Alberto
- bruno&koine-servizi.it
-34669
- Encarnate, LLC
- Shane Kumpf
- shane&encarnate.com
-34670
- Scott Shen
- Scott Shen
- scott.swm&gmail.com
-34671
- Anoop Aryal
- Anoop Aryal
- anoop.aryal&gmail.com
-34672
- MicroAqua Network system
- Yangjiancai (James Yang)
- yangjiancai8&hotmail.com
-34673
- The FreeDHCP Project
- Alan DeKok
- aland&freedhcp.net
-34674
- FLIR Systems, Inc.
- Ricardo Gomez
- ns.it&flir.com
-34675
- blackcase.pl
- Kamil Kurzyk
- k.kurzyk&blackcase.pl
-34676
- Vox Telecom
- Dael Williamson
- daelw&voxtelecom.co.za
-34677
- informationpartners GmbH & Co. KG
- Stefan Mayer
- smayer&informationpartners.eu
-34678
- Anticept
- Jochen Seiler
- hosting&anticept.de
-34679
- forcont business technology gmbh
- Frank Nowak
- Frank.Nowak&forcont.com
-34680
- RUAG Holding AG
- Ernst Huber
- ernst.huber&ruag.com
-34681
- DATAGROUP IT Services Holding AG
- Tobias Hüttner
- security&datagroup.de
-34682
- ATP Management & Technology s.r.l.
- Luigi Vezzoso
- lvezzoso&atpmanagement.it
-34683
- Seacliff Associates, LLC
- Richard Irwin
- rirwin&seacliffedu.com
-34684
- Rosado Beheer BV
- Rui Rosado
- rui&rosado.nl
-34685
- Accipiter Systems, Inc.
- Eric Helmsen
- helmsen&accipitersystems.com
-34686
- Sunet Technology LLC
- Vadim Topchiy
- vadim&sunet.uz
-34687
- Gale
- Mike Seiler
- mike.seiler&sanyuhu.com
-34688
- King Abdullah University of Science and Technology
- Iain Georgeson
- iain.georgeson&kaust.edu.sa
-34689
- Tekron International Ltd
- Aleks Ristich
- support&tekroninternational.com
-34690
- National Gypsum Company
- Mike Brannon
- mebrannon&nationalgypsum.com
-34691
- EON Co.,Ltd
- Jin-su Jang
- jsjang&eonworld.com
-34692
- DICOM Grid, Inc
- Daniel Ostrow
- dostrow&dicomgrid.com
-34693
- Netsoft Lund Development AB
- Jorgen Christiansson
- jorgen&netsoftlund.se
-34694
- eleven GmbH
- Enno Cramer
- iana&eleven.de
-34695
- EXTENSION, Inc.
- Steve Tyler
- styler&ext-inc.com
-34696
- RIOD Technologies
- Brad Henry
- j0j0&riod.ca
-34697
- AfirmTrust, LLC
- Kirk Hall
- Kirk&mfhllc.com
-34698
- Studio Caccia
- Andrea Caccia
- andrea.caccia&studiocaccia.com
-34699
- France Développement Conseil
- Alexandre Allien
- alexandre.allien&fdc.eu
-34700
- Beijing Hongdexin Information Technology Co, Ltd.
- Robert Pletscher
- leiluobei&126.com
-34701
- BTCentral
- Ben Thomas
- services&btcentral.org.uk
-34702
- Parity Energy Inc.
- David Brown
- david.brown&parityenergy.com
-34703
- Stefan Sieber
- Stefan Sieber
- info&home.sieber.net
-34704
- H. Lundbeck A/S
- Thomas Svenningsen
- thsv&lundbeck.com
-34705
- ZAO GU NPO "Stroytechautomatika"
- Andrew Smirnoff
- asu&gu-sta.ru
-34706
- Aprius Inc.
- Swaminathan Saikumar
- swaminathan.saikumar&aprius.com
-34707
- Centro Federal de Educação Tecnológica de Minas Gerais
- Clever de Oliveira Júnior
- clever&dri.cefetmg.br
-34708
- Etrafficers, Inc.
- Steven Fletcher
- fletch&etrafficers.com
-34709
- Lightner Engineering
- Bruce D Lightner
- lightner&lightner.net
-34710
- Advance Communication Technologies
- James Laing
- jlaing&advance.ca
-34711
- Jamaica Broilers Group
- Owen Clashing
- oclashing&jabgl.com
-34712
- Fujian Newland Auto-ID Tech. Co., Ltd.
- CHEN JUN
- chenjun&mail.nlscan.com
-34713
- lc4ever.net
- Wang QuanLong
- apeidou&gmail.com
-34714
- OCULUS Optikgeräte GmbH
- Daniel Ache
- d.ache&oculus.de
-34715
- ITVT GmbH
- Patrick Kreuzer
- support&itvt.de
-34716
- Vizimax Inc.
- Jean-Marc Da Pozzo
- jmdapozzo&vizimax.com
-34717
- bhold
- Ben Fontein
- oid&bhold.com
-34718
- FUENSO
- Emiliano Almazán
- support&fuenso.com
-34719
- Cronon AG
- Florian Heinz
- fh&cronon-ag.de
-34720
- mFoundry
- Craig Setera
- software&mfoundry.com
-34721
- Magyar Waldorf Szövetség / Hungarian Waldorf Fellowship
- István Haraszti
- rendszergazda&waldorf.hu
-34722
- FastSoft, Inc.
- Rod Morison
- rmorison&fastsoft.com
-34723
- Conxx
- Brandon Wigfield
- brandon.wigfield&conxx.net
-34724
- netInsight ITLabs
- Alexandre Martins
- amartins&netinsight.com.br
-34725
- Vasc-Alert
- Larry Mills-Gahl
- lmg&vasc-alert.com
-34726
- Works Systems
- Joseph Chen
- climaxl&workssys.com.cn
-34727
- Burda Digital Systems GmbH
- Daniel Hansert
- daniel.hansert&burdadigital.de
-34728
- INSA de Lyon
- Frederic Jacquot
- frederic.jacquot&insa-lyon.fr
-34729
- OOO PS Yandex.Dengi
- Andrey V. Kovalev
- licensing&yamoney.ru
-34730
- FRANCILIENNE D'INGENIERIE ET DE SERVICES INFORMATIQUES SAS
- COQUEL, JEAN
- jeancoquel&fisi.fr
-34731
- Sloan Valve Company
- Mark Chapin
- mark.chapin&sloanvalve.com
-34732
- Spb Software Inc.
- Nikolay V. Krasko
- n.krasko&spbsoftware.com
-34733
- Zinnia Systems
- Akhilesh Singh
- akhilesh&zinniasystems.com
-34734
- University of Macerata
- Marco Principi
- marco.principi&unimc.it
-34735
- Cellfish
- Thomas Dupont
- thomas.dupont&cellfishmedia.fr
-34736
- Universidade Estadual Vale do Acaraú - UVA
- Pedro Roger M Vasconcelos
- roger&uvanet.br
-34737
- CIMNE
- Felip Moll
- fmoll&cimne.upc.edu
-34738
- MassiveSolutions Ltd
- Viktor Sovietov
- victor&massivesolutions.co.uk
-34739
- lihnidos.org
- Damjan Sirnik
- damjan&lihnidos.org
-34740
- University of Ottawa
- Luc Lepine
- lalepine&uottawa.ca
-34741
- Binet Réseau
- Raphaël Barrois
- oid&frankiz.polytechnique.fr
-34742
- LevelMobile, Inc.
- Ryan Nideffer
- rnideffer&gmail.com
-34743
- Teleperformance
- Joshua Miller
- joshua.miller&teleperformance.com
-34744
- QC Technology B.V.
- Eduard Karel de Jong
- eduard&dejongfrz.nl
-34745
- METADYS
- Cyril VELTER
- cyril.velter&metadys.com
-34746
- Kevinsnet Limited
- Kevin C. Leacock
- leacockk&kevinsnet.com
-34747
- Infineta Systems, Inc
- Ramesh Pavadai
- ramesh&infineta.com
-34748
- Twitter, Inc.
- John Adams
- jna&twitter.com
-34749
- SubscriberMail, LLC
- Bob Ziuchkovski
- sysadmin&subscribermail.com
-34750
- Truenorthlogic
- Nathan Dykman
- ndykman&truenorthlogic.com
-34751
- Shanghai Meridian Technologies, Co. Ltd.
- Tie Yu
- mrd454&gmail.com
-34752
- ITDiv.com
- Johan Wasserman
- johan.wasserman&gmail.com
-34753
- OnTime Networks AS
- Øyvind Holmeier
- contact&ontimenet.com
-34754
- PowerTrunk Inc.
- A. L. Kilbourne
- akilbourne&teltronic.es
-34755
- Res Ingenium s.r.l.
- Placidi Fabio
- fplacidi&res-ingenium.com
-34756
- Inoa
- Frederik Vermeulen
- frederik.vermeulen&inoa.net
-34757
- Gorilla Concept GmbH
- Markus Schütze
- schuetze&gorilla-concept.de
-34758
- Univerza v Ljubljani
- Anton Jagodic
- anton.jagodic&uni-lj.si
-34759
- Thames Valley Police
- Tim Nicholls
- tim.nicholls&thamesvalley.pnn.police.uk
-34760
- AMiT s.r.o.
- Martin Vosahlo
- vosahlo&amit.cz
-34761
- SSC-IT
- Sven Gertsch
- sven.gertsch&kssg.ch
-34762
- DartIT
- Boris B. Rudakov
- support&dartit.ru
-34763
- People Power Company
- David Moss
- dmoss&peoplepowerco.com
-34764
- ProStructure Consulting
- Micah McNelly
- micah&prostructure.com
-34765
- forVNs Group
- Tran Quoc Hoai
- hoaitq&gmail.com
-34766
- Invities
- Frederic Minot
- frederic.minot&invities.com
-34767
- ISPIN AG
- Mario Gersbach
- support&ispin.ch
-34768
- S+P LION AG
- Andreas Christ
- andreas.christ&sp-lion.com
-34769
- ACORDE TECHNOLOGIES
- Jacobo Domínguez
- jacobo.dominguez&acorde.com
-34770
- Cardiff University
- Ceri Davies
- daviescm5&cf.ac.uk
-34771
- Altmann Software
- Juergen Altmann
- juergen.altmann&altmann-software.de
-34772
- Automat Limited
- Philip Leung
- notifications&automat.co.uk
-34773
- Hx Engineering, LLC
- Steve Hendrix
- SteveHx&HxEngineering.com
-34774
- Huawei Symantec Technologies Co.,Ltd
- xiaoyong xiong
- xyxiong&huaweisymantec.com
-34775
- Canford Software Consultancy Limited
- Paul Stiles
- paul&canfordsoftware.com
-34776
- TODO BPO E SOLUCOES EM TECNOLOGIA S.A.
- Oswaldo Dantas
- oswaldo.junior&todobpo.com.br
-34777
- Capek Consulting
- Jan Capek
- jan-consulting&capkovi.eu
-34778
- American Customer Care, Inc.
- Gary Haubert
- noc&americancustomercare.com
-34779
- DeltaGlobal Co. LTD
- Seyyed Mohammad Mohammadzadeh
- mehran.m&deltaglobal.net
-34780
- IT One
- Pascal Stage
- pascal.stage&it1.fr
-34781
- Unassigned
- Removed 2009-12-18
- ---none---
-34782
- dcm4che.org
- Gunter Zeilinger
- gunterze&gmail.com
-34783
- Gordian Knot Limited
- Steven Robbins
- steven.r&gordian.co.uk
-34784
- Hurtig DataComm
- Johan Hurtig
- johan_hurtig&yahoo.com
-34785
- University of Craiova
- Marius MARIAN
- marius.marian&cs.ucv.ro
-34786
- Hartwick Services
- Michael J. Hartwick
- hartwick&hartwick.com
-34787
- Sunflower Broadband
- Matthew Welch
- mwelch&sunflowerbroadband.com
-34788
- Ministerio de Hacienda de El Salvador
- Jese Gallardo
- jgallardo&mh.gob.sv
-34789
- Northgate Information Solutions PLC
- Phill Demoore
- phill.demoore&demoore.co.uk
-34790
- Vtkom d.o.o.
- Nenad Opsenica
- office&vtkom.com
-34791
- Centre Hospitalier de Péronne
- BRICHE Nicolas
- nbriche&ch-peronne.fr
-34792
- Gouvernement de Nouvelle-Caledonie
- Eric AUVINET
- reseau.dtsi&gouv.nc
-34793
- Azblink
- Ko-Hsing Chang
- khc&azblink.com
-34794
- JSC Commercial Bank "Center-invest"
- Dyachkov Roman
- niarbrnd&centrinvest.ru
-34795
- DATA-PKS Ltd.
- Svetlin Radoslavov
- svetlinr&mail.bg
-34796
- MBS GmbH
- Nils-G. FRITZ
- iana&mbs-software.de
-34797
- AM-GmbH
- Oliver Greschok
- og&am-gmbh.de
-34798
- Tribunal Regional Eleitoral do Maranhão
- Jorge Carlos Amengol de Lima
- jorge.amengol&tre-ma.gov.br
-34799
- ACTi Corporation
- MingYoung You
- mingyoung.you&acti.com
-34800
- Polizei Baden-Württemberg
- Uwe Xaver
- uwe.xaver0&lka.bwl.de
-34801
- sublab e.V.
- David Lamparter
- equinox&local.sublab.org
-34802
- HomeNet
- Mike Calderwood
- contact&mikecalderwood.com
-34803
- Gubkin Russian State University
- Andrew Pantyukhin
- netadm&gubkin.ru
-34804
- Wideband Semiconductor, Inc.
- Chuck Handley
- chuck.handley&wideband.com
-34805
- Zivillian Software
- Bianco Veigel
- bianco.veigel&zivillian.de
-34806
- Optical Systems Design Pty Ltd
- Xinli Zhu
- xzhu&osd.com.au
-34807
- Q-TECH INFORMATION CO.,LTD
- wei chi
- weichinjcit&gmail.com
-34808
- Jiangsu broadcasting television network corporation limited
- xiaojun gao
- gaoxiaojun&gmail.com
-34809
- Parsons Brinckerhoff
- Dora Mandadjiev
- mandadjiev&pbworld.com
-34810
- Intermountain Healthcare
- Bruce James
- Bruce.James&imail.org
-34811
- Stollmann E+V GmbH
- Ingo Sandmeier
- is&stollmann.de
-34812
- Mirifice Ltd
- Alex Dick
- alex.dick&mirifice.com
-34813
- Multilink
- Jon Ciccozzi
- jciccozzi&multilinkone.com
-34814
- Zpend Pty. Ltd.
- Chris Forkin
- chris&openexpertise.com
-34815
- Angry Dog Business Sytems
- David Dymock
- david&theangrydog.co.uk
-34816
- Icon Power Solutions Pvt. Ltd.
- Baljeet Singh Bhatti
- baljeet&iconpowersolutions.com
-34817
- Tamtron Oy
- Pekka Lehikoinen
- pekka.lehikoinen&tamtron.fi
-34818
- CPI Corporation
- Derek Chen-Becker
- noc&cpicorp.com
-34819
- Nacka kommun
- Martin Andersson
- martin.andersson&nacka.se
-34820
- Satcom Technologies EMC
- Robert Fitting
- rfitting&emcsatcom.com
-34821
- Lafayette Consolidated Government
- Ben Segura
- bsegura&lus.org
-34822
- Calet, Inc.
- Gregory Allen
- gallen&mycalet.com
-34823
- VersaForm Systems Corp
- Joe Landau
- jrl&versaform.com
-34824
- Texas A&M University System
- Networking & Information Security
- tech&net.tamu.edu
-34825
- Pareto Networks Inc.
- Carl Mower
- snmp&paretonetworks.com
-34826
- Tayana Software Solutions Pvt Ltd
- Nandyala Srinivasulu
- sreenu&tayanasoft.com
-34827
- RT-RK
- Milenko Beric
- milenko.beric&rt-rk.com
-34828
- Pannon GSM Távközlési Zrt.
- Peter Seregi
- pseregi&pannon.hu
-34829
- GraphLogic Inc
- Kenneth Eschrich
- keschrich&graphlogic.com
-34830
- Forers, s. r. o.
- Petr Kutalek
- info&forers.com
-34831
- The Freecycle Network
- Deron Beal / Richard Wallman
- servicenotify&freecycle.org
-34832
- Intelibs, Inc
- Sohee Kim
- sohee.kim&intelibs.com
-34833
- DrivenDown.com
- Jeff Trnka
- iana&drivendown.com
-34834
- BermudaTriangle.com
- Jeff Trnka
- iana&bermudatriangle.com
-34835
- Hypercable
- DUCASSE Jean-Claude
- info&hypercable.fr
-34836
- Denkosha Co.,Ltd.
- KOIKE Shiro
- koike&denkosha.co.jp
-34837
- Arrive Technologies
- Dan, Nguyen Duc
- dannd&atvn.com.vn
-34838
- Innovative SCADA Solutions Pty Ltd
- Louie Wong
- louie.wong&innov8scada.com
-34839
- abakus IT AG
- Peter Fischer
- pki&abakus.de
-34840
- Shanghai Huaheng Telecom Equipment Co.,Ltd
- yin gen ning
- anhuinyg&163.com
-34841
- Gordon Food Service, Inc.
- Jonathan Craig
- Jon.Craig&gfs.com
-34842
- TERASAKI ELECTRIC CO.,LTD
- Mamoru Sogo
- mamoru-sogo&terasaki.co.jp
-34843
- NASCENT Technology, LLC
- Scott Urban
- ieee&nascent.com
-34844
- Gennet S.A.
- Ilias Apalodimas
- apalos&gennetsa.com
-34845
- Faculté des Sciences et Techniques de Tanger
- Mohammed Azirar
- m.azirar&fstt.ac.ma
-34846
- SERTRES del Norte
- Daniel Rios
- juanvelez&logistecsoftware.com
-34847
- Spacetime Studios, LLC
- Anthony Sommers
- asommers&spacetimestudios.com
-34848
- Shibasoku
- Tetsuya Michikawa
- michkawa&shibasoku.co.jp
-34849
- Security Code Ltd.
- Zakharov Alexandr
- A.Zakharov&securitycode.ru
-34850
- EldoS Corporation
- Eugene Mayevski
- cto&eldos.com
-34851
- Adalia Oy
- Jani Soila
- soila&adalia.fi
-34852
- Roeften
- Panos Gkikakis
- contact&roeften.com
-34853
- RainStor
- Jonathan Teague
- it&clearpace.com
-34854
- indeni
- Yonadav Leitersdorf
- yonadav&indeni.com
-34855
- Votiro Ltd. (formerly 'MobileTick Ltd')
- Aviv Grafi
- aviv&votiro.com
-34856
- ALTAVIA SA
- François ROUSSEAU
- f.rousseau&altavia-group.com
-34857
- BaiY Studio
- Yang Bai
- baiyang&gmail.com
-34858
- Wireless Networks Association (WNA.gr)
- John Haralampidis
- admin&wna.gr
-34859
- jgfs.net
- Jakub Gawkowski
- jakub.gawkowski&jgfs.net
-34860
- Finalist IT Group
- Sander Bos
- sander.bos&finalist.com
-34861
- Rajant Corporation
- Marty Lamb
- mlamb&roinet.com
-34862
- Fundamo
- Willem Visser
- willemv&fundamo.com
-34863
- Leopold Kostal GmbH & Co. KG
- Vit Svarc
- v.svarc&kostal.com
-34864
- Mito Europe Ltd
- Sandor Apati
- admin&mitoeurope.com
-34865
- World Evolved Services, LLC
- Marcus Louie
- mlouie&worldevolved.com
-34866
- Suffolk County Council (formerly 'Customer Service Direct')
- Shang Jin
- Shang.Jin&suffolk.gov.uk
-34867
- Universitaet Greifswald
- Gordon K. Grubert
- gordon.grubert&uni-greifswald.de
-34868
- Winnerstek Inc.
- Jae Young Lee
- duri&winnerstek.com
-34869
- Ian Hine Consulting
- Ian Hine
- ian_hine&ozemail.com.au
-34870
- Megabyte Doctor (Pty) Ltd
- Bame Sekwakwa
- megabytedoctor&gmail.com
-34871
- trovicor GmbH
- Thomas Karger
- iana-admin&trovicor.com
-34872
- ETM Communications AB
- Ulf Bergqvist
- info&etmc.se
-34873
- Klein & Partner KG
- Jens W. Klein
- jens&bluedynamics.com
-34874
- Automasjon og Data as
- Oddbjørn Morlandstø
- om&automasjon.no
-34875
- Alpikom SpA
- Cristian Cappelletti
- c.cappelletti&alpikom.it
-34876
- Informatics Corporation of America
- Alexander Saip
- alex.saip&icainformatics.com
-34877
- Masergy Communications, Inc.
- Mike Clark
- mike.clark&masergy.com
-34878
- Advanstar Communications Inc.
- Dan Beutler
- dbeutler&advanstar.com
-34879
- BlueCross BlueShield of Minnesota
- Robert Hock
- Robert_L_Hock&bluecrossmn.com
-34880
- Cortina Systems
- Andrew Mok
- andrew.mok&cortina-systems.com
-34881
- EVT Technologies LTD
- Ram Tagher
- Ram&evt-vms.com
-34882
- Kolektor Group
- Gorazd Šemrov
- gsem&ascom.si
-34883
- House Arkko
- Jari Arkko
- jari&arkko.com
-34884
- David Wozny Limited
- David Wozny
- David&Wozny.org
-34885
- SSI (US) Inc
- Michael Wareman
- mwareman&spencerstuart.com
-34886
- Compagnie des Alpes
- Jean-Henri ANTUNES
- jean-henri.antunes&compagniedesalpes.fr
-34887
- Iariss
- Muré Michael
- batolettre&gmail.com
-34888
- Gatix
- Michel Stam
- mstam&gatix.net
-34889
- McKnight Insight
- Lawrence McKnight
- lawrence.mcknight&gmail.com
-34890
- Aizkraukles Banka A/S
- Ivars Zaicevs
- ivars.zaicevs&ab.lv
-34891
- Croatia Control Ltd.
- Branko Vesligaj
- branko.vesligaj&crocontrol.hr
-34892
- Kedros, a.s.
- Juraj Hrubsa
- hostmaster&kedros.sk
-34893
- Leeds City Council
- Alistair Fletcher
- Alistair.Fletcher&Leeds.gov.uk
-34894
- Global Strategies Group, Mission Systems
- David Loring
- david.loring&gtec-inc.com
-34895
- ITaM Services
- Daniel Reichelt
- mail&itamservices.de
-34896
- Gorilla Logic, Inc.
- Hank Harris
- admin&gorillalogic.com
-34897
- Centro Brasileiro de Pesquisas Fisicas
- Marita Maestrelli
- marita&cbpf.br
-34898
- CESEC-SFF
- lirui
- liruibit&hotmail.com
-34899
- H5 audits
- Lionel Barrère
- lionel.barrere&h5audits.com
-34900
- Informations Technologie Service und Consulting GmbH
- Registration Coordinator
- registration.coordinator&your-its.de
-34901
- Fortunaglobal (Pvt) Limited
- Buddhika Jayasekara
- buddhika&fortunaglobal.com
-34902
- IT Industry LTD
- Anton Globa
- a.globa&otdelit.ru
-34903
- M247 Ltd
- Geoff Garside
- geoff.garside&m247.com
-34904
- KRC OOO
- Roman Sakhnov
- admin&regcen.ru
-34905
- G-Lab
- Robert Henjes
- henjes&informatik.uni-wuerzburg.de
-34906
- RadiantGrid Technologies, LLC
- Kirk Marple
- mib&radiantgrid.com
-34907
- TELEVIC N.V.
- Luc Jonckheere
- L.Jonckheere&televic.com
-34908
- CareCloud Corp
- Thomas Packert
- tpackert&carecloud.com
-34909
- RHD Research Ltd
- Chris Crowther
- chris&rhdresearch.com
-34910
- Geeknet, Inc.
- Uriah Welcome
- uriah&geek.net
-34911
- Nanjing Jiajian Network Co. Ltd.
- Jiancheng Chen
- jcchen&jjlink.com
-34912
- PT. Nyra
- Hendrik Heriyanto Gosali
- hgosali&nyra.co.id
-34913
- TDM Ingénierie
- Loïc Mauhourat
- loic.mauhourat&tdm-ing.com
-34914
- Creative Consulting GmbH
- Adrian Müller
- handle&crecon.de
-34915
- Free Software Foundation Europe e.V.
- Cristian Rigamonti
- rigamonti&fsfeurope.org
-34916
- Walki Group Oy
- John Aspnäs
- john.aspnas&walki.com
-34917
- Car Chase Workshop Inc.
- Christopher W. Baran
- chrisbaran&carchaseworkshop.com
-34918
- Syncapse Corp.
- Kenneth Voort
- ldapadmin001&syncapse.com
-34919
- Sky Wisdom Technology Limited
- Thomas Chen
- thomas&xray.hk
-34920
- Allen Lund Company
- Jason Nelson-Wolfe
- jason.wolfe&allenlund.com
-34921
- EvoStor Inc.
- Cheryl Davis
- cheryl&evostor.com
-34922
- Epic Advertising Inc
- Timothy Barrow
- timothy.barrow&epicadvertising.com
-34923
- KOOLING
- Greg Hill
- gaohaiyun&kooling.com.cn
-34924
- Augustine Consulting
- Adam Augustine
- crypto&augustinec.com
-34925
- Nantes Systems Private Limited
- Aravinda Babu
- support&nantes.net.in
-34926
- Limited Liability Company "Wild Orchid"
- Scherbakov Alexander
- a.scherbakov&classic.ru
-34927
- DL Santé
- Grégory ROUSSEAU
- gregory.rousseau&dlsante.fr
-34928
- ACVITAS
- Andrey Shvydky
- andrey&acvitas.com
-34929
- SURGIDEX
- David Nunes
- dnunes&surgidex.com
-34930
- Caneris Inc
- Erik Levinson
- noc&caneris.com
-34931
- ShangHai DynamiCode Company Limited
- Barry Lv
- barrylv&dynamicode.net.cn
-34932
- CMS Affiliate
- Cody Michael Salnave
- SupportAgent&purplehayze.com
-34933
- CPO Partners
- Leo Romers
- oid&cpo-partners.com
-34934
- CirclePrinters
- JANC Arnaud
- arnaud.janc&circleprinters.fr
-34935
- marmira
- Urs Zurbuchen
- incoming&marmira.com
-34936
- Creowave Oy
- Tommi Matila
- creowave&creowave.com
-34937
- UniversitaetsSpital Zurich
- Jens Grundtvig
- jens.grundtvig&usz.ch
-34938
- Fédération française d'équitation
- Emmanuel HUDE
- emmanuel.hude&ffe.com
-34939
- SURMEI MIHAI-EUGEN
- Mihai Surmei
- msurmei&gmail.com
-34940
- Roman V. Kiseliov
- Roman V. Kiseliov
- roman.kiseliov&gmail.com
-34941
- DiegoLima.org
- Diego Lima
- diegolima.br&gmail.com
-34942
- Cambrium BV.
- Johan Mulder
- johan-iana&cambrium.nl
-34943
- Sumisho Computer Systems Corporation
- Kazuhiro Sato
- k.satou&jpta.scs.co.jp
-34944
- Amplus Communication PTE LTD
- Ryan F. Mejia
- rmejia&amplus.com.sg
-34945
- Albert Ziegler GmbH & Co. KG
- Andreas Mesch
- amesch&ziegler.de
-34946
- Independent Project Engineering Ltd
- Tom Hirst
- tom.hirst&ipe-systems.co.uk
-34947
- chill-n-go, Inc
- William Estberg
- bill&chill-n-go.com
-34948
- NORMHOST
- Geoffroy MARTIN
- geoffroy.martin&normhost.com
-34949
- Electronics Source Co.,Ltd.
- Pornchai Chantachatkul
- pornchai&es.co.th
-34950
- Herrmann & Lenz Solutions GmbH
- Peter Bekiesch
- peter.bekiesch&hl-services.de
-34951
- Komercijalna Banka AD Skopje
- Oliver Stefanovski
- pki-support&kb.com.mk
-34952
- nxtControl GmbH
- Gernot Kollegger
- support&nxtcontrol.com
-34953
- Concentric Circle Consulting
- Robert Falkowitz
- robert&3cs.ch
-34954
- Novtis do Brasil S/A
- Ricardo Barbosa Matsuno
- ricardo.matsuno&novtis.com.br
-34955
- Roland Gruber Softwareentwicklung
- Roland Gruber
- roland.gruber&rg-se.de
-34956
- Shanghai Transform IT Co. Ltd
- Baozhu Zhao
- zhaobzhu&yahoo.com.cn
-34957
- TTC Next-generation Home Network System WG
- Hideo Kobayashi
- kobayashi&ttc.or.jp
-34958
- Logilin
- Christophe Blaess
- contact&logilin.fr
-34959
- Ingenieurbuero Berghofer KG
- Gerhard Berghofer
- office&berghofers.net
-34960
- SuperHost.pl s.c.
- Jakub Jankowski
- jakub.jankowski&superhost.pl
-34961
- H&S Hochfrequenztechnik GmbH
- Daniel Stock
- office&hs-equipment.com
-34962
- Falco Networks B.V.
- Berry Batist
- berry&falco-networks.com
-34963
- Idle Pattern Communications, LLC
- Omachonu Ogali
- oogali&idlepattern.com
-34964
- Carbones del Cerrejon Ltd.
- Jose A. Diaz
- jose.a.diaz&cerrejoncoal.com
-34965
- Ricardo I. Vieitez Parra
- Ricardo I. Vieitez Parra
- ianapen&0xj.info
-34966
- Global Rail Systems, Inc
- David Ruskauff
- davidr&globalrailsystems.com
-34967
- Sichuan Hongguan Communication Technology Co., Ltd.
- li gong
- myltwg&126.com
-34968
- Airimba Wireless, Inc.
- Charles Taylor
- ctaylor&airimba.com
-34969
- REGNIA,Inc.
- Hisao Kato
- tech&regnia.com
-34970
- Institut Teknologi Nasional (ITENAS)
- Wahyu Hidayat
- wahyuhid&hotmail.com
-34971
- Ethereal Information Technology, Ltd.
- Brett Meier
- netops&ethit.com
-34972
- Eric Huss
- Eric Huss
- eric&huss.org
-34973
- MIANYANG NETOP TELECOM EQUIPMENT LTD.CO.
- li gang
- myltwg&126.com
-34974
- alentogroup.org
- Sven Handre, Director of IT
- admin&alentogroup.org
-34975
- IPROAD, Inc.
- Jay Kim
- jay&iproad.co.kr
-34976
- Mathew Systems Inc.
- Mathew Chan
- mathew.chan&mathewsystems.com
-34977
- Node-Nine, Inc.
- Chris Moody
- postmaster&node-nine.com
-34978
- Laysis Consulting Inc.
- Seth Miller
- seth&laysis.com
-34979
- Scientis Solutions Ltd
- Andi McLean
- Andi.McLean&scientis.co.uk
-34980
- linexus
- Alexander Vogt
- a.vogt&linexus.de
-34981
- cramif
- pailler vincent
- vincent.pailler&cramif.cnamts.fr
-34982
- Eye Pea Ltd. (formerly 'exaStack Limited')
- Jon Fautley
- jon.fautley&appstal.com
-34983
- 013Netvision
- Dmitry Saratsky
- nevil&013netvision.co.il
-34984
- ER Technology Ltda.
- Juan Pablo Daza Pardo
- juan.daza&er-technology.net
-34985
- kylimar.com
- Ben Love
- penregistry&kylimar.com
-34986
- Bookmans
- Jon Hassen
- jonh&bookmans.com
-34987
- OneWire
- Greg Varga
- greg.varga&onewire.ca
-34988
- Clearstone Central Laboratories
- Franck Dufreney
- franck.dufreney&clearstonelabs.com
-34989
- appventure GmbH
- Jens Holze
- info&appventure.de
-34990
- Vodafone Czech Republic a.s.
- Ondrej Remes
- ondrej.remes&vodafone.com
-34991
- SooperCreations
- Ivan Kluzak
- ivan&sooper.com
-34992
- Microlynx Systems Ltd
- Ken Mouratidis
- snmpsupport&microlynxsystems.com
-34993
- Cymfony
- Seth Simmons
- ssimmons&cymfony.com
-34994
- d3v Systems
- Konrad Pióro
- konrad.pioro&d3v-systems.eu
-34995
- DBMJ Rehabilitation Services, PLLC
- Richard D. Ball, MD, PhD
- r.d.ball&charter.net
-34996
- Richard D. Ball, MD, PhD
- Richard D. Ball
- r.d.ball&charter.net
-34997
- Kyoto University of Education
- Tsuyoshi Akiyama
- ipc&kyokyo-u.ac.jp
-34998
- CILogon Project
- Jim Basney
- info&cilogon.org
-34999
- JSC «Institute of infotelecommunications»
- Mr. Yuriy Sherstuk
- yusher&iitc.ru
-35000
- OptXware Research&Development Ltd.
- András Balogh
- balogh&optxware.com
-35001
- NERINFORMATICA DI NERI LUCIANO (formerly 'APTASYS S.R.L.')
- Luciano Neri
- info&nerinformatica.it
-35002
- dcux Co.Ltd.
- yu liang
- coolfish&dcux.com
-35003
- ADP ESI
- Jean-Edouard Babin
- ipc.network&europe.adp.com
-35004
- Bahia Software SL
- Jose Ramon Varela Pernas
- jramon.varela&bahiasoftware.es
-35005
- IMS Nanofabrication AG
- Samuel Kvasnica
- samuel.kvasnica&ims.co.at
-35006
- Vivio World
- Szymon Nieradka
- szymon&vivioworld.com
-35007
- mPAY24 GmbH
- Wolfgang Schaefer
- wolfgang.schaefer&mpay24.com
-35008
- Corporation Service Company
- Randall Shutt
- rshutt&cscinfo.com
-35009
- Techno Factory Desenvolvimento de Software Ltda.
- Osvandir Júnior
- osilvajr&live.com
-35010
- ATK-tehdas Oy
- Ossi Väänänen
- ossi&atk-tehdas.com
-35011
- Toyota Finance Australia Ltd.
- Justin-Rei Kurosawa
- jkurosawa&tfal.com.au
-35012
- StorSimple
- Joel Christner
- jchristner&storsimple.net
-35013
- Sweet Briar College
- Aaron Mahler
- amahler&sbc.edu
-35014
- Fenzke Netzwerktechnik GmbH
- Matthias Fenzke
- info&fenzke.net
-35015
- PWM Project
- Jason Rivard
- jrivard&gmail.com
-35016
- Bank-Pedersen
- Niels Chr. Bank-Pedersen
- iana&bank-pedersen.dk
-35017
- Western Range Maintenance
- Patrick Dunn
- vicepresidentsteam&gmail.com
-35018
- GoMidjets
- Tamir Gefen
- tgefen&gomidjets.com
-35019
- Decho Corporation
- Kevin S. Blackham
- netmgr&decho.com
-35020
- nangu.TV
- Antonin Kral
- antonin.kral&nangu.tv
-35021
- TranSoft a.s.
- Dusan Kudora
- admin&transoft.cz
-35022
- Sueddeutscher Verlag
- Schorr Norbert
- 9500&sueddeutscher-verlag.de
-35023
- Heirich IT Dienste GmbH
- Peter Heirich
- pen.iana&mail.heirich.eu
-35024
- Hospital Sierrallana - Servicio Cántabro de Salud
- Raúl Martínez
- rmartinezs&hsll.scsalud.es
-35025
- Lachlan Gunn
- Lachlan Gunn
- lachlan.gunn&internode.on.net
-35026
- PRODIST CONSULTORIA INFORMATICA E PRODUCOES ARTISTICAS LTDA.
- Fernando Tasso Amaral Baptista
- fernando.tasso&gmail.com
-35027
- liuxiangbupt.com
- liuxiang
- liuxiangbupt&sohu.com
-35028
- netPark LLC
- Joshua Williams
- jwilliams&netpark.us
-35029
- K.C.Innovations Co.,Ltd.
- Tanarug Issadisai
- tanarug&kcinovs.com
-35030
- Run Technologies Co.,Ltd.Beijing
- Xin Sun
- sunxin&bjrun.com
-35031
- GP NPF "Ratex"
- Andrey Melovatsky
- ratexvrn&yandex.ru
-35032
- BelTechInfo
- Victor Bolshakov
- vbolshakov&beltech.info
-35033
- Global Net Commerce, Inc.
- Joel Chan
- info&gnciwireless.com
-35034
- Sentai Digital, LLC
- John Franklin
- franklin&sentaidigital.com
-35035
- interCLICK
- Andrew Katz
- andrew.katz&interclick.com
-35036
- ASKO-IT
- Serge Duzhnikov
- grey.dev&gmail.com
-35037
- Onesource
- Luis Cordeiro
- cordeiro&onesource.pt
-35038
- XYMA-SONDEO
- anesto dell toro almenares
- anestodta&yahoo.com
-35039
- Denva ApS
- Jørgen Nielsen
- jon&qnet.dk
-35040
- Xiamen Helios Telecom Equipment Manufacture Inc.
- Stanley Zou
- Stanley.Zou&heliostelecom.com
-35041
- Electro Power Systems SpA
- PierPaolo Cherchi
- pierpaolo.cherchi&electrops.it
-35042
- Sporting Index Ltd
- Rob Cowie
- RCowie&SportingIndex.com
-35043
- Tripower
- Samuel S. Ciraulo
- sam.ciraulo&tripower.com
-35044
- CJSC Schelkovo Agrochim
- Timofey L Negrebetsky
- hexedit&betaren.ru
-35045
- Mathieu Malaterre Consulting
- Mathieu Malaterre
- mathieu.malaterre&gmail.com
-35046
- Intucell
- Rani Welling
- rani&intucell.co.il
-35047
- Sangfor Technologies Co.,Ltd.
- yi feng
- fengyi&sangfor.com.cn
-35048
- ShenZhen GreatFirst Technology Co., Ltd.
- Russell Luo
- russell&greatfirst.com
-35049
- Marler Media
- Jon Marler
- jmarler&marlermedia.com
-35050
- topdog.ru.net
- Dmitry Prokopchenkov
- dp&topdog.ru.net
-35051
- Systemnoe Modelirovanie i Analiz LLC
- Vladislav Babin
- vladislav.n.babin&gmail.com
-35052
- Condrey Corporation
- David Arnold
- ldapadmin&condreycorp.com
-35053
- LLC "Promo Interactive"
- Vlad L. Glagolev
- it&promo.ru
-35054
- Jan Schampera
- Jan Schampera
- jan.schampera&web.de
-35055
- Gameloft
- Pascal Lalonde
- gns-pen&gameloft.com
-35056
- whiteroad
- maris malic
- junk&whiteroad.ca
-35057
- UNESP
- Gabriel A. von Winckler
- winckler&ncc.unesp.br
-35058
- NikB-Soft
- Nikola Batchvarov
- nikb&mail.bg
-35059
- VarnaNet
- Kaloyan Kovachev
- kkovachev&varna.net
-35060
- IGI Mobile, Inc.
- Daniel Park
- skpark&igimobile.com
-35061
- Normation
- Jonathan Clarke
- jonathan.clarke&normation.com
-35062
- AiN-Tech. Corp.
- Keita Dougo
- dougo&ain-tech.jp
-35063
- Ukraine Property Group, Ltd.
- Olga Ermolenko
- info&upg.kiev.ua
-35064
- Jderobot
- José María Cañas
- jmplaza&gsyc.es
-35065
- Sinequa
- Alexandre Bilger
- support&sinequa.com
-35066
- HLRN
- Isaac Hailperin
- bzadmhai&hlrn.de
-35067
- mail.de GmbH
- Norman Schulz
- n.schulz&team.mail.de
-35068
- Virgo Systems Kft.
- Peter Heiner
- admins&virgo.hu
-35069
- Worldwide Trust Asia Pte Ltd
- Stefan Jonsson
- s.jonsson&wwtrust.com
-35070
- Plausible Labs Cooperative, Inc.
- Landon Fuller
- landonf&plausiblelabs.com
-35071
- Q & M Informática Ltda
- Marcos Belarmino
- bigmarcao&hotmail.com
-35072
- NGK Houten
- Maarten Bosmans
- mkbosmans&gmail.com
-35073
- GateWare Communications GmbH
- Wolfgang Haubner
- w.haubner&gateware.de
-35074
- MaxMara Fashion Group s.r.l.
- Marco Muccetti
- noc&maxmarafashiongroup.com
-35075
- BlueTech Technology Co., Ltd.
- Situ Xinhong
- stxh&bluetech.com.cn
-35076
- synfin.de
- Rene Graf
- rgraf&synfin.de
-35077
- Gracenote Inc.
- Mohammad Ali Khavari
- mkhavari&gracenote.com
-35078
- i-fabrik GmbH
- Nico Wagner
- nico.wagner&ifabrik.de
-35079
- Terminal Quequen S.A
- Serguey Shevtsov
- sergioshev&gmail.com
-35080
- KDH
- Klaus-Dieter Helbig
- klaus-dieter&helbig-mail.de
-35081
- Sarana Tunggal Pratama
- Asep Maryana
- maryana&saranatunggal.com
-35082
- Amaranten (ASIA) Network Co. Ltd.
- Liu Feng
- liufeng&amarantenasia.com
-35083
- TOSS GmbH
- Bernd Thinius
- info&toss.de
-35084
- RBS Coutts International
- Zurkinden Dominik
- dominik.zurkinden&rbscoutts.com
-35085
- EURO-INFORMATION
- Pascal BOBÉE
- certif-admin&e-i.com
-35086
- ReliabilityFirst Corporation
- Shawn Liggett
- shawn.liggett&rfirst.org
-35087
- BD Consult A/S
- Bent Dahl
- support&bdconsult.eu
-35088
- SRA International, Inc
- Kay Patterson
- Kay_Patterson&sra.com
-35089
- Bluebird Electronics Ltd
- Nigel Gardner
- nigel&bluebird-electronics.co.uk
-35090
- CTI
- Michael G. Martinez
- info&canam-technology.com
-35091
- Mitec Telecom Inc
- Daniel Bisson
- daniel.bisson&mitectelecom.com
-35092
- Made IT
- Dennis Leeuw
- dleeuw&made-it.com
-35093
- AT Testing
- Andrea Tedeschi
- admin&andreatedeschi.com
-35094
- iDevices Industria e Comercio de Produtos Eletronicos Ltda
- Francis Munhoz Mazzaro
- suporte&idevices.com.br
-35095
- OFFICE24 Co.,Ltd.
- Takaaki Arai
- info-request&webjapan.co.jp
-35096
- SmartEquip Inc.
- George Gu
- ggu&smartequip.com
-35097
- BlueWater Communication Group
- Henry Feusi
- henry.feusi&blueh2ogroup.com
-35098
- Pica8 Technologies, Inc
- Robin Wan
- wancheng82&gmail.com
-35099
- E-Mice Solutions (H.K.) Limited
- Stephen Chu
- stephenchu&e-mice.net
-35100
- Globelinks Technologies Limited
- Andy Ng
- andy&btl.com.hk
-35101
- SHENZHEN SHENXUN INFORMATION TECHNOLOGY DEVELOPMENT CO.,LID
- RenDong Lee
- SilentWoolf&hotmail.com
-35102
- Guangdong Huada Integrated Technology Co.,ltd.
- wangchan
- wangchan&hd-os.com
-35103
- Sichuan Cybercamera Information Technology Co.,Ltd
- Qin Ling
- qinl&cybercamera.com.cn
-35104
- Oerlikon Textile
- Thomas Overbeck
- thomas.overbeck&oerlikon.com
-35105
- Mason Brown Development, LLC
- Mason Brown
- masonbrown&gmail.com
-35106
- Reale Mutua Assicurazioni
- Alberto Re
- alberto.re&realemutua.it
-35107
- Prosol Group (Pty) Ltd
- Grant Hart
- grant.hart&prosol.co.za
-35108
- tocore education
- Liu Ming
- king.liuming&gmail.com
-35109
- Scienta Media s.r.o
- Maria Burykhina
- maria.burykhina&scientamedia.com
-35110
- 443 Pty Ltd
- Colby Pender
- oid&443.com.au
-35111
- NBank - Investitions und Förderbank
- Christian Wahlmann
- christian.wahlmann&nbank.de
-35112
- Vem Sistemi SpA
- Vittorio Valentini
- valentini&vem.com
-35113
- OpTier
- Elad Schulman
- elad.schulman&optier.com
-35114
- Robert Wood Johnson University Hospital
- Martin A Flynn
- mflynn&rwjuhr.com
-35115
- SqueakSoft.com, LLC
- Ron Chinn
- ron&squeaksoft.com
-35116
- Trover Solutions
- Jason P Messenger
- jmessenger&hcrec.com
-35117
- BamNet
- Ben VanDenBerg
- bamojr&gmail.com
-35118
- Korestone Technologies
- Chiming Huang
- chiming.huang&korestone.com
-35119
- Belhard Group JSC
- Gubanov Alexei
- GubanovAS&belhard.com
-35120
- SIDN
- Stephan Rütten
- stephan.rutten&sidn.nl
-35121
- BULiGL
- Andrzej Talarczyk
- Andrzej.Talarczyk&zarzad.buligl.pl
-35122
- Wayob
- Christian Körner
- christian.koerner&wayob.de
-35123
- Clear Channel Radio Digital
- Douglas Cliche
- douglascliche&clearchannel.com
-35124
- FilesAnywhere.com
- Jonathan Grubb
- jonathan&filesanywhere.com
-35125
- Helmut Ritter
- Helmut Ritter
- info&helmut-ritter.de
-35126
- Vodafone Group Services GmbH
- Helmut Ritter
- hostmaster&vodafone-rnd.com
-35127
- Japan Communication Inc.
- Shinya Arai
- sarai&j-com.co.jp
-35128
- KWS-Electronic GmbH
- Werner Blabsreiter
- w.blabsreiter&kws-electronic.de
-35129
- Rahn & Bodmer Co.
- Marcel Matter
- marcel.matter&rahnbodmer.ch
-35130
- fipscode
- Fabiano Sidler
- fabianosidler&swissonline.ch
-35131
- London Underground Ltd
- Michael Collyer
- Michael.Collyer&MetronetRail.com
-35132
- IFProject
- Timofey L Negrebetsky
- hexedit&ifproject.ru
-35133
- Gobierno de la Republica NeuKarthago
- John Stewart Diaz Di Castelo
- gob.neukarthago&redesdigitales.com
-35134
- 4Access Communications Company, Inc.
- James Skinner
- admin&4access.com
-35135
- Personal Software Company
- Sebastien Lefevre
- seb.lefevre&gmail.com
-35136
- BlueStripe Software
- Maury Cupitt
- mcupitt&bluestripe.com
-35137
- Chris Clayson
- Chris Clayson
- chris&stmaggies.org
-35138
- PK Verkkotaito Oy
- Andreas Backlund
- org-admin&eteinen.fi
-35139
- AZWUL
- Théotime Jurzak
- jurzak&gmail.com
-35140
- CableHD Radio Network
- Carlton Davis
- cdavis&cablehdradio.net
-35141
- PSIGlenmere
- Rudy Valencia
- rudy.valencia&psiglenmere.com
-35142
- VX4.NET
- Christian Kahlo
- cck&vx4.de
-35143
- Helpo Systems
- Claudio Henrique Fortes Felix
- claudio&helpo.com.br
-35144
- Power Quadrant
- Robert Turner
- rturner&powerquadrant.com
-35145
- Gearbit
- Ray Tompkins
- tech08&gearbit.com
-35146
- China Net Cloud
- Stefan Berder
- stefan.berder&chinanetcloud.com
-35147
- Wishfi Pte. Ltd
- Einstein Lin
- elin&wishfi.com
-35148
- Technological Educational Institute of Piraeus
- Christina Avgerinou
- noc&teipir.gr
-35149
- NPO Lisco Ltd.
- Valeriy Novikov
- nvn&lisco.ru
-35150
- inno-networks
- shmulik bezalel
- shmulik&inno-networks.com
-35151
- Raiffeisen Bank Aval
- Oleg Ivanivskyi
- oleg.ivanivskyi&aval.ua
-35152
- AvroRAID
- Michael Stepanenko
- mistic&unixway.org
-35153
- Kynetics srl
- Andrea Zoleo
- andrea.zoleo&kynetics.it
-35154
- PowerShield Ltd.
- Paul Hectors
- paul&pwrshield.com
-35155
- IP Cube Co.,Ltd
- Eitaro Washio
- info&ip3.co.jp
-35156
- Unbit
- Roberto De Ioris
- info&unbit.it
-35157
- University of Manitoba
- Tony Wong
- atwong&umanitoba.ca
-35158
- Osaka International Educational Institution
- Yasuhiro Kanazuka
- kanazuka&oiu.ac.jp
-35159
- ITC MIKS, LLC
- Alexander Antonenko
- aga&itc-miks.com.ua
-35160
- Equicom
- Evgeny Kiselyov
- info&equicom.dp.ua
-35161
- Venturi S.R.L.
- Matteo Rocco Creati
- matteo.creati&gmail.com
-35162
- TeleOSS Consulting Ltd.
- Voravit Satitviriyakul
- voravit&teleoss.com
-35163
- OOO InfoTechService
- Axe Ilshat
- mysocks&inbox.ru
-35164
- Black Earth Consulting Ltd
- Matthew Seaman
- m.seaman&black-earth.co.uk
-35165
- Barid Al Maghrib
- Dr. Ahmed KADA
- kada&poste.ma
-35166
- E2E Networks Private Limited
- Ashish SHUKLA
- ashish.shukla&e2enetworks.com
-35167
- MPI Bremen
- Mathias Doehle
- mdoehle&mpi-bremen.de
-35168
- NT Services Ltd.
- Joe Lefort
- joe.lefort&neovia.com
-35169
- Sven Christel
- Sven Christel
- spam&chbln.de
-35170
- Bioptic Co., Ltd.
- Sanghyun CHOI
- shchoi&bioptic.com
-35171
- Cloudeva
- Hai Yun Zhao
- haiyunzhao&gmail.com
-35172
- Nordex
- Andreas Klaus
- aklaus&nordex-online.com
-35173
- Automobile Association "DreamCar"
- Igor Nagorny
- igor.nagorny&dream-car.ru
-35174
- PBS&J
- Brian Owen
- bdowen&pbsj.com
-35175
- TamKang University - Information Management Network Association
- Jodern Yap
- support&mis.im.tku.edu.tw
-35176
- Asavie Technologies Ltd.
- Tom Maher
- tmaher&asavie.com
-35177
- Control4
- John Epeneter
- jepeneter&control4.com
-35178
- MJV Tecnologia Ltda
- Kaoru Kishimoto
- kaoru.ronaldo&mjv.com.br
-35179
- danzuck
- Daniel Zuck
- iana&danzuck.ch
-35180
- Mark Domansky Consulting
- Mark Domansky
- mark&sagewolf.com
-35181
- Techubs Network
- Hui Kam Choi
- drchoi&techubs.com
-35182
- Aggregate Knowledge, Inc
- Igor Fedulov
- igor&aggregateknowledge.com
-35183
- Rob Haverkort BV
- Rob Haverkort
- rob.haverkort&rhbv.nl
-35184
- Kontorsplatsen Business Group AB
- Eddie Olsson
- eddie.olsson&kontorsplatsen.se
-35185
- PlainText s.r.o.
- Matus Svrcek
- svrcek&plaintext.sk
-35186
- Hiromasa Nara
- Hiromasa Nara
- hiromasa.51&gmail.com
-35187
- kunming ucrown network system (china) ltd. co
- chen li
- chenli&ucrown.com
-35188
- Eventide
- Richard Factor
- Rfactor&eventide.com
-35189
- Thermo Fisher Scientific Inc (formerly 'Thermo Electron LED GmbH')
- John Peduzzi
- john.peduzzi&thermofisher.com
-35190
- Trice Imaging, Inc. (formerly 'Great Connection')
- Martin Westin
- martin&triceimaging.com
-35191
- Applied Software Control Ltd.
- David Barker
- d.barker&ascman.co.uk
-35192
- Miracle Tan
- Miracle Tan
- miracle.tan&163.com
-35193
- MicroNet Video Technology Ltd.,
- Cang Lin
- lc&vip.sina.com
-35194
- Barclays Capital
- ilia solovey
- ilia.solovey&barclayscapital.com
-35195
- Rudraksha Technology Private Limited
- Dilip Srivastava
- dilip.srivastava&rtpl.co.in
-35196
- Demonware Limited
- Miroslaw Baran
- sys&demonware.net
-35197
- INTEGRA Software Systems
- Timothy J. Spires
- tspires&pobox.com
-35198
- Al-Madinah International University
- Mohamad Zaman Shahri
- zaman.shahri&mediu.edu.my
-35199
- DynCorp International LLC
- Ronald S. Merriman
- scott.merriman&dyn-intl.com
-35200
- ARIAL
- Vladislav Zhuravlev
- vzhuravlev&runway.ru
-35201
- Ochanomizu University
- Ayako Watanabe
- netadmin&cc.ocha.ac.jp
-35202
- TechniData AG
- Andreas Zurell
- bits-server&technidata.com
-35203
- squatlabs
- Alexander Meindl
- webmaster&squatlabs.com
-35204
- Younicos AG
- Michael Friedel
- friedel&younicos.com
-35205
- SIAG-OMC
- STEFANIA GRILLI
- s.grilli&siagomc.com
-35206
- AllDSP GmbH & Co. KG
- Jeroen van Waterschoot
- info&alldsp.com
-35207
- Dynamica s.r.l
- Roberto Chiappa
- info&dynamica.it
-35208
- Trubiquity GmbH
- Achim Trieselmann
- atrieselmann&trubiquity.com
-35209
- Fomento de Construcciones y Contratas, S.A
- Antonio Collar Alberola
- ACollar&fcc.es
-35210
- Bechtle AG
- Florian Zahn
- florian.zahn&bechtle.com
-35211
- North Point Technology LLC
- Bryan Bell
- email&nptllc.org
-35212
- dealnews.com, Inc.
- Daniel Beckham
- iana-oid&dealnews.com
-35213
- Sandbox Solutions
- Torsten Robert Kirschner
- torsten.kirschner&sandbox.no
-35214
- Agence pour l'Enseignement Français à l'Etranger
- Alexandre Duval
- alexandre.duval&diplomatie.gouv.fr
-35215
- ZAO "Begun"
- Alex Kuklin
- akuklin&begun.ru
-35216
- w-Ha
- Laurent Cloarec
- lcloarec&w-ha.com
-35217
- Adknowledge Inc
- Scott Kahler
- skahler&adknowledge.com
-35218
- Beemaster ICT
- Jeroen Peschier
- j.peschier&beemasterict.com
-35219
- FttX.nu
- Erkan Tuyen
- e.tuyen&fttx.nu
-35220
- Ioannes Co., LTD
- Igor Kulakov
- ioannes&yandex.ru
-35221
- S.C. InterData Systems S.R.L.
- Adrian Pitulac
- adrian&idsys.ro
-35222
- NewYork-Presbyterian Hospital - Radiation Oncology
- Hansen Chen
- hac9005&nyp.org
-35223
- Insight International Corporation
- Yoji Nakanishi
- Yoji.Nakanishi&insight-intl.com
-35224
- Langara College
- Jonathan Chui
- serveradmin&langara.bc.ca
-35225
- Shanghai HOWZONE Network Communication Device Co.,LTD
- ann zhou
- ann&how-zone.com
-35226
- Bureau Software Development Corporation
- John Bureau
- iana2bsdc&fastmail.fm
-35227
- OOO Nika Motors Holding
- Petrov Vladimir
- pvv&nikamotors.ru
-35228
- Commsquare BVBA
- Stefan Engels
- stefan&commsquare.com
-35229
- Intercard Services AD
- Kosta Velikov
- kosta.velikov&icard.bg
-35230
- Generic Sweden AB
- Håkan Sjöö
- hakan.sjoo&generic.se
-35231
- Arca Sistemi SCARL
- Michele Sandonini
- michele.sandonini&arcavita.it
-35232
- Imaging In Motion LLC
- David E. Mars
- david.mars&imaginginmotion.com
-35233
- WHITEBEARSOLUTIONS
- Ricardo Lorenzo Rodríguez
- ricardo.lorenzo&whitebearsolutions.com
-35234
- Computerized Assessments & Learning, LLC
- Stephen Spencer
- sdspence&caltesting.org
-35235
- Hargrove & Associates, Inc.
- Brian Seebacher
- brian&haiint.com
-35236
- Florian Rupp Ingenieur
- Johannes Florian Rupp
- mass&frupp.de
-35237
- KBJ JEDYNAK I WSPÓLNICY SPÓŁKA JAWNA
- Łukasz Krotowski
- pen.info&kbj.com.pl
-35238
- Novgorod Information and Analitical Centre
- Yuri Tarasov
- yuri-tarassov&niac.ru
-35239
- NetSieben Technologies INC.
- Andrew Useckas
- andrew&netsieben.com
-35240
- Beehivetesting
- Robert Schweighardt
- sepicrob&gmx.de
-35241
- Betz Stefan -- Webdesign & Computerservice
- Betz Stefan
- info&stefan-betz.net
-35242
- Cygnus Networks GmbH
- Dr. Torge Szczepanek
- info&cygnusnetworks.de
-35243
- Dorna Sports
- Tony Aguilar
- itsoftware&dorna.com
-35244
- Wojo
- Robert Wojciechowski
- robert&wojo.com
-35245
- Railcar Management, Inc
- Robert Wojciechowski
- robert.wojciechowski&rmiondemand.com
-35246
- OS Qingdao University
- Difan Zhang
- cheungtifan&gmail.com
-35247
- OpenDL Pty Ltd
- HONG CHEN
- hchen&opendl.net
-35248
- Serendio Inc
- Harsha Elchuri
- harsha&serendio.com
-35249
- ALTAMYS - Tiers de Confiance
- Pierre Emmanuel de POMPIGNAN
- pedepompignan&altamys.com
-35250
- Simply-Info
- Sebastien DAMAY
- simply-info&damay.eu
-35251
- AWIND Inc
- Pete Chou
- ptchou&awindinc.com
-35252
- SAM Electronics
- Jan Lausch
- hostmaster&marine-mail.com
-35253
- AixSolve GmbH
- Carsten Skopinski
- cs&aixsolve.de
-35254
- ZON Multimédia
- Rui Alexandre Pinto Ferreira
- rui.ferreira&zon.pt
-35255
- Mind Candy Ltd
- Ryan Conway
- ryan&mindcandy.com
-35256
- Iondale Information Services Limited
- Fabien Broquet
- fabien.broquet&iondalegroup.com
-35257
- Brisa Inovação e Tecnologia, SA
- Joaquim José Paiva Pereira
- joaquim.pereira&brisa.pt
-35258
- HEHA.ORG
- Owen Hau
- owen&heha.org
-35259
- Televersions LLC.
- Levente Tamas
- levi&televersions.com
-35260
- Rotkraut
- Rolf Krahl
- hostmaster&rotkraut.de
-35261
- Norwegian Defence
- Sturla Moller
- sturlam&gmail.com
-35262
- Versorgungs- und Verkehrsgesellschaft Saarbrücken mbH
- Bernd Kraus
- b.kraus&vvs-konzern.de
-35263
- Araneo Limited
- Nathan Ward
- nward&braintrust.co.nz
-35264
- TetraStorm Technologies
- Ragesh Krishna
- oid.admin&tetrastorm.com
-35265
- Eltex Enterprise, Ltd.
- Ivan Yeryomin
- ie&eltex.org
-35266
- EJJE, Lda
- Eduardo Correia
- mibs&ejje.eu
-35267
- Eten Technologies Inc.
- Allan Hsu
- allan_hsu&etentech.com
-35268
- ORESCO
- Ivan V Kvasnikov
- kvasnikov&oresco.ru
-35269
- Siemens AG Österreich, CMT (formerly 'Siemens AG Österreich, SIS SDE SVI OSS SAC')
- Werner Hornik
- werner.hornik&siemens.com
-35270
- Samji Eletronics Co., Ltd.
- Chungsoo Shin
- cavatina&samji.com
-35271
- micallef.fr
- David Micallef
- david&micallef.fr
-35272
- DEBID
- Hector Cano
- h.cano&debid.cat
-35273
- Jah'Z Interactive
- Sylvain Rossi
- sylvain.rossi&gmail.com
-35274
- CHU Angers
- M. Vallée Eric
- ErVallee&chu-angers.fr
-35275
- SMARIS s.r.o.
- Radomir Hornicek
- rhornicek&smaris.cz
-35276
- TopCoder, Inc.
- Travis Haas
- thaas&topcoder.com
-35277
- ZZ Dats Ltd
- Edzus Zeiris
- edzus&zzdats.lv
-35278
- Texas Communications Inc.
- Jacob Bachmeyer
- oidcontact&texascom.com
-35279
- Singlenesia Software
- John Martin
- johnm&singlenesia.com
-35280
- QuickPlay Media, Inc.
- Torin Walker
- torinw&quickplay.com
-35281
- METRACOM
- Philippe SOLTYSIAK
- psoltysiak&metracom.fr
-35282
- Community Health Network
- Mark Kutin
- mkutin&ecommunity.com
-35283
- Pacific Blue Cross
- Jason Burrows
- jburrows&pac.bluecross.ca
-35284
- UROEP.COM
- Kim,Kihyeon
- kihyeon.kim&gmail.com
-35285
- Ministry of Administration and Interior - General Directorate for IT & C
- Marian Augustin Răducu
- marian.raducu&mai.gov.ro
-35286
- Johanniter-Unfall-Hilfe e. V. - Landesverband Baden-Wuerttemberg
- Dr. Robert Formanek
- it&juh-bw.de
-35287
- Mobile Metrics
- Asa Atallah
- admin&mobilemetrics.net
-35288
- Deep Web GmbH & Co KG
- Oliver Loch
- netadmin&deepweb.de
-35289
- Quative Limited
- Prabhu Subramanian
- prabhu.subramanian&quative.tv
-35290
- ptman.name
- Paul Tötterman
- tech&ptman.name
-35291
- Embvue
- Marc-Andre Boulais
- boulaisma&embvue.com
-35292
- Embedded Solutions Group
- Praveen Minumula
- praveen&dsrminc.com
-35293
- Collegium Josephinum Bonn
- Stefan Hanßen
- s_hansse&cojobo.net
-35294
- INETJ Communications, LTD
- Carl Gideon
- cgideon&inetj.com
-35295
- ExitPi
- Ryan Edgar
- random.oid-admin&exitpi.com
-35296
- Cyclone Microsystems Inc.
- Scott Coulter
- scott.coulter&cyclone.com
-35297
- orainf
- Remigiusz Boguszewicz
- remigiusz.boguszewicz&gmail.com
-35298
- dvsAnalytics, Inc.
- Rita Dearing
- rdearing&dvsAnalytics.com
-35299
- Universidad del Valle de Guatemala
- Steve Ortiz
- steve&uvg.edu.gt
-35300
- REGISTRO NACIONAL DE IDENTIFICACIÓN Y ESTADO CIVIL
- Fernando Francisco Veliz Fazzio
- fveliz&reniec.gob.pe
-35301
- Kvazar Test
- Ivan V Kvasnikov
- kvasnikov&gmail.com
-35302
- Outblaze Limited
- Howard Chui
- howardc&outblaze.com
-35303
- Velocity
- Rich Pawly
- admin&velocity.org
-35304
- Procube Ltd.
- Mitsuru Nakakawaji
- mitsuru&procube.info
-35305
- DB ELETTRONICA TELECOMUNICAZIONI SPA
- FELIZIANI GUGLIELMO
- fg&dbbroadcast.com
-35306
- Equinox Software, Inc.
- John Jones
- jjones&esilibrary.com
-35307
- Screwgun Logic
- Tyson Sommer
- register&screwgun-logic.com
-35308
- Koukaam a.s.
- Milan Rusek
- mrusek&koukaam.se
-35309
- am-cor inc.
- angus macdonald
- amm&am-cor.com
-35310
- Gaggle.Net, Inc.
- Chris Moates
- cmoates&gaggle.net
-35311
- ARANZ Medical Ltd
- Christopher Fairbairn
- chris.fairbairn&aranzmedical.com
-35312
- gabosh
- Oliver Bohlen
- olli&gabosh.net
-35313
- Spinnaker Web Design & Hosting LLC
- Eric Patterson
- epatterson&spinnakerweb.com
-35314
- Conergos GmbH & Co. KG
- Florian Hagedorn
- florian.hagedorn&conergos.de
-35315
- Wave Creative Technologies
- Lau Kwok Hung
- kh.lau&wave-creative.com.hk
-35316
- Schauer Hungaria Kft.
- Ferenc Sárközy
- f.sarkozy&schauer.hu
-35317
- Kolibri Systems B.V.
- Bart Cuperus
- bart.cuperus&kolibri-systems.com
-35318
- Kutztown University
- Lisa Frye
- frye&kutztown.edu
-35319
- Ingenu, Inc. (formerly 'On-Ramp Wireless, Inc.')
- Brandon Beam
- brandon.beam&Ingenu.com
-35320
- Università degli Studi di Torino
- Paola Laguzzi
- paola.laguzzi&unito.it
-35321
- Profitcomputing s.r.o.
- Daniel Vanco
- daniel.vanco&profitcomputing.com
-35322
- PJRC.COM, LLC
- Paul Stoffregen
- paul&pjrc.com
-35323
- Kliniken Nordoberpfalz AG
- Robert Dworschak
- iana&kliniken-nordoberpfalz.ag
-35324
- Edutel B.V.
- Dave Hellings
- noc&edutel.nl
-35325
- Universität Witten/Herdecke
- Christoph Peus
- postmaster&uni-wh.de
-35326
- University of Music and Drama Hannover
- Frank Meister
- frank.meister&hmt-hannover.de
-35327
- SMABTP
- Jean-Victor Balin
- jean-victor_balin&smabtp.fr
-35328
- BlueCrest Capital Management
- Stephen Gibbs
- stephen.gibbs&bluecrestcapital.com
-35329
- S. Walter Packaging
- David Tenney
- dtenney&swalter.com
-35330
- RRsat Global Communications Network
- Oded shor
- oded&rrsat.com
-35331
- Faculdade Natalense para o Desenvolvimento do Rio Grande do Norte
- Lineu Paiva
- lineu&farn.br
-35332
- Alticast Corp.
-
- Younggi Hong
- nari&alticast.com
-35333
- pk0
- Shuja Khan
- shuja&pk0.net
-35334
- Lamda Networks
- Uri Rotshtein
- uri&lamdasys.com
-35335
- Alion Science and Technology
- Matt Jacobs
- mjacobs&alionscience.com
-35336
- Lime Labs, LLC
- Jesse Callaway
- snmp&limelabs.com
-35337
- Primitives.lv
- Romans Krjukovs
- romans.krjukovs&gmail.com
-35338
- IMFirewall Software
- Bruce Geng
- Bruce_Geng&imfirewall.us
-35339
- Yambay Technologies Pty Ltd
- Paul Vowles
- paulv&yambay.com
-35340
- dustOS
- Mathias Kuester
- abstract&dustos.org
-35341
- Bundesamt f. Eich- und Vermessungswesen
- Eduard Täubl
- post.master&bev.gv.at
-35342
- American HomePatient
- Dave Morris
- ahp-pki&ahom.com
-35343
- Cairo University Hospitals
- El-Sayed Abdallah Ayoub
- drsayed&gmail.com
-35344
- Thales Defence Deutschland GmbH
- Axel Offt
- axel.offt&de.thalesgroup.com
-35345
- SRC d.o.o.
- Benjamin Orazem
- beno.orazem&src.si
-35346
- Northern Ireland Housing Executive
- Mark McNeilly
- mark.mcneilly&bt.com
-35347
- WuHan RenTang Information Limited
- SunQunYing
- whrtqa&qq.com
-35348
- RTQA Medical Limited
- Cheung Yu Ka
- rtqa&rtqa.com
-35349
- Takahashi Yusuke
- Takahashi Yusuke
- taka.yuu8917&gmail.com
-35350
- DS-Department
- Dmitrij V Sotarev (DvS)
- dvs&vtkp.ru
-35351
- Silver Sky Soft
- Kiran Kumar
- contact&silverskysoft.com
-35352
- A&R Carton
- Jörn Ehlich
- joern.ehlich&ar-carton.com
-35353
- Entry Point
- Maciej Dobrzanski
- reg.iana&entrypoint.pl
-35354
- Nintendo of America Inc.
- Bryan Irvine
- bryair01&noa.nintendo.com
-35355
- Intelliresponse Systems Inc
- Jon Barnett
- jon.barnett&intelliresponse.com
-35356
- Telezygology, inc.
- Mark Bisaillon
- M.Bisaillon&tz.net
-35357
- Garden State Health Systems
- Peter Bates
- pbates&gshsys.com
-35358
- Syntervision
- Greg Elmore
- greg.elmore&syntervision.com
-35359
- Fensom System S.L.
- Francisco J. Lazur
- fjlazur&fensomsystem.com
-35360
- ZODIAC Data Systems GmbH
- Thomas Otten
- thomas.otten&zodiacaerospace.com
-35361
- Newtel Engineering S.r.l.
- Diego Brocchi
- d.brocchi&newtel-eng.com
-35362
- Quill Training Systems Ltd
- Richard Dawson
- quilltraining&btconnect.com
-35363
- University of Huddersfield
- Peter Hutchison
- p.j.hutchison&hud.ac.uk
-35364
- Seattle Children's Hospital
- Mike Kindle
- Mike.Kindle&seattlechildrens.org
-35365
- Schroff Technologies International, Inc
- David Therrien
- david.therrien&schrofftech.com
-35366
- ChengDu OuRuan Corp., Ltd.
- Yu Su
- suyu.oursoft&gmail.com
-35367
- ITL, LLC
- Roberto Schipp
- rschipp&itl-llc.com
-35368
- doubango
- Diop Mamadou
- diopmamadou&yahoo.fr
-35369
- 3iMedia GmbH
- Frank Schmidt
- swyx&3imedia.de
-35370
- natnat inc.
- Aldwin Panganiban
- aldwin.p&gmail.com
-35371
- Infocore.Inc
- Hai Wang
- wanghai&infocore.cn
-35372
- Daniel Clark
- Daniel Clark
- clarkddc&gmail.com
-35373
- Slovak Telekom, a.s.
- Miloslav Lehotský
- miloslav.lehotsky&st.sk
-35374
- Universidade Federal do Espirito Santo
- Hans-Jorg Andreas Schneebeli
- diretor.geral&npd.ufes.br
-35375
- UAB "Mano numeris"
- Ričardas Pocius
- ricardas.pocius&numeris.lt
-35376
- SOFTWAY MEDICAL
- David BARRE
- dbarre&waid.fr
-35377
- Funkwerk IP-Appliances GmbH
- Frank Eberle
- support&packetalarm.com
-35378
- Antwerpse Waterwerken
- Joris Mertens
- jmertens&aww.be
-35379
- ISiS Papyrus Software AG
- Max Pucher
- info&isis-papyrus.com
-35380
- Rogers Broadcasting Ltd. - Vancouver Television
- Nathan Pachal
- nathan.pachal&rci.rogers.com
-35381
- Informatikos ir rysiu departamentas prie Lietuvos Respublikos vidaus reikalu ministerijos
- Alvyda Pupkoviene
- alvyda.pupkoviene&vrm.lt
-35382
- EuPathDB Bioinformatics Resource Center
- Mark Heiges
- it&apidb.org
-35383
- Swissfram SRL
- Jose Luis Franzen
- josefranzen&gmail.com
-35384
- International Social Security Association
- Pascal Tetard
- tetard&ilo.org
-35385
- Far Systems SpA
- Andrea Turso
- andrea.turso&farsystems.it
-35386
- Neverfail Group
- Ian Brown
- ibrown&neverfailgroup.com
-35387
- Ning
- Mike Svoboda
- ops&ning.com
-35388
- Beyel
- Rainer Beyel
- rainer&beyel.de
-35389
- KIWIGRID
- Joerg Eichhorn
- joerg&kiwigrid.com
-35390
- Credoc services CVBA
- Kristof Goossens
- itservicedesk&credoc.be
-35391
- HealthTrio, LLC
- Connie Lagneaux
- connie.lagneaux&healthtrio.com
-35392
- sepox.de
- Oliver Kahr
- hostmaster&sepox.de
-35393
- Blue Vervet Ltd
- Dan Hulsmann
- dan&bluevervet.com
-35394
- SuKaiTek
- Barnaby J Astles
- bjastles&gmail.com
-35395
- PT. Prima Teknologi
- Fendy Riyanto
- fendy&primateknologi.com
-35396
- ZAO Intercross
- Elinskiy Igor
- gushin&intercross.ru
-35397
- x-fabric GmbH
- Roman Puls
- info&x-fabric.com
-35398
- IDKAYA
- Thierry Caminel
- tcaminel&idkaya.com
-35399
- CeNetMon
- Yaroslav Shcherbakov
- info&cenetmon.net
-35400
- Noumenon, LLC
- Steve Berglie
- sberglie&noumenon.us
-35401
- ElectroLink Srl
- Mirko Pettinelli
- ufficiotecnico&electrolink.com
-35402
- Internet Connectivity Group, Inc
- Marty Bernal
- mbernal&icginfo.com
-35403
- Hochschule Mittweida
- Matthias Luehr
- luehr&hs-mittweida.de
-35404
- Beijing C&W Optical Communication Technology Co.,Ltd.
- Guo Huan
- gh&bcoc.com.cn
-35405
- Default Deny Security
- Phillip Hallam-Baker
- hallam&defaultdenysecurity.com
-35406
- RADiflow
- Rafi Horev
- rafi_h&radiflow.com
-35407
- BOUYGUES IMMOBILIER
- Olivier RADIX
- contactiana&bouygues-immobilier.com
-35408
- Ing. Roman Těšík
- Roman Těšík
- roman.tesik&gmail.com
-35409
- AccelOps, Inc.
- Partha Bhattacharya
- partha&accelops.net
-35410
- SOLIS - Cooperativa de Soluções Livres Ltda
- Niumar André Klein
- niumar&solis.coop.br
-35411
- Fortium Technologies Ltd
- Ceri Coburn
- ceri&fortiumtech.com
-35412
- CZ-MAN s.r.o.
- Roman Tesik
- roman.tesik&gmail.com
-35413
- GlideAround LLC
- Paul M Seigler
- pseigler&glidearound.com
-35414
- Molisoft grupo empresarial S.L.
- Miguel Molinos Muñoz
- Miguel.Molinos&molisoft.com
-35415
- Universitas Surabaya
- Gde Bagus Aryana
- sim&ubaya.ac.id
-35416
- DHD Deubner Hoffmann Digital GmbH
- Sven Hoffmann
- snmp&dhd-audio.de
-35417
- Randstad Deutschland
- Heiko Schmidt
- heiko.schmidt&de.randstad.com
-35418
- icub3d
- Joshua Marsh
- joshua&icub3d.com
-35419
- Electron, Ltd.
- Gushchin Vladimir
- info&electron-ru.com
-35420
- rtron
- Dennis Lee
- kwlee&r-tron.com
-35421
- ChinaScope Financial Limited
- Frank Liu
- it&chinascopefinancial.com
-35422
- Schweizer Paraplegiker-Zentrum
- Staub Bruno
- bruno.staub&paranet.ch
-35423
- berolina Schriftbild GmbH & Co. KG
- René Steffin
- r.steffin&berolina.de
-35424
- Viprinet GmbH
- Simon Ley
- ley&viprinet.com
-35425
- Mastery Technologies, Inc.
- Dave Lawson
- dlawson&masterytech.com
-35426
- The OpenSSH Project
- Damien Miller
- djm&openssh.com
-35427
- Data Turbine, Inc.
- Scott Schoenthal
- scott.schoenthal&dataturbine.com
-35428
- Sterling Computer Systems
- Lionel Johnson
- ljohnson&sterling1.com
-35429
- Limis
- Fabien Costard
- fabien.costard&limis.fr
-35430
- IntelligentWorks Co., Ltd.
- KITAMURA Hideyuki
- kitamura&intelligentworks.co.jp
-35431
- KAMFU Infomation & Technology Co., LTD.
- Xue Lihui
- xuelihui&gmail.com
-35432
- Superblock, LLC
- joshua stein
- jcs&superblock.net
-35433
- Connexion Technologies
- Joel Burgess
- joel.burgess&cnxntech.com
-35434
- Quadrant Newmedia Corp.
- Darren Widenmaier
- iana.oid&quadrant.net
-35435
- Anabasis Consulting Ltd.
- Lawrence Weeks
- lweeks&anabasis.net
-35436
- 01.com, Inc.
- Lawrence Weeks
- hostmaster&01.com
-35437
- SERPRO - Serviço Federal de Processamento de Dados
- Rodrigo Hjort
- rodrigo.hjort&serpro.gov.br
-35438
- ekom21 - KGRZ Hessen
- Carsten Scherb
- carsten.scherb&ekom21.de
-35439
- App B.V.
- Jeff Reiffers
- jeff&appsoftware.nl
-35440
- Faivre et Mahon
- Florian Mahon
- info&faivre-et-mahon.ch
-35441
- corporacion empresarial iunka
- Iurii Andamasov
- yuriy&iunika.net
-35442
- deZem GmbH
- Michael Bayer
- m.bayer&dezem.de
-35443
- Cat Consulting, Inc
- Beth Hunt
- info2&catconsulting.com
-35444
- Spectralnet Sollutions, LLC
- Kevin R. James
- kevin&spectralnetaz.com
-35445
- Information Security Service Digital United
- Chia Huan Wu
- willie&issdu.com.tw
-35446
- Connaught FactsLine Ltd.
- Gabriel Bixade
- gbix73&yahoo.com
-35447
- SeeByte Ltd.
- Stephane Chazelas
- postmaster&seebyte.com
-35448
- Video Location Service
- Sebastien Baguette
- iana-pen&sav-dnv.be
-35449
- Keytech BVBA
- Cedric Ghiot
- c.ghiot&keytech.be
-35450
- Storagedata
- Mark Ruijter
- mruijter&storagedata.nl
-35451
- Incenp
- Damien Goutte-Gattat
- dgouttegattat&incenp.org
-35452
- Commercial Bank DeltaCredit
- Alexander Kotkov
- itsecurity&deltacredit.ru
-35453
- DREAM TRAIN INTERNET, INC.
- Hiroshi TAKITA
- dti-nsg&dti.ad.jp
-35454
- Niometrics Pte Ltd
- Christos Ricudis
- ricudis&niometrics.com
-35455
- Tokyo Metropolitan Organization for Medical Research
- Toshi Akazawa
- ns-media&igakuken.or.jp
-35456
- Westway Nominees
- Justin Twiss
- justin.twiss&bekkers.com.au
-35457
- Infocomm Development Authority Of Singapore
- Lau Chee Kiong
- lau_chee_kiong&ida.gov.sg
-35458
- Dossot Networks
- David Dossot
- david&dossot.net
-35459
- LEMKO Corporation
- Chris White
- cwhite&lemko.com
-35460
- EDAXI UG (haftungsbeschraenkt)
- Jochen Schoenfeld
- js&edaxi.de
-35461
- Bernhard Dick
- Bernhard Dick
- bernhard&bdick.de
-35462
- Qingdao Hisense Media Networks LTD
- zhangfengxi
- fengxiboy&gmail.com
-35463
- EfiCode Oy
- Eija Virkkala
- hostmaster&eficode.fi
-35464
- Blues Point Partners Pty Ltd
- Peter Horne
- ph&bluespointpartners.com
-35465
- Bank Julius Baer & Co. Ltd.
- Sebastian Kowalski
- sebastian.kowalski&juliusbaer.com
-35466
- Forsway Scandinavia AB
- Edvin Lindqvist
- edvin.lindqvist&forsway.com
-35467
- OOO"SpinBrain"
- Nickolay Redin
- ya&spinbrain.com
-35468
- Kaunas University of Technology
- Marius Urkis
- marius.urkis&ktu.lt
-35469
- Seamless Distribution AB
- Radoslaw Kozlowski
- radoslaw.kozlowski&seamless.se
-35470
- First-Matrix
- Juan Meyer
- juan&first-matrix.com
-35471
- Johns Byrne Company
- Brett Gustafson
- brett.gustafson&johnsbyrne.com
-35472
- blichmann.de
- Christian Blichmann
- pen-request-iana&blichmann.de
-35473
- UNETCONVERGENCE
- Lee Jun Yong
- jylee&unetconv.co.kr
-35474
- TransMIT GmbH
- Michael Kröning
- Kroening&transmit.de
-35475
- Sprengnetter GmbH
- Markus Tondorf
- m.tondorf&sprengnetter.de
-35476
- The Overtis Group Limited
- Jeremy Barker
- jeremy.barker&overtis.com
-35477
- Dataram Corporation
- Jason Caulkins
- jcaulkins&dataram.com
-35478
- The UNIX Man Consulting, LLC
- Evan Cofsky
- evan&theunixman.com
-35479
- Academic Medical Center
- Ewald H. Beekman
- E.H.Beekman&amc.nl
-35480
- Kutak Rock LLP
- Jim Cook
- postmaster&kutakrock.com
-35481
- LightningIO
- Ben Kelly
- kibelan&gmail.com
-35482
- Image Soft Oy
- Matti Suuronen
- matti.suuronen&imagesoft.fi
-35483
- Exagate
- Dogan Erdogan
- dogan.erdogan&exagate.com
-35484
- Alphacom LLC.
- Aleksey Zhukov
- drdaeman&netwi.ru
-35485
- Derrick & Associates, Inc
- Michael Derrick
- tech&dnacorp.net
-35486
- Television New Zealand Ltd
- Mark Potter
- noc&tvnz.co.nz
-35487
- The Salvation Army USA Western Territory
- Doug Neely
- doug.neely&uss.salvationarmy.org
-35488
- The Corosync Cluster Engine Project
- Steven Charles Dake
- sdake&redhat.com
-35489
- Radiofid Ltd
- Nikita Nazarenko
- nnazarenko&radiofid.ru
-35490
- AGEPS - APHP
- Martin Hilka
- martin.hilka&eps.aphp.fr
-35491
- M.S. Projekt Management + Vertrieb GmbH
- Peter Siebertz
- mail&pmv-gmbh.de
-35492
- RheinLand Versicherungen
- markus schellen
- markus.schellen&rheinland-versicherungen.de
-35493
- EMBED-IT OG
- Marcello Presulli
- m.presulli&embed-it.com
-35494
- act750
- Frederic Duclos
- frederic.duclos&act750.com
-35495
- Arjo Wiggins Chartham Limited
- Malcolm Laws
- malcolm.laws&arjowiggins.com
-35496
- Interface Devices Ltd
- Vadim Govorovski
- vadim&interface-devices.com
-35497
- GenLan d.o.o.
- Sebastijan Sef
- info&genlan.si
-35498
- VDG Security BV
- Robin Hermann
- robin&vdg-security.com
-35499
- Stratos NZ Ltd
- David Liversidge
- david.liversidge&stratosglobal.com
-35500
- Aim co., Ltd.
- Takayuki Eimizu
- t-eimizu&aim.ac
-35501
- Access General Insurance Holdings
- John Zucco
- jzucco&accessgeneral.com
-35502
- BIGSSS
- Jakob Lenfers
- lenfers&bigsss-bremen.de
-35503
- CybersCube
- Victor Fang
- victor.fang&cyberscube.com
-35504
- Eitelwein Net
- Michael Eitelwein
- michael&eitelwein.net
-35505
- Lindenbaum GmbH
- Ahmad Masrieh
- iana-ext&lindenbaum.eu
-35506
- Streamezzo S.A.
- Cédric Gégout
- stz-server&streamezzo.com
-35507
- Ben Clifford
- Ben Clifford
- benc&hawaga.org.uk
-35508
- Addiva Engineering AB
- Mikael Sandberg
- mikael.sandberg&addiva.se
-35509
- C Squared Systems, LLC
- Chris Dallaire
- chris.dallaire&csquaredsystems.com
-35510
- Tecnicas De Soft, S.A.
- Antonio Rodriguez Fernandez
- antonio-rodriguez&tecnicasdesoft.es
-35511
- VirtualScopics
- Colin Rhodes
- colin_rhodes&virtualscopics.com
-35512
- OSSEra, Inc
- Fazhong Deng
- david_deng&ossera.com
-35513
- AixConcept GmbH
- Sebastian Fillinger
- sfillinger&aixconcept.de
-35514
- Liquidweb Inc
- Nick Cappelletti
- network&liquidweb.com
-35515
- KJ3 Elektronik
- Johan Johansson
- johan&kj3.net
-35516
- Suomen Teollisuusosa Oy
- Harry Flink
- to-steo-from-iana-about-pen&steo.fi
-35517
- Shernet
- Adam Sher
- adam&shernet.net
-35518
- Bay Talkitec Private Limited
- Krishnamoorthy Raghunath
- raghu&baytalkitec.com
-35519
- Maldives Monetary Authority
- Shawn Rasheed
- shawn&mma.gov.mv
-35520
- Video Clarity
- Blake Homan
- blake&videoclarity.com
-35521
- Entimo AG
- Sven Prasse
- pr&entimo.de
-35522
- Comelit Group SpA
- Luca Ceresoli
- luca.ceresoli&comelit.it
-35523
- Phillips and Jordan, Inc.
- David Deal
- ddeal&pandj.com
-35524
- phgamers
- Joshua Garcia
- josh&phgamer.net
-35525
- DirectStreams
- Yvan BARTHÉLEMY
- ybarthelemy&direct-streams.com
-35526
- Foundata GmbH (formerly 'ikt.werk GbR')
- Andreas Wolf
- mail&foundata.net
-35527
- FlexRadio Systems
- Stephen Hicks
- steve&flex-radio.com
-35528
- ADLANTIA
- Jesus Broceno
- jesus.broceno&adlantia.com
-35529
- Evony LLC
- Kean Johnston
- kean&evony.com
-35530
- TJK Tietolaite Oy
- Tero Kankaanpää
- tero.kankaanpaa&tietolaite.com
-35531
- Contato Global Solutions
- Paulo Ricardo Bruck
- paulobruck1&gmail.com
-35532
- ACSYS BSC Sp. z o.o.
- Jacek Grundland
- jg&acsys.com.pl
-35533
- Axecta Inc.
- Thanh Chiem
- ThanhChiem&axecta.com
-35534
- ettex GmbH
- Helmut Fritsche
- fritsche&ettex.de
-35535
- NanVPN
- Hucheng Zhang
- administrator&nanvpn.net.ru
-35536
- Systems in Progress GmbH
- Andreas Landgraf
- alandgraf&sip.co.at
-35537
- TeMeno GmbH
- Volker Gebhardt
- vg&temeno.de
-35538
- TeleTrader Software AG
- Robert Zeller
- robert.zeller&teletrader.com
-35539
- Micros Systems, Inc.
- James T. Walsh
- jwalsh&micros.com
-35540
- M/s. Varun Infosys
- Guntagani Vimal Kumar
- vimal&varuninfosys.in
-35541
- Oesterreichische Elektrizitaetswirtschafts-AG
- Rudolf Mitterhuber
- admin&verbund.at
-35542
- Lucas sarl
- Christian Lucas
- cl&lucas.lu
-35543
- Novaworx
- Kevin Callaghan
- webmaster&novaworx.com
-35544
- Jas. Quinn & Son
- James L. Quinn, Jr.
- jquinnjr&jasquinn.com
-35545
- Robot Lda.
- Filipe Rosa Ferreira
- layer3&robot-lda.pt
-35546
- EBS S.R.L.
- Rossi Massimo
- massimo.rossi&tin.it
-35547
- CA DiKey Ltd
- Andreevskih Yuriy
- pravo&distate.ru
-35548
- KNI Technical Consulting Ltd.
- Zsolt Kendi
- kni&mail.datanet.hu
-35549
- E-Disp DA
- Björn T. Nöstdahl
- bjorn.nostdahl&nostdahl.com
-35550
- Leith Brandeland
- Leith Brandeland
- leith.brandeland&gmail.com
-35551
- Conchus
- Guy Gershoni
- guy&conchus.com
-35552
- COMGuide Co.,Ltd.
- Seiji Sanagi
- info&comguide.co.jp
-35553
- Internet Hypermarket Ltd.
- Dmitry Stremkouski
- stremkouski&dostavka.ru
-35554
- CorSsys
- Eugene Zaitsev
- zaitsev_ee&corssys.ru
-35555
- Infinities Within
- Alec Lanter
- alec&infinities-within.net
-35556
- OdysSloot
- Sander van der Sloot
- odyssloot&gmail.com
-35557
- Nyadendis Enterprices
- Felix Okoth
- admin&nyadendis.com
-35558
- IT-INTEGRATION - SOLUÇÕES INTEGRADAS EM TECNOLOGIA DA INFORMAÇÃO LTDA ME
- Alex Sobral de Freitas
- projetos&itin.com.br
-35559
- Shanda Interactive Entertainment Limited
- Ke Ze Zhou
- zhoukeze&snda.com
-35560
- Dnspod
- Wang Fei
- wangfei&dnspod.com
-35561
- NetDialog International B.V.
- Tim Ruhl
- iana-pen&netdialog.eu
-35562
- Service Elements
- David Smith
- davidsm&selements.com.au
-35563
- saladisdead.com
- Aaron Angel
- aja&saladisdead.com
-35564
- Universidad Catolica Andres Bello
- Rafael Andara
- randara&ucab.edu.ve
-35565
- Koozyt, Inc.
- Mr. Atsushi Shionozaki
- snmp-admin&koozyt.com
-35566
- trammell.ch
- Brian Trammell
- brian&trammell.ch
-35567
- CME Group
- Bryan Green
- bryan.green&cmegroup.com
-35568
- Beth Israel Deaconess Medical Center
- Jacob Hesterman
- hesterman&invicro.com
-35569
- A-dec Inc.
- James Ward
- james.ward&a-dec.com
-35570
- Travel Tripper LLC
- Michael V Spoonauer
- michael&traveltripper.com
-35571
- LU-Hosting
- Leo Unglaub
- leo&leo-unglaub.net
-35572
- Arends IT+TK
- Gerrit Arends
- gerrit.arends&arends-itk.net
-35573
- sitel
- Itay Moav
- itay.moav&email.sitel.org
-35574
- Dambach-Werke GmbH
- Alex Gottschalck
- alex.gottschalck&dambach.de
-35575
- ByteSource Technology Consulting GmbH
- Alexander Penev
- contact&bytesource.net
-35576
- Ailux S.r.l.
- Giacomo Vianelli
- giacomo.vianelli&ailux.eu
-35577
- LivingData Gesellschaft für angewandte Informationstechnologien mbH
- Michael Rieck
- michael.rieck&livingdata.de
-35578
- Southern Telecommunications Company
- Artem Alimov
- a.alimov&mail.stcompany.ru
-35579
- Super Group Trading (Pty) Ltd
- Adam Orpen
- adam&supergrp.com
-35580
- Technisys, Inc.
- Tom Mirochna
- tmirochna&tsys-inc.com
-35581
- Linct
- Thomas Andrews
- iana-admin&grok.co.za
-35582
- mTrust, s. r. o.
- Ing. Vladimír Popík
- vladimir.popik&mtrust.sk
-35583
- Drizzle
- Edward Konetzko
- konetzed&quixoticagony.com
-35584
- BANK AL MAGHRIB
- FAIK Hicham
- h.faik&bkam.ma
-35585
- Intelcan Technosystems Inc.
- Hector Nunez
- hectorn&intelcan.com
-35586
- Competentum
- Pavel Bondarenko
- iana&competentum.ru
-35587
- White Birch Paper division Papier Masson
- Marc Côté
- marccote&papiermasson.com
-35588
- ndl.kiev.ua
- Alexander Tsvyashchenko
- ndl&ndl.kiev.ua
-35589
- Confederación Pirata (formerly 'Partido PIRATA')
- Rafa Couto
- rafacouto&confederacionpirata.org
-35590
- Convergent Communications, Inc
- Mike Knoblock
- mknoblock&ccinet.us
-35591
- Limited Liability Company "Mejregiongaz "
- Pusev Alexsey V.
- u6000025&mrg.gazprom.ru
-35592
- FiberSensing S.A.
- José Sá
- jose.sa&fibersensing.com
-35593
- Thales / Rockwell Collins
- James Brokenbek
- jebroken&rockwellcollins.com
-35594
- iCOMcept GmbH
- Sven Schoenfelder
- schoenfelder&icomcept.de
-35595
- distributedmatter.net
- Bruno Harbulot
- iana&distributedmatter.net
-35596
- Innovid Co., Ltd.
- Jeongseok Kim
- jskim&innovid.co.kr
-35597
- "TeleMiks" UE
- Eugene Sheffer
- e.sheffer&mail.ru
-35598
- PIWorks Inc
- Baris Akpinar
- subscription&piworks.net
-35599
- Marketware
- Antonio Barros de Sousa
- asousa&marketware.eu
-35600
- TCC R&D GmbH
- Uwe Danzeglocke
- danzeglocke&tcc.de
-35601
- TransCanada Pipelines Ltd
- Rob Sealock
- rob_sealock&transcanada.com
-35602
- Syndetic Pty Ltd
- Ross Varnes
- ross.varnes&syndetic.com.au
-35603
- TIANJIN DEVISER ELECTRONICS INSTRUMENT CO.,LTD
- Cao Yuliang
- susan&deviser.com.cn
-35604
- Compal Broadband Networks Inc.
- Roy Huang
- roy_huang&compalbn.com
-35605
- Montani Webdevelopment + Strategie
- J.A. Vroegop
- jav&montani.nl
-35606
- ZAO NPC "KOMPYUTERNYE TECHNOLOGII"
- Alexandr Bondarenko
- komtex&perm.ru
-35607
- Wireless eSystems
- Casey Calloway
- ccalloway&irespond.com
-35608
- Answer Quick
- Mike Demoulin
- technical&answerquick.com
-35609
- AXIe Consortium, Inc.
- Robert George Helsel
- execdir&axiestandard.org
-35610
- Itel snc
- Alessandro Tomassini
- atomassini&itel.it
-35611
- SOFT PROJECT C.A.
- Jesús Lara
- jesuslarag&gmail.com
-35612
- Digital Mages
- Arthur Corliss
- corliss&digitalmages.com
-35613
- Linktrust
- Neil Liu
- liuhj&linktrust.com.cn
-35614
- ITK-Engineering
- Andreas Pfeiffer
- andreas.pfeiffer&itk-engineering.de
-35615
- Basilea Pharmaceutica Ltd
- Dirk Wacker
- itsecurity&basilea.com
-35616
- Deltanet AG
- Daniel Neff
- daniel.neff&deltanet.ch
-35617
- XtcN
- Richard Lamb
- slamb&xtcn.com
-35618
- Beanfield Technologies Inc.
- Brent Bloxam
- brent&beanfield.com
-35619
- Mittwald CM Service
- Frank Bergmann
- iana-pen&mittwald.de
-35620
- William Beaumont Hospitals
- Dale Thomas
- drthomas&smtpgw.beaumont.edu
-35621
- Patrick Kobly
- Patrick Kobly
- patrick&kobly.com
-35622
- Akaflieg Stuttgart
- Pascal Groß
- pascal.grosz&me.com
-35623
- stwalkerster.co.uk (formerly 'Albino Slug Studios')
- Simon Walker
- simon&stwalkerster.co.uk
-35624
- tuxad.com
- Frank W. Bergmann
- iana-pen&tuxad.com
-35625
- Vembu Technologies Private Limited
- S. Gopal Krishnan
- snmp&vembu.com
-35626
- CHONGQING JINGHONG HI-TECH CO.,LTD
- zonghua qin
- 13629731011&163.com
-35627
- Atera Networks LTD
- Oren Cohen
- oren&ateranetworks.com
-35628
- Unitas Network GmbH
- Joerg Deckert
- jdeckert&unitas-network.de
-35629
- PL-Grid
- Grzegorz Kosicki
- grzegorz.kosicki&wcss.pl
-35630
- Qube Technologies Sp. z o.o.
- Wojciech Kozerski
- wkozerski&qube.pl
-35631
- CyberTrans Japan
- Iftah Bratspiess
- iftah&web-silicon.com
-35632
- ntop
- Luca Deri
- deri&ntop.org
-35633
- Open Sistemas
- Fernando Monera
- sistemas&opensistemas.com
-35634
- Karl Wörwag Lack- und Farbenfabrik GmbH & Co. KG
- Klaus Fellmeth
- klaus.fellmeth&woerwag.de
-35635
- GFR Software Solutions AG
- Claude Strübin
- struebin&gfr.ch
-35636
- KION GROUP GmbH
- Markus Wintruff
- cns&kion-ims.com
-35637
- ubiqu access b.v.
- Boris Goranov
- boris.goranov&ubiqu.nl
-35638
- Flughafen Wien AG
- Gerald Schinagl
- g.schinagl&viennaairport.com
-35639
- Wydawnictwo Naukowe PWN S.A.
- Rafal Szmigiel
- rafal.szmigiel&pwn.pl
-35640
- Appareo Systems, LLC
- Paul Olson
- polson&appareo.com
-35641
- Universidad de los Andes
- Andres Holguin
- a-holgui&uniandes.edu.co
-35642
- Paneda AS
- Thomas Flølo
- thomas.flolo&paneda.no
-35643
- EURIX srl
- Decarlini Paolo
- decarlini&eurix.it
-35644
- Olson Consulting
- Paul Olson
- paulo&olson-consulting.com
-35645
- ZiChen Tech. Co. Ltd.
- Kevin Zheng
- kevin.z.y&163.com
-35646
- Arca Technologies S.r.l.
- Bruno Pastore
- b.pastore&arca.com
-35647
- Deposita Systems (Pty) Ltd
- Tristan Dopler
- tristan.dopler&deposita.co.za
-35648
- Broadband Solutions Technology Pty Ltd
- Buks Fouche
- support&b-s-t.co.za
-35649
- Direct Payment Solutions Limited
- Robert Li
- robert.li&paymentexpress.com
-35650
- Piratenpartei Schweiz
- Christian Häusler
- haeusler.christian&mac.com
-35651
- IHM P/S
- Erik Hansen
- eh&ihm.dk
-35652
- Informatique de Sécurité
- KAAG François
- support.informatique&ids-assistance.com
-35653
- DeltaWare Systems Inc.
- John Donahoe
- jdonahoe&deltaware.com
-35654
- HAUT COMMISSARIAT POUR LES REFUGIES HCR (UNHCR)
- Giovanni Meneghetti
- meneghet&unhcr.org
-35655
- Peak Solution GmbH
- Andreas Hechfellner
- a.hechfellner&peak-solution.de
-35656
- Brian Delaney
- Brian Delaney
- brian&briandel.ca
-35657
- PT. Bank BRI Syariah
- Zaldy Suhatman
- zaldy&brisyariah.co.id
-35658
- Health Info Net AG
- Andre Seiler
- andre.seiler&hin.ch
-35659
- «Baker Tilly Russaudit» Ltd.
- Alexander V. Samokhin
- samokhin&russaudit.ru
-35660
- 3Way Solutions
- Sebastián Alvarez
- salvarez&3way.com.ar
-35661
- NetworkIP
- Logan Ashby
- unixadmin&networkip.net
-35662
- Optrak Distribution Software Ltd
- Tim Pigden
- tim.pigden&optrak.co.uk
-35663
- State of Hawaii
- Todd Crosby
- todd.m.crosby&hawaii.gov
-35664
- PI-Embedded - Building Automation Community
- Janusz Piwek
- info&pi-embedded.de
-35665
- BroadBand Security, Inc.
- Sadaaki Tanaka
- pen&bbsec.co.jp
-35666
- Joint Stock Commercial Bank INVESTBANK Open-end JSC
- Maksim Kupriyanov
- max&granbank.ru
-35667
- Elimco Sistemas S.L.
- Emilio de Leon Cardenas
- edeleon&sistemas.elimco.com
-35668
- PEAK6 Investments, L.P.
- Luna Petrova
- lpetrova&peak6.com
-35669
- Advanced Integration Technology
- Iain Brown
- iain&aint.com
-35670
- Alberta Health Services
- Dale Runge
- Dale.Runge&AlbertaHealthServices.ca
-35671
- im3D S.p.A.
- Angelo Leto
- angelo.leto&i-m3d.com
-35672
- Bitnethic Srl
- Marco Bavassano
- marco.bavassano&bitnethic.it
-35673
- Bank Saint Petersburg
- Alexandr Sukhov
- aleksandr.i.suhov&bspb.ru
-35674
- Johan De Wit
- Johan De Wit
- johan&koewacht.net
-35675
- ZAP S/A Internet
- Daniel Checchia
- daniel.checchia&zapcorp.com.br
-35676
- ComPughTerWorx
- Michael Dean Pugh
- mdpugh&hotmail.com
-35677
- Envisionier Medical Technologies, Inc.
- Jeremy Brooks
- jbrooks&envisionier.com
-35678
- Clayster AB
- Peter Waher
- peter.waher&clayster.com
-35679
- GRITA
- Rémi TILLY
- remi.tilly&grita.fr
-35680
- AdGear Technologies Inc. (formerly 'Bloom Digital Platforms')
- Mina Naguib
- mina.naguib&adgear.com
-35681
- Zenith System Solutions
- Vikram Dhaddha
- vikramd&zenithss.com
-35682
- Technical University of Liberec
- Petr Adamec
- Petr.Adamec&tul.cz
-35683
- Hofmann-IT-Systeme Ingenieurbuero
- Florian Hofmann
- Hofmann&Hofmann-IT-Systeme.de
-35684
- Proserve B.V.
- Edwin van Vliet
- edwin&proserve.nl
-35685
- HELLUG
- Kargiotakis Georgios
- kargig&hellug.gr
-35686
- Brian Desmond Consulting, LLC
- Brian Desmond
- brian&briandesmond.com
-35687
- Proware Technologies Co., LTD
- Robin Cui
- robin.cui&proware.com.cn
-35688
- Hochschule Wismar - University of Applied Sciences - Technology, Business and Design
- Alexander Mahler
- alexander.mahler&hs-wismar.de
-35689
- Betfair
- Gerrard Geldenhuis
- gerrard.geldenhuis&betfair.com
-35690
- Indaal Information Management GmbH
- Juergen Lloyd
- juergen.lloyd&indaal.de
-35691
- Matthias Bonn it-consult
- Matthias Bonn
- info&mb-itconsult.de
-35692
- Headweb AB
- Johan Ström
- software&headweb.com
-35693
- Open-Future BVBA
- Johan De Wit
- johan&open-future.be
-35694
- Choosehelp.com
- Martin Schoel
- martin&choosehelp.com
-35695
- SITEM S.r.l.
- Alessandro Lugli
- alessandro.lugli&sitemnet.it
-35696
- NetScout Systems, Inc. (formerly 'Avvasi')
- Michael Gallant
- WATorders&netscout.com
-35697
- Ystrad Mynach College of Further Education
- RUSSELL TUCK
- itteam&ystrad-mynach.ac.uk
-35698
- Ldap.com.br
- Marcelo José Xavier
- marcelo.xavier&live.com
-35699
- Cummins Power Generation
- Greg Knowd
- greg.knowd&cummins.com
-35700
- Tyrian Technical Consulting
- Ben Bell
- nospam&tyriantech.com
-35701
- phpcoms
- chunguo li
- lichunguo&ceopen.cn
-35702
- NTO IRE-Polus, Ltd. (formerly 'Optical Components & Systems')
- Alexander Gutor
- sanya.gutor&gmail.com
-35703
- JSC DevLab
- Kolesnyk Oleksij
- 5akv&ukr.net
-35704
- SALUC
- THIERRY BRUYERE
- thierry.bruyere&saluc.com
-35705
- HWS Informationssysteme GmbH
- Bernd Scheurer
- support&hws-gruppe.de
-35706
- Guangzhou KingTeller Technology Co.,Ltd
- Leo Zeng
- zcw200&126.com
-35707
- S&P
- Steffen Löb
- pki&sup-sahlmann.com
-35708
- BOUYGUES CONSTRUCTION
- Bruce GARNIER
- B.GARNIER&bouygues-construction.com
-35709
- Unassigned
- Removed 2010-05-3
- ---none---
-35710
- Alcatel-Lucent, 4ESS
- Eugene Koeppe
- gene.koeppe&alcatel-lucent.com
-35711
- Sopinspace
- Gérald Sédrati-Dinet
- gerald.sedrati-dinet&sopinspace.com
-35712
- Master Translation and Technology Services Co.,Ltd.
- Zhang Yuanji
- zhangyj&mts.cn
-35713
- Information Management Services
- Brian Gibson
- gibsonb&imsweb.com
-35714
- kommtnoch.com
- Andreas Hergert
- andreas&kommtnoch.com
-35715
- Video Gaming Technologies
- Dan Milligan
- dan.milligan&vgt.net
-35716
- Action Without Borders
- Kenneth Maupin
- hostmaster&idealist.org
-35717
- DI Michael Kuen
- DI Michael Kuen
- Michael.Kuen&xudis.com
-35718
- Mississippi Gulf Coast Community College
- David Besancon
- david&mgccc.edu
-35719
- Shopping.com
- Arthur Yang
- artyang&shopping.com
-35720
- Infotrend Development
- Gilberto Mardegan
- gmardegan&infotrend.it
-35721
- Institute of Corporate Law and Corporate Governance
- Dmitry Mikhailov
- cio&iclg.ru
-35722
- Digital Nirvana
- Ned Chini
- nedchini&digital-nirvana.com
-35723
- SENSAIR Pty Ltd
- Peter Lissenburg
- peter&sensair.com
-35724
- Chenega Corporation
- Joseph Bedard
- hostmaster&chenega.com
-35725
- China Beijing TV Station
- sunliguo
- sunliguo&btv.com.cn
-35726
- China Guangdong Telepower Communication Technology Co.,Ltd.
- Shawn.Hong
- xxycat&163.com
-35727
- First Horizon National Corporation
- Preston Gilchrist
- inettech&ftb.com
-35728
- Scallable Technologies, Inc.
- Iurii Rashkovskyi
- yrashk&scallable.com
-35729
- Forssan Seudun Puhelin Oy / SurffiNET
- Asmo Porma
- hostmaster&fsp.fi
-35730
- iAd GmbH
- Juergen Kosel
- juergen.kosel&iad-de.eu
-35731
- abtis GmbH
- Thorsten Weimann
- info&abtis.de
-35732
- Ajuntament de Benicarló
- Josep V Taus Dieste
- correu.informatica&ajuntamentdebenicarlo.org
-35733
- VIDA Diagnostics Inc
- Angela Bryant
- angela&vidadiagnostics.com
-35734
- Lennart Jütte
- Lennart Jütte
- admin&rtjuette.de
-35735
- A9 SAS
- Antoine Brenner
- support&gymglish.com
-35736
- BZCToOn'S Network / RedJuice.fr SARL
- Réda Bourebaba
- support&bzctoons.net
-35737
- QA Cafe LLC
- Joseph McEachern
- support&qacafe.com
-35738
- abcwxy.com
- Tim Jones
- tjonesyhoo&yahoo.com
-35739
- Bowline Network Consulting, Inc
- Kevin Thompson
- kevin.thompson&bowlineconsulting.com
-35740
- SACD
- René LE MENER
- rene.le.mener&sacd.fr
-35741
- Chi-X Europe Ltd
- Adam Harm
- adam.harm&chi-x.com
-35742
- Neurosearch, Inc.
- Michael Hall
- michael.hall&neurosearch-usa.com
-35743
- Workonline Communications (Pty) Ltd
- Ben Maddison
- benmaddison&workonline.co.za
-35744
- D-Media Communication Tech
- Zinan Ren
- renzinan&gmail.com
-35745
- Marine Harvest ASA
- Jan Olav Skeie
- jan.olav.skeie&marineharvest.com
-35746
- Passepartout sa
- gianluigi nigro
- gianluigi.nigro&passepartout.sm
-35747
- FEDERALNOE AGENTSTVO ZhELEZNODOROZhNOGO TRANSPORTA
- Vladimir Folin
- admin&roszeldor.ru
-35748
- Switch++
- Amir Fuhrmann
- amir&switchpp.com
-35749
- Alsim
- Thierry LEBOURQUE
- t.lebourque&alsim.com
-35750
- Spring Wireless
- Alvaro Anton
- aanton&springwireless.com
-35751
- Linux Lunatix
- Stefan Marx
- stefan&linux-lunatix.org
-35752
- Supra net d.o.o.
- Aleksandar Šerbetar
- aleksandar.serbetar&supranet.hr
-35753
- Les Développements Durables
- Sébastien DUCOULOMBIER
- iana-pen&ldd.fr
-35754
- ON-AIR Systems Ltd.
- Miroslav Jeras
- miroslav.jeras&on-air-systems.com
-35755
- P-21 GmbH
- Thilo Heinermann
- thilo.heinermann&p-21.de
-35756
- inett GmbH
- Christian Baus
- christian.baus&inett.de
-35757
- Sonnection B.V.
- Rolf E. Sonneveld
- R.E.Sonneveld&sonnection.nl
-35758
- Stichting Diagnose Kanker
- Rolf E. Sonneveld
- R.E.Sonneveld&sonnection.nl
-35759
- Welkin Sciences, LLC
- Rex Shaffer
- rex.shaffer&welkinsciences.com
-35760
- Optical Access Networks Lab, Shanghai University
- Song Yan
- jylshm&126.com
-35761
- Center Parcs Europe
- Daan de Jongh
- daan.dejongh&centerparcs.com
-35762
- FMLOG, Swedish Armed Forces Logistics
- David Hedlund
- david.hedlund&mil.se
-35763
- Groupe Laurent
- GUNGOR Fatih
- fatih.gungor&groupe-laurent.com
-35764
- St. Lawrence College
- Michael Zeleny
- mzeleny&sl.on.ca
-35765
- zbits Unternehmensberatung GmbH
- Thomas Baumann
- tbaumann&zbits.de
-35766
- Killermann GdbR
- Herbert Killermann
- herbert.killermann&killermann.info
-35767
- University of Lodz
- Krzysztof Miodek
- oper&uni.lodz.pl
-35768
- GetWellNetwork, Inc.
- Bernd Nigmann
- bnigmann&getwellnetwork.com
-35769
- Wellogic
- Dan Powell
- dan&wellogic.com
-35770
- USIL Technology
- Cesar Loyola
- cloyola&usiltechnology.pe
-35771
- Hightech Payment Systems
- Radouane ELFITOURI
- radouane.elfitouri&hps.ma
-35772
- n@work Internet Informationssysteme GmbH
- Sascha Retzki
- retzki&work.de
-35773
- Arcturus Networks Inc.
- Michael Durrant
- mdurrant&arcturusnetworks.com
-35774
- Universal Electric Corporation
- Kevin Gearhart
- KGearhart&uecorp.com
-35775
- Rachitskiy Research and Development LLC
- Eugene Rachitskiy
- eugene&rachitskiy.com
-35776
- BlueNote Communications SA
- Arian Mares
- arian.mares&bluenote.ro
-35777
- Unique Solutions SA
- Iulian Dogariu
- iulian&uniques.ro
-35778
- RTC-LEASING OJSC
- Alexander Scherbachev
- sag&rtc-leasing.ru
-35779
- ican solutions private limited
- vivek vinod
- vivek&icanconnect.com
-35780
- OAO Tatneft
- Gazizov Almaz
- a_gazizov&tatneft.ru
-35781
- Matej Bel University Banska Bystrica
- Peter Kottman
- sekretariat&uakom.sk
-35782
- Universidad de Extremadura
- Ana Gallardo Gómez
- aigallardo&unex.es
-35783
- Nika Ltd
- Andrej Taran
- fant&nika.vin.ua
-35784
- ECKD GmbH
- Michael Mößinger
- technik&eckd.de
-35785
- Xcira, Inc.
- Tom Fleniken
- tomf&xcira.com
-35786
- Continuant Inc
- Aldo Febro
- aldof&continuant.com
-35787
- Computaris
- Dariusz Gorczynski
- dariusz.gorczynski&computaris.com
-35788
- Xolido Systems,S.A.
- Luis Carlos Ganso Mellado
- administracion&xolido.com
-35789
- Despegar.com, Inc.
- Gustavo Randich
- grandich&despegar.com
-35790
- ClearCorp
- Joan E. Jorden
- joan&clearcorp.biz
-35791
- IES Systems, Inc.
- John Stacey
- john.stacey&ies-us.com
-35792
- Rygl
- Ales Rygl
- ales&rygl.net
-35793
- Hirotech, Inc.
- Yoshiaki Hayakawa
- yhayakawa&hirotech.com
-35794
- Java Verified
- Martin Wrigley
- martin.wrigley&orange-ftgroup.com
-35795
- Actifio
- Ravi Kollipara
- ravi.kollipara&actifio.com
-35796
- Burda:IC GmbH
- Rene Henzinger
- henzinger&burda-ic.com
-35797
- Polska Telefonia Cyfrowa Sp. z o.o.
- Tytus Buńka
- tbunka&era.pl
-35798
- shack e.V.
- Christian Recktenwald
- iana-contact&shackspace.de
-35799
- Phmb Consulting
- Peter Brooks
- peter.h.m.brooks&gmail.com
-35800
- Uniconsult
- Bruno Pirajá Moyle
- bruno&uniconsult.com.br
-35801
- EIX Ltd
- Dr Eddie Insam
- edinsam&eix.co.uk
-35802
- Mobango Ltd
- Rocco Lucia
- ops&mobango.com
-35803
- Eucalyptus Systems Inc.
- Steven Fitzgerald
- administrator&eucalyptus.com
-35804
- Allgood Networks
- Guy Allgood
- guyallgood&netzero.com
-35805
- Athonet s.r.l.
- Andrea Agosti
- andrea.agosti&athonet.com
-35806
- Paul Milliken
- Paul Milliken
- iana&pmm.me.uk
-35807
- AJR Development
- Allan Rogers
- allan.rogers&mail.org
-35808
- SAR Elektronik A.S.
- Serdar Edgu
- serdar.edgu&sarelektronik.com
-35809
- Hosting Community
- Dmitriy Kirhlarov
- ext-coordinators&hostcomm.ru
-35810
- CDL PMO
- CALI RODRIGUEZ
- AFLCMC.HNAG.CDL&us.af.mil
-35811
- AMTANGEE Aktiengesellschaft
- Christian Roesner
- service&amtangee.com
-35812
- CANCOM IT Solutions GmbH
- Ginther Andreas
- andreas.ginther&cancom.de
-35813
- LinuxRulz
- Stephan Jauernick
- stephan48&linuxrulz.de
-35814
- Cordier Networks
- Robin Cordier
- mrjk.78&gmail.com
-35815
- QUADStor Systems
- Shivaram Upadhyayula
- shivaram.u&quadstor.com
-35816
- Shenzhen HY Amplitec Technology Co.,Ltd
- Yanwei Wang
- info&hyamplitec.com
-35817
- Giorik spa
- erminio canal
- prior.customers&gmail.com
-35818
- Azienda Feltrina s.p.
- erminio canal
- prior.customers&gmail.com
-35819
- Digithurst Bildverarbeitungssysteme
- Raimund Jakobsmeyer
- rja&digithurst.de
-35820
- RCS Kladno, s.r.o.
- Petr Paryzek
- Petr.Paryzek&rcs-kladno.net
-35821
- FBComputers s.r.l.
- Leonardo Centoventotto
- assistenza&fbcomputers.com
-35822
- V-Internet Operations, Inc.
- Shinji SATO
- sato&vio.co.jp
-35823
- HANGZHOU RICH INFO-TECH CO.,LTD
- Wenbin Liao
- archvile&sina.com
-35824
- Boll und Partner Software GmbH
- Tobias Roese
- tobias.roese&boll-und-partner.com
-35825
- INAX Corporation
- Masami Uchida
- domain-admin&isc.i2.inax.co.jp
-35826
- THALES AIR OPERATION
- Francois GIERSCH
- francois.giersch&thalesgroup.com
-35827
- Invengo Information Technology Co.,Ltd
- johnson.guo
- johnson.guo&invengo.com
-35828
- Entropia e.V.
- Eve Entropia
- info&entropia.de
-35829
- United Natural Foods, Inc.
- Richard Levy
- iana-pen&unfi.com
-35830
- ROFFET.com
- Nicolas Roffet
- nicolas-w&roffet.com
-35831
- ATECH MICROELECTRONIC SYSTEMS
- Robert Went
- r.went&amesystems.eu
-35832
- Open Horizont.Ltd
- Zoltan Markella
- zoltan.markella&openhorizont.com
-35833
- Deva Broadcast Ltd.
- Todor Ivanov
- office&devabroadcast.com
-35834
- Gozaimass
- Pascal VIVIEN
- pen.iana.org&gozaimass.fr
-35835
- iB Solution Corporation
- Satoshi HOSHINO
- info&ib-sol.co.jp
-35836
- China BraveFly Technology Co., Ltd.
- LiuZhiyong
- liuzy57&hotmail.com
-35837
- Mamat GmbH
- Rolf Mamat
- snmp&software-for-future.de
-35838
- Matrixx Software Inc.
- Luther Kitahata
- sysadmin&MatrixxSw.com
-35839
- Imagine One Technology & Management
- Jeffrey Farmer
- jeffrey.farmer&imagine-one.com
-35840
- Gyrus ACMI, Inc.
- Jonathon Oss
- jonathon.oss&gyrusacmi.com
-35841
- Agecodagis SARL
- Sébastien Judenherc
- sebastien.judenherc&agecodagis.com
-35842
- RamVZ
- Rouven Raudzus
- Rouven.Raudzus&gmx.de
-35843
- Sebastian Muszytowski
- Sebastian Muszytowski
- s.muszytowski&googlemail.com
-35844
- Stormont-Vail HealthCare
- Nathan Girard
- ngirard&stormontvail.org
-35845
- Heraklion Wireless
- Damianos Mylonakis
- danmylonakis&gmail.com
-35846
- Parsons
- Michael Pinkston
- michael.pinkston&parsons.com
-35847
- Greenbone Networks GmbH
- Lukas Grunwald
- info&greenbone.net
-35848
- Multipolaris Ltd.
- Andras Avar
- andras.avar&mp-i.hu
-35849
- Telefonica International Wholesale Services
- Fernando Sastre
- fernando.sastre&telefonica.com
-35850
- Horns And Hooves
- Deyev Vitaliy
- holms_html&ukr.net
-35851
- Abix Tecnologia
- Tulio Munhoz
- tulio&abix.com.br
-35852
- Spire Sciences LLC
- Peter Countryman
- peter.countryman&spiresciences.com
-35853
- Remote Enterprise Monitoring, Inc.
- Jorge Ventura
- jorge.araujo.ventura&gmail.com
-35854
- American Modern
- Richard Hartmann
- richard_hartmann&amig.com
-35855
- Dialog Semiconductor
- Heiko Schumann
- heiko.schumann&diasemi.com
-35856
- Berchtold Holding GmbH
- Joerg Friedrich
- Joerg.Friedrich&BERCHTOLD.biz
-35857
- AMARON BVBA
- Nico Vannieuwenhuyze
- nico&amaron.be
-35858
- The Goodyear Tire & Rubber Co.
- Shawn Leyden
- spleyden&goodyear.com
-35859
- Georgia-Pacific LLC.
- JENNIFER MOORMAN
- hostmaster&gapac.com
-35860
- Kvadroteh Ltd.
- George Kashperko
- george&academy.zt.ua
-35861
- CRAWFORD COMMUNICATIONS, INC
- Guangbin Liu
- gliu&mail.crawford.com
-35862
- Mobile Integration Workgroup
- Stephen Moody
- iana&mobileintegration-group.com
-35863
- WAMAJU LLC
- Matthew Juszczak
- group&wamaju.com
-35864
- Ales Hakl
- Ales Hakl
- ales&hakl.net
-35865
- Trivia Solutions B.V.
- Marcel de Kock
- marcel.dekock&trivia-solutions.com
-35866
- Eno, Inc.
- Sueo Kawai
- s-kawai&eno-inc.jp
-35867
- Prior srl
- Erminio Canal
- prior.customers&gmail.com
-35868
- Ater Belluno
- erminio canal
- prior.customers&gmail.com
-35869
- STB Broadcast
- Ulisses Barreto
- nandopina80&yahoo.com.br
-35870
- OpsWise Software Inc.
- Gwyn Clay
- gwyn.clay&opswise.com
-35871
- Cloupia
- Raju Datla
- info&cloupia.com
-35872
- huggla.com
- Reiner Schmidt
- reiner.schmidt&rs-consulting.de
-35873
- JDS Uniphase Corporation
- Judith Walker
- Judith.Walker&jdsu.com
-35874
- Action Packed Networks
- John K. Smith
- jsmith&actionpacked.com
-35875
- JX2 Technology Pty Ltd
- Zane Francis
- support&jx2.com.au
-35876
- WHITECODE,.LTD
- Jungwon Park
- jwpark&whitecode.co.kr
-35877
- High Technology Industries B.V. (formerly 'LEITNER AG - S.p.A')
- Dennis Kodde
- admin&high-technology-investments.com
-35878
- Conseil général de l'Aube
- Philippe RICARD
- philippe.ricard&cg10.fr
-35879
- WellDoc, Inc.
- Shariar Ghavami
- sghavami&welldocinc.com
-35880
- JSC "Mediafon"
- Mindaugas Jasiulis
- mindaugas.jasiulis&mediafon.lt
-35881
- Ionis group
- Jonathan Gnassia
- jonathan.gnassia&epitech.eu
-35882
- NTT DATA KYUSHU CORPORATION
- Masayoshi Setoyama
- setoyamam&nttdata-kyushu.co.jp
-35883
- VisualSoft Private Limited
- Aftab Sarwar
- aftab&visualsoft-inc.com
-35884
- Nethost s.r.o.
- Lukas Futera
- lukas.futera&nethost.cz
-35885
- VZ Holding AG
- Conradin Ragettli
- 666&crnet.ch
-35886
- Arise Telecommunications Ltd.
- Gunay Mazmanoglu
- gunay&arisetel.com
-35887
- Lucierna SLNE
- Juan Mahillo Alvarez
- juan.mahillo&lucierna.com
-35888
- DeadInkVinyl
- David L Kinney
- iana&deadinkvinyl.com
-35889
- ColumbiaSoft Corporation
- Tim Emerson
- temerson&columbiasoft.com
-35890
- Video-Flow ltd
- Adi Rozenberg
- adi.rozenberg&video-flow.com
-35891
- punctum Gesellschaft fuer Software mbH
- Dr. Georg Fischer
- punctum&punctum.com
-35892
- ELMEH GIU
- Dino Šepac
- dino.sepac&elmeh.hr
-35893
- Xelmo
- David Bauman
- sysadmin&xelmo.com
-35894
- Cognimatics AB
- Erik Södervall
- erik.sodervall&cognimatics.com
-35895
- Slackarea Internet Services
- Vincenzo Ingrosso
- expert&slackarea.net
-35896
- Concord Energy
- Jon Storchevoy
- jstorchevoy&ConcordEnergy.com
-35897
- Violin Memory, Inc.
- Ed Roskos
- roskos&vmem.com
-35898
- SYSTEREL
- Francois BUSTANY
- iana&systerel.fr
-35899
- Prism Clinical Imaging, Inc.
- Chad Neller
- production&prismclinical.com
-35900
- DuMont Net GmbH & Co. KG
- Ralf Fischer
- ralf.fischer&dumontnet.de
-35901
- Al-Quds University
- Marwan Rabie
- marwan&alquds.edu
-35902
- OpenHeadend
- Christophe Massiot
- cmassiot&openheadend.tv
-35903
- Bartonia Domain and Enterprises
- Ian J. Barton
- ian&bartonia.net
-35904
- MacroSAN
- Yinglan Shangguan
- shangguan.ms&gmail.com
-35905
- ACME-Cebul inc.
- Tomaz Cebul
- tomaz&cebul.eu
-35906
- Unister
- Enrico Popp
- enrico.popp&unister-gmbh.de
-35907
- CRV Natural
- Ricardo Frei Bruel
- ti&crvnatural.com.br
-35908
- Embrane, Inc.
- Marco Di Benedetto
- marcodb&embrane.com
-35909
- Horace Mann Educators Corporation
- William Fellner
- william.fellner&horacemann.com
-35910
- overnet.qc.ca
- Pascal Lalonde
- pen&overnet.qc.ca
-35911
- Mrezne Tehnologije Verso
- Dario Bosnjak
- dario.bosnjak&verso.hr
-35912
- Makedonijalek
- Momcilovic Dragan
- draganm&makedonijalek.com.mk
-35913
- Diputacion Provincial de Cáceres
- Juan Carlos Manzano Pérez
- juancman&dip-caceres.es
-35914
- Borea, Ltd.
- Klemen Porenta
- klemen.porenta&borea.si
-35915
- SERLI
- Laurent RUAUD
- laurent.ruaud&serli.com
-35916
- Orangehead Software
- Tommy Braas
- tommy&orangeheadsoftware.com
-35917
- kobisun.org Surdurulebilir Sunucu Sistemleri
- Kerem Erciyes
- root&kobisun.org
-35918
- ETON International co. ltd
- Seonggyu Lim
- saint&etonint.co.kr
-35919
- Funkwerk plettac electronics GmbH
- Ruediger Zapf
- r.zapf&plettac-electronics.de
-35920
- Sebastian Himberger Software
- Sebastian Himberger
- s.himberger&sebastian.himberger.de
-35921
- Alpha-Bit GmbH
- Alexander Muhl
- alexander.muhl&alpha-bit.de
-35922
- Backbase B.V.
- Remie Bolte
- ict&backbase.com
-35923
- Enthusia Consulting Ltd
- Olusegun S. Odujebe
- oodujebe&enthusiaconsulting.com
-35924
- IET-International Empire Traders
- Syed Wali Hasan Zaidi, Abdullah Salauddin
- projects&iet-group.com
-35925
- Warsaw Stock Exchange
- Paweł Czechowicz
- pawel.czechowicz&wse.com.pl
-35926
- Aguas de la Cuenca del Norte, S.A.
- Miguel Ángel Rodríguez Fernández
- mrodriguez&acuanorte.es
-35927
- Softfinança S.A.
- Pedro Anselmo
- pedro.anselmo&softfinanca.pt
-35928
- Wheaton College
- Steve Hopeman
- steve.hopeman&wheaton.edu
-35929
- Prodata Mobility Systems NV
- Peter Haijen
- peter.haijen&prodatamobility.com
-35930
- Radeks Medical Information Technologies Ltd
- Serdar Soydemir
- serdar&radeks.com
-35931
- Woasis Telecommunications Ltd.
- xiangdongwang
- xiangdong.wang&w-oasis.com
-35932
- JM Technology Inc.
- Toshiaki Shiwaku
- t.shiwaku&jmtech.co.jp
-35933
- Semiocast
- Paul Guyot
- ianaoid&semiocast.com
-35934
- OOO CPCR-Express
- George Zavyalov
- zavyalov_gg&cpcr.ru
-35935
- RAU-Stromversorgungen GmbH
- Werner Rau
- info&rau-strom.de
-35936
- Iconmobile GmbH
- Anton Popov
- it.adm&iconmobile.com
-35937
- Unassigned
- Removed 2015-03-19
- ---none---
-35938
- Omnibond Systems LLC.
- Boyd Wilson
- boydw&omnibond.com
-35939
- Original1 GmbH
- Sven Schiwek
- info&original1.net
-35940
- Neuhalfen
- Jens Neuhalfen
- iana&neuhalfen.name
-35941
- Mitsubishi UFJ Securities (USA), Inc.
- Kazutaka Abe
- kabe&us.sc.mufg.jp
-35942
- Uralchem
- Dmitry Ponomarev
- dmitry.ponomarev&uralchem.com
-35943
- Boerse Stuttgart
- Samir Gaertner
- systembetrieb&boerse-stuttgart.de
-35944
- Selecom
- Olivier Deblock
- odeblock&selecom.fr
-35945
- Swid
- Stephane Morucci
- contact&swid.fr
-35946
- SMG Co., Ltd.
- Nobuyuki Maki
- endosnipe&smg.co.jp
-35947
- SME Soluciones
- Antonio Aragón
- sme-soluciones&sme-soluciones.com
-35948
- Phoneytunes.com
- Manish Nema
- manish.nema&phoneytunes.com
-35949
- Vienna Symphonic Library GmbH
- Bernd Mazagg
- register&vsl.co.at
-35950
- eFolder, Inc.
- Peter Samuelson
- psamuelson&efolder.net
-35951
- XConnect Global Networks
- David Schwartz
- dschwartz&xconnect.net
-35952
- Sleevewerks BV
- Hans Verbrugge
- netmaster&sleevewerks.nl
-35953
- Chargetek, Inc.
- Ray Goodrich
- ray&chargetek.com
-35954
- VOD Pty Ltd
- Van Lisowski
- vl&vod.net.au
-35955
- Niigata University
- Kenji Mikawa
- mikawa&cais.niigata-u.ac.jp
-35956
- china wing technologies co.,ltd.
- wyvern wang
- wyvernw&139.com
-35957
- Donjin Communication Technology Co.Ltd
- Deepanker Tamta
- deepanker.tamta&donjin.com
-35958
- Vedekon
- Mikhail Zaitsev
- mz&vedekon.net
-35959
- TECHWAY S.A.S
- Elodie RIGAUDIERE
- support&techway.fr
-35960
- Drotposta Consulting Ltd
- Geza Simon
- sngeza&freemail.hu
-35961
- Christian Arnold
- Christian Arnold
- christian&arnold.schlittermann.de
-35962
- Pumpkin Heads Co.,Ltd.
- Shoichiro Sakaigawa
- nwadmin&pumpkinheads.jp
-35963
- k12 ITC, Inc.
- Brad Sandt
- sandtb&k12itc.com
-35964
- BeiJing CS&S HuaTech Info Tech Ltd
- LiYingyu
- yingyu_li_7&163.com
-35965
- Control Risks Group Ltd
- Michael Cherry
- Mike.Cherry&control-risks.com
-35966
- MBDA Italia SPA
- Matteo Calabrese
- matteo.calabrese&mbda.it
-35967
- AutoZone
- Stephen Agar
- irm.infosec&autozone.com
-35968
- TrustFabric
- Joe Botha
- joe&trustfabric.org
-35969
- Vidyo, Inc.
- Adi Regev
- adi&vidyo.com
-35970
- Planetsgroup
- Edvin Gacina
- egacina&planetsgroup.com
-35971
- Zaha Hadid Architects
- Simon Johns
- simon.johns&zaha-hadid.com
-35972
- Audaxis S.A.
- Eric Fesler
- eric&audaxis.com
-35973
- Fenazari
- Stefan Rådström
- admin&fenazari.se
-35974
- SnmpSoft Company
- Sergey Turlachev
- company&snmpsoft.com
-35975
- Healthsense, Inc.
- Dan Vatland
- dan.vatland&healthsense.com
-35976
- Herrmann EDV-Beratung
- Sascha Herrmann
- oid-reg&nvbi.de
-35977
- Reddog Chili
- David C. Biediger
- david.biediger&gmail.com
-35978
- Clearleap, Inc.
- Omar DeLara
- odelara&clearleap.com
-35979
- Gonow Tecnologia
- Rodrigo F. Trevisan
- rodrigo.trevisan&gonow.com.br
-35980
- vMonitor LLC
- Raed Abdallah
- raed&vmonitor.com
-35981
- isigma asesoría tecnológica, S.L.
- Chema López
- clopez&isigma.es
-35982
- HUMANNIX co., Ltd
- Jeoung-Hyun, Seo
- jhseo&humannix.com
-35983
- MADS B.V.
- Melvin Rook
- melvin.rook&mads.com
-35984
- Simbrella
- Adnan Akhundov
- adnan&simbrella.com
-35985
- SM CNS Corporation
- Murugavel Kumaravel
- k.murugavel&smcns.net
-35986
- KALKITECH
- Tomy Devasia
- tomy&kalkitech.com
-35987
- Sangoma Technologies
- Jean-Marc Legrand, eng.
- snmp.10.jlegrand_paraxip&spamgourmet.com
-35988
- Hiport srl
- Antonino Iaria
- noc&hiport.it
-35989
- Maranatha Christian University
- Wilfridus Bambang Triadi Handaya
- wilfridus.bambang&eng.maranatha.edu
-35990
- UK MOD DE&S
- Ian Burch
- desle-defstans&mod.uk
-35991
- Chesapeake Systems
- Terry Melton
- terry&chesa.com
-35992
- Christian Hain
- Christian Hain
- christian_hain01&gmx.net
-35993
- Syrus, Ltd.
- Ben Mills
- bmills&syrusinfo.com
-35994
- Intuix LLC
- Dmitry Kohmanyuk
- dk&intuix.com
-35995
- quidecco.de
- Isidor Zeuner
- iana&quidecco.de
-35996
- Datatek Applications Inc.
- Susan Stultz
- sstultz&datatekcorp.com
-35997
- Kath. Jugend St. Bruno
- Benedikt Schmitz-Rode
- webmaster&stbruno.de
-35998
- Universitat d'Andorra
- Aleix Dorca
- adorca&uda.ad
-35999
- E-Flamingo LLC
- Joel DeJesus
- dejesus.joel&e-flamingo.jp
-36000
- Host-Consultants
- Felix Bartels
- felix&host-consultants.de
-36001
- PJB Consulting
- Jakub Pjanka
- jakub&pjb.com.pl
-36002
- Taiji Computer Corporation Ltd.
- liqi
- liqi&mail.taiji.com.cn
-36003
- Techlan s.r.l.
- Simone Gasparini
- simone.gasparini&techlan.it
-36004
- Vitracom AG
- Ralph Majer
- majer&vitracom.de
-36005
- CSE s.c.a.r.l. Consorzio Servizi Bancari
- Ezio Faccioli
- sisunix&csebo.it
-36006
- VFT Telecom
- Mr. Nguyen Thai Ha
- hant&vft.com.vn
-36007
- Logikos, Inc.
- Stefan Kelley
- skelley&logikos.com
-36008
- Kelly Services, Inc.
- Jim Merrill
- jim.merrill&kellyservices.com
-36009
- 6connect, Inc.
- Aaron Hughes
- aaron&6connect.net
-36010
- lordgandalf
- Niels de Leeuw
- niels&lordgandalf.nl
-36011
- Commontime Ltd
- Neil Whitworth
- iana&commontime.com
-36012
- Oxford Life Insurance Company
- Terry Turner
- TerryTurner&Oxfordlife.com
-36013
- SMA Solar Technology AG
- Andreas Mueller
- sysadmin&sma.de
-36014
- Radio Free Asia
- David Baden
- badend&rfa.org
-36015
- SavillTech
- John Savill
- john&savilltech.com
-36016
- PROCERGS - Rio Grande do Sul State IT Company, Brazil
- Leonardo Reginin
- leonardo&procergs.rs.gov.br
-36017
- Huntsman Cancer Institute at the University of Utah
- Dennis Berry
- Dinny.Berry&hci.utah.edu
-36018
- RAAF Technology
- Rubin Simons
- rubin.simons&raaftech.nl
-36019
- die tageszeitung
- Norbert Thies
- norbert&taz.de
-36020
- PoC Oy Ltd.
- Erkka Marjakangas
- erkka.marjakangas&poc.fi
-36021
- IT Research Center LLP
- Rinat R Yamalutdinov
- yamalutdinov_r&itrc.kz
-36022
- rku.it GmbH
- Klaus Seeger
- klaus.seeger&rku-it.de
-36023
- Stichting Christelijke Hogeschool Windesheim
- Johan van der Molen
- ja.van.der.molen&windesheim.nl
-36024
- AltaSoft s.c.
- Emil Kruczek
- ekruczek&altasoft.com.pl
-36025
- Videopolis France
- Joern Berrisch
- jb&tvtrip.com
-36026
- GoldZone Web
- Gaëtan Trellu
- gaetan.trellu&gmail.com
-36027
- Methode Electronics
- Rex Park
- rpark&methode.com
-36028
- NoconaGeek
- Curtis Wood
- noconageek&gmail.com
-36029
- Medical Micrographics LLC
- Bryan Jennings
- bryan&medicalmicrographics.com
-36030
- Happyserver Ltd
- Michael Derringer
- michael&happyserver.co.uk
-36031
- Techsense Solutions Sdn Bhd
- Namran Hussin
- namran&techsense.com.my
-36032
- Promsvjazdizajn, OOO
- Maxim Krakovskiy
- kmm&promsd.ru
-36033
- Pak eVentures
- Muhammad Raza Saeed
- raza.saeed&confiz.com
-36034
- Kelvin Connect Ltd
- Meurig Sage
- alarmsupport&kelvinconnect.com
-36035
- Signe S.A.
- María José Martínez
- mariajose.martinez&signe.es
-36036
- DNA Oy
- Lasse Leppänen
- Lasse.Leppanen&dna.fi
-36037
- Folia a/s
- Rikke Ottesen
- ro&folia.dk
-36038
- Adif, Administrador de Infraestructuras Ferroviarias
- Rafael J. Mata Martin
- rmata&adif.es
-36039
- Estonian Internet Foundation
- Norman Aeg
- norman.aeg&eestiinternet.ee
-36040
- Ibetor, S.L.
- Mikel Nava
- mnava&ibetor.es
-36041
- KAMAZ Inc.
- Oleg Soroka
- soroka&kamaz.org
-36042
- LIAB ApS
- Mikkel S. Andersen
- info&liab.dk
-36043
- Athena Wireless Communications Inc.
- Warren Steffen
- wsteffen&athenawirelesscommunications.com
-36044
- UCC Pro GmbH (formerly 'NSSR.neT')
- Stefan Richter
- Stefan.Richter&UCCPro.ch
-36045
- Uma Electrotechnical Services
- Devendra Kumar Shukla
- devendrakumarshukla&gmail.com
-36046
- tdvine Co., Ltd
- SahngOh Jung
- sahngoh&tdvine.com
-36047
- Kadme AS
- Adalbert Michelic
- adalbert&kadme.com
-36048
- PUISSANCE +
- Francis DELPECH
- delpech&puissanceplus.com
-36049
- GGG Kft.
- Gaspar Pechy
- ukobold&ggg.hu
-36050
- Feed Your Head
- Wolfgang Hotwagner
- postmaster&feedyourhead.at
-36051
- TDM Consult GmbH
- Thorsten Marsen
- t.d.marsen&tdm-consult.com
-36052
- EdgeCast Networks, Inc.
- John Scharber
- john&edgecast.com
-36053
- Azka National for Information Technology
- Abdel Rahim Omer Ali
- abd&azka.com
-36054
- eVigilo Ltd
- Bronya Korolyova
- bronya&evigilo.net
-36055
- RadLogix Pty Ltd
- Mat Hudson
- info&radlogix.com
-36056
- AIDev LLC
- Alexei Isac
- alexei&aidev.org
-36057
- FreeSInno Network Technology Co.,Ltd
- Channer.lv
- channerlv&freesinno.com
-36058
- Beijing TopLink Technology Development Co., Ltd
- Hu Wen
- huwen&top-linkbj.com
-36059
- International Electric Supply Corp. (IESC)
- Sandeep Keni
- sandeep.keni&gexpro.com
-36060
- geek!daily
- Jim Meyer
- jim&geekdaily.org
-36061
- Amonics Ltd.
- Tsang Chi Wai
- dennis&amonics.com
-36062
- Integrius AB
- Christian Klemetsson
- christian.klemetsson&integrius.com
-36063
- NKIA Co.,Ltd.
- sungsoo yoo
- ssyoo&nkia.co.kr
-36064
- Zappware
- Erwin Peeters
- erwin.peeters&zappware.com
-36065
- Pionier - Polish Optical Internet
- Paweł Wolniewicz
- pawelw&man.poznan.pl
-36066
- Invensys/Triconex
- John Gabler
- john.gabler&invensys.com
-36067
- Timo Gerke
- Timo Gerke
- timo.gerke&alice-dsl.net
-36068
- UBIMET GesmbH
- DI Markus Lenger
- mlenger&ubimet.com
-36069
- Carbofos RU
- Andrey Rasskazov
- a.rasskazov&carbofos.ru
-36070
- Power Standards Lab
- Alex McEachern
- Alex&PowerStandards.com
-36071
- HerpEco LLC
- Jean-Francois Cayron
- jf&HerpEco.com
-36072
- Antares 611 LLC
- Jean-Francois Cayron
- jf&antares611.com
-36073
- ETECSA s.a.
- Hector Manuel Jacas Joa
- hector.jacas&etecsa.cu
-36074
- Dark Matter Labs Inc.
- Jeff MacMillan
- jm&darkmatterlabs.net
-36075
- TBWA\Chiat\Day
- Richard Kruszewski
- dns.billing&tbwachiat.com
-36076
- SAPO
- Marco Ramos
- mramos&co.sapo.pt
-36077
- Xilocore
- Richard Pressler
- richardp&allconnected.com
-36078
- RFVISION Co.,LTD
- Shin, Dong-Jin
- djshin&rfvision.kr
-36079
- Audaxis
- Charles KOPROWSKI
- cko&audaxis.com
-36080
- National Information Technology and Internet Agency
- Jovana Bujosevic
- jovana.bujosevic&rzii.gov.rs
-36081
- Clare Controls, Inc.
- Jim Hanna
- jim.hanna&clarecontrols.com
-36082
- Electronic Tele-Communications, Inc.
- Dean W. Danner
- snmp-admin&etcia.com
-36083
- Agility Logistics Pvt Ltd
- Naresh Kumar .A
- anaresh&agilitylogistics.com
-36084
- Electronic Classroom Of Tomorrow
- David Conrad
- david.conrad&ecotoh.net
-36085
- L-Card
- Pavel Sukortsev
- newstep&yahoo.com
-36086
- lamehost.it
- Marco Marzetti
- marco&lamehost.it
-36087
- MCIO Incorporated
- Aaron Brace
- abrace&mcio.org
-36088
- LinowSat
- Oliver Linow
- admin&linowsat.de
-36089
- SPARF
- Christopher L. Cousins
- clc-iana&sparf.net
-36090
- Remote Instruments
- Swee-Hong Tay
- sweehong.tay&remote-instruments.com
-36091
- SIS Group Pty Ltd
- Luke Iggleden
- admin&sisgroup.com.au
-36092
- NPP Ugpromavtomatizaciya
- Fursenko Anton
- anton&ugpa.ru
-36093
- Weifang Dongsheng Electronics Co., Ltd.
- gaozhiliang
- gaozhiliang_qust&126.com
-36094
- VVDN Technologies
- Selva Muthukumar
- selva.muthukumar&vvdntech.com
-36095
- Insighteck
- Ioan Salau
- ioan.salau&insighteck.com
-36096
- Adama University
- Mohammed Nuru Hassen
- mohammed.nuru&adama-university.net
-36097
- Unixwiz.net
- Stephen J. Friedl
- steve&unixwiz.net
-36098
- GoodForBusiness
- Dominic Marks
- dom&goodforbusiness.co.uk
-36099
- Hangmat
- Olivia Puraski
- iana-pen&hangmat.org
-36100
- WWF-UK
- Paul Beyer
- pbeyer&wwf.org.uk
-36101
- South Patron (formerly 'SMK Software')
- Durand Miller
- info&southpatron.com
-36102
- Paramatrix Technologies Pvt. Ltd.
- Raghu Prasad
- prasad.raghu.k&gmail.com
-36103
- Lan ETS
- Philippe Larouche
- plarouche&lanets.ca
-36104
- TraceSpan Communications
- Vladislav Goverdovsky
- info&tracespan.com
-36105
- Blue Corss Blue Shield of Massachusetts
- David Querusio
- David.Querusio&bcbsma.com
-36106
- Wraptastic, LLC (for http://rpm5.org)
- Jeff Johnson
- n3npq&mac.com
-36107
- Helen Marks Marketing Ltd
- Dominic Marks
- dom&goodforbusiness.co.uk
-36108
- Cooperative Resources International
- Rich Pinkall Pollei
- rpollei&crinet.com
-36109
- stellaware.de
- Malte Starostik
- info&stellaware.de
-36110
- Wannet Tecnologia da Informação LTDA.
- Rommel de Sene Trindade
- rommel.trindade&wannet.com.br
-36111
- INNOS Co., Ltd.
- cheolwoong kim
- support&innos.net
-36112
- Perceptive Software, Inc
- Michael Price
- michael.price&perceptivesoftware.com
-36113
- IQinVision
- Rochak Sharma
- rochak.sharma&iqeye.com
-36114
- Automazione e Sicurezza Ferroviaria
- Gianluca Sanna
- gianluca.sanna&ausif.it
-36115
- True Access Consulting SA
- Enilton Nascimento Jr.
- eniltonj&trueaccess.com.br
-36116
- Akrometrix, LLC
- Timothy Purdie
- Tpurdie&akrometrix.com
-36117
- Gustav R. Jansen
- Gustav R. Jansen
- gustav&umbriel.org
-36118
- Offshore Systems Ltd.
- Kenneth Lee
- ken.lee&osigeospatial.com
-36119
- Zer0.Tools IT Solutions
- Christopher Gabijan
- dbx0001&gmail.com
-36120
- Lemnisys
- Kale Blankenship
- kale&lemnisys.com
-36121
- Ebruit Ltd.
- Becht Richard
- becht.richard&ebruit.hu
-36122
- Designskolen Kolding
- Søren Grønning
- sgi&dskd.dk
-36123
- KORATEK
- SEHEE JANG
- asara1&hanmail.net
-36124
- Vinzenz Gruppe Krankenhausbeteiligungs- und Management GmbH
- Stefan Rausch-Schott
- stefan.rausch-schott&vinzenzgruppe.at
-36125
- secadm GmbH
- Christian Niessner
- iana-registry&secadm.de
-36126
- CCBill
- Jason Kirk
- general&ccbilleu.com
-36127
- The Ulyanovsk reg. Dept. of Treasury
- Vladimir Olejnik
- noc&simtreas.ru
-36128
- MobileTech Limited
- Mr. Raymond Fung
- raymondf&mobiletech.com.hk
-36129
- Institution des Chartreux
- Raphael RIGNIER
- r.rignier&leschartreux.com
-36130
- INDUSTEX S.L.
- Juan José Esplugues
- inf.juanjo&industex.com
-36131
- Orafol Europe GmbH
- Mario Czarny
- m.czarny&orafol.de
-36132
- woernhard.NET
- Maurice David Wörnhard
- maurice&woernhard.net
-36133
- Cartagena as
- Knut Eivind Handeland
- infrastructure&cartagena.no
-36134
- Tristan Navikrvicius
- Tristan Navikevicius
- tristan.navi&gmail.com
-36135
- Yet Another Linux Distro
- Tristan Navikevicius
- root&tristan.cz.cc
-36136
- Central Bank of the UAE
- Mohammed Shibili
- shibili&cbuae.gov.ae
-36137
- Rising Sun Pictures
- Simon Malessa
- snmp&rsp.com.au
-36138
- CENTRON COMMUNICATIONS TECHNOLOGIES FUJIAN CO.,LTD
- AnShan Wang
- ashan.wang&oa.centron.com.cn
-36139
- Fläkt Woods Group SA
- Lars J. Sandell
- lars.sandell&flaktwoods.com
-36140
- Funkwerk Information Technologies Karlsfeld GmbH
- Christian Trautsch
- christian.trautsch&funkwerk-itk.com
-36141
- Ubiquoss
- Gyunam Cho
- earl&ubiquoss.com
-36142
- ASTREA LA INFOPISTA JURIDICA SL
- Fernando M. Alamillo
- fernando.alamillo&astrea.cat
-36143
- dipswitch networks
- ben thielsen
- pen_admin&dipswitch.net
-36144
- NovaSparks
- Marc Battyani
- info&novasparks.com
-36145
- Alliance Healthcare
- Manuel Ruiz
- mruiz&alliance-healthcare.es
-36146
- Five Colleges, Incorporated
- John W. Manly
- jwmanly&amherst.edu
-36147
- Simrex Corporation
- Frank Neuperger
- frank&simrex.com
-36148
- Webproduce Corporation
- Hiroshi Nakamura
- wpc-se&primestage.net
-36149
- Argox Information Co., Ltd.
- Rick Chen
- rick_chen&argox.com
-36150
- ShenZhen MingWah AoHan High Technology Corporation Ltd.
- lixiang
- lixiang26&tom.com
-36151
- HM EI Zrt.
- Papp Botond
- papp.botond&hmei.hu
-36152
- Kulczyk Tradex
- Maciej Walczak
- walczakm&kulczyktradex.com.pl
-36153
- Beijing InHand Networks Technology Co,.Ltd
- Bai Bin
- baibin&inhand.com.cn
-36154
- Factor Power Inc.
- Eric Roman
- eric&factorpower.com
-36155
- US Army Surface Deployment and Distribution Command
- Jimmy Orona III
- jimmy.orona&us.army.mil
-36156
- m.a.x. Informationstechnologie AG
- Michael Luecke
- hostmaster&max-it.de
-36157
- gooseman.cz
- Jakub Husak
- sysadmin&gooseman.cz
-36158
- CoBlitz LLC
- Larry Peterson
- larry&coblitz.com
-36159
- Inphoria Corporation
- Will Townsley
- wt&inphoria.com
-36160
- OR-CZ spol. s r. o.
- Jan Pechanec
- jpechanec&orcz.cz
-36161
- Hills-Cook Outcomes Consulting Company
- David H. Cook, Ph.D., M.B.A.
- admin&dhcook.net
-36162
- Hardata
- Lucio Corral
- l.corral&hardata.com
-36163
- CC Services, Inc
- Tim Richards
- tim.richards&countryfinancial.com
-36164
- Videoswitch S.R.L.
- Marcelo Javier Indarramendi
- soporte&videoswitch.tv
-36165
- Learning Objects, Inc.
- Jessica Murray
- jmurray&learningobjects.com
-36166
- Cabela's
- Guy Anthony De Marco
- guy.demarco&cabelas.com
-36167
- BEWATEC Kommunikationstechnik GmbH
- Sebastian Ehlke
- ehlke&bewatec.de
-36168
- Jurkiewicz
- Jurkiewicz Jean-Marc
- jurkiewicz&orange.fr
-36169
- RSG Model Works
- Rodney Thayer
- rsgmodelworks&gmail.com
-36170
- KeeperOS
- Vojtech Suk
- vojta&wifipresl.cz
-36171
- Host Group of Companies Pty Ltd
- Paul Foote
- paul&hostnetworks.com
-36172
- Gorenje, d.d.
- Jure Šafarič
- ntadmin&gorenje.si
-36173
- Bob.sh
- Ken Barber
- iana-pen&bob.sh
-36174
- Chengdu Ethercom Information Tech.Co.Ltd
- TaoWanen
- taowanen&hc2008.com
-36175
- Sunspeedy Technology Co.,Ltd
- MuJie
- mujie&sunspeedy.com
-36176
- Huayuan Technology CO.,LTD
- Pingli Sui
- suipingli&hyetec.com
-36177
- AirSage Inc
- Jonathan Scott
- jscott&airsage.com
-36178
- Minetec Pty Ltd
- Midhat Bahtijarevic
- midhat.bahtijarevic&minetec.com.au
-36179
- Celerity Systems (Pty) Ltd
- Hugo Lombard
- sysadmin&celerity.co.za
-36180
- Baltic Amadeus infrastrukturos paslaugos
- Nerijus Sarnas
- n.sarnas&baip.lt
-36181
- PM Microwave Srl
- Antonio Sganzerla
- antonio.sganzerla&pmmicrowave.com
-36182
- ENYCA
- Raquel Gómez
- rgomez&enyca.es
-36183
- VMK RAUSCHER
- Patrick Rauscher
- p.rauscher&vmk-rauscher.at
-36184
- Wright Line LLC
- Jonathan Fuller
- jonathan.fuller&wrightline.com
-36185
- LVM Works
- Matt Marchione
- mmarchio&earthlink.net
-36186
- Hangzhou Prevail Optoelectronic Equipment Co.,LTD
- XI YU XI
- stanhangzhou&gmail.com
-36187
- LogicFactor
- Damian Boune
- dboune&logicfactor.com
-36188
- Plandata Datenverarbeitungsgesellschaft m.b.H.
- Constantin Gruber
- constantin.gruber&plandata.at
-36189
- BILGI GIS
- ERHAN CINAR
- erhanc&bilgigis.com
-36190
- Jiang Wenkai's Own LDAP
- Jiang Wenkai
- jiangwenkai1234&yahoo.com.cn
-36191
- otop AG
- Christian Gaul
- christian.gaul&otop.de
-36192
- xtendx AG
- Stu Thompson
- stu&xtendx.com
-36193
- KenBIT Koenig i Wspólnicy Sp.J.
- Marek Paradiuk
- mparadiuk&kenbit.pl
-36194
- it-proserv Projects & Services Ing. Karl Liepold
- Ing. Karl Liepold
- k.liepold&it-proserv.at
-36195
- Hedera Technology
- Antoine Castaing
- antoine.castaing&hederatech.com
-36196
- Kai-Media Co.
- Young-il, Lee
- yilee&kai-media.com
-36197
- Movius Interactive Corporation
- Jeff Woods
- jeff.woods&moviuscorp.com
-36198
- TheSpidersProject
- Richard Cuti
- TheSpidersProject&gmail.com
-36199
- Open Finance
- Radoslaw Burza
- rburza&open.pl
-36200
- Valtech
- Ingomar Otter
- ingomar&valtech.de
-36201
- NTV Broadcasting Company
- Sergey Slivin
- sslivin&ntv.ru
-36202
- Thomson Reuters
- Twan van Beers
- twan.vanbeers&thomsonreuters.com
-36203
- Namirial S.p.A.
- CLAUDIO GABELLINI
- simone&namirial.com
-36204
- Sysinforg Kft.
- Tamas Flamich
- tamasflamich&sysinforg.hu
-36205
- xhombee studios
- Bear Wadleigh
- bearlinux&gmail.com
-36206
- Stichting Revelation Space
- Koen Martens
- gmc&revspace.nl
-36207
- SYNERGY INFORMATION SYSTEMS INC.
- Lin Chin-Yin
- george&siscomm.com.tw
-36208
- Karl Storz
- Naveen Yenugu
- nyenugu&ksea.com
-36209
- RGazdi Kft.
- Tibor Szucs
- sz.tibor&rgazdi.hu
-36210
- Centre hospitalier de l'Université de Montréal
- Guy Fournier
- guy.fournier.chum&ssss.gouv.qc.ca
-36211
- The Catholic University of America
- Daniel Foerst
- foerst&cua.edu
-36212
- Research and Education Bridge Certification Authority, Inc.
- Benjamin T. Wilson
- ben&digicert.com
-36213
- SIA "INBOKSS"
- Jevgenijs Kuznecovs
- nimda&inbox.lv
-36214
- Galaxy Telecom Technologies Ltd
- Dawei Qi
- dqi&galaxytelecomms.com
-36215
- Greek Academic Network - GUnet
- Nikos Voutsinas
- nvoutsin&gunet.gr
-36216
- GoliathDNS ENK
- Atle Solbakken
- atle&goliathdns.no
-36217
- Ladela Interactive
- Serghey Trufkin
- serj&ladela.com
-36218
- Open Cloud Consultants, Inc
- Geoffrey Engerman
- pen-admin&opencloudconsultants.com
-36219
- Pipe Coaters Nigeria Limited
- Michele Malagnini
- michele.malagnini&pipecoatersnigeria.com
-36220
- FLACSO
- Norberto Bensa
- nbensa&flacso.org.ar
-36221
- Internet Brands, Inc.
- James Fuentes
- jfuentes&internetbrands.com
-36222
- QBS - Quality Business Software
- Hubert Kario
- hka&qbs.com.pl
-36223
- BeST (Closed Joint-Stock Company «Belarusian Telecommunications Network»)
- Vitaly Garbenkov
- Vitaly.Garbenkov&life.com.by
-36224
- Playphone Entretenimento LTDA
- Fernando de Castro Rahal
- fernando.rahal&playphone.com
-36225
- Secure Forward, LLC
- Kevin Peterson
- khp&secureforward.net
-36226
- Securus Technologies Inc.
- Brian Galyean
- BGalyean&SecurusTech.net
-36227
- bookmark.com
- Jack Wu
- jack&bookmark.com
-36228
- Dellus communication technologies Ltd.
- Mia Chan
- mia&dellus.com.cn
-36229
- TechStudio Solutions Pte Ltd
- Jesvyn Oon
- jesvyn.oon&techstudio.com.sg
-36230
- Axco Insurance Information Services
- Simon Bruce
- simon.bruce&axcoinfo.com
-36231
- semantics GmbH
- Jochen Rodewald
- j.rodewald&semantics.de
-36232
- Stig Johnsen IKT
- Stig Johnsen
- stig&sjikt.no
-36233
- Security Industry Supplies Pty. Ltd.
- Matthew Jones
- mij&sisdirect.com.au
-36234
- The Otto von Guericke University of Magdeburg
- Nataliya Kulyk
- nataliya.kulyk&ovgu.de
-36235
- Livedrive Internet Ltd
- Matthew Willcock
- admin&livedrive.com
-36236
- PointSharp
- Stefan Ullgren
- stefan.ullgren&pointsharp.com
-36237
- Application Solutions (Electronics And Vision) Ltd
- Craig Graham
- cgraham&asl-vision.co.uk
-36238
- oocero microsystems Unternehmergesellschaft (haftungsbeschränkt)
- Paul Emmerich
- paul.emmerich&mytum.de
-36239
- Live Oak Technologies LLC
- Theresa Wolf
- Terry.Wolf&LiveOakTechnologiesLLC.com
-36240
- ProBuild Holdings LLC
- Frank Johnson
- domainmaster&probuild.com
-36241
- Bankinter
- David Herraiz
- dherraiz&bankinter.es
-36242
- mep srl
- roberto cerfogli
- r.cerfogli&mepping.com
-36243
- Hollan Family
- Rene S. Hollan
- rene&hollan.org
-36244
- Linguamatics Solutions Ltd.
- Terry Stebbens
- od_operations&linguamatics.com
-36245
- EBO Group Inc.
- Zac Charlton
- zcharlton&ebogroupinc.com
-36246
- Ärztekammer Schleswig-Holstein
- Michael Stramm
- michael.stramm&aeksh.org
-36247
- ACAMS AS
- Kim Fredheim
- mail&acams.no
-36248
- HeadHunter
- Vadim Novik
- novik&hh.ru
-36249
- Green Cloud srl
- Gianmarco Gabrieli
- info&greencloud.it
-36250
- New York State Division of Criminal Justice Services
- David R. (Rod) Watterworth
- rod.watterworth&dcjs.state.ny.us
-36251
- Allgoodbits.org
- Duncan Hutty
- dhutty&allgoodbits.org
-36252
- PHARMATECHNIK GmbH & Co. KG
- Wolfgang Wendefeuer
- w.wendefeuer&pharmatechnik.de
-36253
- Customized InformSystems, Ltd
- Orlov Valentin
- sysadmins&custis.ru
-36254
- Brandon Associates
- John Grabiec
- jgrabiec&brandonassociates.com
-36255
- Geek Central
- Ian Reinhart Geiser
- geiseri&yahoo.com
-36256
- PRIMA Cinema, Inc.
- Nicholas Wehr
- noc&primacinema.com
-36257
- Givaudan SA
- Damien Lachuer
- damien.lachuer&givaudan.com
-36258
- ThreatGuard Inc.
- Gunnar Engelbach
- Support&ThreatGuard.com
-36259
- Callino
- Wolfgang Pichler
- wpichler&callino.at
-36260
- BioMarin Pharmaceutical Inc.
- Alan Fung
- afung&bmrn.com
-36261
- BD2000 Ltd
- Deepak Patel
- bd2000&talk21.com
-36262
- Meyertech Ltd.
- Paul Grossman
- paul.grossman&meyertech.co.uk
-36263
- EUROP ASSISTANCE SERVICIOS INTEGRALES DE GESTION S.A.
- JULIA GARCIA DE MINGO
- julia.garcia&europ-assistance.es
-36264
- Evaldo Gardenali
- Evaldo Gardenali
- evaldo.gardenali&gmail.com
-36265
- MAXBERT
- Miroslaw Grochowski
- miroslaw.grochowski&maxbert.pl
-36266
- Golden Gekko
- Sebastian Dahlgren
- sd&goldengekko.com
-36267
- Torsten Franke
- Torsten Franke
- mail&torstenf.de
-36268
- ComAbility
- Oleg Pogorelik
- oleg&comability.com
-36269
- Servicios de Consultoria Independiente S.L.
- Juan Domingo Sandoval Gonzalez
- sandoval&sci-spain.com
-36270
- JAEA
- Tetsuya Kuno
- ms-oid&jaea.go.jp
-36271
- StreamOcean inc.
- Li Cheng
- dennistocker&gmail.com
-36272
- Protacon Solutions Oy
- Lauri Laukkarinen
- lauri.laukkarinen&protacon.com
-36273
- Haas Elektro GmbH
- Peter Zednik
- peter.zednik&network.co.at
-36274
- Embedded Systems Technology Group
- James Leonard
- snmp&estg.com
-36275
- Communitake
- Ben Katz
- ben&communitake.com
-36276
- North Island Credit Union
- Tom Tanida
- ttanida&myisland.com
-36277
- UOL S.A.
- Marcelo Herrero
- l-tec-net&uolinc.com
-36278
- Protality Ltd
- Peter Robinson
- pete.robinson&protality.co.uk
-36279
- Uno Web Informação e Tecnologia Ltda
- Renato Magalhães
- contato&unoweb.com.br
-36280
- Basda Medical Apparatus Co.,Ltd
- ZhangShaobin
- zhangbin&basda.com.cn
-36281
- Beijing Boomsense Technology CO.,LTD.
- Young Guo
- guoyang&boomsense.com
-36282
- Monico Monitoring inc.
- Doyle Taylor
- doyle&monicoinc.com
-36283
- Lilee Systems, Inc.
- Wayne Kao
- kao&lileesystems.com
-36284
- Centre Psychothérapique de l'Ain
- Jean-Noël Perrimbert
- info&cpa01.fr
-36285
- Alliance Design WorkGroup
- Mario Weißmann
- mario.weissmann&a-d-w.net
-36286
- MIKROKLIMA s.r.o.
- Michal Dvorak
- dvorak&mikroklima.cz
-36287
- wTVision
- Alex Fraser
- alex.fraser&wtvision.com
-36288
- Editora del Mar S.A.
- Wilmer Aljure G.
- waljure&eluniversal.com.co
-36289
- AVM Informatique
- BARBIER Jérôme
- jerome.barbier&avm-informatique.com
-36290
- VeEX Inc
- Cyrille Morelle
- cmorelle&veexinc.com
-36291
- Signalion GmbH
- Matthias Henker
- matthias.henker&signalion.com
-36292
- kulthauskante e.V.
- Karsten Krispin
- info&kulthauskante.de
-36293
- Smartlink Network Systems Limited
- Deepak P Chodankar
- deepak.chodankar&smartlink.co.in
-36294
- MSO Link
- Tito Johnson
- tito&msolink.com
-36295
- Marubeni-Itochu Tubulars America, Inc.
- David Johnson
- david-johnson&mitube.com
-36296
- Mentor Solutions
- Ryan Geyer
- rgeyer&its.jnj.com
-36297
- DVM ITS
- Dmitry V. Mikhailov
- dvm&dvm.su
-36298
- Baustem Technologies Ltd.
- Xiaoli Li
- ally&baustem.com
-36299
- Ronix Systems
- Alexander Shinkarenko
- alexander&ronix.ru
-36300
- Intervale JSC
- Vasil Varabyou
- vvorobyov&intervale.ru
-36301
- URS Federal Services
- Dan Bartz
- dan_bartz&urscorp.com
-36302
- ARTiiS GROUP a.s.
- Libor Hřib
- libor.hrib&artiisgroup.cz
-36303
- AuthenTec Inc.
- Greg Kerr
- greg.kerr&authentec.com
-36304
- Kandcnet Inc.
- Kaoru Miyauchi
- miya&kandcnet.com
-36305
- WoSign CA Limited (formerly 'WoSign eCommerce Services Ltd.')
- Richard Wang
- ca&wosign.com
-36306
- University of Teesside
- UNIX Team (Bill Taylor)
- iana&scm.tees.ac.uk
-36307
- SONUMA
- Eric DENIS
- ed&sonuma.be
-36308
- txtNation Ltd.
- Mr Andy Pieters
- A.Pieters&txtNation.com
-36309
- Circadence Corporation
- Andrew Thigpen
- athigpen&circadence.com
-36310
- Firelands Regional Medical Center
- Steve Ayres
- ayress&firelands.com
-36311
- exthex GmbH
- Peter Danner
- peter.danner&exthex.com
-36312
- Alert Logic, inc.
- Tom Veronie
- tveronie&alertlogic.com
-36313
- GL Communications, Inc.
- Alan Revzin
- arevzin&gl.com
-36314
- Regional Court in Lublin
- Lukasz Glaz
- hostmaster&so.lublin.pl
-36315
- Joel Riedesel
- Joel Riedesel
- joel&joelriedesel.com
-36316
- Polar Power Inc
- Arthur D. Sams
- SALES&POLARPOWERINC.COM
-36317
- AVCOM Of Virginia, Inc.
- Chris Blyseth
- cblyseth&avcomofva.com
-36318
- Marathon Petroleum Company
- Joe Froelich
- externaldomainmgt&marathonpetroleum.com
-36319
- iT-CUBE SYSTEMS GmbH
- Thomas Fischer
- thirdlevel&it-cube.net
-36320
- 4Tel Pty Ltd
- Matthew Rechter
- mrechter&4tel.com.au
-36321
- Dirección Ejecutiva de la Magistratura
- Olaf Reitmaier Veracierta
- soporte_correo&tsj-dem.gob.ve
-36322
- semanticlab
- Albert Weichselbraun
- albert&semanticlab.net
-36323
- WynnIT Ltd
- steve wynn
- steve&wynnit.co.uk
-36324
- OpenRT
- Derek Dolney
- nospam&dolney.com
-36325
- IMAQLIQ Ltd.
- Konstantin Khitsko
- kkhitsko&imaqliq.com
-36326
- T. Gipp
- Torge Gipp
- torge.gipp&gmail.com
-36327
- 9Netics Inc.
- Fariborz "Skip" Tavakkolian
- skip&9netics.com
-36328
- Parvus Corporation
- David Draper
- ddraper&parvus.com
-36329
- Ohio Farmers Insurance Company
- Alan Willis
- linuxadmin&westfieldgrp.com
-36330
- Comwired, Inc.
- Deven Phillips
- deven&dns.com
-36331
- Social & Scientific Systems
- Kenneth White
- kwhite&s-3.com
-36332
- Coast360 Federal Credit Union
- Cody Flis
- systems&coast360fcu.com
-36333
- Wilshire Media Group
- Ian Geoghegan
- ian&wilshiremedia.com
-36334
- Dialog Information Technology
- Rob Ruxton
- rob_ruxton&dialog.com.au
-36335
- aceway telecom co.,Ltd
- Sun Hongmei
- sunhm&aceway.com.cn
-36336
- Arxscan Inc.
- Mark Fitzsimmons
- mfitzsimmons&arxscan.com
-36337
- St. Antonius Ziekenhuis
- TeunJan Pelgrim
- t.pelgrim&antoniusziekenhuis.nl
-36338
- RESI Informatik & Automation GmbH
- DI Heinz-Christian Sigl
- office&RESI.cc
-36339
- Neurosearch A/S
- Morten Nielsen
- mhn&neurosearch.dk
-36340
- Phonographic Performance Limited
- Jason Roberts
- jason.roberts&ppluk.com
-36341
- Optiver
- Marc Jongeneel
- networks&optiver.com
-36342
- Erlyvideo
- Max Lapshin
- info&erlyvideo.org
-36343
- CoreCodec, Inc.
- Kate Gray
- kgray&corecodec.com
-36344
- Skyfiber Inc
- Wayne Walters
- wayne.walters&skyfiber.com
-36345
- Benchbee co., Ltd.
- SeongHa Park
- nexgens&msn.com
-36346
- X-TRANS, Inc.
- Shigeki Iwai
- iwai&x-trans.jp
-36347
- Prosodie
- Benoît Quéval
- bqueval&prosodie.com
-36348
- Compass-EOS
- Einat Ron
- einatr&compass-eos.com
-36349
- ANSEC Group, s.r.o.
- Pavel Andreev
- pavel.andreev&ansec.cz
-36350
- New Zealand Ministry of Education
- Andreas Kubisch
- Andreas.Kubisch&minedu.govt.nz
-36351
- CESI S.p.A.
- Dino Pradelli
- security&cesi.it
-36352
- Just IT s.r.l.
- Renato Massone
- iana-pen&justit.it
-36353
- Bridgewater
- Lalit Tyagi, Brian Cella, Jacques Malette
- it_esm&bwater.com
-36354
- globo.com
- Nedimar Paulo Turatti
- suporte.producao&corp.globo.com
-36355
- BIRUNI Grid Computing Centre
- Muhammad Farhan Sjaugi
- farhansj&biruni.upm.my
-36356
- Zycomm Electronics Limited
- Charles Price
- cpwp&w3z.co.uk
-36357
- NOMOS-BANK Open Joint-Stock Company
- Evdokhin Gennady
- pki&nomos.ru
-36358
- Whole Foods Market Services, Inc
- Daniel Birmingham
- Daniel.Birmingham&wholefoods.com
-36359
- Securus Software Ltd
- Jill Britton
- jill.britton&securus-software.com
-36360
- ASTELNET
- Andrey Ivanov
- andrey&astelnet.com
-36361
- APTEC, LLC
- Earl Belcher, Jr.
- earl.belcher&aptecllc.com
-36362
- OT Bioelettronica snc
- Enrico Merlo
- e.merlo&otbioelettronica.it
-36363
- NRT LLC
- Scott Zadroga
- Scott.Zadroga&nrtllc.com
-36364
- Stefan Reinhold
- Stefan Reinhold
- development&ithron.de
-36365
- OTJ Tecnologia
- Paulo Sérgio Garcia
- psgarcia&otj.com.br
-36366
- Kaminario
- Arik Kol
- arik.kol&kaminario.com
-36367
- E-SONDE NETWORK MONITORING, S.L.
- Antonio Ruiz
- antonio.ruiz&e-sonde.com
-36368
- Shenzhen Hexicom Technology Co., Ltd.
- luoxionghui
- luoxionghui&hexicomtech.com
-36369
- Cirrascale Corporation
- David Leimbach
- dave.leimbach&cirrascale.com
-36370
- Growth Curve Technologies Ltd.
- Ian Gilfillan
- ian&b3accounts.com
-36371
- Solium Capital Inc.
- Trever Miller
- trever.miller&solium.com
-36372
- Flygprestanda U.S. Inc.
- Alexander Lazer
- alexander.lazer&flygp.us
-36373
- HHO_Automation
- Uwe Hanke
- uhanke&hho-inh.de
-36374
- MIG
- Jad Nehme
- jad.nehme&themig.com
-36375
- Neota Logic Inc.
- Michael Mills
- michael.mills.ny&gmail.com
-36376
- VersaSuite
- Mason Mitchell
- mmitchell&versasuite.com
-36377
- Schmidt electronic
- Juergen Schmidt
- info&schmidt-electronic.com
-36378
- Nordic AkkaSource AB
- Nils-Olof Bankell
- nils-olof.bankell&jayway.com
-36379
- Mesto Prostejov
- David Koudelka
- pki&prostejov.eu
-36380
- Internet Applications Research and Development, LLC
- Stuart A MacKenzie
- administrator&iarad.net
-36381
- TeleMate.Net Software
- John O'Reilly
- contact&telemate.net
-36382
- Damballa, Inc.
- Stephen Newman
- snewman&damballa.com
-36383
- VDC Display Company
- Jesse Salvatore
- jsalvatore&vdcds.com
-36384
- Designfusion Inc.
- Jonathan Brown
- jbrown&designfusion.com
-36385
- NMS Unlimited
- Mike Worthington
- nmsunlimited&gmail.com
-36386
- Digia cc
- Tristan Koen
- tristan&digia.org
-36387
- Scorpion Holding Company Limited
- Omar Charles
- omarcharles&scorpion-holding.com
-36388
- Sanctuary Group
- Colin Williams
- colin.williams&sanctuary-housing.co.uk
-36389
- Infospectrum India Pvt. Ltd.
- Farooque Khan
- farooque&info-spectrum.com
-36390
- Nice Thoughts
- Iwan Nijs
- admin&nicethoughts.eu
-36391
- Beijing JinYuanXin Technology Co.,Ltd.
- Xiaoping Guo
- Xiaoping.Guo&xpower.com.cn
-36392
- Taxcom Ltd.
- Alexander Tupitsyn
- TupitsynAV&taxcom.ru
-36393
- Bohemia Interactive
- Jan Hlavaty
- hlavac&bistudio.com
-36394
- Benco Dental
- John Owens
- jowens&benco.com
-36395
- Hochschule Wilhelmshaven/Oldenburg/Elsfleth
- Guido Manemann
- manemann&jade-hs.de
-36396
- OAO "FSK EES" MES Siberian
- Temerov Alexandr Miroslavovich
- temerov-am&sibmes.ru
-36397
- Plurk Inc.
- Ryan Lim
- ryan&plurk.com
-36398
- Ingenieria GBR, C.A.
- Raul Gomez
- rgomez&ingenieriagbr.com
-36399
- 39th Studios, LLC
- Curtis M Turner II
- curtis&39thstudios.com
-36400
- Neo Silurian Technologies (NS-Technologies)
- Christopher Boulton
- chris&ns-technologies.com
-36401
- Dax Networks Ltd
- Sudha Jagadish
- peg&dax.in
-36402
- Chunichi Denshi Co.,LTD.
- Tatsuo Suzuki
- tatsu&kcd.co.jp
-36403
- sentiam, inc.
- Jürgen Reinold
- iana-pen&sentiam.com
-36404
- Mako Networks Ltd
- Murray Knox
- murrayk&makonetworks.com
-36405
- Department of Information System, Hanoi National university of Education, Vietnam
- Dang Dinh Duong
- myheeu&gmail.com
-36406
- PopTarantula
- Joel Blackthorne
- joel&poptarantula.com
-36407
- Peer Review Mediation and Arbitration
- Jonathan Smith
- jonathan&peerreviewboard.com
-36408
- Norges Bank Investment Management
- Thomas Aure
- tau&nbim.no
-36409
- Foyer Assurances S.A.
- Mar Durbach
- dum&foyer.lu
-36410
- gokuraku.it
- Renato Massone
- iana-pen&gokuraku.it
-36411
- Zhejiang Chuangyi Technology Co., Ltd
- Zhang Pengyu
- zhpy2000&sina.com
-36412
- Scientific manufacturing firm Stalenergo Limited
- Gennadiy Mogulyan
- mgv&stalenergo.ru
-36413
- LUMIPLAN SAS
- Didier FAUCHER
- didier.faucher&lumiplan.com
-36414
- Espial Group Inc.
- Kumanan Yogaratnam
- kumanan&espial.com
-36415
- INRS Custom Data Inc
- Victor Plenter
- vplenter&inrs.com
-36416
- Harritronics LLC
- Paul Harrison
- paul&harritronics.com
-36417
- KDE e.V
- Ben Cooksley
- ripe&kde.nl
-36418
- Qwilt Inc.
- Gaash Hazan
- gaash&qwilt.com
-36419
- Path Intelligence
- Toby Oliver
- toby&pathintelligence.com
-36420
- Trinet Co., Ltd.
- Mitsuhiro Nakamura
- nakamura&trinet.co.jp
-36421
- geniegate.com
- Jamie Hoglund
- pen&geniegate.com
-36422
- Gaikai, Inc.
- Timothy C. Arland
- tca&gaikai.com
-36423
- Warped Reality Studios
- Guy A. De Marco
- guy&guydemarco.com
-36424
- Roberto De Duro
- Roberto De Duro
- r.deduro&hotmail.it
-36425
- Fladi.at
- Michael Fladischer
- michael&fladi.at
-36426
- AT Software und Rechnertechnik GmbH
- Andreas Thalmayer
- info&at-online.com
-36427
- Soneco d.o.o.
- Slavko Gajin
- info&soneco.rs
-36428
- Inreal Technologies Ltd
- Jussi Heinonen
- jussi&inreal.co.uk
-36429
- TOOLS.LV SIA
- Mareks Malnacs
- mareks&tools.lv
-36430
- Piarista Gimnázium, Vác
- Sandor OROSZI
- itadmin&vpg.sulinet.hu
-36431
- Cobham
- Mike Kee
- mike.kee&cobham.com
-36432
- Proteco Industria Eletrotecnica Ltda.
- Marcos Gaeta
- marcos&proteco.com.br
-36433
- Station to Station BV
- Gerben van Ek
- g.vanek&stationtostation.nl
-36434
- Inovit GmbH
- Jochen Nickel
- jochen.nickel&inovit.ch
-36435
- Rathravane LLC
- Peter Cardona
- iana_pen&rathravane.com
-36436
- Beijing GuoTie HuaChen Communication & Information Technology Co.,Ltd.
- Yaoyang Wang
- wyy&huachencn.com
-36437
- ASAHI ELECTRONICS CO.,LTD.
- Yoshihiro Inoue
- inoue&aec.co.jp
-36438
- Shanghai XZ-COM. Co.,Ltd.
- zhu xiao hu
- zhuxh&shxz-com.com
-36439
- Telenetik Corporation
- Roman Sergey
- romansergey&telenetik.net
-36440
- RICH RIGHT TECHNOLOGY LIMITED
- Jason Zhang
- zh-shine&163.com
-36441
- G-FIT GmbH & Co. KG
- Moritz Graf
- snmp&g-fit.de
-36442
- comune di Jesi
- Alessandro Paggi
- ced&comune.jesi.an.it
-36443
- eikju: AG
- Christoph Eicker
- eicker&eikju.com
-36444
- Sana IT Services GmbH Berlin-Brandenburg
- Udo Leistner
- u.leistner&sana-bb.de
-36445
- fotocom
- marc chassoulier
- marc&foto.com
-36446
- netkey information technology gmbh
- Peter Klett
- peter&netkey.at
-36447
- Colliers International
- Rui Fidalgo
- Rui.Fidalgo&colliers.com
-36448
- Verkehrsautomatisierung Berlin GmbH
- Rainer Stimmerling
- Rainer.Stimmerling&vaberlin.de
-36449
- Computation Institute
- Greg Cross
- grog&ci.uchicago.edu
-36450
- DFZ
- Blagomir Blagoev
- blagob&dfz.bg
-36451
- CNP Assurances
- SICARD Virginie
- virginie.sicard&cnp.fr
-36452
- Samara Institute of Open Education
- Sergey A. Sushkov
- cit&sec21.ru
-36453
- Vanguardia Liberal
- Rene Di Marco
- rdimarco&vanguardia.com
-36454
- RGI, Inc
- Robert Greathouse
- greathouse.robert&gmail.com
-36455
- synertronixx GmbH
- Dr. Matthias Blaschke
- blaschke&synertronixx.de
-36456
- Freiwillige Feuerwehr Strasshof
- Felix Rehberger
- Administrator&Feuerwehr-Strasshof.at
-36457
- APL software, SL
- Jesús Marín
- jesus.marin&aplsoftware.com
-36458
- Triumfant, Inc.
- Jaye Whitmire
- jwhitmire&triumfant.com
-36459
- SURVISION
- Alban GICQUEL
- alban.gicquel&survision.fr
-36460
- PangyreSoft
- Ashley Pond V
- ashley.pond.v&gmail.com
-36461
- Squeep
- Justin Wind
- jwind-iana&squeep.com
-36462
- 1st Source Bank
- Michael Weaver
- WeaverM&1stsource.com
-36463
- DNW Technologies
- Hsi Fang
- manbaum&hotmail.com
-36464
- henrich
- jun wu
- wujun9959&163.com
-36465
- Data Center Manageability Interface Forum
- Hari Ramachandran
- hari.ramachandran&intel.com
-36466
- H2 PowerTech (formerly 'Ballard Fuel Cell Systems' and 'IdaTech LLC')
- Kevn Desrosiers
- it&h2powertech.com
-36467
- adesso AG
- Christoph Stoppe
- stoppe&adesso.de
-36468
- Cornastone Infrastructure Services (Pty) Ltd
- Jan Semmelink
- jans&cornastone.com
-36469
- Through IP Pty. Ltd.
- Marco Hess
- marco.hess&through-ip.com
-36470
- Sofdela Inc.
- Satoshi Fushimi
- satoshi.fushimi&sofdela.info
-36471
- Beijing SureKAM Technology Co., Ltd.
- size Liu
- liusize_yuexia&hotmail.com
-36472
- Ilait
- Kim Lundgren
- registry&ilait.se
-36473
- Direct One S.A.
- Cezar Darie
- support&directone.ro
-36474
- Lifespan Corporation
- Paul Howard
- pdhoward&lifespan.org
-36475
- Fujian Etim Information & Technology Co,.Ltd.
- yangxiaoyan
- yxy&etim.cn
-36476
- Academia de Informática Brava, Engenharia de Sistema, Lda
- Ricardo Martins Sargo Garcês
- rgarces&acin.pt
-36477
- Ministry Of Health, Saudi Arabia
- Mohammad Ibraheem Aboul Ola
- ABOELELA-M&moh.gov.sa
-36478
- WareValley
- Inho Kim
- ihkim&warevalley.com
-36479
- Fastbooking
- Ludovic LANGE
- fastbooking.pen.iana&gmail.com
-36480
- Driving Growth International GmbH
- Mr. Smail Sakiri
- smail.sakiri&driving-profit.de
-36481
- eqqon GmbH
- Wolfgang Zelenka
- wolfgang.zelenka&eqqon.com
-36482
- First Businesspost GmbH
- Jürgen Graf
- juergen.graf&first-businesspost.com
-36483
- Lowe Enterprises and Destination Hotels and Resorts
- Bill Hilbers
- bhilbers&loweenterprises.com
-36484
- JaReVo
- Daniel Reichelt
- daniel.reichelt&jarevo.de
-36485
- nCk Research LLC
- Matthew Chabot
- matt.chabot&nck-research.com
-36486
- Ecator Ltd
- Bjorn Bergsten
- ec001&ecator.com
-36487
- Shanghai Xinmin Telecom Technologies Co.,Ltd
- Wei Ye
- rayye&foxmail.com
-36488
- Brimrose Technology Corporation
- Rick Winkelman
- RWinkelman&brimrosetechnology.com
-36489
- Geovan Salvato Borges
- Geovan Salvato Borges
- geovansb&gmail.com
-36490
- MassHousing
- James McCaughey
- jmccaughey&masshousing.com
-36491
- California State University, Long Beach
- Steve La
- sla&csulb.edu
-36492
- JUNet (Jordanian Network Universities)
- Anwar Al-Yousef
- anwar&junet.edu.jo
-36493
- IDIS Co.,Ltd.
- Kiun Lee
- rexos33&idis.co.kr
-36494
- Fixmo Inc
- Shyam Sheth
- shyam&fixmo.com
-36495
- Systemfive
- Roger Kirchhofer
- support&systemfive.com
-36496
- TeamBox SARL
- Patrick Bihan-Faou
- patrick.bihan-faou&teambox.fr
-36497
- Buzzinbees SAS
- Marc Lamberton
- marc.lamberton&buzzinbees.com
-36498
- Asurea Insurance Services
- Scott Freeland
- sfreeland&asurea.com
-36499
- West Penn Allegheny Health Systems
- Tony Lukasavage
- alukasav&wpahs.org
-36500
- Behavioreal Ltd.
- Alush Joni
- eyal&behavioreal.com
-36501
- Ever-Team Software
- Ziad WAKIM
- z.wakim&ever-team.com
-36502
- NetBoss Technologies, Inc.
- Nenad Matejic
- nenad.matejic&netboss.com
-36503
- waldmeisda.com
- Frank Kreller
- Frank&waldmeisda.com
-36504
- Joint Stock Company «Arkhangelsk Sale Company»
- Andrew V. Belov
- abel&arsk.ru
-36505
- Viatel
- Pavel Smirnov
- pavel.smirnov&viatel.com
-36506
- Com N S Ltd.
- Alon Rubinstein
- alon&comns.co.il
-36507
- chgauert
- Christian Gauert
- chgauert&gmx.de
-36508
- Unica Corporation
- Chris Marko
- cmarko&unica.com
-36509
- BeiJing testor techniqual Ltd
- zhongtao Zhou
- zhouzhongtao&testor.com.cn
-36510
- TechnoServ A/S
- Alexey Maslov
- amaslov&technoserv.ru
-36511
- MKB Unionbank AD
- Cvetan Grigorov
- GrigorovC&unionbank.bg
-36512
- CITILOG
- FORTHOFFER Martial
- mForthoffer&citilog.com
-36513
- SOGELINK SAS
- Xavier BASSET
- pen&dict.fr
-36514
- Ipeer Internet Network
- Amin Dandache
- support&ednic.de
-36515
- Suprema Corte de Justicia de la República Oriental del Uruguay
- Ivonne Carrión
- uejecutora&poderjudicial.gub.uy
-36516
- Beaufort Delta Education Council
- Michael Reardon
- mike_reardon&bdec.learnnet.nt.ca
-36517
- Estalea, L.P.
- Antonio Varni
- systems&estalea.com
-36518
- RF Technology Pty Ltd
- John Dalton (per Frank Romanin)
- john.rf.technology&gmail.com
-36519
- bsdn
- isa.wang
- isa.wang03&gmail.com
-36520
- SIGI
- Philippe Mathieu
- exploitation&sigi.lu
-36521
- Global RadioData Communications Ltd
- Marcus Williams
- marcus.williams&grcltd.net
-36522
- Simples Consultoria
- Érico Andrei
- erico&simplesconsultoria.com.br
-36523
- SippySoft
- Yura Monchak
- yurun&sippysoft.com
-36524
- Locus Telecommunications, Inc.
- Andrew Norris
- snmpadmin&locus.net
-36525
- Imatia Innovation S.L.
- Alejandro Ricart Varela
- alejandro.ricart&imatia.com
-36526
- Blackhawk Computer Services
- Alex Rasmussen
- TubaRasputin&gmail.com
-36527
- Mark Pröhl
- Mark Pröhl
- mark&mproehl.net
-36528
- WMZ Engenharia
- Wagner Luiz Zucchi
- wzucchi&lps.usp.br
-36529
- BlueSpace Software
- Brian Vetter
- brian.vetter&bluespace.com
-36530
- Fruktträdet
- Jonas Eckerman
- jonas&frukt.org
-36531
- netford
- Jin-Kyu Won
- jkwon&netford.com
-36532
- State Agency of Medicines of Latvia
- Ingmars Briedis
- ingmars.briedis&zva.gov.lv
-36533
- Danaher Corporation
- Eric Aarts - Danaher GS3 Team
- dhr_pen&danaher.com
-36534
- Bitartists
- Marc Werner
- mwerner&bitartists.de
-36535
- Der Beck GmbH
- Thomas Dietsch
- thomas.dietsch&der-beck.de
-36536
- Eprinsa
- Manuel Castiñeira
- mcasti&eprinsa.es
-36537
- Beijing NeTopChip Technology Co.,LTD
- Chao Zhong
- chao.zhong&netopchip.com
-36538
- ExperTeach Gesellschaft für Netzwerkkompetenz mbH
- Muammer Arslan
- helpdesk&experteach.de
-36539
- smart SNMP
- Matthias Haag
- info&smart-snmp.org
-36540
- Innofinity GmbH
- Meinhard Schneider, CEO
- schneider&innofinity.de
-36541
- FIVES
- Olivier HERMAN
- olivier.herman&fivesgroup.com
-36542
- St.Petersburg Out-patient department N106
- Tomashevsky Dmitry
- tomashevdi&gmail.com
-36543
- Sascha Silbe
- Sascha Silbe
- sascha-web-pen.iana.org&silbe.org
-36544
- Universidade Federal do ABC
- José A. de A. Gomes
- jose.gomes&ufabc.edu.br
-36545
- ii2P, LLC
- Scott Ringer
- sringer&ii2p.com
-36546
- Towers Watson
- Nino Evola
- nino.evola&towerswatson.com
-36547
- Heimatverein Elte e.V.
- Klaus Paradies
- technik&heimatverein-elte.de
-36548
- Virtualmin Inc
- Jamie Cameron
- jcameron&webmin.com
-36549
- Medienzentrum Kassel
- Thorsten Strusch
- noc&ksan.de
-36550
- AnthonyVinhPham
- Anthony Vinh Pham
- anthonyvinhpham&gmail.com
-36551
- RAADIUS LLC
- Richard Hilling
- richard.hilling&raadius.net
-36552
- Cora Informatique
- AUBRY Patrice
- paubry&cora.fr
-36553
- Altos Solutions
- Tim Henke
- thenke&altossolutions.com
-36554
- Moocom Corporation
- Takeshi KOMIYAMA
- contact&moocom.co.jp
-36555
- TimeTools Limited
- Andrew Shinton
- ashinton&timetools.co.uk
-36556
- Triad Semiconductor, Inc.
- Mike Burr
- it&triadsemi.com
-36557
- Positive Software sprl
- Luc Claes
- luc&posisoft.com
-36558
- Actus Digital
- Raphael Renous
- raphir&actusdigital.com
-36559
- Bitnet.hu Ltd.
- Jozsef Czompo
- czompo.jozsef&bitnet.hu
-36560
- Entr'ouvert
- Benjamin Dauvergne
- bdauvergne&entrouvert.com
-36561
- Nwork Co.,Ltd.
- Tomoyasu Fujii
- t_fujii&nwork.co.jp
-36562
- Green Resource Inc.
- Yu Xin
- scaner&gmail.com
-36563
- Remsdaq Limited
- Les Mather
- lm&remsdaq.com
-36564
- Daniel Fernandes
- Daniel Fernandes
- danieldesenvolvedor&gmail.com
-36565
- Washington State Patrol
- Chris Molenda
- chris.molenda&wsp.wa.gov
-36566
- new frontiers software GmbH
- Markus Müller
- mueller&new-frontiers.de
-36567
- Teva Pharmaceutical Industries Ltd.
- Ashkenazy Ronen
- Ronen.Ashkenazy&teva.co.il
-36568
- Anixter
- David Hopper
- david.l.hopper&anixter.com
-36569
- Gridstore
- Antoni Sawicki
- as&gridstore.com
-36570
- Gemüsering Stuttgart GmbH
- Stephan Maier
- st.maier&gemuesering.de
-36571
- Picoware Ltd
- Martin Hayes
- Martin.Hayes&picoware.com
-36572
- NET4GAS, s.r.o.
- Michal Mühlpachr
- michal.muhlpachr&net4gas.cz
-36573
- Harney
- Gerard Harney
- oid&harney.eu
-36574
- SCI Group
- Ashley Jacobs
- ajacobs&scigrp.com
-36575
- MerLar
- Robert Merchant Larson, II
- robert&merlar.com
-36576
- APB PRODATA LTDA.
- Mr. CARL BEQUET
- cb&apb.com.br
-36577
- Starscriber Corporation
- Michael Johnson
- mjohnson&starscriber.com
-36578
- Kron Telekomunikasyon Hizmetleri A.S
- Mete SANSAL
- info&kron.com.tr
-36579
- Erste Bank Hungary Nyrt.
- Akos Solymos
- akos.solymos&erstebank.hu
-36580
- DVG Deutsche Vertriebsgesellschaft für Publikationen und Filme mbH
- Markus Nass
- nass&dvg-ff.com
-36581
- BSTECNOLOGIA
- EDUARDO SAMPAIO
- EDUARDO&BSTECNOLOGIA.NET.BR
-36582
- Arduino (http://www.arduino.cc/)
- Eric Gionet
- lavco_eg&hotmail.com
-36583
- Tom Aafloen
- Tom Aafloen
- iana&aafloen.com
-36584
- vmkid.com
- Nanger Lu
- lujnan&gmail.com
-36585
- Logan Technologies
- David Ferris
- eric.ferris&sympatico.ca
-36586
- NET IDEA d.o.o.
- Tomislav Bosanac
- tomislav.bosanac&gmail.com
-36587
- NFB Consulting
- Nigel Brownett
- nbrownett&nfbconsulting.com
-36588
- Satellink, Inc
- Lorie Goodrich
- lorie.goodrich&satellink.com
-36589
- Pier 1 Imports
- Edward E. Iwanski
- eeiwanski&pier1.com
-36590
- Rb Datensysteme GmbH
- Bastian Reich
- reich&weblodge.de
-36591
- Prefeitura Municipal de Fortaleza
- Daniel Ruoso
- daniel&ruoso.com
-36592
- The CBORD Group, Inc.
- Robert Carlson
- rcc&cbord.com
-36593
- Paul De Audney
- Paul De Audney
- pdeaudney&gmail.com
-36594
- Certi Networks Sdn Bhd (formerly 'Telistar Solutions Pte Ltd')
- Jovi Yeong
- jovi&certinetworks.com
-36595
- Ena Tecnologia, S.L.
- Miguel Angel Martin Mendez
- miguel.martin&ena-tecnologia.com
-36596
- Dachser GmbH & Co. KG
- Fariborz Moradi
- fariborz.moradi&dachser.com
-36597
- PRDS
- Dominique Laigle
- dlaigle&gmail.com
-36598
- SELEX Systems Integration Inc
- Dustin Lewis
- lewis&selex-si-us.com
-36599
- Bremer Landesbank
- Oliver Merdes
- netze&bremerlandesbank.de
-36600
- Nashire AG (startup) (http://www.nashire.com)
- Blapp Martin
- mblapp&attic.ch
-36601
- OTPasswd
- Tomasz Fortuna
- bla&thera.be
-36602
- Observium
- Adam Armstrong
- adama&memetic.org
-36603
- ITechnical
- Heiko Nardmann
- verwaltung&itechnical.de
-36604
- Media Service Provider Ltd
- Charlie Allom
- hostmaster&mediaserviceprovider.com
-36605
- Hannover Rückversicherung AG
- Hans-Juergen Kreutzer
- hans-juergen.kreutzer&hannover-re.com
-36606
- Littlehall Corporation
- Mark Bannon
- resources&littlehall.com
-36607
- Johnny Abrahamsson
- Johnny Abrahamsson
- johnny.abrahamsson&gmail.com
-36608
- whty
- huangqichao
- HQC&whty.com.cn
-36609
- Universita' del Salento
- Simone Molendini
- simone.molendini&unisalento.it
-36610
- August Moon LLC
- Dennis Chang
- support&augustmoonsoftware.com
-36611
- Ziborski KG
- Zrin Ziborski
- office.pen-iana&ziborski.net
-36612
- AngloGold Ashanti
- Anton van Wieringen
- anton&vanwieringen.co.za
-36613
- United Europe Holding OJSC
- Andrew Syrov
- syrov.a&united-europe.ru
-36614
- itl Institut für technische Literatur AG
- Marcel Rechenberg
- marcel.rechenberg&itl.eu
-36615
- Identity Networks
- John Carter
- jcarter&identitynetworks.com
-36616
- Arcatem
- Armand Dembele
- armand.dembele&arcatem.com
-36617
- RooX
- Andrey Pestov
- APestov&rooxteam.com
-36618
- Alceo s.r.l.
- Amedeo Bonini
- abonini&alceo.com
-36619
- Beatport, LLC
- Jonathan Steffan
- admin&beatport.com
-36620
- 8086 Limited
- Chris Burton
- Support&8086.net.uk
-36621
- Krithia Ltd
- Peter Braidwood
- peter&krithia.co.uk
-36622
- WELLHAT,INC
- Tatsuhiro Kasai
- info&wellhat.com
-36623
- Swedish Orphan Biovitrum
- Petra Tesch
- petra.tesch&sobi.com
-36624
- Senath Pty Ltd
- Kanchana Wickramasinghe
- kanchanaw&senathltd.com
-36625
- Allesklar.com AG
- Tilman Mayer
- tilman.mayer&meinestadt.de
-36626
- State of Montana
- Hunter Coleman
- hcoleman&mt.gov
-36627
- COMPLUS CZ, a.s.
- Martin Krob
- martin.krob&complus.cz
-36628
- Inphosoft Pte Ltd
- Brian Wang
- brian.wang&inphosoft.com
-36629
- Assens Kommune
- Lars Andersen
- ljand&assens.dk
-36630
- 3stylestudio srl
- Andrea Conti
- tech&3stylestudio.com
-36631
- Portalify Ltd
- Hannu Aronsson
- haa&portalify.com
-36632
- Scalr Inc.
- Sebastian Stadil
- sebastian&scalr.com
-36633
- Ivoclar Vivadent Corporation
- Wolfgang Schmied
- wolfgang.schmied&ivoclarvivadent.com
-36634
- LinkORB
- Joost Faassen
- j.faassen&linkorb.com
-36635
- Kirchliche Paedagogische Hochschule Wien/Krems
- Erich Schneeweiß
- erich.schneeweiss&kphvie.at
-36636
- AMS Ltd.
- Dmitriy Volzhin
- dv&ams.ru
-36637
- Delaware Department of Education
- Paul Pond
- ppond&doe.k12.de.us
-36638
- Planphoria, LLC
- Saul Rosenberg
- srosenberg&planphoria.com
-36639
- TimedOut Services
- Jon Bennell
- enquiries&timedout.co.uk
-36640
- Benjamin Tietz
- Benjamin Tietz
- benjamin&micronet24.de
-36641
- Famos, LLC
- Timothy Wall
- twall&famos.com
-36642
- FireID
- Iain Wadds
- iain&fireid.com
-36643
- ANNAX Schweiz AG (formerly 'ANNAX passenger electronics AG')
- Rico Zoss
- rico.zoss&annax.ch
-36644
- WiseMo A/S
- Jakob Bohm
- jb-iana&wisemo.com
-36645
- cybertronixx consulting services GmbH
- Marcus Hoeltkemeier
- info&cybertronixx.de
-36646
- San Diego State University
- Bob Carroll
- bob.carroll&alum.rit.edu
-36647
- STV Electronic GmbH
- Alexander Karavan
- a.karavan&stv-electronic.de
-36648
- Netherlands Institute for Neuroscience
- Adriaan Klop
- A.Klop&nin.knaw.nl
-36649
- Traficon International n.v.
- Johan GACHON
- jg&traficon.com
-36650
- Joh. Enschedé IT & Consultancy
- Melle van der Klip
- M.v.d.Klip&je-itc.com
-36651
- Sportvision, Inc
- Tim Driedger
- timdriedger&sportvision.com
-36652
- denkagenten GbR
- Oliver Gruhn
- gruhno&googlemail.com
-36653
- Copenhagen Business School
- Mikkel Ankjær
- ma.it&cbs.dk
-36654
- CHU de Nantes
- Yvrenogeau Christophe
- cyvrenogeau&chu-nantes.fr
-36655
- Innovative Energies
- Matt Jones
- mattj&innovative.co.nz
-36656
- Unger, Welsow & Company GmbH
- Michael Steuter
- support&uw-c.de
-36657
- Axept AG
- Werner Helbig
- interneIT&axept.ch
-36658
- OMGPOP
- Chris Holt
- chris&omgpop.com
-36659
- ATRUST COMPUTER CORPORATION
- Winnie Chuang
- Winnie.Chuang&atrustcorp.com
-36660
- PAUL Consultants e.V.
- Dirk Methner
- it&paul-consultants.de
-36661
- MailCleaner
- Olivier Diserens
- dev&mailcleaner.net
-36662
- MTU Friedrichshafen GmbH (formerly 'Tognum AG')
- Herbert Roth
- registration&tognum.com
-36663
- Aish Technologies Limited
- Robin Coley
- robinc&aishtechnologies.com
-36664
- Stadt Warburg
- Christian Bierwirth
- edv&warburg.de
-36665
- Egress Software Technologies Ltd
- Neil Larkins
- neil.larkins&egress.com
-36666
- Golden Frog, Inc.
- Philip Molter
- noc&goldenfrog.com
-36667
- Orange County Container Group LLC
- Arthur Dubey
- it&csipaper.com
-36668
- Canadian Standards Association
- Prakash Nair
- prakash.nair&csagroup.org
-36669
- Medicom Health Interactive
- Lance Linder
- llinder&medicomhealth.com
-36670
- Bundesministerium für Inneres - Republik Österreich
- Markus PAST
- markus.past&bmi.gv.at
-36671
- Guangzhou Changyue Electronic Technology Ltd.
- fang hui
- fanghui1230&126.com
-36672
- FieldView Solutions
- Veera Thumuganti
- vthumuganti&fieldviewsolutions.com
-36673
- IP Infusion Inc
- Vishwas Manral
- vishwas&ipinfusion.com
-36674
- Moving Impressions
- Terence Bennell
- tjb&moving-impressions.com
-36675
- Cossette
- Bernard Beaulieu
- bernard.beaulieu&cossette.com
-36676
- E-Prime Co., Ltd.
- Doo Jin Choi
- ssscdj&eprime.or.kr
-36677
- Nejla
- Jon Kristensen
- jon.kristensen&nejla.se
-36678
- Barmherzige Brüder Österreich
- Matthias Frankfurt
- matthias.frankfurt&bbprov.at
-36679
- eo Networks S.A.
- Robert Fabisiak
- robert.fabisiak&eo.pl
-36680
- B&W Software GmbH
- Achim Schön
- achim&buw-soft.de
-36681
- IsoBeef GbR
- Sebastian Gepperth
- root&isobeef.org
-36682
- Reaonix, LLC
- Gerald Jackson
- gerald.jackson&reaonix.com
-36683
- ApexIdentity Inc.
- Paul C. Bryan
- paul.bryan&apexidentity.com
-36684
- NetCom Consulting GmbH
- Wolfgang Herrmann
- wolfgang.herrmann&netcom-consulting.de
-36685
- Mozdell Inc,
- Rafael Antonio Mosquera Delgado
- mozdell&hotmail.com
-36686
- iSencia AB
- Christian Klemetsson
- info&isencia.se
-36687
- JaxMP L.L.C.
- Stephen Hull
- stephen&jaxmp.com
-36688
- DOORSolutions
- Zhang Ping
- dqzhangp&163.com
-36689
- J&T Systems
- Katsuya Higuchi
- higuchi&jt-sys.co.jp
-36690
- HCS - HES Cabling Systems
- Ufuk Yilmaz
- yilmaz&hescs.com
-36691
- Dolphin Speed Networks Ltd
- Bradley Kite
- bradley.kite&gmail.com
-36692
- Open Certification Centre
- Radoslaw Ejsmont
- radoslaw&ejsmont.net
-36693
- SGI Japan, Ltd.
- Manabu Suzuki
- iana_oid&sgi.co.jp
-36694
- The Revenue Department
- Pornthip Yousathorn
- pornthip.yo&rd.go.th
-36695
- Cognitive Security, Ltd.
- Martin Rehak
- ianacontact&cognitive-security.com
-36696
- Natural History Museum
- Patrick Cunningham
- p.cunningham&nhm.ac.uk
-36697
- Neo Telecoms
- Frederic Gabut-Deloraine
- eng&neotelecoms.com
-36698
- Toyon
- Richard Mirard
- rmirard&yahoo.com
-36699
- The Engle Group
- Jeff Senter
- jsenter&erols.com
-36700
- Defferrari Sistemas de Informática Ltda
- Marco Defferrari
- marco&defferrari.com.br
-36701
- Cogeco Cable
- David Zheng
- david.zheng&cogeco.com
-36702
- Cerbini
- Francesco Cerbini
- francesco&cerbini.eu
-36703
- ABR Innovations, LLC.
- Mark Pack
- mark&abrinnovations.com
-36704
- My Ways, Org.
- Eric R Ross
- eric.ross&myways.org
-36705
- National Time Service Center,Chinese Academy of Sciences
- Guo wei
- guowei&ntsc.ac.cn
-36706
- Fundación Centro Oncológico de Galicia "José Antonio Quiroga y Piñeyro"
- Manuel J. Torres
- informatica&cog.es
-36707
- SpiderCloud Wireless, Inc.
- Paul Fraley
- iana&spidercloud.com
-36708
- Sensus Informatika Kft.
- Szabolcs Csermák
- csszabolcs&srwtrade.hu
-36709
- Mezeo Software Corporation
- John Eastman
- jeastman&mezeo.com
-36710
- Anoigo Services Ltd.
- Mari Heesbeen
- mari.heesbeen&anoigo.nl
-36711
- Micromodje Industries
- Yasamin Gharib
- yasamin.gharib62&gmail.com
-36712
- The Cell
- Daniel Bradshaw
- iana-contact&the-cell.co.uk
-36713
- Alepo USA
- Rajesh Mhapankar
- rajesh&alepo.com
-36714
- jackl0phty, LLC
- Gerald L. Hevener Jr.
- jackl0phty&gmail.com
-36715
- SEAS-NVE
- Claus Larsen
- ckl&seas-nve.dk
-36716
- Jiu Info & Tech
- Youster Park
- os5070&chol.com
-36717
- Studentenwerk München
- Wolfgang Walter
- iana&kontakt.stwm.de
-36718
- Futurice Ltd
- Mats Malmsten
- admin&futurice.com
-36719
- onedrous.com
- John Chandler
- admin&onedrous.com
-36720
- Evax S.A.R.L.
- Thomas Charbonnel
- iana&evax.fr
-36721
- Cuker Interactive
- Brian LaMere
- brian&cukerinteractive.com
-36722
- TSC Technologies
- Corneil du Plessis
- corneil&tsctech.com
-36723
- ILT Innovations AB
- Stefan Bernbo
- registry&ilt.se
-36724
- Kaplan Research and Application Prototyping
- Hadriel Kaplan
- hadrielk&yahoo.com
-36725
- Artisan Computer Services LLC
- Zack Williams
- info&artisancomputer.com
-36726
- Centered Logic, LLC
- Subramaniam Aiylam
- av&centeredlogic.com
-36727
- Benchmark Systems, LLC
- Eric R Ross
- eric.ross.9186291637&gmail.com
-36728
- Ellerines
- Neil Liebenberg
- neil.liebenberg&ellerines.co.za
-36729
- EAS Schaltanlagen GmbH
- Andreas Hirn
- snmp&eas-schaltanlagen.de
-36730
- TAGSYS RFID
- Cyril Catalanotto
- cyril.catalanotto&tagsysrfid.com
-36731
- Agorabox
- Marc Schlinger
- marc.schlinger&agorabox.org
-36732
- PDR Network
- Douglas Kunz
- douglas.kunz&pdr.net
-36733
- ForgeRock
- Ludovic Poitou
- ludovic.poitou&forgerock.com
-36734
- Leibniz Center for Marine Tropical Ecology (ZMT)
- Christoph Lutz
- christoph.lutz&zmt-bremen.de
-36735
- Regione Emilia Romagna
- Bucciarelli Fabio
- FBucciarelli&Regione.Emilia-Romagna.it
-36736
- Balance of Nature
- Cedric Ebisch
- cedric&balanceofnature.com
-36737
- Pošta Crne Gore
- Stevan Ljumovic
- stevan.ljumovic&postacg.me
-36738
- BLINQ Networks Inc.
- Tracey Bogue
- tracey.bogue&blinqnetworks.com
-36739
- Christophe Garault
- Christophe Garault
- christophe&garault.com
-36740
- Sinicnet Technology Co., Ltd.
- Zhenye Liu
- liuzhenye&sinicnet.com.cn
-36741
- CV Rekatama Elektronika Persada
- David Suryadinata
- david&innovativeelectronics.com
-36742
- Provincial Government of the Western Cape
- Deidre Marais
- Dmmarais&pgwc.gov.za
-36743
- GESTICUMPRE
- Abílio Fernandes
- abiliofernandes&gesticumpre.pt
-36744
- mcclishingramcatering service
- Loretta Moton Coleman
- cole506&bellsouth.net
-36745
- ninjo-workstation, EuMetSys c/o Ernst Basler + Partner GmbH
- Thomas Schonhof
- info&ebp.de
-36746
- Papendorf Software Engineering GmbH
- Falk Kohlhase
- info&papendorf-se.de
-36747
- Vertica A/S
- Peter Loft
- plj&vertica.dk
-36748
- Leine & Linde AB
- Joel Zachrisson
- j.zachrisson&leinelinde.se
-36749
- European Media Laboratory GmbH
- Markus Klehr
- markus.klehr&eml-d.de
-36750
- JaCoTec
- Marco Jakobs
- mj&jacotec.de
-36751
- RPC Scandinavia
- René Paw Christensen
- spam1&rpc-scandinavia.dk
-36752
- Datasinc
- Igor Pereira Peixoto
- igor&datasinc.com.br
-36753
- Engineering with IT
- Dave Moats
- dave&engwit.com
-36754
- BZK GROUP Sp. z o.o.
- Paweł Jankowski
- pawel.jankowski&bzkgroup.pl
-36755
- stocker-schmid.ch
- Arthur Stocker
- arthur.stocker&gmail.com
-36756
- Fossmart Pvt Limited
- Janaka Wickramasinghe
- janaka&fossmart.net
-36757
- GuanFang Technologies Co., Ltd
- Pines You
- pinesyou&163.com
-36758
- FORTRUST LLC
- Bryon Miller
- noc&fortrustllc.com
-36759
- eks Engel GmbH & Co. KG
- Christian Gieseler
- info&eks-engel.de
-36760
- Ancitel S.p.A.
- Donatantonio Mazzei
- mazzei&ancitel.it
-36761
- Datera S.A.
- Andrzej Dopierała
- dopieralaa&datera.pl
-36762
- Actisis GmbH
- Frank Losemann
- oid-support&actisis.com
-36763
- Riverside Health System
- Sherry Maynard
- sherry.maynard&rivhs.com
-36764
- Linuxstar DE
- Klaus Troeger
- klaus&linuxstar.de
-36765
- Herff Jones Inc
- Robert Montgomery
- rrmontgomery&herffjones.com
-36766
- Ixolit GmbH
- Stefan Schlesinger
- s.schlesinger&ixolit.com
-36767
- Rockyou
- Brad Fino
- brad&rockyou.com
-36768
- IT Prof Service Ltd.
- Serg Livitin
- livitin&itprofservice.ru
-36769
- Originity
- BARBIER Jérôme
- frontonas&free.fr
-36770
- Redmark
- Joost ten Brink
- snmpadmin&redmark.nl
-36771
- Learning Unlimited, Inc.
- Jason B. Alonso
- jason&learningu.org
-36772
- Funk-Electronic Piciorgros GmbH
- Marco Jakobs
- mj&piciorgros.com
-36773
- SecurActive
- Gilles Huguenin
- admin&securactive.net
-36774
- op5 AB
- Aron Lander
- admin&op5.com
-36775
- Akera S.r.l.
- Luigi Bellio
- luigi.bellio&akera.it
-36776
- Washington State University Extension Energy Program
- James L. Colombo
- colomboj&energy.wsu.edu
-36777
- sedOSS AB
- Jonathan Petersson
- jpetersson&sedoss.com
-36778
- Leap Power
- Haluk Aral
- haral&leap-power.com
-36779
- University Corporation for Atmospheric Research
- Marla Meehl
- marla&ucar.edu
-36780
- Format Computing
- Jarosław Tabor
- jarek&srv.pl
-36781
- Monument Systems LLC
- Chris Muller
- chris.muller&healthtrio.com
-36782
- Premier Wireless, Inc.
- Michael Long
- miklong2&gmail.com
-36783
- Tasco Sales (Aust) Pty Ltd
- Anthony Kemp
- admin&tasco.com.au
-36784
- FMS Software Ltd.
- Helmuts Razdovskis
- helmuts.razdovskis&fms.lv
-36785
- Diino AB
- Erik Gulliksson
- erik.gulliksson&diino.net
-36786
- TechMA s.r.l.
- Alessandro Riggi
- alexriggi&techma.it
-36787
- Futurex, LLC
- James Espinoza
- jespinoza&futurex.com
-36788
- Autoridade Nacional de Segurança Rodoviária
- João Luís Silva Assunção
- jassuncao&deetc.isel.ipl.pt
-36789
- BONET Group
- Peter Mihalik
- peter.mihalik&bonet.sk
-36790
- POWERVAR INC
- BRUCE RHODES
- BRUCER&POWERVAR.COM
-36791
- eac easy automation components GmbH
- Gerhard Wagner
- gerhard.wagner&eac.biz
-36792
- ZyTrust SA
- José M. Fernández Anaya
- jfernandez&zytrust.com
-36793
- Kiwibank
- Graham Pohl
- graham_pohl&hotmail.com
-36794
- Web4U s.r.o.
- Michal Humpula
- praha&web4u.cz
-36795
- Allgemeine Baugesellschaft - A. Porr Aktiengesellschaft
- Radmer Quirin
- iana&porr.at
-36796
- Norbit
- Erik Ryan
- erik&norbit.no
-36797
- No Limits Software
- Dave Cole
- dave.cole&nolimitssoftware.com
-36798
- Teamup Technology Limited
- Kam-Wah Pong
- kwpong&teamup.com.hk
-36799
- Codeworx3 Pty Ltd
- Larry Jones
- oidsupport&codeworx.com.au
-36800
- DONGGUANG APTECH ELECTRONICS CO., LTD
- JIAN ZHANG
- dvdrw-zj&126.com
-36801
- kokii
- chenchi
- tardychen&kokii.com
-36802
- Cazoodle, Inc.
- Jeremy Jones
- sysadmin&cazoodle.com
-36803
- Flughafen Stuttgart GmbH
- Michael Hartmann
- hartmann&stuttgart-airport.com
-36804
- UCN GmbH
- Matthias Subik
- matthias.subik&ucn.at
-36805
- RideCharge Inc.
- Scott Sanders
- ssanders&taximagic.com
-36806
- Great River Energy
- Scott Hughes
- shughes&grenergy.com
-36807
- NetWitness
- Josh Rosenthol
- josh.rosenthol&netwitness.com
-36808
- The Sherwin-Williams Company
- Daniel Kieta
- daniel.m.kieta&sherwin.com
-36809
- ITERANET Ltd
- Golubtsov Aleksey
- cis2admin&iteranet.com
-36810
- 237 Solutions Pty Ltd
- Mike Lee
- mike&237solutions.com.au
-36811
- Consendo Systems A/S
- Klaus Heigren
- klaus&consendo.dk
-36812
- CSP, Inc.
- Andrew Shieh
- ashieh&cspi.com
-36813
- SafeTek USA, LLC
- Robert Tilley
- rftilley&safetekusa.com
-36814
- DEFFAYET
- Nicolas DEFFAYET
- hostmaster&deffayet.com
-36815
- Savings Society Inc
- Jeff Forsyth
- jeff.forsyth&savingssociety.com
-36816
- Beijing Abloomy Technologies Co., Ltd (formerly 'Beijing Yunshengfa Technologies Co., Ltd')
- Ou Zhongyun
- zhongyun.ou&abloomy.com.cn
-36817
- Bohemia Interactive Simulations
- Michael Bode
- michael.bode&bisimulations.com
-36818
- Accelya France SAS
- Sylvain Rigou
- Service.systeme&accelya.com
-36819
- Yare Objects AB
- Mattias Oden
- mattias.oden&yare.se
-36820
- Updata Infrastructure UK Limited
- Ollie Anderson
- ollie.anderson&updata.net
-36821
- Local Matters, Inc.
- Joel Maslak
- jmaslak&localmatters.com
-36822
- Adaffix GmbH
- Martin J. Laubach
- mlaubach&adaffix.com
-36823
- Conference Plus, Inc.
- Anthony Graczyk
- agraczyk&conferenceplus.com
-36824
- UFPS "Tatarstan pochtasy" - filial FGUP "Pochta Rossii"
- Levkovskiy Grigory
- pki&tatpochta.ru
-36825
- Grenada Lake Medical Center
- Sarah W Longest
- sarah.longest&glmc.net
-36826
- Control Zero
- Nathan Malyon
- oid&czero.com.au
-36827
- Message Solution
- leo lu
- luping&messagesolution.cn
-36828
- CEZ, a. s.
- Ondrej Komorous
- certmaster&cez.cz
-36829
- LAGARDERE ACTIVE
- Guy WISNIEWSKI
- guy.wisniewski&lagardere-active.com
-36830
- WHATEVER MOBILE GmbH
- Kevin Fibich
- noc&whatevermobile.com
-36831
- Ratio Consulta
- Stefano Picerno
- stefano.picerno&ratioconsulta.it
-36832
- Pocket Kings Ltd
- James Beckett
- snmp&pocketkings.ie
-36833
- Authenware Corporation
- Miguel Arrighi
- miguel.arrighi&authenware.com
-36834
- Omnis Cloud
- Lou Picciano, MD
- admin&OmnisCloud.com
-36835
- Solimar Systems, Inc.
- Drew Sprague
- drew.sprague&solimarsystems.com
-36836
- Brian Carlson
- Brian Carlson
- pen&briancarlson.org
-36837
- Hangzhou Future Technology Co.,Ltd
- ZengHui
- zh&futuretel.com.cn
-36838
- GK Software AG
- Michael Opel
- mopel&gk-software.com
-36839
- Connect Informatica S.r.l.
- Giancarlo Stoppani
- giancarlo.stoppani&connectinformatica.it
-36840
- Peter Kutting IT-Services
- Yuna Kamzelak Morgenstern
- kamzelak&kutting-its.de
-36841
- Thor DMS
- Geert Kooijmans
- corp.info&thor-dms.com
-36842
- CSR Ltd
- Damian Strode
- dstrode&csr.com.au
-36843
- Valley Telegence Private Ltd
- Sonal Dighe
- sonal&valleytelegence.com
-36844
- Sozialhilfeverband Kirchdorf an der Krems
- Bernhard Winkler-Ebner
- bernhard.winkler-ebner&ki.shvki.at
-36845
- ABACOM-Ingenieurgesllschaft
- Dipl. Ing. Lothar Feldmann
- lothar.feldmann&electronic-software-shop.com
-36846
- OOO "SMU OFISSTROY"
- Ivan V Kvasnikov
- kvasnikov&o-st.ru
-36847
- International Game Technology, Inc.
- Erik Petersen
- erik.petersen&igt.com
-36848
- CRE-DO GmbH
- Guido Schnepp
- guido.schnepp&cre-do.de
-36849
- Hanwha Techwin Co., Ltd. (formerly 'Samsung Techwin Co., Ltd.')
- Jihye Lee
- jihye17.lee&hanwha.com
-36850
- Dharma Drum Buddhist College (DDBC)
- Simon Wiles
- swiles&ddbc.edu.tw
-36851
- OutputLinks, Inc.
- Andy Plata
- ap&outputlinks.com
-36852
- Bnei Baruch
- Amnon Israely
- amnonbb&gmail.com
-36853
- axilaris GmbH
- Oliver Hintzsche
- o.hintzsche&axilaris.de
-36854
- BURGO GROUP SPA
- Giuseppe Fiducia
- pen_iana&burgo.com
-36855
- Ge.Si.ass scrl
- Lamberto Abelli
- lamberto.abelli&gesiass.it
-36856
- GEDIA Gebrüder Dingerkus GmbH
- Rolf Geyer
- support&gedia.com
-36857
- Holztechnikum Kuchl
- Stefan Hauer
- support&holztechnikum.at
-36858
- THQ Inc.
- Rory Prendergast
- oid.admin&thq.com
-36859
- Ixia (formerly 'BreakingPoint Systems')
- Kris Raney
- kraney&ixiacom.com
-36860
- True Value Company
- Eric Tuttleman
- Eric.Tuttleman&truevalue.com
-36861
- Pacmed International Inc
- David Collett
- pacmedintl&yahoo.com
-36862
- Mitrol SRL
- Adrian Kowal
- akowal&mitrol.net
-36863
- sankai
- Kaiming Xu
- sankai99&126.com
-36864
- South Stream
- Markus Anthener
- helpdesk&southstream.info
-36865
- delight software gmbh
- Zurschmiede Lukas
- l.zurschmiede&delightsoftware.com
-36866
- Zott GmbH & Co. KG
- Heiko Friebel
- edv-rechenzentrum&zott.de
-36867
- Zaměstnanci.com s.r.o.
- Jan Opravil
- postmaster&up-group.org
-36868
- SignGuard Europe Ab
- Sven Peter Hellden
- sph&SIgnGuard.se
-36869
- Sofium
- Jari Jokinen
- jari.jokinen&sofiumgroup.com
-36870
- Walter Parr
- Walter Parr
- walter.parr&siemens.com
-36871
- Daylife, Inc.
- Scott Briggs
- scottb&daylife.com
-36872
- Tekno Telecom, L.L.C.
- Donald Malesh
- dmalesh&teknotelecom.com
-36873
- Wideportal IT Solutions UG (haftungsbeschränkt)
- Holger Lauinger
- holger.lauinger&wideportal.de
-36874
- Anerma Electronics b.v.b.a
- Rudy Van Hecke
- rudy.van.hecke&anerma.be
-36875
- TOYO Corporation
- Yoshiyuki Saitoh
- saitohy&toyo.co.jp
-36876
- Chongqing Rural Commercial Bank
- Junfeng Cao
- caojfeng&gmail.com
-36877
- Sundale Garden Village
- Richard Ham
- netadmin&sundale.org.au
-36878
- Insta Group Ltd.
- Minna Forsberg
- minna.forsberg&insta.fi
-36879
- New Mexico Consortium
- Andree Jacobson
- andree&newmexicoconsortium.org
-36880
- tolj.org system architecture
- Stipe Tolj
- st&tolj.org
-36881
- Simon Josefsson Datakonsult AB
- Simon Josefsson
- simon&josefsson.org
-36882
- Texas Department of Transportation
- Justin Krause
- Justin.Krause&txdot.gov
-36883
- Modernizing Medicine, Inc.
- Daniel Cane
- contact&modernizingmedicine.com
-36884
- ESE (Mod-Electronics Inc.)
- David Pitts
- dpitts&ese-web.com
-36885
- CImbal Inc.
- Yuri Drozd
- yuri&cimbal.com
-36886
- Oliver Wyman Group
- Brendan Welter
- brendan.welter&oliverwyman.com
-36887
- ArtPlant
- Maxim Pushkar
- archon&mail.ru
-36888
- E-Formation GmbH
- Jens Bradler
- jbradler&eformation.de
-36889
- China Bluedon information security technology co., ltd
- ZhiLiang.Shen
- shenzhi&163.com
-36890
- future Training & Consulting GmbH
- Frank Nausedat
- frank.nausedat&futuretrainings.com
-36891
- Nomadic Technologies Inc.
- Myongsu Choe
- msc&nomadictechs.com
-36892
- Axel Springer SE
- Niko Alandt
- niko.alandt&axelspringer.de
-36893
- Takacom Corporation
- Takahiro Yokota
- yokota&takacom.co.jp
-36894
- Compagnie Européenne des Emballages Robert Schisler
- Jean-Emmanuel Hallopé
- jean-emmanuel.hallope&ceeschisler.fr
-36895
- Guangdong Newstart Technology Service Co.,Ltd
- Wangfang
- wang.fang&gd-linux.com
-36896
- Quality Manager Plus AS
- Per Abich
- per&qmplus.net
-36897
- OEConnection LLC
- John Kelly
- JOHN.KELLY&OECONNECTION.COM
-36898
- Finning (Canada)
- Clint Garden
- cgarden&finning.ca
-36899
- CEVA Sante Animale
- Nicolas PRADIER
- nicolas.pradier&ceva.com
-36900
- Atricore, Inc.
- Sebastian Gonzalez Oyuela
- sgonzalez&atricore.com
-36901
- Art Is Rebellion
- Steve Braun
- iana-pen&artisrebellion.com
-36902
- OneWaiheke
- Andrew Watkins
- OneWaiheke&gmail.com
-36903
- Osyris
- Miguel Zuniga
- miguelzuniga&gmail.com
-36904
- Legion Telekommunikation GmbH
- Robert Schlabs
- sysadmin&legion.de
-36905
- MedCentral Health System
- Michael Mistretta
- mmistretta&medcentral.org
-36906
- Institute for Internet Technologies and Applications
- Andreas Steffen
- andreas.steffen&hsr.ch
-36907
- Luggage Pros
- Matt Janssen
- matt&luggagepros.com
-36908
- Research Industrial Systems Engineering (RISE) Forschungs-, Entwicklungs- und Großprojektberatung GmbH
- Andreas Ntaflos
- andreas.ntaflos&rise-world.com
-36909
- Bison IT Services AG
- Jimmy Rüedi
- jimmy.rueedi&bison-its.ch
-36910
- Pacific Communications
- Mark Shannon
- ip&pacom.com.au
-36911
- EEtrust
- Carter Chang
- changj&eetrust.com
-36912
- Lenglet imprimeurs
- Marie SAVARY
- msavary&lenglet-imprimeurs.fr
-36913
- Asociación Cooperativa Sutronix, R.L.
- Luis Urdaneta
- luis_urdaneta&interlink.net.ve
-36914
- Square, Inc.
- Robert Liesenfeld
- ops&squareup.com
-36915
- ALFATRUST CERTIFICATION S.A.
- Calugareanu Ciprian Marius
- office&alfasign.ro
-36916
- Gemeente Groningen
- Henk Klöpping
- henk&snow.nl
-36917
- Tunz.com
- Thierry Coopman
- thierry&tunz.com
-36918
- Altran
- Antero Santos
- antero.santos&altran.pt
-36919
- Mentana - Claimsoft GmbH
- Juergen Ludyga
- pen.iana&mentana.de
-36920
- Yearsun Industrial Co., Ltd.
- Fei Jung Kuo
- simon&yearsun.com.tw
-36921
- LLC SIBUR
- Shubin Aleksey
- noc&sibur.ru
-36922
- Eurohueco S.A.
- Jannigje Herzog
- jherzog&arvato-print.es
-36923
- schlott gruppe Aktiengesellschaft
- Werner Simon
- werner.simon&schlottgruppe.de
-36924
- Doosan Power Systems Limited
- Marcus Wrightson
- mwrightson&doosanpowersystems.com
-36925
- Heinrich Schmid Systemhaus GmbH & Co. KG
- Alexander Lerner
- a_lerner&heinrich-schmid.de
-36926
- Prime Therapeutics
- Ted Blakley
- tblakley&primetherapeutics.com
-36927
- Innovasic Semiconductor Inc
- David Alsup
- dalsup&innovasic.com
-36928
- Technical University of Lodz Computer Center
- Pawel Szychowski
- pawel.szychowski&p.lodz.pl
-36929
- Vitri Solutions Private Limited
- Reesha Padmanabh
- reesha.padmanabh&vitrisystems.com
-36930
- Zoe Evangelistische Vereinigung
- Patrick Zahnd
- atreju&gmx.ch
-36931
- Aboagye Okyere Emmanuel
- Aboagye Okyere Emmanuel
- eaboagyeokyere&yahoo.com
-36932
- Zetetic LLC
- Stephen Lombardo
- sjlombardo&zetetic.net
-36933
- PXL S.C. ARL
- Giovanni Pico
- g.pico&pxl.it
-36934
- Lemco Electronics
- Lempidakis Constantinos
- info&lemco.gr
-36935
- Kentuckiana Pride Foundation
- Aaron J Angel
- aaron.angel&kypride.com
-36936
- Clinical Software Solutions
- Bryan Jones
- bryan.jones&clin1.com
-36937
- Alphasoft Nederland
- Henk Klöpping
- henk&fortean.org
-36938
- Profweb
- Jonathan-Marc Lapointe
- jmlapointe&profweb.qc.ca
-36939
- Sentinela Security Ltda.
- Vinícius da Silveira Serafim
- serafim&sentinelasecurity.com.br
-36940
- TLO
- Jason Rowe
- itsecurity&tlo.com
-36941
- Solekai Systems Corporation
- Kert Jans
- kjans&solekai.com
-36942
- KAVECO-Workflow
- Kees Verduin
- kees&kees-verduin.nl
-36943
- Venice International University
- Alessandro De Rossi
- sysadmin&univiu.org
-36944
- ANO "TV-Novosti"
- Paul Garmashov
- pgarmashov&rttv.ru
-36945
- Advance Milles System Co.,Ltd.
- Andy Huang
- andy775211&hotmail.com
-36946
- Web Technology Projects ltd.
- Ivan Soshnikov
- ivan&wtp.su
-36947
- Multilab AS
- Kai-W. Nessler
- kai&multilab.no
-36948
- OpenIT GmbH
- OpenIT Admins
- admins&openit.de
-36949
- GFI
- Mathieu BERTRAND
- mbertrand&gfi.fr
-36950
- Dédalo Helicolor S.A.
- Raúl Campos Muñoz
- rcampos&dedalogrupografico.es
-36951
- Southern Illinois Univeristy
- Michael A. Shelton
- admin&siu.edu
-36952
- Kunming Railway Signalling And Telecommunications Department
- Zhang Shaowei
- z_sw&hotmail.com
-36953
- VOX - Norwegian Agency for Lifelong Learning
- Rolf Johannessen
- rolf.johannessen&vox.no
-36954
- 42 Units - IT, Ltd.
- Paul Garmashov
- adm&42u.it
-36955
- ELSIST Srl
- Sergio Bertana
- sbertana&elsist.it
-36956
- SEMATECH
- Mark Porter
- mark.porter&sematech.org
-36957
- libvirt
- Daniel Veillard
- daniel&veillard.com
-36958
- Receptive IT
- Alex Ferrara
- alex&receptiveit.com.au
-36959
- The Cellars Group LLC
- Tom Blakely
- tfb&thecellarsgroup.com
-36960
- TPH Acquisitions LLLP
- Thomas Blakely
- tblakely&thepartshouse.com
-36961
- BOC GmbH
- Ronny Sommer
- boc&boc-de.com
-36962
- Advertiser Technologies
- Diogo Carlos Fernandes
- diogo&advertiser.com.br
-36963
- Communications Supply & Support Limited
- Hugh Wills
- hugh.wills&comss.co.uk
-36964
- Arkodia Technologies, LLC
- Pete Beazley
- admin&arkodia.com
-36965
- CriptoTec
- Luis Fernando Pardo
- luis.pardo&criptotec.es
-36966
- CCDMD
- Jonathan-Marc Lapointe
- jmlapointe&ccdmd.qc.ca
-36967
- FNet
- Fabrice Bucher
- contact&dafab.ch
-36968
- Ocom Communications, Inc.
- Yogi Yao
- Yogi.Yao&Ocom.com.tw
-36969
- NELLS Electronic Systems, Inc.
- Nells K S
- louisnells&gmail.com
-36970
- FinanceScout24 GmbH
- Elmar Weber
- iana-pen&financescout24.de
-36971
- Transcend Communication Beijing Co.,Ltd
- Nancy Guan
- gxy&transcendcom.cn
-36972
- Banco Central de Honduras
- Edy Javier Milla Reyes
- edy.milla&bch.hn
-36973
- Phoenix Capital
- Andriy Yemets
- admin&phnx.com.ua
-36974
- Costain Group PLC (formerly 'Simulation Systems Ltd')
- Regis Grosclaude-Galland
- regis.galland&costain.com
-36975
- UrgentCare Works, LLC
- J. Pepper Garretson
- pgarretson&poseidongroup.com
-36976
- Critter bvba
- William Leemans
- wle&critter.be
-36977
- Eloqua Corporation
- Dave Kuyper
- domain&eloqua.com
-36978
- Pico Digital Inc
- Cameron Esfahani
- cesfahani&picodigital.com
-36979
- accumio GmbH
- Juergen Schmied
- juergen.schmied&accumio.de
-36980
- Steinle Solution-Factory GmbH
- Jochen Schmidt
- jochen&steinle.net
-36981
- Kindersprachscreening
- Andreas Bodensohn
- info&kindervorsorgezentrum.com
-36982
- UNESCO-IHE
- Roel Noorman
- r.noorman&unesco-ihe.org
-36983
- Kiwilight.com Limited
- Kaiting Chen
- kaitocracy&gmail.com
-36984
- TAO Beratungs- und Management GmbH
- Leonhard Preis
- administration&tao.at
-36985
- Sewar Technologies
- Rayed Alrashed
- rrashed&wirefilter.com
-36986
- Piratenpartei Oesterreichs
- Leonhard Preis
- technik&piratenpartei.at
-36987
- OnVPS
- Tres Wong-Godfrey
- tres.wong-godfrey&onvps.com
-36988
- host4u.at
- Markus Hof
- office&host4u.at
-36989
- BEIJING XINGHUA BRAINRUST TECHNOLOGY CO.,LTD
- Wei Zhang
- 15910798928&163.com
-36990
- Prinovis Nuernberg GmbH
- Roland Peters
- netcontrol&prinovis.com
-36991
- CASTEL
- Ali MAHMOUD
- ali.mahmoud&castel.fr
-36992
- SystemGroup
- Dmitriy Kim
- Dmitriy.Kim&systemgroup.com.ua
-36993
- Lucid Design Group
- Chris Haumesser
- sysadmin&luciddg.com
-36994
- Fastnet
- Olivier Bourgeois
- postmaster&fastnet.ch
-36995
- akrido.net
- Jonathan-Marc Lapointe
- jmlapointe&akrido.net
-36996
- Fordingbridge Computer Services
- Chris Dennis
- chris&fbcs.co.uk
-36997
- XuZhou Medical College
- Li Jian
- lijian&xzmc.edu.cn
-36998
- MTek Enterprises, LLC
- Bradley Morris
- hostservant&mtekentp.com
-36999
- Instituto de Tecnologia Química e Biológica
- Daniel Feliciano Branco
- iana-pen&itqb.unl.pt
-37000
- Joel Hatcher
- Joel Hatcher
- jshtux&gmail.com
-37001
- MindShift Corp
- Andrew K Sharicz
- andrew.sharicz&mindshift.com
-37002
- Diversified Control, Inc.
- Lewis G. James
- lewjames&divcon.net
-37003
- Vertu
- Kevin Quigley
- kevin.quigley&vertu.com
-37004
- VMTurbo
- Shai Benjamin
- sheyeh&vmturbo.com
-37005
- Medizinische Einrichtungen des Bezirks Oberpfalz GmbH
- Michael Raith
- info.pki&medbo.de
-37006
- Koger, Inc.
- Juraj Tomasov
- juraj.tomasov&kogerusa.com
-37007
- LOGIWAYS
- Thierry Lelegard
- thierry.lelegard&logiways.com
-37008
- Cleopatra
- Esteve Blanch Sanmartí
- esteve&esteveblanch.cat
-37009
- CHIP-N LLC
- Roman Eikine
- roman&chip-n.ru
-37010
- Saguna Networks LTD
- Evgeny Mugerman
- evgeny&saguna.net
-37011
- KFSoftware
- Mr Kieran Foot
- KieranFootPrivate&hotmail.com
-37012
- Bestgo.pl Sp. Z O.O.
- Kamil Kurzyk
- admin&bestgo.pl
-37013
- eoswan
- Juan Manuel Martinez
- info&eoswan.com
-37014
- Hanming Technology Co., Ltd
- He Jianhui
- flashrainy&163.com
-37015
- Harms Consulting Pty Ltd
- Josh Levy
- support&harmsconsulting.com
-37016
- Unicredit S.P.A.
- Francesco Oliva
- francesco.oliva1&unicreditgroup.eu
-37017
- NATION Technologies Group, Inc
- Rod Meli
- VP.Technology&nationtechnologies.com
-37018
- Phabrix
- Pete Fraser
- pete&phabrix.com
-37019
- LANOS Computer GmbH & Cie KG
- Hans-Juergen Fockel
- hansjuergen.fockel&lanos.de
-37020
- Dichotomia
- Jerome Herman
- jherman&dichotomia.fr
-37021
- ScandFibre Logistics AB
- Mats Berlin
- mats.berlin&scandfibre.se
-37022
- Scientific and Production Company Granch Ltd.
- Rashid N. Achilov
- achilovrn&granch.ru
-37023
- KazTransCom JSC
- Azamat T. Shymbolat
- a.shymbolat&kaztranscom.kz
-37024
- edv neubrand
- martin neubrand
- neu.brand&gmx.de
-37025
- Maverick Wireless Solutions Private Limited
- Shyamal Kumar
- shyamal.kumar&mavericknets.com
-37026
- Mylab Oy
- Petri Heikkilä
- admin&mylab.fi
-37027
- rc-tec GmbH
- Christoph Reichl
- c.reichl&rc-tec.at
-37028
- Fernwaerme Ulm GmbH
- Werner Straehle
- it-service&fernwaerme-ulm.de
-37029
- Technology On Demand, Inc.
- Ed Mana
- emana&technologyondemand.com
-37030
- G4S Technology Limited
- Kevin Hollingworth
- kevin.hollingworth&usa.g4s.com
-37031
- Studio MekTek, Inc
- Vince McMullin
- vincem&mektekdev.com
-37032
- RR Donnelley Europe Sp. z o.o.
- Krzysztof Bar
- krzysztof.bar&rrd.com
-37033
- Eden Rock Communications
- Beesun Liou
- beesun.liou&edenrockcomm.com
-37034
- Goatrace Ltd
- Keith Young
- goatraceltd&gmail.com
-37035
- Kitami Institute of Technology
- Hiroshi Masui
- hgmasui&mail.kitami-it.ac.jp
-37036
- Geekerati
- Eric Fehr
- eric&regolith.net
-37037
- America First Federal Credit Union
- Doug Youngberg
- dyoungberg&americafirst.com
-37038
- ComplexNet Ltd.
- Tamas Gergely Peter
- info&complexnet.hu
-37039
- EtherWorks Pty. Ltd.
- Terry Hoppitt
- dns&etherworks.com.au
-37040
- GoldCard spol. s r. o.
- Antonin Hanacek
- hanacek&goldcard.cz
-37041
- Thales Alenia Space España
- Ana Yun García
- ana.yungarcia&thalesaleniaspace.com
-37042
- Bee Software Inc.
- Jilei Xie
- xjl&99jsj.com
-37043
- Irkutsk regional clinical hospital
- Alexander Puschenko
- puschenko_aa&iokb.ru
-37044
- DINEC International
- Luc Van Walleghem
- lvw&dinec.be
-37045
- LexisNexis Univentio B.V.
- Daniel Knippers
- dknippers&univentio.com
-37046
- Fjord Technology UG (haftungsbeschränkt)
- Martin Hoppe
- info&fjord-technology.com
-37047
- InterCard Kartensyteme GmbH
- Chris Bartl
- c.bartl&intercard.org
-37048
- Tetra Tech Inc.
- Bill Purrier
- bill.purrier&tetratech.com
-37049
- UFCSPA
- Klaus Engelmann
- klaus&ufcspa.edu.br
-37050
- Techyond Inc.
- Frank Lafitte
- frank.lafitte&techyond.com
-37051
- Oliver Roll
- Oliver Roll
- mail&oliver-roll.com
-37052
- and One Inc.
- Makoto Dei
- support&andone.co.jp
-37053
- MMR Network Management Science & Technology Co., Ltd
- HaoQing Shi
- mr_shq&163.com
-37054
- AirP Systems LLC
- Randy Prakken
- randy&airpsystems.com
-37055
- JM Properties
- Jerome Kaidor
- jerry&jm-properties.com
-37056
- ATM Japan, Ltd.
- Ohtsuka, Mitsuo
- ohtsukamo&atmj.co.jp
-37057
- Quickpay Ltd. (formerly 'MPS Quickpay')
- Andrew Kochetkov
- a.kochetkov&quickpay.ru
-37058
- thockar IT consulting
- Thomas Eckardt
- Thomas.Eckardt&thockar.com
-37059
- Command and Control Systems
- Mike Hall
- mike.hall&ultra-ccs.com
-37060
- Silicon & Software Systems Ltd.
- Conor O'Donoghue
- conor.odonoghue&s3group.com
-37061
- Sargento Foods Inc.
- Tim Melis
- msadmins&sargento.com
-37062
- RigNet, Inc.
- Mordecai Black
- cai.black&rig.net
-37063
- SARL AEGLE INFORMATIQUE MEDICALE
- Philippe Brun
- philippe.brun&aegle.fr
-37064
- The University of Kitakyushu
- Teruaki Egami
- josen-p&kitakyu-u.ac.jp
-37065
- COTEK ELECTRONIC IND.CO.,LTD
- Donald Yang
- donald&cotek.com.tw
-37066
- OE INVESTMENTS LIMITED
- Vladimir Kozhukalov
- v.kozhukalov&qiwi.ru
-37067
- Centrum Rozwoju Szkół Wyższych TEB Akademia sp. z o.o.
- Szymon Winiarz
- s.winiarz&teb-akademia.pl
-37068
- Arizona Coppersoft
- Glen Hein
- ghein&azcoppersoft.com
-37069
- Broadband Antenna Tracking Systems
- Del Smyser
- dsmyser&batswireless.com
-37070
- RadioOpt GmbH
- Ernesto Zimmermann
- ernesto.zimmermann&radioopt.com
-37071
- Sofistone Oy
- Arttu Laine
- sofistone.oid&sofistone.com
-37072
- Lantech Communications Global, Inc.
- Stone Hsu
- stone&lantechcom.tw
-37073
- BEIJING JETSEN TECHNOLOGY CO.,LTD
- wang zhen shan
- wangzhenshan&jetsen.cn
-37074
- Assam Electronics Development Corporation Limited (AMTRON)
- Mahendra Kumar Yadava
- md&amtron.in
-37075
- rootsys
- Riccardo Bassi
- admin&rootsys.it
-37076
- IPETRIK
- Ing. Ivan Petrik
- ivan.petrik&ipetrik.cz
-37077
- Albuquerque Public Schools
- Davis Lee
- lee_d&aps.edu
-37078
- Nor1, Inc.
- Derrald Vogt
- derrald.vogt&nor1.com
-37079
- Wofford College
- J. Bart Casey
- caseyjb&wofford.edu
-37080
- 3VR Security, Inc.
- Marcus Marinelli
- marcus&3vr.com
-37081
- Wicked Trickster LLC
- Jessie Rourke
- iana-admin&wickedtrickster.com
-37082
- Ministry of Finance
- Keyura Chainapong, Prinya Pridiyanon
- kyura898&mof.go.th
-37083
- Blok Software Development (BlokSoft)
- Tsadok Moshe Blok
- m3rlin.liza&gmail.com
-37084
- 9h37
- Florian Le Goff
- penadmin&9h37.fr
-37085
- KDS
- Sébastien Kremer
- skremer&kds.com
-37086
- Elemental Technologies, Inc.
- Greg Truax
- gregt&elementaltechnologies.com
-37087
- Holy Cross Energy
- Tony May
- itdepartment&holycross.com
-37088
- Teamsourcing Cia. Ltda.
- Javier Valencia
- jvalencia&teamsourcing.com.ec
-37089
- Mediengruppe Pressedruck Dienstleistungs-GmbH & Co. OHG
- Michael Gruenzweig
- michael.gruenzweig&presse-druck.de
-37090
- OUVREZLABOITE
- YVES MARTIN
- yves.martin&ouvrezlaboite.com
-37091
- Orion Virtualisation Solutions Pty Limited
- Sheng Yeo
- sheng.yeo&orionvm.com.au
-37092
- CJ Computers
- Chris Barron
- webmaster&cjcomputers.dyndns-server.com
-37093
- Consolidated Edison Company of New York Inc
- John Lim
- limj&coned.com
-37094
- MadPilot Productions
- Myles Eftos
- myles&madpilot.com.au
-37095
- GH-Informatik GmbH.
- Helmut Ghirardini
- helmut.ghirardini&ghi.co.at
-37096
- Dongnian Networks Inc
- Dan Yao
- dan&dongniannetworks.com
-37097
- UkSATSE
- Ruslan Fesenko
- rfesenko&uksatse.org.ua
-37098
- Ingenieursbureau Ebatech BV
- Dennis Koot
- d.koot&ebatech.nl
-37099
- Itautec S.A.
- Fausto Murari
- fausto.murari&itautec.com
-37100
- Endai Worldwide
- Lukasz Ochoda
- lochoda&endai.com
-37101
- Quelltext AG
- Arndt Schönewald
- pen&iana881x7712.mc.schoenewald.de
-37102
- Wind mobile
- Henry Zheng
- hzheng&windmobile.ca
-37103
- Infinetix Corp.
- Ken Farr
- kfarr&infinetix.com
-37104
- Pebble Beach System Ltd
- Gavin Smith
- gavin.smith&pebble.tv
-37105
- Secure Systems and Technologies Ltd
- Mr Paul Massey
- paul.massey&sst.ws
-37106
- RazorThreat, Inc.
- Vernon Smith
- vsmith&razorthreat.com
-37107
- Manitoba Telecom Services
- Michael Jamieson
- michael.jamieson&mtsallstream.com
-37108
- DonbassInformCommunicationService
- Dmitriy Krivoruchko
- dk&dics.com.ua
-37109
- SMS Data Products Group, Inc.
- David Ishmael
- dishmael&sms.com
-37110
- Altera Corporation
- Mukul Kumar
- mkumar&altera.com
-37111
- Institute for Clinical and Experimental Medicine
- Jiri Amler
- jiri&amler.cz
-37112
- Infosol d.o.o.
- Damir Jurica
- iana&info-sol.net
-37113
- Chita State University
- Evgeny Dranichnikov
- dranichnikov&chitgu.ru
-37114
- Christian Aid
- Duncan Drury
- iops&christian-aid.org
-37115
- VIVA SOFT LTD
- Alexander Alexandrov
- alexandrov&vivasecurity.com
-37116
- Instituto Nacional de Seguros
- Luis Cárdenas
- lcardenas&ins-cr.com
-37117
- Industrial Thinking Ltd
- Bill Graham
- oid&industrialthinking.com
-37118
- Panoramic Data
- David Bond
- david.bond&panoramicdata.com
-37119
- Object ECM AG
- Björn Abt
- bjoern.abt&object.ch
-37120
- Velocent Systems Inc.
- Randy Johnson
- rwj&velocent.com
-37121
- Eiritu Equipment Technology Co.,Ltd
- Hiroshi Tarumi
- tarumi&eiritu.co.jp
-37122
- EVOTRIX SYSTEMS
- PRITAM PAUL
- pritam&evotrix.com
-37123
- BYTIS Ltd.
- Smaliak Siarhei
- cc&bytis.by
-37124
- beatandmusic media GmbH
- Bastian Menningen
- admin&beatandmusic.com
-37125
- Omega Cube
- Guillaume Seigneuret
- gs&omegacube.fr
-37126
- syn2cat a.s.b.l.
- Georges Toth
- iana&hackerspace.lu
-37127
- SuperLumin Networks
- Douglas Merrill
- doug.merrill&superlumin.com
-37128
- bo.lt
- Ben Smith
- it&boltnet.com
-37129
- Project 76
- Jamie Stallwood
- snmp&project76.net
-37130
- Miroslav Mrakota
- Miroslav Mrakota
- mirek&mrakota.cz
-37131
- Unioncast Network Technology Co.,LTD,BeiJing
- Jiang Fei
- fei.jiang&unioncast.net
-37132
- Friedrich Kuhnt GmbH
- Wilfried Röben
- produktion&kuhnt.de
-37133
- Reverse-Logic Ltd.
- Zoltan Riba
- riba.zoltan&gmail.com
-37134
- MackTECH GmbH
- Joachim Mack
- support&macktech.de
-37135
- oscardijkhoff.nl
- Oscar Dijkhoff
- admin&oscardijkhoff.nl
-37136
- Crawford and Company
- Winfield Terry
- win_terry&us.crawco.com
-37137
- Reilly Telecom Inc.
- James Reilly
- jreilly&reillytele.com
-37138
- tibra
- omar kheir
- omar.kheir&tibra.com
-37139
- Deep-Secure Ltd
- Simon Wiseman
- Simon.Wiseman&Deep-Secure.com
-37140
- Guavus Inc
- Bijay Singh Bisht
- bijay.singh&guavus.com
-37141
- MUWA-Spelle
- Mischa Schiffelbein
- info&muwa-spelle.com
-37142
- Actua
- Helge Jensen
- hej&actua.dk
-37143
- in-put GbR - Das Linux-Systemhaus
- Mr. Stefan-Michael Guenther
- s.guenther&in-put.de
-37144
- Viktor Gruber
- Viktor Gruber
- info&gv-its.de
-37145
- MedicVision
- Shai Attia
- shai&medicvision.com
-37146
- Unitrin Services Group
- Dev Davuluri
- distsys&unitrin.com
-37147
- Alveole Studio
- RIBEYRON Sylvain
- contact&alveole-studio.com
-37148
- burak özen
- burak özen
- burakozen2004&gmail.com
-37149
- OnLineDB ltd
- Arthur Sokolov
- Arthur.Sokolov&OnLineDB.ru
-37150
- Surtronic International B.V.
- John Vermaas
- jvermaas&surtronic.nl
-37151
- Cross Domain Technical Forum
- Boyd Fletcher
- cds_snmp&nsa.gov
-37152
- France Net Com
- Raouf Habib
- raouf.habib&francenetcom.com
-37153
- srnjak.com
- Grega Krajnc
- grega.krajnc&srnjak.com
-37154
- Junction Software Ltd
- Greg Hughes
- greg&junctionsoftware.co.uk
-37155
- ByteActive AB
- Anders Tormod
- anders.tormod&byteactive.com
-37156
- Hangzhou Lancable Technology Co.,ltd
- Jimmy Sun
- jimmy&blue-link.cn
-37157
- NetentSec Inc.
- ZhongYuan Guo
- zhongyuan_guo&netentsec.com
-37158
- cynix.org
- Brian Chu
- cynix&cynix.org
-37159
- SCK-CEN
- Luc Vandenbroucke
- luc.vandenbroucke&sckcen.be
-37160
- Continium Ltd.
- Valeria Derevenskaya
- valeri&continium.biz
-37161
- Mobis Ltd
- George Shegunov
- mobis&netplus.bg
-37162
- Softperience
- Radosław Smogura
- rsmogura&softperience.eu
-37163
- IPS - International Power Supply
- Alexander Rangelov
- ar&ips-group.net
-37164
- IMage INTelligence (IMINT)
- Rodolphe Saunier
- rodolphe.saunier&free.fr
-37165
- Kivanc Oskay
- Kivanc Oskay
- kivanc&oskay.web.tr
-37166
- Seillac Co., Ltd.
- Ichiro Sakada
- ichiros&seillac.com
-37167
- Infrafuture Inc.
- Prakash Patil
- prakashp&infrafuture.com
-37168
- CorpGenie
- Aashish Jha
- jha.aashi&gmail.com
-37169
- Xeirius Solutions
- Prashant Singh Ahluwalia
- prashant&xeirius.com
-37170
- SoftwareMind
- Dariusz Zbik
- d.zbik&softwaremind.pl
-37171
- Dipl.-Ing. (BA) Thomas Knoblauch
- Thomas Knoblauch
- iana-pen&netz-en.de
-37172
- Wired Informática e Sistemas Lda
- José Filipe Mendes Rodrigues
- jrodrigues&wired-tech.com
-37173
- Kluwer
- Arno Broekhof
- abroekhof&kluwer.nl
-37174
- STEP Networks Inc
- Paul Woolcox
- pwoolcox&stepnetworks.com
-37175
- NovoLink Communications
- Fernando Lombardo
- flombardo&novolink.com
-37176
- Integrated Products Inc
- Ray Rutledge
- rayr&integratedproductsinc.com
-37177
- Southern Oregon University
- Daniel DeFreez
- netadmin&sou.edu
-37178
- Alquist Consulting Ltd
- Andrew Jones
- andrew.jones&alquist.co.uk
-37179
- Ab Ovo Nederland BV
- Lex Brinkhuijsen
- pensnmp&ab-ovo.com
-37180
- Centric Corporation
- Peter House
- peter.house&centricsystems.com
-37181
- IP Technology Labs
- Paul Cutler
- paul&iptechnologylabs.com
-37182
- Viewteq Corp.
- Richard Scully
- richards&viewteq.com
-37183
- Cipherdyne
- Damien Stuart
- dstuart&cipherdyne.org
-37184
- Aptus Interactive Ltd
- William Lewis
- william&aptusinteractive.com
-37185
- AMERSPORTS
- Pierre GAILLY
- iana-contact&amersports.com
-37186
- Perfecto Mobile
- Yoram Mizrachi
- yoramm&perfectomobile.com
-37187
- Premier Manufacturing Support Services Poland Sp. z o.o.
- Tomasz Gwozdz
- tomasz.gwozdz&premiermss.com.pl
-37188
- eTellicom Pty Ltd
- Raul Fragoso
- raul&etellicom.com
-37189
- Audit Grup Ltd.
- Vladimir V. Losev
- losev&auditgr.ru
-37190
- Tecisa74 S.L.
- Ignacio Cortes Soro
- icortes&tecisa74.com
-37191
- Androscoggin Valley Hospital
- Ryan J. Taylor
- ryan.taylor&avhnh.org
-37192
- INSTITUTO FEDERAL DO PARÁ - IFPA
- RICARDO JOSÉ CABEÇA DE SOUZA
- ricardo.souza&ifpa.edu.br
-37193
- REACH Global Services
- Matthew W D ROBERTSON
- matthew.robertson&reach.com
-37194
- Gaba Corporation
- Patrick Hoferer
- phoferer&gaba.co.jp
-37195
- connect co.Ltd
- Shouichi Maruyama
- s.maruyama&connect-net.co.jp
-37196
- Tieline Technology
- Anthony Sizer
- sizer&tieline.com
-37197
- Oberfinanzdirektion Niedersachsen
- Ralf Möhse
- ralf.moehse&ofd-z.niedersachsen.de
-37198
- SoftAgency Co., Ltd.
- Satoshi Tatsuoka
- satoshi&softagency.co.jp
-37199
- Zentrum fuer Informationstechnologie kreuznacher diakonie
- Klaus Kruse
- zitinfotec&kreuznacherdiakonie.de
-37200
- S&L ITcompliance GmbH
- Götz Schmitt
- info&sul-itcompliance.de
-37201
- S&L Netzwerktechnik GmbH
- Götz Schmitt
- info&sul.de
-37202
- United Network for Organ Sharing
- Blaine Hess
- hessbt&unos.org
-37203
- Global Telecom Tools, LLC
- Chris Sibley
- chris.sibley&globaltelecomtools.com
-37204
- Maxxess Systems, Inc.
- Ryan Haney
- PEN&maxxess-systems.com
-37205
- SAMPENSION KP LIVSFORSIKRING A/S
- Henrik Ellesø
- Servicedesk&sampension.dk
-37206
- FEMSWISS AG
- Daniel Keller
- keller&femswiss.com
-37207
- Astrium Services - GEO-Information division
- Noel Hardy
- noel.hardy&infoterra-global.com
-37208
- Embedded Planet
- Tim Van de Walle
- vandewallet&embeddedplanet.com
-37209
- San Francisco Department of Public Health
- Winona Mindolovich
- winona.mindolovich&sfdph.org
-37210
- The Monkeysphere Project
- Daniel Kahn Gillmor
- dkg&fifthhorseman.net
-37211
- Fontana Unified School District
- David Araujo
- DavidA&fusd.net
-37212
- Yamaha motor solutions xiamen
- chen hongbin
- chen_hongbin&ymsl.com.cn
-37213
- RS Automation Co.,Ltd.
- Brian Chun
- bhchun&rsautomation.co.kr
-37214
- Aeromaritime Systembau GmbH
- Michael Simon
- noc&aeromaritime.de
-37215
- MicroWorld Technologies Inc.
- Mr. Govind Rammurthy
- govind&escanav.com
-37216
- Clickstream Technologies Plc
- Jon Baldachin
- ops&clickstream.com
-37217
- Entanet International Ltd.
- Jake Smith
- jake&enta.net
-37218
- SZM.com s.r.o.
- Milan Igrini
- szm&szm.com
-37219
- Wandertec
- Frank Koenen
- frank&bikeshophub.com
-37220
- cPacket Networks Inc.
- Hari Miriyala
- hari&cpacket.com
-37221
- TerraVision Pty Ltd
- Keven Weber
- keven&sat.com.au
-37222
- ALLCLEAR
- John Lin
- pen&allclear.cc
-37223
- Integra-S
- Astafiev Aleksey
- astafiev&integra-s.com
-37224
- international west trading ltd
- hakan akgun
- hakan_ak&hotmail.co.uk
-37225
- eParadeigma, LLC
- Matt Johnson
- mattj83&gmail.com
-37226
- Polizei Saarland
- Ralf Stoll
- lka-saarland-iana&polizei.slpol.de
-37227
- INC Technologies
- Karim E.E. Sabaa
- ksabaa&inc.com.kw
-37228
- HandcraftIT
- Jimmy Myerscough
- dns&handcraftit.biz
-37229
- Applied-Intelligence GmbH
- Andreas Hecker
- andreas.hecker&applied-intelligence.de
-37230
- Modulo Consulting
- Ion Nistor
- ion.nistor&modulo.ro
-37231
- University of Plovdiv
- Atanas Terziyski
- atanas&uni-plovdiv.bg
-37232
- GTS-Thaumat XXI, S.A.
- Alfredo Garcia
- thaumat&thaumat.com
-37233
- Void Sistemas S.L
- Ariel Pedrera Valdes
- apedrera&void.es
-37234
- Xuzhou Normal University
- WeiZhang
- wzhang&xznu.edu.cn
-37235
- Gen Energija d.o.o.
- Robert Pozun
- robert.pozun&gen-energija.si
-37236
- Stantech Communications Solutions, Inc.
- Barry Stanton
- bastanto&hotmail.com
-37237
- Metabolon
- Hongping Dai
- hdai&metabolon.com
-37238
- Bateau Limited
- Graham Horne
- hostmaster&bateau.co.uk
-37239
- MKM Bilgisayar Danismanlik ve Egitim Hizmetleri San. ve Tic. Ltd. Sti.
- Murad BASDAG
- basdagm&mkm.com.tr
-37240
- Joerg Riesmeier
- Joerg Riesmeier
- iana-pen&riesmeier.de
-37241
- Grupo Soares da Costa SA
- Américo Nascimento
- americo.nascimento&soaresdacosta.pt
-37242
- Zerolag Communications
- Greg Strelzoff
- noc&zerolag.com
-37243
- Everyone Counts, Inc.
- Ryan Nideffer
- ryan.nideffer&everyonecounts.com
-37244
- ZigBee Alliance, Inc.
- Bill Chase
- bchase&inventures.com
-37245
- Fusion Crypto
- Melvin Jeddeloh
- melvin.jeddeloh&fusioncrypto.com
-37246
- Zerfowski
- Olaf Zerfowski
- iana.org&zerfowski.de
-37247
- Thales Solutions Asia
- Christopher Ong
- chris.ong&asia.thalesgroup.com
-37248
- JoongboTech Co, LTD.
- Jaeho, Min
- jhmin&joongbotech.com
-37249
- Amicon Ltd
- Alexey Novotorzhin
- novotorjin&amicon.ru
-37250
- Grid2Home
- Don Sturek
- dsturek101&yahoo.com
-37251
- eVent Medical Inc
- Johnny Chan
- j.chan&event-medical.com
-37252
- Image Video
- Bob Crowder
- bcrowder&imagevideo.com
-37253
- Energy Aware Technology Inc.
- Colby Gore
- colby.gore&energy-aware.com
-37254
- Intronis, Inc.
- Steven Frank
- sfrank&intronis.com
-37255
- Mirada
- Kelly Bergougnoux
- kelly&mirada.com
-37256
- Mendeley Ltd
- Robin Stephenson
- sysadmin&mendeley.com
-37257
- die | brueckenschlaeger
- Niklas E. Cathor
- niklas&brueckenschlaeger.de
-37258
- Telekomunikacije RS AD Banja Luka
- Mirko Obradovic
- mirko.obradovic&mtel.ba
-37259
- Netic A/S
- Thomas Rasmussen
- info&netic.dk
-37260
- XIAN ZIKING NETWORK COMMUNICATIONS CO.,LTD.
- Xiu Yu Yin
- xyyin&ziking.net
-37261
- University of Shkodra
- Sokol Lahi
- sokol_lahi&yahoo.com
-37262
- Sabrefin Limited
- Mark Brown
- mark.brown&sabrefin.co.uk
-37263
- Catholic Education Office, Lismore
- Michael Kemsley
- support&lism.catholic.edu.au
-37264
- Tularosa Communications
- Jerimiah Cole
- jcole&tularosa.net
-37265
- Delovoy Partner Ltd.
- Alexander Shevtsov
- shevtsov&dpartners.ru
-37266
- Schindler Elevator Ltd
- Adrian Buenter
- adrian.buenter&ch.schindler.com
-37267
- Tecnobit
- Jesus Megia
- jesus.megia&tecnobit.es
-37268
- Gira Giersiepen GmbH & Co. KG
- Stefan Pees
- registration&gira.de
-37269
- Rosa-Luxemburg-Stiftung Gesellschaftsanalyse und politische Bildung e. V.
- Olaf Barz
- support&rosalux.de
-37270
- Farell Instruments SL
- Jose Luis Prieto Saens
- pen&farell-i.com
-37271
- COESYS s.r.l.
- Leonardo Palazzolo
- iana-pen&coesys.it
-37272
- Westvik
- Dane Westvik
- danew&nosheds.com
-37273
- Acision Ltd
- Paul Pankhurst
- paul.pankhurst&acision.com
-37274
- Infratel, Inc.
- Artem Bozhenov
- a.bozhenov&infratel.com
-37275
- Skyfire Labs, Inc.
- John Metzger
- jmetzger&skyfire.com
-37276
- System of Modular Technologies - ICC
- Mikhail Maysuradze
- adm&smticc.ru
-37277
- Universidad TecMilenio
- Juan Jesus Salazar
- jjsalazar&tecmilenio.mx
-37278
- Hanselmann Consulting GmbH
- Thomas Hanselmann
- thomas&hanselmann.net
-37279
- eco-ged
- Christophe Feau
- christophe.feau&eco-ged.fr
-37280
- jTendo Sp. z o.o.
- Andrzej Trawinski
- andrzej.trawinski&jtendo.com
-37281
- Signatec ltd.
- Anton Charintsev
- anton&signatec.ru
-37282
- Barloworld Power
- Ryan Sprong
- rsprong&barloworldpower.com
-37283
- SPF FInances
- Claudio Rudi
- ict.operations.unixservers&minfin.fed.be
-37284
- Energy Sector Security Consortium, Inc.
- Justin Clarke
- justin&energysec.org
-37285
- NationalField
- Thomas Christ
- tchrist&nationalfield.org
-37286
- Congressional Budget Office
- Kristen Skinner
- Kristen.Skinner&cbo.gov
-37287
- christopher d del riesgo
- christopher d del riesgo
- christopher&delriesgo.com
-37288
- AXGATE CO., LTD (formerly 'AXAN Networks Co.,LTD.')
- Jack H. Lee
- pen-manager&axgate.com
-37289
- Inco-Service Ltd.
- Kozak Ivan
- kozakman&gmail.com
-37290
- Gridmerge Limited
- Robert Cragie
- robert.cragie&gridmerge.com
-37291
- BRITZE Elektronik und Geraetebau GmbH
- David Kirchner
- david.kirchner&geyer-gruppe.de
-37292
- Arcanum Communications Ltd
- Richard Frith-Macdonald
- richard&arcanumcommunications.com
-37293
- Rusteletech Ltd.
- Vladimir Lee
- lee&rusteletech.ru
-37294
- netzquadrat GmbH
- Matthias Witte
- noc&netzquadrat.de
-37295
- Stadt Muenster - citeq
- Stefan Schoenfelder
- oidadmin&citeq.de
-37296
- nanoLogika GmbH
- Bastian Menningen
- admin&nanologika.de
-37297
- LiteCore Networks India Pvt Ltd
- Rathnakumar Kayyar
- rkayyar&litecore.net
-37298
- PAGANI INFORMATIQUE sarl
- Sébastien PAGANI
- paganisebastien1&free.fr
-37299
- Quanxi Technologies, LLC
- J. Ryan Porter
- rporter&acenetconsulting.com
-37300
- Neoware s.r.o.
- Kamil Kantar
- kamil.kantar&neoware.cz
-37301
- metaVentis GmbH
- Matthias Hupfer
- hupfer&metaventis.com
-37302
- Daniel Adam
- Daniel Adam
- iana&fad-net.de
-37303
- Ignesco Software
- Craig Harrison
- iana-ldap&ignesco.co.uk
-37304
- Stonegate Instruments Ltd
- Shaun Evers
- pdev&stonegate-instruments.co.uk
-37305
- Beijing Utility Software Core Technology Co., Ltd
- Shi Cancan
- cancan.shi&gmail.com
-37306
- Hintz
- Thomas Hintz
- thomas&familie-hintz.de
-37307
- Vodéa
- Nicolas Mercadier
- nicolas.mercadier&vodea.com
-37308
- GSMK mbH
- Robert Blauenhausen
- infra-support&gsmk.de
-37309
- PÉTÁV Pécsi Távfűtő Kft.
- Kutfej Béla
- kutfej.bela&gmail.com
-37310
- NetAcademia Kft.
- Agoston Deim
- deim.agoston&netacademia.net
-37311
- Leibniz-Gymnasium Remscheid (formerly 'N@team Leibniz-Gymnasium Remscheid')
- Klaus Rörig
- netzwerk&leibniz-remscheid.de
-37312
- ULC Systems Inc.
- Seong-Heon Jeong
- linebacker&ulcsystems.com
-37313
- peers@play
- Arno Wacker
- arno.wacker&uni-due.de
-37314
- 40 North LLC
- Basit Mustafa
- basit&40northllc.com
-37315
- Greenshift
- Alex Sanderson
- pen.iana.org&greenshiftnetworks.com
-37316
- Yuvad Technologies
- Vivian Song
- cpsong&yuvad.com
-37317
- Ruby Rocket (Chengdu) Consulting Co., Ltd
- David Wilkinson
- dw&rubyrocketlink.com
-37318
- Datacenter Services, Inc.
- Robert Hermanns
- robert.hermanns&d8acenter.com
-37319
- GERNY
- Stefan Gerny
- mail&gerny.de
-37320
- Inneasoft
- Sebastien Cand
- sebastien.cand&inneasoft.com
-37321
- Really Helsinki Oy
- Jari Partti
- jari.partti&really.fi
-37322
- ERNW GmbH
- Rene Graf
- rgraf&ernw.de
-37323
- Yasashi Matsuo
- Yasashi Matsuo
- ymatsuo&krd.biglobe.ne.jp
-37324
- Albany Medical Center
- Joseph Hoffman
- hoffmaj&mail.amc.edu
-37325
- York College of Pennsylvania
- Kyle Smith
- ksmith8&ycp.edu
-37326
- Datasat Digital Entertainment
- David Eyre
- david.eyre&datasatdigital.com
-37327
- Student Satellite Initiative Munich SSIMUC e.V.
- Martin Luelf
- admin&ssimuc.de
-37328
- Peninsula Regional Medical Center
- Brad Taylor
- brad.taylor&peninsula.org
-37329
- Community Care Physicians, P.C.
- Patrick Knapp
- pknapp&communitycare.com
-37330
- OpenMarket
- Andrew Kerr
- andrew.kerr&openmarket.com
-37331
- Frey Textilreinigung GmbH
- Albert Frey
- EDV&frey-textilreinigung.de
-37332
- CPS Power Systems GmbH
- Jörg Becker
- j.becker&cpspower.de
-37333
- CADENAS GmbH
- Klaus Gruber
- k.gruber&cadenas.de
-37334
- Norsk Hydro ASA
- Nils Elverhaug
- nils.jorgen.elverhaug&hydro.com
-37335
- DimpleDough
- Bob Kwiencien
- bkwiencien&dimpledough.com
-37336
- Identity Solutions Pty Ltd
- Richard Begg
- richard.begg&identity-solutions.com.au
-37337
- RandomStorm Ltd
- Andrew Gilhooley
- andrew.gilhooley&randomstorm.com
-37338
- C3
- Denise Stockman
- denise.stockman&c3-carbon.com
-37339
- Open IPTV Forum, e.V.
- Nilo Mitra
- nilo.mitra&ericsson.com
-37340
- Teclo Networks
- Ties Stuij
- ties&teclo.net
-37341
- Plexxi, Inc.
- Ephraim Dobbins
- ephraim.dobbins&plexxi.com
-37342
- uCIRRUS Corp
- Dave Cracknell
- Dave.Cracknell&ucirrus.com
-37343
- InterScot Network
- Chris Maxwell
- cmaxwell&interscot.net
-37344
- Express TeleCom JSC
- Andrey A. Konovalov
- noc&extel.ru
-37345
- it suits IT
- Erwin van Dijk
- erwin.vandijk&itsuitsit.com
-37346
- Medicity
- Ashish V. Shah
- avshah&medicity.com
-37347
- IT-Services der Oesterreichischen Sozialversicherungs GmbH
- Ronald Holper
- ronald.holper&itsv.at
-37348
- Compact Software International SA
- Antonio J. García Lagar
- ajgarcia&c17.net
-37349
- Family Trach
- Jens Trach
- jens.trach&k-67.de
-37350
- SkyOnline Argentina
- Daniel H. Perez
- dperez&skyonline.net.ar
-37351
- Agile Europe s. r. o.
- Vladimir Sys
- vladimir.sys&agile-europe.com
-37352
- Ministerio de Relaciones Exteriores, Comercio Internacional y Culto
- Diego Woitasen
- dxw&mrecic.gov.ar
-37353
- Euroports
- Etienne Leneveu
- etienne.leneveu&euroports.com
-37354
- Arawat Inc
- Rohit Joshi
- msg&arawat.com
-37355
- Norris Communications
- Sam Norris
- SAM&MrNorris.com
-37356
- Deutschmann Automation GmbH & Co. KG
- Dominik Litzinger
- IANA_PEN&deutschmann.de
-37357
- Auderis
- Boleslav Bobcik
- bbobcik&gmail.com
-37358
- Regionalmedien Austria AG
- Kurt Stieger
- it-services&regionalmedien.at
-37359
- PaperlinX Europe
- Chris Wynia
- chris.wynia&paperlinxeu.com
-37360
- Hypace Technology Co.,Ltd
- Grant Lee
- grantlee&hypace.com
-37361
- EquiVox Inc.
- Adeel Nazir
- adeel.nazir&equivox.net
-37362
- Center Information Technologies of Amur Region
- Oleg Yakovlev
- ca&amur-cit.ru
-37363
- Viishanke Oy
- Mika Mähönen
- mika.mahonen&viishanke.fi
-37364
- Likewise Software
- Glenn Curtis
- glennc&likewise.com
-37365
- AeCS Aeroclub Saar e.V.
- Christian Zeitz
- christian.zeitz&aeroclub-saar.de
-37366
- Network Application Engineering Laboratories LTD.
- Minoru Okazaki
- okazaki-rd&nalab.jp
-37367
- UNIVISION SRL
- Giacomo Colombo
- giacomo.colombo&univision.it
-37368
- AND Technology Research Ltd.
- Steven Kear
- steven.kear&andtr.com
-37369
- CyberCité
- DUVERGIER Claude
- iana.pen-net&cybercite.fr
-37370
- Mark White
- Mark White
- scoooby&campus.ie
-37371
- Idibri
- Russell Reid
- rreid&idibri.com
-37372
- University of San Diego
- Tim Weichel
- identitysupport&sandiego.edu
-37373
- MitraStar Technology Corporation
- Becker Lu
- Becker.Lu&mitrastar.com.tw
-37374
- Brainstorm Mobile Solutions Ltd
- Richard Frith-Macdonald
- richard.fm&brainstorm.co.uk
-37375
- DATA 5 Ingenieurbuero fuer Datentechnik GmbH
- Karl Zuern
- Karl.Zuern&DATA5.de
-37376
- Gerhard Messer
- Gerhard Messer
- register&gerhardmesser.com
-37377
- Chaos Creations
- Søren P. Skou
- sps&mud.dk
-37378
- Dansk Kabel TV
- Søren P. Skou
- sps&danskkabeltv.dk
-37379
- Charles Schwab & Co., Inc.
- Darren Mar-Elia
- darren.marelia&schwab.com
-37380
- Computer Output Print & Internet (COPI)
- Andy Plata
- ap&888999COPI.com
-37381
- Balidev.com
- Yogi Triana
- yogi.triana&gmail.com
-37382
- Danateq PTE Ltd
- Ian Langman
- ian.langman&danateq.com
-37383
- Infocom Network Limited
- Rajesh Kumar Mallah, CTO
- mallah&tradeindia.com
-37384
- Onze Lieve Vrouw Ziekenhuis Aalst
- Anthony Van der Vennet
- anthony.van.der.vennet&econocom.be
-37385
- Centrum Informatyki ZETO S.A. w Białymstoku
- Waldemar Buraczewski
- Waldemar.Buraczewski&zeto.bialystok.pl
-37386
- CEGES/SOMA
- Steven Langenaken
- steven.langenaken&cegesoma.be
-37387
- NAVUM GmbH
- Alexander Schneider
- Alexander.Schneider&navum.de
-37388
- Lietuvos Respublikos Seimo kanceliarija
- Rimas Paliusis
- ripali&lrs.lt
-37389
- BYO NETWORKS
- Olivier Tirat
- olivier.tirat&byo-networks.com
-37390
- Adyton Systems AG
- Franco Fichtner
- franco.fichtner&adytonsystems.com
-37391
- Ministry of health Republic of Macedonia
- Zaklina Cagoroska
- zaklina&izismk.org
-37392
- PROBE Inc.
- Dong Hyun Kim
- dhkim&probedigital.com
-37393
- Tazarv Afzar Co.
- Jalal Abedinejad
- abedi&tazarv.com
-37394
- Farsinet
- Mohsen Saeedi
- iana&farsinetco.com
-37395
- kaspian sanat co.
- aflatounian ali
- aflatounianali&live.com
-37396
- Usługi Informatyczne ITS Mariusz Kryński
- Mariusz Kryński
- mrk&sed.pl
-37397
- MMB Research Inc.
- Mark Borins
- domain.admin&mmbresearch.com
-37398
- ThreatMetrix
- Joel Heenan
- operations&threatmetrix.com
-37399
- Oceans Edge Inc
- Adam McKay
- adam.mckay&oceansedgeinc.com
-37400
- Topsoft ZRt
- Ferenc Lendvai
- lendvai&topsoft.hu
-37401
- FancyFon Software
- Konrad Kehrer
- konrad.kehrer&fancyfon.com
-37402
- neverpanic.de
- Clemens Lang
- clemens&neverpanic.de
-37403
- Marmiko IT-Solutions GmbH
- Th. Meier-Brook
- penmaster&marmiko.de
-37404
- Rischioto Corp
- Carlos L L Rischioto
- carlos&rischioto.com.br
-37405
- HeBei FarEast Harries comunication company
- liumengyang
- liumengyang.dxx&163.com
-37406
- AHASWARE s.r.o.
- Michal Kovac
- michal.kovac&ahasware.cz
-37407
- Comcraft
- Laurent Schirck
- laurent.schirck&comcraftfr.com
-37408
- Callis Technologies
- Sebastian Sensabastiano
- ssensabastiano&callistech.com
-37409
- Home Credit International, a. s.
- Luděk Finstrle
- app&homecredit.net
-37410
- Opus VFX
- Darren Hildebrand
- darren.hildebrand&opusvfx.com
-37411
- L-S-B Broadcast Technologies GmbH
- Wilfried Luff
- wlu&l-s-b.de
-37412
- Cable Manufacturing Business, Inc
- Chris Badinelli
- cbadinelli&cablemanufacturing.com
-37413
- Smile SA
- Nicolas BOUTHORS
- nicolas.bouthors&smile.fr
-37414
- Tipjar L.L.C.
- David Nicol
- david&tipjar.com
-37415
- International Radio and Electronics Corp.
- Don Pettifor
- dpettifor&irec1.com
-37416
- Rivet Software
- Jim Cleppe
- jim.cleppe&rivetsoftware.com
-37417
- EFM s.r.l.
- Grimaldi Marco
- grimaldi.marco&efmnet.it
-37418
- Mobile People
- Lars Bo Svenningsen
- lbo&mobilePeople.com
-37419
- Bonprix sp. z.o.o
- Marek Zaradzki
- mzaradzki&bonprix.pl
-37420
- Virtual Bit di Lucio Crusca
- Lucio Crusca
- info&virtual-bit.com
-37421
- Factum IT BV
- Damian Myles
- info&efactum.net
-37422
- Start Norge
- Audun Bjørkøy
- webint&startntnu.no
-37423
- DynaMITe Services
- Igor Akkerman
- iana.admin&dynamite-services.de
-37424
- MDL29
- Arnaud Yonnet
- arnaud.yonnet&mdl29.net
-37425
- Ericsson-LG Enterprise Co., Ltd. (formerly 'LG-Ericsson Co., Ltd.')
- MIN-SOO PARK, Ph.D.
- minsoo.park&ericssonlg.com
-37426
- Travelzen Group Ltd.
- Erich Cheung
- erich.cheung&travelzen.com
-37427
- ENTE
- Adam Szastok
- a.szastok&ente.com.pl
-37428
- Bürkert Werke GmbH
- Marius Hein
- info&netways.de
-37429
- Grand Canyon University
- Gary Crites
- dl-itvendorsupport&gcu.edu
-37430
- Electronic Power And Market Sp. z o.o.
- Lukasz Panasiuk
- lukasz.panasiuk&epm.com.pl
-37431
- Montalbano Technology SPA
- Luca Adamo
- ladamo&montalbanotechnology.com
-37432
- Carbon Mountain LLC
- John Buswell
- engineering&carbonmountain.com
-37433
- Custom Radio Network, Inc.
- Henry Mecke
- hal&customrn.com
-37434
- ZenRobotics Ltd.
- Paul Tötterman
- admin&zenrobotics.com
-37435
- Gensler IT-Support
- Christoph Gensler
- info&gensler.to
-37436
- Maritime Broadband Inc.
- Mary Ellen Kramer
- mkramer&maritimebroadband.com
-37437
- Softec Integrations AG
- Stefan Huwiler
- stefan.huwiler&softec.ch
-37438
- networks direkt Gesellschaft für Informationstechnologie mbH
- Nils Böckmann
- nils.boeckmann&direkt-gruppe.de
-37439
- Computer Network Limited
- Jamie Reddell
- jamie.reddell&cnlsoftware.com
-37440
- Digitalwatt S.r.L
- Roberto Quadrini
- roberto.quadrini&digitalwatt.it
-37441
- OCI Nitrogen
- Frans Ortmans
- frans.ortmans&ocinitrogen.com
-37442
- ANFAC Autoridad de Certificación Ecuador C.A.
- Florencio Diaz
- fdiaz&anf.es
-37443
- Centina Systems
- Paul Pantages
- pdp&centinasystems.com
-37444
- Digital Products Limited
- Julien Richard
- netadmin&dplcore.com
-37445
- Atlantic Intertrade Ltd.
- William Robert Caron
- w.r.c&atlanticit.com
-37446
- Andrey Klyachkin
- Andrey Klyachkin
- aklyachkin&gmail.com
-37447
- Nimble Storage
- Hector Yuen
- hector&nimblestorage.com
-37448
- ENBLINK
- Gwak, Beom Seok
- bsgwak&enblink.com
-37449
- Opzoon Technology Co., Ltd.
- Keane Xi
- xizhuke&gmail.com
-37450
- Sodrugestvo Group of Companies
- Dmitriy Ilyin
- it&sodru.com
-37451
- Effdon Networks Ltd.
- Radion Mirchevsky
- radion&effdon.com
-37452
- Delta Sistemi Srl
- Roberto Capato
- rcapato&deltasistemi.it
-37453
- B-Obvious
- Raz Elharar
- raz&b-obvious.com
-37454
- Newsweb
- Vincent Batoufflet
- vincent.batoufflet&newsweb.fr
-37455
- Abertis Autopistas España
- Carles Fuentes
- carlos.fuentes&abertisautopistas.com
-37456
- The New School
- Peter Redhead
- redheadp&newschool.edu
-37457
- Medas S.R.L.
- Angelo Alfano
- angelo.alfano&medas-solutions.it
-37458
- QualCare, Inc
- Ed Merola
- emerola&qualcareinc.com
-37459
- Yealink
- Vin Too
- vintoo&yealink.com
-37460
- Nova banka AD
- Sasa Popravak
- sasa.popravak&novabanka.com
-37461
- Peakwork GmbH
- Christian Garling
- christian.garling&peakwork.de
-37462
- COGISTICS, INC.
- Robert Berquist
- rberquist&gmail.com
-37463
- Leitwelt GmbH
- Dr. Oliver Welter
- oliver.welter&leitwelt.com
-37464
- Intelligrated, Inc
- Mark Holland
- mark.holland&intelligrated.com
-37465
- DataDesign
- Michael Forum
- michael.forum&forumonline.dk
-37466
- Digitactics, Inc.
- Matthew Beebe
- matt&digitactics.com
-37467
- Arpeggio Software Inc
- Tim McCarthy
- tim.mccarthy1&yahoo.com
-37468
- Educational Service Unit Coordinating Counsel
- Matthew Blomstedt
- admin&esucc.org
-37469
- Shenzhen Communication Technology Co.Ltd
- hulin Li
- sct_lhl&hotmail.com
-37470
- Power Internet Ltd
- Peter Spikings
- peter.spikings&powergroup.co.uk
-37471
- QEES Aps.
- Henrik Olsen
- hol&qees.eu
-37472
- Cuculus GmbH
- René Böringer
- r.boeringer&cuculus.net
-37473
- Used Car Dealers Association of Ontario
- Sergey Lopatin
- s.lopatin&ucda.org
-37474
- sedkol
- John Greenfelder
- zgreenfelder&gmail.com
-37475
- OT Systems Limited
- Kelvin Chan
- admin&ot-systems.com
-37476
- ViaThinkSoft
- Daniel Marschall
- oidra&viathinksoft.de
-37477
- SIGNALIS
- Claude RICHARD
- claude.richard&signalis.com
-37478
- The Karthikeyans
- Muruganand Karthikeyan
- muru&mkarthik.cz.cc
-37479
- Warimax Ltd.
- Michael Todd Peterson
- support&warimax.com
-37480
- SkySQL Ab
- Kaj Arnö
- kaj&skysql.com
-37481
- Canyons School District
- Scot McCombs
- itmsengineers&canyonsdistrict.org
-37482
- Stewart McKelvey
- Scott Gorrill
- sgorrill&smss.com
-37483
- A.5 Security Consulting Group, SL
- Sergi Gonzalez
- sgonzalez&a5security.com
-37484
- PT. Teknologi Multimedia Indonesia
- Agastiya S. Mohammad
- egi&pure-technology.net
-37485
- Alico Graphic Web Designs
- Sean Ali
- sean&alicographics.com
-37486
- OOO Verified Solutions
- Alexander Ryzhov
- admin&vs5.ru
-37487
- Nicolas Ledez
- Nicolas Ledez
- iana&ledez.net
-37488
- Ridgetop Group, Inc.
- Robert Wagoner
- rwagoner&ridgetopgroup.com
-37489
- Scality
- Dos Santos Patrick
- iana&scality.com
-37490
- ENCO Systems, Inc.
- Eugene Novacek, P.E.
- research&enco.com
-37491
- FTM Systems Kft.
- Néher Márton
- neher.marton&ftmsystems.hu
-37492
- Mindstorm Networks
- Nick Whalen
- nickw&mindstorm-networks.net
-37493
- Cyberlink AG
- Thomas Bader
- bader&cyberlink.ch
-37494
- Vincent de Lau
- Vincent de Lau
- vincent&delau.nl
-37495
- MARS Advanced Research Systems
- Robert Leslie
- pen.iana.org&mars.org
-37496
- ZHEJIANG DAHUA TECHNOLOGY CO.,LTD
- Wang Lingli
- wang_lingli&dahuatech.com
-37497
- Delphi Innovations
- Marshall Reeske
- mreeske&gmail.com
-37498
- NasuTek Enterprises
- Michael Manley
- mmanley&nasutek.com
-37499
- NetSoft Distributed Solutions Pty Ltd
- Keith Willis
- iana&netsoft.com.au
-37500
- Schmid Industrieholding
- Thomas Brandner
- iana&sih.co.at
-37501
- Progetto Archivio S.r.l.
- Massimo Nuvoli
- info&progettoarchivio.com
-37502
- kyberna AG
- Thomas Fritz
- noc&kyberna.net
-37503
- Seratel Technology SAL
- John Hobdell
- john&seratel.com
-37504
- ONETASTIC S.r.l.
- Visentin Sergio
- onetastic&onetastic.com
-37505
- WSO2 Inc.
- Prabath Siriwardana
- external-relations&wso2.com
-37506
- Biodec s.r.l.
- Mauro Amico
- mauro&biodec.com
-37507
- Freenet Liberec, o.s.
- Jakub Petržílka
- kubapet&lbcfree.net
-37508
- AQUAPHOR
- Nikolay Kartashev
- kolq&aquaphor.ru
-37509
- DirectorySelfService
- Mohd EQbal.
- DirectorySelfService&tashawour.com
-37510
- SilentSystem
- Shinichi Nakamoto
- naka&silentsystem.jp
-37511
- Future Dynamics Interstellar
- Napoleon A. Courtney
- napoleoncourtney&gmail.com
-37512
- Systems Corps
- Michael Carey
- mike&systemscorps.com
-37513
- Citkomm
- Marc Risse
- risse&citkomm.de
-37514
- Raphael Frasch GmbH
- Raphael Frasch
- info&frasch.de
-37515
- Avajadi Solutions
- Eddie Olsson
- ewt&avajadi.org
-37516
- Software Integration Development
- C.H.W. van Zon
- c.v.zon&softint.nl
-37517
- Sveriges Radio AB
- Henrik Sörling
- Henrik.sorling&sr.se
-37518
- Firewall Services
- Hervé Lardin
- tech&firewall-services.com
-37519
- Draexlmaier Group
- Mario Lohner
- Lohner.Mario&DRAEXLMAIER.DE
-37520
- Kassenaerztliche Vereinigung Baden-Wuerttemberg
- Eike Ott
- NetzwerkeundSecurity&kvbawue.de
-37521
- Network Pipeline Inc.
- Brad J. Wilkus
- bradwilkus&networkpipeline.com
-37522
- Kousec Software, Inc.
- Masato Kataoka
- masato.kataoka&kousec.com
-37523
- Alyrica Networks Inc
- Joseph Sullivan
- joseph.sullivan&alyrica.net
-37524
- Com1 Communication Solutions B.V.
- Bas Sanders
- b.sanders&com1.nl
-37525
- Infovide-Matrix
- Pawel Biedronski
- pbiedronski&ivmx.pl
-37526
- WellCentive, LLC
- Andre Thenot
- agthenot&wellcentive.com
-37527
- Signalsky Communication Co., Ltd.
- Li Chunsheng
- tom&signalsky.com
-37528
- Crompton Greaves Limited
- Yogendra Namjoshi
- yogendra.namjoshi&cgglobal.com
-37529
- A and A System Co., Ltd.
- Shigetaka Furukawa
- moroheiya&aa-sys.co.jp
-37530
- WebRadar
- Daniel Hart
- daniel&hart.net
-37531
- Frank Moeller
- Frank Moeller
- frank&nx01.de
-37532
- BBT Technology Corp.
- PanJie
- pjie131&yahoo.com.cn
-37533
- Delta Electronics (Thailand) Public Co.,Ltd
- Phichej Cheevanantachai
- Phichej&delta.co.th
-37534
- uher.info
- Marek Uher
- marek&uher.info
-37535
- microDATA GIS, Inc.
- Jeremy Jackson
- jjackson&md-911.com
-37536
- NRG2 B.V.
- B. Sanders
- bsanders&nrg2.nl
-37537
- JADE
- Błażej Kukliński
- bkuklinski&jade.pl
-37538
- Big Switch Networks
- Kanzhe Jiang
- kanzhe.jiang&bigswitch.com
-37539
- Code One GmbH
- Arne Bönninghoff
- ab&codeone.tv
-37540
- N3 Labs Sdn. Bhd.
- Ihsan Junaidi Ibrahim
- ihsan&n3labs.my
-37541
- COMPUTER HI-TECH INC.
- Koji Suzue
- suzue&cht.co.jp
-37542
- Depelmaan Ltd
- Alireza Khodaian
- a.khodaian&depelmaan.com
-37543
- Crowe Horwath LLP
- Ted Dyck
- ted.dyck&crowehorwath.com
-37544
- UM Labs Ltd
- Peter Cox
- peter&um-labs.com
-37545
- GFI Solutions Group inc.
- Christophe Dupre
- christophe.dupre&gfisolutions.com
-37546
- BNP Paribas Fortis group
- Patrick GUSTOT
- patrick.gustot&bnpparibasfortis.com
-37547
- Europapier International GmbH
- Daniel Masek
- it&europapier.cz
-37548
- CenturyLink
- Christina Ellis
- chris.ellis&centurylink.com
-37549
- C&T sas
- Roberto Casalegno
- roberto.casalegno&ct-sas.it
-37550
- Flexenclosure AB
- Magnus Persson
- magnus.persson&flexenclosure.com
-37551
- IFM Infomaster SpA
- Giampaolo Sica
- giampaolo.sica&ifminfomaster.com
-37552
- RAYCORE TAIWAN CO., LTD.
- Jimmy Chiang
- contact&raycore.com.tw
-37553
- FRDLWEB
- Till Wehowski
- till&webfan.de
-37554
- Archbold Medical Center
- Lou Ellen Parker, RN
- lparker&archbold.org
-37555
- Enabling Technologies Company, Inc.
- Mark Mercer
- markm&brailler.com
-37556
- Brandwatch
- Luke Alexander
- luke&brandwatch.com
-37557
- Pathology Associates Medical Laboratories, LLC
- Sean Rowe
- srowe&paml.com
-37558
- VM-DG Hemmert & Schuster GbR
- Marco Schuster
- marco&vmsoft-gbr.de
-37559
- Socialcast
- Patrick Kile
- patrick&socialcast.com
-37560
- Netscout Systems, Inc. (formerly 'Simena, LLC')
- Sezen Uysal
- sezen.uysal&netscout.com
-37561
- Beijing KEMACOM technologies Co., Ltd.
- Yongjie Zhang
- eddy.jhang&gmail.com
-37562
- Hangzhou Yuwan Technology Co., Ltd.
- Shuyun Guo
- support&itmone.com
-37563
- NNS - Nigl Network Solutions
- NIGL Sascha
- s.nigl&nns.at
-37564
- Everest Display Inc.
- Michael B. F. Wu
- michaelbfwu&everestdisplay.com.tw
-37565
- Struck Innovative Systeme GmbH
- Thorsten Fritzke
- thorsten.fritzke&struck.de
-37566
- Discovery Reply S.r.l.
- Andrea Ceciarelli
- a.ceciarelli&reply.it
-37567
- Orbital ATK, Inc (formerly 'Alliant Techsystems Inc.')
- Chris Helget
- pki&orbitalatk.com
-37568
- Commend International GmbH
- Johannes Helminger
- j.helminger&commend.com
-37569
- Vocative Ltd.
- Dmitry Glukhov
- gludminick&vocative.ru
-37570
- ELFF Tech
- Lonny Fairfield
- lfairfie&wyoming.com
-37571
- KVUC
- Mik Helmich
- mik&kvuc.dk
-37572
- Panini s.p.a.
- Massimo Gullotto
- Massimo.Gullotto&panini.com
-37573
- LightSoft Research Ltd.
- Alexey Leontev
- alex&lightsoft.ru
-37574
- Alberta Distance Learning Centre
- Arlen Baker
- abaker&adlc.ca
-37575
- Infobip LTD
- Izabel Jelenic
- izabel.jelenic&infobip.com
-37576
- NovelSat
- Guy Cohen
- guy.c&novelsat.com
-37577
- Branch of LLC "Tabak-Invest" Trade Center "Korona"
- Mikhail Koren
- mike.it&korona.by
-37578
- Samworth Brothers Ltd
- thomas wing
- helpdesk&ginsters.co.uk
-37579
- Synetrix Holdings Limited
- John Shaw-Miller
- john.shaw-miller&synetrix.co.uk
-37580
- Chao-Inn elementary school
- Chia-Hui Chen
- mis&cies.tyc.edu.tw
-37581
- Mika timing GmbH
- Joerg Mika
- joerg.mika&mikatiming.de
-37582
- Theobroma Systems Design und Consulting GmbH
- Dr. Philipp Tomsich
- oid-admin&theobroma-systems.com
-37583
- Surescripts, LLC
- Jim Martin
- security&surescripts.com
-37584
- Gary Hawkins
- Gary Hawkins
- gary.hawkins&garyhawkins.me.uk
-37585
- QDIAGNOSTICA
- Ayuda Imagen
- ayuda.imagen&diagnosticorecoletas.com
-37586
- E-sektionens Teletekniska Avdelning
- Anton Landberg
- anton.landberg&gmail.com
-37587
- QualVu, Inc.
- Rodney D. Holm
- rholm&qualvu.com
-37588
- QingDao Easytelecom Co., Ltd.
- Lin Guo
- easytelecom&public.qd.sd.cn
-37589
- Institut de l'Ebre
- Sergi Tur Badenas
- stur&iesebre.com
-37590
- Meyer Burger Technology AG
- Jonas Reusser
- j.reusser&meyerburger.ch
-37591
- Reggiani
- Andrea Pagni
- support&reggiani.it
-37592
- Ev.-Luth. Brüdergemeinde Enger e.V.
- Alexander Gebel
- alex&elb-enger.de
-37593
- Platform-a Arastirma Gelistirme Koordinasyon Hizmetleri A. S.
- Ilhan Uncuoglu
- ilhan.uncuoglu&platform-a.org
-37594
- Netmining LLC
- Cristian Ferencz
- cristian.ferencz&netmining.com
-37595
- Geomarine Ltd
- Ian Macdonald
- ianmac51&gmail.com
-37596
- Agri-hitech LLC
- Shigeru Makino
- mac&agri-hitech.com
-37597
- Decatur Hospital Authority dba Wise Regional Health System
- Joe Arispe
- jarispe&wiseregional.com
-37598
- CipherCloud, Inc.
- Pravin Kothari
- pkothari&ciphercloud.com
-37599
- Meontrust Inc.
- Markku Mehtälä
- markku&meontrust.com
-37600
- ledeuns.org
- Denis FONDRAS
- contact&ledeuns.org
-37601
- Xech S.r.l.
- Marco Tiraboschi
- mtiraboschi&xech.it
-37602
- Spider Software GmbH
- Michael Becker
- pen&spider-software.net
-37603
- Meami.org
- Martin Musatov
- musatov&att.net
-37604
- RMG Tech (Malaysia) Sdn Bhd
- Jean-Yves Sireau
- sysadmin&regentmarkets.com
-37605
- MCX Telecom 2 Sp. z o.o.
- Tomasz Sadowski
- tomasz.sadowski&mcx.pl
-37606
- "SM Finance",JSC
- Vladimir V. Losev
- losev&smfin.ru
-37607
- Cascada Software & Consulting
- Marcos Luna
- marcos.luna&gmail.com
-37608
- CareEvolution, Inc
- Himabindu Bolisetty
- bindu&careevolution.com
-37609
- Dang Networks Inc.
- Andrew Duffy
- andrewd&dangnetworks.com
-37610
- The TuxClan
- Carel Lubbe
- carel.lubbe&gmail.com
-37611
- CJSC TSI Service
- Ivan Yu. Malinin
- miu&tsinet.ru
-37612
- Kassenärztliche Vereinigung Niedersachsen
- Christian Strassburg
- christian.strassburg&kvn.de
-37613
- ennovatis GmbH
- Hartmut Freihofer
- h.freihofer&ennovatis.de
-37614
- Siqura
- Peter de Konink
- pkonink&siqura.com
-37615
- V Labs Informatica Ltda
- Andre Luiz de Senna
- senna&igenesis.com.br
-37616
- SATS Holding AB
- Ludvig Nilsson
- it&sats.com
-37617
- Ventek Sistemas e Automação
- Guilherme Namen Pimenta
- guilherme&ventek.com.br
-37618
- Tumblr
- Fredrik Nylander
- fredrik&tumblr.com
-37619
- SCHIEx
- Himabindu Bolisetty
- bindu&careevolution.com
-37620
- Alegent Health
- Cathi Bishop
- cathi.bishop&alegent.org
-37621
- Ename, S.A.
- Jose Lameira
- oid&ename.pt
-37622
- Chrysalis Utah, Inc.
- Dustin Carroll
- dustin.carroll&gochrysalis.com
-37623
- Red Hound Software, Inc.
- Carl Wallace
- carl&redhoundsoftware.com
-37624
- M & PI Software S.r.l.
- Pierluigi Brugnone
- pierluigi.brugnone&mpisoftware.it
-37625
- Mike Johnson
- Mike Johnson
- m.d.johnson&kuub.org
-37626
- STC AKTOR
- Alexey Vorontsov
- av&aktor.ru
-37627
- ensemble
- Mike Joe
- sysadmin&ensemble.com
-37628
- NETRATOR Andrzej Dopierala
- Andrzej Dopierala
- dopieralaa&netrator.pl
-37629
- COMTEC NET
- Diana Ioan
- diana.ioan&tecnet.ro
-37630
- Iron Technology Solutions Ltd
- Regis Savry
- regis&irontech.co.nz
-37631
- Plasmatronics Pty Ltd
- Brendan English
- iana&plasmatronics.com.au
-37632
- The Frontier Group
- Matthew Lambie
- mlambie&thefrontiergroup.com.au
-37633
- Bolnisnica Golnik KOPA
- Tomaz Knific
- tomaz.knific&klinika-golnik.si
-37634
- Achieve3000, Inc.
- Yaakov Goldberg
- yaakov.goldberg&achieve3000.com
-37635
- Awarepoint
- Brandon Gilmore
- bgilmore&awarepoint.com
-37636
- Catholic Health
- Michael Brown
- mbrown&chsbuffalo.org
-37637
- Henry County Hospital
- Louetta Dishman
- ldishman&hcmhcares.org
-37638
- Infinitrum Co., Ltd
- David cheng
- david.cheng&infinitrum.com
-37639
- ECYS S.A.
- Fernando Valenzuela
- fdvalenzuela&ecyssa.com
-37640
- Federal Cardiovascular surgery center
- Nikulin Andrey
- avn&krascor.ru
-37641
- Neebula Systems
- Shai Mohaban
- shai&neebula.com
-37642
- GK "SoftExpert"
- Alexander Sentyurin
- asentyurin&sfx-tula.ru
-37643
- IBM BTO Business Consulting Services Sp. z o.o.
- Lukasz Kozubal
- lukasz.kozubal&pl.ibm.com
-37644
- Fuzhou Ucore Information Technologies Co,.Ltd
- Wensheng Hu
- 13705084159&139.com
-37645
- Medical Data Express
- Alan Hagerman
- alan.hagerman&medicaldataexpress.com
-37646
- Wyoming Valley Health Care System
- Luann Draht
- ldraht&wvhcs.org
-37647
- Ministry of Interior - UAE (Governmental Entity)
- Major General Matar Salem Bin Msaeed Al Neyadi – ICT Director / Dr. Haider Khalid A.A. Al-Ameed – Senior ICT Advisor
- hkameed&adpolice.gov.ae
-37648
- Kalmia Technology Co, LLC
- Alton Brantley
- alton.brantley&gmail.com
-37649
- Helium Inc.
- Tracy Flynn
- tflynn&helium.com
-37650
- Shared Technology Services Group, Inc.
- Venu Venugopal
- vvenugopal&stsgi.com
-37651
- JoyStem Web Services Private Limited
- Mr. Chandra Sekhar & Mr. JayaChandra Prakash
- sekhar&joystem.com
-37652
- I-TECH
- Alex McGee
- camcgee&uw.edu
-37653
- Lamby
- Stefan Lamby
- support&lamby.de
-37654
- Moccu GmbH
- Thomas Walter
- admin&moccu.com
-37655
- Far South Networks
- Michael Walton
- mike&farsouthnet.com
-37656
- Broxtowe Borough Council
- Stuart Chaffin
- Stuart.Chaffin&broxtowe.gov.uk
-37657
- Erskine Design
- Phil Howell
- dev&erskinedesign.com
-37658
- Czech National Bank
- Martin Podstata
- certificateadmins&cnb.cz
-37659
- ControlCircle Ltd.
- Andy Coates
- MonitoringTeam&ControlCircle.com
-37660
- Unit of Research of Technologies of Information and Communication (UTIC)
- Heithem Abbes
- heithem.abbes&gmail.com
-37661
- Transcon Electronic Systems spol. s r. o.
- Martin Persich
- persich&transcon.cz
-37662
- Ablerex Electronic Co., Ltd.
- Fred Hsu
- fred&ablerex.com.tw
-37663
- nGen - Niagara Interactive Media Generator
- Thomas Madej
- tmadej&ngen-niagara.com
-37664
- Zone de Police Midi
- Jacques Struelens
- dir.tel&zpz5341.irisnet.be
-37665
- R. W. Beckett Corporation
- John Bohan
- engineering&beckettenergy.com
-37666
- Airebullas C.B.
- Juan Gomez Melero
- airebullas&airebullas.es
-37667
- Office of the Auditor General of Norway
- Stig Kristiansen
- stig.kristiansen&riksrevisjonen.no
-37668
- bit GmbH
- M. Botzem
- m.botzem&bit-germany.de
-37669
- FONDEMI
- Marco Saldivia
- msaldivia&fondemi.gob.ve
-37670
- Barling Bay LLC
- Perry Minchew
- pminchew&barlingbay.com
-37671
- The Biostatistics Center - GWU
- Aria Bamdad
- aria&bsc.gwu.edu
-37672
- VERSCOM INTERNATIONAL HOLDING UK LLP
- Aydin Pirinccioglu
- snmp.pen&verscom.com
-37673
- Estech Systems, Inc.
- Brian Berger
- bberger&esi-estech.com
-37674
- Heineken International
- Jan den Otter
- Jan.denotter&heineken.com
-37675
- LoveBee
- Phillip O'Donnell
- admin.iana&lovebee.co.nz
-37676
- Sutunam Co., Ltd.
- Martin PANEL
- network&sutunam.com
-37677
- Linuxsoft s.r.o.
- Ales Hakl
- adh&linuxsoft.cz
-37678
- Hall Research
- Justin Ireland
- justin&hallresearch.com
-37679
- AGILiCOM
- Frédéric BAHUAUD
- f.bahuaud&agilicom.fr
-37680
- Scott Ellis
- Scott Ellis
- mail&scottellis.com.au
-37681
- Sinefa Pty Ltd
- John Bothe
- john&sinefa.com
-37682
- AlexxHost
- Alexey bogomolov
- alexx.b84&gmail.com
-37683
- TimoCom Soft- und Hardware GmbH
- Marco Haack
- hostmaster&timocom.com
-37684
- Grupo Alsa
- Pablo Alvarez Menendez
- guardia&alsa.es
-37685
- Online Marketing Solutions AG
- Michael Junghans
- notify&online-marketing-solutions.com
-37686
- Lookout Mobile Security, Inc.
- Ryan Dooley
- ryan.dooley&mylookout.com
-37687
- Bethesda Memorial Hospital
- Leslie Durham
- leslie.durham&bethesdahealthcare.com
-37688
- ACE Computer bv
- Stephen Day
- stephen&ace.nl
-37689
- unixtastic
- Stephen Day
- sd&unixtastic.com
-37690
- JOTATEC
- Julio Cesar Gomes da Silva
- julio&jotatec.com.br
-37691
- Broadcast Devices Inc.
- Ron Kumetz
- ron&broadcast-devices.com
-37692
- StringIT
- Jeroen Dekkers
- iana&stringit.nl
-37693
- Brattleboro Memorial Hospital
- Jonathan Farina
- jfarina&bmhvt.org
-37694
- Tsubakimoto Chain Co.
- Kohei Yamada
- mitaro.sales&mitaro.gr.jp
-37695
- Quantum Data Systems (HK) Ltd
- Leonard Siu
- info&quantum.com.hk
-37696
- WIKA Polska S.A.
- Maciej Czyznielewski
- it&wikapolska.pl
-37697
- Higher One
- Ian Preston
- ipreston&higherone.com
-37698
- Customs and Border Protection
- Hari Kolli or David Kalavity
- Hari.K.Kolli&cbp.dhs.gov
-37699
- Implaneo Dental Clinic (formerly 'BolzWachtel Dental Clinic')
- Christian Fohmann
- edv&ipi-muc.de
-37700
- Axed S.p.A.
- Gennaro Coppola
- sistemi&axed-technology.com
-37701
- energie-m.de
- Hans-Stefan Müller
- mail&energie-m.de
-37702
- Narodowy Fundusz Zdrowia - Centrala
- Pawel Malara
- informatyka&nfz.gov.pl
-37703
- Mywindowslab.com
- Laith Al Shamri
- laith&live.it
-37704
- Interconcept GmbH
- Tobias Reibling
- t.reibling&interconcept.de
-37705
- CommSoft RMS LLC
- Stewart Foote
- sf&commsoft-rms.com
-37706
- Netmedia Systems e. K.
- Matthias Meinecke
- info&nmsweb.de
-37707
- Rocrail
- Rob Versluis
- info&rocrail.net
-37708
- Systola Forwarding GmbH
- Roman Kuznetsov
- support&systola.de
-37709
- S3 Satcom Ltd
- John Kennett
- john.kennett&s3sat.com
-37710
- Dane E. Jones
- Dane E. Jones
- dane.jones&att.net
-37711
- FileMaker Inc
- Meena Rajvaidya
- meena_rajvaidya&filemaker.com
-37712
- Eurosistemi
- Michael Lattari
- michael&lattari.eu
-37713
- Winextreme.org
- Artem Pronichkin
- artem&pronichkin.com
-37714
- AppFolio, Inc.
- Ross Harvey
- noc&appfolio.com
-37715
- FTN
- Pascal Fontaine
- pascal.fontaine&ftn.ch
-37716
- Ville de Lausanne
- Pascal Fontaine
- securite.informatique&lausanne.ch
-37717
- Herbert Smith LLP
- Tom Maher
- tom.maher&herbertsmith.com
-37718
- Fresenius Vial
- Franck Rakotonindrainy
- franck.rakotonindrainy&fresenius-vial.fr
-37719
- PT. Multi Structure
- Mulyo Santoso
- helpdesk&multistructure.co.id
-37720
- CSR ZHUZHOU INSTITUTE CO LTD
- xiaoyan jiang
- jiangxy&teg.cn
-37721
- OpenSys (M) Berhad
- Zainun Romli
- zromli&myopensys.com
-37722
- Trusted Information Consulting Sp. z o.o.
- Daniel Wachnik
- daniel.wachnik&ticons.pl
-37723
- ODIN technologies
- Scott Barvick
- sbarvick&odinrfid.com
-37724
- Chalet Technologies Inc.
- James Lin
- jamesl&chalettech.com
-37725
- Yupiq Corp
- Paul Reimer
- paul.reimer&yupiq.com
-37726
- Bertol, Alexander
- Bertol, Alexander
- alex&bertol.de
-37727
- General Digital Corporation
- ROBERT GREGER
- iana-pen&generaldigital.com
-37728
- ADV Consulting
- Petr Mitrofanov
- pmitrofanov&advc.ru
-37729
- ATS Group GmbH
- Quentin Zak
- quentin&groupsecurity.net
-37730
- p-rimes.net
- Paul Reimer
- paul&p-rimes.net
-37731
- MB S.p.A.
- Luca Faccin
- luca.faccin&mbcrusher.com
-37732
- Ymif Engineering b.v.
- A. Wennen
- info&ymif.nl
-37733
- Civil Registry Agency of Ministry of Justice of Georgia
- Zurab Magradze
- zmagradze&cra.gov.ge
-37734
- ASSA ABLOY AB
- Tomas Lund
- tomas.lund&assaabloy.com
-37735
- St. Mary's Medical Center
- Dave Imhoff
- dimhoff&st-marys.org
-37736
- PinnacleHealth System
- Tony Hackman
- thackman&pinnaclehealth.org
-37737
- GUANGDONG DONYAN NETWORK TECHNOLOGIES CO.,LTD.
- Zhihu Zhang
- beyoniger&gmail.com
-37738
- Apadmi Ltd
- Adam Fleming
- adamf&apadmi.com
-37739
- Braintree Payment Solutions, LLC
- Michael Vallaly
- noc&getbraintree.com
-37740
- Johannes Roith
- Johannes Roith
- johannes&jroith.de
-37741
- First Step Internet, LLC
- Nathan Anderson
- nathana&fsr.com
-37742
- Iprio Corporation
- Kazuhiro Matsushita
- info&iprio.co.jp
-37743
- Robert Frank
- Robert Frank
- rwf14f&gmail.com
-37744
- Centrify Corporation
- Nathan Yocom
- nate.yocom&centrify.com
-37745
- spampig.org.uk
- Barry Hueder
- barry.hueder.iana_org&spampig.org.uk
-37746
- Security Data S.A.
- Ximena Cabezas
- info&securitydata.net.ec
-37747
- Mercy Health Partners
- Bob Stansfield
- rstansfield&health-partners.org
-37748
- GIAVANEERS
- L. Brian McGann
- brianm&giavaneers.com
-37749
- Wire e Wireless World, SA
- Pedro Lage Tavares
- security&3w.com.pt
-37750
- Quester Tangent
- Rick Pearson
- rpearson&questertangent.com
-37751
- E.I. du Pont de Nemours and Company
- Karen Galbraith
- contact&dupont.com
-37752
- NETS DENMARK A/S
- Peter Lind Damkjaer
- pldam&nets.eu
-37753
- Robin Partington Architects
- James Waite
- james.waite&fabrictechnologies.com
-37754
- Nextragen GmbH
- Helge Jürgensen
- helge.juergensen&nextragen.de
-37755
- Radio Activity srl
- Roberto Roberti
- r.roberti&radioactivity-tlc.it
-37756
- The Ministry of Interior of the Republic of Croatia
- Marin Istvanovic
- marin&mup.hr
-37757
- Newton Graphics, Inc.
- Tadahiro kanno
- kanno&newton-graphics.co.jp
-37758
- Actidata Company
- Sergey Firsov
- admin&telemetr.net
-37759
- WXXR Network Technology Ltd. BEIJING
- Neil Lin
- neillin&wxxr.com.cn
-37760
- Powertech Automation Solutions Pvt. Ltd
- Vivek Patwardhan
- vivek.patwardhan&pasl.in
-37761
- Altitude Software
- Joaquim Freitas
- joaquim.freitas&altitude.com
-37762
- Neotion R&D
- Remi Verchere
- rverchere&neotion.com
-37763
- Bitxenio, S.L.
- Miguelanxo Otero Salgueiro
- miguelanxo&bitxenio.com
-37764
- Portel Servicios Telemáticos
- Carlos Martín
- c.martin&portel.es
-37765
- LHERITIER
- Pierre FICHET
- pfichet&lheritier-alcen.com
-37766
- Beijing Banggoo Networks Co,Ltd.
- James Zhang
- glzhang&banggoo.cn
-37767
- Gartner Inc.
- Peter Heilig
- peter.heilig&gartner.com
-37768
- Bundesministerium für Arbeit und Soziales
- Fridolin Smolka
- fridolin.smolka&bmas.bund.de
-37769
- Koramis GmbH
- Michael Fess
- m.fess&koramis.de
-37770
- IDmachines LLC
- Salvatore D'Agostino
- sal&idmachines.com
-37771
- Linkwise Technology Private Limited
- Shirley Koh
- shirley&linkwisetech.com
-37772
- AERODEV
- Martin Chen
- chenmj&aerodev.com
-37773
- OAO NESK Novorossiyskenergosbit
- Kokorin Artem Vladimirovich
- KokorinAV&nesk.ru
-37774
- 51.6 Noord B.V.
- Marcel de Kock
- marcel.dekock&516noord.nl
-37775
- BaoBros Studio
- Winnow Cai
- winnow.cai&baobros.com
-37776
- Co. Ltd. "RCS Labs"
- Artem Marchenko
- artem.marchenko&rcslabs.ru
-37777
- Cabinet Pierre Guerin
- Pierre Guerin
- pierre.guerin&cab-cpg.net
-37778
- Northern Design (Electronics) Ltd
- Paul Connor
- paul.connor&ndmeter.co.uk
-37779
- Nuvolas
- Andre Joswig
- info&nuvolas.de
-37780
- MicroRIGHT Corporation
- Aaron Moreau-Cook
- ops&microright.com
-37781
- eZuce Inc
- George Niculae
- george&ezuce.com
-37782
- KindleIT
- Rodolfo Hansen
- rhansen&kitsd.com
-37783
- Wolf Pond Creative LLC
- Thomas Davis
- tommy&wolfpond.com
-37784
- IDC Solutions Pty Ltd
- James Yong
- jamesy&idcsolutions.com.au
-37785
- Ingenieurbuero Jan F Westerkamp (IBW)
- Jan F Westerkamp
- oid&ib-westerkamp.de
-37786
- Galtronics Telemetry, Inc.
- Mike Lafferty
- mike.lafferty&galtronics.com
-37787
- Emirates Identity Authority
- Mohamed Al Redaini
- Mohamed.AlRedaini&emiratesid.ae
-37788
- Syslife
- Antoine Natale
- a.natale&syslife.com
-37789
- Novapost SAS
- Dr. Jorge Tellez
- jorge.tellez&novapost.fr
-37790
- Gould International UK Ltd
- Tim Garvin
- timg&gouldinternational.co.uk
-37791
- PortaOne, Inc.
- Lutay Alexander
- Alexander.Lutay&portaone.com
-37792
- Enfuse Inc
- Hong Wang
- hwang&inscopeinternational.com
-37793
- Squirrel Solutions Ltd
- Matt Jenkins
- matt&sqsol.co.uk
-37794
- DVR Support Center
- Jon Swatzell
- engineering&pco-inc.com
-37795
- Centre Hospitalier du Nord
- Aloyse Gilbert
- aloyse.gilbert&chdn.lu
-37796
- PTS Group AG
- Sören Lifka
- s.lifka&ptsgroup.de
-37797
- Graylog2
- Lennart Koopmann
- lennart&socketfeed.com
-37798
- Pcmedic
- Tiago Lourenço Geada
- tiago.geada&pcmedic.pt
-37799
- Coloriuris A.I.E.
- Pedro J. Canut
- webmaster&coloriuris.net
-37800
- Aster Data Systems, Inc
- Dinkar Gupta
- dgupta&asterdata.com
-37801
- Innovactive Engineering s.r.l.
- Lorenzo Maiorfi
- maiorfi&innovactive.it
-37802
- Sypris Solutions, Inc
- Charles Timko
- charles.timko&sypris.com
-37803
- California State University San Marcos
- Diane Petersen
- kai&csusm.edu
-37804
- Spirit Software Solutions
- Graeme Elliott
- gelliott&spiritsoftware.biz
-37805
- Team Simoco Ltd.
- Richard Stimson
- Richard.Stimson&TeamSimoco.com
-37806
- North Power Coporation (EVN NPC)
- Trung Huu Truong
- trungdtbk&gmail.com
-37807
- Instituto Tecnológico de Canarias
- Fco. Javier Ascanio Suárez
- jascsua&itccanarias.org
-37808
- FIBCOM INDIA LIMITED
- B.Sreenivasappa
- sreenivasappa.b&fibcom.com
-37809
- Wnet Wisp S.r.l
- Scalisi Mihai
- adranoweb&hotmail.com
-37810
- PCE SYSTEMS
- Leo Magee
- lmagee&pcesystems.com
-37811
- Glass Echidna
- Aidan Steele
- aidan.steele&glassechidna.com.au
-37812
- Kotkamills Oy
- Peter Danielsbacka
- peter.danielsbacka&kotkamills.com
-37813
- DSM Computer GmbH
- Wolfram Ansin
- w.ansin&dsm-computer.de
-37814
- Infinidat LTD
- Gregory Shulov
- gregs&infinidat.com
-37815
- Friendly Runet Foundation
- Varnakov Kiril
- kvarnakov&friendlyrunet.ru
-37816
- skweez.net
- Florian Mutter
- elm&skweez.net
-37817
- GMG Technologies
- Gorobchenko Michael G.
- gmg.inbox&gmail.com
-37818
- LEGALBOX
- Pierre Guerin
- pierre.guerin&legal-box.com
-37819
- Technical Dabblings
- Glenn R. Martin
- iana&technicaldabblings.com
-37820
- Telecore LTD.
- Anatoly Danilov
- ermolaew&bk.ru
-37821
- untermStrich software gmbh
- Christian Koller
- christian.k&untermstrich.com
-37822
- Wolfplex Hackerspace ASBL
- Sébastien Santoro
- sebastien.santoro&wolfplex.org
-37823
- Vimukti Technologies Private Limited
- Rajesh Akkineni
- rajesh&vimukti.com
-37824
- ECOLE NATIONALE VETERINAIRE D'ALFORT
- BATTAGLIA Hervé
- informatique&vet-alfort.fr
-37825
- Interregional Distribution Grid Company of Volga, JSC
- Sergey Yu. Bozhko
- sy.bozhko&mrsk-volgi.ru
-37826
- ISL Internet Sicherheitsloesungen GmbH
- Andreas Rieke
- andreas.rieke&isl.de
-37827
- WV Network for Educational Telecomputing (WVNet)
- Samuel Lay
- sam&mail.wvnet.edu
-37828
- LIL'SYSTEMS
- Yves Geunes
- info&lilsystems.be
-37829
- Puxlit
- Xiao Di Guan
- woot&puxlit.net
-37830
- InCampus Pte Ltd
- Liew SC
- liew&incampus.com.sg
-37831
- Techroutes Network
- AnilRaj Thulasidas
- araj&techroutes.com
-37832
- Clifford Chance LLP
- Dermot O'Hagan
- dermot.ohagan&cliffordchance.com
-37833
- Southern New Hampshire Medical Center
- Devora Moriarty
- Devora.Moriarty&snhmc.org
-37834
- No23
- Ivan Bischof
- ivan.bischof&no23.de
-37835
- Jerome Baum
- Jerome Baum
- jerome&jeromebaum.com
-37836
- CCM Benchmark Group
- Adrien Sévère
- asevere&ccmbenchmark.com
-37837
- mikroVOX s.r.o.
- Martin Madlik
- m.madlik&mikrovox.cz
-37838
- Futurad S.r.l.
- Lorenzo Rizzatto
- l.rizzatto&futurad.it
-37839
- OneSystem S.A.
- Daniel Eduardo Alzate Tamayo
- daniel.alzate&onesystemsa.com
-37840
- Veda Advantage
- Jason Pell
- jason.Pell&vedaadvantage.com
-37841
- Flughafen Zürich AG
- Thomas Reichmuth
- ictzertifikate&zurich-airport.com
-37842
- Aicox Soluciones S.A.
- Ithar Alhaidari
- ithar&aicox.com
-37843
- Adecco Group
- Abid Khwaja
- abid.khwaja&adeccona.com
-37844
- Eastern Upper Peninsula ISD
- Jay Schupp
- jschupp&eup.k12.mi.us
-37845
- VINCI S.A.
- Guy Widloecher
- oid&vinci.com
-37846
- MEDIAPRINT Zeitungs und Zeitschriften Verlags GesmbH
- Charly Baldrian
- ssladmin&mediaprint.at
-37847
- Business Information Intelligence Services
- Thierry Brouard
- thierry.brouard&biis.biz
-37848
- ORSENNA
- SENCKEISEN JEAN PHILIPPE
- jpsenckeisen&orsenna.fr
-37849
- Aris System
- Davood Firoozian
- dfiroozian&arissystem.com
-37850
- Slavic Gospel Association
- Steve Palm
- stevep&sga.org
-37851
- YTY Enterprises
- Steve Palm
- n9yty&n9yty.com
-37852
- ECCOS inzenjering
- Aleksandar Dujmović
- Aleksandar.Dujmovic&eccos.com.hr
-37853
- OASIS Systems Pty Ltd
- Jonathan Yeoh
- jonathan.yeoh&oasissystems.com.au
-37854
- Crozer-Keystone Health System
- Marisa Niedbalski
- marisa.niedbalski&crozer.org
-37855
- The Reading Hospital and Medical Center
- Jason Balthaser
- balthaserj&readinghospital.org
-37856
- Essential Enterprise Solutions Inc.
- David Davies
- ddavies&eesimed.com
-37857
- Veolia Environmental Services - North America
- Michael Glaubig
- michael.glaubig&veoliaes.com
-37858
- Synegen
- Martin Phee
- marty.phee&synegen.com
-37859
- Synerline sprl
- André Deblire
- iana&synerline.com
-37860
- Source Trading Co., Ltd.
- Hui Mei Chen
- ruthchen36&yahoo.com.hk
-37861
- Austco Communication Systems
- Stephane Benayoun
- stephane.benayoun&austco.com
-37862
- Suntel S.A.
- Eddy Nelson
- suntelsa&hotmail.com
-37863
- ETMC Regional Healthcare System
- Pete Range
- prange&etmc.org
-37864
- Cape Cod Healthcare
- Peter Read
- pread&capecodhealth.org
-37865
- City and County of San Francisco, Department of Technology
- Aaron Smith
- aaron.smith&sfgov.org
-37866
- Bank of New Zealand
- B.A.Johnston
- nz_infoman_zcidsm&bnz.co.nz
-37867
- APG
- Patric Lichtsteiner
- patric.lichtsteiner&apg.ch
-37868
- VirtualSharp Software
- Alberto Gonzalez Martos
- agonzalez&virtualsharp.com
-37869
- BruteCO Certificate Authority
- Adam Vallee
- adam.vallee&bruteco.com
-37870
- Sensometrix SA
- Grégory Brusick
- gbrusick&sensometrix.ch
-37871
- Digital Vision, s.r.o.
- Michal Vanco
- mvanco&di-vision.sk
-37872
- Neko Consulting Ltd.
- Vasily Zezin
- vzezin&nya.me
-37873
- J4care GmbH
- Michael Knapp
- michael.knapp&j4care.com
-37874
- CebaTech Inc.
- Hank Cohen
- hcohen&cebatech.com
-37875
- oogle Networks LLC
- Josh Kittle
- josh&ooglenetworks.com
-37876
- Delta Management AB
- Mattias Niklasson
- info&deltamanagement.se
-37877
- TITNC Alexander Seifarth
- Alexander Seifarth
- a.seifarth&yahoo.de
-37878
- WineSkills
- Andrew Atkinson
- andrew.atkinson&plumpton.ac.uk
-37879
- NetOrg LTD
- Suthagar Kathirkamathamby
- suthagarht&gmail.com
-37880
- Qowisio
- Jean-Samuel Reynaud
- js&qowisio.com
-37881
- ESCA
- BRAND Arnaud
- abrand&esca.fr
-37882
- RedeCamp Ind. Com. e Serviços de Telecomunicações S.A.
- Alexandre Alves
- acalves&redecamp.com.br
-37883
- Vitaly Pashkov
- Vitaly Pashkov
- admin&fluda.net
-37884
- Perfect Home AS
- Bjørn Håvar Falck-Andersen
- havar&perfecthome.no
-37885
- Renewable Funding, LLC
- Darrell Fuhriman
- itstaff&renewfund.com
-37886
- Coraid Inc.
- Binh Le
- lpbinh&coraid.com
-37887
- OraPharma, Inc.
- Jeff Edonick
- jedonic2&orapharma.com
-37888
- PROGIRIS
- Louis CALENDA
- louis&progiris.com
-37889
- Accord Medical Management, LP DBA Nix Health Care System
- Les Surrock
- lsurrock&nixhealth.com
-37890
- Quality Fiber and RF Inc
- Jeff Oberholtzer
- jeff&qfrf.com
-37891
- Big Ant Studios Pty Ltd
- Scott Pederick
- sysadmin&bigant.com
-37892
- GCT Semiconductor, Inc.
- Jason J. Kim
- jasonkim&gctsemi.com
-37893
- BeyondTrust Software, Inc
- Jordan Bean
- jbean&beyondtrust.com
-37894
- aylite
- tarmo kaljumae
- tarmo&aylite.com
-37895
- LucidView
- Tim Haak
- tim&haak.co.uk
-37896
- IFD Kapital
- Konstantin Sidorenko
- it&ifdk.com
-37897
- Maxwell Management Inc. (MMI)
- Will Maxwell
- will&shpapa.com
-37898
- Éric Larivière
- Éric Larivière
- ericlariviere&hotmail.com
-37899
- Hahn Family
- Stefan-W. Hahn
- stefan.hahn&s-hahn.de
-37900
- International Information Programs IR, Deptartment of State
- Greg Goble
- GobleGW&state.gov
-37901
- Aeon Experienced Development
- Henning Hucke
- oidmaster&aeon-experienced.eu
-37902
- Polynet Ltd.
- Sándor Nagy
- sandor.nagy&polynet.hu
-37903
- CURUPIRA S/A
- Renato Frederick
- operacao&takenet.com.br
-37904
- UnixServices
- Thomas Müller
- tmueller&unixservices.de
-37905
- Beijing Jiaxun Feihong Electrical Co.,Ltd
- Zhang Tao
- zhangtao&jiaxun.com
-37906
- Beijing WingMax Technology Co.,Ltd
- jiangshan
- sjiang&wingmax.net
-37907
- Fusion Comm Solution Sdn Bhd
- Chong Nan Bing
- nanbing_chong&fusioncomms.com
-37908
- A puissance 3
- Thierry Le Naour
- th.ln&ap3.fr
-37909
- Arantia 2010 S.L.U.
- Gonzalo Berdeal
- gberdeal&arantia.com
-37910
- Modesat Communications
- Jüri Põldre
- juri.poldre&modesat.com
-37911
- CDP Communications Inc.
- Ted Dunlop
- ted.dunlop&cdpcom.com
-37912
- Locomotive Software & Consulting
- Pigozzo Michele
- pigozzo.michele&gmail.com
-37913
- ZAO PTKB "MERCURIY"
- Lubsanova Antonina
- a.lubsanova&bankm.ru
-37914
- TECNOTEL s.r.l.
- PAOLO SARTINI
- paolo.sartini&tecnotel-sistemi.it
-37915
- Shenzhen Zyeeda Information Technology Co. Ltd.
- Rui Tang
- tangrui.cn&gmail.com
-37916
- Volvo Car Corporation AB
- Björn Kjellén
- BKJELLEN&volvocars.com
-37917
- MarkitServ
- Matthew Barr
- matthew.barr&markitserv.com
-37918
- SAGE Dining Services
- Marcus Madsen
- technology&sagedining.com
-37919
- NETMOON
- forest.Guo
- gxb&netmoon.cn
-37920
- DEXUS Holdings Pty Limited
- Mark Aidasani
- mark.aidasani&dexus.com
-37921
- Southwest Institute of Healing Arts
- Michael LaBelle
- mikel&swiha.edu
-37922
- TeleMedia Systems, Inc.
- Lance Wang
- lance&telemediasystems.com
-37923
- Freysteinn Alfredsson
- Freysteinn Alfredsson
- freysteinn&freysteinn.com
-37924
- NokianTyres LLC
- Alexandr Sizov
- Aleksandr.Sizov&nokiantyres.com
-37925
- mysql-cluster-snmp-monitor
- Steven Ayre
- steveayre&gmail.com
-37926
- Pranveer Singh Institute of Technology
- Amit K Awasthi
- awasthi&psit.in
-37927
- RTLGroup
- Udo Kertels
- domreg&rtlgroup.com
-37928
- Sheffield Teaching Hospitals NHS Foundation Trust
- Richard Conway
- richard.conway&sth.nhs.uk
-37929
- PIPS Technology Ltd
- David McConnell
- davidm&pipstechnology.co.uk
-37930
- Virus Stopper Foundation Registered NGO No 348 -2010
- GUNTAGANI VIMAL KUMAR
- virusstopperfoundation&gmail.com
-37931
- Bob Greene
- Bob Greene
- onms.bg&gmail.com
-37932
- Jack Storm
- Jack Storm
- blaiddeira&gmail.com
-37933
- Westchester Medical Center
- Andrew Minikes
- pen-iana-org-Request&wcmc.com
-37934
- Confident Technologies, Inc.
- John Whitlock
- ct.admin&confidenttech.com
-37935
- Danmarks Designskole
- Henrik Mathorne
- hma&dkds.dk
-37936
- Calendar42
- M. Boerrigter
- michel&calendar42.com
-37937
- Schaffhausen Communication GmbH
- Bjoern Becker
- bb&schaffhausen.de
-37938
- Lake Hospital System, Inc.
- Kimberly Krueger, HIM Director
- kimberly.krueger&lakehealth.org
-37939
- Reykjavik University
- Jens Valur Ólason
- hostmaster&ru.is
-37940
- WRD Technology Co., Ltd.
- Cheng Yang
- ycflash&gmail.com
-37941
- comForte 21 GmbH
- H.Horst
- h.horst&comforte.com
-37942
- Futuver S.A. de C.V.
- Nora Erika Morales Hernández
- nora.morales&futuver.com.mx
-37943
- Medium Link System Technology CO., LTD
- Jacky Wang
- jacky&ecenter-net.net
-37944
- megalo & company
- Nicolas Lehuen
- nlehuen&megalo-company.com
-37945
- Inspur(BeiJing) Electronic Information Industry Co.,Ltd
- ShuangPeng Di
- dishp&inspur.com
-37946
- CJSC "Dzetta"
- Sergey Levin
- dzetta&dzetta.com
-37947
- Banco Central del Ecuador
- Hernan Gonzalez Lopez
- eci&bce.ec
-37948
- TOS.BG
- Stoyan Petkov
- info&tos.bg
-37949
- TenneT TSO
- Elsbeth Boer
- websupport&tennet.eu
-37950
- v-solution
- Zhiyang Lu
- Zhiy.lu&v-solution.cn
-37951
- DataONE
- Dave Vieglais
- vieglais&ku.edu
-37952
- MoCA by Design
- Dan Kolis
- dan_kolis&yahoo.com
-37953
- ControlNet International Inc.
- kenlee
- kenlee&connet.com.tw
-37954
- Kentix GmbH
- Thomas Fritz
- t.fritz&kentix.de
-37955
- Nierhaus
- Andre Nierhaus
- andre&nierhaus.ch
-37956
- EMH Healthcare
- Tammy Smith
- tsmith&emhrhs.org
-37957
- Texas Regional Medical Center
- Robert D. Reeves, Jr.
- robert.reeves&trmcsunnyvale.com
-37958
- http://www.sentinel-engine.org
- Dusten Sobotta
- dusten&sentinel-engine.org
-37959
- paratio.com e.K.
- Carsten Logemann
- ldap&paratio.com
-37960
- MINIADMIN
- Christian Fohmann
- post&miniadmin.de
-37961
- COCUS AG
- Alexander Janssen
- ajanssen&cocus.com
-37962
- Mindbender Technologies
- Brent Irwin
- brent&getmbt.com
-37963
- Affirmed Networks, Inc.
- Ming Yang
- Ming_Yang&affirmednetworks.com
-37964
- CTI Digital
- Matt cockayne
- m.cockayne&ctidigital.com
-37965
- Altoona Regional Health System
- Sean Murphy
- smurphy&altoonaregional.org
-37966
- Perth Linux Users Group
- Timothy White
- committee&plug.org.au
-37967
- Webra JSC
- Dmitry Ishutkin
- spe&webra.ru
-37968
- Elma Electronic GmbH
- Timo Böhr
- t.boehr&elma.de
-37969
- OKSEI
- Ivan Fedulov
- ivanfedulov&gmail.com
-37970
- Global Digital Inc.
- Quest Chen
- quest&gdnet.com.tw
-37971
- EKILIA
- Philippe Rongier
- contact&ekilia.com
-37972
- Dyalog Ltd
- Andy Shiers
- andys&dyalog.com
-37973
- Mountain View Systems, LLC.
- James Carrion
- james_carrion&hotmail.com
-37974
- Winthrop University Hospital
- Dennis Rock
- drock&winthrop.org
-37975
- imessage.de
- H.-Christian Schreiber
- christian.schreiber&imessage.de
-37976
- MetaFORM Bilisim Iletisim ve Danismanlik Ltd Sti
- Zafer Genckaya
- zafer&metaformltd.com
-37977
- XTO Energy, Inc
- Lee Scarborough
- security_administrator&xtoenergy.com
-37978
- TEB
- MATHIEU Stéphane
- smathieu&teb-online.com
-37979
- Panaram Ltd
- Garry Partington
- garryp&panaram.com
-37980
- Bayer Business Services GmbH
- Ingo Wittenberg
- ingo.wittenberg&bayer.com
-37981
- Solution Concept s.r.o.
- Ivo Jánský
- ivo.jansky&solutionconcept.cz
-37982
- Netstream AG
- Alexis Caceda
- alexis.caceda&netstream.ch
-37983
- Nux Ltd.
- Michal Charvat
- michal.charvat&nux.cz
-37984
- GsurfNET
- Alessandro Pereira
- cops&gsurfnet.com
-37985
- CCDI
- Qiu.haoqi
- qiu.haoqi&ccdi.com.cn
-37986
- mCarbon Tech innovation pvt. ltd.
- Sushil Naresh
- sushil&mcarbon.com
-37987
- The Hong Kong Country Club
- Robert S. HALL
- rob.hall&countryclub.hk
-37988
- Jack in the Box
- Brent Irwin
- brent.irwin&jackinthebox.com
-37989
- FASTEK ITALIA S.R.L.
- IGINO RUSSO
- fastek&fastekitalia.it
-37990
- Intellique
- Emmanuel Florac
- eflorac&intellique.com
-37991
- Letechnic Ltd
- Paul HEAYS
- paul.heays&letechnic.com
-37992
- SYSM Systemmanagement Service & Konzepte GmbH
- Ralf Affeldt
- ralf.affeldt&sysm.de
-37993
- Hokkaido Telecommunication Network Co., Inc.
- Hayaki Nakamoto
- server-admins&hotnet.co.jp
-37994
- i-free
- Konstantin Egorov
- egorov_k&i-free.com
-37995
- Initiative für Netzfreiheit
- Leonhard Preis
- technik&netzfreiheit.org
-37996
- KTS GmbH
- Gregor Kotyrba
- g.kotyrba&kts-systeme.de
-37997
- 4G Technology
- GRENIER Gilles
- gilles.grenier&4g-technology.eu
-37998
- Greenwood Leflore Hospital
- Marvin Pate
- mpate&glh.org
-37999
- TransPacket AS
- Morten Rolland
- mortenro&transpacket.com
-38000
- DELEC Audio- und Videotechnik GmbH
- Georg Klug
- Georg.Klug&delec.de
-38001
- DIgitata LTD
- Hugo Mokken
- snmp&digitata.com
-38002
- Innovise IES (formerly 'Innovise ESM Software Ltd.')
- Jaco de Wet
- jaco.dewet&innovise.com
-38003
- StorMagic Ltd
- Chris Farey
- chris_farey&stormagic.com
-38004
- Edenred SA
- xiao hui loo
- xiaohui.loo&edenred.com
-38005
- REFLEXE Technologies
- Christopher Brown
- brown&reflexe.fr
-38006
- Dietrich IT-Services
- Daniel Dietrich
- d.dietrich&dietrich-it.com
-38007
- Handy Networks
- Jon Aykroyd
- jon&handynetworks.com
-38008
- ELECOM S.A.S
- Juan Manuel Franco Jácome
- juanmfranco&gmail.com
-38009
- FonSee Technology Inc.
- Feng Yang, Chang
- jeff_chang&fonsee.com
-38010
- CE Labs
- Srikanth Sherman
- ssherman&celabs.net
-38011
- NTTM (Name to Telephone Mapping) Limited
- Emanuel Peri
- pen&nttm.co.uk
-38012
- USL, Inc.
- Harold Hallikainen
- harold&uslinc.com
-38013
- Ampex Data Systems
- Chris Douty
- Chris_Douty&ampex.com
-38014
- NORICS GmbH
- M. Glave
- m.glave&norics.net
-38015
- DUHA system s.r.o.
- Pavel Brychta
- pavel.brychta&duhasys.eu
-38016
- Exicom Tele-Systems Limited
- Ajay Kumar
- kumar.ajay&exicom.in
-38017
- SC EXIMTUR SRL
- Mihai Limbasan
- support&itsquad.ro
-38018
- guideye.de
- Peter Köhler
- BigBoss19&web.de
-38019
- Special Systems Engineering Center LLC
- Maxim Goncharenko
- max&ssec.ru
-38020
- Franklin County Public Schools
- John Vehmeier
- john.vehmeier&frco.k12.va.us
-38021
- Cfengine AS
- Jon Henrik Bjornstad
- contact&cfengine.com
-38022
- HappyBooking UG (haftungsbeschränkt)
- Daniel Boldura
- info&happybooking.de
-38023
- ultrachaos
- Stefan Horst
- stefan&ultrachaos.de
-38024
- Logic Soft sas
- Paolo Tarantola
- paolo&logicsoft.it
-38025
- MindArray Systems (P) Ltd
- Alpesh Dhamelia
- alpesh&mindarraysystems.com
-38026
- ACOME
- LUCAS Anne
- anne.lucas&acome.fr
-38027
- Ltd "InfoTechnoService"
- Boris Stepchenko
- boris&its.kiev.ua
-38028
- DANTECH Limited
- Daniel Houlbrooke
- daniel&dantech.net.nz
-38029
- University of South Florida
- Eric Pierce
- epierce&usf.edu
-38030
- Conngame Co.Ltd.
- Sailer Shen
- tshen&conngame.com
-38031
- NextGate
- Les Marcum
- les&nextgate.com
-38032
- EFOLIA
- Gabriel GIL
- gabriel.gil&efolia.fr
-38033
- TeamF1
- Madhusudhan Kovalmudi
- madhu&teamf1.com
-38034
- IHSE GmbH
- Heiner Esseln
- esseln&ihse.de
-38035
- GS1 Sweden AB
- Jeremy Morton
- jm&gs1.se
-38036
- ChronoPay B.V.
- Valentine Zaitsev
- v.zaitsev&chronopay.com
-38037
- Ståle Hebæk Ødegården
- Ståle Hebæk Ødegården
- mail&hebaek.no
-38038
- Informacijsko svetovanje, Miha Valenčič, s.p.
- Miha Valenčič
- miha.valencic&gmail.com
-38039
- Klika d.o.o.
- Miha Valenčič
- miha.valencic&klika.si
-38040
- Reliable System Services Corporation
- Andrew Oldenburg
- aoldenburg&rsscorp.org
-38041
- Via Christi Health
- Denise Johnson
- Denise.Johnson&viachristi.org
-38042
- Unassigned
- Removed 2011-06-30
- ---none---
-38043
- Hear And See Systems OÜ
- Imre Tabur
- imre.tabur&eesti.ee
-38044
- wu-way, inc.
- Basit Mustafa
- basit&wu-way.com
-38045
- Shenzhen Winhap Commucations Inc.
- HU ZHIQIANG
- lieryou&gmail.com
-38046
- Joint Stock Company UniCredit Bank
- Maxim Ivlev
- infosecurity&unicredit.ru
-38047
- JSC STC Electron-Service
- Sergey Kizin
- pen&elserv.ru
-38048
- Institut des Sciences de l'Homme
- DUSSURGET Frederic
- fdussurget&ish-lyon.cnrs.fr
-38049
- Zaehlwerk GbR
- Gregor Giesen
- iana&zaehlwerk.net
-38050
- Lightbar Software Solutions LLC
- Bart Stevens
- bart&lightbar.org
-38051
- Boy Scouts of America
- David Gersting
- dgersting&oa-c4.org
-38052
- Attackplan Software
- Charles Orford
- iana-contact&attackplan.net
-38053
- Avisit Solutions Limited
- Arjen Visser
- arjen.visser&avisit.co.nz
-38054
- Arellia Corporation
- Michael Sainsbury
- msainsbury&arellia.com
-38055
- Gforce Inc.
- Bin LIU
- binliu&greencache.com
-38056
- Nason Hospital
- Brian Lilly
- blilly&nasonhospital.com
-38057
- D&B Germany GmbH
- Stephan Umbach
- umbach&dnbgermany.de
-38058
- Cyanide Studio
- Bastien Semene
- admin&cyanide-studio.com
-38059
- Banking production center
- Glukhova Marina
- glukhova&bpcbt.com
-38060
- Sempla Srl
- Raniero Bonelli
- it&sempla.it
-38061
- Edistar Srl
- Denis Gasparin
- denis.gasparin&edistar.com
-38062
- Marathon Oil Corporation
- Rod Holmes
- externaldomainmgt&marathonoil.com
-38063
- Suomen Asiakastieto Oy
- Jussi Saarinen
- jussi.saarinen&asiakastieto.fi
-38064
- SSL Corp
- Leo Grove
- leo.grove&ssl.com
-38065
- Media Alliance, CJSC
- Egor Vyscrebentsov
- noc&medi-a.ru
-38066
- SC Romastru Trading SRL
- Mihai Limbasan
- support&itsquad.ro
-38067
- APPRO International, Inc.
- FRANCIS KUNOH LEE
- kolee&appro.com
-38068
- Centrastate Medical Center, Inc.
- Mark Handerhan
- mhanderhan&centrastate.com
-38069
- Cetis, Inc.
- Brock Munsell
- bmunsell&Cetisgroup.com
-38070
- Anode
- Paul C. Bryan
- pbryan&anode.ca
-38071
- MaximaTelecom JSC
- Sergey Komarov
- sk&maximatelecom.ru
-38072
- Linear Photonics, LLC
- Tim Naples
- tnaples&lintech.com
-38073
- Defense Photonics Group
- Khurram Kazi
- k.kazi&defensephotonics.com
-38074
- Statropy Software LLC
- Erik Larson
- info&statropy.com
-38075
- Sentaca Communications
- Maciej Lopacinski
- maciej.lopacinski&sentaca.com
-38076
- Radical Creations
- Łukasz Rżanek
- lukasz.rzanek&radical.com.pl
-38077
- JetPay, LLC
- Zephaniah Loss-Cutler-Hull
- sysadmin&jetpay.com
-38078
- Nanjing Yxlink Information Technologies Co.,Ltd
- Zhong Wei
- zhongwei&yxlink.com
-38079
- DEAC Medics S de RL de CV
- Hugo Romero
- hromero&deacmedics.com
-38080
- Pick n Pay
- Duncan Rae
- drae&pnp.co.za
-38081
- Rank Group
- Kunal Sharma
- itbackoffice&rankinteractive.com
-38082
- HD Vietnam Co.
- Nguyen Huyen Dieu
- sau&hdvietnam.com.vn
-38083
- SLG Broadcast AG
- Michael Hofer
- michael.hofer&slgbroadcast.com
-38084
- Connecture, Inc.
- Mike Cernik
- mcernik&connecture.com
-38085
- Solo Cup Company
- Matthew Talaga
- matthew.talaga&solocup.com
-38086
- Kordia
- Tony Halligan
- noc.nz&kordia.co.nz
-38087
- Real I.T. Technicians, LLC
- Victor Centross
- contact&realittechs.com
-38088
- Joshua Tree Software, LLC
- Shawn McKinney
- shawn.mckinney&jtstools.com
-38089
- Prometheus Research
- Daniel Ferris
- dferris&prometheusresearch.com
-38090
- GreenMojito.org
- Aaron Hinkle
- aaron.hinkle&greenmojito.org
-38091
- SolidFire, Inc.
- Preston Wilson
- preston&solidfire.com
-38092
- EtherDVB Pty Ltd
- Greg Wickham
- greg&etherdvb.com
-38093
- wopoco.de
- Klemens Rutz
- oidmaster&wopoco.de
-38094
- Thales Optronics
- Karl Farmer
- karl.farmer&uk.thalesgroup.com
-38095
- Cooperativa de Ensino Superior Politecnico e Universitario
- Antonio Salgado
- dsi&cespu.pt
-38096
- CyclopusCAD s.r.l.
- Francesco Fauci
- info&cyclopuscad.com
-38097
- Universidade Estadual de Goiás
- Robson Cardoso Vieira
- robsoncardoso.ti&gmail.com
-38098
- Rostov region office of Federal service of state registration cadaster and cartography
- Besstremyannyy Sergey
- master&donjust.ru
-38099
- Transglobal Secure Collaboration Participation Inc. (TSCP)
- Keith Ward
- support&tscp.org
-38100
- CAMI Research Inc.
- Erik Muench
- erikm&camiresearch.com
-38101
- Roalter International
- Luis Roalter
- luis&roalter.it
-38102
- Szechenyi Istvan University
- Bela Csabi
- csabi&sze.hu
-38103
- Dataport AöR
- Holger Kraft
- holger.kraft&dataport.de
-38104
- ProFIX Co.
- Oleksii Shcherbatiuk
- Oleksii.Shcherbatiuk&profix.kiev.ua
-38105
- Kit Digital
- Edward Shnayder
- edward.shnayder&kit-digital.com
-38106
- Nebraska Furniture Mart, Inc.
- Thomas Applebee
- tom.applebee&nfm.com
-38107
- Aviosys Inc.
- Albert Liu
- albert&aviosys.com
-38108
- MicroXel Networks, Inc.
- Fred Mo
- fred.mo&microxel.com
-38109
- Domtar
- Marc Mathieu
- marc.mathieu&domtar.com
-38110
- Arkivum Ltd
- Richard Lowe
- Richard.Lowe&arkivum.com
-38111
- SHENZHEN DINSTAR TECHNOLOGIES Co.,Ltd.
- Jin Rong,Zhong
- zjrtx530&126.com
-38112
- Wuxi ZhongXun Technology Co.,ltd.
- yedaoliang
- yedaoliang&163.com
-38113
- Red Lion Controls Inc.
- Denis Aull
- Engineering&RedLion.net
-38114
- Merseytravel
- Mark Evans
- mark.evans&merseytravel.gov.uk
-38115
- Marist College
- Server Administrator
- server.admins&marist.edu
-38116
- ClearBUS
- Jean-Marc Lefebvre
- jean-marc.lefebvre&clearbus.fr
-38117
- University College Dublin
- John Curran
- security&ucd.ie
-38118
- BEI Electronics LLC
- Ron Marks
- pen&bdcast.com
-38119
- Open Mobile Video Coalition
- Anne Schelle
- anne.schelle&omvc.org
-38120
- UMass Memorial Medical Center
- Lorena Mandozzi
- lorena.mandozzi&umassmemorial.org
-38121
- IOD Incorporated.com
- Lenny Dexter
- ldexter&iodincorporated.com
-38122
- Red Wire Services, LLC
- Nick Webb
- nickw&redwireservices.com
-38123
- kinkajougames
- juan pablo gaviria
- juanpablo&kinkajougames.com
-38124
- Harmonic France (formerly 'Thomson Video Networks')
- Patrick Gendron
- patrick.gendron&harmonicinc.com
-38125
- EuroDNS SA
- Xavier Buck
- icann&eurodns.com
-38126
- COGITOP SAS
- VIVERET Jean-Marie
- jm.viveret&cogitop.fr
-38127
- IES Doctor Balmis
- Eduardo Barredo
- eduardo&iesdoctorbalmis.com
-38128
- Laurentian University
- Marty Laferriere
- mlaferriere&laurentian.ca
-38129
- Akumen LTD
- Istvan Csaky
- csaky&akuware.com
-38130
- Faith Regional Health Services
- Kim Stinson
- kstinson&frhs.org
-38131
- RG Nets
- Nick Rogers
- ncr&rgnets.com
-38132
- eTruhla s.r.o.
- Vit Hnilica
- info&etruhla.cz
-38133
- Ingnitia http://www.ingnitia.com
- Mikel Mugarza
- mmugarza&ingnitia.com
-38134
- National Document Custodians, LLC
- Albert Wheeler
- devadmin&documentcustodians.com
-38135
- Shield Bridge Inc.
- William Bai
- wbai&thebais.com
-38136
- In Touch Pharmaceuticals, Inc
- Mitch Gaffigan
- mitch&intouchpharma.com
-38137
- Fusionskye
- Wang Yong
- wangyong&fusionskye.com
-38138
- Hochschule Regensburg
- Athanassios Tsakpinis
- athanassios.tsakpinis&hs-regensburg.de
-38139
- pro parity IT-Service
- Dominik George
- info&proparity.de
-38140
- Imtech Marine
- Pascual de la Cruz
- pascual.delacruz&imtech.nl
-38141
- Emich KsE - Kundenspezifische Elektronik
- Marc Emich
- info&emich-kse.de
-38142
- BHE Bonn Hungary Electronics Ltd.
- Gyula Mikó
- gyula.miko&bhe-mw.eu
-38143
- CloudBees, Inc.
- Kohsuke Kawaguchi
- kkawaguchi&cloudbees.com
-38144
- Displaydata Ltd (formerly 'ZBD Displays Limited')
- Greg Beresford
- greg.beresford&displaydata.com
-38145
- ECG, Inc.
- James Puckett
- jpuckett&e-c-group.com
-38146
- Access Now
- Daniel Bryg
- dbryg&yahoo.com
-38147
- Mind Matters LLC
- Deepa Abraham PhD
- mobileofficepro&att.net
-38148
- EMCALI E.I.C.E. E.S.P.
- David Blandon Romaña
- dblandon&emcali.net.co
-38149
- Teknokala Ky
- Timo Santasalo
- timo.santasalo&teknokala.com
-38150
- Altia Consultores S.A.
- Luis Alberto Asturias Núñez
- luis.asturias&altia.es
-38151
- Invendis Technologies
- Devashis Sahoo
- devashis.sahoo&invendis.com
-38152
- Bauerfeind AG
- Daniel Scharf
- daniel.scharf&bauerfeind.com
-38153
- Dada S.p.A.
- Fabio Coatti
- sistemi&dada.eu
-38154
- Autopart International, Inc.
- James Russell
- it&autopartintl.com
-38155
- EXATEQ Ltd.
- Mark Fidell
- mark.fidell&exateq.com
-38156
- Zepheira LLC
- Zepheira PEN Contact
- iana.pen&zepheira.com
-38157
- Policìa Nacional de Colombìa
- Natalia Andrea beltran
- natalia.beltran&policia.gov.co
-38158
- Open Platform Trust Services
- Seiji Munetoh
- seiji.munetoh&gmail.com
-38159
- Unity Global Corporation
- Pamela Turner
- turner&unityglobalcorporation.com
-38160
- Datto Inc.
- Christopher Deslandes
- cdeslandes&dattobackup.com
-38161
- W.W. Grainger, Inc.
- Eleazar Flores
- eleazar.flores&grainger.com
-38162
- BNTPRO BILGI ve ILETISIM HIZ. LTD. STI.
- Fatih BATUM
- fatih&bntpro.com
-38163
- Kiesel GmbH
- Andrease Imhof
- it&kiesel.net
-38164
- Ticket Monster Inc
- Doo Han Yoon
- sys&tmon.co.kr
-38165
- Kohlpharma GmbH
- Imonikhe Imonah
- iimonah&kohlpharma.com
-38166
- nexurium.fr
- Joly Bastien
- joly.bastien&gmail.com
-38167
- Albrecht Jung GmbH & Co. KG
- André Paul
- iana_admin&jung.de
-38168
- The Taubman Company
- Quang Nguyen
- qnguyen&taubman.com
-38169
- Life Image Inc
- Hai Wang
- hwang&lifeimage.com
-38170
- LocalNet Corp.
- Ed Szynaka
- ln_eds&localnet.com
-38171
- fischerwerke GmbH & Co. KG
- Johannes Klumpp
- admin-c&fischer.de
-38172
- CustosMobile
- Carlos Blanco
- carlos.blanco&custosmobile.com
-38173
- Adminia Sistemas
- Javier Martín
- sistemas&adminia.es
-38174
- Hamilton Medical Center
- Chad White
- cwhite&hhcs.org
-38175
- Dali Wireless, Inc.
- Albert S. Lee
- lee&daliwireless.com
-38176
- Marken Mehrwert AG
- Hajo Kliemeck
- klk&mmw.ag
-38177
- iCue
- Ashutosh Vighne
- avighne&icue.biz
-38178
- Skytide, Inc
- Laxman Chinnakotla
- lchinnakotla&skytide.com
-38179
- Bard College
- Damion Alexander
- dalexand&bard.edu
-38180
- Kangaroo Media Inc.
- Pedro Costa
- pcosta&fanvision.com
-38181
- Trinity Health
- Edward Trail
- traile&trinity-health.org
-38182
- CUBE. Corporate Release SA
- Kamil Kurzyk
- kkurzyk&cube-cr.pl
-38183
- Pythagore FD
- Frédéric Helmer
- f.helmer&pythagore-fd.fr
-38184
- Heidelberg Mobil International GmbH
- Christian Zimmermann
- christian.zimmermann&hdm-i.com
-38185
- Detailresult Groep
- J. van Leeuwen
- jvleeuwen&detailresult.nl
-38186
- Xpandia Ltd.
- Ian S Gordon
- ian&xpandia.co.uk
-38187
- Weidmüller Interface GmbH & Co. KG
- Sebastian Wolf
- sebastian.wolf&weidmueller.de
-38188
- StormMQ Limited
- Raphael Cohn
- raphael.cohn&stormmq.com
-38189
- Telemedia LTD
- Tamas Kanai
- tamas.kanai&telemedia.hu
-38190
- Magna
- Tho Nguyen
- Tho.Nguyen&magna.com
-38191
- Memjet, Inc.
- Bob Woods
- bob.woods&memjet.com
-38192
- Gravity R&D Limited
- Gabor Vincze
- administration&gravityrd.com
-38193
- Yuduan Mobile Co., Ltd.
- Xin Chen
- hhuang&yuduanmobile.com
-38194
- Naga Concept
- Jean-Marc Houbiers
- jmh&nagaconcept.com
-38195
- Gameservers.com
- Brian Rak
- brak&gameservers.com
-38196
- Flagship Facility Services
- Jasmeet Sidhu
- sidhu.j&gmail.com
-38197
- Lacuna Systems, Inc.
- Derek Andree
- dandree&lacunasystems.com
-38198
- Rincon Research Corporation
- John Forinash
- jmf&rincon.com
-38199
- Fraser Talbot Consulting Services; L.L.C
- Fraser Talbot
- fraserhtalbot&ft-cs.com
-38200
- Libéo
- Jean-François Rousseau
- info&libeo.com
-38201
- Ronald Hummelink
- Ronald Hummelink
- ronald&hummelink.net
-38202
- NETILITY GmbH & Co. KG
- Arno Schenk
- hostmaster&netility.de
-38203
- Interactive Systems & Business Consulting
- Aurel Chiriac
- aurel.chiriac&intersystems.ro
-38204
- Six DEE Telecom Solutions Pvt. Ltd.
- Kenil Paul
- kenil&6dtech.co.in
-38205
- University Teleinformatic Center - UTIC, University of Sarajevo
- Enes Halilovic
- dnstech&utic.ba
-38206
- Eloquera
- Dmytro Bablinyuk
- dmytro&eloquera.com
-38207
- Fujian JinQianMao Electronic Technology Co.,Ltd.
- ROY HUANG
- jqm&fjjqm.com
-38208
- meaganharris.net
- Meagan Harris
- meagan&meaganharris.net
-38209
- VMC Systems Ltd.
- Abhijit Bhalekar
- abhijit.b&vmcindia.com
-38210
- Xovis AG
- Markus Herrli
- markus.herrli&xovis.com
-38211
- JSC 'Siberian Coal Energy Company'
- Pashkov Sergey
- Pashkov&suek.ru
-38212
- Derichebourg
- Nikic Milan
- hotline&derichebourg.com
-38213
- ACCENT-ELECTRONIC
- Alexander Mashtakov
- amashtakov&accent.md
-38214
- Vlatacom
- Momčilo Majić
- momcilo.majic&vlatacom.com
-38215
- Hochschule Hamm-Lippstadt - University of Applied Sciences
- Michael Steuter
- michael.steuter&hshl.de
-38216
- Blumenthal S.R.L.
- Gion Blumenthal
- gion&blumenthal.it
-38217
- gigatec GmbH
- Stephan A. Klein
- servicedesk&gigatec.de
-38218
- Designer Systems Ltd
- David Ingleby-Oddy
- david&designersystems.co.uk
-38219
- Therap Services, LLC
- Md. Nazrul Islam
- nazrul&therapservices.net
-38220
- Private Unitary Enterprise on Rendering Services "Greenwall Systems" (formerly 'IZAO Greenwall Systems')
- Mikhail Kuznetsov
- info&greenwall.by
-38221
- IP Gorshkov Yuri Valerevich
- Yuri V. Gorshkov
- yvgorshkov&gmail.com
-38222
- Philips Electronics North America Corporation
- Anthony Kandaya
- anthony.kandaya&philips.com
-38223
- definition six, inc.
- Chris Hecker
- support&d6.com
-38224
- Caromont Health
- Mike Johnson
- johnsonm&caromonthealth.org
-38225
- Encell Technology, Inc.
- Gordon Hwang
- ghwang&encell.com
-38226
- AriadNEXT
- Marc NORLAIN
- marc.norlain&ariadnext.com
-38227
- Wellington and King, Inc.
- Charle Demers
- cdemers&wellingtonking.com
-38228
- PICA GmbH
- Moritz Maier
- moritz.maier&pica.de
-38229
- GIVC
- Eugene Sokolov
- sokolov&givc.ru
-38230
- Kostroma State Technological University
- Serge Beletskiy
- bs&kstu.edu.ru
-38231
- Lycée Sainte Marie du Port
- tedesco nicolas
- ntedesco&lpegt-smp.fr
-38232
- Onondaga Community College
- Keith Conger
- sysadmin&sunyocc.edu
-38233
- ARCHE Systeme GmbH
- Peter Weinstock
- peter.weinstock&arche.de
-38234
- TESSCO Technologies Incorporated
- Michael Kaegler
- kaeglerm&tessco.com
-38235
- ENTERSECT Technologies (PTY) LTD
- Chris Kistner
- chris&entersect.co.za
-38236
- Colsys s.r.o.
- Jiri Merth
- merth&colsys.cz
-38237
- Elverson Rod and Gun Club
- Doug Pratt
- doug&elversonrodandgunclub.com
-38238
- karnal talat private limited
- jahangir hussain
- hussain.jahangir61&gmail.com
-38239
- OARC, Inc.
- Geoffrey Sisson
- geoff&dns-oarc.net
-38240
- Butte-Glenn Community College District
- Christian Dyckman
- noc&butte.edu
-38241
- Hanlong Technology Co.,Ltd.
- Navy Ding
- navy&hanlongtek.com
-38242
- Shenzhen 33e9 E-Business Co., Ltd
- zengweizhi
- zengweizhi&33e9.com
-38243
- Thecus Thecnology Corp.
- Bonny Lin
- bonny_lin&thecus.com
-38244
- TOKYO RADAR CORPORATION
- Masayuki Iwasawa
- iwasawa&radar.co.jp
-38245
- MIBUC-NET
- Michael Buchmann
- info&mibuc-net.de
-38246
- FSC International Center GmbH
- Andre de Freitas
- fsc&fsc.org
-38247
- Charleston Area Medical Center, Inc.
- Bradley B. Young, Chief Technology Officer
- brad.young&camc.org
-38248
- Nebraska Heart Hospital
- Oliver Banta
- SoarianProjectSupport&neheart.com
-38249
- Niagara Health System
- Patrick Radics
- licensing&niagarahealth.on.ca
-38250
- Proventa AG
- Clemens Bergmann
- it-admins&proventa.de
-38251
- Zmanda, Inc.
- Ramesh Gupta
- ramesh&zmanda.com
-38252
- EOSSOnline Limited
- Steven McArdle
- Smcardle&eossonline.com
-38253
- Athenta Technologies (P) Ltd., India
- Jacob A Thomas
- jacob.thomas&athenta.com
-38254
- Resolan
- Julien Francois
- admin&resolan.com
-38255
- Khalid Shukri IT-Beratung
- Khalid Shukri
- khalid.shukri&web.de
-38256
- ItsOn, Inc.
- David Johnson
- drj&itsoninc.com
-38257
- nuinno
- Stefan Nunninger
- stefan.nunninger&nuinno.de
-38258
- WhipTail Technologies
- James Candelaria
- jc&whiptailtech.com
-38259
- ADD-Technology SRL
- Serghei Druta
- Serghei.Druta&addgrup.com
-38260
- 4SMS ApS
- Josip Djuricic
- jd&4sms.dk
-38261
- Brightstone
- Aleksander Adamowski
- aleksander.adamowski&gmail.com
-38262
- Boxcar Press, Inc
- Brian Pribis
- brian&boxcarpress.com
-38263
- Thomas Memorial Hospital
- Charles Covert
- Charlie.Covert&thomaswv.org
-38264
- Midwest Health Systems Data Center
- Bob Lies
- rlies&mhsdc.com
-38265
- Intendencia de Canelones
- Carlos Pirez
- carlos.pirez&imcanelones.gub.uy
-38266
- Chinese Bible Church of Greater Boston
- Patrick Y. Lin
- plin&cbcgb.org
-38267
- UTS Programmers' Society
- Tomislav Bozic
- admin&progsoc.org
-38268
- Threeline LLC
- Alexander Orlov
- aorlov&trxline.ru
-38269
- rrbone
- Dominik Bay
- db&rrbone.net
-38270
- inTaligent Digital Consultants
- Charles A. Moorman
- cam&intaligent.net
-38271
- inTaligent Digital Consultants
- Charles A. Moorman
- cam&intaligent.net
-38272
- Liberti
- Rokhim Purboyono
- rokhim.purboyono&liberti.co.id
-38273
- AvePoint, Inc.
- James Zhu
- James.Zhu&avepoint.com
-38274
- Safirion GmbH
- Joerg Franke
- franke&safirion.de
-38275
- 3-IK
- Matias D. Banchoff T.
- matias&3-ik.com.ar
-38276
- CipSoft GmbH
- Thomas Kraeuter
- techsupport&cipsoft.com
-38277
- r-tec IT Systeme GmbH
- Dr. Stefan Rummenhoeller
- rummen&r-tec.net
-38278
- Memorial Hospital of South Bend
- Erek Sherwood
- esherwood&memorialsb.org
-38279
- Pilot Corporation of America
- Rick Siciliano
- OID-Admin-PCA&pilotpen.com
-38280
- Millennium Information Technologies (Private) Limited
- Rahal Jayawardena
- rahal&millenniumit.com
-38281
- 1st Setup
- Michel Verbraak
- info&1st-setup.nl
-38282
- Italtelec S.p.A.
- Giacomo Burdi
- g.burdi&italtelec.com
-38283
- MobiWork LLC
- Herve RIVERE
- hrivere&mobiwork.com
-38284
- PacketAccess
- Kevin Robinson
- krobinson&goldtelecom.com
-38285
- Live-PA Ltd
- Paul Bentley
- paul.bentley&live-pa.com
-38286
- pki24.com
- Stephan Callsen
- info&callsen.org
-38287
- D-TACQ Solutions Ltd
- Peter Milne
- peter.milne&d-tacq.com
-38288
- Swiss public broadcasting organisation (SRG SSR)
- Luciano Ramagnano
- luciano.ramagnano&srgssr.ch
-38289
- LeetGeek Pty Ltd
- Ben Corbett
- ben&leetgeek.com.au
-38290
- IntelliVoice Co,Ltd.
- Akiko Izawa
- izawa&intellivoice.co.jp
-38291
- G Data Software AG
- Hendrik Flierman
- Hendrik.Flierman&gdata.de
-38292
- Damall Technologies Sas
- Silvia Fioranelli
- info&damallgroup.com
-38293
- Dynamic Technical Solutions Inc.
- Shawn May
- shawn&d-t-s-inc.com
-38294
- IOMachine LLC
- Nilanjan Bhowmik
- billing&iomachine.com
-38295
- Pro Broadband Inc.
- Xinkai Wang
- xkwang&pbicn.com
-38296
- Multi Sinergi Infrastruktur, PT
- Trijaya Danisaputra
- trijaya_danisaputra&multisinergi.co.id
-38297
- ComMedia, Lda
- Antonio Paneiro
- info&commedia.pt
-38298
- DaGo Solutions
- Dave Goldstraw
- technical&dago.co.uk
-38299
- Dillard's Inc
- Shawn Thex
- Shawn.Thex&Dillards.com
-38300
- GrubHub
- Devon Mackay
- systems&grubhub.com
-38301
- hosthis.org
- Jonathan THIBERVILLE
- jonathan.thiberville&gmail.com
-38302
- ITSUMO s.c.
- Szymon Kowalczyk
- pkit&itsumo.pl
-38303
- Pask
- Thien Pask
- Tepask&gmail.com
-38304
- CrossImaging Inc.
- Hisayuki Naitoh
- naitoh&crossimaging.jp
-38305
- LybreDyne Technologies
- Christopher Dobbs
- crdobbs&lybredyne.net
-38306
- MASIBUS AUTOMATION AND INSTRUMENTATION PVT LTD
- Sumitkumar Nagar
- sumitnagar&masibus.com
-38307
- OIS-Net
- Juerg Oehler
- juerg.oehler&ois-net.org
-38308
- Joint Stock Company «Banking & Financial Network»
- Kovalyov Andrey
- a_kovalyov&bfn.by
-38309
- Cirquent GmbH
- Hermann Baier
- Hermann.Baier&cirquent.de
-38310
- PREMIER Bankcard, LLC
- Michael Baker
- Michael.Baker&premierbankcard.com
-38311
- OPTIM'HEXA
- Jean-Charles Lopez
- jc.lopez&optimexa.com
-38312
- CareView Communications
- Matt Clark
- mclark&care-view.com
-38313
- STG (Stargazer)
- Maxim Mamontov
- faust&stg.dp.ua
-38314
- adjectivism.org
- Erick Turnquist
- jhujhiti&adjectivism.org
-38315
- National Land Survey of Iceland
- Samúel Jón Gunnarsson
- sysadmin&lmi.is
-38316
- SEKONIC CORPORATION
- HIROSHI TAKEI
- h.takei&sekonic.co.jp
-38317
- JR East Mechatronics Co.Ltd.
- Kiyotaka Suzuki
- suzuki-kiyotaka&jrem.co.jp
-38318
- Ing. Buero Fischer GmbH
- Bernhard Fischer
- fischerb&fischer-ing.de
-38319
- Lantiq Deutschland GmbH
- Olaf Wachendorf
- olaf.wachendorf&lantiq.com
-38320
- Bubblephone Ltd
- Johnathan Turrall
- john.t&bubblephone.com
-38321
- Greatnet.de OHG
- Stephan Sedlmeier
- ss&greatnet.de
-38322
- Strangeloop Networks
- Alex McCubbin
- alex.mccubbin&strangeloopnetworks.com
-38323
- Stuart McGraw
- Stuart McGraw
- smcg4191&frii.com
-38324
- emagsoftware
- dingrong
- dingrong&emagsoftware.cn
-38325
- Precogen, LLC
- Brian McKenna
- oid&precogen.com
-38326
- nepda
- Nepomuk Frädrich
- webmaster&nepda.de
-38327
- Vokzal-infokom
- Ivoilovsky Mikhail
- mivoilovsky&yandex.ru
-38328
- LvlUp e.V.
- Olaf Rühenbeck
- some.individuum&gmail.com
-38329
- Three Laws of Mobility
- Sridhar Venkatakrishnan
- sridhar&3lm.com
-38330
- Datametrix AS
- Glenn Andersson
- glenn&datametrix.no
-38331
- Skeed Co., Ltd.
- YANAGISAWA, Kentaro
- k-yanagisawa&skeed.co.jp
-38332
- LeonIT GbR
- Maximilian Thoma
- info&leonit.net
-38333
- Network Solution Technologies Co., Ltd.
- Minyoung Lee
- mylee&nstco.co.kr
-38334
- ArchOne
- Roman Sergey
- rs&archone.org
-38335
- AVIN Networks Private Limited
- Pankaj Kumar Roy
- pankaj_roy&avinnetworks.com
-38336
- Platte Valley Medical Center
- Darrell Messsersmith
- dmessersmith&pvmc.org
-38337
- Power Instruments Pte Ltd.
- Wang Yetao
- wangyt&powerinstruments.com.sg
-38338
- Suntel Ltd
- Arasaratnam Umakanthan
- UmakanthanA&suntel.lk
-38339
- Centrum Informatyki Statystycznej
- Roman Mendaluk
- r.mendaluk&stat.gov.pl
-38340
- Broadcast Partners
- Yves Vermeersch
- support&broadcastpartners.nl
-38341
- AGETO Innovation GmbH
- Christian Kahlo
- c.kahlo&ageto.net
-38342
- City of Hope
- Jon Sharp
- jsharp&coh.org
-38343
- Wilcom Technologies
- Qizhi Yi
- yiqizhi&wilcom.com.cn
-38344
- Maxwell Worthington
- Mark Madere
- mark&maxwellworthington.com
-38345
- S&T Ukraine
- Iurii Chernichenko
- iurii.chernichenko&snt.ua
-38346
- Pallas GmbH
- Stephan Sachweh
- helpdesk&pallas.com
-38347
- Ing. Günther Vlaschits
- Ing. Günther Vlaschits
- office&vlaschits.at
-38348
- ISDEFE Ingenieria de Sistemas para la Defensa de España S.A.
- Carlos Manuel Gonzalez Rodriguez
- cmgonzalez&isdefe.es
-38349
- Firstcom A/S
- Jon Schøpzinsky
- jos&firstcom.dk
-38350
- XtreemFS project
- Michael Berlin
- berlin&zib.de
-38351
- net-lab GmbH
- Andreas John
- internet&net-lab.net
-38352
- National Information Technology Center
- Nabeel Al-Fayoumi
- generaldirector&pki.jo
-38353
- Weebly, Inc.
- Network Operations
- netops&weebly.com
-38354
- Princeton Consultants
- Attila Mihalyi
- amihalyi&princeton.com
-38355
- TTTech Computertechnik AG
- Dominique Riezler
- dominique.riezler&tttech.com
-38356
- Mike Becker
- Mike Becker
- mike.becker&redpeppersworld.de
-38357
- ActualMed
- Rafael Forcada
- rafael.forcada&actualmed.com
-38358
- Peak Reliability (formerly 'Western Electricity Coordinating Council')
- Lyonell Keplar
- lkeplar&peakrc.com
-38359
- Meissner
- Oliver Meissner
- oliver-sd94&la-familia-grande.de
-38360
- Delled Company Ltd
- Delmiro Paes
- delmiro&delled.com.br
-38361
- Exabre Ltd
- Chris Jupp
- chris.jupp&exabre.com
-38362
- alpha dot net Australia
- James Ponza
- jponza&alpha.net.au
-38363
- PT Primatama Sentra Solusi
- Martin Otterman
- otterman&primatama.net
-38364
- Netsis Technology
- Edgardo Gonzales II
- edgardo.gonzales&netsis.com.sg
-38365
- BKW FMB Energie AG
- Sven Mehlhase
- sven.mehlhase&bkw-fmb.ch
-38366
- Joint-Stock Bank "Master-Bank"
- Aleksey Jastrebcev
- snmpmaster&masterbank.ru
-38367
- KIS Information Services GmbH
- Joachim Kaule
- joachim.kaule&kis-is.com
-38368
- Radimetrics Inc.
- John Adziovsky
- john&radimetrics.com
-38369
- ZiXi, LLC
- Igor Ratner
- igor&zixi.us
-38370
- jetNEXUS Limited
- Greg Howett
- ghowett&jetnexus.com
-38371
- PT. Cahaya Barumas Sejahtera
- Rudiman
- rudiman&cbsindustry.com
-38372
- PT INPAR SAKA
- Ahmad Hidayat
- ahmad&inparsaka.co.id
-38373
- Greenville Hospital System University Medical Center
- Jerry L. Cox, MISM, CPHIMS
- jcox&ghs.org
-38374
- Cloudera
- Matt Massie
- matt&cloudera.com
-38375
- Linus van Geuns
- Linus van Geuns
- linus&vangeuns.name
-38376
- The Chester County Hospital
- Ray Hess
- rhess&cchosp.com
-38377
- Tohojo ApS
- Toke Høiland-Jørgensen
- toke&tohojo.dk
-38378
- FeedHenry Ltd.
- James Mernin
- iana.ops&feedhenry.com
-38379
- Inter Media Group
- Denys Vernychenko
- vdv&inter.ua
-38380
- AMG.net S.A.
- Marek Strejczek
- marek.strejczek&amg.net.pl
-38381
- Unetvale Servicos e Equipamentos Ltda. EPP
- Rafael Domingues
- noc&unetvale.net.br
-38382
- znt Zentren für Neue Technologien GmbH
- Radu Mihail
- m.radu&znt.de
-38383
- WorldCare Clinical LLC
- Patrick Chokron
- pchokron&wcclinical.com
-38384
- DBAPP Security
- Jiang Junyong
- junyong.jiang&dbappsecurity.com.cn
-38385
- Svyazcom Ltd.
- Ivan Zubkov
- zubkov&svyazcom.ru
-38386
- Coop Denmark A/S
- Peter Dahl Vestergaard
- peterdv&coop.dk
-38387
- Smart Design sprl
- Bruno Dagnelie
- bdagnelie&smartdesign.be
-38388
- HANGZHOU LAYBEL ELECTRONIC TECHNOLOGY CO,. LTD
- wuyong
- wuyong&laybel.com.cn
-38389
- Verisec AB
- Tony Buss
- tony.buss&verisec.com
-38390
- Railinc Corporation
- Chad Boos
- rcisecurity&railinc.com
-38391
- iroïd
- Tom Wagner
- dev&iroid.net
-38392
- University of Dayton
- Steven Smith
- smithstm&udayton.edu
-38393
- SJX Soft
- Simon J Xuereb
- sjxuereb&gmail.com
-38394
- Interfibra Telecomunicaciones, S.L. (formerly 'Teleyecla, S.L.')
- Francisco José Bernal Fernández
- fj.bernal&interfibra.es
-38395
- Phillips Foods, Inc.
- Bradley H. Grant
- bgrant&phillipsfoods.com
-38396
- Flinders Christian Community College Inc
- David Tredinnick
- david.tredinnick&flinders.vic.edu.au
-38397
- TSB - Tiefdruck Schwann-Bagel GmbH & Co.KG
- Mr. Soufian al Maziani
- soufian.almaziani&tsb.de
-38398
- ZAO TD BOVID
- Borisov Vladimir Vladimirovich
- sn&bovid.ru
-38399
- Kloeckner & Co SE
- Ruediger Pohl
- coit&kloeckner.de
-38400
- nfon AG
- Jan-Peter Koopmann
- technik&nfon.net
-38401
- Veridian Solutions Pty. Ltd
- Michael Junek
- michael.junek&veridian.com.au
-38402
- C.I. Centro de Informacoes
- Jailson Lessa Marques
- jailson&infonet.com.br
-38403
- vacc.ch
- Hanspeter RUTSCHMANN
- hp&vacc.ch
-38404
- Maintainet AG
- Uwe Carsten Krause
- ukrause&maintainet.de
-38405
- Autotalks
- Alex Reicher
- alex.reicher&auto-talks.com
-38406
- Roscom Ltd
- Harry Sheppard
- it&roscom.co.uk
-38407
- Chesapeake Ltd
- Andrew Hardy
- andrew.hardy&chesapeakecorp.com
-38408
- OKIT GmbH
- Olaf Krause
- iana_ac&okit.de
-38409
- CargoSoft LLC
- Alexey Gerasimenko
- admin&cargosoft.ru
-38410
- Raikosoft GmbH
- Joachim Kluemper
- joachim.kluemper&raikosoft.com
-38411
- Knology
- Paul Schmidt
- paul.schmidt&knology.com
-38412
- Fun & RelaX GmbH
- Eckart Uhlig
- eckart_uhlig&hotmail.com
-38413
- Lodgeistics Inc.
- Justin Kaufman
- jkaufman&lodgeistics.net
-38414
- FusionDirectory
- Benoit Mortier
- contact&fusiondirectory.org
-38415
- Clavius-Gymnasium Bamberg
- Wolfgang Faltin
- it&srv.cg.bamberg.de
-38416
- Nordic ID Oy
- Nikolai Raita
- nikolai.raita&nordicid.com
-38417
- Kybeire Ltd
- John Eire
- kybeire&gmail.com
-38418
- UFMA - Universidade Federal do Maranhão
- Diego Figueiredo
- diegolcf&ufma.br
-38419
- Rauland Australia Pty Ltd
- Mathew McKernan
- matmckernan&rauland.com.au
-38420
- Yottaa Inc
- Jason Parsons
- noc&yottaa.com
-38421
- ALL-RTP
- Mohamed LALMI
- lalmi&all-rtp.com
-38422
- Tesync Technology Limited
- Rahul Choudhary
- rahul.choudhary&tesync.com
-38423
- PBeaKK
- Thomas Fillips
- thomas.fillips&pbeakk.de
-38424
- BalTstamp
- Vincentas Vitkauskas
- vincentas.vitkauskas&gmail.com
-38425
- Private University College of Education of the Diocese of Linz
- Wolfgang Uebermasser
- wolfgang.uebermasser&dioezese-linz.at
-38426
- State company "Russian highways"
- Danil Tolkalin
- D.Tolkalin&russianhighways.ru
-38427
- Genève Aéroport
- Jerôme BOCH
- it&gva.ch
-38428
- SlimPay
- Jan Tapuska
- jan.tapuska&slimpay.net
-38429
- Dryden Municipal Telephone System
- Adam Thompson
- athompso&dmts.biz
-38430
- Irell & Manella LLP
- David James
- djames&irell.com
-38431
- Communications & Power Industries, Satcom Division
- John Overstreet
- john.overstreet&cpii.com
-38432
- Oberon, Inc.
- Travis J. Weaver
- tjw&oberonwireless.com
-38433
- NetAxis Solutions
- Raphael Benedet
- management&netaxis.be
-38434
- OpenCSI
- Bruno Bonfils
- bbonfils&opencsi.com
-38435
- IQantum GmbH
- Daniel Abegglen
- info&iqantum.ch
-38436
- ReiniNET
- Patrick Reinhart
- patrick&reini.net
-38437
- Vlastimil Kupsky
- Vlastimil Kupsky
- KupskyV&seznam.cz
-38438
- GTwins
- shuaiwang
- wangs&gtwins.cn
-38439
- Aurenz GmbH
- Andreas Sander
- a.sander&aurenz.de
-38440
- HEROLD Business Data GmbH
- Herold Operating
- operating&herold.at
-38441
- Blue-Sphere
- Marro Pasquale
- pasquale.marro&gmail.com
-38442
- INRADIOS GmbH
- Steffen Bittner
- steffen.bittner&inradios.com
-38443
- OrbiConnect GmbH & Co. KG
- Benjamin Biel
- oid&orbiconnect.de
-38444
- Holiday Extras Limited
- Kieran McGettrick
- kieran.mcgettrick&holidayextras.com
-38445
- VMC
- Trevor Seward
- trevorse&vmc.com
-38446
- Enlogic Systems, LLC
- Joel Greene
- joel.greene&enlogic.com
-38447
- Ing. Viliam Oršula - iElectro
- Viliam Oršula
- ielectro&ielectro.eu
-38448
- NOLOGIN CONSULTING SL
- Richard Rojas
- richard.rojas&nologin.com.bo
-38449
- Nationwide Building Society
- AD Management Committee
- admcmail&nationwide.co.uk
-38450
- DediPower Managed Hosting Ltd.
- David Joy
- support&dedipower.com
-38451
- LanderNet Inc.
- Isak Adde
- addeisak&hotmail.com
-38452
- QQ2
- Harry Sheppard
- hcs&qq2.net
-38453
- Indigo Dynamic Networks, LLC
- Adam Rich
- support&indigodynamic.com
-38454
- Adpuntum GmbH
- DI Mandl Alexander
- alexander.mandl&adpunctum.com
-38455
- Cyberware Inc.
- Takafumi Hiraka
- hiraka&exm.cyberware.co.jp
-38456
- IC "ISKRA" Ltd.
- Prodayvoda Vitaly
- Prodayvoda_V&uckpa.ru
-38457
- ecvision
- Billy Chan
- billychan&ecvision.com
-38458
- Nachtwacht
- W.P. Snel
- walters&nachtwacht.org
-38459
- SBIT GmbH
- Mark Becker
- mark.becker&sbit-gmbh.de
-38460
- Gemtek Technology Co., Ltd.
- Masu Lin
- masu_lin&gemtek.com.tw
-38461
- ragenet llc
- Dan Theisen
- admin&ragenet.us
-38462
- Pt Magnar Nugraha
- Wawan Wiratno
- wawan_wiratno&yahoo.com
-38463
- Data Service Integration
- DESSAI Imrane
- dessai.imrane&dsi-oi.com
-38464
- Snoerf.org
- Veli-Matti Lammentausta
- velkka&snoerf.org
-38465
- Avalcom Sp. z o.o.
- Jacek Bilski
- jacek.bilski&avalcom.pl
-38466
- Max-Planck-Institut für Molekulare Genetik
- Donald Buczek
- buczek&molgen.mpg.de
-38467
- Carl Edelmann GmbH
- Frank Maurer
- f.maurer&edelmann.de
-38468
- Garage Center for Contemporary Culture
- Alexey Bykov
- gd&gccc.ru
-38469
- Axtion Sdn Bhd
- Lam Chang Jium
- cjlam&axtion.com.my
-38470
- Bison Schweiz AG
- Patrick Reinhart
- patrick.reinhart&bison-group.com
-38471
- Multimediakontor Hamburg GmbH
- Uwe Carsten Krause
- ukrause&maintainet.de
-38472
- Kevin Mullet
- Kevin Mullet
- kwm&themullets.net
-38473
- Ellis Hospital
- Derek Dzimiera
- dzimierad&ellismedicine.org
-38474
- Blackridge Technology
- Charles M. Tellechea, Jr.
- ctellechea&blackridge.us
-38475
- Global SATCOM Technology, Inc.
- Cecil Lo
- cecil.lo&globalsatcom.com
-38476
- prosozial GmbH
- Holger Schmidt
- itinfo&prosozial.de
-38477
- Antaira Technologies, LLC. (formerly 'Aaxeon Technologies, LLC.')
- Peter Szyszko
- peter.szyszko&antaira.com
-38478
- VerticalCue Design LLC
- John Vrbanac
- info&verticalcue.com
-38479
- Seluxit
- Daniel Lux
- daniel&seluxit.com
-38480
- ABPM
- Marek Ciszynski
- marekc&abpm.com.pl
-38481
- M Financial Group
- Preston Schram
- preston.schram&mfin.com
-38482
- MetaStack Solutions Ltd.
- David Allsopp
- administration&metastack.com
-38483
- netmonitor
- Sandra Puffing
- office&netmonitor.at
-38484
- Innerdive Solutions, LLC.
- Victor Fedoseev
- vvf&innerdive.com
-38485
- Westchester Digestive Disease Group LLP
- Dr. Peter Wayne
- drpwayne&gmail.com
-38486
- Eurotec Information Systems K.K.
- Hideo GOTO
- gotoh&eis.co.jp
-38487
- Quadro Systems
- Aleksander Protsenko
- support&quadrosystems.com
-38488
- Exceptional Innovation, LLC.
- Geoffrey Carr
- gcarr&life-ware.com
-38489
- WD-40 Company
- Matthew DiSabatino
- mdisabatino&wd40.com
-38490
- Nebula, Inc.
- Devin Tres
- iana&nebula.com
-38491
- Clean Communications Ltd
- Ralph Casey
- rcasey&theemaillaundry.com
-38492
- WorldmingoSolutions
- Tai Mingo
- tmingo&worldmingosolutions.com
-38493
- VPT
- Claudio tapia
- claudio.tapia&vptsa.cl
-38494
- CLINTWORLD GmbH
- Florian Albrecht
- florian.albrecht&clintworld.de
-38495
- PERTIMM
- Ludovic GENOT
- alias.iana&pertimm.com
-38496
- Digg, Inc.
- Warren Turkal
- wt&digg.com
-38497
- Collins Systems
- Ralph Collins
- ralph.collins1&gmail.com
-38498
- Georgia-Cumberland Conference
- Andrew LaPierre
- andrew&gccsda.com
-38499
- Versadial Solutions
- Gene Shennikov
- ianaoid&versadial.com
-38500
- CareTech AB
- Magnus Andersson
- itenheten&caretech.se
-38501
- Fundação Parque Tecnológico Itaipu
- Rodrigo Renie de Braga Pinto
- rodrigo&pti.org.br
-38502
- BizNet Corporación Costa Rica
- Harvey Villalobos León
- harvey&biznetcorp.net
-38503
- Advtal52
- Mariano Rodrigues Lopez
- mariano&advtal52.com.ar
-38504
- Skyworth
- Cai Zhongpeng
- caizhongpeng&skyworth.com
-38505
- OJSC OC ROSNEFT
- Vitaly A. Sergienko
- v_sergienko&rosneft.ru
-38506
- Plus Pack A/S
- Martin B. Eskesen
- ianaoid&pluspack.com
-38507
- Depalol Gestió i Multimèdia
- Eduard de Palol Pujadas
- info&depalol.net
-38508
- BW Broadcast Ltd
- Brad Plant
- info&bwbroadcast.com
-38509
- DNS:NET Internet Service GmbH
- Marlon Berlin
- marlon.berlin&dns-net.de
-38510
- Colorcon, Inc.
- Jim Cassella
- jcassella&colorcon.com
-38511
- Toyota Motor Corporation Australia
- Ashish Oliver
- ashish.oliver&toyota.com.au
-38512
- St Mary's College
- Alex Matthews
- ams&stmaryscollege.co.uk
-38513
- PJSC Myronivsky Hliboproduct
- Yuriy Molchanov
- admin&mhp.com.ua
-38514
- Fr. Sauter AG
- Fritz Sauter
- dnsmaster&ch.sauter-bc.com
-38515
- IXC
- Mykhaylo Yehorov
- noc&ixc.ua
-38516
- Allworx
- Mark Nenni
- MNenni&allworx.com
-38517
- St Joseph Healthcare
- Kelly Robinson
- kelly.robinson&sjhhealth.com
-38518
- ATMA Tecnologia Ltda.
- Carlos Roberto Araujo Pinto Jr.
- carlos&atmatecnologia.com.br
-38519
- DeltaVision Sp. Z o.o.
- Krzysztof Magosa
- krzysztof.m&deltavision.pl
-38520
- Semmle Ltd.
- Neil Ongkingco
- neil&semmle.com
-38521
- Občanské sdružení Ubuntu pro Českou republiku
- Ondřej Surý
- admin&ubuntu.cz
-38522
- Zhejiang Post
- Yongsheng Fu
- 106126215&qq.com
-38523
- Samimrayaneh
- Kaveh Fareghi
- fareghi&samimrayaneh.com
-38524
- StorageCraft Technology Corporation
- Matt Thompson-Moltzen
- matttm&storagecraft.com.au
-38525
- City of Windhoek
- Jacques Frye
- jcf&windhoekcc.org.na
-38526
- Paul Davison (consulting)
- Paul Davison
- pd&pauldavison.com
-38527
- GeekSoc
- Andrew Smillie
- president&geeksoc.org
-38528
- PIKA Technologies
- David Clarke
- david.clarke&pikatech.com
-38529
- AKA Computer Solution Inc.
- Matthew Draper
- mdraper&akacs.com
-38530
- Informationsdesign AG
- Thomas Brunko
- ssladmin&informationsdesign.de
-38531
- ICF International
- Mike Rankin
- mrankin&icfi.com
-38532
- GroupScape.com
- Christopher Barker
- saddlebear&hotmail.com
-38533
- ElphoTech
- Aliaksandr Hutar
- athlete0&gmail.com
-38534
- L-ACOUSTICS
- PIGNON Christophe
- christophe.pignon&l-acoustics.com
-38535
- Sierra Photonics Inc.
- Laurence Flath
- support&sierraphotonics.com
-38536
- 10ZiG Technology
- Vu Nguyen
- vu&10zig.com
-38537
- Texas Municipal League Intergovernmental Risk Pool
- Jonathan Wiest
- jwiest&tmlirp.org
-38538
- Sify Technologies Ltd
- BIJU.Kannuvayalil Kuniyil
- biju.anandan&sifycorp.com
-38539
- ANKABUT (UAE Advanced Network for Research and Education)
- Mohammad Mabrouk
- mohammad.mabrouk&kustar.ac.ae
-38540
- Phoebus Vision
- zhouyiliang
- zhouyiliang_sky&163.com
-38541
- Concentric Cloud Solutions, LLC (formerly 'XO Interactive, LLC')
- Kip Krauss
- Interactive-SystemsSupport&xo.com
-38542
- OpenIP
- THOMAS Yoann
- ythomas&openip.fr
-38543
- Continental Lensa Ltd.
- Marcos Caballero Gallardo
- mcaballero&cecchile.com
-38544
- Asset Control International BV
- Yves Han
- yhan&asset-control.com
-38545
- Advanced Medical X-Ray
- Greg Crowley
- Greg.AMXR&gmail.com
-38546
- ORPHEUS
- Eric Prost
- eprost&orpheus.fr
-38547
- Dignitas Technologies
- Jon Watkins
- jwatkins&dignitastechnologies.com
-38548
- SHENZHEN UNIVERSAL INTELLISYS PTE LTD
- YIN KEAN MENG
- yin&ekintellisys.com
-38549
- Netstor Technology Co., Ltd.
- David WeiYu Chen
- david&netstor.com.tw
-38550
- Security Pillar Ltd
- Alfonso De Gregorio
- adg&securitypillar.com
-38551
- Pansardata AB
- Joakim Bergkvist
- joakim.bergkvist&pansardata.se
-38552
- Manfred Nagl - naglit.at
- Manfred Nagl
- manfred.nagl&naglit.at
-38553
- Bureau of industrial automation LLC
- Andrey Chaus
- it&bpa.ru
-38554
- Mark & Space Telesystems (P) LTD.
- Vishal Sharma
- vishal.sharma&marknspace.com
-38555
- Jeppesen
- Håkan Olsson
- hakan.olsson&jeppesen.com
-38556
- Tradesignal GmbH
- Kristoffer Mittelstorb
- admin&tradesignal.com
-38557
- Artvin Coruh University
- Rahman Duran
- rduran&artvin.edu.tr
-38558
- Innes Corporation Pty Ltd
- Jeffrey Pages
- jeff&innescorp.com.au
-38559
- ITAC, IT APPLICATIONS CONSULTING S.A.
- RICARDO CORTES CALDERON
- info&itac.com.co
-38560
- Denver International Airport (City and County of Denver)
- Stephen Taylor
- stephen.taylor&flydenver.com
-38561
- Appleton Coated llc
- Dave Van Sambeek
- dvansambeek&appletoncoated.com
-38562
- KokelNET
- Tobias Hachmer
- tobias&hachmer.de
-38563
- Ryan Systems, Inc.
- Dr. John M. Ryan
- jryan&ryansystems.com
-38564
- Mark IV Indonesia
- Cahya Masdi
- cahya&mark-indonesia.com
-38565
- Instrumentation Technologies d.d.
- Mateja Lampe
- mateja.lampe&i-tech.si
-38566
- FirstPower a.s.
- Dmitry Kotov
- kotov&firstpower.cz
-38567
- Hit the Sticks, LLC
- Aubrey Jones
- aubrey&htssoft.com
-38568
- Syvea Technologies
- Seth Weith-Glushko
- seth.weith-glushko&syvea.net
-38569
- Uziek Pte. Ltd.
- Elvin Tan
- elvin&uziek.com
-38570
- axn software UG (haftungsbeschränkt)
- Carsten Klein
- carsten.klein&axn-software.de
-38571
- Health Information Technology Exchange of Connecticut
- Lori Reed-Fourquet
- lfourquet&hitect.org
-38572
- TroSoft AB
- Tomas Rook
- tomas&automatisera.nu
-38573
- Zucchetti Axess SpA
- Alberto Pavesi
- alberto.pavesi&axesstmc.com
-38574
- Facultad Regional Santa Fe, Universidad Tecnológica Nacional.
- Oscar A. Jara
- oajara&frsf.utn.edu.ar
-38575
- TeraTron GmbH
- Oliver Scharmann
- edv&teratron.de
-38576
- Lomond Paper Ltd
- Ivan Bulaev
- ivan&lomond.com
-38577
- Perfecta Aviation
- George Zoulias
- support&PerfectaAviation.com
-38578
- New York City Transit Authority
- David Papis
- David.Papis&nyct.com
-38579
- Pike Aerospace Research Corporation
- Mike Sharkey
- mike&pikeaero.com
-38580
- i3 International inc.
- Bob Hoang
- bob&i3international.com
-38581
- Crouse Hospital
- Matt Mahoney
- MattMahoney&crouse.org
-38582
- Fryman and Associates, Inc
- James Fryman
- james&frymanandassociates.net
-38583
- MetroPCS Wireless, Inc.
- Rucks Yerger
- ryerger&metroPCS.com
-38584
- Superior Communication Solutions Inc.
- Steve Sohn
- Steve.Sohn&scsi-ga.com
-38585
- VEG Networks
- Valentin Gusarin
- veg&str.bashnet.ru
-38586
- DoZeener Controls
- Rodney Micallef
- rodney&dozeener.com
-38587
- SmartKomm GmbH
- Thomas Benke
- benke&smartkomm.net
-38588
- Tanuki Software, Ltd.
- Leif Mortenson
- snmp-admin&tanukisoftware.com
-38589
- Egyptian Universities Network, EUN
- Dina Barakat
- dina&eun.eg
-38590
- Islamic Republic Broadcasting of Iran
- Hassan Afshar
- iana&irib.ir
-38591
- Indusface Telecom Private Limited
- Carol John Paul Mendonca
- carol&indusfacetelecom.com
-38592
- Cyan Technology
- Matt Kern
- matt.kern&cyantechnology.com
-38593
- Cloud 9 Business Analytics Limited
- Julian Edwards
- julian&c9analytics.com
-38594
- Enel PS d.o.o.
- Bojan Vesic
- bojan.vesic&enelps.com
-38595
- Shanghai Zhongmi Communication Technology CO.,LTD.
- xiangdongwang
- shxdwang&21cn.com
-38596
- University of Saint Joseph
- Daniel Filipe G. Farinha
- netadmin&usj.edu.mo
-38597
- Sunfest
- Chinnaswamy Subramanian Kannan
- kannan&sunfest.in
-38598
- Sunfest
- Chinnaswamy Subramanian Kannan
- kannan&sunfest.in
-38599
- LTU Technologies
- Yoann Queret
- it&ltutech.com
-38600
- kleinhans it-solutions und services
- Sebastian Kleinhans
- sebastian&kleinhans.org
-38601
- ELIUM GmbH
- Kotulla Beate
- bkotulla&elium.de
-38602
- S&C Electric Company
- Rohit Sharma
- rohit.sharma&sandc.com
-38603
- Applied Systems Engineering, Inc.
- Robert Krebsbach
- bobk&ase-systems.com
-38604
- In And Out Cologne
- Nils Doormann
- nils&inandout-cologne.de
-38605
- Calxeda, Inc.
- Steve Beatty
- steve.beatty&calxeda.com
-38606
- Gusbeckers Development
- Dirk Gusek
- dirk.gusek&gusbeckers.de
-38607
- WITTENSTEIN AG
- Jens Mundhenke
- mundhenke.jens&wittenstein.de
-38608
- Gymnázium, Plzeň
- Filip Štědronský
- spravce&mikulasske.cz
-38609
- lipple.jp
- Kunio Matsumoto
- zyno&lipple.jp
-38610
- PT Respati Solusi Rekatama
- Dhita Yudhistira
- d.yudhistira&rektronik.com
-38611
- Alan Baugher
- Alan Baugher
- alan&baugher.us
-38612
- Itrix Incorporation
- Pankaj J Kachhwaha
- pankaj&itrixinc.com
-38613
- Computer Technologes and Systems Ltd.
- Yuri Saltykov
- support&voiptech.ru
-38614
- Nextest Systems
- Randy Nuss
- randy.nuss&nextest.com
-38615
- Mettle Networks, Inc
- Abraham K. Jacob
- abraham&mettlenetworks.com
-38616
- METEL s.r.o.
- Tomas Metelka
- info&metel.eu
-38617
- Callplus Services Limited
- Nick Clifford
- networksnoc&callplus.co.nz
-38618
- Critical Software Ltd
- Matt Burke
- iana-oid&icritical.com
-38619
- think digital GmbH
- Michael Hauber
- michael.hauber&think-digital.ch
-38620
- Gamma 2000 Pte Ltd
- Seow Yi Xuan
- 1101091409&gamma2k.com
-38621
- Merruk Technology, SARL.
- Yahya Lmallas
- merruk.company&gmail.com
-38622
- Master Power Technologies
- Liaan van der Merwe
- liaan&kva.co.za
-38623
- bolay.co
- Sylvain Bolay
- info&bolay.co
-38624
- NETGRAPPLER Corporation
- William Rympalski
- rympalski&netgrappler.com
-38625
- SILOCOM Internacional Corp.
- Efraín B. Cardona
- ebcardona&silocom.com
-38626
- Bureau 14 SARL
- Edouard Alligand
- edouard.alligand&bureau14.fr
-38627
- DLC Systems, Inc.
- Ralph Spaulding
- ralphs&dcsystems.com
-38628
- LivingSocial
- Val Aleksenko
- val&livingsocial.com
-38629
- Connamara Systems, llc
- Chris Busbey
- cbusbey&connamara.com
-38630
- OneHealthPort
- Sue Merk
- smerk&onehealthport.com
-38631
- Morgajel.com
- Jesse Morgan
- morgajel&gmail.com
-38632
- Mariana Consulting, LLC
- Peter Ordonez
- peter.ordonez&gmail.com
-38633
- VOXLIBERTUM AG
- Olivier Boucard
- olivier&voxlibertum.com
-38634
- Hendrikx ITC B.V.
- Alfred Blokland
- alfred.blokland&hendrikx-itc.com
-38635
- Falcon Steel Co.
- Daniel McClain
- dmcclain&falconsteel.com
-38636
- Starfish Technologies Limited
- Graham Neden-Watts
- graham&starfish.tv
-38637
- U2 Systems
- Tony Ching
- tony&u2systems.com
-38638
- ista International GmbH
- Dr. Nicola Altan
- nicola.altan&ista.com
-38639
- bpost
- Olivier Rombaut
- olivier.rombaut&bpost.be
-38640
- Novus Partners, Inc.
- Tarik Jabri
- tjabri&novus.com
-38641
- yate
- hanboyang
- xglinux&163.com
-38642
- Net Trans Services AS
- Christian Berg-Henry
- christian.berg-henry&ntrans.com
-38643
- SQISOFT Inc.
- Choi, Seung Beom
- mirage&sqisoft.com
-38644
- Armadino
- Francis Tay
- usnmpagent&gmail.com
-38645
- OCV CJSC
- Zakharov Marat
- info&ocv.ru
-38646
- StoniesHome
- Philip Stone
- philip.stone&stonys-home.net
-38647
- KV-Telematik ARGE
- Stephan Hoevels
- stephan.hoevels&kvwl.de
-38648
- DOMENY.PL Ltd
- Arkadiusz Szczurowski
- as&domeny.pl
-38649
- Mr Panquecito
- José Antonio Montiel Téllez
- antunelo&live.com.mx
-38650
- Western Australian Network Gaming Inc.
- Will Dowling
- tech&walan.org
-38651
- Observatório Nacional
- Aluizio de Almeida Cruz
- kanter&on.br
-38652
- Instituto Federal Catarinense Campus Videira
- Giorge Vanz
- giorge&ifc-videira.edu.br
-38653
- Verlagsgruppe NEWS Ges.m.b.H
- Michael Lechner
- postmaster&news.at
-38654
- BoostAeroSpace SAS
- Romain BOTTAN
- romain.bottan&eads.net
-38655
- NBU SK (NATIONAL SECURITY AUTHORITY)
- Ing. Peter Rybar
- peter.rybar&nbusr.sk
-38656
- Energinet.dk
- Brian Hestehave
- itplatform&energinet.dk
-38657
- Ministerio de Justicia y Paz
- Marianella Granados Saavedra
- mgranados&mj.go.cr
-38658
- Music for Humans
- James Butler
- james&musicforhumans.com
-38659
- The Criminal Defense Group
- James Butler
- jbutler&thecriminaldefensegroup.com
-38660
- Certipost n.v./s.a.
- Guy Ramlot
- guy.ramlot&certipost.com
-38661
- Wuxi Thinkyare Electronic Technology Co., Ltd.
- Huaxin
- ThinkYare&163.com
-38662
- Drachenfels Ltd
- Johannes von Drachenfels
- johannes&drachenfels.de
-38663
- ahd hellweg data GmbH & Co. KG
- Thomas Drewermann
- thomas.drewermann&ahd.de
-38664
- Sky Area
- Andrey Belogrivov
- administrator&skyarea.net
-38665
- PUUR it (www.puur-it.nl)
- Rene Stoutjesdijk
- rene&puur-it.nl
-38666
- Silversands Limited
- Jason Jones
- jason.jones&silversands.co.uk
-38667
- Mindbean
- Hugh Roberts
- mindbean&gmail.com
-38668
- RahuNAS
- Neutron Soutmun
- neutron&rahunas.org
-38669
- NIKKEY CO.,LTD.
- KENZO.NAKAI
- nakai&nikkey.co.jp
-38670
- BICS - Belgacom International Carrier Services
- Jofi Yance
- jofi.yance&bics.com
-38671
- Cellbusters LLC
- George O'Dowd
- george.odowd&cellbusters.com
-38672
- Zaeim Electronic Industries
- Hossein Hosseini
- hhosseini&zaeim.com
-38673
- E-merchant
- George Abitbol
- g.abitbol&e-merchant.com
-38674
- West Virginia Health Information Network (WVHIN)
- Himabindu Bolisetty
- bindu&careevolution.com
-38675
- NorCell Inc.
- Chris Sperber
- chris.sperber&cellmarkpaper.com
-38676
- PDU EXPERT UK LTD
- PASCA MEME LATH
- pascal.lath&pduexpertuk.com
-38677
- ECOSIX
- Eric LAURENT-RICARD
- eric&ecosix.com
-38678
- Joyent, Inc.
- Ben Rockwood
- hostmaster&joyent.com
-38679
- idcell.co.ltd
- myung kwan, Lim
- idcell&naver.com
-38680
- Nimbula, Inc
- Bo Li
- bli&nimbula.com
-38681
- HJBaier
- Hermann Baier
- hb&hjbaier.de
-38682
- Mindlinx Technology Solutions
- Michael Lopez
- mlopez&mindlinx.net
-38683
- Klinikum Ansbach
- Steffen Rottler
- Steffen.Rottler&Klinikum-Ansbach.de
-38684
- LOGEMED
- Cédrick Perron
- cedrick.perron&logemed.fr
-38685
- Semptian Technologies Ltd.
- huangxinzhu
- huangxinzhu&semptian.com
-38686
- CLS Argos
- Eric Spessotto
- equipe.systeme&cls.fr
-38687
- The Online Backup Company Norway AS
- Lars Bahner
- support&drift.obcn.no
-38688
- Educa.ch - Schweizer Medieninstitut für Bildung und Kultur
- Christian Ackermann
- christian.ackermann&educa.ch
-38689
- Old Mutual
- Hugh Roberts
- hroberts&oldmutual.com
-38690
- Corepoint Health
- Thomas Merritt
- joe.merritt&corepointhealth.com
-38691
- Quanti s.r.o.
- Marek Polčák
- admin&quanti.cz
-38692
- ONPATH Technologies Inc
- David Vitt
- david.vitt&onpathtech.com
-38693
- matthewv.com
- Matthew Von-Maszewski
- matthewv&matthewv.com
-38694
- Alabama One Health Record (ALOHR)
- Himabindu Bolisetty
- bindu&careevolution.com
-38695
- Joehl + Koeferli AG
- Thomas Koeferli
- tkoeferli&j-k.ch
-38696
- Hacking Networked Solutions Ltd.
- Max Hacking
- iana.pen.registrar&hacking.co.uk
-38697
- DSM Inc
- Silas Moeckel
- silas&dsminc-corp.com
-38698
- Onebox Ticket Management
- Jordi Alborch
- jalborch&oneboxtickets.com
-38699
- Pulsar Consulting sa
- Michel Goossens
- gsm&pulsar.be
-38700
- Sergey Kozlov
- Sergey Kozlov
- skozlov&bmstu.ru
-38701
- ECBIZNET, INC.
- ERSKINE R. CURRY
- ADMIN&ECBIZNET.ORG
-38702
- Talisman Energy Inc
- Jeff Pitman
- jpitman&talisman-energy.com
-38703
- Advancia Corporation
- Rod Miller
- advcorpit&advancia.com
-38704
- Nvest., Inc
- Tejas Viswanath
- tejas&wikinvest.com
-38705
- Amplidata
- Wouter Van Eetvelde
- ianaadmin&amplidata.com
-38706
- maceghost
- Gregory Mace
- gregorymace&earthlink.net
-38707
- Zodiac Data Systems
- M. Cyrille HANSQUINE
- zds_snmp_contact&zodiacaerospace.com
-38708
- Shenzhen CTI Technology Co., Ltd.
- Dongsheng Bai
- white21cn&21cn.com
-38709
- Edison Global Circuits, LLC
- Jeffrey Franks
- snmp-mgr&egcircuits.com
-38710
- Ian Kristin
- Ian Kristin
- ikristin&pixelfleck.de
-38711
- Dolby Medical Home Respiratory Care Ltd
- John Simon
- postmaster&dmhrc.co.uk
-38712
- St. Joseph's Healthcare System INC
- Christopher Bocchino
- bocchinc&sjhmc.org
-38713
- National Association of REALTORS®
- Keith Garner
- kgarner&realtors.org
-38714
- RLH INDUSTRIES,INC.
- THOMAS VO
- TVO&FIBEROPTICLINK.COM
-38715
- jllin agricultural university
- pan he
- smart_p01&jlau.edu.cn
-38716
- Orbotech
- Shay Bar even
- sys-rnd&orbotech.com
-38717
- INSIEL – Informatica per il Sistema degli Enti Locali S.p.A
- Francesco Sasso
- francesco.sasso&insiel.it
-38718
- Zobele Instrument (Shenzhen) Co., Ltd.
- William Xiong
- william.xiong&zobele.com
-38719
- Nextgen Innovation Labs LLC
- Amit Verma
- license&nil-labs.com
-38720
- ENTLibre
- Sami SMATI
- sami.smati&atos.net
-38721
- Hexaglobe
- Pierre-Alexandre Entraygues
- paentraygues&hexaglobe.com
-38722
- Conseil Général du Calvados
- Jean-Damien Bouvier
- jean-damien.bouvier&calvados.fr
-38723
- jusme.com
- Ian Lowrey
- iana-pen-1209&jusme.com
-38724
- 3iSYS
- Shirin Sabzali
- amirally&3isysnetworks.com
-38725
- Florian Wagner
- Florian Wagner
- florian&wagner-flo.net
-38726
- bjoernskou
- Brian Bjørnskou Petersen
- mail&bjoernskou.dk
-38727
- banan s.r.o.
- Martin Carbol
- carbol&banan.cz
-38728
- Kiez.Net
- Clemens Schrimpe
- csch&kiez.net
-38729
- GCCA Inc.
- Shaun Chang
- shaunchang&gccacloud.com
-38730
- RadioAccess
- Boris Bozic
- boris.bozic&radioaccess.nl
-38731
- Wiscada s.r.l
- Filippo Formica
- filippo.formica&wiscada.it
-38732
- Sachsen DV GmbH
- Hendrik Eilers
- info&sachsendv.de
-38733
- VoiceRite, Inc.
- Jeff Engle
- jengle&voicerite.com
-38734
- Padilha com
- Krishna Padilha
- krishna&padilha.com
-38735
- Stephen Timothy Perryman
- Stephen Timothy Perryman
- steve&stephenperryman.com
-38736
- Promise Regional Medical Center - Hutchinson
- Mickey Bowen
- bowenm&promiseregional.com
-38737
- MyOwnFile BV
- Martin van Middelkoop
- mgvanmiddelkoop&gmail.com
-38738
- NL Technologies
- Colin Ma
- cma&nltinc.com
-38739
- Nebras Technology
- Hesham Desouky
- hesham.desouky&nebrastech.com
-38740
- Attentec AB
- Tobias Blom
- it&attentec.se
-38741
- Mobile Frosting
- Mike Mackintosh
- mike.mackintosh&mobilefrosting.com
-38742
- Les créations Snowflakes
- Claude Mally
- claude.mally&gmail.com
-38743
- Gruden
- Filippo Vitale
- filippo&gruden.com
-38744
- twootton
- T. Wootton
- tim_wootton&yahoo.com
-38745
- UNO System
- Kim, Kyoung-hyun
- kkh&uno-system.com
-38746
- incelis
- James Park
- infrastructure&incelis.com
-38747
- SHENZHEN SUPLET CO., LTD.
- Andy luo
- lion_ru&126.com
-38748
- 2H ENERGY
- HANIN Samuel
- Samuel.Hanin&FPTINDUSTRIAL.COM
-38749
- GNU Generation
- Laurent Fasnacht
- informatique.gnugeneration&epfl.ch
-38750
- Neologic Sp. z o.o.
- Bartlomiej Zarzecki
- pen.administrator&neologic.pl
-38751
- Marketwire
- Boris Pasko
- bpasko&marketwire.com
-38752
- New Jersey Manufacturers Insurance Company
- James New
- jnew&njm.com
-38753
- TECNOMEDSA
- Lucas Magurno
- lucasm&tecnomedsa.com.ar
-38754
- Jinon Corporation
- Seiji Kurata
- seiji.kurata&jinoncorp.com
-38755
- Českomoravské informační systémy s.r.o.
- Markos Paraskevopulos
- markos&cmis.cz
-38756
- TNG Technology Consulting
- Bernhard Bock
- bernhard.bock&tngtech.com
-38757
- Sigtec Pty Ltd
- Bruce McIntosh
- bmcintosh&sigtec.com
-38758
- GrandCapital Ltd.
- Vasily Alexeev
- valexeev&grandcapital.net
-38759
- Katholieke Hogeschool Limburg
- Vandael Tim
- tim.vandael&khlim.be
-38760
- Veselības ekonomikas centrs (formerly 'ABC Software, Ltd')
- Margreta Baltgalve
- margreta.baltgalve&vec.gov.lv
-38761
- OSnode
- Geoffrey Rekier
- geoffrey&osnode.com
-38762
- Deutsche Rentenversicherung Bund
- Torsten Gruchmann
- ossmon&drv-bund.de
-38763
- cenhare AG
- Olaf Beyer
- ob&censhare.com
-38764
- Boscad
- Bill Gunn
- boscad&btinternet.com
-38765
- imirhil.fr
- Nicolas VINOT
- aeris&imirhil.fr
-38766
- Gosloto Ltd.
- Alexey Alekov
- alexey.alekov&gosloto.ru
-38767
- Martin Diener
- Martin Diener
- pen.admin&mdscs.de
-38768
- StreamBase Systems, Inc.
- Jim Campbell
- support&streambase.com
-38769
- Holy Redeemer Hospital and Medical Center
- Craig Heller
- cheller&holyredeemer.com
-38770
- AGGREGATUM
- Agustin de Landa Gil
- adelanda&aggregatum.com
-38771
- Internet Integration, Inc.
- David Rosen
- david&i-3.com
-38772
- Mageia.Org
- Romain d'Alverny
- rda&mageia.org
-38773
- Visionutveckling AB
- Fluff Abrahamsson
- fluff.abrahamsson&visionutveckling.se
-38774
- CONET Solutions GmbH
- Joachim Janz
- SNMP-OID-Admin&conet.de
-38775
- Stream Labs
- Konstantin Preis
- it&streamlabs.ru
-38776
- Telarix
- sanath kumar
- s.kumar&Telarix.com
-38777
- NOU DPO UMC YARB
- Ivan V Kvasnikov
- i.kvasnikov&pobts.ru
-38778
- Jeda Networks
- David Crespi
- dcrespi&jedanetworks.com
-38779
- Noggin IT
- Travers Carter
- iana.account&noggin.com.au
-38780
- Gaertner
- Carolin Gärtner
- webmaster&gaertner.cx
-38781
- trainline
- John Catlin
- john.catlin&thetrainline.com
-38782
- TAGHOS Tecnologia
- Ricardo Nabinger Sanchez
- rnsanchez&taghos.com.br
-38783
- Teracom Ltd.
- Ognyan Dimitrov
- info&teracom.cc
-38784
- Systems Integration Specialists Company, Inc.
- Herbert Falk
- herb&sisconet.com
-38785
- Dirdal-it
- Kjell Dirdal
- kjell_dirdal&hotmail.com
-38786
- Emirates Integrated Telecommunications Company, PJSC
- Hamid Boukhelifa
- hamid.boukhelifa&du.ae
-38787
- Nanjing Tunec Science & Technology Co., Ltd.
- Li Wang
- wang_wang_li&163.com
-38788
- Oasis Telecommunication Technologies
- Alex Sokolov
- support&oasis-tech.net
-38789
- National TeleConsultants LLC
- David Potter
- david.potter&ntc.com
-38790
- EUROBANK EFG BULGARIA AD
- Rossen Naydenov
- rnaydenov&postbank.bg
-38791
- Atos IT Solutions and Services AG
- Thomas Duerrenberger
- thomas.duerrenberger&atos.net
-38792
- Operator Logistyczny Paliw Płynnych Sp. z o.o.
- Piotr Rycombel
- piotr.rycombel&olpp.pl
-38793
- Universidade Federal Rural do Rio de Janeiro
- Everton de Freitas Cordeiro
- freitas&ufrrj.br
-38794
- UQODE
- Halima Naboulsi
- hnaboulsi&uqode.com
-38795
- ASSOCIATION MENSA FRANCE
- Marcelin Da Cruz
- rsi&mensa.fr
-38796
- Takashi Komatsubara
- Takashi Komatsubara
- takashis&time-trend.com
-38797
- Atlantis Computing Inc.
- Vinodh Dorairajan
- vinodh&atlantiscomputing.com
-38798
- Compulink
- Robert Rosen
- rer&compulinkadvantage.com
-38799
- Dream Property GmbH
- Andreas Oberritter
- hostmaster&dream-property.net
-38800
- Ecker & Partner
- Christian Dergovics
- cdergo&eup.at
-38801
- Pythia Technologies
- Jim Potter
- jim.potter&pythiatech.com
-38802
- CloudWare Co
- Thomas Steinig
- thomas.steinig&cloudware.co
-38803
- Woori-Net Inc.
- Kang, DuckMoon
- dmkang&woori-net.com
-38804
- SEVEN PRINCIPLES AG
- Klaus Dudda
- klaus.dudda&7p-group.com
-38805
- Envers AG
- Thomas Heppner
- thomas.heppner&envers.de
-38806
- Victor Technologies
- Christian van Ophuijsen
- cvo&victortek.com
-38807
- Lanka Education and Research Network
- Nimal Ratnayake
- learn&ac.lk
-38808
- University of Miyazaki
- Kenji Aoki
- staff&cc.miyazaki-u.ac.jp
-38809
- 4finance
- Igors Bogustovs
- igors.bogustovs&smscredit.lv
-38810
- Anhui Asky Quantum Technology Co.,Ltd
- shexiangsheng
- shexiangsheng&qasky.com
-38811
- Ministry of Information
- ganitham sreenivasa prasad
- srini&media.gov.kw
-38812
- Centerm Information Company
- zhengqizhi
- zhengqizhi&centerm.com.cn
-38813
- Computer Systems Consulting s.r.o.
- Jan Dohnal
- info&csc-sro.cz
-38814
- IFMOD GmbH & Co. KG
- Florian Mueller-Schunk
- fms&ifmod.de
-38815
- ETHERPOWER S.R.L.
- Miguel Vinitski
- miguel&etherpower.com.ar
-38816
- Partnerpedia Solutions, Inc.
- Jason Owens
- systems&partnerpedia.com
-38817
- University of Western Greece
- Georgios Fragkogiannis
- gfrago&uwg.gr
-38818
- American National Insurance
- James Mc Eniry
- james.mceniry&anico.com
-38819
- VCE Company, LLC
- Mike Holloway
- mike.holloway&vce.com
-38820
- Inside Lacrosse
- Wesley Craft
- wcraft&insidelacrosse.com
-38821
- ThirdWave B.V.
- R.J.T. de Vries
- rdevries&thirdwave.nl
-38822
- Sport Voswinkel GmbH & Co. KG
- Thomas Koch
- t.koch&voswinkel.de
-38823
- Grandvision
- Aleksey Tsvetkov
- tsvetkov_av&grandvision.ru
-38824
- LYNX spol. s r.o.
- Marian Benicky
- marian.benicky&lynx.sk
-38825
- Huntsman International LLC
- David McGoohan
- david_mcgoohan&huntsman.com
-38826
- Liberty Life
- Christo Coetzer
- christocoetzer&hotmail.com
-38827
- orientscience
- deguiqin
- ostc&orientscience.com
-38828
- AllDigital, Inc.
- Kon Wilms
- kon&alldigital.com
-38829
- Sjöfartsverket
- Anders Karlström
- Anders.Karlstrom&Sjofartsverket.se
-38830
- Sepialine Inc.
- Bruce Cummins
- bcummins&sepialine.com
-38831
- Fédération Nationale des Tiers de Confiance
- Bernard Delecroix
- bernard.delecroix&fntc.org
-38832
- Clearfield Hospital
- Bryan Sanford
- bsanford&clearfieldhosp.org
-38833
- TRANSPOREON GmbH
- Markus Metzger
- infra-live&transporeon.com
-38834
- Orad Hi Tec Systems Ltd.
- Jaroslaw Weksej
- j.weksej&orad.pl
-38835
- Yota
- Sergey Malygin
- SMalygin&yotateam.com
-38836
- Western Oregon University
- Dave Diemer
- diemerd&wou.edu
-38837
- First Interstate Bank
- Jason Newell
- domains&fib.com
-38838
- Angstrem-Telecom JSC
- Alexander Treshchanovsky
- akt&angtel.ru
-38839
- nPhase LLC.
- Jeff Layton
- itops&nphase.com
-38840
- Visual Click Software, Inc.
- John McCann
- jmccann&visualclick.com
-38841
- XCEL SOLUTIONS CORP
- Jit Goel
- jit&xcelcorp.com
-38842
- ECM Inc
- David Wen
- david.w&ecmhp.com
-38843
- Kinoton GmbH
- Frank Würkner
- wuerkner&kinoton.de
-38844
- Astec IT Solutions Ltd.
- Chris Barlow
- snmp&astecsolutions.co.uk
-38845
- DZ BANK AG
- Peter Garben
- sysmgmt&dzbank.de
-38846
- Bong U.K. Ltd.
- Andrew Knight
- andrew.knight&bong.com
-38847
- Prelert
- Stephen Dodson
- steve&prelert.com
-38848
- Susquehanna Health
- Mark Miller
- mmiller&susquehannahealth.org
-38849
- Intwine Energy
- Dave Halasz
- dhalasz&intwineenergy.com
-38850
- Global MunnexTech SA de CV
- David Abundiz
- jg&munnex.com
-38851
- Izmir Institute of High Technology
- FIRAT KOCAK
- firatkocak&iyte.edu.tr
-38852
- XCOM AG
- Jan Lange
- jan.lange&xcom.de
-38853
- RIA Novosti (formerly 'Federal State Unitary Enterprise Russian Information Agency News')
- Andrey Belokurov
- postmaster&rian.ru
-38854
- Ncurity
- Ju, Sung Su
- ssju&ncurity.com
-38855
- Nagoya Institute of Technology
- Shoichi Saito
- admin&nitech.ac.jp
-38856
- Login People
- R&D team
- dev&loginpeople.com
-38857
- VASONA NETWORKS
- Tali Harash
- tharash&vasonanetworks.com
-38858
- General Micro Systems, Inc
- Donald Palmer
- dpalmer&gms4sbc.com
-38859
- Agile Communications, Inc.
- Jason Erickson
- jason.erickson&agile.cc
-38860
- comadot.net
- Luke Comadot
- iana-pen&comadot.net
-38861
- Rudy Gevaert
- Rudy Gevaert
- rudy&webworm.org
-38862
- Erstikalender.info
- Andreas Neumann
- andreas.neumann&tu-ilmenau.de
-38863
- SiChuan Andi industry co.LTD
- Liangkun Jiao
- qishankai&andisat.net
-38864
- Virgin Holidays Ltd
- Gary Payne
- infrastructure&virginholidays.com
-38865
- Squadra Technologies
- Anthony LaMark
- anthony&squadratechnologies.com
-38866
- TRIMET Aluminium SE (formerly 'TRIMET ALUMINIUM AG')
- Christoph Hackstein
- christoph.hackstein&trimet.de
-38867
- mecodia GmbH
- Tobias Birmili
- it&mecodia.de
-38868
- Comision Nacional de Bancos y Seguros
- Luis Lupiac
- llupiac&cnbs.gov.hn
-38869
- Alexey S Khromov
- Alexey S Khromov
- zxalexis&gmail.com
-38870
- Mandiant
- Dave Merkel
- dave.merkel&mandiant.com
-38871
- Vostokcement Ltd.
- Sergey Rudenko
- sysadmin&vostokcement.ru
-38872
- JSC "Prompribor"
- N.I.Kobylkin
- sales&prompribor.ru
-38873
- Alex Bolgov
- Alex Bolgov
- bolgov2009&gmail.com
-38874
- ENABIL Solutions Ltd.
- Lindsay Murfin
- IT.Team&enabil.com
-38875
- UnifiedPost S.A.
- Arjen Van Drie
- hostmaster&unifiedpost.com
-38876
- Mork
- Bjørn Mork
- bjorn&mork.no
-38877
- BPM Advanced Technology Company
- Fred Legros
- contact&flowmind.org
-38878
- s.d.i. s.p.a.
- Castiglioni Lorenzo
- l.castiglioni&sdiautomazione.it
-38879
- tradebridge Pty Ltd
- Graham Brown
- graham&healthbridge.co.za
-38880
- MicroAutomation
- D'Artagnion R. Pope
- dpope&microautomation.com
-38881
- Abelium d.o.o.
- Primoz Luksic
- primoz.luksic&abelium.eu
-38882
- Barron McCann Technology
- Cliff Young
- cliff&bemac.com
-38883
- Phenomic Business Systems Ltd
- David Barker
- david.barker&phenomic.co.uk
-38884
- Electrolux
- Aleksander Brozek
- oid&electrolux.com
-38885
- nPulse Technologies Inc.
- Bill Cantrell
- bc&npulsetech.com
-38886
- Societe d'exploitation de Reseaux et de Services Securises (SER2S)
- Philippe Provost
- gin-manager&e-rsb.com
-38887
- VIS - Verein der Informatik Studierenden
- Pascal Spörri
- sysadmin&vis.ethz.ch
-38888
- c3pb e.V.
- Helge Jung
- infrastruktur&c3pb.de
-38889
- Okuejina
- Pontus Carlsson
- PontusCarlsson&live.se
-38890
- Blue Shield of California
- Charles Blas
- charles.blas&blueshieldca.com
-38891
- Jimma University
- Alemayehu Lishane
- alemayehu.Lishane&ju.edu.et
-38892
- Axiovista S.A.
- Juan J. Sierralta
- juanjose.sierralta&axiovista.com
-38893
- Marc Luehr
- Marc Luehr
- marcluehr&googlemail.com
-38894
- GROB-WERKE GmbH & Co. KG
- Wolfgang Rothermel
- wrothermel&grobgroup.com
-38895
- sig21 labs
- Martin Mueller
- mm&sig21.net
-38896
- Findaway World
- Kevin Kovach
- kkovach&findawayworld.com
-38897
- Safegate International AB
- Markus Andersson
- markus.andersson&safegate.com
-38898
- La France du Nord au Sud
- Laurent Ollagnier
- laurent.ollagnier&dunordausud.fr
-38899
- National Institute Of Weather And Atmospheric Research
- Gabriella Turek
- g.turek&niwa.co.nz
-38900
- Fukuoka University
- Tastuo Kimura
- densan&adm.fukuoka-u.ac.jp
-38901
- Landsvirkjun
- Larus Gudmundsson
- lgudmund&lv.is
-38902
- NovAtel Inc.
- Patrick Fenton
- patrick.fenton&novatel.com
-38903
- Malin Space Science Systems
- Scott Davis
- davis&msss.com
-38904
- School Specialty, Inc.
- Mark Ziesemer
- Mark.Ziesemer&SchoolSpecialty.com
-38905
- Timanetworks Inc.
- Albee Bu
- albee.bu&timanetworks.com
-38906
- Goethe-Universitaet Frankfurt am Main
- Prof. Dr. Udo Kebschull
- basisdienste&rz.uni-frankfurt.de
-38907
- Zumbox, Inc.
- Gareth Greenaway
- ggreenaway&zumbox.com
-38908
- Aon Corporation
- Kenton Morneau
- kenton.morneau&aon.com
-38909
- Linguistic Data Consortium
- Wayne Hill
- systems&ldc.upenn.edu
-38910
- Xicoy Electronica S.L.
- Gaspar Espiell
- gaspar&xicoy.com
-38911
- McLeod Health
- Sharmayne Donley
- sdonley&mcleodhealth.org
-38912
- psych0tik.net
- Rich Healey
- richo&psych0tik.net
-38913
- QXTN Pty Ltd
- Richard Ham
- admin&qxtn.net
-38914
- JNT SOUND SYSTEM AB
- Richard Dahlstrom
- richard&jnt.se
-38915
- avono AG
- Stefan Engel
- admin&avono.de
-38916
- Shanghai ekingstar Digital Campus Co,.Ltd.
- liu hongqing
- liuhongqing&ekingstar.com
-38917
- Guangxi Xinhai Communication Technology Co.,Ltd
- He Kai
- hekai&gzhyit.com
-38918
- DEK Technologies Pty Ltd
- Rick Collings
- ictteam&dektech.com.au
-38919
- EPRONA, a.s.
- Zdenek Cermak
- cermak&eprona.cz
-38920
- SnapTV AS
- Åsmund Grammeltvedt
- asmundg&snap.tv
-38921
- Capetti Elettronica srl
- Maurizio Bertero
- maurizio.bertero&capetti.it
-38922
- Hypotecni banka, a.s.
- Filip Sixta
- sixta.filip&hypotecnibanka.cz
-38923
- iProfs
- Afdeling Beheer
- beheer&iprofs.nl
-38924
- Damarel Systems International Ltd.
- John Boult
- jboult&damarel.com
-38925
- PROCENTEC
- Paulo Silva
- psilva&procentec.com
-38926
- InnovAction srl
- Francesco Policastrese
- fpolicastrese&innovaction.it
-38927
- Versile AS
- Tore Skaug
- toresk&versile.com
-38928
- Powel Energy Management AB
- Lars Lindström
- lars.lindstrom&powel.se
-38929
- Fugro Geos Ltd
- Ian Bellamy
- i.bellamy&geos.com
-38930
- @Planet Ltd
- Tom Bamford
- tom&atplanet.co.uk
-38931
- Chaz6
- Chris Hills
- chaz&chaz6.com
-38932
- INSTART INC
- Bowei Du
- bdu&instart.co
-38933
- Ubilogix International, Inc.
- Edgardo Aviles-Lopez
- edgardo&ubilogix.com
-38934
- 35x.de
- Thomas Ristic
- tr&35x.de
-38935
- MPM sas
- Emanuele Tandurella
- e.tandurella&mpm-tlc.it
-38936
- Enrico Rivarola
- Enrico Rivarola
- henry_thebuilder&yahoo.it
-38937
- ResMed SAS
- Roger Stradiot
- roger.stradiot&resmed.fr
-38938
- ISACO GmbH
- Stefan Keller
- iana-pen&isaco.de
-38939
- Flexera Software LLC
- Fraser Chapman
- fchapman&flexerasoftware.com
-38940
- Thales Communications and Security
- Daniel LOPES
- daniel.lopes&thalesgroup.com
-38941
- D. E. Shaw & Co, L.P.
- Richard E. Silverman
- res&deshaw.com
-38942
- Coca-Cola Enterprises, Inc.
- Curd Stefan Zechmeister
- curdzechmeister&cokecce.com
-38943
- Edgar Kittner GmbH & Co.KG
- Steffen Jeschke
- s.jeschke&kittner.de
-38944
- Kamstrup A/S
- Erik B. Pedersen
- ebp&kamstrup.dk
-38945
- NASA Center for Climate Simulation (NCCS)
- Bennett Samowich
- bennett.samowich&nasa.gov
-38946
- Raja Consulting Ltd
- Sumit Raja
- sumit.raja&raja-consulting.co.uk
-38947
- IREQ (Institut de recherche d'Hydro-Quebec)
- Sylvain Riendeau
- riendeau.sylvain&ireq.ca
-38948
- SureID, Inc. (formerly 'Eid Passport Inc.')
- Abrar Ahmed
- aahmed&sureid.com
-38949
- Ballard Technology, Inc.
- Andrew Nicolas
- andrew.nicolas&ballardtech.com
-38950
- Mars Space Flight Facility
- Nick Piacentine
- npiace&mars.asu.edu
-38951
- Beijing Zigvine Tech. Co. Ltd.
- Zhu Wangkun
- zhuwk&zigvine.com
-38952
- Ferox Communications S.L.
- Daniel Fraile Vergel
- dfraile&telnet-ri.es
-38953
- coveragetools
- Bas Brul
- bbrul&coveragetools.com
-38954
- Informatio GmbH
- Holger Jakob
- holger.jakob&informatio.ch
-38955
- Wire and Wireless Co., Ltd.
- Naoto Komatsu
- tech&wi2.co.jp
-38956
- HOERBIGER Deutschland Holding GmbH
- Helmut Ritter
- helmut.ritter&hoerbiger.com
-38957
- SWISS-ARTG
- Marc Balmer
- marc&msys.ch
-38958
- Dynamic Technologies(Asia) Ltd
- Kevin Chan
- kevin&dynamic-asia.com.hk
-38959
- K M Medicals
- Jagadeesh C Juvvala
- jagdish.juvvala&imeddoc.ie
-38960
- E-VAL Tecnologia em Informática Ltd.
- Rafael Shoji
- rafael&evaltec.com.br
-38961
- A&W Networks
- Dianne M. Allison
- allidm&comcast.net
-38962
- Oleksandr Moskalets
- Oleksandr Moskalets
- mos4&seznam.cz
-38963
- WoodWing Software
- Joris Conijn
- sysman&woodwing.com
-38964
- Coral Sea Enterprises, LLC
- Jane Adams
- info&disruptivestudies.org
-38965
- TelePro, Inc.
- Jim Johnson
- Jim.Johnson&tpri.com
-38966
- Stryker
- Marcelo Cattaneo
- marcelo.cattaneo&stryker.com
-38967
- Resal spol. s r.o.
- Alexandr Seidl
- support&resal.cz
-38968
- Telino
- Christian Quillot
- christian.quillot&telino.fr
-38969
- Intellipower, Inc.
- Jim Kenna
- sales&intellipower.com
-38970
- Vilpra, UAB
- Vytautas Kašėta
- admins&vilpra.lt
-38971
- Guacamole Project
- Michael Jumper
- mike.jumper&guac-dev.org
-38972
- Coordinate-System Transport Tech. Co.,Ltd
- Li Peng
- shenzhen_lip&sina.com
-38973
- k-blue
- Andreas Kruemmel
- iana-pen&k-blue.de
-38974
- ENDA GmbH & Co. KG
- Torsten Lüttgert
- iana&enda.eu
-38975
- Production Resource Group L.L.C.
- Ian Smith
- ismith&prg.com
-38976
- Quortus Ltd
- Riki Dolby
- iana-pen&quortus.com
-38977
- Imayhem S.L.L.
- Cecilio Pardo
- cpardo&imayhem.com
-38978
- Adriatic Solutions Corp.
- Filip Bujanic
- fbujanic&adriaticsolutions.com
-38979
- SII Lille
- Joffrey DEREMETZ
- jderemetz&sii.fr
-38980
- AGH University of Science and Technology
- Szymon Sokół
- szymon.sokol&agh.edu.pl
-38981
- Stradus
- John Bakker
- info&stradus.com
-38982
- Advanced Telecommunications Technology Research Sp. z o.o.
- Bartlomiej Jurek
- bartlomiej.jurek&attr.com.pl
-38983
- CompuRoot
- Alexander Verbod
- Responsible_Person.Private_Enterprise_Number.PEN.OID.IT.Department&CompuRoot.Com
-38984
- CampusIT
- Jan Navratil
- jnavratil&campusit.net
-38985
- ECM2
- Erwin Bogaard
- info&ecm2.nl
-38986
- SOCAR Georgia
- Alexander Buslayev
- a.buslayev&socar.ge
-38987
- Nettbuss AS
- Harald Hegerberg
- harald.hegerberg&nettbuss.no
-38988
- Ministry of Awqaf and Islamic Affairs - Kuwait
- Karim Essam El Sabaa
- srid&awqaf.gov.kw
-38989
- Qtree BVBA
- Frederik Kaputa
- frederik&qtree.be
-38990
- Nova World International, LLC dba Nova Shipping
- Yevgeniy Epshteyn
- pen.administrator.9906f1644e0fe35dcc2f52614311c283&nova-shipping.com
-38991
- Innoforma E-learning Technologies
- Francisco Javier Moreno Hidalgo
- sistemas&innoforma.com
-38992
- SCCT, Wilhelm Wimmreuter
- Wilhelm Wimmreuter
- wilhelm&wimmreuter.de
-38993
- South Jersey Healthcare
- Julie Morris
- MorrisJ&SJHS.com
-38994
- San Juan Software
- Drew Gislason
- drewg&sanjuansw.com
-38995
- Connexon Telecom Inc.
- Simon Cadieux
- simon.cadieux&connexon.com
-38996
- Japan Aerospace Exploration Agency
- Tamotsu Motoki
- motoki.tamotsu&jaxa.jp
-38997
- Telnetware Co.,Ltd
- Jeong Sup Lee
- jslee&telnetware.com
-38998
- i20
- Pavel Prischepa
- prischepa.p&i20.biz
-38999
- Higher Light Communications
- Richard A. Scott
- richard.a.scott&me.com
-39000
- LinuxMCE
- Serge Wagener
- serge&linuxmce.org
-39001
- NetFlow Logic
- Sasha Velednitsky
- svelednitsky&netflowlogic.com
-39002
- cibex gmbh
- Josef Weisskopf
- jw&cibex.net
-39003
- Sub10 Systems Ltd.
- Mark Stevens
- mark.stevens&sub10systems.com
-39004
- Diaphanoscope
- Angelo Leto
- admin&diaphanoscope.com
-39005
- Total Device
- Vincent Bouttier Deslandes
- vincentb&totaldevicesolutions.com
-39006
- VZTech Importacao Exportacao e Desenvolvimento de Tecnologia Ltda
- Pedro Zorzenon Neto
- it&vztech.com.br
-39007
- Armada Nacional - Uruguay
- Fernando CHEDA
- ncheda&armada.mil.uy
-39008
- Nouvelle s.r.l.
- Alessandro Forghieri
- staff&orion.it
-39009
- hub telecom
- adrien mistretta
- iana&hub-telecom.net
-39010
- GrupaA Sp. z o.o.
- Wojciech Rusinek
- wrusinek&grupaa.pl
-39011
- Fresco Logic, Inc.
- Eric Wittmayer
- eric&frescologic.com
-39012
- INNOBAND TECHNOLOGIES, INC.
- CODY LIN
- codyl&innoband.com
-39013
- Assurity Trusted Solutions Pte Ltd
- Ramachandran Kumaraswami
- rama&assurity.sg
-39014
- Colina Participations
- Roger Costandi
- rcostandi&groupecolina.com
-39015
- MAXXING S.A.S.U.
- DEVAU Rémi
- rdevau&maxxing.com
-39016
- Field Electronics Limited
- Lee Awcock
- lee&fieldelectronics.com
-39017
- Object Trading Pty Ltd
- Joseph Metcalf
- joseph.metcalf&objecttrading.com
-39018
- Dyna Healthcare Co., Ltd.
- Robin Cyue
- robin.cyue&dynahealthcare.com
-39019
- Techinfocom, Jsc
- Denis Kostousov
- dkostousov&techinfocom.com
-39020
- Net To Net Co., Ltd
- yun, hyung taek
- yun0512&gmail.com
-39021
- pdv-systeme Sachsen GmbH
- Norman Ziert
- ziert&pdv-sachsen.net
-39022
- Joint Stock Company SVYAZNOY BANK
- Gritsienko Sergey
- sib&svyaznoybank.ru
-39023
- murtaza enterprizes
- Muhammad Murtaza
- m_murtaza&ymail.com
-39024
- Bjango
- Marc Edwards
- marc&bjango.com
-39025
- Velleros, Inc.
- Akita Noek
- anoek&velleros.com
-39026
- Tritux
- Zouari Fourat
- support&tritux.com
-39027
- www.duowan.com
- Bob Lin
- linbobo&chinaduo.com
-39028
- Enkata
- Gerard Larios
- it&enkata.com
-39029
- Lukse
- Saulius Lukse
- saulius.lukse&gmail.com
-39030
- CloudGuard Software AG (formerly 'wlan-partner.com AG')
- Michael Schneider
- iana&cloudguard.ch
-39031
- Eastern Mennonite University
- Jason Alderfer
- is.info&emu.edu
-39032
- Caldwell Memorial Hospital, Inc.
- Beverly Canipe
- bcanipe&caldwell-mem.org
-39033
- Quinstar Technology, Inc.
- Sage Kuno
- sage&quinstar.com
-39034
- nesfile.org
- Cliff F. Railey
- CliffFRailey&nesfile.org
-39035
- Orbital Systems, Ltd.
- Carl Schoeneberger
- carl.s&orbitalsystems.com
-39036
- iMobile3, LLC
- Laszlo Hanyecz
- lhanyecz&imobile3.com
-39037
- Inocybe Technologies inc.
- Mathieu Lemay
- mlemay&inocybe.ca
-39038
- COMPNET Ltd
- Sergei Korolyov
- sergei.korolyov&self.ru
-39039
- Daniels Electronics, Ltd
- Malcolm Holser
- Malcolm_Holser&danelec.com
-39040
- DigitalArts Inc.
- Yuusuke Amano
- y-amano&daj.co.jp
-39041
- Enthina
- Edward Curren
- ecurren&enthina.com
-39042
- E-ID internet strategies B.V.
- C. J. Krul
- sysadmin&e-id.nl
-39043
- EBRO ARMATUREN GMBH
- Stefan Meier
- s.meier&ebro.at
-39044
- idefclub.ru
- Yuriy V Yagupov
- project&idefclub.ru
-39045
- Cubio Communications Oy
- Mike Jackson
- mike.jackson&cubio.com
-39046
- Jimdo GmbH
- Lars Fronius
- lars&jimdo.com
-39047
- The Foundry
- Dan Alderman
- dan&thefoundry.co.uk
-39048
- Sayre Memorial Hospital
- Eric Leitner
- it&sayrehospital.org
-39049
- Byte, SIA
- Vadim Zayakin
- byte&apollo.lv
-39050
- Forschungsgemeinschaft elektronische Medien (FeM) e.V.
- Michael Braun
- michael.braun&fem.tu-ilmenau.de
-39051
- g360apps.com
- Matt Mahoney
- sysadmin&g360apps.com
-39052
- Vutlan sro (formerly 'Sky Control sro')
- Vasily Tyazhev
- vasily&vutlan.com
-39053
- Rail & Sea
- Wolfgang Anditsch
- edv&railsea.at
-39054
- NetUP Inc.
- Konstantin Emelyanov
- info&netup.tv
-39055
- S2 Communications AB
- ULF SAHLIN
- noc&s2.se
-39056
- Samsung Electronics America, Inc.
- Eric E. Osterholm
- e.osterholm&samsung.com
-39057
- SCAE Co. Ltd.
- Vladimir Krivenko
- admin&scaegroup.com
-39058
- CET Electronics
- Nicola Vicino
- rd&cet-electronics.com
-39059
- RTE
- Arnaud MAINIER
- arnaud.mainier&rte-france.com
-39060
- Suster.net
- Gregor Suster
- gregor&suster.net
-39061
- Analytica
- Vikram Seshadri
- SVIKRAM&ANALYTICA-INDIA.COM
-39062
- Mark Harlos, Software Engineering Consultant
- Mark A. Harlos
- mharlos&verizon.net
-39063
- Delecon
- Daniel Eidenskog
- daniel.eidenskog&delecon.se
-39064
- Eseye Ltd
- Rob Coward
- rcoward&eseye.com
-39065
- African Institute for Mathematical Sciences
- Tom Bamford
- tom&aims.ac.za
-39066
- FTS DVL SRL
- Galina Pavlenco
- b2e&dv-lab.com
-39067
- Verba Technologies
- Szabolcs Daroczy
- support&verba.com
-39068
- hostapd/wpa_supplicant project
- Jouni Malinen
- jm&w1.fi
-39069
- Japan Ballast Co.
- Masaki Ohashi
- m_oohashi&softsirius.co.jp
-39070
- STARK
- Jens Stark
- jens.stark&gmail.com
-39071
- Konkurent Ltd.
- Art Mitskevich
- art&coffeestudio.ru
-39072
- Campai Business Solutions BV
- Martijn van Buijtene
- martijn&campai.nl
-39073
- Blue Mind
- Anthony Prades
- oid&blue-mind.net
-39074
- makabra
- Miroslaw Baran
- miroslaw-iana&makabra.org
-39075
- HealthE Advocate LLP
- Mureen Allen
- mallen_md&yahoo.com
-39076
- Zalaszam Kft
- Nemcsics Geza
- gnemcsics&zalaszam.hu
-39077
- Dorlet S.A
- Iker Pérez de San Román
- ikerperezsanroman&dorlet.com
-39078
- Vimpex GmbH
- Elisabeth Freudenthaler
- elisabeth.freudenthaler&vimpex.at
-39079
- AdvaICT, a.s.
- Martin Juřen
- martin.juren&advaict.com
-39080
- ITRS Group Limited
- E. Morales
- emorales&itrsgroup.com
-39081
- ASACA Corporation
- Takashi Nakagomi
- nakagomi&asaca.co.jp
-39082
- PhoenixNAP
- John Anderson
- johna&phoenixnap.com
-39083
- Samodzielny Publiczny Centralny Szpital Kliniczny
- Maciej Kazulak
- oidadmin&spcsk.pl
-39084
- Texas A&M University - Kingsville
- Robert Miller
- robert.miller&tamuk.edu
-39085
- MUJIN Inc.
- Rosen Diankov
- rosen.diankov&mujin.co.jp
-39086
- FriendFinder Networks, Inc.
- Patrick Gillan
- pgillan&ffn.com
-39087
- Astra Communication Service Co., Ltd
- Kridsada Compeerapap
- kridsada&astra.co.th
-39088
- Hochschule Deggendorf
- Volker Scheuer
- volker.scheuer&hdu-deggendorf.de
-39089
- Krones AG
- Maximilian von Zweydorff
- maximilian.zweydorff&krones.com
-39090
- subreport Verlag Schawe GmbH
- Thomas Osenau
- thomas.osenau&subreport.de
-39091
- Good Link
- Kaung Thant Kyaw Dare
- support&darecom.net
-39092
- ChongQing Cable Network
- Sheng Qian
- shengqian&cqcnt.com
-39093
- Basler AG
- Frank Schmolla
- Frank.Schmolla&baslerweb.com
-39094
- Kambi
- Lezgin Bakircioglu
- Kambi_Infra_Tech&Kambi.com
-39095
- iFlex Ltd.
- Andrey Belyaev
- ABelyaev&iflex.ru
-39096
- Lohika ltd.
- Pavlo Khromchak
- pkhromchak&lohika.com
-39097
- Maxeler Technologies Ltd
- Rob Dimond
- rob&maxeler.com
-39098
- Kyanmedia Limited
- Gareth Adams
- gareth&kyanmedia.com
-39099
- RSA SaaS
- Steven Howe
- steven.howe&rsa.com
-39100
- The Binary Workshop
- Ashwin Shankar
- ashwin&thebinaryworkshop.com
-39101
- Frisbie Memorial Hospital
- Mike Leach
- m.leach&fmhospital.com
-39102
- Power Home Remodeling Group, Inc.
- Jeff Levine
- jlevine&powerhrg.com
-39103
- LS telcom AG
- Timo Weishaeupl
- tweishaeupl&lstelcom.com
-39104
- Universidad Central de Las Villas
- Roberto Hiribarne Guedes
- hiribarne&gmail.com
-39105
- Technet Systems
- Peter Parianos
- peter&technet.com.au
-39106
- ExpatJob.net GROUP
- Lucas Antoine
- development&expatjob.net
-39107
- ULHI - Urrutiko Lanbide Heziketa Institutua
- Antton Rodriguez
- arodriguez&ulhi.net
-39108
- Trusteer Ltd.
- Shmulik Regev
- webmaster&trusteer.com
-39109
- Morpho Detection, Inc.
- Alexei Kireev
- akireev&morphodetection.com
-39110
- State of Colorado Judicial Department
- James Stoner
- info-servers&judicial.state.co.us
-39111
- Eladian Partners, LLC
- James Cape
- iana-pen&eladian.com
-39112
- Netsoc DIT
- Mark Cunningham
- markcunninghamemail&gmail.com
-39113
- IRT Technologies Inc.
- Arkadi Potapov
- info&irttechnologies.com
-39114
- Ittxa
- Oscar Jimenez Sainz
- tercera&ittxa.com
-39115
- XACK,Inc.
- Kazutaka Kumamoto
- penadmin&xack.co.jp
-39116
- Folkwang Universität der Künste
- Andreas Cieslak
- cieslak&folkwang-uni.de
-39117
- noax Technologies AG
- Sebastian Engl
- IANA-PEN&noax.com
-39118
- Amadeus s.a.s
- jacques Dalbera
- jdalbera&amadeus.com
-39119
- dm-drogerie markt GmbH + Co. KG
- Marco Aliberti
- marco.aliberti&dm-drogeriemarkt.de
-39120
- itunic consulting
- Bernhard Rekemeier
- br01&itunic.de
-39121
- ElringKlinger AG
- Christian Segor
- oidmaster&elringklinger.com
-39122
- Framehawk Inc.
- Michael Martin
- michael.martin&framehawk.com
-39123
- Two Degrees Mobile Ltd
- Tim West
- IANA_Pen&2degreesmobile.co.nz
-39124
- Kaweah Delta Health Care District
- Steven Larkin
- itdirector&kdhcd.org
-39125
- Instituto Superior de Engenharia do Porto (ISEP)
- Nuno Pereira
- nap&isep.ipp.pt
-39126
- DCA Inc
- Mike Chatterton
- mikec&dcainc.com
-39127
- Mercury Insurance Group
- Roy Hegge
- rhegge&mercuryinsurance.com
-39128
- ALLIANZ LIFE INSURANCE OF NORTH AMERICA
- Drew Pierce
- drew.pierce&allianzlife.com
-39129
- Reiknistofa i Vedurfraedi
- Thor Sigurdsson
- thor&belgingur.is
-39130
- Century Software (M) Sdn Bhd
- Mark Rees
- mark&centurysoftware.com.my
-39131
- Sistemas Informaticos Abiertos S.A.
- Jorge Cea
- jcea&sia.es
-39132
- Camair-Co
- Jean-Francis AHANDA
- francis.ahanda&camair-co.net
-39133
- Kamsoft S.A.
- Bartłomiej Syryjczyk
- bsyryjczyk&kamsoft.pl
-39134
- Apex
- Stijn Schouteten
- stijn&apex-audio.be
-39135
- U.S. Bancorp
- Kenneth Payne
- kenneth.payne&usbank.com
-39136
- Adams State University (formerly 'Adams State College')
- Randall Smith
- rbsmith&adams.edu
-39137
- ameria GmbH
- Pavel Shumarov
- admin-department&ameria.de
-39138
- Santa Barbara County Education Office
- Sharon Van Gundy
- dnsadmin&sbceo.org
-39139
- nPario Inc
- Joerg Hallmann
- joerg&npario.com
-39140
- Interra Systems, Inc.
- Shelly Adhikari
- shelly&InterraSystems.com
-39141
- Qice Technology Co. Ltd
- judd wang
- jdwang&qicetech.com
-39142
- Nian Electronic Company
- Morteza Sadr
- idm&nianelectronic.com
-39143
- LARS
- Mariusz Kokocinski
- ca&lars.pl
-39144
- Nextouch, Inc.
- Young D. Moon
- ydmoon&ntnextouch.com
-39145
- Innovative Circuit Technology Ltd.
- Natalia Bolster
- technical.contact&ictcorporate.com
-39146
- Watchdog Software Pty Limited
- Richard Giddey
- support&watchdogsoftware.com.au
-39147
- intratop
- Thorsten Eisinger
- thorsten.eisinger&intratop.de
-39148
- Agjencia Kombetare e Shoqerise se Informacionit
- Fisnik Kruja
- fisnik.kruja&akshi.gov.al
-39149
- broadAngle, LLC
- Garrison Atkisson
- garrison&broadangle.com
-39150
- B.O.S. Software Service und Vertrieb GmbH
- Jahn Fuchs
- jahn.fuchs&bossoftware.de
-39151
- Autorité des Marchés Financiers
- Erik Ableson
- e.ableson&amf-france.org
-39152
- DVT - Daten-Verarbeitung-Tirol GmbH
- Florian Sailer
- florian.sailer&tirol.gv.at
-39153
- WAYF - Where Are You From
- Christian Hannested
- sekretariat&wayf.dk
-39154
- SwiftStack
- Joe Arnold
- joe&swiftstack.com
-39155
- Mango DSP, Inc.
- Eldor Reif - Dir. of Professional Services and Product Management
- ereif&mangodspinc.com
-39156
- PROSCOPE Corporation
- Hideki Fujimura
- fujimura&proscope.co.jp
-39157
- DERMALOG IDENTIFICATION SYSTEMS GMBH
- Innocents Sia
- Innocents.Sia&dermalog.com
-39158
- Akouto
- Dominic Chorafakis
- dom&akouto.com
-39159
- Redpoint Software
- James Rhodes
- jrhodes&redpointsoftware.com.au
-39160
- PointRed Telecom Ltd.
- Shajee Lawrence
- shajee&pointred.co
-39161
- Precision Infomatic
- Charan Narayanan
- ncharan86&gmail.com
-39162
- WEOLO
- Paolo Decarlini
- paolo.decarlini&nimix.it
-39163
- U-BTech Solutions
- Ilan Lanz
- ilan&u-btech.com
-39164
- Cires21 S.L.
- Manuel Cardeñas Cano
- mcardenas&cires21.com
-39165
- Hikvision Digital Technology Co., Ltd.
- Qi Liu
- liuqi&hikvision.com
-39166
- Stadt Moenchengladbach
- Klaus Schauer
- klaus.schauer&moenchengladbach.de
-39167
- kastel.net
- Juergen Dattl
- jd&kastel.net
-39168
- eneatec GmbH
- Steffen Buschmeier
- buschmeier&eneatec.com
-39169
- Softronics AG
- Oliver Loch
- info&softronics.ch
-39170
- Koario
- Stéphane Reynaud
- contact&koario.fr
-39171
- alipay
- Jian Song
- jian.song&alipay.com
-39172
- Paytronix Systems, Inc.
- Ross Mellgren
- Rmellgren&paytronix.com
-39173
- Datek Wireless AS
- Espen Westgaard
- espen&datek.no
-39174
- Club Méditerrannée S.A.
- Nicolas Karageuzian
- nicolas.karageuzian&clubmed.com
-39175
- GoEast GmbH
- Daniel Rechsteiner
- hostmaster&goeast.ch
-39176
- MiTek Inc.
- Michael Paul
- mpaul&mii.com
-39177
- Leuphana University of Lueneburg
- Karsten Holmberg
- karsten.holmberg&leuphana.de
-39178
- The IMS Company
- Chris Healy
- chealy&imsco-us.com
-39179
- Accuoss
- Rodney Rindels
- rrindels&accuoss.com
-39180
- MTICUBE, LLC
- Rajul Shah
- rshah&mticube.com
-39181
- International Development Council for Academic Studies (IDCAS)
- Liam Drew
- rat&idcas.org
-39182
- OJSC "GT-TEC Energo"
- Dmitiry Dorokhov
- itdept&gtenergo.ru
-39183
- Layered Logic, Inc.
- Brooks Bell
- brooks&layeredlogic.com
-39184
- xingplatform inc
- jimmy gong
- gongyf&xingplatform.com
-39185
- System Level Solutions (India) Pvt. Ltd
- Kaushal Thacker
- kthacker&slscorp.com
-39186
- Ministry of Foreign Affairs of Hungary
- Hobok Janos
- janos.hobok&mfa.gov.hu
-39187
- Marmara Univesity
- Huseyin Yuce
- sysadmin&marmara.edu.tr
-39188
- Virtual Cable S.L.
- Adolfo Gómez
- agomez&virtualcable.es
-39189
- King Pine
- David K. Gerry
- dkgerry&kingpine.org
-39190
- Sergey I Mihailov
- Sergey I Mihailov
- creating-school&mail.ru
-39191
- Comfort Consulting
- John Comfort
- poc&comfortconsulting.com
-39192
- IBSmm Engineering, spol. s r.o.
- Radomir Vrbovsky
- R.Vrbovsky&IBSmm.com
-39193
- Vayosoft Network Technologies Ltd.
- Jean Dubenko
- jean&vayosoft.com
-39194
- CSSS IUGS (Centre de Sante et des Services Sociaux - Institut Universitaire de Geriatrie de Sherbrooke)
- Sylvain Gobeil
- slgobeil.csss-iugs&ssss.gouv.qc.ca
-39195
- Spawngrid, Inc.
- Iurii Rashkovskyi
- yrashk&spawngrid.com
-39196
- AltNet (formerly 'Oxynux')
- Benjamin Collet
- iana-pen&alt.tf
-39197
- Xitek Design Ltd
- Alan Jacks
- support&xitekdesign.com
-39198
- Brekeke Software, Inc.
- Shinichi Mitsumata
- mitu&brekeke.com
-39199
- EXPRESSTRAK - DATS
- Vijay Pavuluri
- vijayp000&gmail.com
-39200
- KTB COMPUTER SERVICES Co.,Ltd
- Somporn Jarusinchai
- somporn.jaru&ktbcs.co.th
-39201
- redtoo ag
- Patrick Sczepanski
- patrick.sczepanski&redtoo.com
-39202
- ASP Alerce Tecnology SL
- Alvaro Fernandez Corugedo Feilenreiter
- acorugedo&aspalerce.es
-39203
- Qualysoft Informatikai Zrt.
- Jacint Toth
- jacint.toth&qualysoft.com
-39204
- QuanticEvents
- Eric Fries
- eric.fries&quanticevents.com
-39205
- Broadnet Telecom Inc
- Christian Mokbel
- cmokbel&broadnet-telecom.ca
-39206
- EITV - Entretenimento e Interatividade para TV Digital
- Roberto Marchesini
- roberto.marchesini&eitv.com.br
-39207
- SparkYard, Inc.
- Jonathan Layes
- iana-pen-support&sparkyard.com
-39208
- LivingObjects
- Damien DUMEZ
- damien.dumez&livingobjects.fr
-39209
- Plexus Corp.
- Scott Reynolds
- hostmaster&plexus.com
-39210
- Impulse Point LLC
- Andrew Cohen
- acohen&impulse.com
-39211
- Positronics Enterprise Limited
- Kelvin Chan
- kelvin.chan&positronics.com
-39212
- Prosyscor Ltd
- Bradley Kite
- support&prosyscor.com
-39213
- Datakonsult Magnus Sandberg
- Magnus Sandberg
- oid&datakon.se
-39214
- MT2IT
- Joerg-Uwe Meyer
- joerg-uwe.meyer&mt2it.com
-39215
- Kernun
- Vladimir Tulacka
- iana&kernun.cz
-39216
- BroadForward B.V.
- Raymond van der Laan
- raymond.van.der.laan&broadforward.com
-39217
- Triple T Broadband PCL
- Aroon Janthong
- aroon.j&jasmine.com
-39218
- Connection Electronics Ltd.
- Victor Lau
- victor&cel.hk
-39219
- Overkiz
- COSSERAT Hubert
- h.cosserat&overkiz.com
-39220
- Theoldmonk.net
- Devendra Gera
- iana.pen&theoldmonk.net
-39221
- Pakedge Device and Software Inc
- Dusan Jankov
- dusan&pakedge.com
-39222
- Patrick Shuff Industries
- Patrick Shuff
- patrick.shuff&gmail.com
-39223
- ADNET Systems, Inc.
- Lucas Yamanishi
- lyamanishi&sesda2.com
-39224
- Djipalo Junuz
- Djipalo Junuz
- djipalo.junuz&djipalo.com.ba
-39225
- AVRO Electrics
- Krzysztof Sroka
- krzysztof.sroka&avro.com.pl
-39226
- REWOO Technologies AG
- Andreas Gall
- administration&rewoo.com
-39227
- GIE Vauban Humanis
- Vincent Dussaucy
- oid.admin&vaubanhumanis.com
-39228
- Kemira Oyj
- Hannu Strang
- kits.infra&kemira.com
-39229
- Convergence Technologies
- Jeff Ehman
- jehman&converge-tech.com
-39230
- lenic.eu
- Lukasz Kapiec
- lukasz&lenic.eu
-39231
- Hosting.com, Inc.
- Joe Ceresini
- jceresini&hosting.com
-39232
- Drogentherapiezentrum LAGO
- Raphael Beer
- raphael.beer&gmx.de
-39233
- Saint John's Health System
- Jennifer Marcum
- jlmarcum&sjhsnet.org
-39234
- Mitroko Inc.
- Dmitry Stremkouski
- mitroko&gmail.com
-39235
- Exelis Inc.
- Paul Lafferty
- paul.lafferty&exelisinc.com
-39236
- TriFractal Studios (formerly 'Sacred Point Studios')
- Joshua Porter
- jporter&trifractalstudios.com
-39237
- FW-Systeme GmbH
- Reiner Onnen
- onnen&fw-systeme.de
-39238
- VelociData, Inc
- Michael Henrichs
- mhenrichs&velocidata.com
-39239
- LittleJackal
- Paul Kiela
- iana&littlejackal.com
-39240
- Atacama Large Millimeter/submillimeter Array
- Marcelo Bartsch
- software&alma.cl
-39241
- volkszaehler.org
- Gerhard Bertelsmann
- info&gerhard-bertelsmann.de
-39242
- Krki IT
- Lafo Mamone
- krki-it&hotmail.com
-39243
- VNLI LTD CO.
- VINCENT KIBET KIRUI/ LILIAN CHEPKORIR KIRUI
- vkirui11&yahoo.com
-39244
- CHINA NATIONAL SOFTWARE & SERVICE CO., LTD.
- Xiaohan Zang
- zangxh&css.com.cn
-39245
- Linkra Networks
- Alessandro Greco
- alessandro.greco&linkra.it
-39246
- MBDA Deutschland GmbH
- Tobias Mucke
- tobias.mucke&mbda-systems.de
-39247
- medInt Holdings LLC (formerly 'Imalogix')
- David Naylor
- david.naylor&mihllc.com
-39248
- STEC
- Swapna Yasarapu
- syasarapu&stec-inc.com
-39249
- Shango
- Cody Crawford
- cody&shango.com
-39250
- Dalian Xinyu Technology, Ltd
- Bill Wade
- yujinjun3&126.com
-39251
- NewSun Co., LTD
- Yin Wenzhu
- yinwz&newsun.com.cn
-39252
- RioCard Tecnologia da Informacao S/A
- Bruno Benayon
- bruno.benayon&riocard.com
-39253
- Punto Com srl
- Luigi Scilimati
- luigi.scilimati&puntocomsrl.com
-39254
- Consecom AG
- Lukas Ruf
- Lukas.Ruf&consecom.com
-39255
- Yakaz
- Mialon Pierre-Gilles
- root&yakaz.com
-39256
- laorim
- Thierry Bigotte
- thierry&laorim.fr
-39257
- Medical Records LLC
- Clayton Phillips
- clayton&phillipseng.com
-39258
- TZ Consulting UG
- Thorsten Zenker
- zenker&tz-consulting.de
-39259
- Geoffroy PLANQUART
- Geoffroy PLANQUART
- geoffroy&planquart.fr
-39260
- Koeller Family
- Thomas Koeller
- thomas&koeller.dyndns.org
-39261
- Planungsbüro Ledermann
- Jakob Ledermann
- jakob_ledermann&web.de
-39262
- MediaMelon, Inc.
- Deepa Suresh
- accounts&mediamelon.com
-39263
- Akademischer Verein
- Moritz Neeb
- moritz.neeb&akademischerverein.de
-39264
- New Rock Technologies, Inc.
- Hai Wang
- hwang&newrocktech.com
-39265
- Versino GmbH
- Michael Steiner
- michael.steiner&versino.ch
-39266
- Runway International OÜ
- Toomas Vendelin
- toomas.vendelin&runway.ee
-39267
- ZAT a.s.
- Václav Häusler
- vaclav.hausler&zat.cz
-39268
- Fachhochschule Brandenburg
- Thomas Bluhm
- leitung-rz&fh-brandenburg.de
-39269
- BASE - Gestió d'Ingressos
- Cèsar Garcia i Pérez
- cgarciap&base.cat
-39270
- CLUB PSCO
- BORDIER JEROME
- jerome.bordier&sealweb.eu
-39271
- Palisades Medical Center
- Glenn Hunsberger
- ghunsberger&palisadesmedical.org
-39272
- WCR EDV GesmbH
- Christoph Walzer
- c.walzer&wcr-edv.com
-39273
- ARC Wireless LLC
- Lindsey Barlow
- lbarlow&antennas.com
-39274
- INNOV@TIVE IT LTD
- Steve Asser
- steveasser_innov&tiveit.co.uk
-39275
- Martello Technologies Corporation
- Niall Gallagher
- niall.gallagher&martellotech.com
-39276
- Intux
- Bart Verwilst
- info&intux.be
-39277
- Cape Regional Medical Center
- Shaun Deignan
- sdeignan&caperegional.com
-39278
- ZeXtras s.r.l.
- Paolo Storti
- info&zextras.com
-39279
- Web Devices Ltd
- Stephen Liptrott
- Stephen.Liptrott&atlasnet.co.uk
-39280
- ARVOO Engineering B.V.
- Rini van Zetten
- Rini&arvoo.nl
-39281
- ST Enclosures for Electronics Systems LTD
- Avi Talmor
- avi&st-enclosures.com
-39282
- Infinet Financial Systems
- Huw Williams
- huw.williams&infinetfs.com
-39283
- TeleWare PLC
- Dr David Hodgson
- David.Hodgson&teleware.com
-39284
- Mountain States Health Alliance
- Kevin Bowes
- boweskj&msha.com
-39285
- Prime Engineering Ltd
- Jeff Johnson
- jeff.johnson&primeeng.ca
-39286
- Wargaming.net LLP
- Michael Loginovsky
- admins&wargaming.net
-39287
- Unimed Litoral
- Claudio Renato Santiago
- claudio.santiago&unimedlitoral.com.br
-39288
- Fimasys
- Jeremie Grauer
- admin&fimasys.fr
-39289
- SPAUN electronic GmbH & Co. KG
- Kevin Spaun
- kspaun&spaun.de
-39290
- Citibank, N.A.
- Papa Faye
- papa.faye&citi.com
-39291
- SugarCRM, LLC
- Denise Stockman
- dstockman&sugarcrm.com
-39292
- Victoria's Secret
- Tim Ebbers
- VSDNewmediaTechSvcs&Limitedbrands.com
-39293
- MARS
- Fabio De Marzo
- fabio.de.marzo&effem.com
-39294
- Rue La La
- Zach Armstrong
- zarmstrong&ruelala.com
-39295
- Yakima Valley Memorial Hospital
- Robert J Waller
- robwaller&yvmh.org
-39296
- Salford Software Ltd
- Paul Heaney
- paul.heaney&salfordsoftware.co.uk
-39297
- Beijing YUKUAN Technology Co.,Ltd
- Dai xinghe
- daixinghe&163.com
-39298
- Banque du Bois AG
- John Ainhirn-Williams
- jaw&banquedubois.com
-39299
- McPherson Hospital, Inc
- Angela Hall
- angelah&mcphersonhospital.org
-39300
- Sherwood Compliance Services Ltd.
- Stu Coates
- stuart.coates&sherwoodcompliance.co.uk
-39301
- oikaze
- Yasuhisa Mine
- mine&oikaze.jp
-39302
- Essent NV
- Marco Spoel
- marco.spoel&essent.nl
-39303
- Ospow
- Gérald Colangelo
- gcolangelo&ospow.com
-39304
- Shine Data AB
- Thomas Ostmans
- thomas.ostmans&shinedata.se
-39305
- WiVDO, Lda
- Luis Figueiredo
- luisfigueiredo&wivdo.com
-39306
- Intellidesign
- Andrew Ward
- andrew&intellidesign.com.au
-39307
- Clealink Technology Co., Ltd.
- Takamichi Mizuhara
- snmp&clealink.jp
-39308
- Blinkenlichten Open Source Solutions
- Rouven Sacha
- info&blinkenlichten.de
-39309
- Centrum Promocji i Rozwoju Inicjatyw Obywatelskich OPUS
- Wojciech Pietruszewski
- admin&opus.org.pl
-39310
- Sønderborg Kommune
- Martin Paulsen
- hostmaster&sonderborg.dk
-39311
- Wellspan
- David Smith
- dsmith14&wellspan.org
-39312
- Brookhaven Memorial Hospital
- Mary Ellen Shortell
- meshortell&bmhmc.org
-39313
- iFAX Solutions, Inc.
- Patrice Fournier
- patrice.fournier&ifax.com
-39314
- Efactures (JLEM)
- Laradji nacer
- nacer.laradji&gmail.com
-39315
- Xelion b.v.
- Hans Bos
- snmp.pen.registratie&xelion.nl
-39316
- Savtira
- Zoltan Patay
- zpatay&savtira.com
-39317
- Systems Solutions & Development Technologies Ltd
- Firoze Muhammad Zahidur Rahman
- jewel&ssd-tech.com
-39318
- QUALIS AUDIO, INC.
- RICHARD CABOT
- snmp&qualisaudio.com
-39319
- mr-brooks.com
- Darren Brooks
- contact&mr-brooks.com
-39320
- Canada Revenue Agency
- Nicolas Tolstoy
- Nicolas.Tolstoy&cra-arc.gc.ca
-39321
- Schooneman.net
- Ivo Schooneman
- ivo&schooneman.net
-39322
- Champlain Valley Physicians Hospital Medical Center
- Kelly Ahern
- kahern&cvph.org
-39323
- E2E4 TECHNOLOGIES
- VENKATASIVAKUMAR BOYALAKUNTLA
- shiva&e2e4tech.com
-39324
- OS NEXUS, Inc
- Steven Umbehocker
- steve&osnexus.com
-39325
- SecuAvail, Inc.
- Kenji Matsuura
- matsuura&secuavail.com
-39326
- University of Neuchatel
- Antoine Jacot-Descombes
- antoine.jacot-descombes&unine.ch
-39327
- ID Cyber-Identity Ltd
- Adrian Mueller
- info&cyber-identity.com
-39328
- SeaWell Networks
- Ram Ranganathan
- ramr&seawellnetworks.com
-39329
- Lesley University
- Scott Bendekgey
- sbendekg&lesley.edu
-39330
- Dalian Jinghaofeng Techbology Co., Ltd
- John Terry
- yujinjun5&126.com
-39331
- SurGATE Labs
- ismail yenigul
- ismail.yenigul&surgate.com
-39332
- Zuercher Lehrbetriebsverband ICT
- Primus Hofmann
- technik&zli.ch
-39333
- m3 bauprojektmanagement gmbh
- Joachim Konetzki
- joachim.konetzki&m3-gmbh.de
-39334
- RADMOR S.A.
- Marcin Lewandowski
- marcin.lewandowski&radmor.com.pl
-39335
- basis Volume Limited
- Dr Charlton Tavares
- cptavares&btconnect.com
-39336
- Kraus
- Christian Kraus
- uni&christiankraus.de
-39337
- Elephant Bird Consulting
- Tom Geudens
- tom.geudens&hush.ai
-39338
- Operate4all
- Martijn Windgassen
- noc&operate4all.eu
-39339
- Bagsbug
- Agnes FENAUX
- agnes.fenaux&bagsbug.net
-39340
- Kingsbrook Jewish Medical Center
- Melissa Gonzalez
- MGonzalez&kingsbrook.org
-39341
- Soifdinfo
- Kpama Frédéric
- contact&soifdinfo.fr
-39342
- CSF Sistemi S.r.l.
- Marco De Lellis
- marco.delellis&gruppocsf.com
-39343
- Vennetics Limited
- Ivan McShane
- ivan.mcshane&vennetics.com
-39344
- NextNav, LLC
- Frank Patry
- it&nextnav.com
-39345
- ConCen
- Tom Potts
- yeti&concen.org
-39346
- Communaute d'agglomeration Herault Mediterranee
- Laurent Miserey
- l.miserey&agglohm.net
-39347
- LeoNux
- Leon Baker
- leon&leonux.co.za
-39348
- Hochschule für Telekommunikaton Leipzig
- Haiko Wolf
- wolf&hft-leipzig.de
-39349
- National Observatory of Athens
- Nikolaos Milas
- nmilas&noa.gr
-39350
- SuperNAS
- Eric de Hooge
- ericdehooge&supernas.eu
-39351
- Voxbone SA
- Laurent JARBINET
- laurent&voxbone.com
-39352
- Adirondack Community College
- Bryan Goodwin
- goodwinb&sunyacc.edu
-39353
- Biogen Idec
- Aldrin Carao
- Aldrin.Carao&biogenidec.com
-39354
- Oceus Networks, Inc.
- Kevin Stiles
- kstiles&oceusnetworks.com
-39355
- Jeanes Hospital
- Andrew Gavin
- andy.gavin&tuhs.temple.edu
-39356
- Showa University
- Hiromasa Inoue
- itcenter&ic.showa-u.ac.jp
-39357
- INSTITUTO FEDERAL DO CEARÁ - IFCE
- Antonio Rodrigo dos Santos Silva
- rodrigosantos&ifce.edu.br
-39358
- Prospect Computer Systems Inc. (PCS)
- Luke Tsang
- luketsang&yahoo.ca
-39359
- Supranetcom
- Pierre Dubois
- labo&supranetcom.com
-39360
- Welotec GmbH
- Jos Zenner
- j.zenner&welotec.com
-39361
- FraudBuster
- Léonard Wauters
- leonard.wauters&fraudbuster.mobi
-39362
- Activanos SAS
- Daniel Hennion
- jeandaniel.hennion&activanos.com
-39363
- Wessel Dankers
- Wessel Dankers
- wsl-iana&fruit.je
-39364
- The Basis Group, Inc.
- Dusty Little
- dustin.little&groupbasis.com
-39365
- Komar Consulting Inc.
- Brian Komar
- bkomar&komarconsulting.com
-39366
- href.net
- Carsten Zeumer
- carsten.zeumer&href.net
-39367
- Theodore Productions
- Ian Maddison
- ian&theoprod.fr
-39368
- Aqcua Electronics
- Alejandro Pasika
- alex&acquaelectronics.com.ar
-39369
- Silicon Valley Medical Instruments
- Steve Reynolds
- stever&svmii.com
-39370
- Reelway GmbH
- Stephan Schneider
- s.schneider&reelway.de
-39371
- deron Consulting GmbH
- Theodoros Paraskevopoulos
- Theodoros.Paraskevopoulos&deron.de
-39372
- Teo Technologies, Inc.
- Steve Hill
- steve.hill&teotech.com
-39373
- Cooltech srl
- Daniele Caiti
- daniele.caiti&cooltech.it
-39374
- TDK Technologies, LLC
- Mark Henman
- mark.henman&tdktech.com
-39375
- Xtronix Ltd
- Jim Carter
- jim&xtronix.co.uk
-39376
- Gigalan
- Jean Daniel Hennion
- jeandaniel.hennion&groupegigalan.com
-39377
- g2b Holdings Inc.
- Kim Eung Cheon
- kecheon&okg2b.com
-39378
- WAO Corporation
- Shunji Hirakawa
- shunji_hirakawa&wao-corp.com
-39379
- Lab M, llc
- Sergei Beilin
- toor&lab-m.ru
-39380
- Fysisch-Mathematische Faculteitsvereniging
- Eric Spreen
- comcie&fmf.nl
-39381
- Daggerpoint Technologies
- Joe Schiavone
- Joe&Daggerpoint.com
-39382
- JSC "ZHASO"
- Maksim Sorokin
- sorokin_my&zhaso.ru
-39383
- Flex Valley srl
- Nicola Turato
- nicola.turato&flexvalley.com
-39384
- CRYPTAS it-Security GmbH
- DI Stefan Bumerl
- dnsadmin&cryptas.com
-39385
- M.M. Elektrolab
- Miroslav Milutinovic
- melektrolab&sbb.rs
-39386
- Ultra Electronics - Advanced Tactical Systems
- Adam Gaither
- adam.gaither&ultra-ats.com
-39387
- Alpha Direct Services
- Jérôme BELLEGARDE
- j.bellegarde&alpha-direct-services.com
-39388
- Online Classifieds Australia
- Alfie John
- alfie&alfiejohn.com
-39389
- Beaulaton
- Laurent Beaulaton
- contact&laurent-beaulaton.fr
-39390
- Baycom Technology Co.,Ltd
- nie qingrong
- nieqingrong&baycomwireless.com
-39391
- H&L Instruments, LLC
- Robert J. Landman
- rlandman&hlinstruments.com
-39392
- jameskinnaird.ca
- James Kinnaird
- james&jameskinnaird.ca
-39393
- Global Reach Technology Limited
- Dr Christopher Spencer
- chris&globalreachtech.com
-39394
- Direccion General de Escuela Nacional Preparatoria
- Gabriela Cancino Ramirez
- gabriela.cancino&dgenp.unam.mx
-39395
- ELDIS Pardubice, s.r.o.
- Pavel Kolín
- snmp&eldis.cz
-39396
- Zygma LLC
- R.G. Wilsher
- RGW&Zygma.biz
-39397
- amitego engineering GmbH (formerly 'ToolBox Solution GmbH')
- Tillmann Basien
- tab&amitego.com
-39398
- HvS-Consulting AG
- Michael Hochenrieder
- hochenrieder&hvs-consulting.de
-39399
- Gumilyov Eurasian National University
- Vladimir Gerassimov
- vg&enu.kz
-39400
- Institut für angewandte Funksystemtechnik GmbH
- Martin Drischler
- info&iaf-bs.de
-39401
- Tilburg University
- Corno Vromans
- lis-unix&uvt.nl
-39402
- B2F Concept
- Vincent Riquer
- exploitation&b2f-concept.com
-39403
- GEBIT Solutions GmbH
- Marko Eling
- marko.eling&gebit.de
-39404
- Keirex Technology Inc.
- Yoshihiro Mochizuki
- mochizuki&keirex.com
-39405
- Yieldbroker Pty Limited
- Alex Samad
- alex.samad&yieldbroker.com
-39406
- Benu Networks, Inc.
- Michael Brown
- mbrown&benunets.com
-39407
- Explorys
- Nicolas Seritti
- systems.operations&explorys.com
-39408
- Clark State Community College
- Andrew Deans
- deansa&clarkstate.edu
-39409
- b3Lateral Ltd
- Nitesh Bharadia
- nbharadia&b2lateral.net
-39410
- Ideco
- Alexey Smirnov
- smirnov&ideco.ru
-39411
- Ongoing Warehouse AB
- Henrik Ekman
- henrik.ekman&ongoingsystems.se
-39412
- ALBEDO Telecom SL
- Jordi Colomer
- jco&albedo.biz
-39413
- SD Worx VZW
- Ben Nijenhuis
- security&sdworx.com
-39414
- Domo, Inc.
- Ron Hair
- ron.hair&domo.com
-39415
- MicroStep-MIS spol. s r.o.
- Andrej Lucny
- info&microstep-mis.com
-39416
- Metropolitan Transportation Authority
- David Laidig
- sysadmin&mtabuscis.net
-39417
- Kukinto
- Phil J. Laszkowicz
- enquiries&kukinto.com
-39418
- Liberty Healthcare System Inc
- Stephen Li
- sli&libertyhcs.org
-39419
- NETWORK PROCESS CONTROL SYSTEMS S.L.
- Jordi Ferrando Fabra
- jferrando&netplc.com
-39420
- Delta Information Systems, Inc.
- Gary Thom
- gthom&delta-info.com
-39421
- Rising-Gods UG
- Georg Schröjahr
- administration&rising-gods.de
-39422
- JazzHands Management System
- Todd Kover
- enterprisenumber&jazzhands.net
-39423
- Joshua Morgan
- Joshua Morgan
- joshua.morgan&gmail.com
-39424
- hilltonic
- guhongbo
- hongbo.gu&hilltonic.com
-39425
- Verein für Menschen mit Körper- und Mehrfachbehinderung e.V.
- Johannes Köhler
- johannes.koehler&zfk-wuerzburg.de
-39426
- Medical Mutual of Ohio
- David Bogatek
- david.bogatek&mmoh.com
-39427
- Cyrrus Products Ltd
- Nigel Warren
- nwarren&cyrrus.co.uk
-39428
- Himilco
- anis hachani
- hachanienis&gmail.com
-39429
- G10 Transportes - LTDA
- Ricardo Oliveira
- ricardo.oliveira&g10.com.br
-39430
- ownCloud Inc.
- Arthur Schiwon
- arthur.schiwon&owncloud.com
-39431
- BLT Italia srl
- Alfredo Bartelletti
- alfredo&blt.it
-39432
- devcoach GbR - Michael Willers & Partner
- Michael Willers
- michael.willers&devcoach.com
-39433
- T8, LLC
- Yurij Kapin
- Info&t8.ru
-39434
- Isthmus SARL
- Pierre-Yves Bourguignon
- pbourguignon&isthmus.fr
-39435
- Sistemas Dypsa S.R.L
- Fernando Romero
- fernando.romero&sisdypsa.com.ar
-39436
- Just Commodity Software Solutions Pte Ltd
- Frank Edward
- frank.edward&justcommodity.com
-39437
- Six Quarks
- Svetlana Bychkova
- alexander&six-q.net
-39438
- CB10
- C. Brooks
- medievalist&gmail.com
-39439
- FACOS
- Daniel Wolff
- daniel&facos.edu.br
-39440
- JELETL
- Thierry DELHAISE
- thierry.delhaise&jeletl.fr
-39441
- George Watson's College
- Alistair Riddell
- webmaster&gwc.org.uk
-39442
- Fred Hutchinson Cancer Research Center
- Jason Burdullis
- jburdull&fhcrc.org
-39443
- Banco de la Provincia del Nequén S.A.
- José Mateo
- jose.mateo&bpn.com.ar
-39444
- Caucasus Online LLC
- Arman Obosyan
- hts&co.ge
-39445
- Alameda County Medical Center
- John Cooper
- jcooper&acmedctr.org
-39446
- RESEARCH CONCEPTS, INC.
- ETHAN GARTRELL
- egartrell&researchconcepts.com
-39447
- Career Partner GmbH
- Peter Bender
- p.bender&careerpartner.eu
-39448
- Swiss Mideast Finance Group AG
- Thomas Bolliger
- Administrator&swissmideast.ch
-39449
- UBI sistemi e Servizi S.c.p.a
- Luca Biancardi
- ubiss-ictsicurezza-adm&ubiss.it
-39450
- The Lampo Group, Inc.
- Jim Riggs
- itdepartment&daveramsey.com
-39451
- Zarathustra Solucoes em Informatica
- Alessandro Madruga Correia
- amcorreia&zarathustra.com.br
-39452
- Artemis Investment Management LLP
- Robert Smith
- rob.smith&artemisfunds.com
-39453
- Bequant S.L.
- Guillermo Lopez
- admin&bequant.com
-39454
- University of Scranton
- Philip Erb
- systems&scranton.edu
-39455
- Reno A&E
- Chris Mysz
- chrism&renoae.com
-39456
- Denis Bondar
- Denis Bondar
- bondario&gmail.com
-39457
- pcsysteme.at IT Service Gmbh
- Ing. Robert Pabeschitz
- robert.pabeschitz&pcsysteme.at
-39458
- Lobster GmbH
- Steffen Brehme
- steffen.brehme&lobster.de
-39459
- StoFey GbR
- Michael Kirchner
- info&stofey.de
-39460
- CIPHERTELECOM
- Porfirio Lopez
- george.lopez&datacredito.info
-39461
- Arachnocypher Web Services
- Greg Tracy
- arachnocypher&gmail.com
-39462
- Damovo Belgium nv/sa
- Paolo De Luca
- it.belgium&damovo.com
-39463
- Adaptive Networks, Inc.
- Khaled Saab
- saab&adaptiveNetworks.com
-39464
- Solid Instance, Inc
- Ron Steed
- ron&solidinstance.com
-39465
- ENBALA Power Networks
- Xander Botha
- xbotha&enbala.com
-39466
- NV Nederlandse Gasunie
- Peter Hofman
- P.M.Hofman&gasunie.nl
-39467
- RISC Software Gmbh
- Wolfgang Hennerbichler
- wolfgang.hennerbichler&risc-software.at
-39468
- Kettering University
- Tomas Hajek
- root&kettering.edu
-39469
- Neosho Memorial Regional Medical Center
- Gretchen Keller
- gretchen_keller&nmrmc.com
-39470
- MetaEmotion S.L
- Diego Garcia Morate
- diego.garcia&metaemotion.com
-39471
- El Centro Regional Medical Center
- Sylvia Chavarria
- schavarria&ecrmc.org
-39472
- Karsten Eberding
- Karsten Eberding
- karsten&eberding.eu
-39473
- TGW Limited
- Alixx Skevington
- alixx.skevington&tgw-group.com
-39474
- Kaleva Oy
- Juho Rankinen
- juho.rankinen&kaleva.fi
-39475
- TUIR WARTA S.A.
- Paweł Jankowski
- pawel.jankowski&warta.pl
-39476
- Antinea Software
- Sébastien Delmée
- contact&antinea.net
-39477
- American Bureau of Shipping (ABS)
- Cory Leonardi
- cleonardi&eagle.org
-39478
- Andi Miller Engineering Services
- Andi Miller
- andi&andimiller.net
-39479
- sysangels e.U.
- Fresel Michal
- m.fresel&sysangels.com
-39480
- BC Hydro
- Kyle Luciak
- kyle.luciak&bchydro.com
-39481
- WWPass Corporation
- David L. Bucciero
- d.bucciero&wwpass.com
-39482
- Pieceable Software, Inc.
- Bob Ippolito
- ops&launchcommander.com
-39483
- Eneo Tecnologia S.L.
- Juan Jesús Prieto Tapia
- jjprieto&eneotecnologia.com
-39484
- The University of Connecticut Health Center
- Kathy A Noel
- noel&uchc.edu
-39485
- EUCAST Co., Ltd.
- Shinha Kang
- shkang&eu-cast.com
-39486
- ChongQing TrunkSoft Technology Co., LTD.
- Huayong Liu
- 23667547&qq.com
-39487
- Wavestore Limited
- Christopher Mocock
- snmp&wavestore.com
-39488
- Plexipi Kft.
- Zsolt Varady
- info&plexipi.hu
-39489
- EZYield
- Andrew Bailey
- abailey&ezyield.com
-39490
- Data Security Systems Solutions Pte Ltd
- Seng Kee Tan
- sengkee&ds3global.com
-39491
- Eleiss
- Nikunj Master
- nikunjmaster&eleiss.com
-39492
- Steven Denzinger
- Steven Denzinger
- Steven&Denzinger.info
-39493
- Brückenkopf e.v.
- Hanns Mattes
- hanns&hannsmattes.de
-39494
- comBerg Computersysteme
- Andreas Alberg
- info&comberg-computer.de
-39495
- CHU de Charleroi
- Dr André Vandenberghe
- andre.vandenberghe&chu-charleroi.be
-39496
- Arch Systems, Inc.
- Sunao Shirakawa
- techinfo&archsystem.com
-39497
- EMSYS Design Inc
- Bojan Keca
- bojan&emsys-design.com
-39498
- Peerpath
- zhou jin
- jin.zhou&peerpath.net
-39499
- Flowmon Networks a.s. (formerly 'INVEA-TECH a.s.')
- Jan Pazdera
- pazdera&flowmon.com
-39500
- Sumatronic AG
- A. von Mentlen
- andre.vonmentlen&sumatronic.ch
-39501
- Bayerische Medien Technik (bmt) GmbH
- Martin Dreher
- info&bmt-online.de
-39502
- Aaron Wolfe
- Aaron Wolfe
- aaron&aaronwolfe.com
-39503
- Adsalsa Publicidad, S.L.
- Ivan Novas Ferrin
- ivan.novas&adsalsa.com
-39504
- CTI Group (Holdings), Inc.
- Siddhartha Rao
- srao&ctigroup.com
-39505
- Lingo Systems SA de CV
- Juan Rubén Marrero Vizcaíno
- pen&lingo.mx
-39506
- Qalixa Solutions AB
- Mathias Grundell
- mathias.grundell&gmail.com
-39507
- Kreuzer-bb networking
- Johannes Kreuzer
- kontakt&kreuzer-bb.de
-39508
- Schmitz RZ Consult GmbH
- Martin Schmitz
- schmitz&schmitz-rz-consult.de
-39509
- Totemo AG
- Marcel Mock
- support&totemo.ch
-39510
- Institut de Biologie Structurale
- fred metoz
- frederic.metoz&ibs.fr
-39511
- Schiavone Org
- Izzy M. Inocenti
- Joe&Schiavone.org
-39512
- saman insurance
- makan jooyani
- m.jooyani&samaninsurance.com
-39513
- MacAllister Software
- Bill MacAllister
- bill&ca-zephyr.org
-39514
- Associated Engineering
- Scott Flowers
- flowerss&ae.ca
-39515
- Jõhvi Vallavalitsus
- Karel Niine
- karel.niine&johvi.ee
-39516
- Indisys
- Adrian Real Oliva
- a.real&indisys.es
-39517
- Evernote Corp.
- Theral Mackey
- tmackey&evernote.com
-39518
- KAGE Systems Ltd
- Alan Evans
- support&kagesys.com
-39519
- HavenSec, Inc.
- Edward Beuerlein
- ceo&havensec.com
-39520
- Qualycloud
- Benoit Lecocq
- benoit&qualycloud.com
-39521
- xG Technology
- Siddhardha Garige
- sidg&xgtechnology.com
-39522
- Maldivica Inc
- Adam Bane
- adam&maldivica.com
-39523
- Aliphcom
- Joel Krauska
- Itvendor&jawbone.com
-39524
- Nacogdoches Memorial Hospital
- Jenny Clifton
- cliftonj&nacmem.org
-39525
- Creotech Instruments SA
- Grzegorz Kasprowicz
- Grzegorz.Kasprowicz&creotech.pl
-39526
- LogicLore Incorporation
- Prabakar Kalivaradan
- prabakar.prabakar&gmail.com
-39527
- Motaavi, LLC
- Kaiting Chen
- kaiting&motaavi.com
-39528
- ADDIT LTD
- Anton Sinelnikov
- antal&addit.ru
-39529
- Luga Technology Ltd.
- Nick Lowe
- nick.lowe&lugatech.com
-39530
- 6cure SAS
- Vincent Boissée
- vincent.boissee&6cure.com
-39531
- n-Tier construct GmbH
- Dr. Rolf Dahm
- dahm&n-tier.de
-39532
- Quanex Building Products
- Ryan Grant
- ryan.grant&quanex.com
-39533
- Armadillo Software
- H. Eugene Latham
- genel&armadillo.nu
-39534
- Mobiata, LLC
- Jeffrey Parker
- jdparker&mobiata.com
-39535
- modusoft GmbH
- Sascha Ittner
- sascha.ittner&modusoft.de
-39536
- RBNetwork
- André Keller
- ak&rbnw.net
-39537
- Supreme Education Council
- Amal Ahmad Alkuwari
- itdirector&sec.gov.qa
-39538
- Bright Pattern, Inc
- Sergey Menshikov
- sergey.menshikov&brightpattern.com
-39539
- Northwest Hospital & Medical Center
- ADAM PARCHER
- adam.parcher&nwhsea.org
-39540
- Saphety Level - Trusted Services, S.A.
- Bruno Marinho
- pki&saphety.com
-39541
- Blacklight IT UG
- Maximilian Hess
- hess&blacklight-it.com
-39542
- Calgary Co-operative Association Limited
- Jeff Larsen
- jlarsen&calgarycoop.com
-39543
- GNUstep (gnu.org)
- Richard Frith-Macdonald
- rfm&gnu.org
-39544
- igolgi Inc.
- Kumar Ramaswamy
- kumar.ramaswamy&igolgi.com
-39545
- Winters Broadband LLC
- Brian Horn
- planning&winters-broadband.com
-39546
- Infoage
- Martin A Flynn
- martin&infoage.org
-39547
- WakeMed Health and Hospitals
- Jackie Cheeks
- jcheeks&wakemed.org
-39548
- Beijing TopShine Technology Co., Ltd.
- dengji hua
- dengjihua&topshinetech.com
-39549
- DataCore Systems Ltd
- John Reynolds
- john.reynolds&datacoresl.com
-39550
- KE2 Therm Solutions
- Steve Roberts
- admincontact&ke2therm.com
-39551
- UAB SignDigi
- Andrejs Čelnovs
- chelnov&co.inbox.lv
-39552
- Dalian Co-Edifice Video Technology Co. Ltd.
- ZHUANG Xu
- sanzluisgarcia&sina.com
-39553
- Beijing Dynamic Power Co.,Ltd.
- shiqiang
- shiqiang&dpc.com.cn
-39554
- D'Crypt Private Limited
- Tan, Kim Sai
- kim_sai&d-crypt.com
-39555
- gyselroth GmbH
- Raffael Sahli
- sahli&gyselroth.com
-39556
- University of Zurich, Institute of Mathematics
- Rafael Ostertag
- support&math.uzh.ch
-39557
- Horoquartz
- Patrick Paranthoen
- patrick.paranthoen&horoquartz.fr
-39558
- that's it gmbh
- Andreas Woerner
- woerner&thatsit-gmbh.de
-39559
- derEDVdienst
- Frank Leprich
- info&derEDVdienst.de
-39560
- Lead Innovation System Technology Corp.
- Frank, H.L.Lai
- frank&lisystec.com
-39561
- XSD Zrt.
- Adam Popper
- info&xsd.hu
-39562
- Greenhills IT Ltd.
- Mr Martin Wheldon
- martin.wheldon&greenhills-it.co.uk
-39563
- Smart Messaging Solution Pte Ltd
- Hanny Tidore
- hanny.tidore&smsdr.com
-39564
- Yunnan Technician College
- Guanhua Tao
- tgh328&gmail.com
-39565
- Birzeit University
- Raed Hindaileh
- netadmin&birzeit.edu
-39566
- Idealo Internet GmbH
- Marc Schildt
- ldap-oid&idealo.de
-39567
- DJIGZO
- Martijn Brinkers
- martijn&djigzo.com
-39568
- Liberologico Srl
- Marco Bizzarri
- m.bizzarri&liberologico.com
-39569
- max4G, Inc.
- Jeff Stern
- jstern&max4g.com
-39570
- POOL4TOOL AG
- Georg Roesch
- georg.roesch&pool4tool.com
-39571
- L33 NETWORKS
- Samuel MULLER
- sml&l33.fr
-39572
- TCPWave Inc
- Patty Parcha
- Patty.Parcha&tcpwave.com
-39573
- Sauper Associates, Inc.
- Metro Sauper
- msauper&sauper.com
-39574
- Guido Berhoerster
- Guido Berhoerster
- guido&berhoerster.name
-39575
- Global Patient Identifiers, Inc.
- Barry Hieb
- oids&vuhid.org
-39576
- ElvenStar Productions
- Michael Kennedy
- admin&elvenstar.tv
-39577
- GlobeOSS Sdn. Bhd.
- Redianto Satyanugroho
- redianto&globeoss.com
-39578
- Sven van den Heuvel GmbH
- Sven van den Heuvel
- svdheuvel&t-online.de
-39579
- Hearst Business Media
- Chris Suozzi
- csuozzi&hearst.com
-39580
- dual-PROJEKT Paweł Szmidt
- Pawel Szmidt
- pszmidt&dual-projekt.com.pl
-39581
- ZPBE ENERGOPOMIAR-ELEKTRYKA
- Marek Nabiałczyk
- marek.nabialczyk&elektryka.com.pl
-39582
- WebSatMedia Pte Ltd
- Honggo Yeo
- honggo&websatmedia.com
-39583
- Egemin Automation
- Jim Marstboom
- jim.marstboom&egemin.be
-39584
- Hannoversche Volksbank eG
- Lars Hodann
- lars.hodann&hanvb.de
-39585
- Kleyling Spedition GmbH
- Jona Glaubitz
- edv&kleyling.de
-39586
- Datasiel Spa
- Maurizio Pastore
- oid&datasiel.net
-39587
- GuideStone Financial Resources of the Southern Baptist Convention
- Jimmy Brown
- GuideStone.IANA&GuideStone.org
-39588
- SELECTRIC Nachrichten-Systeme GmbH
- Andreas Ahland
- andreas.ahland&selectric.de
-39589
- eBackpack, Inc.
- Doug Mayer
- doug&ebackpack.com
-39590
- Fundació privada i2cat
- Andrea Cervera
- andrea.cervera&i2cat.net
-39591
- Aux Sable Liquid Products LP
- Keith Nush
- Keith.Nush&auxsable.com
-39592
- Sermotec Communications GmbH
- Harald Petrovitsch
- office&sermotec.at
-39593
- Suofeiya Home Collection Co., Ltd
- JohnsonChen
- johnson.chen&sogal.com.cn
-39594
- Point Of Pay Pty Ltd
- Jatinder Singh
- jatinders&pointofpay.com.au
-39595
- GuangZhou JoySim Network Technology Co.,Ltd.
- liangwei Wu
- 164254840&qq.com
-39596
- Zhejiang Broadcast&Television Technology Co.,Ltd.
- MeiLi Pan
- ml.pan&163.com
-39597
- Chongqing Chongyou Communication Technologies Co,Ltd.
- ZhiKuan Li
- liangyan&cqupt.edu.cn
-39598
- INFACOM S.L.
- Andres Espin
- aespin&infacom.es
-39599
- Mzinga, Inc.
- Eric Kreiser
- ekreiser&mzinga.com
-39600
- Capital Bank
- Christian Ropposch
- christian.ropposch&capitalbank.at
-39601
- Vector 3 S.A.
- Pau Ceano
- pau.c&vector3.es
-39602
- Regional Medical Center at Memphis
- Doug Dohmen
- ddohmen&the-med.org
-39603
- DTTec Consulting
- Mario Teichmann-Denschlag
- Mario.Teichmann-Denschlag&dttec.de
-39604
- Accuenergy (CANADA) Inc.
- Zhi Zhao
- george.zhao&accuenergy.com
-39605
- GlobeCast France
- GAUDIN Thierry
- thierry.gaudin&globecast.com
-39606
- GoldKey Security Corporation
- Thomas Eyre
- teyre&goldkey.com
-39607
- NX Information Services
- Matthieu MICHAUD
- matthieu&nxdomain.fr
-39608
- Palosanto Solutions S.A.
- Rocio Mera
- rmera&palosanto.com
-39609
- next-pbx
- aeran moon
- wphilmoon&gmail.com
-39610
- BITLANCER LLC
- Matthew Juszczak
- contact&bitlancer.com
-39611
- Video Design Software Inc.
- Wyk Parish
- wyk&videodesignsoftware.com
-39612
- Stantec Consulting
- Semyon Chaichenets
- semyon.chaichenets&stantec.com
-39613
- Sawridge Systems India Pvt Ltd
- Pothirajan Kandasamy
- pothirajan.kandasamy&sawridgesystems.com
-39614
- Valid
- Ben van Zanten
- Ben.van.Zanten&valid.nl
-39615
- 2008mcitp.com
- Mark Thrower
- mark.thrower&2008mcitp.com
-39616
- GlasgowNet
- Kyle Gordon
- kyle&lodge.glasgownet.com
-39617
- PDT Partners, LLC
- John Rau
- johnrau&pdtpartners.com
-39618
- Cloud Assist
- Mark Wyman
- mark.wyman&cloudassist.com.au
-39619
- Institutul pentru Tehnologii Avansate
- Aurelian Tolescu
- ati&dcti.ro
-39620
- JANUS srl
- Gianpiero Lovat
- janus&jns.it
-39621
- SOPLEX Consult GmbH
- Sven Kotting
- tech&soplex.de
-39622
- Intermas France S.A.S
- Gomarin Philippe
- Philippe.Gomarin&intermas-el.fr
-39623
- PCS Systemtechnik GmbH
- Markus Zinner
- mzinner&pcs.com
-39624
- herold&schönsteiner networks UG haftungsbeschränkt
- Fabian Kreuzkam
- fabian.kreuzkam&herold-schoensteiner.de
-39625
- Kraft Foods
- Bruce Portz
- bruce.portz&hp.com
-39626
- Hackerspace Warsaw
- Tomek Dubrownik
- tomek&hackerspace.pl
-39627
- Rhinobee
- Kevin Weare
- kevin&rhinobee.com
-39628
- Vegayan Systems
- Surinder Singh
- surinder_singh&vegayan.com
-39629
- Auxilium
- Boris Lenzinger
- boris.lenzinger&auxilium-conseil.fr
-39630
- mailplus.co.at
- Johannes Schulz
- office&mailplus.co.at
-39631
- mocube
- Alexander Mette
- admin&mocube.net
-39632
- Hyro Pty Ltd
- David Rhee
- david.rhee&hyro.com
-39633
- Dos Tek Group
- Zakon Kuruchbekov
- pki&dostek.kg
-39634
- HighGrand Technology
- Pun Lam
- phl&highgrand.com.cn
-39635
- Beijing ZhongChuang Telecom Test Co.,LTD
- Huiling Shen
- happyshlshl&126.com
-39636
- Comet Computer GmbH
- Florian Albrechtskirchinger
- albrechtskirchinger&comet.de
-39637
- IMP Solutions Network Operations
- Jeff Warnica
- jeff.warnica&impsolutions.com
-39638
- Cornerstone Backup, Inc.
- Nigel Whillier
- nwhillier&cornerstonebackup.com
-39639
- Vigilent Corporation
- Kennard White
- kennardwhite&vigilent.com
-39640
- Europalab Networks
- Michael Schloh von Bennewitz
- michael&schloh.com
-39641
- SPICE DIGITAL LIMITED
- Gurpreet Singh Gondara
- gurpreet.singh&spicedigital.in
-39642
- S3 s.r.l.
- Ruben Castelletti
- ruben.castelletti&s3srl.com
-39643
- WedaCon Informationstechnologien GmbH
- Thorsten H. Niebuhr
- info&wedacon.net
-39644
- The University of North Carolina at Greensboro
- Robert Gorrell
- idm-admin&uncg.edu
-39645
- Anglo-American School of Moscow
- Ilya Pekshev
- iana-pen&aas.ru
-39646
- Mikro Odeme Sistemleri A.S
- Deniz Bektas
- deniz.bektas&mikro-odeme.com
-39647
- iNic AS
- Bjornar Ness
- bjornar&fastname.no
-39648
- Enovacom
- Christophe Marcel
- cmarcel&enovacom.fr
-39649
- General Data Technology Co. Ltd.
- Yin Lina
- info&gbase.cn
-39650
- AEMO Ltd
- Kerrod Fuller
- iana.administrator&aemo.com.au
-39651
- ComTecT
- Werner Saathoff
- saathoff&comtect.de
-39652
- The William Carter Company
- Richard Hunt
- rich.hunt&carters.com
-39653
- Imbio
- Ryan Chamberlain
- ryanchamberlain&imbio.com
-39654
- TISSOT
- Andrés M. Tissot
- info&etissot.com.ar
-39655
- Humbug Telecom Labs Limited
- Nir Simionovich
- nirs&humbuglabs.org
-39656
- Nationale Nederlanden (formerly 'ING Insurance /IM')
- R.E. Flinkerbusch
- ray.flinkerbusch1&nn-group.com
-39657
- Administration of the Vladimir Region
- Pavel Shuba
- shuba&avo.ru
-39658
- TollNet a.s.
- Petr Vokac
- petr.vokac&tollnet.cz
-39659
- NSD CO., LTD.
- Kenji Yuasa
- yuasa&nsd.co.jp
-39660
- Tarana Wireless Inc
- Rakesh Tiwari
- rakesh&taranawireless.com
-39661
- Allianz Managed Operations and Services SE - oneWeb
- Markus Moltenbrey
- extern.moltenbrey_markus&allianz.de
-39662
- metafinanz Informationssysteme GmbH
- Markus Moltenbrey
- markus.moltenbrey&metafinanz.de
-39663
- RENK AG
- Helmut Wirth
- helmut.wirth&renk.biz
-39664
- Lingua-IT Sp. z o.o.
- Marcin Suchocki
- m.suchocki&lingua-it.pl
-39665
- Fat Mongoose Technologies, Inc.
- Alan Chan
- ac&fatmongoose.com
-39666
- Consult A Nerd
- Rod Miller
- rod&consultanerd.com
-39667
- CodeMettle, LLC
- Cliff Ford
- cliff&codemettle.com
-39668
- Iridium Digital Systems Corporation
- Falcon Darkstar Momot
- falcon&iridiumlinux.org
-39669
- Koning Corporation
- Shaohua Liu
- shaohua.l&koningcorporation.com
-39670
- knaute.info
- Thomas Knaute
- thomas&knaute.info
-39671
- NEXTDC Ltd
- Bob Purdon
- bob.purdon&nextdc.com
-39672
- Elite Automação Comércio e Serviços Ltda ME
- José Luiz Vieira
- contato&eliteacs.com.br
-39673
- Talon Storage Solutions
- Shirish H. Phatak
- shirish&talonstorage.com
-39674
- OctoGate GmbH
- Ralph Viehhofer
- ralph.viehhofer&hsm.de
-39675
- Vast Array Corporation
- Benjamin F. Beideman
- benjamin.beideman&vastarraycorp.com
-39676
- Pason Systems Corp.
- Abudy Charanek
- abudy.charanek&pason.com
-39677
- Archdata SPRL
- Philippe Delhaise
- phil.delhaise&gmail.com
-39678
- American Domain Names LLC
- Christopher M Mettin
- cmettin&unclesamnames.com
-39679
- JSC Tekhdiagnostika
- Serge Voronin
- voronin&tdiag.ru
-39680
- Nozhup B.V.
- Richard van Bemmelen
- richard.van.bemmelen&breplu.nl
-39681
- Catalyst Repository Systems
- Kevin Fries
- kfries&catalystsecure.com
-39682
- Exegin Technologies Limited
- Leslie Mulder
- ljm&exegin.com
-39683
- Single Touch Interactive
- Mark Ramirez
- mark&singletouch.net
-39684
- Genteel.org
- Gentarou Kimura
- gentianster&gmail.com
-39685
- WTG Muenster
- Michael Grote
- service-ms&wtg.com
-39686
- Acquirente Unico
- Cappadozzi Elettra
- elettra.cappadozzi&acquirenteunico.it
-39687
- JSC Aprelevka X-ray factory
- Alexey Surnin
- alexey_surnin&amico.ru
-39688
- interactingstars.org
- Prof. Natalia Ivanova
- sysadmin&interactingstars.org
-39689
- BRF
- Thierry Groteclaes
- thierry.groteclaes&brf.be
-39690
- IPACCT Ltd.
- Boian Bonev
- bbonev&ipacct.com
-39691
- embeddeers GmbH
- Josef Werth
- netadmin&embeddeers.com
-39692
- Ideal Mahdban Engineering Services
- Mohammad Reza Mahdavifar
- Mahdavifar&mahdban.com
-39693
- N-Partner
- Max Tsai
- max&npartnertech.com
-39694
- Diamont Equipamentos Especiais Ltda
- Clebe Vitorino
- engenharia&diamont.com.br
-39695
- FRAFOS GmbH
- Stefan Sayer
- stefan.sayer&frafos.com
-39696
- Banglalion Communications Limited
- Rezwanul Haque
- rezwanul.haque&banglalionwimax.com
-39697
- Intelligent Security Systems
- Aluisio Figueiredo
- aluisio&isscctv.com
-39698
- Mianyang Netop Telecom Equipment Co.,Ltd
- Tan Xiaorong
- smiletann&yahoo.com.cn
-39699
- Robustel Technologies
- Lianfeng Cao
- info&robustel.com
-39700
- Sonic Boom Wellness
- Eric Fox
- eric&sbwell.com
-39701
- Mangelal & Sons
- Vikash Ku. Agrawal
- mangelalandsons&gmail.com
-39702
- Linux Solutions
- Kayo Sérgio Guimarães
- kayo_tec&hotmail.com
-39703
- SASCO
- Esteban De La Fuente Rubio
- esteban&sasco.cl
-39704
- Unyonsys
- Bruno LEON
- bruno.leon&unyonsys.com
-39705
- skslater.net
- Simon Slater
- skslater&skslater.net
-39706
- ADTEK
- Arhainx Jean
- arhainx&adtek.fr
-39707
- Cumbria Constabulary
- Andrew Douthwaite
- andrew.douthwaite&cumbria.police.uk
-39708
- Telent GmbH * A division of euromicron Group
- Michael Manderscheid
- michael.manderscheid&telent.de
-39709
- Broadcast Graphics and Control Limited
- Stephen Mills
- stephen.mills&bgandc.com
-39710
- Wentworth-Douglass Hospital
- Lynda Powers
- lynda.powers&wdhospital.com
-39711
- Radiobolaget Gunhamn och Åsbrink AB
- Tim Sjöstrand
- tim&radiobolaget.com
-39712
- QSD Sistemi Srl
- Marco Pagnoncelli
- marco.pagnoncelli&qsdsistemi.it
-39713
- Abertis telecom
- Angel Dominguez
- angel.dominguez&abertistelecom.com
-39714
- Associacio Cultural TGK
- Alex Barcelo
- intranet&telecogresca.com
-39715
- DominionTech Computer Services
- Nabil Alanbar
- nabil&dominiontech.com
-39716
- University of South Alabama Health System
- Terry Dees-Kolenich
- tdkoleni&usouthal.edu
-39717
- Westerholt
- Jonathan Westerholt
- joniw&joniw.de
-39718
- Silverflare Ltd
- Jan Nielsen
- jan.nielsen&silverflare.com
-39719
- TCF Financial Corporation
- Kevin Serafin
- kserafin&tcfbank.com
-39720
- Maryland Stadium Authority
- Joe March
- JMarch&mdstad.com
-39721
- DUCSS
- Ben Doyle
- admin&ducss.ie
-39722
- Underpin Taiwan Ltd.
- Ken.Fu
- ken.fu&underpin.com.tw
-39723
- Logistics Energy Korea Co., Ltd.
- An Byeonghwan
- abh041804&naver.com
-39724
- [j]karef GmbH
- Matthias Münzner
- matthias.muenzner&jkaref.com
-39725
- JeraSoft
- Andrii Zinchenko
- mail&zinok.org
-39726
- British National Party
- Chris Barnett
- webtech&bnp.org.uk
-39727
- IT Ihme
- Miika Pekkarinen
- miika.pekkarinen&ihme.org
-39728
- Bessels IT
- Dick Bessels
- info&bessels.it
-39729
- Cilutions, Digital Media Bridge
- Bill Stanton
- bstanton&cilutions.com
-39730
- SHANGHAI MEXON COMMUNICATION TECHNOLOGY.,LTD
- Zhang jian
- 806&mexontec.com
-39731
- Emind Systems Ltd
- Lahav Savir
- info&emindsys.com
-39732
- Shenzhen Smart Cube Intelligent Technology Co.,LTD
- Fisher Yu
- fisheryu&smart3.cn
-39733
- Boss Info AG
- Simon Boss
- system&bossinfo.ch
-39734
- wujiman.net
- Martin Kraus
- iana&wujiman.net
-39735
- Main Street Softworks, Inc.
- Darryl Wright
- info&monetra.com
-39736
- ACTIVE SYSTEM MANAGEMENT
- Mr. Chinh Phan
- c.phan&active-system.com
-39737
- CommercePack
- Aditya Advani
- support&commercepack.com
-39738
- IBS America, Inc.
- Carlo Accorsi
- it&ibs-us.com
-39739
- Madscientistclub
- David Corni
- dcorni&cinci.rr.com
-39740
- PSA Zeebrugge International Port nv
- Louis Stevens
- louis.stevens&globalpsa.com
-39741
- Egnyte Inc.
- Ramanathan Kavasseri
- rkavasseri&egnyte.com
-39742
- Société des ingénieurs Arts et Métiers
- Vivien GIRARD
- vivien.girard&gadz.org
-39743
- Shanghai Dongzhou Lawton Telecom Technologies Co.,ltd
- FengJiang
- jiangfeng&dztx.com
-39744
- EDESA
- Javier Sanchez
- javier.sanchez&edesa.com.co
-39745
- OPower, Inc.
- Jesse Kempf
- jesse.kempf&opower.com
-39746
- MEITSUDENSHI
- Yuji Tsukamoto
- meitu&din.or.jp
-39747
- Zhejiang Uniview Technologies Co., Ltd.
- wuzhaohui
- wuzhaohui&cn-uniview.com
-39748
- Intesyn S.r.l.
- Luca Lo Iacono
- support&intesyn.it
-39749
- Kassenärztliche Vereinigung Brandenburg
- Stefan Mrosek
- stefan.mrosek&kvbb.de
-39750
- Union Hospital Health Group
- John McKinney
- jmckinney&uhhg.org
-39751
- Mobintegro
- Alexander Atamanov
- admin&mobintegro.com
-39752
- HootSuite Media Inc
- Chris Maxwell
- hosting&hootsuite.com
-39753
- Vignold Workflow & New Media GmbH
- Patrick Seiferth
- pati&ooaahh.de
-39754
- HAVI Logistics IS GmbH
- Holger Guyens
- holger.guyens&havilog.com
-39755
- Saint Mondiale PTE LTD
- Greg Broux
- gbroux&saint-mondiale.com
-39756
- St. Johns County School District
- Justin Forfar
- justin.forfar&stjohns.k12.fl.us
-39757
- Schomäcker GmbH
- Christian Pflüger
- christian.pflueger&schomaecker-gmbh.com
-39758
- imoxion
- Yeonchan,Jung
- dev&imoxion.com
-39759
- LOREME
- Patrick Dumoulin
- technique&loreme.fr
-39760
- New Cosmos Electric Co., Ltd.
- Kosaku Yanagihara
- yanagihara.kousaku&new-cosmos.co.jp
-39761
- Galiam Capital, LLC
- Austin B. Calvert
- austin.calvert&galiam.com
-39762
- Radio Mobile Access, Inc
- Richard Bouchard
- rbouchard&radiomobiles.com
-39763
- Adams County School District 50
- Mark Hanson
- mhanson&adams50.org
-39764
- Transoft (Shanghai) Inc.
- Jacky Gan
- jacky_gam_2001&163.com
-39765
- Keydap
- Kiran Ayyagari
- kayyagari&keydap.com
-39766
- Null Pointer Inc.
- Andrew Zeneski
- andrew&andrewzeneski.com
-39767
- TomTom International BV
- David Bruce
- david.bruce&tomtom.com
-39768
- UAB Technologiju ir inovaciju centras
- Aleksandras Jevsejevas
- aleksandras.jevsejevas&etic.lt
-39769
- Italian Grid Infrastructure (IGI)
- Riccardo Brunetti
- riccardo.brunetti&to.infn.it
-39770
- Martin Neimeier
- Martin Neimeier
- neimeier&bibbernet.org
-39771
- SIP Express Media Server
- Raphael Coeffic
- rco&iptel.org
-39772
- Melchinger Systemhaus UG
- Thomas Melchinger
- thomas.melchinger&melchinger.net
-39773
- Pannon Site Ltd.
- Tamas Kiszely
- tkiszely&pannonsite.hu
-39774
- Criena Network
- Karel W. Dingeldey
- admin&criena.net
-39775
- Capitol Lien Records & Research, Inc.
- Ben Moudry
- benm&capitollien.com
-39776
- Andreas Strey
- Adnreas Strey
- aohrner&web.de
-39777
- Simon Arlott
- Simon Arlott
- pen.iana.simon&arlott.org
-39778
- Young Master Supplies & General Enterprises Ltd
- Michael Sifuni
- meezy&youngmaster.co.tz
-39779
- UCLA Anderson School of Managemetn
- James Kim
- james.kim&anderson.ucla.edu
-39780
- Pikopiko Network
- Anthony Low
- shinji&pikopiko.org
-39781
- T&W
- Haiyang Zhang
- haiyang.zh&gmail.com
-39782
- Hangzhou I'converge Techonoloay Co.,Ltd
- Ms Jane Xu
- xujz&iconverge.cn
-39783
- ASB Bank Limited
- Ryan Cotterell
- ryan.cotterell&asb.co.nz
-39784
- National Jewish Health
- Liam Schneider
- admin&njhealth.org
-39785
- DS/2 GbR
- Dirk Strauss
- info&ds-2.de
-39786
- Travelocity.com
- Jaime Diaz
- jaime.diaz&travelocity.com
-39787
- Suntrust Banks, Inc.
- Larry Tanner
- larry.tanner&suntrust.com
-39788
- LogoDynamic Unit GmbH
- Dr. Ernesto Schobesberger
- es&ld-unit.com
-39789
- Southwest Texas Regional Advisory Council
- Sam Dibrell
- sam&strac.org
-39790
- Church & Dwight Co., Inc.
- Gary Oppel
- gary.oppel&churchdwight.com
-39791
- Unified Microsystems
- Christopher Morley
- info&unifiedmicrosystems.com
-39792
- YouDotNet Limited
- Ben Durkin
- ben&youdotnet.com
-39793
- World Net
- Sam Dibrell
- iana.org&world-net.net
-39794
- FedeRez
- Olivier Caillault
- admin&federez.net
-39795
- Cardiothink, Inc.
- Lawrence Widman
- pen.iana.org&cardiothink.com
-39796
- BkavCA
- Mr Quyen Le Cong
- quyenlc&bkav.com.vn
-39797
- Contract Kitting
- Hennie Lombaard
- hlombaard&ckza.co.za
-39798
- Republički fond za zdravstveno osiguranje
- Mladen Mitrović
- mladen.mitrovic&rfzo.rs
-39799
- TELE APOSTUAK
- Antxon Alonso
- sistemak&kiroljokoa.com
-39800
- MTU Aero Engines GmbH
- Ulrich Clara
- hostmaster&mtu.de
-39801
- Imagicle SpA
- Christian Bongiovanni
- Cb&imagicle.com
-39802
- Urban Airship, Inc.
- Mike Newton
- eng-ops&urbanairship.com
-39803
- IT-Box GmbH
- Matthias Wimmer
- mwimmer&it-box.de
-39804
- Ctyle Corporation
- Zhang Weizhong
- pr&ctyle.com
-39805
- Ingenious Med
- Randy Astle
- rastle&ingeniousmed.com
-39806
- PrJSC "IC SEB LIFE UKRAINE"
- Alexander Migal
- OLEKSANDR.MIGAL&SEB.UA
-39807
- Edgewater Wireless Systems Inc.
- Natalie Gagnon
- natalieg&edgewaterwireless.com
-39808
- SHINE SYSTEM
- Heo,wonsuck
- activedesk&zenois.com
-39809
- Lonely Planet
- Alistair Weddell
- Alistair.Weddell&lonelyplanet.com.au
-39810
- KNET Co., Ltd.
- SUN Guonian
- sunguonian&knet.cn
-39811
- ZaPOP (Pty) Ltd
- Riaan Labuschagbne
- riaan&zapop.com
-39812
- UC RUSAL
- Denis Khleborodov
- denis.khleborodov&rusal.com
-39813
- Public Joint-Stock Company "National Depository of Ukraine"
- Taras Kraychuk
- t_kraychuk&csd.ua
-39814
- SOLYSTIC
- Didier Tresse
- Didier.Tresse&solystic.com
-39815
- iphion B.V.
- Martijn Grendelman
- martijn&iphion.nl
-39816
- Accelatis
- Jonathan Berry
- jberry&accelatis.com
-39817
- cl0secall.net
- Joshua Kocinski
- iana&cl0secall.net
-39818
- Anator
- Fernandez Julien
- julien.fernandez&anator.com
-39819
- VaporPunk, Inc.
- Cody Mello
- cody&vaporpunk.com
-39820
- Cyssea
- Fred Lacombe
- fred.lacombe&cyssea.com
-39821
- EDINEC SRL
- Eduardo Antonio Jalil
- ejalil&edinec.com.ar
-39822
- iSchemaView, Inc.
- Roland Bammer
- rbammer&stanford.edu
-39823
- Consorci Administració Oberta de Catalunya
- Joan A. Olivares Obis
- jaolivares&aoc.cat
-39824
- Smart Grid Networks
- Anders Grahn
- anders.grahn&smartgridnetworks.net
-39825
- Public Safety canada
- Pierre Plante
- plantep&smtp.gc.ca
-39826
- Accelerated Servers, Inc
- Avi Freedman
- avi&acceleratedservers.com
-39827
- Celal Bayar University
- Ahmet Oztuna
- ahmet.oztuna&cbu.edu.tr
-39828
- ATP
- Lars Ditlevsen
- ldi&atp.dk
-39829
- Asetek
- Kasper Fuglsang Jensen
- kfj&asetek.com
-39830
- Greeve
- Auryn Hughes
- auryn.hughes&greeve.co.uk
-39831
- Museu de Astronomia e Ciencias Afins
- Alberto Wester
- albertow&mast.br
-39832
- LogicMonitor Inc
- Steve Francis
- sfrancis&logicmonitor.com
-39833
- hangzhou e-vision electronic system engineering corp.
- baifanfan
- ffbai&hzys.net.cn
-39834
- Fata Informatica
- Vincenzo Alonge
- v.alonge&fatainformatica.com
-39835
- JANTEQ CORPORATION
- Andrew Fox
- andy&janteq.com
-39836
- Sindikat “Akademska solidarnost”
- Andrej Dundović
- kontakt&akadsolid.hr
-39837
- A123 Systems, Inc.
- John M. McNally
- jmcnally&a123systems.com
-39838
- University of Bahrain
- Dr Eshaa Alkhalifa
- ealkhalifa&admin.uob.bh
-39839
- Gaftech
- Gabriel Fournier
- gabriel&gaftech.fr
-39840
- ICAR CNR
- Pietro Storniolo
- tech-c&pa.icar.cnr.it
-39841
- Danske Bank
- Jørn Guldberg
- jrgu&danskebank.dk
-39842
- Communauté Urbaine du Grand Toulouse
- OULD-AMAR Karim
- Karim.OULD-AMAR&grandtoulouse.fr
-39843
- Precogs Software SAS
- Vlad Vasiliu
- vlad.vasiliu&precogs.fr
-39844
- MAPPER Lithography
- Robert de Vries
- robert.de.vries&mapperlithography.com
-39845
- Dr. Schenk IT-Consulting GmbH
- Dr. Andreas Schenk
- info&dr-schenk-it.de
-39846
- UNILINK SA
- FRANCOIS QUENUM
- FRANCOIS.QUENUM&UNILINK.FR
-39847
- ATS GRUP LTD
- Fatih Kucuklergil
- fatih&atsgrup.com.tr
-39848
- Voximage
- Regent Beaulieu
- rbeaulieu&voximage.ca
-39849
- Arbiter Systems
- Niles Rasmussen
- nrasmussen&arbiter.com
-39850
- Ross Opticians Inc.
- Evelyn Ross
- evelynzross&gmail.com
-39851
- HLT Software GmbH
- Wolfgang Wester
- wolfgang.wester&hlt-software.de
-39852
- Clima-Tech Coporation
- Wayne Andersen
- waynea&clima-tech.com
-39853
- BSI Business Systems Integration AG
- Daniel Buehler
- bsi_pen&bsiag.com
-39854
- eVolution Networks
- Amit Liber
- Amit&evolutionetworks.com
-39855
- FCP Fritsch, Chiari & Partner ZT GmbH
- Georg Fritsch
- gf&fcp.at
-39856
- Beijing Qibadian Information Technology CO., Ltd.
- Fei Wang
- fei.wang&jimii.cn
-39857
- CYSM Ltd.
- Chris Roberts
- c.roberts&csrfm.com
-39858
- Kirin-gumi
- Takayuki Akiyama
- akiyama&kirin-gumi.net
-39859
- Clemax,Inc
- Nizeyimana, Rosine
- ghighi-du63000&hotmail.fr
-39860
- OGS IT-Solutions
- Mr. Osman Gümüs
- guemues&ogs.at
-39861
- Orbitz Worldwide, LLC.
- James Regovich
- james.regovich&orbitz.com
-39862
- ComSonics,Inc.
- Shirley J. Custer
- shirleyc&comsonics.com
-39863
- World Vision US
- Adam Patterson
- apatters&worldvision.org
-39864
- WEBeDoctor, Inc.
- Jim Starwood
- jstarwood&webedoctor.com
-39865
- Slabinfo E.U.
- John Edisson Ortiz
- jortiz&slabinfo.com.co
-39866
- Advanced Network Devices
- Dan Mahn
- dan&digidescorp.com
-39867
- Linedata
- Rick Morris
- it&na.linedata.com
-39868
- Miami International Holdings
- Manjul Rai
- mrai&miami-holdings.com
-39869
- Illumina, Inc
- Ryan Niemes
- rniemes&illumina.com
-39870
- Telesis A.S.
- Mumin Guler
- contact&telesis.com.tr
-39871
- Trans Industrias Electronicas
- Sergio Jardon
- sjardon&trans.com.ar
-39872
- CIPFP Ausias March
- Luis Garcia
- lgarcia&ausiasmarch.net
-39873
- Silicon Labs (formerly 'Ember Corporation')
- Robert Power
- robert.power&silabs.com
-39874
- Asmlab Limited
- Semen Makhorkin
- iana&asmlab.ru
-39875
- Beijing GuangXinYingKe Technology Co.,Ltd
- Ming Xue
- xueming&gxtech.com.cn
-39876
- 7-Technologies A/S
- Lars Mortensen
- lmo&7t.dk
-39877
- VCE Vienna Consulting Engineers
- Georg Fritsch
- gf&vce.at
-39878
- Le Aquile Unita' Cinofile da Soccorso Ravennate
- Balestri Paride
- segreteria&leaquile.it
-39879
- Amplitude Systemes
- Julien CARLIER
- jcarlier&amplitude-systemes.com
-39880
- Thomas Wiedstruck - Informationstechnik
- Thomas Wiedstruck
- thomas&wiedstruck.de
-39881
- EyesOfNetwork
- LEVY Jean-Philippe
- eyesofnetwork&eyesofnetwork.com
-39882
- Greater Pittsburgh Glass & Door
- Steven L Buzonas Jr
- steve&slbmeh.com
-39883
- Sysacom
- Steve Légaré
- slegare&sysacom.com
-39884
- T-Platforms
- Alexander Amelkin
- noc&t-platforms.com
-39885
- StorONE
- Gal Turchinski
- Galtur&storone.com
-39886
- Kurt Kincaid Consulting
- Kurt Kincaid
- kurt&kurtkincaid.com
-39887
- localroot.de
- Sascha Bendix
- hostmaster&localroot.de
-39888
- Ness Computing, Inc.
- Henning Schmiedehausen
- henning&likeness.com
-39889
- icecreek Software und Services
- Christian Ey
- info&icecreek.de
-39890
- Beijing Forsun Technology Co.,Ltd
- David Leng
- 275582448&qq.com
-39891
- MNUCIB VNII PVTI
- Dmitry Ponomarev
- dmitry.ponomarev&mnucib.ru
-39892
- v-ic
- Victor Ashirov
- v.a.ashirov&r35.v-ic.ru
-39893
- Energierversorgung Mittelrhein GmbH
- Bjoern Hermes
- bjoern.hermes&evm.de
-39894
- Haley Technologies Inc. dba PC PitStop
- Paul Haley
- mark&pc-pitstop.com
-39895
- OpenX
- Seth Daniel
- systems&openx.org
-39896
- The Cleveland Clinic Foundation
- Dave Blankenship
- blanked&ccf.org
-39897
- Ryder System, Inc.
- Sumanth Gangaraboina
- enterpriseitsecurity&ryder.com
-39898
- AtrilA GmbH
- Andre Keller
- keller&atrila.com
-39899
- Virginia Hospital Center
- Michelle Lardner
- mlardner&virginiahospitalcenter.com
-39900
- INITE SC
- Diego García Bustos
- diego.garcia&inite.edu.mx
-39901
- Crypto4A
- Bruno Couillard
- bruno&crypto4a.com
-39902
- inqa.be
- Joachim Van den Bogaert
- joachim&inqa.be
-39903
- Pivotal Technologies Pty Ltd
- Steve Kelly
- admin&pivotaltechnologies.com.au
-39904
- Sascha Wolf
- Sascha Wolf
- adnae&anxia.org
-39905
- eA-light Arbeitsgemeinschaft der ÄKNO und ÄKWL
- Viktor Krön
- kroen&aekno.de
-39906
- Zwissler Technologies, LLC
- Rob Zwissler
- rob&zwisslertech.com
-39907
- LinkSquare
- Zhang Haibin
- zhanghaibin&linksquare.cn
-39908
- china beijing koal Company
- haitao wang
- wanghaitao03&126.com
-39909
- OJSC GUTA-BANK
- Vladislaw Polukeev
- polukeev.vo&gutabank.ru
-39910
- Fusionex
- Andy Pang
- andy.pang&adv-fusionex.com
-39911
- ltd Arhangelskoe predprijatie protivopozharnoj avtomatiki
- Chulkin Alexander
- spisprut&gmail.com
-39912
- State Grid Electric Power Research Institute
- Yuxin Chen
- chenyuxin&sgchip.com
-39913
- ELONG Corp
- haitao ni
- haitao.ni&corp.elong.com
-39914
- ZPAS S.A.
- Daniel Piegza
- daniel&zpas.pl
-39915
- wiba10
- Konstantin Hopf
- info&wiba10.de
-39916
- KeyLemon SA
- Gilles Florey
- info&keylemon.com
-39917
- KUFP “Medaparatura”, ALC
- Kostiantyn Zander
- office&medaparatura.kiev.ua
-39918
- Cardiocore
- G.K. Meier
- snmp.engineers&cardiocore.com
-39919
- hybris GmbH
- Joachim Kraftmayer
- joachim.kraftmayer&hybris.com
-39920
- wintek System
- Jinseok Seo
- jsseo&wintek.co.kr
-39921
- UKFast.Net Ltd
- Darren Taylor
- darren.taylor&ukfast.co.uk
-39922
- SDN SPA
- Pasquale Garzillo
- ced&sdn-napoli.it
-39923
- Seres
- Thierry Guérin
- iana.docupost&seres.fr
-39924
- Chase Paymentech
- Paul Peterson
- paul.peterson&chasepaymentech.com
-39925
- Excellent S.A.
- Roman Kolasiewicz
- iana_pen&excellent.com.pl
-39926
- Aspen Systems
- Doug Morse
- dmorse&aspensystems.com
-39927
- Voronezh Cityhall
- Vladimir Pakhomov
- don&cityhall.voronezh-city.ru
-39928
- Dmitry Ponomarev
- Dmitry Ponomarev
- dmitry&ponomarevs.ru
-39929
- Dingbox
- Ant Kenworthy
- dns&dingbox.net
-39930
- Rewired State
- Steve King
- steve&rewiredstate.com.au
-39931
- openNetMon
- Jean-Damien POGOLOTTI
- jean-damien&opennetmon.net
-39932
- Mindware
- Alan March
- alandmarch&gmail.com
-39933
- Technology Space Integration Limited
- Marek Stuczynski
- marek.stuczynski&tsiuk.com
-39934
- TopHat Software
- Colm Vize
- colm&tophat.ie
-39935
- Transas Marine International
- Dmitry Rostopshin
- rost&transas.com
-39936
- Cheshire Medical Center
- Marie Young, Applications Systems Manager
- mryoung&cheshire-med.com
-39937
- Netspective
- Shahid Shah
- shahid.shah&netspective.com
-39938
- Inca Networks Inc.
- Mike Bradley
- mike.bradley&incanetworks.com
-39939
- Lansing Community College
- John Hendzel
- hendzej&lcc.edu
-39940
- Oregon Scientific Global Distribution Limited
- Jacky Tsoi
- jackytsoi&oregonscientific.com
-39941
- KUZUMI Electronics,Inc.
- Motonobu Suzuki
- motonobu_suzuki&kuzumi-denshi.co.jp
-39942
- eWorld Technologies Ltd.
- Wu Zhaohui
- wzh&tomtaw.com.cn
-39943
- University of Santo tomas
- Mario M. Raagas
- mmraagas&mnl.ust.edu.ph
-39944
- shenzhen Catic Bit Communication Technology Co.LTD
- Rao ZhiJian
- raozj_bt&caticsz.com.cn
-39945
- Tecblazer
- Chris Cheng
- chris.cheng&tecblazer.com
-39946
- EV Group GmbH
- Buttinger, Josef
- it-policies&evgroup.com
-39947
- B PLUS TV a.s.
- Jiří Otisk
- j.otisk&btv.cz
-39948
- Ping Communication
- Fredrik Gratte
- fredrik&pingcom.net
-39949
- Beijing Arrays Medical Imaging Technology Development Co.,td
- sunlei
- sunlei&arrays.com.cn
-39950
- Altersign, LLC.
- Vitalii Prikazchik
- info&altersign.com.ua
-39951
- Town Sports International
- John Adams
- ssladmin&town-sports.com
-39952
- SecurePKI
- Dennis van den Oever
- d.vandenoever&securepki.com
-39953
- SERVICE DEPARTEMENTAL D INCENDIE ET DE SECOURS DE LA DROME
- Emmanuel JUGGERY
- directeur-adjoint&sdis26.fr
-39954
- RWetc. s.r.o.
- Zdenek Roh
- rwetc&rwetc.com
-39955
- SMP Bank OJSC
- Artem Bychkov
- abychkov&smpbank.ru
-39956
- Vale
- Renato Orgito
- renato.orgito&vale.com
-39957
- Columbus Regional Heathcare System, Inc.
- Terry Richards
- terry.richards&crhs.net
-39958
- Withings
- Damien Lesgourgues
- damien.lesgourgues&withings.com
-39959
- CIRCUTOR, SA
- Mr. Bernat García
- bgarcia&circutor.es
-39960
- cktsoi.com
- Jacky Tsoi
- jacky&tsoi.me
-39961
- Nicira, Inc.
- Rob Enns
- rpe&nicira.com
-39962
- Kern Scientific Co.
- David L. Kern, Jr.
- david&kernscientific.com
-39963
- AGCO Corporation
- Richa Bhootra
- Richa.Bhootra&agcocorp.com
-39964
- EIDEN Co,Ltd
- ISAMU OHNO
- i-ohno&eiden-gp.co.jp
-39965
- Trans Sped
- Viky-Teodora Manaila
- viky.manaila&transsped.ro
-39966
- Luminoso, LLC
- Jason B. Alonso
- jalonso&lumino.so
-39967
- Ethersex Project
- Stefan Siegl (project founder & maintainer)
- maintainer&ethersex.de
-39968
- Toya Technologies Inc.
- Dustin Little
- dlittle&toyatech.net
-39969
- United Energy Pakistan Limited
- Mohammad Abdul Qadir
- qadirma&uep.com.pk
-39970
- HandySolutions (CJSC)
- Evgeny Nikitin
- enikitin&handybank.ru
-39971
- Shenzhen Skyee Optical Fiber Communication Technology Ltd.
- wuminhua
- wuminhua&skyee.com.cn
-39972
- TUV RHEINLAND IBERICA SA
- Enrique Mora
- enrique.mora&es.tuv.com
-39973
- Janmedia Interactive Sp. z o.o.
- Bartosz Kondek
- bkondek&janmedia.pl
-39974
- Garland Technology LLC
- Jerry Dillard
- jerry.dillard&garlandtechnology.com
-39975
- COGNEX
- Michael Miller
- mike.miller&cognex.com
-39976
- Southwestern University
- Todd K. Watson
- tkw&southwestern.edu
-39977
- Deltix, Inc.
- Gene Florintsev
- gflorin&deltixlab.com
-39978
- Daniel Theodoro Consultoria em Informatica Ltd.
- Daniel Theodoro
- daniel&theodoro.com.br
-39979
- ConicIT Ltd.
- Tetelman Chen
- chen&conicit.biz
-39980
- Nocturnal Aviation
- Jeff Grossman
- jeffg&NocturnalAviation.net
-39981
- OPT SP CO.,LTD.
- Yutaka Yamada
- cti-solution&optsp.co.jp
-39982
- Icareus Ltd
- Mikko Karppinen
- support&icareus.com
-39983
- Project Engineering srl
- Nannini Nicola
- nicola.nannini&proeng.it
-39984
- Shenzhen Process Tech.Co.,Ltd.
- Kelven Li
- kelven11&163.com
-39985
- GRZ IT Center Linz GmbH
- Ralph Hosp
- ralph.hosp&grz.at
-39986
- Florida Department of Education
- Ted Duncan
- Ted.Duncan&fldoe.org
-39987
- Pathmaker Group, Inc.
- Jerry Castille
- jerry.castille&pathmaker-group.com
-39988
- Reserved
- Removed 2012-07-30
- ---none---
-39989
- LINE SEÑALIZACIÓN ELECTRÓNICA S.L.
- JESÚS JIMÉNEZ MUÑOZ
- jjimenez&line.es
-39990
- Center of Information Technologies of Volgograd region (http:\\citvo.ru)
- Kucherenko Vladimir Alexandrovich
- admin&citvo.ru
-39991
- Aitia International Inc.
- Endre Cseszkó
- ecseszko&aitia.ai
-39992
- davidhowland.com
- David Howland
- pen&metalliqaz.fastmail.fm
-39993
- Owl Forestry
- Mikko Kokkonen
- mikko&owlforestry.com
-39994
- Echo360
- charles mckinster
- hostedops&echo360.com
-39995
- Plymouth University
- John Horne
- snmp-admin&plymouth.ac.uk
-39996
- sys4 AG
- Patrick Ben Koetter
- pk&sys4.de
-39997
- Netsumo Ltd
- Richard Smith
- noc&netsumo.com
-39998
- Beijing Lanxum New Technology
- Jason Hu
- hutiejun&lanxum.com
-39999
- Prodo Telecom (An OT Company)
- Daniel Antonio Sánchez Cortés
- d.sanchez&oberthur.com
-40000
- Kapsi Internet-käyttäjät ry
- Juho Juopperi
- jkj&kapsi.fi
-40001
- WineSOFT
- Jonathan Jaeha Ahn
- bglee&winesoft.co.kr
-40002
- Open System Co., Ltd.
- Jonson Doong
- jonson&opensys.com.tw
-40003
- Karjalan Paperi Oy
- Juha Hartikainen
- juha.hartikainen&karjalanpaperi.fi
-40004
- Cargo Service Nord GmbH
- André Bürger
- a.buerger&csn-logistik.de
-40005
- 5p. GmbH & Co. KG
- Lukas Sassl
- l.sassl&5partner.de
-40006
- Reevex, LLC
- Snehal Vashi
- svashi&revventures.com
-40007
- Universal Research Solutions, LLC
- Matt Allen
- iana&oberd.com
-40008
- Virtual Connect Technologies, Inc
- Benjamin Hathaway
- ben.hathaway&virtualconnect.net
-40009
- Oasiswork SARL
- Nicolas Brisac
- contact&oasiswork.fr
-40010
- MSMC Informatica Ltda
- Mario Dias
- mario.dias&msmc.com.br
-40011
- Fripost
- Guilhem Moulin
- guilhem&fripost.org
-40012
- Hatomi Sp. z o.o.
- Tomasz Macioszek
- tomasz.macioszek&hatomi.pl
-40013
- lintloaf.net
- Juha Nyholm
- oid-admin&lintloaf.net
-40014
- Progress Rail Services Inspection & Information Systems
- Steven Kirby
- skirby&progressrail.com
-40015
- Hüttner & Werfling Softwareentwicklung GbR
- Stefan Werfling
- info&hw-softwareentwicklung.de
-40016
- MAS Technology
- Shawn Peters
- manager&mastechnology.ca
-40017
- ARKS LLC
- Alexandr V. Koshkin
- dit&arks.ru
-40018
- JSC Bank Vologzhanin
- Dmitry Ogarkov
- admins-group&bankvl.ru
-40019
- Isbak A.S.
- Abdullah Karadag
- akaradag&isbak.com.tr
-40020
- Gutenberg Networks
- Sebastien CALARD
- sebastien.calard&gutenberg-networks.com
-40021
- Viscount Systems Inc
- David Lee
- david&viscount.com
-40022
- Sirius Software, Inc.
- Gary Gregory
- gary&sirius-software.com
-40023
- LLC " NPF DUKON"
- Oleg Poterpeev
- root&dukon.ru
-40024
- iNovo Broadband, Inc.
- Jesse Still
- jstill&inovobb.com
-40025
- Tym3
- James Carpenter
- jcarpenter&tym3.com
-40026
- Société d’Informatique et de Systèmes
- Sebastien FLEURY (System Administrator)
- contact.iana&sis-france.com
-40027
- Aki Network
- Akifumi Shiroma
- aki&gp7.info
-40028
- TAKOTA, LTD
- Shakalov Andrey
- ice&doka.tc
-40029
- leadtone
- gexingyu
- gexingyu&leadtone.com
-40030
- RADOM, s.r.o.
- Jaroslav Hokeš
- development&radom.eu
-40031
- Oblako10, Ltd.
- Vadim Ponomarev
- vadim&oblako10.ru
-40032
- Ultra Electronics, Precision Air & Land Systems
- Richard Collins
- Richard.Collins&ultra-pals.com
-40033
- Radio Design
- Caspar Lucas
- caspar.lucas&radiodesign.eu
-40034
- DuraSpace
- Andrew Woods
- awoods&duraspace.org
-40035
- CellSec Inc.
- Erik Dahl
- admin&cellsec.com
-40036
- Vertafore PLM
- Josh Zook
- jzook&vertafore.com
-40037
- Inceptum d.o.o
- Zvonimir Balog
- zvonimir.balog&inceptum.hr
-40038
- Livestream, LLC
- Justin Stallard
- devops&livestream.com
-40039
- MySysAdmin.DE
- Peer Dampmann
- dampmann&mysysadmin.de
-40040
- Stichting IFCAT Foundation
- Wilco Baan Hofman
- treasury&ifcat.org
-40041
- ООО «Электронные Офисные Системы (проектирование и внедрение)» /OOO “Elektronnye Ofisnye Sistemy (proektirovanie i vnedrenie)/
- Alexey Kravchenko
- eosreg&eos.ru
-40042
- Stiftelsen Chalmers Studentbostäder
- Carl-Martin Pershed
- calmar&csbnet.se
-40043
- NewPace Technology Development Inc.‎
- Josh Warren
- josh.branchwarren&newpace.com
-40044
- PC-Doctor, Inc.
- Colin Corr
- spammagnet&pc-doctor.com
-40045
- Nexenta Systems, Inc.
- Peer Dampmann
- peer.dampmann&nexenta.com
-40046
- CREDIT EUROPE BANK Ltd.
- Ivan Bauzhadze
- ivan.bauzhadze&crediteurope.ru
-40047
- Korex Networks s.r.o.
- Vladimir Vydra
- vvydra&korex.sk
-40048
- Information Display Company
- Sam Mallicoat
- smallicoat&gmail.com
-40049
- Red Bend
- Elad Tamari
- elad.tamari&redbend.com
-40050
- Microtech Andrzej Sokulski
- Andrzej Sokulski
- info&micro-tech.com.pl
-40051
- RELEASE14
- Josip Djuricic
- jd&release14.org
-40052
- Energie AG Oberösterreich Data GmbH
- Christian Aichinger
- christian.aichinger&energieag.at
-40053
- Sistemas Avanzados de Diseño
- Ildefonso Moreno
- ildefonso&sadsl.es
-40054
- 4UR
- ILyong Kim
- hostmaster&4ur.cc
-40055
- Yuchengtech
- MingRui Li
- limr&yuchengtech.com
-40056
- AccuBeat Ltd
- Yishay Eliav
- yishay.e&accubeat.com
-40057
- Reserved
- Removed 2012-06-26
- ---none---
-40058
- Vitaliy Tokarev
- Vitaliy Tokarev
- vitaliy.tokarev&gmail.com
-40059
- Datagram, Inc.
- Jae Kim
- jae&datagram.com
-40060
- Leo-Li com.
- Leo Li
- leo.wenlu&gmail.com
-40061
- Bay Area Hospital
- Brenda Curtner
- brenda.curtner&bayareahospital.org
-40062
- Trevor and Emily Mouat King
- W. Trevor King
- wking&tremily.us
-40063
- Qintara, Inc.
- Joseph W. Daigle
- oid&qintara.com
-40064
- Optima Lab srl
- Daniele Arduini
- admin&optimalab.it
-40065
- Larch networks
- Alex Cheskis
- alexk&larch-networks.com
-40066
- Saliens Information Systems Ltd.
- Marko Pecic
- mpecic&saliens.com.hr
-40067
- LinTech JSC
- Alexander Kochetkov
- akochetkov&lintech.ru
-40068
- The Venus Project
- Roxanne Meadows
- admin&thevenusproject.com
-40069
- enprovia Software Engineering s. r. o.
- Patrik Csokas
- oid.admin&enprovia.com
-40070
- RetailNext
- Nathan Mueller
- nate&retailnext.net
-40071
- P. St. Onge
- P. St. Onge
- pete.stonge&utoronto.ca
-40072
- techlab.jp (formerly 'scminfo.net')
- Shotaro Chiba
- schiba&techlab.jp
-40073
- Lutron Electronics Company, Inc
- Jeremy Neyhart
- jneyhart&lutron.com
-40074
- Energy Solutions Ltd.
- Vladimir Todorov Fuchedzhiev
- vendor&borsabg.com
-40075
- SPL-Xdemat
- Philippe RICARD
- philippe.ricard&spl-xdemat.fr
-40076
- SiFox
- Alexey Larin
- alexey.larin&sifox.ru
-40077
- Austrian Red Cross
- Markus Hnatek
- markus.hnatek&roteskreuz.at
-40078
- Open Grid Computing
- Jes Nielsen
- jes&opengridcomputing.com
-40079
- Electronic Systems Protection, Inc.
- Robert Dawley
- radawley&espei.com
-40080
- IIHE - Inter-university Institute for High Energies
- Gilles De Lentdecker
- gdelentd&ulb.ac.be
-40081
- Shanghai Myway Technology, Inc.
- Simon Tian
- simonT&mywayinfo.com
-40082
- NuGardt Software UG (haftungsbeschränkt)
- Kevin Gardthausen
- kevin&nugardt.com
-40083
- Accelerated Concepts, Inc.
- Tom Butts
- tom.butts&accelecon.com
-40084
- Ingalls Memorial Hospital
- Susan Bjork
- sbjork&ingalls.org
-40085
- Stage Tec GmbH
- R. Harder
- org.adm&stagetec.com
-40086
- Inworx Group
- Javier Schamber
- itadministrator&inworx.com
-40087
- NIDO Informatica
- Cassio Jose de Jesus
- cassio&nido.com.br
-40088
- Voixtel Telecom
- Melcon Moraes
- ianaoid&voixtel.com.br
-40089
- NetAmbit Infosource & E-services Pvt. Ltd.
- Vijay Sharma
- vijay.sharma&netambit.in
-40090
- Netline Communications Technologies Ltd
- Harel Bahaloul
- harel&netline.co.il
-40091
- A.C.T.I.C asbl
- Kenny Louveaux
- info&actic.be
-40092
- Wiwynn Corporation
- Zong Bing, Wu
- bing_wu&wiwynn.com
-40093
- Zhuhai Seine Technology Co., Ltd
- WangDan
- wangdan&pantum.com
-40094
- SecuEnv
- Zhou Li
- zhou.li&secuenv.com
-40095
- G4S Engenharia e Sistemas S. A.
- Mario Dias
- mario.dias&br.g4s.com
-40096
- ROICX
- matt Hu
- hul&roicx.com
-40097
- WorldPay
- Vladimir Jirasek
- vladimir.jirasek&worldpay.com
-40098
- update software
- Christoph Macheiner
- christoph.macheiner&update.com
-40099
- North Carolina Healthcare Exchange
- Himabindu Bolisetty
- bindu&careevolution.com
-40100
- TechNet
- Richard Dols
- richard&technetgroup.nl
-40101
- EPB Fiber Optics
- Mike Cathey
- iana-poc&epbinternet.com
-40102
- Pinger, Inc.
- Jo Rhett
- jorhett&pinger.com
-40103
- Fashion Days
- David Shulman
- David.Shulman&fashiondays.ch
-40104
- BamseNet GmbH
- Mr. Rico Koerner
- service&bamsenet.de
-40105
- APN Promise S.A.
- Konrad Sagala
- konrad.sagala&promise.pl
-40106
- Polara Engineering, Inc.
- Brad Whitney
- bwhitney&polara.com
-40107
- Michael Reschly
- Michael Reschly
- michael&reschly.com
-40108
- Amber Buddha
- Steve Gillam
- steveg&amberbuddha.com
-40109
- SigAlgo Technology Ltd
- Roger McCalman
- snmp-pen&sigalgo.com
-40110
- EGNATIA
- Athanasios Bakalis
- athanasios.bakalis&group-egnatia.gr
-40111
- Deloitte Services & Investments nv
- Christophe Castelein
- ccastelein&deloitte.be
-40112
- Ethernix
- Amaury Darsch
- amaury&ethernix.com
-40113
- Blue Mountain Health System
- Cheryl Heffelfinger
- cheffelfinger&blmtn.org
-40114
- Guavatech
- John Cheeseman
- johnc&guavatech.com
-40115
- V & B Ingenieria S.A. de C.V.
- Asterio Valenzuela Delfin
- ventas.vybingenieria&gmail.com
-40116
- DCO4 Sp. z o.o.
- Jan Szumiec
- jan&linkedlist.co.uk
-40117
- Faculté des Sciences et Technologies - Université de Lorraine
- Samson Bisaro
- Samson.Bisaro&univ-lorraine.fr
-40118
- CNPC LOGGING Co.Ltc
- chen xiaolei
- chenxiaolei2002&126.com
-40119
- Terralink LLC
- Grudtsin Andrey
- support&terralink.ru
-40120
- Pamlock AB
- Johannes Hassmund
- johannes&pamlock.com
-40121
- Methodia Inc
- Gerard Hovanessyan
- gerard.hovanesyan&methodia.com
-40122
- Beijing Cyber Stone Information Technology Corp. Ltd.
- Yunfei xiang
- xiangyf&cyber-stone.com
-40123
- Hangzhou dunchong Technology Co.,Ltd.
- lupeihong
- lupeihong&dunchongnet.com
-40124
- Kernkraftwerk Leibstadt AG
- Wälti Stefan
- ServiceDesk&kkl.ch
-40125
- Travelfusion Ltd
- Seth Tunstall
- seth&travelfusion.com
-40126
- real virtual GmbH
- Ralph Borowski
- rborowski&real-virtual.com
-40127
- Monolith Software
- Mike Gent
- mgent&monolith-software.com
-40128
- Beijing Photon-Byte Technology Co., Ltd.
- David.Hua
- softpro&vip.163.com
-40129
- MarLukKi Centre
- Marcin Kiejzik
- marlukki&marlukki.eu
-40130
- Asguard Networks
- David Mattes
- mattes&asguardnetworks.com
-40131
- Nuvem Networks Inc
- Ricki Evans
- operations&nuvemnet.com
-40132
- Telemedia Argentina S.A.
- Tenorio, Leandro
- ltenorio&telemediala.com
-40133
- FIX TELECOM
- Ismael Nunez
- a.nunez&fix.com.do
-40134
- Nexum, Inc
- Michael Fread
- mfread&nexuminc.com
-40135
- Spawn Labs, Inc.
- Paul Gautreaux
- PaulGautreaux&gamestop.com
-40136
- Comviva Technologies Limited
- Shadaksharayya Aravind Hiremath
- shadaksharayya.ha&comviva.com
-40137
- University of Pardubice
- Lukas Slansky
- lukas.slansky&upce.cz
-40138
- DataNET21 Solutions GmbH
- Eckhard Schulz
- admin&datanet21.de
-40139
- GRN Serveis Telematics
- Jordi Fabregas
- iana&grn.es
-40140
- AIRTEL ATN
- Frank O'Connor
- frank.oconnor&airtel-atn.com
-40141
- InterConnect Brasil
- Luis Marcelo de Almeida Nogueira
- NIC&INTER.BZ
-40142
- MODULISTIC.NET
- Pablo Costa
- in.Ko9exohk.Vee2UoQu.iana&modulistic.net
-40143
- CookieConcepts
- Jeroen S. van de Hoef
- info&cookieconcepts.nl
-40144
- Understanding SharePoint LLC
- Bjørn Furuknap
- furuknap&gmail.com
-40145
- STRYME GmbH
- Clemens Czepe
- office&stryme.com
-40146
- Ascent Communication Technology
- Vincent Nguyen
- support&ascentcomtec.com
-40147
- IT-Technology GmbH
- Johann Steinwendtner
- steinwendtner&it-technology.at
-40148
- Thorsten Pape
- Thorsten Pape
- tpape&pape-clan.de
-40149
- PFA Pension
- Dennis Wiberg-Jørgensen
- dwi&pfa.dk
-40150
- Kenium
- Robert Breton
- rbreton&kenium.com
-40151
- G²mobility SA
- Lionel CAUSSE
- lionel.causse&g2mobility.com
-40152
- Trimtab.ca
- Alex Kwiatkowski
- iana_oid&trimtab.ca
-40153
- Abraxas Informatik AG
- Florian Meister
- florian.meister&abraxas.ch
-40154
- North Caucasian Federal University
- Yuri Serdyukov
- YSerdyukov&ncstu.ru
-40155
- Groundhog Technologies
- Shaun Chang
- shaun&ghtinc.com
-40156
- WVNET GmbH
- Stefan Berger
- support&wvnet.at
-40157
- Medicalgorithmics
- Tomasz Mularczyk
- t.mularczyk&medicalgorithmics.com
-40158
- Gage Marketing Group, LLC
- Kevin Borchers
- netadmin&gage.com
-40159
- Paul Reinhart AG
- Heinz Hiltebrand
- h.hiltebrand&reinhart.ch
-40160
- NJVC
- Peter Jeanmougin
- Peter.Jeanmougin&njvc.com
-40161
- Canal Street Securities
- Luis Nogueira
- canalstreet&lmn.com.br
-40162
- McCarthy Tetrault
- Hugo Ethier
- hethier&mccarthy.ca
-40163
- Kamidama Breedables
- Grandma Bates
- grandma.bates.sl&gmail.com
-40164
- OOO Avtomatizirovannye sistemy (Automated Systems, LTD)
- Andrew Glukhov
- not_x&mail.ru
-40165
- morrow.me.uk
- Ben Morrow
- ben&morrow.me.uk
-40166
- Omega Tech Consulting Group LLC
- Matt Chamberlain
- mchamberlain&otcgcorp.com
-40167
- NS Reizigers B.V.
- Morten Minke
- morten.minke&ns.nl
-40168
- Etransmedia Technology
- Ben Steadwell
- Ben.Steadwell&etransmedia.com
-40169
- 3xA Security AB
- Stefan Santesson
- stefan&aaa-sec.com
-40170
- NP Networks, Inc.
- Stephen Liang
- kuochuan&npnetworks.com
-40171
- HF. Radio Communication Technology Co., Ltd
- Paky.Du
- paky.pc.du&radiotech.cn
-40172
- Closed joint stock company “StandarTelecom”
- Stanislav Vasin
- standartelecom&gmail.com
-40173
- Hoermann Solutions
- Hoermann Johann
- support&hans-hoermann.de
-40174
- BlueFinch
- Richard Verkaik
- info&bluefinch.com
-40175
- RIPAS
- Pavel Karasin
- karasin&ripas.ru
-40176
- Consulfem
- Jorge Berti
- jberti&consulfem.com
-40177
- Right&Above
- Vasyl Rublyov
- enterprise&rightandabove.com
-40178
- Noolitic
- Sylvain Deceuninck
- sylvain.deceuninck&noolitic.biz
-40179
- aplicacionesYredes.com
- Rafa Couto
- rafa&aplicacionesyredes.com
-40180
- HTL Kaindorf - Mechatronik
- Manfred Steiner
- sx&htl-kaindorf.ac.at
-40181
- CyberCenter S.A.
- Max Weinstein
- admin&cybercenter.cl
-40182
- Sichuan Cable TV Network Co., Ltd.
- Gangliu
- liugang&catvgd.com
-40183
- con terra GmbH
- Uwe König
- u.koenig&conterra.de
-40184
- NovInTeh LLC
- Maksim Balabanov
- noc&novinteh.com
-40185
- Esa Unggul University
- didi supriyadi
- didi&esaunggul.ac.id
-40186
- DA/Page, LLC
- Greg Ansley
- support&dapage.net
-40187
- Aclima, Inc.
- Stan Hu
- stanhu&aclimalabs.com
-40188
- United States Infrastructure Corporation
- Jason Bush
- noc&usicinc.com
-40189
- Charlton Labs
- Chuck Charlton
- ccharlton&gmail.com
-40190
- JCL-eCommerce GmbH
- Martin Köckinger
- martin.koeckinger&jcl-ecommerce.com
-40191
- Lylid Net Ltd.
- Key Aavoja
- key.aavoja&lylid.net
-40192
- ITQuality
- Chris Knudsen
- cfk&itq.dk
-40193
- Institute of Electronic Music and Acoustics
- Johannes Zmölnig
- noc&iem.at
-40194
- WaveCloud Corporation
- David Van Duzer
- dvd&wavecloud.com
-40195
- Zantek Pty. Ltd.
- Rowan Taubitz
- rowan&zantek.com.au
-40196
- SANTOS
- Adam Nye
- unix.support&santos.com
-40197
- JSC CROC POVOLZHYE
- Radaev Konstantin
- k.radaev&volga.croc.ru
-40198
- Movirtu
- Durgesh O Mishra
- durgesh&movirtu.com
-40199
- Szechenyi Istvan SZKI
- Laszlo Herman
- school&szimki.sulinet.hu
-40200
- Anext
- Ing. Peter Petrilak
- peter.petrilak&anext.sk
-40201
- Nexiway
- Adel Mezibra
- adel.mezibra&nexiway.com
-40202
- Primetech Ltd.
- Kiselevich Maxim
- info&primetech.ru
-40203
- Golder Associates
- Tom Laitinen
- tlaitinen&golder.com
-40204
- Availity, L.L.C.
- Susan Eveland
- seveland&availity.com
-40205
- Jackson Family Enterprises
- Jason Womack
- itadmin&kjmail.com
-40206
- minivi
- David Santoso
- davidsantoso&minivi.com
-40207
- Gerrit Beine GmbH
- Gerrit Beine
- mail&gerritbeine.com
-40208
- S.J.M. Steffann
- Sander Steffann
- sander&steffann.nl
-40209
- Hiroshima University
- Kouji Nishimura
- kouji&hiroshima-u.ac.jp
-40210
- Matt-J.co.uk
- Matt Johnson
- mattkj09&gmail.com
-40211
- SHENZHEN MEGMEET ELECTRICAL CO.,LTD
- Yongru An
- anyongru&megmeet.com
-40212
- PHV - Confluances
- DREUX Vincent
- vincent.dreux&confluances.fr
-40213
- University College Northen Denmark
- Jacob-Steen Madsen
- itdrift&ucn.dk
-40214
- ICEANS, Inventive Computer Engineering and Network Service
- Ahmed Waqas Abid
- owner&iceans.com
-40215
- ITF-EDV Froeschl GmbH
- Armin Riedl
- internet&itf-edv.de
-40216
- Global Traffic Technologies, LLC
- Chad Chryst
- chad.chryst&gtt.com
-40217
- Bertel S.p.A.
- Alessandro Maggi, Gianpietro Germi
- notifier&bertel.it
-40218
- Witzig The Office Company AG
- Stephan Brenner
- stephan.brenner&witzig.ch
-40219
- Hirtle, Callaghan & Co.
- Josh Rose
- jrose&hirtlecallaghan.com
-40220
- Northwestern Michigan College
- Neil Streeter
- nstreeter&nmc.edu
-40221
- Infrastructures Technologiques Gallium
- Antoine Reid
- areid&Gallium-IT.com
-40222
- Family Home Care & Hospice, Inc.
- Mark Manley
- Mark.Manley&familyhomecare.org
-40223
- molotov.ro
- Szabolcs Borbely
- bbszabi&yahoo.com
-40224
- Willem4Ever BV
- Willem Eradus
- pen-request-owner&eradus.eu
-40225
- Image Data Systems
- Robin Kearney
- robin&image-data.com
-40226
- xNet Solutions Inc. (formerly 'xNetBox Solutions')
- Tony Huang
- support&xnetec.com
-40227
- Digital One
- Daniel Mahoney
- dmahoney&d1tv.net
-40228
- Valley ComputerWorks, Inc. DBA Paragus Strategic I.T.
- Delcie Bean
- dbean&paragusit.com
-40229
- VizionR
- Pierre Souchay
- pierre.souchay&vizionr.fr
-40230
- Medikon Polska Sp. z o.o.
- Artur Wajgel
- a.wajgel&medikon.pl
-40231
- Baptist St. Anthony's Health System
- Micah Campbell
- Micah.Campbell&bsahs.org
-40232
- Michel Messerschmidt
- Michel Messerschmidt
- oid&michel-messerschmidt.de
-40233
- Sanoma Media Netherlands B.V.
- Marco Lebbink
- marco.lebbink&sanomamedia.nl
-40234
- Andreas Zieschang
- Andreas Zieschang
- a.zieschang&arcor.de
-40235
- Stadt Dortmund
- Sebastian Franz
- sfranz&stadtdo.de
-40236
- Diputació de Barcelona
- Miguel Angel Murillo Viñuales
- murillovm&diba.cat
-40237
- The Office of the Government Chief Information Officer of the Government of the Hong Kong Special Administrative Region
- Dennis Ng
- dccng&ogcio.gov.hk
-40238
- RoutoMessaging
- Marko Dukanac
- marko&routotelecom.com
-40239
- Gruppo Editoriale L'Espresso spa
- Stefano Malossini
- s.malossini&gruppoespresso.it
-40240
- OpenSky.com
- Friedrich Seifts
- systems&opensky.com
-40241
- Ogden Technology Corporation
- Andy Lan
- andy.lan&ogdentec.com
-40242
- GNS Science
- Robert Pearce
- r.pearce&gns.cri.nz
-40243
- 3U HOLDING AG
- Erik Schoenau
- nmc&3u.net
-40244
- SDAMO Group, LLC
- Aleksey V. Shepelev
- shepelev&sdamo.ru
-40245
- Böning Automationstechnologie GmbH & Co. KG
- Marten Müller
- marten.mueller&boening.com
-40246
- OOO "Laboratoriya Trehmernogo Zreniya"
- Alexander Zinchuk
- azinchuk&3detection.ru
-40247
- GGS German Graduate School of Management and Law
- Thomas Heiligenmann
- thomas.heiligenmann&ggs.de
-40248
- NPO Telecom JSC
- Rodion Zobnin
- okb&npotelecom.ru
-40249
- Vargyas Networks, Inc D/B/A Maxxwave
- Brian Vargyas
- brianv&balticnetworks.com
-40250
- Fiber Connections Inc.
- Jordan Slater
- jslater&fiberc.com
-40251
- coretanium.net
- Leon de Jager
- ldejager&coretanium.net
-40252
- Lonnie Mandigo
- Lonnie Mandigo
- lonnie.mandigo&gmail.com
-40253
- RunStone Technology Co., Ltd.
- Julian Ding
- julian&runstone.com
-40254
- Particle Software Industries
- David McIlwraith
- david.mcilwraith&particlesoft.org
-40255
- Zhiway Technologies CO., Ltd.
- yi Huang
- huangyi&zhiway.com.cn
-40256
- EFG Bank SA
- Daniel Rieille
- it.security&efgbank.com
-40257
- Arcontia Technology AB
- Karl Thorén
- karl.thoren&arcontia.se
-40258
- REWAG Regensburger Energie- und Wasserversorgung AG & Co KG
- Josef Fischer
- j.fischer&rewag.de
-40259
- BruderhausDiakonie Stiftung
- Paul Landenberger
- paul.landenberger&bruderhausdiakonie.de
-40260
- Mongoose Metrics, LLC.
- Charles H. Liggett, Jr.
- chuck.liggett&mongoosemetrics.com
-40261
- KeenSystems B.V.
- Rob janssen
- r.janssen&keensystems.eu
-40262
- Airbnb, Inc.
- Chris Ballard
- domain&airbnb.com
-40263
- Bank of Latvia
- Arnis Gigulis
- arnis.gigulis&bank.lv
-40264
- CIRTEC Medical Systems, LLC
- Erik Morgan
- IANA-Admin&CIRTECMed.Com
-40265
- Derbyshire County Council
- Rob Ellis
- robert.ellis&derbyshire.gov.uk
-40266
- zxc ltd
- David Barrett
- dave&zxc.co.nz
-40267
- Anite Travel Ltd.
- Geoff Gomez
- geoff.gomez&anite.com
-40268
- KRZN
- Daniel van Soest
- dvs&krzn.de
-40269
- Kenshoo ltd
- omer brandis
- omer.brandis&kenshoo.com
-40270
- Flexagon GmbH
- Anh Ngoc Nguyen
- nn&flexagon.de
-40271
- Peconic Bay Medical Center
- Rosemarie Lampitok
- rlampitok&pbmedicalcenter.org
-40272
- SLAC National Accelerator Laboratory
- Dan Van Winkle
- dandvan&slac.stanford.edu
-40273
- XeroAtom Group Ltd
- Edward Alekxandr
- edward.alekxandr&xeroatom.com
-40274
- Spire Payments Holdings S.a.r.l.
- Pedro Gruenholz
- Pedro.Gruenholz&spirepayments.com
-40275
- blackholearchives.org
- Fletch Hogan
- operations&blackholearchives.org
-40276
- Navy Federal Credit Union
- Baskaran Arumugam
- baskaran_arumugam&navyfederal.org
-40277
- Cloudant, Inc.
- Joan Touzet
- joant&cloudant.com
-40278
- Ocean-County Monmouth Amateur Radio Club, Inc. (OMARC)
- Martin A Flynn
- domain&n2mo.org
-40279
- HAMILTON Bonaduz AG
- Daniel Bombis
- pcsupport&hamilton.ch
-40280
- Sovtest-Internet Limited Company
- Roman Dmitriev
- admin&sovtest.ru
-40281
- Bottega Verde Srl
- Cristian Testa
- cristian.testa&bottegaverde.com
-40282
- NSB AS
- Stig B. Sivertsen
- stig.sivertsen&nsb.no
-40283
- Soporcel, Sociedade Portuguesa de Papel, SA
- Luis Cavaleiro
- luis.cavaleiro&portucelsoporcel.com
-40284
- Wavex Technology Ltd
- Russell Tester
- infrastructure&wavex.co.uk
-40285
- British Columbia International School, Bangkok
- Peter Bell
- pbell&bcisb.net
-40286
- Siclic SARL
- Nicolas Brisac
- contact&siclic.fr
-40287
- Perfectly Posh LLC
- Christian Sieber
- christian&perfectlyposh.com
-40288
- Delta Power Solutions India Pvt Ltd
- Sunil Chavan
- sunil.chavan&delta.co.in
-40289
- TransLattice, Inc.
- Michael Lyle
- protocols&translattice.com
-40290
- Government of Dane County, Wisconsin
- Kevin Hammond
- hammond.kevin&countyofdane.com
-40291
- Central National Australia Pty Ltd
- Scott Hordern
- scott&cennat.com.au
-40292
- Mekelle University
- Eric Lembregts
- eric&lembregts.eu
-40293
- TG Byte Software GmbH
- Thilo-Alexander Ginkel
- tg&tgbyte.de
-40294
- OOO "Jewelry House "Kristall"
- Shmurgalkin Oleg
- postmaster&kristall-shop.ru
-40295
- dogado Internet GmbH
- Sascha Schiller
- ssc&dogado.de
-40296
- stocka
- Geoffrey GUERET
- geoffrey&stocka.net
-40297
- Hytera Communications Co.,Ltd.
- Yiyang Zhong
- zhongyiyang&hytera.com
-40298
- Thad Touchton
- Thad Touchton
- thad.touchton&gmail.com
-40299
- Peter Janke
- Peter Janke
- peter&pjml.ca
-40300
- Radialogica, LLC
- Bryan Cool
- bryan&radialogica.com
-40301
- Esis Enerji ve Elektronik San. Tic. A.S.
- Emrah AYDIN
- emrah.aydin&esis.com.tr
-40302
- Oozlum
- Chris Smith
- chris.smith&oozlum.co.uk
-40303
- Anix Networks, Inc.
- Anthony Lin
- anthony.lin&anixnetworks.net
-40304
- Wacker Neuson SE
- Thomas Herzberger
- thomas.herzberger&wackerneuson.com
-40305
- Eletrosul Centrais Elétricas S/A
- Luís Gustavo Coelho
- internet.suporte&eletrosul.gov.br
-40306
- Pointstore
- Mark shepstone
- mark&pointstore.co.za
-40307
- Great River Technology
- Paul Grunwald
- pgrunwald&greatrivertech.com
-40308
- Fundația Ceata
- Tiberiu C. Turbureanu
- tct&ceata.org
-40309
- UNICART EOOD
- Iliya Bazlyankov
- iliya.bazlyankov&unicart.bg
-40310
- Cumulus Networks, inc
- JR Rivers
- jrrivers&cumulusnetworks.com
-40311
- ECHOES Technologies SAS
- Florent Poinsaut
- florent.poinsaut&echoes-tech.com
-40312
- Denbridge Marine Ltd.
- Jonathan Brady
- software&denbridgemarine.com
-40313
- goRill Solutions
- Stefan Kaderabek
- kaderabe&gorill.at
-40314
- Universidad Europea de Madrid
- Juan Carlos Corbacho
- jcarlos.corbacho&uem.es
-40315
- M&L Solution
- haeyeon, hwang
- hyhwang&mnlsolution.com
-40316
- VastRiver Technology Co.,Ltd.
- Zheng Haiou
- zhenghaiou&vastriver.com
-40317
- Alltech Group
- Nikita Filimonov
- it&alltech.ru
-40318
- Budikom
- Mateusz Skała
- mateusz.skala&budikom.net
-40319
- Canto GmbH
- Thomas Schleu
- tschleu&canto.com
-40320
- Convene Networks
- Kevin Dauster
- kdauster&convenenetworks.com
-40321
- Vitroconnect GmbH
- Florian Lohoff
- flo&vitroconnect.de
-40322
- Jan Axelsson - DICOM2USB
- Jan Axelsson
- axelsson.jan&gmail.com
-40323
- Big Nerd Ranch
- Eric Jeffers
- ejeffers&bignerdranch.com
-40324
- The Woman's Christian Association of Jamestown, N.Y.
- Laura Josephson
- laura.josephson&wcahospital.org
-40325
- Leon Gaming Limited
- Vladislav Artemyev
- vl&leongaming.com
-40326
- Expertize
- Fabrice Bucher
- fbr&lanexpert.ch
-40327
- Metal Expert LLC
- Dmitry Demchenko
- d.demchenko&metalcourier.com
-40328
- Yunohost
- Adrien Beudin
- yunohost&yunohost.org
-40329
- Tanaza S.r.l.
- Sebastiano Bertani
- sebastiano.bertani&tanaza.com
-40330
- KuVision Digital Technology Ltd
- Steve Freeman
- sfreeman&kuvision.com
-40331
- Micronica srl
- Massimo Tomasi
- massimo.tomasi&micronicasrl.it
-40332
- Syn-Apps LLC
- Ian Pitts
- ipitts&syn-apps.com
-40333
- Enthought
- Ognen Duzlevski
- ognen&enthought.com
-40334
- Mercury Security Corp.
- Michael Serafin
- michael.s&mercury-security.com
-40335
- RMTech
- Moon-il, Han
- hmi&rmtechs.co.kr
-40336
- Mericle Technologies, LLC.
- Brian P. Mericle
- brian&mericletechnologies.com
-40337
- Centers for Medicare and Medicaid Services
- Gregory Kreymer
- gregory.kreymer&cms.hhs.gov
-40338
- aizoOn Consulting s.r.l.
- Antonio Rosina
- support-it&aizoon.it
-40339
- Anovio AG
- Frank Flachenecker
- frank.flachenecker&anovio.de
-40340
- miersch-IT
- Holger Miersch
- hostmaster&miersch-it.de
-40341
- Dalmartin Ltd
- Steven Jupp
- hostmaster&dalmartin.com
-40342
- CronLab Ltd
- Markus Nilsson
- markus.nilsson&cronlab.com
-40343
- E-Sales Soluções de Intergração
- Cassio Cristiano
- cassio.cristiano&esales.com.br
-40344
- Falk Online
- Sascha Falk
- sfalk&falk-online.eu
-40345
- JRE & Associates, Inc.
- Jonathan Wilson
- Support&jreitsolutions.com
-40346
- Belarusian Universal Commodity Exchange
- Valery Niachai
- uc&butb.by
-40347
- DUIT GmbH
- Marc Stermann
- marc.stermann&duit.de
-40348
- Snmart Grid Norway AS
- Morten William Hansen
- morten.hansen&smartgridnorway.no
-40349
- EICSYS GmbH
- Wojciech Jalmuzna
- contact&eicsys.eu
-40350
- Health Sciences Libraries Consortium
- Alan Simon
- simon&hslc.org
-40351
- XO Communications LLC
- Maeve O'Connor
- security&xo.com
-40352
- American Electric Power
- Jon C. Kidder
- jckidder&aep.com
-40353
- Cirrus Software Engineering LLC
- James MacLennan
- cirrus.sw&gmail.com
-40354
- Suttle Apparatus
- Arif Ahsan
- arifa&commsysinc.com
-40355
- Domantic
- Sebastien Lobstein
- sebastien.lobstein&domantic.com
-40356
- IT-CE
- Philippe GUEUGNON
- philippe.gueugnon&it-ce.fr
-40357
- Michael Buth - IT Consulting
- Michael Buth
- michael.buth&mbuth.de
-40358
- Mercado Libre S.R.L.
- Agustin Gomez Roca
- agustin.gomezroca&mercadolibre.com
-40359
- Zeppelin GmbH
- Daniel Ghita
- daniel.ghita&zeppelin.com
-40360
- IP Total Software S.A
- Andrés Ortiz
- infraestructura&iptotal.com
-40361
- Xenya d.o.o.
- Peter Reinhardt
- peter.reinhardt&xenya.si
-40362
- Cambridge Communication Systems
- Iftah Bratspiess
- iftah&web-silicon.com
-40363
- Galambos Dániel
- Daniel Galambos
- galambos.dani&gmail.com
-40364
- Trinity Desktop Project
- Timothy Pearson
- kb9vqf&pearsoncomputing.net
-40365
- Weichi Consulting LLC
- Marvin Wolfthal
- maw&weichi.com
-40366
- SHadrinsky Telephonny Zavod (SHTZ)
- Alexey Roznin
- prog8&shtz.shadrinsk.net
-40367
- Elcom International Pvt Ltd
- Mahesh Mudholkar
- mc.mudholkar&elcom-in.com
-40368
- DATA-1 Ltd.
- Andrew Ivanov
- ivanov&data-1.net
-40369
- gruppenrichtlinien.de
- Mark Heitbrink
- mark&gruppenrichtlinien.de
-40370
- Socialbakers a. s.
- Martin Homolka
- martin&socialbakers.com
-40371
- Forcare B.V.
- Rick Riemer
- info&forcare.nl
-40372
- Celab Ltd
- Keith Harrison
- keith.harrison&celab.co.uk
-40373
- HealthForce Partners
- James von Seggern
- webmaster&healthforcepartners.com
-40374
- ODYA Bilgisayar ve Teknoloji Urunleri San. ve Tic. Ltd. Sti.
- Ali YAZICI
- ali.yazici&odya.com.tr
-40375
- Bayport Financial Services
- GIdeon Serfontein
- Gideon.Serfontein&bayport.co.za
-40376
- Astorex Corp
- Artem Gavrilov
- admin&astorex.com
-40377
- Independence School District
- Jace Ferguson
- jace_ferguson&isdschools.org
-40378
- Innovative Technology Solutions, Inc.
- Bradley Smith
- bradley.smith&its-florida.net
-40379
- Lower Bucks Hospital
- Steven Kane
- kanes&lowerbuckshospital.org
-40380
- Arkologic, Inc.
- Hung Lu
- hungl&arkologic.com
-40381
- Golub Capital
- Doug Prine
- dprine&golubcapital.com
-40382
- Klimat prof Co.
- Vladimir Losev
- pkiinfo&klimat-prof.ru
-40383
- CAME CANCELLI AUTOMATICI SPA
- GIOVANNI CEGLIA
- gceglia&came.com
-40384
- Association of friends of japanese culture (SPJK)
- Jana Křečková
- yarche&spjk.cz
-40385
- Rose Datasystems Inc.
- Xiaoli Gu
- violee&rosedata.com
-40386
- Instituto Nacional de Segurança Social
- Alexandre Francisco Marengula
- alex&inss.gov.mz
-40387
- Mediatree SAS
- Olivier MOLERO
- olivier.molero&mediatree.fr
-40388
- Eurosel
- Arif Sultanov
- arif&eurosel.az
-40389
- Facultad Regional Cordoba Universidad Tecnológica Nacional
- Daniel Forte
- staff&computos.frc.utn.edu.ar
-40390
- Shale-Inland Holdings, LLC
- Navid Gardooni
- navid.gardooni&shaleinland.com
-40391
- Ecks Three Ltd
- Eric Benoit
- eric&ecksthree.com
-40392
- MDV Soft
- Dmitry Mushta
- dmushta&gmail.com
-40393
- Phantasy Concepts
- Garry L. Hurley Jr.
- garry.hurley.jr&gmail.com
-40394
- Optogan Group
- Dima Fedorov
- dimajf&optogan.com
-40395
- 25-Seven Systems
- Geoff Steadman
- gsteadman&25-seven.com
-40396
- LUMINO Licht Elektronik GmbH
- Ulrich Görden
- ugoerden&lumino.de
-40397
- Piratepartei Lëtzebuerg
- Sven Clement
- sven.clement&piratepartei.lu
-40398
- Scout Trading LLC
- Peter Bisroev
- registrar&scout-trading.com
-40399
- Huneed Technologies Co.,Ltd
- Junghee Han
- jhhan&huneed.com
-40400
- CortijoDelRio.net
- Daniel Diaz
- ddiaz&cortijodelrio.net
-40401
- VidScale, Inc.
- John Webb
- jwebb&vidscale.com
-40402
- Cryptonector, LLC
- Nicolas Williams
- nico&cryptonector.com
-40403
- Detached
- Jan-Dirk Bosman
- penadmin&detached.co.za
-40404
- Vestiaire Collective
- Guillaume Moreau
- guillaume&vestiairecollective.com
-40405
- UAB Fortevento
- Žilvinas Kundrotas
- info&fortevento.lt
-40406
- Cadis
- Chris Swinnen
- chris.swinnen&cadis.be
-40407
- Smartbox Experience Limited
- Alexander Schumann, Colin Cashin, Daniel Marin
- Certification.Authority&smartbox.com
-40408
- Philip Cullen Ltd
- Philip Cullen
- registrar&philipcullen.co.uk
-40409
- YEEJOIN (BEIJING) TECHNOLOGY COMPANY LIMITED
- Luo Hongli
- luohongli&yeejoin.com
-40410
- boxEleven
- Eric Horne
- iana&box11.org
-40411
- PaansNet
- Marcel Paans
- info&paans.net
-40412
- Option Computers Ltd
- Nick de Smith
- nick.desmith&dealhub.com
-40413
- Concordus Applications Inc.
- Jeremiah Sheckler
- jeremiah&concordusapps.com
-40414
- New England Baptist Hospital Inc.
- William Presley
- wpresley&nebh.org
-40415
- symThoughts
- Nic de Sousa
- nic&bayport.co.za
-40416
- Hectronic GmbH
- Georg Ziaja
- postmaster&hectronic.com
-40417
- SUNSEA OPMEX Technologies Co., Ltd.
- Daniel.Yushaoqing
- daniel.yushaoqing&opmextech.com
-40418
- NAG LLC
- Dmitry Samodelko
- dmitry&nag.ru
-40419
- PAWI Verpackungen AG
- Thomas Gehrke
- licenses&pawi.ch
-40420
- Tuxum Secure Systems, S. L.
- Pedro Echanove
- pedro.echanove&tuxum.com
-40421
- adorsys GmbH & Co. KG
- Thomas Krieger
- admin&adorsys.de
-40422
- Solutionary, Inc.
- Steve Madel (Systems Department)
- SteveMadel&solutionary.com
-40423
- Osceola County Board of County Comissioners
- David Lomen
- sysadmin&osceola.org
-40424
- TJ Samson Community Hospital
- Jessica Hoy
- jhoy&tjsamson.org
-40425
- Laird Technologies
- Tim Carney
- timothy.carney&lairdtech.com
-40426
- Unified Communications Inc.
- Satoshi Kajiwara
- pjtmg&unified.co.jp
-40427
- Kodofon JSC
- Sergey Ryazanov
- s.ryazanov&kodofon.vrn.ru
-40428
- SwiftServe Limited.
- Bryan Amesbury
- bma&swiftserve.com
-40429
- Utoolity GmbH
- Steffen Opel
- biz.iana&utoolity.net
-40430
- ZinuSoft S.A. de C.V.
- Francisco Javier Zuluaga Ramírez
- francisco.zuluaga&zinusoft.com
-40431
- Dracal technologies inc.
- Raphael Assenat
- raph&dracal.com
-40432
- SquareOne Networks, Inc
- Logan Owen
- logan&s1network.com
-40433
- Census Digital Inc.
- Doug Bascombe
- dougbascombe&censusdigital.com
-40434
- Huntington National Bank
- Beth Mellen
- beth.mellen&huntington.com
-40435
- Cyara Solutions Pty Ltd
- Luan Tran
- luan&cyarasolutions.com
-40436
- dba Glen Black
- Glen Black
- glen.h.black&gmail.com
-40437
- Polcom Sp. z o.o.
- Boguslaw Juza
- hosting&polcom.com.pl
-40438
- Otto-Friedrich-Universität Bamberg
- Frank Schreiterer
- frank.schreiterer&uni-bamberg.de
-40439
- I M Skaugen SE
- Alexander Andstø
- alexander.andsto&skaugen.com
-40440
- restfarbe.de
- Jan Peschke
- jan&restfarbe.de
-40441
- DarkDNA
- Alex Hanselka
- alex&darkdna.net
-40442
- OnApp
- Carsten Sjoerup
- carsten&onapp.com
-40443
- Computer Rehab
- Jeff Taylor
- jeff&computerrehab.us
-40444
- ETEK TECHNOLOGY SHENZHEN CO., LTD.
- Wilson Law
- wilson&etek-td.com
-40445
- TRADERS S.A.
- REY Jean-Luc
- rey&traders.fr
-40446
- Ordbogen A/S
- Peter Christensen
- pch&ordbogen.com
-40447
- FAVITE Inc.
- Rill Chang
- rill_chang&favite.com
-40448
- Ratocsystems, Inc.
- Masakazu Kondo
- kondoh&ratocsystems.com
-40449
- Max-Planck-Institut fuer extraterrestrische Physik
- Rainer Sigl
- sigl&mpe.mpg.de
-40450
- University of Ottawa Heart Institute
- Jared Strydhorst
- jstrydhorst&ottawaheart.ca
-40451
- Allens, Inc.
- Michael Young
- myoung&allens.com
-40452
- Care Team Connect Inc.
- Greg Kuhnen
- gkuhnen&careteamconnect.com
-40453
- School District #59 (Peace River South)
- Kenneth McCleary
- kmccleary&sd59.bc.ca
-40454
- Jaguar Network
- Kevin Polizzi
- engineering&jaguar-network.com
-40455
- TMM.CX
- Hein-Pieter van Braam
- hp&tmm.cx
-40456
- Radio Systems Ltd
- Andy Wood
- andy.wood&radio-systems.co.uk
-40457
- Zen Entertainment, Inc.
- John Earle
- iana&zenentertainment.com
-40458
- East Tennessee State University
- Ryan Seale
- sealerd&mail.etsu.edu
-40459
- Paymark Limited
- Michael Chester
- iss&paymark.co.nz
-40460
- SHENZHEN SUPER RICH TECHNOLOGY CO.,LTD
- wu minhua
- wuminhua&sairuq.com
-40461
- Mirzo Ulugbek Professional College of Informatics
- Gimadiev Gayrat
- engineer&mupki.uz
-40462
- CIDEON
- Mariusz Zienkiewicz
- mariusz.zienkiewicz&cideon.com
-40463
- TROY Group, Inc.
- Jay Pearson
- jpearson&troygroup.com
-40464
- a4ESSOR SAS
- Christian SERRA
- christian.serra&thalesgroup.com
-40465
- ZETA6 Computer Systems LLC
- Nazim Can Bedir
- nazim.can.bedir&zeta.sx
-40466
- West Monroe Partners, LLC
- Jeff Anderson
- it.accounts&westmonroepartners.com
-40467
- Netronome Systems, Inc.
- Roelof du Toit
- roelof.dutoit&netronome.com
-40468
- LSE Leading Security Experts GmbH
- Stefan Pietsch
- stefan.pietsch&lsexperts.de
-40469
- Arkansas Heart Hospital
- Shannon Jacobson
- shannon.jacobson&arheart.com
-40470
- Ecodota - Ecolo federal asbl.
- BOLLINGH Sébastien
- hostmaster&ecolo.be
-40471
- Zimory GmbH
- Peter Caron
- peter.caron&zimory.com
-40472
- Synapture
- Lior COHEN
- lior.cohen&synapture.fr
-40473
- Chiang Mai International School, CMIS
- Bradley Shank
- admin&cmis.ac.th
-40474
- ALAGAS NETWORK PTE LTD
- Soragan Ong
- soragan.ong&alagasnetwork.com
-40475
- Earthworks inc. (formerly 'iWeave inc.')
- Yoshinobu HOSAKA
- yoshinobu.hosaka&iweave.jp
-40476
- Winnertel
- Jiongfeng Wu
- jiongfeng.wu&winnertel.com
-40477
- geomedia
- lichunhua
- lichunhua&geomedia.com.cn
-40478
- LevelOne Communications GmbH
- Joseph Naduthottam Babu
- joseph.nb&levelone-tssa.com
-40479
- 40mm Holdings, LLC
- Billy Gaines
- billy&bpong.com
-40480
- OTS Logistics Group, Ltd.
- Michael Gomez
- michael.gomez&vanguardlogistics.com
-40481
- MiMedia.com, Inc.
- Bob Eckert
- bob&MiMedia.com
-40482
- Pure Storage
- Scott Sewall
- scott&purestorage.com
-40483
- Volta electronics srl
- Daniele Menozzi
- solar&voltaelectronics.com
-40484
- Auroville Foundation
- Coriolan Weihrauch
- coriolan&auroville.org.in
-40485
- Online.net
- Manfred Touron
- mtouron&online.net
-40486
- State of Nevada Dept of Employment Training and Rehabilitation
- Lani Smith
- lssmith&nvdetr.org
-40487
- Timesafer Inc.
- Xiaohai Lu
- luxiaohai&timesafer.com
-40488
- Staiger, Schwald & Partner AG
- Stefan Mattenberger
- stefan.mattenberger&ssplaw.ch
-40489
- Mintlab B.V.
- M.K. Ootjers
- michiel&mintlab.nl
-40490
- The Dot Net Factory, LLC
- Patrick Parker
- patrick&empowerID.com
-40491
- Uceem Networks Inc.
- Dan Axtman
- dan.axtman&uceem.com
-40492
- Balsec GmbH
- Radim Svejda
- rsvejda&balsec.ch
-40493
- Toyota Adria d.o.o.
- Jure Lakota
- jure.lakota&toyota.si
-40494
- Ditenity Inc.
- Piyush Jain
- piyush&identicate.com
-40495
- ADVANCEDDIGITAL INC.
- Phil Oxrud
- phil&advanceddigital.ca
-40496
- Shanghai Aerospace Automobile Electromechanical Co.,LTD
- Yu Tan
- yu.tan&ht-saae.com
-40497
- CROSS Zlin a.s.
- Marián Bullo
- bullo&cross.cz
-40498
- Third Sight Pte. Ltd.
- Teo Kok Hoon
- kokhoon&thirdsight.net
-40499
- SOCEL VISIONOR
- CONION Jacques
- jacques.conion&visionor.fr
-40500
- DAN electronic Ltd
- Stefan Jordanov
- stefan&infoserv.bg
-40501
- MAF Consulting Ltd
- Michael Fyles
- michael.fyles&mafconsulting.com
-40502
- AT Consulting
- Alexey Efremov
- aefremov&at-consulting.ru
-40503
- University of Louisville Hospital
- Michael Boston
- mikebos&ulh.org
-40504
- Kamil Bujniewicz
- Kamil Bujniewicz
- kamil.bujniewicz&gmail.com
-40505
- OUTSCALE
- Laurent SEROR
- laurent.seror&outscale.com
-40506
- NSC corpration
- shigeharu seki
- shigeharu.seki&nscjapan.co.jp
-40507
- TravelSky Technology Limited
- Feng Yu
- fengyu&travelsky.com
-40508
- Dynamic Telecom
- Calin Serbanescu
- calin&dynamictelecom.net
-40509
- VoipSwitch
- Łukasz Nowak
- lukas&voipswitch.com
-40510
- Fourth Sector Innovations
- Piseth Kem
- pisethkem&gmail.com
-40511
- DoGi Enterprise
- Ben Deligato
- deligato&gmail.com
-40512
- Hamid Saeed
- Hamid Saeed
- hamid.saeed&virgin.net
-40513
- weifang mingji technology co., LTD
- Jiayulin
- jiayl&mingjitech.com
-40514
- Shenzhen Howah Network Communication Co., Ltd
- Jianhui Gu (samcool)
- samcool&howah.com.cn
-40515
- Boivie Inc
- Victor Boivie
- victor&boivie.com
-40516
- Staffordshire County Council
- Chris Williams
- chris.williams&staffordshire.gov.uk
-40517
- Shenzhen Herotel Tech. Co.,Ltd.
- Li Min
- lim&herotel.cn
-40518
- Foresight
- Yariv Hazony
- yariv&foresight-air.com
-40519
- sprd.net AG
- Thomas Abraham
- it-einkauf&spreadshirt.net
-40520
- Novareto
- Christian Klinger
- ck&novareto.de
-40521
- Metacloud, Inc
- Morgan Fainberg
- morgan.fainberg&metacloud.com
-40522
- myoscience Inc
- Corydon Hinton
- chinton&myoscience.com
-40523
- Eau De Web
- Cristian Romanescu
- cristian.romanescu&eaudeweb.ro
-40524
- Realex Payments
- Owen O Byrne
- owen.obyrne&realexpayments.com
-40525
- Business Intelligence Direct Limited
- Will Jones
- will&bidmarketing.co.uk
-40526
- REGISTRO PUBLICO DE PANAMA
- Ana Raquel Ulloa
- firma&rp.gob.pa
-40527
- Bank of Canada
- Martin Ladouceur
- ladm&bank-banque-canada.ca
-40528
- Kod Integrations, LLC
- Christopher Lemieux
- clemieux&kodintegrations.com
-40529
- Massxess
- Patrick Timmers
- ptimmers&massxess.nl
-40530
- Agence universitaire de la Francophonie
- Jean Christophe André
- jean-christophe.andre&auf.org
-40531
- Dr. Stolyarenko Medical Center
- Leonid Krivoshein
- it&stolyarenko.com
-40532
- Zeptonics Pty. Ltd.
- Lindsay Powles
- lindsay.powles&zeptonics.com
-40533
- Voice of Russia
- Aleksey Sachenko
- adminmail&ruvr.ru
-40534
- Signamax, a.s.
- Martin Jech
- martin.jech&signamax.eu
-40535
- SVYAZKOMPLEKTSERVICE, LLC
- SIARHEI SOICH
- skservis&list.ru
-40536
- Wieland-Werke AG
- Axel Bergerhoff
- axel.bergerhoff&wieland.de
-40537
- Null Ventures LLC
- Jeremy L. Gaddis
- jeremy&nullventuresllc.com
-40538
- Seal Maker Produktions- und Vertriebs GmbH
- Georg Herr
- g.herr&seal-maker.com
-40539
- Aquto
- Scott Klein
- sklein&aquto.com
-40540
- LPAR2RRD
- Pavel Hampl
- support&lpar2rrd.com
-40541
- MecSys
- Isaac Mechi
- isaac&mecsys.com.br
-40542
- SDL Fredhopper
- Nikolay Kalev
- sysadmin&fredhopper.com
-40543
- Udruga P.O.I.N.T.
- Hrvoje Belani
- kontakt&udruga-point.hr
-40544
- Impedance Mismatch LLC
- Marc Petit-Huguenin
- marc&petit-huguenin.org
-40545
- Insight Enterprises, Inc.
- David Eckles
- CMSInfrastructure_Engineer&Insight.com
-40546
- Tentixo NG AB
- Lars Mårelius
- morre&tentixo.com
-40547
- Aadvanced Filtering Services
- Roman Rybalko
- iana-oid-pen&advancedfiltering.net
-40548
- id3as
- Adrian M Roe
- adrian&id3as.co.uk
-40549
- synchroad.com
- David Dick
- davidd&synchroad.com
-40550
- OZtell
- David Chung
- admin-iana&oztell.com
-40551
- Bootable Cluster CD
- Skylar Thompson
- skylar.thompson&gmail.com
-40552
- Salcininku rajono savivaldybes administracija
- Valerijus Sinkevicius
- valerijus.sinkevicius&salcininkai.lt
-40553
- "Bulgartabac-Holding" AD
- Stefan Veselinov
- it&bulgartabac.bg
-40554
- Tecom
- Alexander Kabanov
- kabanov&tecomgroup.ru
-40555
- Garz & Fricke GmbH
- Bernd Mierzowski
- bernd.mierzowski&garz-fricke.com
-40556
- Moving Possibilities LLC
- Michael Eisenman
- meisen321&gmail.com
-40557
- Triodos Bank NV
- Michel van Kooi
- michel.vankooi&triodos.nl
-40558
- Elecmor
- Dāvis Mosāns
- elecmor&elecmor.lv
-40559
- BPCE
- Philippe Sarafoglou
- philippe.sarafoglou&bpce.fr
-40560
- Norsat International Inc.
- Michael Schefter
- mschefter&norsat.com
-40561
- Alloy Computer Products (Aust) Pty Ltd
- Scott Young
- scott.young&alloy.com.au
-40562
- Open Broadcast Systems Ltd
- Kieran Kunhya
- kierank&ob-encoder.com
-40563
- Christine Steup Unternehmensberatung
- Christine Steup
- matthias.steup&arcor.de
-40564
- StrikeAd LCC
- Michael Dewhirst
- admin&strikead.com
-40565
- Berufsbildende Schulen Technik
- Andreas Loosen
- andreas.loosen&bbst-clp.de
-40566
- Forte Automation System, Inc.
- Scott Alcock
- alcocks&forteautomation.com
-40567
- Melodon Software Inc.
- Fred Saberian
- Fred.Saberian&MelodonSoftware.com
-40568
- Tredegar Corporation
- Adrian H. Amos
- adrian.amos&tredegar.com
-40569
- HERNIS Scan Systems AS
- Audun Skjelnes
- pen&hernis.no
-40570
- RFOptic
- Oz Abramson
- oz&rfoptic.com
-40571
- SRT Communications, Inc.
- Travis Post
- travisgp&srttel.com
-40572
- Carlos Domingues
- Carlos Domingues
- geral&captemp.com
-40573
- vklop.com
- Dusan Debeljak
- dd&vklop.com
-40574
- Ukrainian Computer Laboratory ltd.
- Denis Goncharoff
- denis.goncharoff&ucl.com.ua
-40575
- Touro Infirmary
- Greg Barker or Octavio Estorino
- estorinoo&touro.com
-40576
- NovaTech, LLC
- Matthew Mizer
- novatechlenexa&gmail.com
-40577
- KOCH
- Thomas Koch
- office&t-koch.com
-40578
- Computing Point Limited
- Dr. Paul C. Caesar PhD Comp Sci.
- paul.caesar&computingpoint.ltd.uk
-40579
- Vistula University
- Bartosz Kozlowski
- oid&vistula.edu.pl
-40580
- GlobalSite UK
- James Burton
- james.burton&globalsiteuk.co.uk
-40581
- Big Dutchman ltd.
- Dmitry V. Solovev
- itsupport&bigdutchman.ru
-40582
- iBlocks Ltd.
- Tim Brewer
- tim.brewer&iblocks.co.uk
-40583
- Federal Service State Registration, Cadastre and Cartography in Moscow
- Salavat Gayfulin
- sggayfulin&mosregistr.ru
-40584
- Petersburg State University of Railways Transport
- Eugene Oparin
- OnapuH&mail.ru
-40585
- Box UK, Limited
- Matt Willsher
- matt.willsher&boxuk.com
-40586
- Rocky Mountain College
- Andrew Niemantsverdriet
- andrew&rocky.edu
-40587
- Neptec OS, Inc.
- David Cheng
- davidc&neptecos.com
-40588
- TrikeApps Pty Ltd
- Matthew Fallshaw
- operator&trikeapps.com
-40589
- Indochina Telecommunication Technology JSC (ITT)
- Hau Tran
- hau.tran&itt.vn
-40590
- ClickBridge Inc
- Ryan King
- Ryan.king&clickbridge.net
-40591
- Avateq Corp.
- Alex Babakhanov
- alex_b&avateq.com
-40592
- IDK CORPORATION
- Yasu Shimizu
- shimizu&idk.co.jp
-40593
- Iberdrola USA Management Corporation
- Iberdrola USA Network Security / Neal Garber
- network.security&iberdrolausa.com
-40594
- ilogixx Limited
- Christian Becker
- info&ilogixx.de
-40595
- NB Software
- Klaus Breining
- klaus_breining&nbsoftware.de
-40596
- ComTec!Fütterer
- Mathis Fütterer
- info&comtecs.de
-40597
- NetProbe, Llc
- Sergey Eremenko
- s.eremenko&net-probe.ru
-40598
- Geopost UK Ltd
- Simon Bonnck
- simon.bonnick&geopostuk.com
-40599
- Quick OID Registry (quick-oid.org) (Roman Rybalko)
- Roman Rybalko
- iana-pen&quick-oid.org
-40600
- EWA Ltd
- Greg Illsley
- greg.illsley&ewa.ltd.uk
-40601
- Emaris Limited
- Paul Brissenden Hemstock
- paul&emaris.com
-40602
- Vytautas Magnus University
- Egmantas Girnis
- egmantas&puga.vdu.lt
-40603
- Harvard Pilgrim Health Care
- John Whippen
- john_whippen&harvardpilgrim.org
-40604
- Geosync Microwave, Inc.
- Mohammad Zahidi
- mzahidi&geosyncmicrowave.com
-40605
- Younes Sleep Technologies
- Robert Keizer
- robert&younessleeptechnologies.com
-40606
- Scripps Health
- Matt Ferguson
- ferguson.matthew&scrippshealth.org
-40607
- Menara Netowrks
- Chris Hewitt
- chewitt&menaranet.com
-40608
- Bars NPK Ltd.
- Borodkin Victor
- support&bars-perm.ru
-40609
- Nordstrom
- Michael Schell
- michael.schell&nordstrom.com
-40610
- Docstoc, INC
- Dmitry Kireev
- dmitryk&docstoc.com
-40611
- Key Software Develpment
- Javier Silva Pérez
- javier.sp1209&gmail.com
-40612
- SoftPro S.r.l.
- Cristiano Montanari
- info&softpro.it
-40613
- Instituto Tecnológico de Informática
- Sergio Talens Oliag
- iana&iti.es
-40614
- GUANGDONG EAST POWER CO.,LTD.
- Simo He
- soft&eastups.com
-40615
- Olympus Corporation of the Americas
- Narayanan R Pillai
- Narayanan.Pillai&olympus.com
-40616
- Pragmatica, LLC
- Scott Sobotka
- iana&pragmatica.us
-40617
- WiMacTel, Inc
- Andrew Preece
- apreece&wimactel.com
-40618
- Intechne Tecnologia da Informação
- Michel Araujo Neves
- michel&intechne.com.br
-40619
- First Gulf Bank PJSC
- Sanjeev Mulay
- sanjeev.mulay&fgb.ae
-40620
- Welcome Italia spa
- Giorgio Luchi
- giorgio.luchi&welcomeitalia.it
-40621
- Centrum Holdings, s.r.o.
- Michal Kucera
- michal.kucera&centrumholdings.com
-40622
- Covea Insurance plc
- Mike Croxford
- penadmin&coveainsurance.co.uk
-40623
- Morgowicz Inc
- Nicholas Morgowicz
- nick&morgowicz.com
-40624
- Willops Management
- Vasile Lacatus
- vasile.lacatus&willops.com
-40625
- SBO "Centre of Information Technology of the Orenburg region"
- Karaseva Natalya
- ngka&mail.orb.ru
-40626
- Web de Confianza Andaluza S.Coop.And.
- María de los Ángeles Ojeda Rojas
- info&webconefe.com
-40627
- Jefferson Regional Medical Center
- Toni Fox
- toni.fox&jeffersonregional.com
-40628
- FormPipe Software A/S
- Thomas Larsen
- thomas.larsen&formpipe.com
-40629
- Lexington, S.L.
- Daniel Paniagua
- soporte&lexington.es
-40630
- Crexendo, Inc.
- Larry Low
- llow&crexendo.com
-40631
- AVA Communications
- Payam Shabanian
- shabanip&gmail.com
-40632
- Trüb AG
- Gergely Karoly
- help&trueb.ch
-40633
- "Scan Engineering Telecom" CJSC
- Eugene Litvinov
- pro&setdsp.ru
-40634
- Willway, S.A.
- Rui Monteiro
- rmonteiro&willway.pt
-40635
- opvizor GmbH
- Dennis Zimmer
- info&opvizor.com
-40636
- Use System Engineering B.V.
- Marco ten Thije
- marco.tenthije&usetechnology.nl
-40637
- Deliservice Punnitse & Säästä Oy
- Teemu Haapoja
- teemu.haapoja&punnitse.fi
-40638
- BSC Nutrition LTD
- Kestutis Rasimavicius
- info&bulksupplementscompany.co.uk
-40639
- PROFI-UC Ltd.
- Andrew Matyazh
- support&profi-uc.ru
-40640
- Polisnab JSC
- Maxim Y. Evdolyuk
- evdolyuk&polisnab.ru
-40641
- Dierichsweiler Unternehmens- und Prozessberatung GmbH
- Oliver Magnus
- o.magnus&dup.de
-40642
- Gardado s.r.o.
- Petr Votava
- developement&gardado.com
-40643
- Broadpeak
- Jacques Le Mancq
- credential.manager&broadpeak.tv
-40644
- Formanek
- Robert Formanek
- robert&formanek.org
-40645
- UFAL - Universidade Federal de Alagoas
- Diogo Cabral de Almeida
- diogo&nti.ufal.br
-40646
- iNet Telecoms Ltd (Voipfone)
- Lee Rose
- lee&voipfone.co.uk
-40647
- HELVETAS Swiss Intercooperation
- Manfred Berger
- Manfred.Berger&helvetas.org
-40648
- AREAL
- Arnaud Prevot
- Arnaud.Prevot&areal.fr
-40649
- Acumentrics Corporation
- Donald Charlantini
- dcharlantini&acumentrics.com
-40650
- InterMedia Enterprises
- Paul Kosinski
- noc&iment.com
-40651
- Beijing Huasun Unicreate Technology LTD.
- Bo Yang
- yangbo&bhunetworks.com
-40652
- Illinois Wesleyan University
- Michael Zehr
- root&iwu.edu
-40653
- Bittoo
- Henrik Dige Semark
- hds&bittoo.net
-40654
- Consórcio de Informática na Gestão Pública Municipal
- Rodrigo Valceli Raimundo
- rodrigo&ciga.sc.gov.br
-40655
- Nanjing Wlanease Co., Ltd.
- Forrest Zhang (https://wlanease.com)
- forrest&wlanease.com
-40656
- State independent уestablishment Tula region center of information technologies
- Andrea Gorbut
- andrea.gorbut&tularegion.ru
-40657
- experience4you GmbH
- Thomas Loch
- thomas.loch&experience4you.de
-40658
- Delta Meccanica S.r.l.
- Gianluca Magistrato
- g.magistrato&deltameccanica.com
-40659
- Oregano Systems – Design & Consulting GesmbH
- Günther Genser
- genser&oregano.at
-40660
- Southern Record Distributors Ltd.
- Szabolcs Rumi
- szabolcs&srd.co.uk
-40661
- Airwave Solutions
- Dipesh Mistry
- dipesh.mistry&airwavesolutions.co.uk
-40662
- NISZ Co.
- Károly Juhász
- juhasz.karoly&nisz.hu
-40663
- Kupson spol. s r.o.
- Martin Kupec
- martin.kupec&kupson.cz
-40664
- Noblis, Inc.
- Kyle Villano
- Kyle.Villano&noblis.org
-40665
- Akron Group
- Lukin Alexandr
- it&akronplus.ru
-40666
- Zito Media
- Brian Empson
- brian.empson&zitomedia.com
-40667
- BRToken Ind. e Com. de Produtos Eletrônicos Ltda.
- Alexandre Cagnoni
- alex&brtoken.com.br
-40668
- NEC New Zealand Ltd
- Dave Clarke
- cs&nec.co.nz
-40669
- Microlab RF Ltd
- Mike Bush
- m2c2ab&btinternet.com
-40670
- Lanka Government Information Infrastucture
- Nimal Ratnayake
- nimalr&noc.gov.lk
-40671
- Radinet Communications Inc.
- Ray Chen
- ray.chen&radinetcomm.com
-40672
- Fiber SenSys, Inc.
- David E Hollingsworth
- david.hollingsworth&fibersensys.com
-40673
- Unigine Inc.
- Sergey S. Kovalev
- sysadmin&unigine.com
-40674
- SAIT (formerly 'SAIT Zenitel')
- Koen Verdijck
- koen.verdijck&sait.net
-40675
- geiger BDT GmbH
- Maximilian Barth
- barth&geiger-bdt.de
-40676
- Microsemi Corporation
- Ming-Hoe Kiu
- ming-hoe.kiu&microsemi.com
-40677
- RKF Engineering Solutions, LLC
- Brian Sipos
- BSipos&rkf-eng.com
-40678
- Nexura Internacional S.A
- Melissa Vela
- melissa.vela.coral&gmail.com
-40679
- Centre Hospitalier de Fougeres
- Yannick HERVE
- yannick.herve&ch-fougeres.fr
-40680
- La Trobe University
- Benji Wakely
- unixsup&latrobe.edu.au
-40681
- ELNO
- Guillaume Baron
- g.baron&elno.fr
-40682
- Thanis.org
- Bill Thanis
- differential.karma&gmail.com
-40683
- Open Grid Europe GmbH
- Holger Kayser
- pen-admin&open-grid-europe.com
-40684
- Appdynamics
- Boris Livshutz
- it&appdynamics.com
-40685
- Kafinated Kode, Inc
- Rishi Pidva
- rishi&kafinatedkode.com
-40686
- Issac Systems Inc.
- Harry Lee
- harry&issacnet.com
-40687
- ezamber
- Pawel Tomulik
- ptomulik&ezamber.pl
-40688
- Kum and Go
- Chris Sweeney
- CJS&KumandGo.com
-40689
- Digital Processing Systems
- Muhammad Ramzan
- ramzan.farooq&dpskw.com
-40690
- MBTechnology Ltd
- Emilian Mieilica
- emilm&mbtelecom.ro
-40691
- Crosstel Inc
- John Maliakal
- john.maliakal&crosstel.com
-40692
- The ZAP Group
- John Zaitseff
- J.Zaitseff&zap.org.au
-40693
- Inter Vehicle Communication
- Simon Hsieh
- simon&interconnect.com.tw
-40694
- antrou
- HongCai Wang
- hongcai.wang&antrou.com
-40695
- BitPlanet Inc.
- Poornaprajna Udupi
- poorna&bitplanet.io
-40696
- IDENETWORK
- Benoit MBOUBATEUVAWE
- benoit&idenetwork.fr
-40697
- Alma Manu Oy
- Mikko Junnila
- mikko.junnila&almamanu.fi
-40698
- TeliSwitch Solutions
- Shaike Zalitzky
- shaikez&teliswitch.com
-40699
- LexSoft, LTD
- Alexandr A. Larin
- iana&cpp.su
-40700
- M-Cube S.p.A.
- Paolo Ferracin
- p.ferracin&mcube.it
-40701
- Vitera Healthcare Solutions
- Michael Rosile
- mike.rosile&viterahealthcare.com
-40702
- San Mateo Medical Center
- Kathleen Boutte Foster
- kbfoster&co.sanmateo.ca.us
-40703
- Hokkaido Tracks
- Simon Walter
- simon.walter&hokkaidotracks.com
-40704
- Amstar Creative Ltd
- Charles Chin
- service&amstar.tw
-40705
- Signal Processing Devices
- Patrik Thalin
- patrik.thalin&spdevices.com
-40706
- AGMF Prévoyance Union de mutuelles soumise au livre II du Code de la Mutualité - Filiale de GPM
- Dominique RIBAUTE
- dominique.ribaute&gpm.fr
-40707
- Aleturo Group
- Stefan Unterweger
- 91.95744&chiffre.aleturo.com
-40708
- Rhythm Engineering, LLC
- Steve Penrod
- snmp&rhythmtraffic.com
-40709
- Jiaheng Medical Technology Co., Ltd.
- Dai Songshi
- ss5309&yahoo.com
-40710
- Grasshopper
- Kevin Cormier
- kcormier&grasshopper.com
-40711
- DSTA S.L.
- Jon Noble
- jnoble&dsta-sl.com
-40712
- DHCPCD Project
- Roy Marples
- roy&marples.name
-40713
- Migame.org
- Alex Morgenegg
- alex&migame.org
-40714
- Accelera Mobile Broadband, Inc.
- Aakash Sahai
- aakash.sahai&acceleramb.com
-40715
- Innerworkings
- Justin Baker
- jbaker&inwk.com
-40716
- Kyle Brantley
- Kyle Brantley
- kyle&glidegaming.com
-40717
- Conde Nast
- Erick Cano
- TSOITSecurity&condenast.com
-40718
- RelySys Technologies India Private Limited
- Praveen Kumar Bijadi
- praveen&relysys.co.in
-40719
- The Lubrizol Corporation
- Phil Evans
- phil.evans&lubrizol.com
-40720
- Texas Department of Public Safety
- William Berry
- william.berry&dps.texas.gov
-40721
- FormFactor, Inc.
- Seng Ing
- sing&formfactor.com
-40722
- HUVITZ
- Sun Kim
- Sun&huvitz.com
-40723
- New Zealand Defence Force
- Christina Porter, NZDF Site Manager
- webmaster&nzdf.mil.nz
-40724
- Ubisoft Entertainment
- Jason Joseph
- jason.joseph&ubisoft.com
-40725
- Intune Networks Limited
- Lewis Hanly
- Lewis.Hanly&intunenetworks.com
-40726
- CIPHRON GmbH
- Oliver Skibbe
- os&ciphron.de
-40727
- Cosium
- Cyril Bailly
- netadmin&cosium.com
-40728
- Falck Danmark A/S
- Claus Canzella
- inetadmin&falck.dk
-40729
- LAND-DATA GmbH
- Dennis Röhrs
- iut-hotline&landdata.de
-40730
- Neocom Software Ltd.
- Anton Galushkin
- a.galushkin&trbonet.com
-40731
- Elephant Talk Communications Corp.
- Thomas Bhatia
- thomas.bhatia&elephanttalk.com
-40732
- Consortium for Smart Energy Profile 2 Interoperability
- Rob Ranck
- admin&csep.org
-40733
- Sabzfaam ICT
- Ahmadreza Khaleghi
- khaleghi&sabzfaam.com
-40734
- Karina Mobile Solutions
- Siavash Safi
- siavash&karinaco.ir
-40735
- DoctuSoft Ltd.
- Tibor Czimer
- tibor.czimer&doctusoft.com
-40736
- Audeo, Inc.
- Justin Baugh
- justin.baugh&audeocloud.com
-40737
- National Labor Relations Board
- Mark Jeweler
- mark.jeweler&nlrb.gov
-40738
- The Children's Institute of Pittsburgh
- Sharon L. Dorogy
- sdo&the-institute.org
-40739
- Affirmative Insurance Holdings, Inc.
- Fabian Schramke
- fabian.schramke&affirmativeinsurance.com
-40740
- DirectOut GmbH
- Claudio Becker-Foss
- claudio.becker-foss&directout.eu
-40741
- Flying Horse Productions, LLC
- Mark A. Munza
- commander&flying-horses.com
-40742
- PDI Ninth House
- Chris Mulcahy
- chris.mulcahy&pdinh.com
-40743
- Reissmann IT-Services
- Sven Reissmann
- info&reissmann.it
-40744
- Center for Translational Molecular Medicine (CTMM TraIT)
- Erik Roelofs
- erik.roelofs&maastro.nl
-40745
- WiValley, Inc
- Brian Foucher
- NOC&wivalley.com
-40746
- GOZUBUYUKOGLU
- Arda GOZUBUYUKOGLU
- arda&gozubuyukoglu.com
-40747
- Radiant Logic, Inc.
- Claude Samuelson
- csam&radiantlogic.com
-40748
- IONODES Inc.
- Eric Tasso
- etasso&ionodes.com
-40749
- Corfire (SK C&C USA) Inc.
- Byungkwon Jeon
- byungkwonjeon&corfire.com
-40750
- Synrc Research Center
- Maksym Sokhatskyi
- maxim&synrc.com
-40751
- Homemail - Ross Johnson
- Ross Johnson
- ross&homemail.org
-40752
- Barricane Technology Ltd.
- Chris Dew
- iana-pen&barricane.com
-40753
- Beijing Time Antaeus Media Technology Co.,Ltd
- houhongji
- u3email&yahoo.com.cn
-40754
- Liikennevirasto TVT
- Jyrki Jarvinen
- jyrki.jarvinen&ely-keskus.fi
-40755
- Acticom
- Jaroslav Beneš
- acticom&acticom.cz
-40756
- K.W.Doggett Fine Paper
- Ben Grech
- bgrech&kwdoggett.com.au
-40757
- MOSCOW COMMERCIAL BANK MOSCOMPRIVATBANK ZAO
- Alexey Pavlov
- aleksej.pavlov&privatbank.ru
-40758
- Eltek Polska
- Jaroslaw Gawin
- jaroslaw.gawin&eltek.com.pl
-40759
- EGRIMA BuisnessCenter
- Joris Mocka
- joris.mocka&egrima-bc.com
-40760
- TOMRA Systems ASA
- Erik R. Hersløv
- erik.reinhardt.herslov&tomra.no
-40761
- Mideye AB
- Ulf Schuberth
- support&mideye.com
-40762
- Hitec Electric b.v.
- Gert-Jan Dorenbos
- pen&hitecelectric.com
-40763
- Kennedy University Hospitals, Inc.
- Thomas J. Balcavage
- t.balcavage&kennedyhealth.org
-40764
- Resonate Insights
- Adam Glenn
- adam.glenn&resonateinsights.com
-40765
- hSenid Software (Singapore) PVT Limited
- Jason Jebanesan
- jason&hsenid.com
-40766
- Xenode Co. Ltd.
- Nikolay V. Krasko
- n.krasko&xenode.ru
-40767
- Reporting Estándar S.L.
- Ignacio Hernandez-Ros
- ignacio&reportingstandard.com
-40768
- Hotwords Tecnologia
- Bento Loewenstein
- tech&hotwords.com.br
-40769
- VendScreen
- Cory Johannsen
- cory.johannsen&vendscreen.com
-40770
- Partheas
- Jeroen Serpieters
- jeroen.serpieters&partheas.com
-40771
- VISUAPPS GmbH
- Armin Kanitsar
- office&visuapps.com
-40772
- SuperMedia, LLC
- Colin Cheline
- colin.cheline&supermedia.com
-40773
- The Prosecutor General`s Office of Ukraine
- Dmytro Chub
- chub_ds&gp.gov.ua
-40774
- NagSNMP
- Remi Broemeling
- remi&broemeling.org
-40775
- TripodWorks CO.,LTD.
- SHOJI Takeshi
- t.shoji&tripodw.jp
-40776
- Kalyan Kadiyala
- Kalyana Kadiyala
- kckadiyala&gmail.com
-40777
- Qin Technology SpA
- Jaime Vasquez Acuña
- jaime&qin.cl
-40778
- Unassigned
- Removed 2012-11-12
- ---none---
-40779
- 2reallife
- IT Department (Mazitov Farid, Motylev Dmitriy, Ozerov Vailiy)
- noc&2reallife.com
-40780
- Smartpipe Solutions
- Adrian Enache
- adrian.enache&smartpipesolutions.com
-40781
- Cynaptica
- Roger Cocks
- rogerc&cynaptica.net
-40782
- Dyne System Co., Ltd
- Do Woong Park
- adams&dynesys.co.kr
-40783
- icoMetrix
- Dirk Loeckx
- Dirk.Loeckx&icometrix.com
-40784
- Kumahira Co., Ltd.
- Daisuke Chanohara
- da-chanohara&kumahira-safe.co.jp
-40785
- Optro Co.,Ltd
- Park InSoo
- greatpis&optro.co.kr
-40786
- Unassigned
- Removed 2012-11-12
- ---none---
-40787
- Compumatica secure networks
- Thorsten Müller
- thorsten.mueller&compumatica.eu
-40788
- Abegglen Management Consultants AG
- Brunner Rita
- itcontract&abegglen.com
-40789
- Logix
- Michal Ludvig
- mludvig&logix.net.nz
-40790
- Simple Solution Technologies LLC
- David Goldberg
- godberg&gmail.com
-40791
- Beijing OMATE Digital Technology CO.,Ltd
- Weixun Meng
- mwx&omate.com.cn
-40792
- Express-Interfracht Internationale Spedition GmbH
- Martin Haschek
- martin.haschek&railcargo.at
-40793
- Andelskassen JAK
- Martin Kjær Jørgensen
- admin&ajak.dk
-40794
- IG Metall Vorstandsverwaltung
- Alexander Stahl
- alexander.stahl&igmetall.de
-40795
- otaku-realm.net
- Olivier Lody
- olivier.lody&otaku-realm.net
-40796
- ICBPI S.p.A.
- Enrico Galoni
- enrico.galoni&icbpi.it
-40797
- Sidion
- Alexander Klimuk
- alexander.klimuk&sidion.de
-40798
- 3D-P
- Stephan Marcotte, P.Eng.
- stephanemarcotte&3d-p.com
-40799
- Swiss International Air Lines Ltd.
- Georges Mathis
- U638067&dlh.de
-40800
- Smart Refill i Helsingborg AB
- Michael Jörgensen
- michael.jorgensen&smartrefill.se
-40801
- FiveCo
- Antoine Gardiol
- antoine.gardiol&fiveco.ch
-40802
- Indra Navia as
- Eldar Firing
- eldar.firing&indra.no
-40803
- netRapid GmbH & Co. KG
- Eugen Staab
- eugen.staab&netrapid.de
-40804
- ULTEO
- David PHAM-VAN
- d.pham.van&ulteo.com
-40805
- Nimbus Directory Services
- Vladimir Dzhuvinov
- vladimir&nimbusds.com
-40806
- ICBTECH d.o.o.
- Aleksandar Pejic
- aleksandar.pejic&icbtech.rs
-40807
- semyon.org
- Semyon Chaichenets
- IODadmin&semyon.org
-40808
- Wi-Fi Alliance
- Greg Ennis
- technical&wi-fi.org
-40809
- Tohoku Gakuin University
- Nozomu Hino
- regi&staff.tohoku-gakuin.ac.jp
-40810
- BUPT-GUOAN Broadband Network Technology Co.Ltd
- Junwei Ren
- rjw&bupt.edu.cn
-40811
- WebSistem
- Ahmet Polat
- ahmetpolat&web-sistem.com
-40812
- Die Firma GmbH
- Jann Heider
- it&diefirma.de
-40813
- Agenturadmin.de
- Jann Heider
- info&agenturadmin.de
-40814
- Garden City Hospital
- Linda Bell
- LBell&gchosp.org
-40815
- Dr. Thalmair
- Dr. Tobias Thalmair
- 884256247&s320403455.online.de
-40816
- Ecodigi Tecnologia e Serviços Ltda.
- Fernando Gago Gomes
- fgomes&ecodigi.com.br
-40817
- Dr. Martin Froehlich
- Dr. Martin Froehlich
- xdrcft&gmx.net
-40818
- CYG SUNRI CO.,LTD
- LiuFeng
- liufeng_gx&hotmail.com
-40819
- Provident Solutions LLC
- James Nelson
- jmn&provident-solutions.com
-40820
- OpenIPMI
- Trenton Corey Minyard
- minyard&acm.org
-40821
- Public Protector South Africa
- Ignatius Makgoka
- ignatiusm&pprotect.org
-40822
- Hagedorn Informationssysteme GmbH
- Michal Mlynar
- michal.mlynar&hagedorn-infosysteme.de
-40823
- NVable Limited
- Bob McChesney
- bob.mcchesney&nvable.com
-40824
- Qore Technologies, sro
- David Nichols
- oid-admin&qoretechnologies.com
-40825
- VeriTeknik
- Cem Karaca
- ckaraca&veriteknik.com
-40826
- Short Films 4 U Limited
- Andy Spooner
- andy.spooner&shortfilms4u.com
-40827
- Lifelan Technology Co., LTD.
- Chang Hsu Hua
- hua&lifelan.com.tw
-40828
- CHIeru Co., Ltd.
- takayuki toge
- toge&chieru.co.jp
-40829
- Cambridge Industries Group (CIG)
- Jet Liu
- zliu&ci-g.com
-40830
- Qiaoy.info
- Yi Qiao
- qiaoy&qiaoy.info
-40831
- Domenikss SIA
- Eduards Čaikovskis
- Eduards.caikovskis&domenikss.lv
-40832
- MicroNova AG
- Hannes Oberländer
- Hannes.Oberlaender&micronova.de
-40833
- Hytec Electronics Ltd
- Mike Bacon
- mike.bacon&hytec-electronics.co.uk
-40834
- Kübler IT
- Benjamin Kübler
- b.kuebler&kuebler-it.de
-40835
- Department of Microelectronics and Computer Science, Lodz University of Technology
- Piotr Perek
- pperek&dmcs.pl
-40836
- Blackbird Group, Inc.
- Dave Ruginski
- d.ruginski&blackbird-group.com
-40837
- iTech Comércio Importação e Exportação de Componentes Eletrônicos LTDA
- Douglas Malvar Ribas
- douglas&grupoitech.com.br
-40838
- Commune de Niort
- BROUARD Yohann
- yohann.brouard&mairie-niort.fr
-40839
- SARDA South Wales
- Chris Daw
- chris.daw.pen&sardasouthwales.org.uk
-40840
- Rainydayz
- Andy Ruddock
- admin&rainydayz.org
-40841
- n-Systems GmbH & Co. KG
- Bernhard Grün
- bernhard.gruen&n-systems.de
-40842
- A10 Networks
- Madhusudhan Vadde
- mvadde&a10networks.com
-40843
- Chatmongers, LLC
- Shaun Kruger
- skruger&chatmongers.com
-40844
- MAC&C LLC
- Matuzko Andrey
- macandc&macandc.ru
-40845
- Veris Industries
- Aaron Parker
- support&veris.com
-40846
- Endurance Services (formerly 'Montpelier Technical Resources Ltd')
- Hugh Kelley
- hugh.kelley&montpeliertr.com
-40847
- CRDP de l'Académie de Versailles
- Pascal Fautrero
- pascal.fautrero&crdp.ac-versailles.fr
-40848
- VeriFyle, Inc.
- Stephen Pierce
- spierce&verifyle.com
-40849
- Ceiec Electric Technology Inc.
- Dachuan Liu
- liudachuan&ceiec-electric.com
-40850
- Kongsberg Spacetec AS
- Sverre Moe
- sverre&spacetec.no
-40851
- IPContact Software
- Jorge Merlino
- jorge.merlino&ipcontact.com.uy
-40852
- Main Line Health Inc.
- James A Robinson
- robinsonj&mlhs.org
-40853
- ATOSS CSD Software GmbH
- Andreas Blochberger
- ablochberger&atoss-csd.de
-40854
- WH Ireland Limited
- Richard Pugh
- richard.pugh&wh-ireland.co.uk
-40855
- University of Pittsburgh
- Jeff White
- jaw171&pitt.edu
-40856
- Tofino Security
- Oliver Kleineberg
- oliver.kleineberg&belden.com
-40857
- Mira Soft
- Gokhan Toplar
- gokhan&mira-soft.com
-40858
- ModemTec, spol. s r. o.
- Lešek Franek
- lesek.franek&modemtec.cz
-40859
- VOSGELIS
- COURROY Régis
- rcourroy&vosgelis.fr
-40860
- Protocom Technology
- Mohamad Charafeddine
- support&protocomtech.com.au
-40861
- Silent Softwares Pvt. Ltd.
- Patel Jigneshkumar Prakashbai
- admin&silentcomponents.com
-40862
- Systema Technologies SA
- Mike Chatzipetros
- michalis&systema.gr
-40863
- UP-nxt
- Maarten Bynens
- maarten.bynens&up-nxt.com
-40864
- Larcan Inc
- Mr William E Meechem
- bmeechem&larcan.com
-40865
- Majorpower Corporation
- Samuel Norman
- snorman&majorpower.com
-40866
- Arcusys Oy
- Jouni Hiltunen
- jouni.hiltunen&arcusys.fi
-40867
- Boardroom Pty Limited
- David Watson
- pen&boardroomlimited.com.au
-40868
- Genew Technologies Co.,Ltd
- mingtao yang
- yangmt&genew.com.cn
-40869
- TAIWAN-CA Inc.
- Robin Lin
- robin.lin&twca.com.tw
-40870
- Closed Joint Stock Company Interfax
- Vladimir Timofeev
- noc&interfax.ru
-40871
- poweroasis
- Pete Bishop
- Pete.Bishop&poweroasis.com
-40872
- Pardazeshgaran Saman Banking Solutions
- Bijan Hoomand
- hoomand&samanpr.com
-40873
- Semafone Limited
- Sam Harry
- techsupport&semafone.com
-40874
- LL Control Solutions International (PTY) Ltd
- Lukas Hendriks
- lukas&llcsi.com
-40875
- OfficeCore
- Dan Avni
- danavni&officecore.com
-40876
- Pressens Fællesindkøb
- Martin Kjeldsen
- mk&bluepipe.dk
-40877
- myprocurement
- Quentin Ambard
- qambard&myprocurement.fr
-40878
- Venere Net Srl
- Giuseppe Lavagetto
- vsysadm&expedia.com
-40879
- VERION TEKNOLOJI A.S.
- BULENT KAPTAN
- bulent.kaptan&verion.com.tr
-40880
- DBI Software, Inc.
- Ward Fry
- support&dbisoftware.com
-40881
- Mutualink Inc
- Charles Wegrzyn
- cwegrzyn&mutualink.net
-40882
- Step One AS
- Nils Magnus Englund
- nme&stepone.no
-40883
- Beijing CangLang TV Technologies Co., Ltd.
- Tom Yu
- yutao&canglangtv.com
-40884
- Instituto Federal Fluminense - IFF
- Andre Cunha
- acunha&iff.edu.br
-40885
- ELCUS
- Lukowkin Andrey
- mail&elcus.ru
-40886
- Kommunales Rechenzentrum Minden-Ravensberg/Lippe
- Andreas Ollenburg
- a.ollenburg&krz.de
-40887
- Edeka Minden-Hannover IT-/logistic service GmbH
- Sven Linscheid
- idm.admin&minden.edeka.de
-40888
- Universitaetsklinikum Tuebingen
- Oliver Warda
- oliver.warda&med.uni-tuebingen.de
-40889
- Global Invacom Ltd
- Leigh Coombs
- leigh.coombs&globalinvacom.com
-40890
- Hardomo
- Diego Mejia
- ingenieria&hardomo.com
-40891
- RDC, Inc. dba LynTec
- Dan Nguyen
- dan&lyntec.com
-40892
- abimus
- Patrik Karisch
- office&abimus.com
-40893
- University of the Arts Helsinki
- Juha Nyholm
- oid-admin&uniarts.fi
-40894
- Cory-Net
- Craig Cory
- craig&cory-net.com
-40895
- VRVis Zentrum für Virtual Reality und Visualisierung Forschungs-GmbH
- Adi Kriegisch, Georg Muelleder
- oid&vrvis.at
-40896
- Pearson Technology
- David Ferguson
- david.ferguson&pearson.com
-40897
- C.S. Veritas
- Maarten Abbink
- coda&veritas.nl
-40898
- Cirries Technologies Inc.
- Rick Aguirre
- rick.aguirre&cirries.com
-40899
- Evo Group Technologies, Inc.
- Kenneth P. Hough
- kenneth&egtech.us
-40900
- Cybersmart Ltd
- Shaun Courtney
- noc&cybersmart.co.za
-40901
- Courtney.org.za
- Shaun Courtney
- shaun&courtney.org.za
-40902
- TransLink - South Coast British Columbia Transportation Authority
- Benson Chin
- Benson.Chin&translink.ca
-40903
- Thongfforong.cyf
- Geraint Jenkin
- geraint.jenkin&gmail.com
-40904
- Brisbane City Council
- Russell McGregor
- Russell.McGregor&brisbane.qld.gov.au
-40905
- Altronix Corporation
- Jonathan Sohnis
- jsohnis&altronix.com
-40906
- Divitel Development Lda
- Diogo de Andrade
- diogo.andrade&divitel.com
-40907
- OOO Adicom
- Dmitry Sokolov
- dsokolov&adicom.ru
-40908
- Autoritatea Naţională pentru Administrare şi Reglementare în Comunicaţii - ANCOM
- Puiu Lucian Chitu
- puiu.chitu&ancom.org.ro
-40909
- BigBrother Security Systems
- Kalle Jansen
- kj&bigbrother.nl
-40910
- Bradley University
- Michael Whitlow
- mwhitlow&fsmail.bradley.edu
-40911
- Freedompay, Inc.
- Stephen Oberholtzer
- stephen.oberholtzer&freedompay.com
-40912
- Kulcs-Soft Nyrt.
- Zsolt Eperjesi
- eperjesizs&kulcs-soft.hu
-40913
- QEM Software Ltd.
- Timo Koski
- info&qem.fi
-40914
- Symanitron
- Natalia Neverova
- neverova&symanitron.ru
-40915
- WANdisco, Inc
- Ian Mordey
- ian.mordey&wandisco.com
-40916
- Berico Technologies
- Richard Clayton
- rclayton&bericotechnologies.com
-40917
- Lender Processing Service
- Scott Manning
- scott.manning&lpsvcs.com
-40918
- ResponseTap Limited
- Marius Gaubas
- marius.gaubas&responsetap.com
-40919
- Vnomics
- Kenneth A. Barlow
- kbarlow&vnomicscorp.com
-40920
- Icahn School of Medicine at Mount Sinai
- Jonathon Anderson
- jonathon.anderson&mssm.edu
-40921
- MikroM Mikroelektronik für Multimedia GmbH
- Holger Krahn
- it&mikrom.com
-40922
- Telydata Cía. Ltda.
- Alejandro Augusto Andrade Mafla
- aandrade&telydata.net
-40923
- Isle of Capri Casinos, Inc.
- Montez Fitzpatrick
- montez.fitzpatrick&islecorp.com
-40924
- aYaline
- Bouziane Fourka
- bfourka&ayaline.com
-40925
- Trenkwlader Solutions, s.r.o.
- Miguel Lambrecht
- m.lambrecht&trenkwalder.com
-40926
- Majic
- Branko Majic
- branko&majic.rs
-40927
- SID Solutions Inc.
- Shinsuke Nishiyama
- shinsuke.nishiyama&sid-sol.com
-40928
- Esprit Digital Ltd
- James Brenner
- james&espritdigital.com
-40929
- Barrett Consulting Group Pty Ltd
- Jobst Schmalenbach
- hostmaster&barrett.com.au
-40930
- MAGREX Co. Ltd.
- kazuo imoto
- devinfo&magrex.co.jp
-40931
- Victorian Electoral Commission
- Shripad Joshi
- shripad.joshi&vec.vic.gov.au
-40932
- SuccWare (Beijing) Software System Co., Ltd
- Wang Edward
- wgch72&163.com
-40933
- QiZhi Technologies
- LiQiang Xu
- support&shterm.com
-40934
- LIG Nex1
- YounYeoul Lee
- leeyy777&lignex1.com
-40935
- LTD "MedScann"
- Igor Proskurjakov
- strong2005&mail.ru
-40936
- St. Elisabeth Convent
- Constantin Piskounov
- kpiskounov&obitel-minsk.by
-40937
- Axelprod GSM Transmission
- Luis Morales
- webmaster&axelprod.ch
-40938
- MobileIron Inc.
- Mansu Kim
- mansukim&mobileiron.com
-40939
- Alphonso
- Ravi Sarma
- admin&alphonso.tv
-40940
- ROYAL NEW ZEALAND PLUNKET SOCIETY INCORPORATED
- Mike Kavanagh
- IT.Helpdesk&plunket.org.nz
-40941
- Tamara Elektronik Ltd.Sti.
- Yiğit YÜCE
- yigit&tamara.com.tr
-40942
- logic-base GmbH
- Andreas Beyer
- andreas.beyer&4sellers.de
-40943
- XHONIA
- Samuel N'Diang
- information&xhonia.com
-40944
- Bitlomat LLC
- David Coleman
- alessandro&bitlomat.com
-40945
- Oak Solucoes em Informatica LTDA EPP
- Leonardo Pignataro
- leonardop&oaks.com.br
-40946
- Yuriy Moskovets
- Yuriy Moskovets
- kontact&moskovets.com
-40947
- Metromatics Pty Ltd
- Damien Cahill
- dcahill&metromatics.com.au
-40948
- BiTMICRO Networks, Inc.
- Chris Mostrales
- cmostrales&bitmicro.com
-40949
- Smart Grid Billing, Inc
- Morten Lundberg
- ml&smartgridbilling.com
-40950
- JSC Stock Company OZNA
- Ildar Akhmedov
- admin&ozna.ru
-40951
- uAnywhere
- Ryan Verner
- pen.admin&uanywhere.com.au
-40952
- S3 ID Ltd
- Jordan Morris
- jordan.morris&S3-ID.com
-40953
- Unassigned
- Removed 2013-01-11
- ---none---
-40954
- Ivar Jacobson International AB
- Magnus Hyllander
- magnus.hyllander&ivarjacobson.com
-40955
- Campbell County Hospital District
- Paul Thomson
- paul.thomson&ccmh.net
-40956
- SEAKR Engineering Inc
- Nick Couchman
- Nick.Couchman&seakr.com
-40957
- Dexa Systems, Inc
- Glen Mullen
- ghmullen&dexasystems.com
-40958
- Geneity Ltd
- Andre Esser
- andre.esser&geneity.co.uk
-40959
- Optical Zonu Corporation
- Iftah Bratspiess
- iftah&web-silicon.com
-40960
- Witelcom AS
- Fredrik Eriksen
- info&witelcom.com
-40961
- Axxes
- Jérôme CALLY
- jerome.cally&axxes.fr
-40962
- SDL - Language Weaver
- Dan Waddell
- dwaddell&sdl.com
-40963
- Jacques Ledoux
- Jacques Ledoux
- jcq&ledx.com
-40964
- Stone Fifteen Design Group
- Martin Cribbins
- mcribbins&stonefifteen.com
-40965
- Louisiana State Board of Medical Examiners
- Alan W. Phillips
- aphillips&lsbme.la.gov
-40966
- Ronald.ORG
- Ronald Kuehn
- rk&ronald.org
-40967
- SVIAT Ltd.
- Aliaksej Zharko
- admin&sviat.by
-40968
- Nirvanix, Inc.
- Bob Bawn
- bob.bawn&nirvanix.com
-40969
- Tobila Systems, Inc.
- Atsushi Akita
- akita&tobila.jp
-40970
- LRD23 Consulting LLC
- Christopher A Lowde
- lowdeca&lrd23consulting.com
-40971
- Audioptic Trade Services
- GAUBERT Alexandre
- alexandre.gaubert&audioptic.fr
-40972
- SFR
- Pedro Gasalho
- pedro.gasalho&sfr.com
-40973
- Freeside Atlanta
- Alan Fay
- admin&freesideatlanta.org
-40974
- Kim Johnsson
- Kim Johnsson
- kimjohnsson&gmail.com
-40975
- Applied Communication Sciences
- Aileen Cheng
- acheng&appcomsci.com
-40976
- Videotrec Industrial Co. Ltd.
- zhuyouming
- zhuyouming1988&gmail.com
-40977
- Inter-M
- Wonho, Lee
- whlee&inter-m.com
-40978
- AZElectronic
- Antoine DUMONT
- antoine.dumont.az&gmail.com
-40979
- Newell Rubbermaid - DYMO Corp.
- Rui Meng
- rui.meng&dymo.com
-40980
- creatale GmbH
- Sebastian Gepperth
- iana&creatale.de
-40981
- Facebook, Inc.
- Tim Tickel
- twt&fb.com
-40982
- ROARING FORK SCHOOL DISTRICT
- David McGavock
- trcheshire&rfsd.k12.co.us
-40983
- Trinity Solutions, Inc.
- Sachiyuki Fujimura
- fujimura&3nity-sol.com
-40984
- Fastback Networks
- Dan Kiewlich
- dan.kiewlich&fastbacknetworks.com
-40985
- Clearview Systems, LLC
- Jason Bean
- admin&clearviewsystems.com
-40986
- JVL Ventures / Isis Mobile Commerce
- Houston Hopkins
- houston.hopkins&paywithisis.com
-40987
- Quality Software Works
- Ivan Montoro
- iana&qswks.com
-40988
- Justin Obernier
- Justin Obernier
- justin.obernier&gmail.com
-40989
- GLsun Science and Tech Co.Ltd
- pujinhuang
- Glsnmp&ymail.com
-40990
- Domain Name Services
- Ed Pascoe
- ed&dnservices.co.za
-40991
- tedox KG
- Torge Gipp
- torge.gipp&tedox.de
-40992
- vijay. Pvt. Ltd
- Vijay Rajah
- vijayrajah&gmail.com
-40993
- HD Vest Inc.
- Ken Vetter
- ken.vetter&hdvest.com
-40994
- LLC "AIS Gorod"
- Roman Vavilov
- tenno&aisgorod.ru
-40995
- DLG Automacao Industrial Ltda
- Ronaldo Tomazeli Duarte
- ronaldo&dlg.com.br
-40996
- SilverRail Technologies, Inc.
- Will Phillipson
- will&silverrailtech.com
-40997
- Armonti Digital Services
- Armin Paffrath
- paffrath&armonti.de
-40998
- DomaCom Pty Ltd
- John Bird
- john.bird&domacom.com.au
-40999
- Ribose Inc
- Ronald Tse
- ronald.tse&ribose.com
-41000
- mykarte.com
- Ryuji Ito
- ryujii&mykarte.com
-41001
- Cuattro, LLC.
- Matthew Probasco
- mprobasco&cuattro.com
-41002
- Biotest AG
- Joachim Lorenz
- joachim_lorenz&biotest.de
-41003
- Workers' Compensation Board - Alberta
- Wallace Wang
- wallace.wang&wcb.ab.ca
-41004
- Clackamas County
- Julio Cabrera
- jcabrera&clackamas.us
-41005
- IntelliBatt, Inc.
- Doug Sheppard
- doug&intellibatt.com
-41006
- Ineluctable Designs
- Shane Spinuzzi
- shane&ineluctabledesigns.com
-41007
- IMBC GmbH
- Frank Dornheim
- frank.dornheim&imbc.de
-41008
- EMTS Telecom Services Ltd.
- Erik Melki
- melki&012.net.il
-41009
- Info-M Ltd.
- András Czihó
- cziho&info-m.hu
-41010
- FlyingVoice Technology Ltd.
- liuyangxin
- liuyangxin&flyingvoice.com
-41011
- LanPro Inc.
- Andreas Loffler
- lofflera&lanpro.com
-41012
- tmakinen.com
- Tapio Makinen
- sysadmin&tmakinen.com
-41013
- Miyagi University of Education
- UGAWA, Yoshihiro
- center&ipc.miyakyo-u.ac.jp
-41014
- Attam Ltd
- Wayne Marrison
- wayne.marrison&attam.co.uk
-41015
- Intelligenza
- Wayne Marrison
- wayne.marrison&intelligenza.co.uk
-41016
- Héonium SARL
- Christophe CRIER
- christophe.crier&heonium.com
-41017
- EDV-Studio Stephan Konheiser
- Stephan Konheiser
- s.konheiser&edv-studio.de
-41018
- WaldiNetwork Ltd. Home
- Ing. Walter Hoehlhubmer
- waldinetwork.home&liwest.at
-41019
- Acuntia S.A.
- Diego Nuevo
- tech.admin&acuntia.es
-41020
- GetOnline Ltd
- Karl Pielorz
- iana-pen&getonline.co.uk
-41021
- Gensicke
- Sebastian Gensicke
- sg2004&gensicke.de
-41022
- van Rens IT Consultancy
- Erwin van Rens
- info&vanrens.nl
-41023
- BAITS Global
- Georges Haddad
- georges.haddad&baitsglobal.com
-41024
- BG Unfallklinik Murnau
- Erwin Kinateder
- erwin.kinateder&bgu-murnau.de
-41025
- Lorillard Tobacco Company
- Stephen Norat
- stephen.norat&capgemini.com
-41026
- DealerTrack
- Ronald Buglione
- ronald.buglione&dealertrack.com
-41027
- Direct Line Insurance Group PLC
- Ashish Surti
- ashish.a.surti&directlinegroup.co.uk
-41028
- Delphix Corp
- Peng Dai
- peng.dai&delphix.com
-41029
- The Orvis Company Inc.
- Armand Boudreau
- Boudreaua&orvis.com
-41030
- JAI Inc.
- Avinash V. Uppuluri
- au&jai.com
-41031
- Axeos Services B.V.
- Max van Biezen
- mvanbiez&axeos.nl
-41032
- VeriCom AB
- Fredrik Nilsson
- fredrik&vericom.se
-41033
- Amor Group
- Matthew Wicks
- matthew.wicks&amorgroup.com
-41034
- Systems With Intelligence Inc.
- Fausto Della Rovere
- fausto.dellarovere&systemswithintelligence.com
-41035
- TM Systems, LLC
- Anna Homyakova
- tms&tm-sys.ru
-41036
- Corero Network Security
- Scott Barvick
- scott.barvick&corero.com
-41037
- Edgepoint IT Services
- Thomas Schweizer-Bolzonello
- eusupport&edgepoint.fr
-41038
- Gridcore AB
- Richard Säfström
- richard&gridcore.se
-41039
- adidas AG
- Eric Gunter
- eric.gunter&adidas-group.com
-41040
- Scientific & Research Center Epsilon
- Aleksei Lukin
- alukin&ntc-epsilon.com
-41041
- Fairpersonal GmbH
- Bernhard Hess
- bernhard.hess&fairpersonal.de
-41042
- tinNet - Lukas Barth
- Lukas Barth
- mail&tinloaf.de
-41043
- Radius, LLC
- Michael Lopez
- mlopez&radiustoday.com
-41044
- SohnTech Solutions, LLC.
- Stephen Sohn
- ssohn&sohntechsolutions.com
-41045
- Rover Apps, LLC
- Jeff Garbers
- jgarbers&roverapps.com
-41046
- Driven Technical Solutions
- Jonque Washington
- jonque&driventechnical.com
-41047
- Sestek Communications Inc.
- Bill Lin
- bill&sestek.com.tw
-41048
- NETIFY
- Olivier LE CAM
- olc&netify.fr
-41049
- Erudio Solutions
- Luca Filipozzi
- noc&erudio.ca
-41050
- Raspmon
- Luke Niland
- beakersoft&gmail.com
-41051
- MBIA Inc.
- Jake Kim
- jake.kim&mbia.com
-41052
- IntraFind Software AG
- Bernhard Messer
- bernhard.messer&intrafind.de
-41053
- musicute project - Rouven Raudzus
- Rouven Raudzus
- Rouven.Raudzus&gmx.de
-41054
- Dinamo Networks
- Enilton Antonio do Nascimento Junior
- eniltonj&dinamonetworks.com
-41055
- Esquisse Software Studio
- Alexander Konnen
- alex&pikkatech.eu
-41056
- telco Management & Service GmbH
- Bernhard Hess
- bernhard.hess&telco-ms.de
-41057
- FANCYRABBIT.ORG
- Huaping Huang
- sysadmin&fancyrabbit.org
-41058
- Loggly Inc.
- Philip O'Toole
- philip&loggly.com
-41059
- Petromoc
- Boris Wiethoff
- borisw&petromoc.co.mz
-41060
- M-D Technology
- Haixing Li
- aner.li&md-technologies.com
-41061
- SOLUTI Certificacao Digital
- Reinaldo Borges
- reinaldo.borges&acsoluti.com.br
-41062
- NuScale Power LLC
- Chris Bates
- cbates&nuscalepower.com
-41063
- Asynchrony, Inc.
- Nate McKie
- nate.mckie&asynchrony.com
-41064
- CheckMySystems Ltd.
- Darren Rewston
- darren&checkmysystems.com
-41065
- Alea Iacta Est
- Mark Rogaski
- admin&aie-guild.org
-41066
- Shaanxi Tians Information & Technology Co.,Ltd.
- Xu aiming
- xuaiming&tianstech.com
-41067
- Quantitative Risk Research, S.L.
- Raul Wegmann
- it&qrr.es
-41068
- Shenzhen RHC technology Co.,Ltd
- zhou li hua
- zhoulihua&runhc.com
-41069
- insystem
- Oleg Morozov
- byom&insystem.ru
-41070
- WhereGroup Gmbh & Co. KG
- Karim Malhas
- karim.malhas&wheregroup.com
-41071
- Servicios Electrónicos Universitarios, S.A.S.
- Xavier Vila
- xvila&firmaprofesional.com
-41072
- Domogik
- Maikel Punie
- maikel.punie&gmail.com
-41073
- Openreach
- Mike Williamson
- mike.williamson&openreach.co.uk
-41074
- voestalpine group-IT GmbH
- Thomas Schwarz
- thomas.schwarz&voestalpine.com
-41075
- Edge S.A.
- Anibal Acosta
- anibal.acosta&edge.com.py
-41076
- The Probe Project Ltd
- Jan-Erik Eriksson
- info&probeproject.tv
-41077
- iOWA AB
- Anders Wittfeldt
- anders.wittfeldt&iowa.se
-41078
- Apteka Alpi Farm
- Dragan Momcilovic
- dragan_momcilovic&alpifarm.mk
-41079
- autocrash.info
- Alexander Kuznetsov
- acca&cpan.org
-41080
- IT-EASY Berlin
- Sylvio Schilling
- sylvio.schilling&it-easy.biz
-41081
- LLC Okey
- Prokhorov Sergey
- sergey.prokhorov&okmarket.ru
-41082
- Altarix-Samara
- Vladimir Sidorov
- vladimir.sidorov&altarix.ru
-41083
- Shanghai Ruiyuan Information Technologies Co.,Ltd.
- qianpingkang
- qianpingkang&ibs-tech.com.cn
-41084
- ALTELL Ltd.
- Alexander Burov
- burov&altell.ru
-41085
- Isida-Informatica, Ltd
- Denis Kachurin
- master&isida.by
-41086
- Trafikselskabet Movia
- Lars Panton
- lbp&moviatrafik.dk
-41087
- Automation NV/SA
- Kris Clottemans
- kris.clottemans&automation.be
-41088
- TCUBE
- Pascal Dietsche
- tcube&laposte.net
-41089
- Neptune Internet Service
- Arturo Montes
- iana&neptune.fr
-41090
- Shanghai HEADING Information Engineering Co., Ltd.
- Li Ximing
- liximing&hd123.com
-41091
- Libra Srl
- Paolo Frizzi
- paolo&libra.it
-41092
- Dynamic Systems, Inc.
- Gary Suzumoto
- gary.suzumoto&dynamicsystemsinc.com
-41093
- Bareos GmbH & Co. KG
- Marco van Wieringen
- marco.van.wieringen&bareos.com
-41094
- iS5 Communications Inc.
- Gary Boardman
- garyboardman&is5com.com
-41095
- Evrisko Systems
- Paul Buenger
- pbuenger&evriskosys.com
-41096
- Metadosis GP
- Antonios Kanouras
- iana&metadosis.gr
-41097
- Magnus LTD
- Fyodor Ustinov
- ufm&magnus.net.ua
-41098
- ESPEC CORP.
- Masahiko Watanabe
- m-watanabe&espec.co.jp
-41099
- COMPTA - EQUIPAMENTOS E SERVIÇOS DE INFORMÁTICA S.A.
- JORGE ESTEVES
- jorge.esteves&compta.pt
-41100
- Fon Wireless LTD
- Gonzalo Becares
- gonzalo.becares&fon.com
-41101
- Simply Business
- James Condron
- james.condron&simplybusiness.co.uk
-41102
- NS Solutions Corporation
- Katsuhisa Inagaki
- inagaki.katsuhisa&ns-sol.co.jp
-41103
- Global Radio Services Limited
- Richard Carpenter
- noc&as39202.net
-41104
- Transway Ltd.
- Koby Michelsohn
- kobym&transway.co.il
-41105
- Lognet Billing LTD
- Rost Bitterlikh
- rost.bitterlikh&lognet-systems.com
-41106
- Institute of Photonics and Electronics AS CR, v.v.i.
- Martin Havlicek
- it&ufe.cz
-41107
- Transact Technologies Inc
- Donald E. Brooks
- dbrooks&transact-tech.com
-41108
- Mill Software
- Nick Bonnett
- nick.bonnett&millsoftware.com.au
-41109
- TriVu Media
- Michael Sullivan
- mike&trivu.tv
-41110
- Good Dog Design
- James Brooks
- james&gooddogdesign.com
-41111
- 66 VISION TECH CO.,LTD
- Zuoping Tan
- tech&66vision.com
-41112
- Ubiquiti Networks, Inc.
- Kestutis Barkauskas
- keba&ubnt.com
-41113
- Barnfind Technologies AS
- Stian Sebastian Skjelstad
- stian&barnfind.no
-41114
- S2 Factory, Inc.
- Jun Kuriyama
- iana-pen&s2factory.co.jp
-41115
- Glarner Kantonalbank
- Luchsinger Ralf
- isc&glkb.ch
-41116
- DEBES ENGINEERING
- Klaus Debes
- info&debes-engineering.de
-41117
- Richard Wolf GmbH
- Muhammed-Ali Findik
- muhammed-ali.findik&richard-wolf.com
-41118
- Stadt Duisburg
- Marc Stermann
- marc.stermann&duit.de
-41119
- 3 Stack Technologies
- James Waite
- james&3stackcloud.com
-41120
- CMosaix
- Daniel Batkilin
- danielzeev&gmail.com
-41121
- Terminal plus, LLC
- Rudolf Zolotov
- zrr&tdrusintel.ru
-41122
- Pindrop Security
- Lamar Willis
- lamar&pindropsecurity.com
-41123
- Sumo Logic, Inc.
- Yongxing Wang
- yongxing&sumologic.com
-41124
- KfW
- Mark Heitbrink
- Mark.Heitbrink_extern&kfw.de
-41125
- Mystic Video, Inc.
- Som Ghosh
- som&mysticvideo.net
-41126
- SFERA
- Alexey Klinov
- alexey.klinov&sfera-co.ru
-41127
- Linux Router Systems
- Lucas Nishimura
- lucas.nishimura&gmail.com
-41128
- Knorst Consulting LTDA
- Alexandre Eduardo Knorst
- knorst&gmail.com
-41129
- WideNet
- Leonardo Rizzi
- l.rizzi&wide-net.org
-41130
- Mint Medical GmbH
- Johannes Kast
- support&mint-medical.de
-41131
- LUGO TERMINAL SPA
- Paolo Righini
- ict&lugoterminal.com
-41132
- Västra Götalandsregionen
- Christer Nygren
- christer.nygren&vgregion.se
-41133
- Alinean, Inc.
- AZ Flynn Thomas
- ops&alinean.com
-41134
- Ronal AG
- Dirk Wacker
- itsupport&ronal.ch
-41135
- Salsbury Engineering, Inc.
- Jonathan Gauthier
- jon&salsburyeng.com
-41136
- Ryan Spinuzzi
- Ryan Spinuzzi
- ryan&ryanspinuzzi.com
-41137
- Autotoll Limited
- Frank Chan
- help.it&autotoll.com.hk
-41138
- 10gen, Inc.
- Akshay Kumar
- akshay&10gen.com
-41139
- NextGenTel AS
- Eivind Olsen
- hostmaster&nextgentel.com
-41140
- nplawes
- Nick Lawes
- iana&nplawes.com
-41141
- Southeast Health
- Tammy Goldsmith
- tgoldsmith&sehealth.org
-41142
- Instant Solutions LTDA
- Pedro Howat Rodrigues
- pedro&instant.com.br
-41143
- Goodloe Consulting Group, LLC
- Jason Goodloe
- jason.goodloe&goodloegroup.com
-41144
- Initra d.o.o.
- Goran Cunjak
- goran.cunjak&initra.com
-41145
- Industrial Control Communications, Inc
- Felickao Yang
- fyang&iccdesigns.com
-41146
- VertiCloud
- Tucker Dewitt
- ops&verticloud.com
-41147
- The Southampton Hospital Association
- William Bifulco
- wbifulco&southamptonhospital.org
-41148
- Binary Software Indy, llc
- Kevin Glinski
- kevin&binarysoftwareindy.com
-41149
- Shandong New Beiyang Information Technology Co., Ltd. (SNBC)
- Chen Qiuyi
- chenqiuyi&newbeiyang.com
-41150
- Acelis SARL
- Aurélien Geromboux
- aurelien&acelis.net
-41151
- dev.ncds.eu
- Dominik Sułkowski
- dominik&ncds.eu
-41152
- Cyfrowy Polsat SA
- Przemyslaw Dlugosz
- pdlugosz&cyfrowypolsat.pl
-41153
- Status Nobilis SA
- Fabio Scaccabarozzi
- fs&statusnobilis.com
-41154
- trojniak.net
- Rafal Trojniak
- pen.iana.org&trojniak.net
-41155
- Oberlin College
- Barron Hulver
- Barron.Hulver&oberlin.edu
-41156
- Solmate Group
- Hans Donner
- support&solmategroup.com
-41157
- JEFFREY WALTER HEISEY
- Jeffrey Heisey
- jeff_heisey&hotmail.com
-41158
- Special Services Division, NCISS
- Colonel Ewen
- NCISSDirectorate&gmail.com
-41159
- Media Group LLC
- Igor Blinov
- supergarikk&gmail.com
-41160
- Copper Systems Ltd
- Paul Wearne
- paul.wearne&copper-systems.co.uk
-41161
- Bentsen Electronics
- Morten Bentsen
- spam&bentsen.org
-41162
- Software Daten Service
- Wolfgang Brandl
- wolfgang.brandl&sds.at
-41163
- INVAP S.E.
- Ignacio Ginestet
- iginestet&invap.com.ar
-41164
- Tulsa Technology Center
- Ryan Dahlgren
- mib&tulsatech.edu
-41165
- SKYERA Inc
- Suresh Dussa
- sdussa&skyera.com
-41166
- streibelt.net
- Florian Streibelt
- iana-pen&streibelt.net
-41167
- Pomona Valley Hospital Medical Center
- Cris Tran
- cris.tran&pvhmc.org
-41168
- Excelitas
- Thomas Osbrink
- thomas.osbrink&excelitas.com
-41169
- Scorpio IT
- Christian Wittmer
- info&scorpio-it.net
-41170
- NOVXTEL
- Emmanuel CHAUVEAU
- e.chauveau&novxtel.com
-41171
- MECC CO., LTD.
- Masaya Suzuki
- m-suzuki&mecc.co.jp
-41172
- HEC Paris
- Marcelo Moreira
- sysrxadm&hec.fr
-41173
- Dream Chip Technologies GmbH
- Stefan Stürke
- mibs&dreamchip.de
-41174
- Mount Vernon Hospital Physics (UK)
- Gerry Lowe
- gerry.lowe&nhs.net
-41175
- Aartesys AG
- Andreas Grossenbacher
- andreas.grossenbacher&aartesys.ch
-41176
- Energy X Systems Ltd.
- H. R. Coles
- ianaoid.1&energy-x.com
-41177
- Ocean Interactive (Beijing) Technology Co. Ltd
- Shaolin Zheng
- zhengshaolin&omusic.cc
-41178
- Proftal Oy
- Vesa Haimi
- contact&proftal.com
-41179
- DirectTrust.org Inc.
- Scott Rea
- Scott.Rea&DirectTrust.org
-41180
- Process Query Systems, LLC
- Vincent Berk
- vberk&proquesys.com
-41181
- conversis technologies GmbH
- Lukas Loesche
- l.loesche&conversis.de
-41182
- Digital Imaging Lab.
- Shunsaku Otsuka
- otsuka&diljapan.com
-41183
- Contim Automação de Sistemas Ltda
- Thiago Ragozo Contim
- thiago&contim.eng.br
-41184
- FreedomVoice Systems
- Jeremiah Gowdy
- jeremiah.gowdy&freedomvoice.com
-41185
- Norwia AS
- Baard Nossum
- bnossum&norwia.no
-41186
- QuantuMatriX Technologies
- Matthew Schultz
- matt&qmxtech.com
-41187
- Video Tech Laboratories
- HIroshi Fujimoto
- fujimoto&videotech.co.jp
-41188
- University of California Hastings College of the Law
- Ronald Proschan
- proschan&uchastings.edu
-41189
- Sika Informationssysteme AG
- Oliver von Wartburg
- vonwartburg.oliver&ch.sika.com
-41190
- Invensys Rail
- Fernando Javier Navarro Quiles
- fernando.navarro&invensys.com
-41191
- Educastream
- Nicolas Le Manchet
- nicolas.lemanchet&educastream.com
-41192
- VICTORY Standards Support Office
- Trent Styrcula
- trent.styrcula&us.army.mil
-41193
- TELETOR, LLC
- Alexandr Suranov
- support&teletor.ru
-41194
- Piratenpartei Deutschland Landesverband Saarland
- Jan Niklas Fingerle
- jan.niklas.fingerle&piratenpartei-saarland.de
-41195
- Imecon Engineering srl
- Luigi Guido
- l.guido&imecon.it
-41196
- SimpliVity Corporation
- Owen Carr
- owen.carr&simplivity.com
-41197
- Epicard SA
- Nicolas Deurin
- deurin&epicard.ch
-41198
- Ryan J. Geyer
- Ryan J. Geyer
- me&ryangeyer.com
-41199
- OPTEYA SAS
- Yann Droneaud
- ydroneaud&opteya.com
-41200
- Vision Microsystems Co.,ltd.
- Junius Liu
- Junius.liu&visionmc.com
-41201
- ZeroSpace ICT Services B.V.
- F.J. Bogman
- info&zerospace.nl
-41202
- Intigua Inc.
- Oran Epelbaum
- oran.epelbaum&intigua.com
-41203
- Swiss Bankers Prepaid Services AG
- Eigenmann Marc
- it&swissbankers.ch
-41204
- AVASAD
- Colin Edwards
- colin.edwards&avasad.ch
-41205
- Colégio Técnico Industrial de Santa Maria (CTISM)
- Douglas Santos Bregolin
- dosbre&ctism.ufsm.br
-41206
- Travelex Limited
- Deepak Pasi
- deepak.pasi&travelex.com
-41207
- Yospace Technologies Ltd
- Adrian Hungate
- systems&yospace.com
-41208
- Gorodissky & Partners, Ltd.
- Alexander Bordachenkov
- BordachenkovA&gorodissky.ru
-41209
- Qpay Inc.
- Rami Leshem
- Rami.Leshem&qpaynet.com
-41210
- Santa Fe College
- John Caldwell
- john.caldwell&sfcollege.edu
-41211
- CherryRoad Technologies Inc.
- Thomas Slattery
- tslattery&cherryroad.com
-41212
- Providigm
- Erinn Looney-Triggs
- erinn&providigm.com
-41213
- bitagentur GmbH & Co. KG
- Maximilian Eidenschink
- max&bitagentur.de
-41214
- Cloud Concepts
- Jurgen Van de Perre
- jurgen&cloudconcepts.be
-41215
- INFOMARK CO., LTD.
- HYUNCHUL JUNG
- harry.jung&infomark.co.kr
-41216
- Monitise Group Limited
- Grant Mitchell
- grant.mitchell&monitise.com
-41217
- Xcision Medical Systems, LLC
- Xiaofeng Zhao
- xiaofeng.zhao&xcision.com
-41218
- Vera Networks, LLC
- Samuel D Ware
- sam.ware&veranetworks.com
-41219
- Lytzen IT A/S
- Christian Ejlertsen
- ce&lytzenit.dk
-41220
- PS-IT-Consulting
- Patrick Szameitat
- info&ps-it-consulting.eu
-41221
- IMDIT GmbH
- Marc Bergner
- info&imdit.de
-41222
- Jnsys
- Jay Kim
- jay&jnsys.co.kr
-41223
- ASC-TEC AG
- Wojciech Eliasz
- W.Eliasz&asc-tec.de
-41224
- MobileVaults, Inc. (formerly 'CloudVaults, LLC')
- Gyle Iverson
- Gyle&MobileVaults.com
-41225
- JSC Volga
- Alexander Kollegaev
- kaj&volga-paper.ru
-41226
- Ennetix
- Jonathan Symons
- jon&ennetix.com
-41227
- Voice Conferencing Systems for Misson Control Centers (vocsmcc)
- Markus Toepfer
- openmail&vocsMCC.com
-41228
- CoreMeda
- Eray Tavukcu
- etavukcu&gmail.com
-41229
- Friulia SPA
- Massimiliano Viola
- massimiliano.viola&friulia.it
-41230
- Usharesoft
- german parente
- iana&usharesoft.com
-41231
- IntelliMagic B.V.
- Gilbert Houtekamer
- administratormail&intellimagic.net
-41232
- ZFSoft
- Francesco Zerra
- francesco.zerra&gmail.com
-41233
- HubSpot, Inc.
- Jason Webber
- domain-groups&hubspot.com
-41234
- RNelson Consulting
- Robert Nelson
- iana&rnelson.ca
-41235
- Schalter Eletrônica
- Peter Gabriel
- peter&schalter.com.br
-41236
- Telepoint Global Hosting Services, LLC.
- Russell Bierschbach
- rbierschbach&telepointglobal.com
-41237
- Great Lakes Data Systems Inc.
- Saulius Vabalas
- savas&glds.com
-41238
- Shane Spinuzzi
- Shane Spinuzzi
- shane&shanespinuzzi.com
-41239
- Charles County Goverment
- Matthew Goddard
- goddardm&charlescountymd.gov
-41240
- Mijares Consultoría y Sistemas SL
- Alberto Mijares
- amijares&mcs.com.ve
-41241
- ARC Document Solutions, Inc
- Chaitanya Garlapati
- chaitanya&e-arc.com
-41242
- Shanghai PPLive Media Tech. Co.,Ltd
- Wang kun
- morhaimeren&pptv.com
-41243
- Desoma GmbH
- Christoph Knott
- ck&desoma.de
-41244
- ABAK Systèmes
- Jean Luc Levionois
- levionnois&abaksystemes.fr
-41245
- Sadara Internet
- Dharmacari Sadara
- admin&sadarainternet.com
-41246
- 2600hz
- Karl Anderson
- sales&2600hz.com
-41247
- Rakennusliitto ry
- Jukka Kylliäinen
- jukka.kylliainen&canon.fi
-41248
- IETFNG.org
- Nathaniel Filardo
- GEMSE3TED2LEIPE02M01LVAPATUNTPVN&cmx.ietfng.org
-41249
- Silent Circle LLC
- Louis Kowolowski
- louisk&silentcircle.com
-41250
- Globosat Programadora LTDA
- Marcelo Rezende Módolo
- modolo&globosat.com.br
-41251
- Simple Software Solutions
- John Battersby
- johnbatty&ssspgh.com
-41252
- Wicked Software
- Tony Roy
- tonyroy&wcksoft.com
-41253
- Millry Telephone Co
- Gene Brown
- geneb&millry.net
-41254
- Wroclaw School of Applied Informatics "Horyzont"
- Jarek Szablowski
- admin&horyzont.eu
-41255
- Maui Systems Ltd
- Marty Lee
- contact&maui-systems.co.uk
-41256
- NormanStudios
- Fabien Charbonnier
- systeme&normanstudios.fr
-41257
- SignOn
- James Burton
- james.burton&signon.org.uk
-41258
- Jason R. Gonsalves
- Jason R. Gonsalves
- jason&gonsalves.ws
-41259
- Lullabot Consulting, Inc.
- Ben Chavet
- ben.chavet&lullabot.com
-41260
- Critical Link, LLC
- Dominic Giambo
- dominic&criticallink.com
-41261
- TraceVector
- Brandon McIntyre
- brandon&tracevector.com
-41262
- Institut National de Physique Nucléaire et de Physique des Particules
- Jean-Pierre Cachemiche
- cachemi&cppm.in2p3.fr
-41263
- Nutanix Inc.
- Binny Gill
- binny&nutanix.com
-41264
- Kent and Essex Police IT Directorate
- Mark Williams
- mark.williams&kent.pnn.police.uk
-41265
- infOpen
- Alexandre Chaussier
- alexandre.chaussier&infopen.pro
-41266
- Igor Posledov
- Igor Posledov
- i.posledov&gmail.com
-41267
- Benbro Electronics Pty Ltd
- John Bennett
- pben&ozemail.com.au
-41268
- Elsicom Ltd.
- Roman Burdin
- roman&elsicom.ru
-41269
- Dr. V.M.Ponzoni ICT Outsourcing
- Vittorio Massimo Ponzoni
- ponzoni&linux.it
-41270
- Vibicom Communications Inc.
- John Martin
- john&vibicom.com
-41271
- Ondot Systems, Inc.
- Kannan Konath
- kannan&ondotsystems.com
-41272
- Cascade Microtech, Inc.
- Paul Curtis
- paul.curtis&cmicro.com
-41273
- Lakehead University
- Timo Miettinen
- tomietti&lakeheadu.ca
-41274
- Bluwan S.A
- Cedric Gaston-Bellegarde
- cbellegarde&bluwan.com
-41275
- Kapsch Telematic Services Sp. z o.o.
- Arkadiusz Sobota
- arkadiusz.sobota&kapsch.net
-41276
- BCi Limited
- Pierre Drezet
- pierre.drezet&bci.eu.com
-41277
- Computer System Corp.
- KEIICHI TAMURA
- tamura&computer-system.jp
-41278
- Stateless Networks
- Rob Meadows
- rob&statelessnetworks.com
-41279
- Danish Broadcasting Corporation
- Stefan B. Christensen
- sebc&dr.dk
-41280
- Neul Limited
- Andrew Dawson
- Andrew.Dawson&neul.com
-41281
- tols.org
- Marco van Tol
- snmp&tols.org
-41282
- SpeechStorm Ltd.
- Michael Orr
- iana&speechstorm.com
-41283
- IEX Group, LLC
- PEN Administrator
- pen_admin&iextrading.com
-41284
- Celestech, Inc
- Skip Penny
- skip.penny&celestech.com
-41285
- Clemex Technologies Inc
- Pierre-Steve Girard
- psgirard&clemex.com
-41286
- The Libreswan Project
- Tuomo Soini
- team&libreswan.org
-41287
- Red Bull GmbH
- Michael Gauss
- michael.gauss&at.redbull.com
-41288
- J.D. Irving, Limited, IT Division
- Kevin McDonough
- McDonough.Kevin&jdirving.com
-41289
- Lanaccess Telecom
- Xavier Oliva
- xavier.oliva&lanaccess.es
-41290
- o3, d.o.o.
- Gorazd Rogelj
- gorazd&ooo.si
-41291
- LEO Pharma A/S
- Kurt Bernhardt
- kurt.bernhardt&leo-pharma.com
-41292
- LSU Health System
- John Mire
- Shv-IT-Security&lsuhsc.edu
-41293
- Taylor Innovations, LLC
- Charles Taylor
- taylorc&tinnov.net
-41294
- Datafrog
- Chen Shuai
- chenshuai&data-frog.com
-41295
- Andalusia Group
- Shaaban Refay
- Shaaban.aly&andalusiagroup.net
-41296
- E-Gate Communications Inc.
- Gary Giesen
- ggiesen&egate.net
-41297
- Nextech Co.,Ltd
- Tatsumi Ueda
- t-ueda&nextech.co.jp
-41298
- BRGFrauengasse
- Stefan Hagmann
- webmaster&bgbaden-frauen.ac.at
-41299
- Infodom d.o.o.
- Damir Kus
- infodom-sw&infodom.hr
-41300
- Deganius
- Christof Thalhofer
- info&deganius.de
-41301
- CSF Scientific Computing Core
- Andras Aszodi
- andras.aszodi&csf.ac.at
-41302
- Unified Technology Ltd
- Phil Robinson
- philrobinson&unified-technology.co.uk
-41303
- Six Degrees Managed Data Ltd
- Timothy Arnold
- timothy.arnold&6dg.co.uk
-41304
- QiNet SRL
- Marco Poet
- marco.poet&qinet.it
-41305
- Schoch-IT UG
- Steffen Schoch
- steffen.schoch&schochit.de
-41306
- Columbus College of Art & Design
- Jeremiah Shifflet
- Licensing&ccad.edu
-41307
- LDS Technology Group
- DeYung Le
- deyung&ldstg.com
-41308
- ALCO Aircraft
- John Hemphill
- jhemphill&alco.aero
-41309
- Inter Dimensional Space Port
- HRH James Rook
- royaladmin&inter-dimensional-space-port.net
-41310
- dwApi, Ltd.
- Dennis Warner
- dennislv&gmail.com
-41311
- Missouri Western State University
- Fred Nesslage
- nesslage&missouriwestern.edu
-41312
- Netscreens LTD.
- Itay Pollak
- itay.p&netscreens.tv
-41313
- OLTRI LLC
- Dmitry Kuzmin
- dmitry.kuzmin&oltri.ru
-41314
- A.E.Q. Aplicaciones Electrónicas Quasar
- Miguel Sancho
- msancho&aeq.es
-41315
- Recording Enterprise Solution (R.E.S.)
- Mr. Gabriele Bovo
- gbovo&resnet.it
-41316
- Velocimetrics Ltd
- Bill Nokes
- bill.nokes&velocimetrics.com
-41317
- DAC Beachcroft LLP
- Tom Bowyer
- tbowyer&dacbeachcroft.com
-41318
- Adaptavist
- Gerrard Geldenhuis
- ggeldenhuis&adaptavist.com
-41319
- Netbuilder S.r.l.
- Andrea Soracchi
- info&netbuilder.it
-41320
- Diagnosoft
- Donel Tani
- donel.tani&diagnosoft.com
-41321
- Commsky Technologies(HangZhou)Co.,Ltd.
- Kong XiaoHai
- skong&commsky.com
-41322
- Time-O-Matic, Inc.
- Carl Roth
- carl.roth&timeomatic.com
-41323
- Reid Hospital & Health Care Services
- Tim Love
- Tim.Love&ReidHospital.org
-41324
- Centre de services partagés du Québec
- Guy Painchaud
- guy.painchaud&cspq.gouv.qc.ca
-41325
- Uber Technologies, Inc.
- Tim Tickel
- twt&uber.com
-41326
- Dangerous Linux
- Douglas Danger Manley
- doug.manley&gmail.com
-41327
- Radiology.io, Inc
- Cody Ebberson
- cody&radiology.io
-41328
- blackned GmbH
- Fred Schulz
- fschulz&blackned.de
-41329
- Soncatec Oy
- Tuomas Harju
- tuomas.harju&soncatec.com
-41330
- Eurotoll
- Alexis de Warren
- alexis.dewarren&eurotoll.fr
-41331
- NxtGrid Ltd
- Ioannis Vlachos
- info&nxtgrid.com
-41332
- Fourth Watch Business Continuity Services LC
- Lawrence D Landis
- ldl&linux.com
-41333
- ShenZhen Great Electronic Technology Co., LTD
- John Xie
- xie&greatele.com
-41334
- Feldhaus - Uhlenbrock Sicherheit &Technik GmbH
- Franz Josef Feldhaus
- feldhaus&feldhaus-uhlenbrock.de
-41335
- AMPEG GmbH
- Peter Graf
- info&ampeg.de
-41336
- UEL - Universidade Estadual de Londrina
- Fernando Favero
- favero&uel.br
-41337
- WingSystem Rst. inc.
- Takashi Kurashima
- kurashima&wing21.co.jp
-41338
- Imagination Team
- Larry Stein
- larry.stein&imaginationteam.net
-41339
- Duons
- Dominique Poirier
- Dominique.Poirier&duons.com
-41340
- Friedrich Miescher Institute for Biomedical Research
- Dean Flanders
- dean.flanders&fmi.ch
-41341
- Knobbe, Martens, Olson & Bear, LLP.
- Howard Goble
- hpg&kmob.com
-41342
- IMAIOS SAS
- Denis HOA
- contact&imaios.com
-41343
- Qihong Computer Science & Technology Co. Ltd
- Shusheng Heng
- simon&qihong.com.cn
-41344
- FirmWin software technology Co. Ltd
- LINJIE LI
- li_lj&firmwin.com
-41345
- Nectar Services Corporation
- Zachary D Rowitsch
- zrowitsch&nectarcorp.com
-41346
- Certiwise
- Benoit Malchrowicz
- admin&certiwise.com
-41347
- Comsys Bärtsch AG
- Christoph Sigrist
- cs&cbmail.ch
-41348
- Ronyo
- Jiří Hrivňák
- hrivnak&ronyo.cz
-41349
- Enigmedia
- Iñigo Belamendia
- sistemas&enigmedia.eu
-41350
- ITManx Ltd
- Christian Salway
- ccsalway&itmanx.com
-41351
- FJM Security Solutions, LLC
- Don Knopf
- DonK.SS&Frontier.com
-41352
- Paychex, Inc.
- David Muench
- dmuench&paychex.com
-41353
- Waukegan Public Schools
- David Weate
- dweate&wps60.org
-41354
- Parker Poe Adams and Bernstein, LLP
- Tony Brock
- netops&parkerpoe.com
-41355
- Optic Cloud Technology Co,.Ltd
- Li Yue
- gr.route&gmail.com
-41356
- Tufts Clinical and Translational Science Institute
- Corey Zelinski
- czelinski&tuftsmedicalcenter.org
-41357
- Groupe Clarins
- Philippe Rousselin
- oid.admin&clarins.net
-41358
- JSC «AMB Bank»
- Ruslan Zarvanskiy
- rzarvansky&ambbank.ru
-41359
- Triax AS
- Assil Chehade
- ach&triax.dk
-41360
- Prodrive B.V.
- Krzysztof Olejarczyk
- krzysztof.olejarczyk&prodrive.nl
-41361
- KYOS SARL
- Martino Dell'Ambrogio
- martino.dellambrogio&kyos.ch
-41362
- Transport Department, HKSARG
- Lai Man WONG
- SE-IT-TTSD&td.gov.hk
-41363
- Naunet Corporation
- Michael Trausch
- mbt&naunetcorp.com
-41364
- MIRACLE Information Systems GmbH
- Harald Plank
- plank&miracle.at
-41365
- Avon and Wiltshire Mental Health Partnership NHS Trust
- Paul Monteith
- paulmonteith&nhs.net
-41366
- Citelum
- Maxime Morelon
- dsi.infra&citelum.com
-41367
- A.T.WORKS, Inc.
- Michiaki Abe
- develop&atworks.co.jp
-41368
- Nilsoft Janko Debenjak s.p.
- Janko Debenjak
- janko.debenjak&gmail.com
-41369
- Burri IT Systems
- Chris Burri
- chris.burri&burrit.ch
-41370
- JHome Consulting, Ltd.
- Jose A. Dominguez
- jad&jhome.com
-41371
- 2ndQuadrant
- Craig Ringer
- craig&2ndquadrant.com
-41372
- ConVista Consulting AG
- Manuel Bermedo
- support&convista.com
-41373
- Seawind Sud America
- Patrick McColl
- pmccoll&rms.co.cl
-41374
- Fachschaftsrat Elektrotechnik an der TU Dresden
- Sebastian Wienforth
- sebaw&fsret.de
-41375
- Switching Power Inc.
- David Kravitz
- davek&switchpwr.com
-41376
- Hivecast Corporation
- Joe Abley
- jabley&hivecast.net
-41377
- IONHT CO.,LTD
- Mingrui Qu
- qumingrui&ionht.com
-41378
- Rodnik SPE, Inc.
- Alexey Noskov
- alexey&rodnik.ru
-41379
- Miros AS
- Hein Gustavsen
- hein&miros.no
-41380
- KORUS Consulting SNG Ltd
- Alex Zaharow
- Alex-Zaharow&yandex.ru
-41381
- CJSC NEC Neva Communications Systems
- Sergey Leshkin
- s.leshkin&nec.ru
-41382
- Fundacion Social Camara Chilena de la Construccion
- Juan M. Contreras
- jcontreras&fundacioncchc.cl
-41383
- DURR Systems GmbH
- PFS R&D, Marius Schommer
- ES_Software&durr.com
-41384
- Zakład Usług Informatycznych OTAGO Sp. z o.o.
- Rafał Voss
- rafal.voss&otago.pl
-41385
- Deep Sea Electronics plc
- Scott Preece
- scott.preece&dsedevelopment.com
-41386
- SYBORG Informationssysteme b.h. OHG
- Robert Lander
- snmp.iana&syborg.de
-41387
- Nest Labs
- John A. Vink
- jav&nestlabs.com
-41388
- IRIS Analytics GmbH
- Nikolaus D. Bayer
- admin&iris.de
-41389
- Smarsh Inc
- Brent Jones
- bjones&smarsh.com
-41390
- Suzhou Anke Medical System Co., LTD
- Weihua Cai
- weihuacai&tom.com
-41391
- OOO TFPK
- Andrey Balakin
- avb&smarket.ua
-41392
- Livesport s.r.o.
- Robert Vojcik
- robert.vojcik&livesport.eu
-41393
- Oh Leck!
- Jan Niklas Fingerle
- jan.niklas&fingerle.org
-41394
- quarxConnect
- Bernd Holzmüller
- operations&quarxconnect.de
-41395
- Codiac GmbH
- Jan Moritz Meyer
- jmm&codiac.de
-41396
- V-Nova Ltd
- Sam Littlewood
- systems&v-nova.com
-41397
- ARAG SE
- Joachim Meier
- joachim.meier&arag.de
-41398
- Micaela Gasper LMT
- Micaela Gasper
- micaelagasper&gmail.com
-41399
- Groupe Dynamite Inc.
- JF. Gauthier
- jgauthier&dynamite.ca
-41400
- ECCEL CORP
- Asdrubal Espitia
- asdrubal&eccel.co
-41401
- Northwest Savings Bank
- Nathan Lindberg
- nlindberg&nwbcorp.com
-41402
- NMS Guru, Inc
- Daniel L. Needles
- guru&nmsguru.com
-41403
- Apcera, Inc.
- Phil Pennock
- noc&apcera.com
-41404
- Rayan Roshd Electronic
- Alireza Taghavi
- taghavi&rayroshd.com
-41405
- FrontRange Solutions
- Frank Tadman
- frank.tadman&frontrange.com
-41406
- focom limited
- Andy Miller
- andy.miller&focom.com
-41407
- Commune de Blonay
- Jean-Marc Guex
- vgt&blonay.ch
-41408
- Strix d.o.o.
- Darija Tadin-Đurović, dipl. ing
- dtadin&strix.hr
-41409
- CDJEM
- Chris Brouwer
- lt.brouwer&cdjem.nl
-41410
- NTS Netzwerk Telekom Service AG
- Evelyn Riha
- evelyn.riha&nts.eu
-41411
- ThinkSkink S.A. de C.V
- Valentin Petre
- vali&thinkskink.com
-41412
- Innovative Technical Decisions LTD
- Lev Vanyan
- lev.vanyan&xcs.com.ua
-41413
- Xetawave, LLC
- Robert Campbell
- robert&xetawave.com
-41414
- Systeme-U (GIE Iris)
- Kowalski Cédric
- supervision&systeme-u.fr
-41415
- Lucile Packard Children's Hospital at Stanford
- Sreedhar Madullapalli
- Smadullapalli&lpch.org
-41416
- Futura Retail Solution AG
- Klaus Pittig
- klaus.pittig&futura4retail.com
-41417
- rosemann software GmbH
- Carsten Rosemann
- info&rosemann-software.de
-41418
- Toopher, Inc
- Drew Shafer
- drew&toopher.com
-41419
- Schlenkermann
- Philipp Schlenkermann
- iana&schlenkermann.de
-41420
- Comunicación y Tecnología Araos LTDA
- Alvaro Araos
- alvaro&araos.cl
-41421
- Arizona Engineered Products LLC
- Chuck Amy
- camy&azep.us
-41422
- Vello Systems Inc.
- Sudhir Dhankhar
- sudhir&vellosystems.com
-41423
- Horasphere Inc.
- Lou Simard
- lou.simard&horasphere.com
-41424
- National Computer Board
- Vyankoj Mulloo
- vmulloo&goc.gov.mu
-41425
- iQsim
- Thierry Sudre
- sudre&iqsim.com
-41426
- Flexlab Ltd.
- Wagan Sarukhanov
- wagan&flexlab.ru
-41427
- Benbria
- Peter Menhart
- pmenhart&benbria.com
-41428
- Otter Tail Power Company
- Thomas Obowa
- tobowa&otpco.com
-41429
- Incoax Networks Europe AB
- Anders Holmström
- anders&incoax.com
-41430
- New Zealand Ministry of Business, Innovation and Employment
- Tony Murray
- tony.murray&mbie.govt.nz
-41431
- Tahiti Nui Arena
- Leonard TAVAE
- abel&tna.pf
-41432
- Bernhard Czech
- Bernhard Czech
- info&bernhard-czech.de
-41433
- GROWMARK, Inc.
- Scott Bross
- sbross&growmark.com
-41434
- Rolamasao.org
- Noel Torres
- envite&rolamasao.org
-41435
- Smart Associates Limited
- Huw Ringer
- Huw&smart-associates.biz
-41436
- Allwin Telecommunication Co., Ltd.
- Zhenghua Du
- allwintel&126.com
-41437
- Geoffroy Gramaize
- Geoffroy Gramaize
- geoffroy.iana&gramaize.eu
-41438
- HITOTEK Co.,Ltd
- Evane Yuan
- ht_vanyuan&163.com
-41439
- Moscow Psychological and Social University
- Alexandr Zapasna
- zapasna&mpsu.ru
-41440
- Stabilus GmbH
- Mark Krämer
- mkraemer&stabilus.com
-41441
- Tohoku University
- Futoshi Arima
- arima&bureau.tohoku.ac.jp
-41442
- Berger Gunkel IT Systeme GmbH
- Andreas Berger
- aberger&berger-gunkel.de
-41443
- Evotope AS
- Reidar Jortveit
- post&bitfrost.no
-41444
- Syslore Oy
- Juha Sadeharju
- info&syslore.com
-41445
- Broadcast Over cellular
- Michel Matsumoto
- michel_is_here&yahoo.com
-41446
- APEX Medicus UAB
- Mindaugas Ziemelis
- mindaugas&apex.lt
-41447
- INGECOM
- Daniel Inaebnit
- inaebnit&ingecom.ch
-41448
- Electronic Tolling Société Habilitée fournissant un service de Télépéage (toll service provider) Front End
- Michael Kraftl
- michael.kraftl&siemens.com
-41449
- Teranga-Software
- Germain PIGEON
- germain.pigeon&teranga-software.com
-41450
- SheepDip Project
- Mike Farnworth
- g8jci&users.sourceforge.net
-41451
- Candid Color Systems, Inc.
- Daryl Simic
- daryl&candid.com
-41452
- LUISLAIN.COM
- Luis Lain
- luislain&luislain.com
-41453
- Decura IM LLP
- Dan Atkinson
- itservices&decuragroup.com
-41454
- Globig Consulting
- Mathias Globig
- mathias&globig-consulting.de
-41455
- International Radio and Electronics Corporation (formerly 'Chrisso Technologies, LLC')
- Don Pettifor
- dpettifor&irec1.com
-41456
- Tintri Inc.
- Rajiv Dharmadhikari
- rajiv&tintri.com
-41457
- Bauman Moscow State Technical University (BMSTU)
- Ostrikov Sergey
- ostrikov&bmstu.ru
-41458
- Ensoft Ltd
- Patrick Smears
- patrick.smears&ensoft.co.uk
-41459
- Cofely Zuid Nederland BV
- Marco Mans
- marco.mans&cofely-gdfsuez.nl
-41460
- Bundesnotarkammer
- Stefan Semmelroggen
- itp&bnotk.de
-41461
- ELMITEL d.o.o.
- Matej Serc
- matej.serc&elmitel.com
-41462
- Actiontec Electronics Inc.
- Brian Henrichs
- bhenrichs&actiontec.com
-41463
- Air Internet Service Co.,Ltd.
- Masahiro Tanaka
- tanaka&air.ad.jp
-41464
- MAXIOL Ltd.
- Max Bagaev
- root&maxiol.com
-41465
- DiceLock Security, SL
- Angel J. Ferré Herrero
- aferre&dicelocksecurity.com
-41466
- JAKE Pty Ltd
- James Komninos
- jamesk&jake.com.au
-41467
- Shanghai iComhome Co., Ltd.
- Wenjie Xu
- woixwj&hotmail.com
-41468
- Zakład Ubezpieczeń Społecznych
- Piotr Gembala
- gembalap&zus.pl
-41469
- Lactalis Danmark
- Andreas Sobczyk
- andreas.sobczyk&lactalis.dk
-41470
- IMAGiNA Visión Artificial S. L.
- Santiago Cabello
- scabello&eimagina.net
-41471
- Basware (formerly 'Basware Belgium')
- Etienne Abe
- etienne.abe&basware.com
-41472
- PKP CARGO S.A.
- Biuro Teleinformatyki
- sekretariat.cci&pkp-cargo.eu
-41473
- Overseas Private Investment Corporation
- Jason Figley
- ciso&opic.gov
-41474
- Pascagoula School District
- Brian Camp
- bcamp&psd.ms
-41475
- Shenzhen Tencent computer system Co., Ltd.
- air yao
- airyao&tencent.com
-41476
- LightSquared
- David Ishmael
- david.ishmael&lightsquared.com
-41477
- Computer Systems Institute
- Vadim Golub
- tss&csinow.com
-41478
- ExtremFarm Ltd.
- Simukov Pavel
- pan&extrem-f.ru
-41479
- Koenig & Bauer AG Werk Bielefeld
- Joern Sacher
- jsacher&kba-bielefeld.de
-41480
- LA DETECTION ELECTRONIQUE FRANCAISE - DEF
- Eddy GERVINET
- eddy.gervinet&def-online.com
-41481
- MedischeGegevens.nl
- Dave Franken
- d.franken&propredict.nl
-41482
- Yubico
- Simon Josefsson
- simon&josefsson.org
-41483
- 4Safe Advanced Solutions
- Florin BARBU
- florin.barbu&4safe.ro
-41484
- VidOvation - Moving Video Forward
- Jim Jachetta
- jimj&vidovation.com
-41485
- FPX, LLC
- Robert Streich
- robert.streich&fpx.com
-41486
- Sargent & Lundy, L.L.C.
- Christine Berns
- christine.m.berns&sargentlundy.com
-41487
- Ostrovok.ru
- Evgeny Kuryshev
- mail-root&ostrovok.ru
-41488
- City of Naperville
- Brian Groth
- grothb&naperville.il.us
-41489
- Hakwerk IT B.V.
- Arjan Hakkesteegt
- arjan&hakwerk-it.nl
-41490
- SUNGSAM CO., Ltd.
- JUNGIN BYUN
- jibyun&sungsam.co.kr
-41491
- KDDI Web Communications Inc.
- Yosuke Abe
- tech&kddi-web.com
-41492
- Mobtechonline
- Alexey Stupnikov
- astupnikov&m-t-o.ru
-41493
- Bangkok Pacific Steel Co., Ltd.
- Sutthisak Liwsakul
- admin&bpssteel.com
-41494
- Hydac Verwaltung GmbH
- Eric Kleinpeter
- pkiadmin&hydac.com
-41495
- Northgas
- Gasov Vladimir
- gasov&northgas.ru
-41496
- Dedicated Network Partners
- Petteri Hamalainen
- petteri.hamalainen&dnwpartners.com
-41497
- Optimus S.A.
- Ferran Girones
- fgirones&optimus.cat
-41498
- SCHOTT AG
- Marcus Urban
- marcus.urban&schott.com
-41499
- Orgacomm international S.A.
- Matthias Bacher
- info&orgacomm.lu
-41500
- faboleon bonaparte
- faboleon bonaparte
- faboleon.bonaparte&outlook.com
-41501
- Afghanistan Root Certification Authority (ARCA)
- Zmarialai Wafa
- zmarialai.wafa&mcit.gov.af
-41502
- Balogh SA
- Frederic Tahon
- webmaster&balogh-rfid.com
-41503
- St. Tammany Parish Hospital
- Cherie Faucheux
- cfaucheux&stph.org
-41504
- Les solutions Asentri inc
- Denis Samson
- denis.samson&asentri.com
-41505
- ALLIANCE AVIA
- Konstantin Nikolaev
- techreports&alavia.ru
-41506
- Maniilaq Association
- Wayne Hogue
- whogue&maniilaq.org
-41507
- Cloud21
- Matthew Charles Wicks
- matthew.wicks&cloud21.net
-41508
- Rest Network
- Shoko Ranni
- it&RestCloud.net
-41509
- SPING
- Jan Gerard Snip
- j.g.snip&sping.nl
-41510
- NAS Recruitment Communications
- Eric Brill
- se&nasrecruitment.com
-41511
- Municipality of Athens
- Panagiotis Skarvelis
- admin&cityofathens.gr
-41512
- DENSAN.CO.,LTD.
- YUICHIRO HIRATA
- yhirata&densan.co.jp
-41513
- Autonomy Systems Limited
- Matt Diakun
- cmbg-sysadmin&autonomy.com
-41514
- LiHAS - Adrian Reyer
- Adrian Reyer
- iana-contact&lihas.de
-41515
- QUADRAC Co. Ltd.
- Tatsuo ITABASHI
- tatsuo.itabashi&quadrac.co.jp
-41516
- SaitecSrl
- Lorenzo Salvadori
- lorenzo.salvadori&saitecsrl.com
-41517
- Eagle Electronics
- michael barker
- mab.eagle&virgin.net
-41518
- Ingram Content Group
- Daniel Owen
- daniel.owen&ingramcontent.com
-41519
- OpenADR Alliance
- Oscar Marcia
- o.marcia&networkfx.net
-41520
- Jakub Juszczakiewicz
- Jakub Juszczakiewicz
- jakub.juszczakiewicz&siewca.net.pl
-41521
- Zebsys Ltd
- Geoff Hall
- ghall&zebsys.com
-41522
- www.info-x.org
- Payvin Nikita
- nekit&info-x.org
-41523
- Cloudseed
- Ian Freislich
- ianf&cloudseed.co.za
-41524
- Neratec Solutions AG
- Andreas Schwarz
- andreas.schwarz&neratec.com
-41525
- Hubject GmbH
- Thomas Thamm
- thomas.thamm&hubject.com
-41526
- MJP Communications Ltd
- Kevin Patterson
- Kevin&mjpcommunications.com
-41527
- Paperless
- Eduardo Troncoso
- etroncoso&paperlessla.com
-41528
- Dunder Mifflin
- William Steiner
- bills&bravanet.org
-41529
- Zenerji, LLC
- Young H. Etheridge
- yhe&yheville.net
-41530
- USIX Co., Ltd.
- Jung Soo Chul
- steve&usix.co.kr
-41531
- Basic., INC.
- Akira Ohta
- ohta&basic.co.jp
-41532
- Quick2Wire Limited
- Romilly Cocking
- romilly&quick2wire.com
-41533
- CDS Call Dispatch Scholz GmbH
- Michael Weinberger
- mw-it&cdsnet.de
-41534
- VoiceHost Ltd
- Ross Beer
- support&voicehost.co.uk
-41535
- Cleo Communications US, LLC
- Kevin Pearson
- IT&cleo.com
-41536
- Vix Technology
- Andy Avery
- andy.avery&vixtechnology.com
-41537
- U.P. Joven Club de Computación y Electrónica
- Carlos Raúl Laguna Mendoza
- carlosr&jovenclub.cu
-41538
- DARC e.V. OV Freiburg
- Leopold Schabel
- darc&leoschabel.de
-41539
- RAGged Software
- Roy A. Gilmore
- rag&ragged-software.com
-41540
- Intelligent Software Solutions, Inc.
- Michael Auer
- michael.auer&issinc.com
-41541
- Ardral Co.
- Jeremy Willans
- admin&ardral.co
-41542
- Monnit Corporation
- Kelly Lewis
- kellyl&monnit.com
-41543
- Advanced Power Laboratories
- John Detrick
- johnd&advancedpowerlaboratories.com
-41544
- Fish Eagle Limited
- Tony Murray
- tony&fish-eagle.net
-41545
- Gravity Networks
- Reid Nilson
- reid.nilson&gmail.com
-41546
- Innologica JSC
- Yordan Yordanov
- yordan.yordanov&innologica.com
-41547
- MOVASIM
- Leonardo Massazza
- leonardo.massazza&movasim.com
-41548
- Laimbock Consulting
- Patrick Laimbock
- oid-admin&laimbock.com
-41549
- runtastic GmbH
- Gerhard Sulzberger
- gerhard.sulzberger&runtastic.com
-41550
- Interlogica
- Manuel Giorgini
- manuel.giorgini&interlogica.it
-41551
- Navayo Research Kft.
- Gabor Kaszas
- snmp&navayo.net
-41552
- Compagnie Nationale des Commissaires aux Comptes
- Adminsys team / équipe des administrateurs système (Marc-Aurèle DARCHE)
- admin&cncc.fr
-41553
- Spellpoint Oy
- Janne Sirén
- info&spellpoint.fi
-41554
- ITX Secrurity
- Summer Kim
- Summer&itxsecurity.com
-41555
- ECOIT
- Oh JunSeok
- ignatius000&gmail.com
-41556
- Fexco Merchant Services LTD
- Micheal O Shea
- mioshea&fexco.com
-41557
- AutoUplink Tech
- Collin Gilbert
- cgilbert&autouplinktech.com
-41558
- DigitalSignal
- Petri Stenberg
- petri&digitalsignal.se
-41559
- GRUP SERHS, S.A.
- Albert Orriols Cabané
- albert.orriols&grupserhs.com
-41560
- Landesforsten Rheinland-Pfalz
- Tobias Helfenstein
- tobias.helfenstein&wald-rlp.de
-41561
- Inteligo Financial Services SA
- Emil Wolski
- emil.wolski&inteligo.pl
-41562
- Nexiens
- Mohamed Badri
- mohamed&nexiens.ma
-41563
- BioLink Solutions Ltd.
- Ruslan Marin
- alexanderi&biolink.ru
-41564
- Selectel LLC.
- Igor Shestakov
- shine&selectel.ru
-41565
- Ministry of Taxes of the Republic of Azerbaijan
- Eyyub Ibrahimov
- Eyyub.Ibrahimov&taxes.gov.az
-41566
- amagical.net
- Jan Baier
- jan.baier&amagical.net
-41567
- A B Gensets Inc.
- Jonas Bauman
- jonas&abgensets.com
-41568
- Sokuda Technologies(Beijing), Inc.
- cui chunfeng
- xiaocui&sokuda.com
-41569
- Mobile Interactiva S.L.
- Jorge Calavia
- jcalavia&mobileinteractiva.com
-41570
- 9bit, Borut Mrak s.p.
- Borut Mrak
- hostmaster&9bit.biz
-41571
- Global Linking Solutions
- Brandon Phelps
- bphelps&gls.com
-41572
- BRS Labs
- Anthony Akins
- Asakins&brslabs.com
-41573
- ITRun Consulting Sp. z o.o.
- Jacek Nowicki
- office&itrun.pl
-41574
- UNIÃO BRASILEIRA DOS ESTUDANTES SECUNDARISTAS
- Ronaldo Batista Da Silva
- rbatista1&ig.com.br
-41575
- Modern Woodmen of America
- Brian Rathke
- brian.rathke&modern-woodmen.org
-41576
- Uniao Nacional dos Estudantes
- Ronaldo Batista Da Silva
- rbatista1&ig.com.br
-41577
- Car Connectivity Consortium
- Rebecca Goldberg
- admin&carconnectivity.org
-41578
- MAC IT Solutions
- Marco Antonio Carcano
- info&macitsolutions.ch
-41579
- Teraoka Seiko Co., Ltd.
- Mitsuyoshi Madokoro
- m.madokoro&digi.jp
-41580
- Homer Electric Association, Inc.
- Marvin Super
- msuper&homerelectric.com
-41581
- RB Generalekonomik
- Aleksandar Kostic
- akostic&geneko.rs
-41582
- Maksat Tech Pvt Ltd
- Ankush Malhotra
- ankush.malhotra&gmail.com
-41583
- ZAO NHK
- Sergey Afanas'ev
- it&nhk.ru
-41584
- GCC Ltd.
- Roman Yakubov
- R.Yakubov&IBPost.ru
-41585
- EILEO
- Matthieu Jacquier
- services&eileo.com
-41586
- ENSTEAM Sp. z o.o. (c/o E-FISH Sp. z o.o.)
- Tomasz Krakowiak
- tomasz.krakowiak&ensteam.com
-41587
- HOLLY&Co.,Ltd.
- Masafumi Horimoto
- horimoto&holly-linux.com
-41588
- Shumilov Nikita Sergeevich
- Nikita Shumilov
- nikita307&icloud.com
-41589
- Jolokia
- John Mitchell
- mitch&jolokianetworks.com
-41590
- Wirtschaftsagentur Wien. Ein Fonds der Stadt Wien.
- Ruediger Swoboda
- administrator&wirtschaftsagentur.at
-41591
- Sipi srl
- Lorenzo Balliana
- lorenzo.balliana&sipi.it
-41592
- Evanti
- Alik Kalmykov
- kalmykov.alik&gmail.com
-41593
- Sard Verbinnen & Co
- Randal Bridges
- it&sardverb.com
-41594
- LLC "Ekb-Info"
- Andrey Volkov
- volkov.am&ekb-info.ru
-41595
- Genesis Technical Systems Corp
- Stephen Cooke
- snmp-admin&genesistechsys.com
-41596
- HornersCorners, LLC
- Jim Horner
- jim&hornerscorners.us
-41597
- RFEvolution s.r.l.
- Luigi Fazio
- lfazio&rfebroadcast.com
-41598
- Instituto Federal Catarinense - Campus Concórdia
- jonas antunes da silva
- jonas.antunes&ifc-concordia.edu.br
-41599
- University of the Philippines - Diliman
- Byron V. Maniquis
- support&upd.edu.ph
-41600
- ABDUL KHALEK STORE
- RAKIBUL ISLAM KHOCON
- KHOCONSUKURVANGGA&GMAIL.COM
-41601
- Myriad Group AG
- Stephen Kershaw
- stephen.kershaw&myriadgroup.com
-41602
- Links Global Services, C.A.
- Loris Santamaria
- loris&lgs.com.ve
-41603
- SOMANSA Co., Ltd
- Yong Pil Hur
- yphuh&somansa.com
-41604
- Monitor Electric Joint Stock Company
- Alexey Oblog
- Aleksey.Oblog&monitel.ru
-41605
- Georgia's Own Credit Union
- Thomas Stratton
- tastratton&georgiasown.org
-41606
- centrotherm photovoltaics AG
- Martin Schmidt
- ctpki&ngmail.eu
-41607
- One IP
- Ron Arts
- ron.arts&oneip.nl
-41608
- EFP Rotenberg LLP
- Craig Julien
- cjulien&efprotenberg.com
-41609
- Kjempekjekt AS
- Sondre Eikanger Kvalø
- iana&kjempekjekt.no
-41610
- Aspectra AG
- Thomas Sauter
- thomas.sauter&aspectra.ch
-41611
- Bank Vontobel AG
- Pierre-Olivier Mangin
- seadmin&vontobel.ch
-41612
- Swisscom Energy Solution AG
- Bruno Hostalery
- bruno.hostalery&be-smart.ch
-41613
- Controles S.A.
- Alvaro Delacoste
- adelacoste&controles.com
-41614
- Eagleville Hospital
- Richard Mitchell
- rmitchell&eagleville.org
-41615
- Manhattan College
- Robert Moran
- software&manhattan.edu
-41616
- Weeo Group
- Jerome Herman
- jerome.herman&weeo.fr
-41617
- Sparta Consulting
- Ben Tallman
- btallman&spartaconsulting.com
-41618
- OJSC Bank SGB
- Eduard Shcherbakov
- ed&severgazbank.ru
-41619
- Hospitality Alliance AG
- Katharina Störmer
- katharina.stoermer&ramada.de
-41620
- Eric Lakin
- Eric Lakin
- elakin&infohell.net
-41621
- Ministerio de Gobierno y Reforma del Estado
- Lucila Wilde
- internet&santafe.gov.ar
-41622
- XOR Media, Inc.
- Ralph Beck
- ralph.beck&xor-media.com
-41623
- One Tech Inc.
- OID Admin - Murat Kilic
- oidadmin&onetechinc.com
-41624
- Bell Aliant
- Greg Desveaux
- gregory.desveaux&bellaliant.ca
-41625
- Mended Duck Computer Services
- Adam Kittilson
- accounts&mendedduck.com
-41626
- Geller & Company LLC
- Omar Pena
- opena&gellerco.com
-41627
- Cenwell LTD
- Justin Shen
- justin&cenwell.com.tw
-41628
- Learning Media Ltd
- Richard Parratt
- richardparratt&learningmedia.co.nz
-41629
- Chakra Network Solutions Private Limited
- S.Sree hari nagarajan
- sree&chakranetwork.com
-41630
- SENSEMATIX
- Jothi Kumar
- jothi&sensematix.com
-41631
- Tasneem electronics LLC
- Mr. Ayman Narmug
- ayman&usg-jo.com
-41632
- PT.Bina Buana Raya
- Irwan Sulistiyono
- irwan&bbr.co.id
-41633
- Certivox Ltd.
- Stoyan Petkov
- system&certivox.com
-41634
- EDV Beratung Haag
- Peter Haag
- Peter&haagmail.de
-41635
- NBC Elettronica Group Srl
- Mr. Paolo Soldarelli
- elettronica&nbc-el.it
-41636
- Tolaris.com
- Tyler Wagner
- admin&tolaris.com
-41637
- Talia Ltd
- Tyler Wagner
- helpdesk&talia.net
-41638
- Socus networks
- Blake Wu
- bwu&socusnetworks.com
-41639
- SVSI
- Greg Wirth
- gwirth&svsiav.com
-41640
- Laconisoft LLC
- Bret Ewin
- R8pBsn1Jfva5TPFQ&laconisoft.com
-41641
- Colglazier Clinic
- Clifford Colglazier
- acolglaz&gpcom.net
-41642
- ThinKom Solutions, Inc.
- Stuart B. Coppedge
- Stuart.Coppedge&thinkom.com
-41643
- RCG Creations Limited
- Craig Goodenough
- craig&rcgcreations.com
-41644
- Cinegy GmbH
- Jan Weigner
- jan&cinegy.com
-41645
- Sinogram Technology (Beijing) Co., Ltd.
- enhe wu
- jealtw&hotmail.com
-41646
- QUADROtech Solutions AG
- Michel Zehnder
- michel.zehnder&quadrotech-it.com
-41647
- SpectrAp
- Samsonov Konstantin N.
- samsonov&spectrap.ru
-41648
- Shenzhen SDGI Optical Network Technologies Co,. Ltd.
- Zeng Dezhong
- zengdz&sdgi.com.cn
-41649
- Schnoor Industrieelektronik GmbH & Co. KG
- Henry Koplien
- entwicklung&schnoor-ins.com
-41650
- Engisoft
- David Acevedo
- d.acevedo&engisoft.com
-41651
- Dapesco S.A.
- Lorenzo BERNARDI
- lbi&dapesco.com
-41652
- IdentSign
- James Burton
- james.burton&identsign.com
-41653
- KCG Europe Ltd (formerly 'GETCO Europe Ltd')
- Duncan Gibb
- dgibb&kcg.com
-41654
- EAL (Apeldoorn) BV
- Jaap Jansen
- jaap.jansen&eal.nl
-41655
- CardSmart Technologies
- James Wiley
- jimwiley&yourcardsolution.com
-41656
- 2024Sight INC.
- Anton Hofland
- anton.hofland&2024sight.com
-41657
- Bressner Technology
- Dr. Olaf Holthausen
- olaf.holthausen&bressner.de
-41658
- United Business Media
- Michael Buglass
- michael.buglass&ubm.com
-41659
- Datasat Technologies Ltd
- Alex Brown
- alex.brown&datasattechnologies.com
-41660
- SciVisum Ltd
- Deri Jones
- snmp.mib&scivisum.co.uk
-41661
- SEKAS GmbH
- Michael Rosenberger
- webmaster&sekas.de
-41662
- Capio S:t Görans Sjukhus AB
- Nicklas Johannesen
- nicklas.johannesen&capiostgoran.se
-41663
- Philippe Bonatti
- Philippe Bonatti
- philippe&bonatti.ch
-41664
- Costaneira - Arno Johann S/A Comércio de Material de Construção
- Flávio Johann
- flavio.johann&costaneira.com.br
-41665
- George Flemming LLC
- George Flemming
- George&gflemming.com
-41666
- Government of Yukon
- Richard Wieser
- registrar&gov.yk.ca
-41667
- Park Bench Software
- Paul Messias
- pmessias&parkbenchsoftware.com
-41668
- The Evergreen State College
- Dan Scherck
- netservices&evergreen.edu
-41669
- Spiros Iliadis
- Spiros Iliadis
- spiros&iliadis.me
-41670
- AddOn Holding Gmbh
- Bernd Burkhardt
- burkhardt&addon.de
-41671
- Atelier WW Architekten SIA AG
- Klaus Leuders
- klaus.leuders&atelier-ww.ch
-41672
- TECMASUR CIA. LTDA.
- SANTIAGO REINO
- sreino&tecmasur.com.ec
-41673
- Lapsum
- Rafael de la Torre Consuegra
- rdelatorre&lapsum.com
-41674
- WAS.ch GmbH
- Dominik Fässler
- info&was.ch
-41675
- ArmOwl LAB (Roman V. Kosinskiy)
- Roman V. Kosinskiy
- armowl&list.ru
-41676
- Gordon Broom
- Gordon Broom
- gjbroom&thebrooms.ca
-41677
- Nicholas Brown
- Nicholas Brown
- nick&anatoll.org
-41678
- SIBOAVANCE
- Pablo Baena
- pbaena&siboavance.com.co
-41679
- OVNETAP
- Radomir Ochtyra
- radomir.ochtyra&ovnetap.com
-41680
- Media Netwerk AS
- Stig Christian Aske
- stigchristian&netwerk.no
-41681
- Chudyk Cloud Services
- Gerald Chudyk
- gerald&chudyk.com
-41682
- ASSEMBLY Organizing Oy
- Jaakko Vallo
- jaakko.vallo&assemblytv.net
-41683
- Nebula Media Solutions Ltd.
- Peter Jones
- peter.jones&nebula-media.co.uk
-41684
- Pyzuka
- Jeroen Dekkers
- iana&pyzuka.nl
-41685
- nfotex Informationstechnologie Dienstleistungs GmbH
- Raphael Wegmann
- wegmann&psi.co.at
-41686
- Uzin Utz AG
- Andreas Koegel
- andreas.koegel&uzin-utz.com
-41687
- Cold Crossing
- David Klann
- dklann&coldcrossing.com
-41688
- EOS Sistemi s.r.l.
- Tiziano Martelli
- tiziano&eos.it
-41689
- Thüga Aktiengesellschaft
- Christoph Mayer
- hostmaster&thuega.de
-41690
- Dension Audio Systems
- Tibor Fábi
- tfabi&dension.com
-41691
- Horizon Forest Products, LLP
- Jimmy Dixon
- jimmy.dixon&horizonforest.com
-41692
- Renee Marie Jones
- Renee Marie Jones
- rmj&renee-jones.com
-41693
- Nyingma Association of Mangalam Organizations - Communications And Network Infrastructure
- Lee Brown
- Administrator&RatnaLing.Org
-41694
- Christians Against Poverty
- Doug Targett
- dougtargett&capuk.org
-41695
- Translational Centre for Regenerative Medicine (TRM)
- Steffen Loeb
- pki&trm.uni-leipzig.de
-41696
- Actia Systems España SAU
- Jonathan Redondo
- jredondo&actiasystems.com
-41697
- European Central Bank
- Christoph Schaper
- dgisopsec&ecb.int
-41698
- Lucas-Consulting
- Andreas Lucas
- andreas&lucas-consulting.net
-41699
- LGS Innovations
- Bobby Dimmette
- bjd&lgsinnovations.com
-41700
- eyeReturn Marketing Inc.
- Kenneth Voort
- kvoort&eyereturn.com
-41701
- Jarvis Ford
- Craig Williams (IT Manager)
- it&jarviscars.com.au
-41702
- Levart Distribution Systems Pty. Ltd.
- Andrew Simmonds
- andrew&levart.com.au
-41703
- ATM-12
- Vitaly Bodin
- vitbo&atm12.ru
-41704
- Neoflow. Co., Ltd.
- Daisuke Ota
- daisuke&neoflow.jp
-41705
- Institutul de Dezvoltare a Societatii Informationale
- Andrei Rusu
- andrei.rusu&idsi.md
-41706
- Trollhattan Stad IT
- Magnus Danhage
- magnus.danhage&trollhattan.se
-41707
- Solbox Inc.
- Hyunkyu Kim
- arhes&solbox.com
-41708
- Superior Access Solutions, Inc.
- Dave Werdin
- dwerdin&sa-solutions.com
-41709
- EAP Technologies, Inc.
- Roland Alden or Brenda Cundy
- ralden&ralden.com
-41710
- ATES Networks
- Alexandre Ioachim
- aioachim&atesnetworks.com
-41711
- Dossia
- Steve Allman
- steve.allman&dossia.org
-41712
- ISTHARI
- JOSE FELIX HERNANDEZ BARRIO
- jose.hernandez&isthari.com
-41713
- Melet.com
- John Melet
- john&melet.com
-41714
- Azuki Systems, Inc.
- Keith Bilafer
- keith.bilafer&azukisystems.com
-41715
- Universal Cinema Services Co., Ltd.
- Tang Liguo
- lgtang&sina.com
-41716
- Rational Retention, LLC
- Konstantin Mertsalov
- support&rationalretention.com
-41717
- Blekinge Institute of Technology
- Patrik Arlos
- patrik.arlos&bth.se
-41718
- Ouroboros
- Claude Dehais
- cdehais&ouroboros.fr
-41719
- Qosmotec GmbH
- Axel C. Voigt
- acv&qosmotec.com
-41720
- Saisei Networks Inc
- John Harper
- john&saiseinetworks.com
-41721
- International Communications Corporation INC
- Keith Alexis
- keith.alexis&intcomcorp.com
-41722
- Information Networks Ltd.
- Dmitry G Shin
- dmitry.s&hsdn.org
-41723
- XGEN - Web Business
- Fabiano Cainelli
- xgen.snmp&xgen.com.br
-41724
- Chengdu SKSpruce Technology Inc.
- kai zhang
- kaizhang&skspruce.net
-41725
- Tere.com Networks OÜ
- Toomas Vendelin
- iana&vendelin.com
-41726
- Dr. Sulaiman Al Habib Medical Group
- Irshad Ismail
- irshad.ismail&drsulaimanalhabib.com
-41727
- Sabatier Geolocalisation
- Damien CABROL
- damien.cabrol&geolocalisation-sabatier.fr
-41728
- athenahealth, Inc.
- Ben Whittaker
- vendorcontact&athenahealth.com
-41729
- United Equitable Group, Ltd.
- Matthew Morrow
- mmorrow&ueg1.com
-41730
- Arab States Research and Education Network, GmbH
- Ola Adnan Samara
- info&asrenorg.net
-41731
- Prodware Deutschland AG
- René Büdinger
- r.buedinger&prodware.de
-41732
- Mathias Haimerl 3S
- Mathias Haimerl
- webmaster&haimi.de
-41733
- Parallel Wireless
- Sumit Garg
- sgarg&parallelwireless.com
-41734
- V10 Networks
- Jeff Leung
- oid.admin&v10networks.ca
-41735
- Teletech Pty. Ltd.
- Sean Gallagher
- sean&teletech.com.au
-41736
- Beatrice Wireko IT
- Ottmar Erbes
- mail&wireko.com
-41737
- Bryan Health
- Brad Znamenacek
- bradz&bryanhealth.org
-41738
- Algo Communication Products Ltd.
- Steve Ansell
- steve&algosolutions.com
-41739
- Five9, Inc.
- Darin Fisher
- darin.fisher&five9.com
-41740
- TheGunns.net
- William Gunn
- postmaster&thegunns.net
-41741
- Ittim Technology Co.Ltd
- Zheng Dajun
- zhengdj&ittim.cn
-41742
- IMEC
- Julien Beauviala
- julien&imec-archives.com
-41743
- eKing Technology Co., Ltd.
- Liang Dai
- liang.dai&hnair.com
-41744
- Z3 Technology
- Bruno Marchevsky
- brunomarchevsky&z3technology.com
-41745
- FrozenWarrior.com
- Bret Olmsted
- bret&frozenwarrior.com
-41746
- Chengdu Kingtype Digital TV Equipment Co., Ltd.
- Junyu Xue
- ywlizhen&163.com
-41747
- Oliver Solutions
- David Ganor
- david&oliver-solutions.com
-41748
- CensorNet Ltd
- Dan Searle
- dan&censornet.com
-41749
- Owens State Community College
- Martin Stroud
- martin_stroud&owens.edu
-41750
- Head Department for Statistics and Information Technologies of State Customs Committee
- Aleksandr Voloschuk
- aleksandr.voloschuk&customs.gov.az
-41751
- ROBIN'S
- Radhakrishnan Nagarajan
- robinblr.arts&gmail.com
-41752
- ZAO "NPK Rotek"
- Sergei Shirokov
- sergo&rotek.ru
-41753
- Greg Waterhouse
- Greg Waterhouse
- gregw&rgweb.org
-41754
- Daniel Sage
- Daniel Sage
- hi&dansage.co
-41755
- Lastline, Inc.
- Ludovico Cavedon
- cavedon&lastline.com
-41756
- REVCORD - Revolutionizing Voice Recording
- Vasanth Neelamagam
- vasanth&revcord.com
-41757
- Prism Systems, Inc.
- Alex Lynch
- alynch&prismsystems.com
-41758
- Axham Corporation
- Vijay Varadan
- admin&axham.com
-41759
- Open Computing Facility
- Dara Adib
- gm&ocf.berkeley.edu
-41760
- TibetSystem Co.,Ltd.
- Kwon Tae Un
- nadakwon&tibetsystem.com
-41761
- Atea Sverige AB
- Martin Arnsrud
- martin.arnsrud&atea.se
-41762
- Mayak LTD
- Victor Shachnev
- its&slata.com
-41763
- JSC «BystroBank»
- Alexander V. Litvinoff
- lav&bystrobank.ru
-41764
- ETAT DE FRIBOURG
- Simon Ecoffey
- simon.ecoffey&fr.ch
-41765
- Troyer AG
- Michael Saxl
- michael.saxl&troyer.it
-41766
- Flow-Data, Inc
- Keith Thomson
- keitht&flow-data.com
-41767
- IDSS AB
- Claes Wikholm
- info&idss.se
-41768
- Beijing Telesound Electronics Co., Ltd.
- Jiapeng Lu
- lujiapeng&telesound.com.cn
-41769
- IS4IT GmbH
- Lothar Haeger
- lothar.haeger&is4it.de
-41770
- Ascendi
- Bruno Cacheira
- bcacheira&ascendi.pt
-41771
- Fundamental Games
- Kenneth Noland
- ken.noland&fundamentalgames.com
-41772
- Auth-servers
- Warren Kumari
- warren&kumari.net
-41773
- TelVue Corporation
- Jesse Lerman
- jlerman&telvue.com
-41774
- Health Research, Inc.
- Mike Varney
- mlv03&healthresearch.org
-41775
- Global Solutions Tecnologia da Informação LTDA
- Fernando de Oliveira Carvalho
- global&glsolutions.com.br
-41776
- IACIT Soluções Tecnológicas LTDA
- gustavo hissi
- gustavo.castro&iacit.com.br
-41777
- GSE Environmental, LLC
- Jeff Johnson
- jjohnson&gseworld.com
-41778
- Lake Avenue Congregational Church of Pasadena
- Emil Tulcan
- infosys&lakeave.org
-41779
- QualityLogic Inc.
- Kai Zuber
- sysadmin&qualitylogic.com
-41780
- Telesphere Networks Ltd
- Larry Low
- llow&telesphere.com
-41781
- Digby Wells Environmental
- Clint Naude
- clint.naude&digbywells.com
-41782
- Pacific Design Enginering
- Bill Moats
- moats&pde.com
-41783
- Geolink Satellite Services
- Julien Leroux
- julien.leroux&geolink.com
-41784
- ifbyphone, Inc.
- Marcus Lewin
- mlewin&ifbyphone.com
-41785
- Mary Washington Healthcare
- Douglas Hanback
- douglas.hanback&mwhc.com
-41786
- Ryu project
- Isaku Yamahata
- yamahata&valinux.co.jp
-41787
- HyperMatrix Solutions Ltd.
- Hiren Shah
- admin&hypermatrix.com
-41788
- kuederli.net
- Urs P. Kuederli
- urs&kuederli.com
-41789
- AlTaysir for Information Systems Security Consulting LLC
- Aladdin Dandis
- aladdin.d&secrivacy.com
-41790
- I-CONCEPT
- TASSOS FRAGOS
- t.fragos&i-concept.gr
-41791
- eSPe
- Karsten Pohle
- k.pohle&gmx.net
-41792
- Alrayyan for media and marketing co
- Mahmoud Albatarni
- mahmoud.albatarni&alrayyan.qa
-41793
- North East Independent School District
- Brian Harrell
- bharre&neisd.net
-41794
- High Point PC Solutions
- Daniel T. Harrison
- highpointpc2&gmail.com
-41795
- Net Consulting UK Ltd
- Glenn Morgan
- glenn.morgan&netconsulting.co.uk
-41796
- EleSy
- Alexandr Makarov
- Alexandr.Makarov&elesy.ru
-41797
- STC Systema
- Mikhail Maslennikov
- mikhailmaslennikov&yandex.ru
-41798
- astozi
- Tomasz Zieba
- tomasz.zieba&astozi.pl
-41799
- William Hill
- Peter Morgan
- peter.morgan&williamhill.com
-41800
- GaHIN (Georgia Health Information Network)
- Himabindu Bolisetty
- bindu&careevolution.com
-41801
- Prattville Water Works Board
- Neil Harris
- nharris&pwwb.com
-41802
- Talkpath LLC
- Steven Platt
- splatt&talkpath.com
-41803
- On Center Software, Inc.
- Brandon Davis
- brandon.davis&oncenter.com
-41804
- Austrian Federal Ministry of Science and Research
- Klemens Urban
- klemens.urban&bmwf.gv.at
-41805
- Guidance Solutions, Inc.
- Jon Larsen
- jlars&guidance.com
-41806
- Viastorage
- Guillaume VERNAT
- gvernat&coffreo.com
-41807
- GuiZhou BC&TV Information Network Co.,LTD
- XiangLong Hou
- houxianglong&coship.com
-41808
- Administration of Municipal Formation of the City-Hero of Novorossiysk
- Dmitry Kirienko
- uprav.it&gmail.com
-41809
- Dismuntel S.A.L.
- Josep Enric Rosell Carbonell
- jerosell&dismuntel.com
-41810
- Credit Agricole Bank, PJSC
- Sergii Plakhota
- Sergii.PLAKHOTA&credit-agricole.com.ua
-41811
- Spital Männedorf AG
- Bruno Baldauf
- b.baldauf&spitalmaennedorf.ch
-41812
- Rouis Labs
- Khalifa Rouis
- labs&rouis.net
-41813
- Anhui comhigher tech co.,ltd
- Sun Xinya
- xinyasun&tsinghua.edu.cn
-41814
- Hubei University Of Automotive Technology
- Lan JianPing
- ljp_1984&126.com
-41815
- Fraunhofer-Institut fuer Software- und Systemtechnik ISST
- Ralf Nagel
- ralf.nagel&isst.fraunhofer.de
-41816
- Blissful Living Foundation
- Bruno Lago
- admin&blissful.im
-41817
- Cooper Gitiesse
- Maurizio Cannella
- Maurizio.Cannella&cooperindustries.com
-41818
- Quotient, Inc.
- Rob Payne
- rpayne&quotient-inc.com
-41819
- IPNetwork
- Ingo Peukes
- admin&ipnetwork.de
-41820
- Kanton Basel-Landschaft
- Claude Tomek
- claude.tomek&bl.ch
-41821
- Frantovo.cz
- Frantisek Kucera
- iana-contact&frantovo.cz
-41822
- Project FiFo
- Heinz N. Gies
- heinz&licenser.net
-41823
- Miaozhen Systems
- Chi Song Tao
- cst&miaozhen.com
-41824
- Université Gaston Berger
- Moussa Diagne
- moussa.diagne&ugb.edu.sn
-41825
- Agilord Ltd.
- Istvan Soos
- istvan.soos&agilord.com
-41826
- Prognus Soluções Livres em TI
- William Fernando Merlotto
- william&prognus.com.br
-41827
- Novantum BV
- Ron Arts
- ron.arts&novantum.com
-41828
- NySoft Argentina SRL
- Leonardo Bracco
- leonardo&nysoft.com.ar
-41829
- MEDDATA
- SAIT SARI
- sait&meddata.com.tr
-41830
- PicoCELA Inc.
- Hiroshi Furukawa
- info&picocela.com
-41831
- Bitbase AS
- Stig Christian Aske
- stigchristian&bitbase.no
-41832
- Private Entrepreneur Kutsevol Maxym
- Maxym Kutsevol
- max&kutsevol.com
-41833
- Paree BV - Elektro Telecom
- Erik de Jong
- erik.de.jong&paree.nl
-41834
- BRAM Technologies
- Dmitry Repkin
- rd&bram.tv
-41835
- JDL Digital Systems Inc.
- Yanda Ma
- yanda&airshipvms.com
-41836
- Commend International GmbH (formerly 'bct electronic GesmbH')
- Martin Posch
- lizenz&commend.com
-41837
- Evan-Moor Corp
- Eric Lindquist
- administrator&evan-moor.com
-41838
- Dynamic Network Services Inc.
- Josh Bradley
- jbradley&dyn.com
-41839
- Prism-IPX Systems, LLC
- Russell Friery
- rfriery&prism-ipx.com
-41840
- University of the Philippines Manila
- Diosdado B. Calmada
- dbcalmada&post.upm.edu.ph
-41841
- Zhuhai Bluemax Broadband Electronic Co.,Ltd
- Chen Guoxiang
- cgx613&163.com
-41842
- Novosibirsk State University
- Adamansky Anton
- adamansky&post.nsu.ru
-41843
- Uni-Film-Club Dortmund
- Fabian Schlenz
- fabian&ufc.tu-dortmund.de
-41844
- PERF-IT B.V.
- René de Theije
- info&perf-it.eu
-41845
- Bitcarrier S.L.
- Martin Mendez
- info&bitcarrier.com
-41846
- Chinasoft International Co., Ltd.
- Meng Gang
- knight.meng&chinasofti.com
-41847
- EDALab s.r.l.
- Stefano Cailotto
- stefano.cailotto&edalab.it
-41848
- TOVEK
- Ludovit Kontsek
- support&tovek.cz
-41849
- CIDON
- Julio Cidon
- julio&cidon.es
-41850
- DaySequerra Corporation
- David V. Day
- david&daysequerra.com
-41851
- zeb/rolfes.schierenbeck.associates gmbh
- Patrick Haubold
- webmaster&zeb.de
-41852
- Peregrine Capital Management
- TJ Cornish
- domain.admin&peregrine.com
-41853
- RAMI
- LOUCHART PASCAL
- plouchart&ramiaudio.com
-41854
- W.J. Bradley
- Adam Steed
- adam.steed&wjbradley.com
-41855
- Logol
- Sergey Beloff
- admin&logol.ru
-41856
- Grand Valley State University
- Jason Kunnen
- dnsadmin&gvsu.edu
-41857
- AGENCE NATIONALE DES INFRASTRUCTURES NUMERIQUES ET DES FREQUENCES
- MASSAMBA AIME MARTIAL
- info&aninf.ga
-41858
- The Trade Desk, Inc.
- Ryan Reynolds
- ryan.reynolds&thetradedesk.com
-41859
- Hidden Design Kft.
- Viktor LOOSZ
- efpe&hidden.hu
-41860
- Oryon TI
- Joel Franco Guzman
- joel&oryonti.com.br
-41861
- Tucker Ellis LLP
- Lee K. Harris
- lee.harris&tuckerellis.com
-41862
- Metawell
- Ralf Krieg
- postmaster&metawell.com
-41863
- Mongoose GFX
- Andrew Hughes
- andrewhughes&mongoosegfx.co.nz
-41864
- EyeKor LLC.
- Yijun Huang
- yhuang&eyekor.com
-41865
- Monitor Business Machines Ltd
- Andrew Hughes
- andrew.hughes&monitorbm.com
-41866
- Hitachi-LG Data Storage, Inc.
- Yong Hyun, Ahn
- anyong&hlds.co.kr
-41867
- yinyuetai
- taotan
- tao.tan&yinyuetai.com
-41868
- elecom co., ltd.
- kosuke okada
- Kosuke_Okada&elecom.co.jp
-41869
- Selex Gematronik GmbH
- Andre Weipert
- a.weipert&gematronik.com
-41870
- Notartel S.p.A
- Carmine Cesarano
- ccesarano&notariato.it
-41871
- Sonifex Ltd
- Adam Borowski
- adam&sonifex.co.uk
-41872
- Masdar PV GmbH
- Peter Kruse
- pkruse&masdarpv.com
-41873
- Institut Superieur d'Electronique de Paris (ISEP)
- Christophe Boyanique
- admsys-iana-pen&isep.fr
-41874
- LLC "ANTE-MEDIAM"
- Valentyn Shapoval
- valsh&microsoft.com
-41875
- Esselte IPR AB
- David Block
- dblock&esselte.com
-41876
- FOXCOMM NETWORKS
- Grigory Korotov
- g.korotov&foxcomm.ru
-41877
- Orban
- Greg Ogonowski
- greg&indexcom.com
-41878
- Tobias & Tobias
- Ian Taylor
- ian.taylor&tobias.tv
-41879
- Mind Labs
- Vyacheslav Pogoreltsev
- sysadm&mind.com
-41880
- MIcrotel Innovation S.r.l.
- Adelio De Bernardi
- adelio.debernardi&microtelinnovation.com
-41881
- Korbitec (Pty) Ltd.
- Ricky Burrell
- korbitec&gmail.com
-41882
- KLU Consulting / Kōkua Lolo Uila
- Michael V. David
- michael&mvdavid.com
-41883
- Trojan Technologies
- Rob Marles
- is-admin&trojanuv.com
-41884
- Katherine Shaw Bethea Hospital
- David Ginn
- dginn&ksbhospital.com
-41885
- NDsoftware
- kenji murakami
- kenji&ndsoft.co.jp
-41886
- Beijing Sapling Technology Co.,Ltd
- Jikun
- jikun&sapling.com.cn
-41887
- ENSCO, Inc.
- Devin Whelan
- ist.ca&ensco.com
-41888
- URZ Friedrich-Schiller-Universität Jena
- Thomas Sesselmann
- thomas.sesselmann&uni-jena.de
-41889
- Nine Internet Solutions AG
- Nils Caspar
- nils.caspar&nine.ch
-41890
- Cuyahoga Community College District
- David Mastny
- information.security&tri-c.edu
-41891
- Holland LP
- Tim Rushing
- hollandit&hollandco.com
-41892
- BIFIT Service
- Dmitrij Kovalevskij
- kovalevsky&bifit.ua
-41893
- DBM S.r.l.
- Matteo Piva
- matteo.piva&dbmsrl.com
-41894
- Logistica Integral
- Ernesto Pareja
- epareja2&gmail.com
-41895
- Alliance Data
- Mark Mishler
- mark.mishler&alliancedata.com
-41896
- Alberta Electric System Operator
- Leo Li
- leo.li&aeso.ca
-41897
- Inovar
- Dan Parker
- dan.parker&inovar.com
-41898
- Australian Nuclear Science Technology Organization
- Daniel Matusch
- dm&ansto.gov.au
-41899
- YU JYA TECHNOLOGY CO., LTD.
- Steve Chen
- steve.chen&azuretec.com
-41900
- Ministry of Interior, Bulgaria
- Valentin Velkov
- v3&mvr.bg
-41901
- CSG SCIENCE&TECHNOLOGY CO., LTD.HEFEI
- BING LU
- support&csgnet.cn
-41902
- Gemeindeverwaltung Landquart
- Matthias Hirschmann
- mhirschmann&baggenstos.ch
-41903
- ETL Solutions Ltd.
- Martin Pegler
- sysadmin&etlsolutions.com
-41904
- Impala Editores, SA
- Ricardo Matos
- ricardo.matos&impala.pt
-41905
- Great-West Life
- Ronald Hewson
- ron.hewson&investorsgroup.com
-41906
- VeriSign, Inc.
- Danny McPherson
- dmcpherson&verisign.com
-41907
- LoudCell Technologies Pvt Ltd.
- Yogesh Sharma
- yogesh&loudcell.com
-41908
- HanKeInfo
- Alfred Huang
- alfredhuang&hankeinfo.com.cn
-41909
- AventuraHQ, Inc
- Adam Williams
- adam.williams&aventurahq.com
-41910
- Zentyal
- Jose Antonio Calvo
- jacalvo&zentyal.com
-41911
- Great Plains Manufacturing, Inc.
- John Woods
- jwoods&greatplainsmfg.com
-41912
- International Electrotechnical Commission
- Herbert Falk
- herb&sisconet.com
-41913
- Tecsys do Brasil Industrial Ltda
- Rodolfo Vidal
- rodolfo&tecsysbrasil.com.br
-41914
- Bradford Robotic Telescope
- Dan Hedges
- admin&telescope.org
-41915
- Southwestern Energy Co.
- Tom LeClare
- tom_leclare&swn.com
-41916
- vIPtela Inc.
- Ramesh Prabagaran
- ramesh&viptela.com
-41917
- Leica Geosystems AG
- Armin Märk
- webteam&leica-geosystems.com
-41918
- CIT Telecom-Service JSC
- Egor Duda
- iana&corpit.ru
-41919
- Ugobame Uchibeke
- Ugobame Uchibeke
- uchi4jah&gmail.com
-41920
- Shenzhen Integrated Electronic Systerms Lab Co.,Ltd.
- DuMin
- duolaheimeng123&163.com
-41921
- Beijing Infomedia Electronic Technology Co., Ltd
- Xuhu
- evchnil&263.net
-41922
- GuangDong Super Telecom Co,Ltd.
- tom.liu
- tom.liu&sts.cn
-41923
- Patrick Sczepanski
- Patrick Sczepanski
- patrick&sczepanski.com
-41924
- Digital Value SL
- Juanjo Garcia
- juanjo&digitalvalue.es
-41925
- Nufarm Limited
- Geoff Aldred
- admin.it&au.nufarm.com
-41926
- Finecom Telecommunications AG
- Erich Hohermuth
- erich.hohermuth&finecom.ch
-41927
- FORO-tele
- Maxim Struchok
- max&foro-tele.com
-41928
- Muir Matheson Ltd
- Blair Moir
- blair.moir&muir-matheson.com
-41929
- Jung, DMS & Cie. AG
- Christian Bauer
- christian.bauer&jungdms.de
-41930
- Nautronix Limited
- Iain MacMillan
- Iain.MacMillan&nautronix.co.uk
-41931
- CMC Electronics
- Joel Savard
- joel.savard&cmcelectronics.ca
-41932
- HSC Brasil
- Junior Cunha
- junior.cunha&hscbrasil.com.br
-41933
- Aligera
- Wagner Müller Gegler
- wagner&aligera.com.br
-41934
- NKI AS
- Christian Skarby
- csk&nki.no
-41935
- Indian River County Sheriff
- Andy Collier
- acollier&ircsheriff.org
-41936
- Marway Power Solutions
- Greg Willits
- gwillits&marway.com
-41937
- Escola Agricola de Jundiai - EAJ/UFRN
- Thiago Dutra
- thiago&eaj.ufrn.br
-41938
- INCEPTRUM Technologies Inc.
- Dmitry Kursov
- dmitry.kursov&inceptrum.com
-41939
- Tralix México S. de R.L. de C.V.
- Dario Morales López
- dario.morales&tralix.com
-41940
- Bradbury School
- Christopher Chan
- christopher.chan&bradbury.edu.hk
-41941
- StuStaNet e. V.
- Markus Kaindl
- vorstand&stustanet.de
-41942
- Lettergen
- Vincent Van der Kussen
- it&btr-services.be
-41943
- Bartec GmbH
- Ralf Bauermeister
- ralf.bauermeister&bartec.de
-41944
- Virginia Department of Behavioral Health and Developmental Services
- Marcie Stidham Stout
- marcie.stidham&dbhds.virginia.gov
-41945
- Institution Solutions
- Jerome Haltom
- jhaltom&isillc.com
-41946
- The Information Architecture Institute
- Dorian Taylor
- iana-pen&iainstitute.org
-41947
- Unidem Sales Inc
- Nicholas Linn
- nicklinn&michebag.ca
-41948
- Job Snijders
- Job Snijders
- job&instituut.net
-41949
- Danmagi
- Julius Sloth
- jsloth&danmagi.com
-41950
- DTI Solutions
- Marc Devault
- itlicensing&dtisoft.com
-41951
- Quarles & Brady, LLP
- Rich Raether
- itops&quarles.com
-41952
- Asad Ahmed
- Asad Ahmed
- mdasadahmed&gmail.com
-41953
- JSC "ESC of EVRAAS"
- Andrew Shulga
- shulga&evraasgr.ru
-41954
- Polewall Norge AS
- Michael Gallagher
- Mjg&polewall.com
-41955
- Jansen AG
- Gerry Harzl
- gerry.harzl&jansen.com
-41956
- Fellig e.V.
- Philipp Schafft
- team&fellig.org
-41957
- Olfeo
- Julien Pinon
- jpinon&olfeo.com
-41958
- Prime Rate Ltd.
- Szabolcs Gyuris
- gyszabolcs&primerate.hu
-41959
- Earlham College
- Randy Schultz
- schulra&earlham.edu
-41960
- easygo
- Kurt Stieger
- pen&easygo.at
-41961
- IntraCom Systems, LLC
- John Jurrius
- snmp&intracomsystems.com
-41962
- 3ZTelecom Inc.
- Enzo Dalmazzo
- faisal.sikder&gmail.com
-41963
- WebAmphibian.Com
- Roland Stolfa
- rstolfa&yahoo.com
-41964
- Ozona Consulting, S.L.
- Fernando Vázquez Vázquez
- ssii&ozona.es
-41965
- Mano Namai UK
- Valerij Prusakov
- valerij.prusakov&gmail.com
-41966
- Applied Card Technologies Ltd.
- Nick Wilson
- nick.wilson&weareact.com
-41967
- Pivot Point Security
- Michael Gargiullo
- michael.gargiullo&pivotpointsecurity.com
-41968
- EPCOTS
- Alaa AADIL
- alaa.aadil&epcots.fr
-41969
- Enero Solutions, inc.
- François Trahan
- ftrahan&enerosolutions.com
-41970
- Orion Networks International, Inc.
- David Smith
- d.smith&orionni.com
-41971
- Touch Tecnologia e Informática LTDA
- Rodrigo Vieira Couto
- rcouto&touchtec.com.br
-41972
- Poznan University of Life Sciences
- Robert Stanislawiak
- robert.stanislawiak&up.poznan.pl
-41973
- Generation Tech
- Ken McDonald
- ken&generationtech.org
-41974
- Auf nach Mallorca GmbH
- Benjamin Behringer
- benjamin.behringer&auf-nach-mallorca.info
-41975
- ALNET ELEKTROMEKANIK LTD
- METIN YAZICI
- metin&alnet.com.tr
-41976
- Turvasana Tmi
- Thor Kottelin
- thor.kottelin&turvasana.com
-41977
- Oakland County, Michigan
- Internet Admin
- internetadmin&oakgov.com
-41978
- BEIJING DING QING TECHNOLOGY LTD.
- Chen Kai(Mr.)
- kai.chen&startechsoft.com
-41979
- Mitsubishi Electric TOKKI Systems Corporation
- Takashi Iwaki
- taka-iwaki&west.melos.co.jp
-41980
- Neo-Renaissance Studios
- Shane Spinuzzi
- rspinuzzi&neorenaissancestudios.com
-41981
- AerVox
- David Berrocal
- david.berrocal&aervox.com
-41982
- zetVisions AG
- Sascha Winter
- it-support&zetvisions.com
-41983
- Vorboss Limited
- Timothy Creswick
- noc&vorboss.net
-41984
- meterriblecrew.net
- Andreas Wiese
- aw-pen&meterriblecrew.net
-41985
- Desvaux Labs
- Pierre Desvaux
- contact&desvaux.eu
-41986
- deepearth.co.uk
- Aubrey Stark-Toller
- aubrey&deepearth.co.uk
-41987
- BMO Capital Markets
- Nina Pyron
- nina.pyron&bmo.com
-41988
- Van Wert County Hospital
- Deb Point, Clinical Applications Coordinator
- dpoint&vanwerthospital.org
-41989
- Alphatron Security Systems
- B.D. van der Have
- b.van.der.have&alphatron.nl
-41990
- Pelagicore AG
- Robert Griebl
- robert.griebl&pelagicore.com
-41991
- Super-Visions
- Christophe Fonteyne
- christophe.fonteyne&super-visions.com
-41992
- HOPPE Holding AG
- Gerhard Kapeller
- gerhard.kapeller&hoppe.com
-41993
- Redactia
- Quentin Armitage
- Quentin.Armitage&redactia.co.uk
-41994
- Jonas Kopp Systems Trust Network
- Jonas Kopp
- jonaskoppsystems&gmail.com
-41995
- SIA-CE
- Attila Foris
- oid&fredhome.net
-41996
- COM-TECH Italia S.p.A.
- Stefano De Paoli
- snmp&com-tech.it
-41997
- Silversky Inc.
- William Lewis
- bill.lewis&silversky.com
-41998
- Bumicom Telecommunicatie B.V.
- Arnoud Mulder
- arnoud.mulder&bumicom.nl
-41999
- e2x Ltd.
- Darren Beck
- darren.beck&e2x.co.uk
-42000
- National Mineral Resource University
- Popov Mikhail
- popov&spmi.ru
-42001
- TechDivision GmbH
- Philipp Dittert
- p.dittert&techdivision.com
-42002
- Hurrikane Systems
- Mark Kubacki
- kubacki&hurrikane.de
-42003
- Akron Public Schools
- Derek Lewis - Technology Services
- core_support&akron.k12.oh.us
-42004
- Gertec
- Eduardo Santos
- eduardo.santos&gertec.com.br
-42005
- NHST MEDIA GROUP AS
- Ole Kristian Klevstrand
- okk&nhst.no
-42006
- netis korea
- yun hyung taek
- yun0512&gmail.com
-42007
- nikolakoco
- Nikolche Kochovski
- nikolakoco89&gmail.com
-42008
- BumeBox, Inc.
- Per Thomsen
- pthomsen&bumebox.com
-42009
- Riava Networks Inc.
- Aki Tsuzuku
- aki&riava.net
-42010
- Luxul Corporation
- Clark Roundy
- croundy&luxul.com
-42011
- ISAAC Software Solutions B.V.
- Martijn Grendelman
- admin&isaac.nl
-42012
- Mangold Technologies
- Michael Pfeuffer
- pfeuffer&mangoldtechnologies.com
-42013
- Registro General de la Propiedad de Guatemala
- Laura Maria Marroquin Cortez
- lcortez&rgp.org.gt
-42014
- Francois Trahan
- François Trahan
- francois.trahan&gmail.com
-42015
- Weilhammer Networks
- Robert Weilhammer
- robert&weilhammer.com
-42016
- Kingman Regional Medical Center
- Chris Jones
- cjones&azkrmc.com
-42017
- MailMak ApS
- Tommy Holm Jakobsen
- thj&mailmak.com
-42018
- numo labs Pty. Ltd.
- Reza Monavari
- admin&numolabs.com
-42019
- Fort-Telecom
- Alexandr Belyaev
- ABelyaev&fort-telecom.ru
-42020
- Piter Gaz JSC.
- Maxim Y. Evdolyuk
- itsupport_prof&petergaz.com
-42021
- VoiceCom SA
- Valentin Zahariev
- vzahariev&voicecom.bg
-42022
- ITUS JAPAN Co.,Ltd.
- kijong lee
- support&itus.co.jp
-42023
- Thetus Corporation
- Sam Alpher
- salpher&thetus.com
-42024
- Cibertec Internacional
- Miguel Quesada
- mquesadab&cibertec.com
-42025
- Koji Komatsuzaki
- Koji Komatsuzaki
- kojikomatsuzaki&gmail.com
-42026
- TSTREAM CO.,LTD.
- Yongjae Lee
- yjlee&tstream.co.kr
-42027
- Sanctum Networks (P) Ltd.
- Girish Vinayak Gulawani
- girish&sanctumnetworks.com
-42028
- Arnel limited
- Gary Bowyer
- gbowyer&arnel.co.uk
-42029
- Amigo Software
- Junaid Abid Ali
- junaid.ali&amigo-software.com
-42030
- Ghost Software
- Junaid Abid Ali
- junaid.ali&ghost-software.com
-42031
- 42
- Kevin 'Ether' Boulain
- iana&staff.42.fr
-42032
- swisspartners Investment Network AG
- Othmar Büeler
- it&swisspartners.com
-42033
- IslaLink
- Javier Valero
- javier.valero&islalink.es
-42034
- Intemo Technologies
- Victor Palacio Tarrega
- vpalacio&intemotechnologies.com
-42035
- Zedge
- Thomas Tinglum
- thomas&zedge.net
-42036
- LOYTEC electronics GmbH
- Thomas Rauscher
- trauscher&loytec.com
-42037
- Stadt Augsburg
- Manfred Gundel
- netze.it&augsburg.de
-42038
- Sanquin Bloedvoorziening
- Rik Hulleman
- r.hulleman&sanquin.nl
-42039
- Laboratoire Jacques Louis Lions
- Altaïr S. Pelissier
- altair.pelissier&ljll.math.upmc.fr
-42040
- Nasuni Corporation
- Rob Mason
- iana&nasuni.com
-42041
- Vänerhamn AB
- Kristian Holmqvist
- kristian.holmqvist&vanerhamn.se
-42042
- Inca Telecom S.A.C.
- Antonio Franco
- antonio.franco&incatelecom.com
-42043
- DingLi Communications Corp., Ltd.
- Ding Li
- wancheng.li&dinglicom.com
-42044
- GMQ Consulting AB
- Ola Eriksson
- service&gmq.se
-42045
- Logical Tools s.r.l.
- Mr. Fabio Pucitta
- info&logicaltools.com
-42046
- DigitalSign - Certificação Digital Ltda
- Fernando Moreira
- suporte&digitalsigncertificadora.com.br
-42047
- twis.la (Clement Martin)
- Clement Martin
- twisla&twis.la
-42048
- Circle of Life Hospice
- Matthew Dickson
- sysadmin&nwacircleoflife.org
-42049
- Achkey Ltd
- Hugo Jobling
- hugo.jobling&achkey.com
-42050
- China Security & Surveillance Technology,Inc.
- chen yiliang
- yiliang.chen&csst.com
-42051
- Skyward Information System Co.,LTD.
- Yasushi Sonegawa
- sone&shinetsu.jp
-42052
- vitapublic GmbH
- Christian Bode
- hostmaster&vitapublic.de
-42053
- MEDvision360
- Ralph van Etten
- ralph&medvision360.com
-42054
- Stadler Bussnang AG
- Andreas Buechi
- andreas.buechi&stadlerrail.com
-42055
- West Lothian Council
- Jamie Girdwood
- jamie.girdwood&westlothian.gov.uk
-42056
- MultiToll Solutions SAS
- Hugues-Olivier Yar
- normes&multitoll.fr
-42057
- cegedim
- Samuel Mutel
- monitoring-admin&cegedim.com
-42058
- Lomnido, s.r.o.
- Roman Szabados
- Roman.Szabados&Lomnido.com
-42059
- MED2020 Health Care Software Inc.
- Michael Chiviendacz
- michael.chiviendacz&med2020.ca
-42060
- Egon Braun
- Egon Braun
- egonbraun&gmail.com
-42061
- SquareTwo Financial
- John-Thomas Gaietto
- jtgaietto&squaretwofinancial.com
-42062
- CyberTransJapan Co., Ltd.
- Takashi Takesue
- info&cybertrans-jp.com
-42063
- Guidoon SAS
- Cyril Tata
- cyril.tata&guidoon.com
-42064
- Royse City ISD
- Tony Liptrap
- liptrapt&rcisd.org
-42065
- Iberia
- Javier Pardo
- jpardo&iberia.es
-42066
- dbSpectra
- Hal Asbridge
- halasbridge&aksolutions.com
-42067
- Bayerische Staatsforsten AoeR
- Markus Schneider
- markus.schneider&baysf.de
-42068
- UBM Drecker GmbH
- Pascal Drecker
- pascal.drecker&ubm.de
-42069
- The Comptroller General’s Department
- Ms. Rattanaporn Ussavanuphap
- ratanaus&cgd.go.th
-42070
- German Aerospace Center; Institute of Communications and Navigation
- Hartmut Brandt
- hartmut.brandt&dlr.de
-42071
- Sprecher Automation GmbH
- Helmut Feichtinger
- pen-admin&sprecher-automation.com
-42072
- Homes and Communities Agency
- Jon Walker
- jon.walker&hca.gsi.gov.uk
-42073
- DatASE
- Martin Pegler
- martin&datase.co.uk
-42074
- Deltenna Limited
- Sean Godwin
- sean.godwin&deltenna.com
-42075
- BAFO Technologies Corp
- Jerry Chang
- jerry_chang&bafo.com.tw
-42076
- saltation GmbH & Co. KG
- Matthias Hörmann
- mhoermann&saltation.de
-42077
- sRatio
- John P. Birck
- it&sratio.com
-42078
- Recursoft.org
- Michael Dahlberg
- dahlberg&recursoft.org
-42079
- Army Emergency Relief
- Julius Asante
- julius.asante.ctr&aerhq.org
-42080
- Dajar
- Mateusz Kijowski
- mateusz.kijowski&dajar.pl
-42081
- TravailPrive
- Mateusz Kijowski
- m.kijowski&travailprive.eu
-42082
- Travis Perkins PLC
- Craig Butler
- craig.butler&travisperkins.co.uk
-42083
- JS Networking Lab
- Jason Stultz
- stultzjason&gmail.com
-42084
- Mike Mackintosh
- Mike Mackintosh
- mike.mackintosh&zyp.io
-42085
- Prolateral Consulting Ltd
- Ian Chilvers
- Ian.Chilvers&prolateral.com
-42086
- Vossloh Cogifer
- Guy Bourgin
- Guy.Bourgin&vcsa.vossloh.com
-42087
- Business Insurance Direct
- Sears Young
- sears.young&bizdirect.co
-42088
- Legal & General Nederland
- Wijnand Westra
- beheer&landg.nl
-42089
- Rambler Internet Holding LLC
- Anes Mukhametov
- noc&rambler-co.ru
-42090
- Aleat shpk
- Elton TORO
- elton.toro&aleat.com
-42091
- Tritech International Limited
- Allan Leeming
- postmaster&tritech.co.uk
-42092
- Serttel LTDA
- Bruno Figueirôa
- bruno.figueiroa&serttel.com.br
-42093
- Expand
- Pablo Alsina
- palsina&expand.com.uy
-42094
- Bfabric.org
- Marco Schmidt
- ianapen&bfabric.org
-42095
- NII SOKB Ltd
- Technical Center, Michael Rubashenkov
- saferoute&niisokb.ru
-42096
- IQnet Ltd
- Dragan Vlahovic
- dragan&iqnet.co.rs
-42097
- IT2u Czech s.r.o.
- Dusan Purr
- dusan.purr&it2u.cz
-42098
- Fahrzeugsystemdaten GmbH
- Erik Hennig
- erik.hennig&fsd-web.de
-42099
- Smart Green Labs S.L.
- Carlos Losada
- closada&itelsis.com
-42100
- DV Industrial Computer Ltd.
- Alexander Mruga
- am&inpc.com.ua
-42101
- iTEL
- Alexander Terlanov
- alex&tg.lv
-42102
- Communications Audit UK Ltd
- Paul Thomson
- paul.thomson&commsaudit.com
-42103
- hmcw gmbh
- Richard Wachler
- rw&hmcw.de
-42104
- wi2be Tecnologia S/A
- Albary Franco Pimpao Junior
- albary&wi2be.com
-42105
- WebControl
- Pavel Nesterov
- nesterov&web-control.ru
-42106
- 'MIGHTY APPARATUS FOR RADIOBRODCASTING AND TV" Joint-Stock Company
- Aleksandr Khizhnichenko
- mart&mart2.spb.su
-42107
- South Carolina Department of Revenue
- Rick Gibson
- rick.gibson&sctax.org
-42108
- HRSoftworks
- Brad Held
- bheld&hrsoftworks.com
-42109
- Linux Based Systems Design, Ltd
- Nigel Kukard
- nkukard&lbsd.net
-42110
- API Digital Communications Group, LLC
- Chris Adams
- cadams&api-digital.com
-42111
- Inovonics, Inc.
- Josh McAtee
- josh&inovonicsbroadcast.com
-42112
- Kakapo Technologies Ltd.
- Gevan Dutton
- gevan&kakapo.co.nz
-42113
- STAsoft.net
- Stanislav V. Korsakov
- sta&stasoft.net
-42114
- Finnish Institute of Occupational Health
- Teemu Suurnäkki
- teemu.suurnakki&ttl.fi
-42115
- CommerceWest Bank
- Chuck Charlton
- ccharlton&cwbk.com
-42116
- AIG
- Muneer Baddad
- muneer.baddad&aig.com
-42117
- Oman Telecommunications Company (S.A.O.G)
- Dinesh.S.Devan
- dinesh.devan&omantel.om
-42118
- IDentAcc
- Steffen Koehler
- skoehler&identacc.de
-42119
- TRACT cjsc
- Alexander Golenshin
- agolenshin&tract.ru
-42120
- Multimatic Inc.
- Michael Scott
- mscott&multimatic.com
-42121
- Michigan Public Health Institute
- Joshua Coons
- jcoons&mphi.org
-42122
- Yurur
- Burhan Yurur
- bur.han&yurur.net
-42123
- Shanghai Xinyou Information Technology Co., Ltd.
- Vincent Chen
- newpomelo&163.com
-42124
- YN-IT
- Yosef Nesirat
- info&yn-it.de
-42125
- CK Engineering Ltd
- Dzina Ilya
- idzina&dics.ua
-42126
- NOVARCHIVE
- Nathalie Pinto
- pbezamat&novarchive.fr
-42127
- SYMCOM INC
- Kris Jensen
- kris.jensen&symcom.com
-42128
- KUL Elektronik Teknolojileri Ltd.
- Basri KUL
- kulelektronik&gmail.com
-42129
- Continental Graphics Corp
- Andrew Graham
- hostmaster&cdgnow.com
-42130
- Skylink Technology Inc.
- Alan Meeh
- ameeh&skylinktechnology.com
-42131
- Westmont College
- John Rodkey
- rodkey&westmont.edu
-42132
- Applied Security GmbH
- Volker Roethel
- pki&apsec.de
-42133
- GoS Networks Ltd.
- Graham Willmott
- graham.willmott&gosnetworks.com
-42134
- ScaleArc
- Deepak Patel
- deepak.patel&scalearc.com
-42135
- TRUSTe
- Robert Bruce Carleton
- bcarleton&truste.com
-42136
- Ultra Electronics Airport Systems
- Stuart Jones
- stuart.jones&ultra-as.com
-42137
- Unipagos S. de R.L. de C.V.
- Paul Coppinger
- pc&unipagos.com.mx
-42138
- Virtualmaster, s.r.o.
- Josef Liska
- josef.liska&virtualmaster.com
-42139
- Internet Corporation for Assigned Names and Numbers
- Punky Duero
- punky.duero&icann.org
-42140
- Bitfabrik GmbH & Co. KG
- Peter Schillerwein
- peter.schillerwein&bitfabrik.de
-42141
- Laboratoire d'Informatique Paris Nord
- Mr Mamadou Sow
- mamadou.sow&lipn.univ-paris13.fr
-42142
- The Faculty of Advocates
- Mark Beecham
- mark.beecham&advocates.org.uk
-42143
- Moose Beast Software
- Gary Bourke
- gary.bourke&moose-beast.com
-42144
- cycos AG
- Volker Fenners
- Volker.Fenners&cycos.com
-42145
- PRIME Apparatus
- Cliff Wheatley
- cliff.wheatley&gmail.com
-42146
- EntobilSoft, Inc.
- Soonmi Lee
- tensal.smlee&entobilsoft.com
-42147
- Pepperl+Fuchs GmbH
- Dr. Ilja Wettengel
- iwettengel&de.pepperl-fuchs.com
-42148
- The Geneva Foundation
- Jason McKinney
- jmckinney&genevausa.org
-42149
- Cloud Life Software, LLC
- Michael Milom
- msmilom&cloudlifesoftware.com
-42150
- AffiniInternational B.V.
- Gerard Juyn
- iana&affinii.nl
-42151
- Net Business Pty Ltd
- Neil Robinson
- neil&netbusiness.com.au
-42152
- Itransition
- Vadzim Kuzmich
- v3.kuzmich&itransition.com
-42153
- Chuden CTI Co.,Ltd.
- Masashi Kamei
- Kamei.Masashi&cti.co.jp
-42154
- oak3 GmbH
- Thomas Jakobi
- tj&oak3.com
-42155
- Evolution Racingteam Saar
- Eric Scheid
- eric&rainerscheid.de
-42156
- NeoLab-Systems S.A.R.L.
- Didier PRALON
- contact&neolab-systems.fr
-42157
- CERTIFIRMA, SOCIEDAD ANONIMA
- David Elizondo
- david&certifirmas.com
-42158
- NetAgent Co., Ltd.
- Packet Black Hole Technical Support Services (Sugiura Takayuki)
- pbh-support&netagent.co.jp
-42159
- AT-Biotech Traceability Information Systems, S.L.U.
- Juan Gómez
- jgomez&at-biotech.com
-42160
- Iverdahl Systems
- M.V. de Jong
- mvdejong&luna.nl
-42161
- GIE AGIRC-ARRCO
- Stephane Barban
- sbarban&agirc-arrco.fr
-42162
- NAKAYO ELECTRONICS CO.,LTD
- Masafumi Sueyoshi
- sueyoshi&es.nakayo.co.jp
-42163
- EBS Service Company Limited
- Dimitrije Miljevic
- dimitrije.miljevic&ebs.com
-42164
- Ministério Público do RS
- Fabiano Martins
- fmartins&mp.rs.gov.br
-42165
- Pi-Coral Inc.
- Robert Snyder
- mib-contact&pi-coral.com
-42166
- Saint Josephs Hospital, Yonkers
- Deborah DiBernardo
- deborah.dibernardo&saintjosephs.org
-42167
- Data Tote
- Jim Tambling
- jim.tambling&datatote.co.uk
-42168
- blackchair Ltd
- Austen Jackson
- austen.jackson&theblackchair.com
-42169
- The Coca-Cola Company
- Thorsten Hofrichter
- thofrichter&coca-cola.com
-42170
- Tiger Computing Ltd.
- Chris Boot
- info&tiger-computing.co.uk
-42171
- Gravitate
- Boris Putanec
- hostmaster&gravitate.com
-42172
- Strencom
- James Waite
- james.waite&strencom.net
-42173
- Adiczion SARL
- Christophe CRIER
- ccr&adiczion.com
-42174
- ThiemoNet
- Thiemo Nordenholz
- oidreg&service.thiemo.net
-42175
- REFER Telecom, S.A.
- Pedro Miguel Oliveira Simões
- posimoes&refertelecom.pt
-42176
- eBernd
- Bernd Hofmann
- iana&ebernd.com
-42177
- Anuta Networks, Inc.
- Praveen Vengalam
- praveen&anutanetworks.com
-42178
- Nym Networks
- Jakob Borg
- jakob&nym.se
-42179
- Sonora Quest Laboratories
- Bryan Seminara
- webmaster&sonoraquest.com
-42180
- Kantonsspital Winterthur
- Matthias Spühler
- matthias.spuehler&ksw.ch
-42181
- Wavecom - Soluções Rádio S.A.
- Bruno Antunes
- bantunes&wavecom.pt
-42182
- Speed and Function
- Nick Gluzdov
- gluzdov&gmail.com
-42183
- Digitus Biometrics
- Chris Marsden
- cmarsden&digitus-biometrics.com
-42184
- ECG Management Consultants, Inc.
- John Murphy
- support&ecgmc.com
-42185
- DEMTECH
- Jean DEMARTINI
- jean.demartini&demtech.net
-42186
- National Cement Company, Inc.
- Valentin Stoilov
- domreg&natcem.com
-42187
- Podomatic, Inc
- Justin Dossey
- jbd&podomatic.com
-42188
- MATRIXGROUP (CMS) PTY LTD
- Julian McDonnell
- julianm&matrixgroup.com.au
-42189
- JRTwine Software, LLC
- James R. Twine
- jtwine&jrtwine.com
-42190
- Genowise
- Lixin Zhou
- zhou.lixin&gmail.com
-42191
- TotalServe Pty Ltd
- Michael Pasqualone
- support&totalserve.net.au
-42192
- IDF Connect, Inc.
- Richard Sand
- rsand&idfconnect.com
-42193
- Alpha Networks S.A.
- Xavier Sacré
- xavier.sacre&alphanetworks.be
-42194
- Matthews Midrange Consulting, Inc.
- Gene Matthews
- gene&mmc-inc.com
-42195
- Tektorque, Lda
- Emanuel Fernandes
- efernandes&tektorque.com
-42196
- Cauldron Development LLC
- Joseph Coffland
- joseph&cauldrondevelopment.com
-42197
- Coffee Bean Software Pty Ltd
- Mike Ciavarella
- snmp-pen-contact&cbsoft.com.au
-42198
- IO-Power Technology Co., Ltd.
- Jacky Cheng
- jacky&io-power.com.tw
-42199
- Foothills Rural Telephone Cooperative Corporation Inc.
- Matthew Bailey
- matthew&foothills.coop
-42200
- Ecil Informática Indústria e Comercio LTDA
- Alberto Ferreira da Silva
- alberto&ecilenergia.com.br
-42201
- Schenker, Inc.
- Brian Klauss
- brian.klauss&dbschenker.com
-42202
- FreeTel, s.r.o.
- Jaroslav Střeštík
- info&freetel.cz
-42203
- TRAÇOTOPÁZIO - INFORMÁTICA UNIPESSOAL LDA
- Fernando Hackbart
- tracotopazio.informatica&gmail.com
-42204
- Kumoya Network
- Hiroki Otsuka
- otsuka&kumoyanet.com
-42205
- Dooks Computer Services Ltd.
- Alexey Maslennikov
- alexey&dooks-it.com
-42206
- Proelse
- Jesus Manuel Conejo Sarabia
- jmconejo&proelse.es
-42207
- Commission Scolaire de la Pointe-de-l'Ile
- Robert Mc Cready
- robert-mccready&cspi.qc.ca
-42208
- itecPlus GmbH
- Reiner Winter
- reiner.winter&itecplus.de
-42209
- CharlesRead Dot Com
- Charles Read
- charles&charlesread.com
-42210
- Beenius d.o.o.
- Miha Cerar
- miha.cerar&beenius.tv
-42211
- SHENZHEN HUAXUNARK TECHNOLOGY Co. Ltd.
- Sun Rongjun
- zhangming&huaxunchina.cn
-42212
- CareCenter Software GmbH
- Christoph Hatzenberger
- hatzenberger&carecenter.at
-42213
- troydenton.ca
- Troy Denton
- trdenton&gmail.com
-42214
- Kaplan Bilisim Teknolojileri Yazilim ve Ticaret Ltd.
- Yasin KAPLAN
- yasin.kaplan&kaplansoft.com
-42215
- Alerant Inc.
- Peter Nagy
- nagy.peter&alerant.hu
-42216
- BlueCorner
- Rueben Van Mol
- rueben.vanmol&enovates.com
-42217
- Khoo Software Solutions
- Eddie Khoo
- software&khoo.id.au
-42218
- ValleyCare Health System
- Jenny Yiu
- jyiu&valleycare.com
-42219
- UniCredit Luxembourg S.A.
- Michael WALDINGER
- PrivateEnterpriseNumber&unicreditgroup.lu
-42220
- TELEDATA IT-Lösungen GmbH
- Roman Gross
- support&teledata-nahdran.de
-42221
- Syl Research Limited
- Adrian John
- adrian.john&sylsemantics.com
-42222
- Integrated Systems Technology, Inc.
- Nathan Schlutter
- NSchlutter&IntSysTek.com
-42223
- Archive Analytics Ltd
- John Burns
- John.Burns&ArchiveAnalytics.com
-42224
- Fraunhofer Portugal Research Center for Assistive Information and Communication Solutions (Fraunhofer AICOS)
- Carlos Alexandre Teixeira do Amaral Resende
- carlos.resende&fraunhofer.pt
-42225
- Amco Marketing
- Kate Gray
- kate&amcomarketing.com
-42226
- Evolve Media LLC
- Richard Kruszewski
- sysadmins&evolvemediallc.com
-42227
- Max-Planck-Institut fuer Mikrostrukturphysik
- Frank Mueller
- frank.mueller&mpi-halle.mpg.de
-42228
- Center Group
- Dinar Rakhimbaev
- rakhimbaev&cg.ru
-42229
- Coriant R&D GmbH
- Peter Litz
- peter.litz&coriant.com
-42230
- HiProCall GmbH
- Lothar Schmitt
- L.Schmitt&hiprocall.de
-42231
- AlfaTrein Ltd
- Vladimir Isaev
- isaevv_r&alfatrein.ru
-42232
- Fanzz
- Shawn Waters
- iana-pen&fanzz.com
-42233
- Sigma Designs Inc.
- Edmund Lee
- edmund_lee&sigmadesigns.com
-42234
- Knotice, Ltd.
- Ron Cuirle
- rcuirle&knotice.com
-42235
- Tresorit Kft.
- Istvan Lam
- lam&tresorit.com
-42236
- RDT Ltd
- Holger Hasenstrauch
- itsupport&rdt.co.uk
-42237
- Texas A&M University-Central Texas
- Steven Blum
- steven.blum&tamuct.edu
-42238
- Grenville Mutual Insurance Company
- Andrew Asquith
- itservices&grenvillemutual.com
-42239
- Aspira Networks, Inc
- Bart Wyatt
- iana-admin&aspiranetworks.com
-42240
- Keyano College
- Hasan Mehdi
- hasan.mehdi&keyano.ca
-42241
- Geoquip Worldwide
- Paul Renham
- paul.renham&geoquip.com
-42242
- znets
- DESCOMBES Thierry
- thierry.descombes&gmail.com
-42243
- DLA Piper LLP (US)
- Don Krtanjek
- donald.krtanjek&dlapiper.com
-42244
- ITS Express, Inc.
- Mark Schulting
- mschulting&itsexpress.com
-42245
- Tagged, Inc.
- Corey Hickey
- chickey&tagged.com
-42246
- OnePIN, Inc.
- Marcin Nowak
- it&onepin.com
-42247
- Aleph01
- David Rouillon
- contact&aleph01.com
-42248
- SAIV
- Giovanni Lovato
- giovanni.lovato&saiv.it
-42249
- Claritech SRL
- Cristian Croitor
- cristian&claritech.ro
-42250
- HFC Technics Ltd.
- Gergely Peter, Tamas
- g.tamas&hfctechnics.hu
-42251
- FutureTek, Inc.
- In Hyun, Cho
- xtra72&gmail.com
-42252
- Pflegeheim Alexander Beer GmbH & Co KG
- Martin Schneider
- m.schneider&pflegeheim-beer.at
-42253
- Zalando GmbH
- Hanno Hecker
- sysop&zalando.de
-42254
- Inline Telecom Solutions
- Dmitriy Pustovalov
- d_pustovalov&inlinetelecom.ru
-42255
- The All England Lawn Tennis Club (Championships) Limited
- Paul Beyer
- it-alerts&aeltc.com
-42256
- McGuireWoods LLP
- Stephen Hogan
- shogan&mcguirewoods.com
-42257
- Cambridge Major Laboratories, Inc.
- Joe Nolan
- j.nolan&c-mlabs.com
-42258
- ooblick.com
- Andrew Arensburger
- iana&ooblick.com
-42259
- Green Energy Options Ltd
- Adrian van den Heever
- geo.pen&greenenergyoptions.co.uk
-42260
- Bent Vector
- Rob Targosz
- rtargosz&bentvector.com
-42261
- Sayegh & John e-Trolley GbR
- Nabil Sayegh
- internet&e-trolley.de
-42262
- TechRede, LLC
- Shannon Fritz
- pen&techrede.net
-42263
- Servas
- Matteo Pedani
- matteo&servas.it
-42264
- Fabien Debuire
- Fabien Debuire
- debuire.fabien&gmail.com
-42265
- Thunder Software Technology Co., Ltd.
- zhangqiang
- zhangqiang&thundersoft.com
-42266
- Otto (GmbH & Co KG)
- Timo Gloeden
- timo.gloeden&otto.de
-42267
- SARL Mixcom
- Philippe Rolland
- mibadmin&mixcom.fr
-42268
- MEWA Textil-Service AG & Co. Management OHG
- Hagen Block
- Hagen.Block&mewa.de
-42269
- Rigspolitiet (Danish National Police)
- Peter Thiim
- pth013&politi.dk
-42270
- Azienda Unita' Sanitaria Locale di Parma
- Domenico Ielo
- dielo&ausl.pr.it
-42271
- Fixious Global Indonesia
- Feny Suharyono
- fenk&fixious.com
-42272
- Howard University Hospital
- Bernie Galla
- bgalla&huhosp.org
-42273
- AMPER
- David Marza
- david.marza&amperonline.com
-42274
- Nexusguard Limited
- Juniman Kasman
- juniman&nexusguard.com
-42275
- Advanced MR Analytics AB
- Hannes Järrendahl
- pen&amra.se
-42276
- Infragear Inc
- Livio Ceci
- livio&infragear.com
-42277
- CSW.IO
- Robert Van Kleeck
- rob&csw.io
-42278
- Precitel SA
- Jim Liener
- jml&precitel.com
-42279
- SensMaster S/B
- Martin Harnevie
- martin&sensmaster.net
-42280
- SatExpander
- Dan Peleg
- dan.peleg&satexpander.com
-42281
- InfoBridge Solutions
- Naimish Dayah
- naimish&infobridge.co.uk
-42282
- Pragmatix Services Private Limited
- Sandeep Singh Sandhu
- sandeep.sandhu&pragmatixservices.com
-42283
- Berwick Area School District
- Dave Lovette
- dlovette&berwicksd.org
-42284
- Kai van Es
- Kai van Es
- kai.vanes&gmail.com
-42285
- FCS Computer Systems Sdn Bhd
- David Hutt
- david.hutt&fcssolution.com
-42286
- Connectem Inc.
- Heeseon Lim
- heeseon&connectem.net
-42287
- UAP inc.
- Pierre Ouellet
- is-admin&uapinc.com
-42288
- Sportech Inc.
- Andrew Hall
- andrew.hall&sportech.net
-42289
- NetTech Associates LLC
- Dean Thuline
- deant&ntaglobal.com
-42290
- LLC Sysvisor
- Aleksey Tretyakov
- sysvisor&mail.ru
-42291
- DWANGO MOBILE Co., Ltd.
- Masahiro Honma
- infra1&dwango.co.jp
-42292
- SL Audio A/S
- Thomas Birkelund
- tbi&lyngdorf.com
-42293
- North-West Customs-Logistical Service Co. Ltd.
- Maksim Andrukhovich
- uc&sztls.ru
-42294
- S. & A.S. Ltd.
- Ziad Boustany
- ziad&sascontrollers.com
-42295
- imzadi.de Network
- Anna Christina Naß
- christina&imzadi.de
-42296
- Impero Solutions Ltd
- Richard Moscone
- rmoscone&imperosoftware.com
-42297
- Fraunhofer-Institut fuer Kommunikation, Informationsverarbeitung und Ergonomie FKIE
- Steffen Grathwohl
- steffen.grathwohl&fkie.fraunhofer.de
-42298
- Smoothwall Ltd
- Daniel Barron
- daniel.barron&smoothwall.net
-42299
- Johnson Financial Group
- Hank Ollanketo
- hollanketo&johnsonbank.com
-42300
- Ministère de la santé et des serveurs sociaux
- Mathieu Alain
- mathieu.alain&msss.gouv.qc.ca
-42301
- turleyclan.com
- Edward Lawrence Turley
- ed-and-ale&sbcglobal.net
-42302
- Beijing ForEase Times Technology Co., Ltd.
- Jonsen Yang
- yangmingmao&forease.net
-42303
- TE-SYSTEMS GmbH
- Oliver Koerber
- info&te-systems.de
-42304
- it & synergy GmbH
- Martin Koeditz
- martin.koeditz&it-syn.de
-42305
- Lupus alpha Asset Management
- Matthias Biedenkapp
- group-adminmanager&lupusalpha.de
-42306
- CANARIE Inc.
- Chris Phillips
- iana&canarie.ca
-42307
- Wildcard UK Ltd
- Lee Johnston
- lee&wildcard.net.uk
-42308
- IndexUniverse, LLC
- Fernando Rivera
- frivera&indexuniverse.com
-42309
- Skale, Inc.
- Jared Brank
- jared.brank&skalenetworks.com
-42310
- Matrix Switch Corporation
- Element Green
- element&matrix-switch.tv
-42311
- X-Centric Solutions
- Justin Knash
- jknash&x-centric.com
-42312
- Hangzhou Zailing Electronic Technology Co., LTD
- Jing Kuo
- jingkuo&zailingtech.com
-42313
- Synergy Tecnologia
- Mauricio Strasburg
- mauricio&synergy.com.br
-42314
- D2D Technologies, LLC
- Steve Doll
- steve.doll&d2dtechnologies.com
-42315
- Mobisante, INC
- David M. Zar
- david.zar&mobisante.com
-42316
- Pragmatech
- Valentine Sinitsyn
- v.sinitsyn&pragmatech.ru
-42317
- inVentia
- Marcin Dutka
- marcind&inventia.pl
-42318
- Recognition Technologies, Ltd
- Alexander Sein
- a.sein&recognize.ru
-42319
- 777 Technology Solutions Limited
- Andrew Heron
- Andrew.Heron&777T-S.COM
-42320
- Unassigned
- Removed 2013-08-27
- ---none---
-42321
- Mother Lode Holding Company
- Ryan Murphy
- rmurphy&mlhc.com
-42322
- TrakSystems
- Remy Mudingay
- mudingay&trak-systems.com
-42323
- Demma
- Mark Hodge
- markh&demma.co.uk
-42324
- Powercode LLC
- Simon Westlake
- simon&powercode.com
-42325
- Dialight, Inc.
- Robert Henson
- rhenson&dialight.com
-42326
- ICON Americas
- Sergio Samayoa
- sergiosamayoa&icon.com.gt
-42327
- IEEE Student Branch Passau
- Alexander Böhm
- boehm&computer.org
-42328
- Nementis
- Antonello Giuseppe Bianchi
- antonello&nementis.eu
-42329
- ipowertec
- zhoumou
- zhoumou&gmail.com
-42330
- Deltapath Commerce And Technology Limited
- Yip Yue Hong
- hong&deltapath.com
-42331
- Polarlink
- Chenfeng Liang
- chenfeng.liang&polarlink.com.tw
-42332
- Vaillant Group
- Dr. Thomas Demuth
- thomas.demuth&vaillant-group.com
-42333
- Aliter Technologies, a.s.
- Milan Gottstein
- milan.gottstein&aliter.com
-42334
- Relmek co., Ltd
- plato lin
- plato&relmek.com.tw
-42335
- iQ Consult Pty Ltd
- Benjamin Johns
- bjohns&iqconsult.com.au
-42336
- ADITO Software GmbH
- Tobias Feldmann
- administrator&adito.de
-42337
- New York State Workers' Compensation Board
- Salvatore Galazzo
- salvatore.galazzo&its.ny.gov
-42338
- Anywhere.24 Technologies GmbH
- Marc Aigner
- subscriptions&anywhere24.com
-42339
- Sabtech
- Bryan Ly
- lyb&sabtech.com
-42340
- Open Standard Digital-IF Interface
- Herald Beljour
- herald.beljour&us.army.mil
-42341
- Tucson Airport Authority
- Robert Maudsley
- rmaudsley&flytucson.com
-42342
- Guangdong Cable Corporation Limited
- Wangga
- wga&gdcatv.com.cn
-42343
- James Hurley
- James Hurley
- hurleyjames6&gmail.com
-42344
- Puli Space Technologies Ltd.
- Attila Bárdi
- attila.bardi&pulispace.com
-42345
- Fluidic, Inc., d/b/a Fluidic Energy
- Bruce Weber
- snmp-admin&fluidicenergy.com
-42346
- E-SIGN S.A.
- FLAVIO TAPIA
- ftapia&e-sign.cl
-42347
- Toyou Feiji Electronics Co., Ltd.
- Wang Daobang
- wangdb&toyou.com.cn
-42348
- RUSNANO
- Ivan Kostukov
- licensing&rusnano.com
-42349
- Noack Group
- Christian Dergovics
- ianapen&noackgroup.com
-42350
- Trebing & Himstedt Prozessautomation GmbH & Co. KG
- Dr. Christopher Anhalt
- canhalt&t-h.de
-42351
- Champs Libres SCRLFS
- Julien Fastré
- julien&fastre.info
-42352
- Hanweck Associates LLC
- Gerald Hanweck
- jhanweck&hanweckassoc.com
-42353
- LottSpot
- James Lott
- james&lottspot.com
-42354
- Trackprotect B.V.
- Jair Römer
- jair.romer&rhosound.com
-42355
- ABCTec
- João Souza
- joao&abctec.com.br
-42356
- Electronic Media Services Ltd
- Andrew Lambert
- sysadmin&ems-uk.com
-42357
- CHILLI MINT LABS LIMITED
- BEN DURKIN
- support&chillimintlabs.com
-42358
- IP2I
- HERVE PAPIN
- herve.papin&ip2i.fr
-42359
- Versa Networks, Inc
- Shiva Shenoy
- shiva&versa-networks.com
-42360
- Skybox Imaging, Inc.
- Evan Tidd
- evan&skybox.com
-42361
- rahont
- Ivan Raduntsev
- pen-data&rahont.org
-42362
- spacefrogg.net
- Michael Raitza
- s-pen&spacefrogg.net
-42363
- Dematis
- ludwig schubert
- ludwig.schubert&dematis.com
-42364
- Optoscape Optical Electronic Tech.Co.,Ltd
- maiyuan
- yuan.mai&optoscape.com
-42365
- H & M Hennes & Mauritz AB
- Emil Linder
- hm_it_infra&hm.com
-42366
- WxBR Wireless Broadband Soluctions
- Arnaldo Verdibello
- averdibello&wxbr.com.br
-42367
- Gedomo GmbH
- Hannes Hörting
- h.hoe&gedomo.com
-42368
- Azuru Networks
- Liam McSherry
- team&azuru.me
-42369
- Softel ltd
- Stanislav Georgiev
- s.georgiev&softel.bg
-42370
- ADRIATIC SLOVENICA d.d.
- Mitja Trtnik
- mitja.trtnik&adriatic-slovenica.si
-42371
- PA CSS (Pennsylvania eHealth Partnership Authority’s Community Shared Services)
- Himabindu Bolisetty
- bindu&careevolution.com
-42372
- Banterra
- Michael Goff
- mhgoff&banterra.com
-42373
- Kliniken des MTK GmbH
- Mathias Rockel
- mrockel&kliniken-mtk.de
-42374
- Inmar Enterprises
- Matt Aloi
- Matt.aloi&inmar.com
-42375
- Unassigned
- Removed 2013-09-06
- ---none---
-42376
- Riverbed Technology Labs GmbH (formerly 'Ocedo GmbH')
- Ulrich Weber
- ulrich.weber&riverbed.com
-42377
- MBD Consulting, LLC
- Timothy Sawyer
- tim.sawyer&mbdsolus.com
-42378
- FOSS-Group GmbH
- Beat Stebler
- beat.stebler&foss-group.de
-42379
- Danske Fragtmænd A/S
- Lars Pedersen
- dflpn&fragt.dk
-42380
- IDFocus
- Mark I. van Reijn
- mvreijn&idfocus.nl
-42381
- Human Brain Project
- Carlos Aguado
- bbp.administrator&epfl.ch
-42382
- iSystems e.U.
- Jenny Danzmayr
- iana&isystems.at
-42383
- Horizon Fuel Cell Technologies
- Richard Clint Escamilla
- richardclint&horizonfuelcell.com
-42384
- Tecnologías Inteligentes y Modelación de Sistemas, S.A de C.V.
- Roberto Hiribarne Guedes
- hiribarne&gmail.com
-42385
- AIC Inc.
- Jack Hsu
- jack.hsu&aicipc.com.tw
-42386
- dylanharris.org
- Dylan Harris
- mail&dylanharris.org
-42387
- CompuTEK Industries
- Dwight Spencer
- support&dapla.net
-42388
- TEL-STER sp. z o.o.
- Tomasz Lis
- Tomasz.Lis&tel-ster.pl
-42389
- Ital-Mec s.r.l.
- Alessandro Fiani
- a.fiani&ital-mec.com
-42390
- Oslo KFUMs Sjøkorps
- Ragnar Storstrøm
- sjefen&sjokorpset.no
-42391
- Eastern Informatics, Inc.
- Mike Henderson
- mike&easterninformatics.com
-42392
- FOXTER Cia Imobiliária
- Frederico Pandolfo
- frederico&foxter.net.br
-42393
- Teledata Comunicaciones S.A.
- Jorge Barattini
- jorgito&teledata.com.uy
-42394
- Synapse
- Gre7g Luterman
- greg.luterman&synapse-wireless.com
-42395
- EPM
- Travis Meier
- TravisM&epm.co.za
-42396
- xsinfosol pvt ltd
- Amit Pasari
- amit&xsinfosol.com
-42397
- Grandstream Networks, Inc.
- Xiaofeng Xu
- xxu&grandstream.com
-42398
- KnCMiner AB
- Marcus Erlandsson
- marcus&kncminer.com
-42399
- Garuda Permata Saputra, CV.
- Stephanus Bagus Saputra
- shimaiqiwang&yahoo.com
-42400
- TD Tech Ltd.
- Zhang Hehua
- tdtechianaoid&gmail.com
-42401
- CanTech s.r.o.
- Frantisek Hertl
- hertl&cantech.cz
-42402
- Spec S.A.
- Toni Beleta
- abeleta&grupospec.com
-42403
- Ivane Javakhishvili Tbilisi State University
- Mikheil Makhviladze
- Mikheil.makhviladze&tsu.ge
-42404
- Vadacom Limited
- Nic Bellamy
- snmp&vadacom.co.nz
-42405
- Roambotics, Inc.
- Scott Menor
- scott&roambotics.com
-42406
- SATO Corporation
- Konosuke Haraguchi
- hara2772&pn.sato.co.jp
-42407
- iGrid S.L.
- David Bru i Bru
- david.bru&igrid-td.com
-42408
- HealthSafe24
- Friedhelm Matten
- friedhelm.matten&healthsafe24.de
-42409
- TopMenu.com
- Justin Kaufman
- jk&topmenu.com
-42410
- Blue Denim Consulting Group Inc.
- Shawn Brant
- bluedenim&bdenim.ca
-42411
- Niklaus Ltd.
- Dmitry Grunin
- dgrunin&niklaus.ru
-42412
- Osorno Enterprises Inc.
- Dr. H. Peter Hombach
- p.hombach&osorno.ca
-42413
- PACSHealth, LLC
- Steve Massey
- steve.massey&pacshealth.com
-42414
- Cloudacc Interactive, Inc.
- Cheng Zhang
- cheng.zhang&cloudacc-inc.com
-42415
- Prince Rupert Grain Ltd.
- Howard Hood
- hhood&prgrain.bc.ca
-42416
- Software Engineering Center (SEC)
- Jamie C. Rizzo
- Jamie.Rizzo&us.army.mil
-42417
- A2Zlogix
- Sami Fattah
- sfattah&a2zlogix.com
-42418
- GovSource Pty Ltd
- Steve Capell
- admin&govsource.com.au
-42419
- NICEUC Communication Tech CO., LTD
- young peng
- supports&niceuc.com
-42420
- Hebei SICON-EMI Power System Co., Ltd.
- LiuYong
- xltyt&qq.com
-42421
- OpenVox Ltd.
- Miao Lin
- lin.miao&openvox.cn
-42422
- ALLWIN Network Corp.
- Michael Kuo
- michael&allwin.com.tw
-42423
- Republic of Azerbaijan Ministry of Foreign Affairs
- Mr. Talib Talibli
- t_talibli&mfa.gov.az
-42424
- International Card Services BV (ICS)
- Erik Uyttenbroek
- euyttenbroek&icscards.nl
-42425
- Thiesen Hardware- & Software-Design GmbH
- Erik Habicht
- e.habicht&thiesen.com
-42426
- Institut Paul Bocuse
- David Dessertine
- david.dessertine&institutpaulbocuse.com
-42427
- New York Community Bancorp
- Nathan Arlington
- nathan.arlington&mynycb.com
-42428
- Bharti Airtel Limited
- Ravinder Bhardwaj
- ravinder.bhardwaj&airtel.com
-42429
- Hidden Authentication and Trust service
- Filigranowy Dragon
- filigranowy.dragon&riseup.net
-42430
- University of Massachusetts
- James Barbieri
- jbarbieri&umassp.edu
-42431
- Chelyabinsk palace of pioneers and pupils named after Krupskaya N.K.
- Dmitry Merzlov
- admin&chel-dpsh.ru
-42432
- lepassepresent.com
- Nathalie Bezamat
- nb&lepassepresent.com
-42433
- Parliamentary Commissioner for Administrative Investigations
- Devin Simpson
- devin.simpson&ombudsman.wa.gov.au
-42434
- BOMATEC AG
- Markos Pliakas
- markos.pliakas&bomatec.ch
-42435
- LEONHARD KURZ Stiftung & Co. KG
- Markus Bergner
- postmaster&kurz.de
-42436
- Ojsc NIAEP
- Roman Kluev
- sam&niaep.ru
-42437
- Deltek, Inc.
- Rich Ronston
- security&deltek.com
-42438
- Saratoga Speed Inc.
- Julian Ratcliffe
- julian.ratcliffe&saratoga-speed.com
-42439
- Stephan Seitz
- Stephan Seitz
- s.seitz&secretresearchfacility.com
-42440
- IQ Devices
- Steve Rogers
- steverogers&iqdevices.com
-42441
- Uniscon universal identity control GmbH
- Arnold Monitzer
- contact&uniscon.de
-42442
- Hochschule der Medien Stuttgart
- Engster, Florian
- hostmaster&hdm-stuttgart.de
-42443
- Genesis Integration
- Manuel Deschambault
- themactech&me.com
-42444
- Oriental Cambridge Education Group
- Wang Bin
- wangbin&dfjq.com.cn
-42445
- InterASIA Solutions Inc.
- Rickie Yang
- rickie_yang&int-asia.com.tw
-42446
- Beijing Hesun Technologies Co.Ltd.
- liming zhang
- zhangliming&hesuns.com
-42447
- FreeSoft Nyrt.
- Frigyes Bato
- fbato&freesoft.hu
-42448
- Taisis Integration And Consulting Services sl
- Rafael Fernández
- rafael.fernandez&taisis.com
-42449
- InvestLab Technology, LLC
- Robert Philipp
- rphilipp&investlab.com
-42450
- Mutual Aid Labs, LLC
- Ryan Wessels
- ryan.wessels&mutualaidlabs.com
-42451
- Rizotec
- Liran Kessel
- liran&rizotec.com
-42452
- IRIS-RFID
- JEREMY LE GALL
- admin-reseau&iris-rfid.com
-42453
- Drawersteak Research
- Andrew Zonenberg
- azonenberg&drawersteak.com
-42454
- Funkring.net
- Martin Reisenhofer
- martin.reisenhofer&funkring.net
-42455
- FOBAS Consulting, Inc.
- Satoru Matsushita
- smatsush&fobas.jp
-42456
- VM Farms
- Justin Good
- justin&vmfarms.com
-42457
- Palluc TIC SL
- Joan Vicent Carbonell Blasco
- joan&palluc.com
-42458
- TigerLead Solutions
- Andrew Kerr
- ops&tigerlead.com
-42459
- Esdenera Networks GmbH
- Reyk Floeter
- reyk.floeter&esdenera.com
-42460
- SYS'TRONICS Co., Ltd.
- kwang young lee
- kylee&systronics.kr
-42461
- Innosonix GmbH
- Markus Baetz
- markus&innosonix.de
-42462
- David Ouagne
- David Ouagne
- david.ouagne&gmail.com
-42463
- TLS Corp.
- Ioan Rus
- ioan.rus&telosalliance.com
-42464
- binarycube
- Chris Thornhill
- chris&binarycube.com
-42465
- Xerx Software Ltd
- William Wirth-Torres
- williamwirth-torres&hotmail.com
-42466
- Kratos Defense and Security Solutions, Inc.
- Scott Brawner
- scott.brawner&kratosdefense.com
-42467
- Lucipher
- Pieter van Beek
- pieter&lucipher.net
-42468
- Jorge Cavallin
- Jorge Cavallin
- jecavallin&hotmail.com
-42469
- Infobahn SA
- Bertrand Dufresne
- info&infobahn.ch
-42470
- Voippartners s.r.l.
- Simone Freddio
- simone.freddio&voippartners.it
-42471
- HOTCITY S.A.
- Guillaume-Jean Herbiet
- gherbiet&hotcity.lu
-42472
- SC-IT GmbH
- Tobias Peter
- hostmaster&sc-it.de
-42473
- Action Technology Ltd.
- Xie Zhenye
- xiezhenye&actionsky.com
-42474
- Toro Development Ltd.
- Wilson Liu
- wilson.liu&toro-asia.com
-42475
- Dewar Electronics Pty Ltd
- Delia Jones
- delia&dewar.com.au
-42476
- Border 6
- Mateusz Viste
- mateusz.viste&border6.com
-42477
- OneNeck IT Services Corporation
- Paul Zalewski
- Paul.Zalewski&OneNeck.com
-42478
- Proteus Sensor
- Avarachan Cherian
- contact&proteussensor.com
-42479
- Metropolitan Wireless International Pte Ltd
- Sun Yong
- sunyong&mwi.com.sg
-42480
- Grenland Data as
- Stian Viddal
- stian.viddal&gda.no
-42481
- Teletronix
- Samuel Dionísio de Oliveira
- samuel&teletronix.com.br
-42482
- DocuSign, Inc.
- Tom Thokey
- tom.thokey&docusign.com
-42483
- Pioneer Bank
- David Paul
- dpaul&bankwithpioneer.com
-42484
- Ultrix Sistemas de Informação
- Henry Fernandez
- henry&ultrix.srv.br
-42485
- Christian Scholz
- Christian Scholz
- scholz.christian&berlin.de
-42486
- Nuolezio
- Bastien Le Querrec
- bastien&nuolezio.org
-42487
- Shenzhen Philorise co.ltd.
- Ke huimin
- kehuimin&philorise.cn
-42488
- Element d.o.o
- Ivo Elezovic
- ivo&element.hr
-42489
- Preferred Credit, Inc.
- Steve Halvorson
- comp&preferredcredit.com
-42490
- Intesi Group SpA
- Emanuele Cisbani
- ecisbani&intesigroup.com
-42491
- Racktop Systems
- Eric Bednash
- netops&racktopsystems.com
-42492
- Far Bank Enterprises
- Christopher Kent
- it&farbank.com
-42493
- City of Waukesha
- Greg Vanness
- gvanness&ci.waukesha.wi.us
-42494
- Beckwith Electric Co. Inc
- Thaichong Li
- tli&beckwithelectric.com
-42495
- O2 Systems Limited
- Pranilesh Chand
- support&o2systems.co.nz
-42496
- GlobalNaz IT
- Brad Firestone
- iana&globalnaz.org
-42497
- Brookhaven Retreat, LLC
- Ken Barnt
- bhadmin&brookhavenretreat.com
-42498
- Guenter Zimmermann
- Guenter Zimmermann
- guenterzim&gmail.com
-42499
- Orlov-Miller
- Alexander Orlov
- 673564&gmail.com
-42500
- Deoca Ltd.
- Joe Sloan
- joe.sloan&deoca.com
-42501
- Oto IT Limited
- Lee Marsden
- lee&otoit.co.uk
-42502
- CellOS Software Limited
- David Lynes
- dlynes&cellossoftware.com
-42503
- XJ Group Corporation
- Wu ShuangHui
- wushuanghui&xjgc.com
-42504
- SOKRAT Ltd.
- Eugene Burlakov
- jean&sokrat.ru
-42505
- Denkovi Assembly Electronics LTD
- Borislav Denkov
- support&denkovi.com
-42506
- Gostcomp Oliwer Godlewski
- Kamil Bugaj
- bugaj.kamil&gostcomp.pl
-42507
- HeuleSoft
- Daniel Heule
- daniel.heule&heulesoft.ch
-42508
- Shepherd Group Built Environment Information Systems (SGBE IS)
- Steve Burton
- sburton&shepherdbe.com
-42509
- net4home GmbH
- Oliver Koerber
- info&net4home.de
-42510
- Cape Fear Valley Health System
- Sam Atchley
- satchley&capefearvalley.com
-42511
- maxrosin.com
- Max Rosin
- iana-pen&hackrid.de
-42512
- Suchocki IT
- Marcin Suchocki
- marcin&suchocki.it
-42513
- Ymax Communications
- Gregory Lynn Wood
- greg.wood&ymaxcorp.com
-42514
- SHENZHEN HXWK TECHNOLOGIES,CO LTD
- Huayong Ding
- hding&hxtcpip.com
-42515
- Liberty Global Services B.V.
- Silvia Baumann / James Kennedy
- ripe&libertyglobal.com
-42516
- Orderman GmbH
- Alexander Uzsoki
- Alexander.Uzsoki&orderman.com
-42517
- Fundación Centro de Estudios de Física del Cosmos de Aragón
- Luis Guillén Civera
- lguillen&cefca.es
-42518
- ZPE Systems, Inc
- Livio Ceci
- livio.ceci&zpesystems.com
-42519
- BrainLogical Software Development
- Andreas Röne
- roene&brainlogical.de
-42520
- LifeSafety Power, Inc.
- Guang Liu
- gliu&lifesafetypower.com
-42521
- Assystem France
- François LEGAL
- franlegal&assystem.com
-42522
- Velin V. Pavlov
- Velin V. Pavlov
- velin.v.pavlov&gmail.com
-42523
- Leibniz-Institut fuer Analytische Wissenschaften -ISAS- e.V.
- Peter Lampen
- it&isas.de
-42524
- Townet srl
- Franco Marchetti
- franco&townet.it
-42525
- Werkbank Multimedia GmbH
- Sascha Gresk
- gresk&werkbank.com
-42526
- elgris UG
- Elwin Veenendaal
- info&elgrispower.com
-42527
- WTG Technologies Ltd
- Raymond Edah
- iana-en&wtg.co.uk
-42528
- Slovak Hydrometeorological Institute (SHMU)
- Roman Zehnal
- Roman.Zehnal&shmu.sk
-42529
- New Jersey Office of Information Technology
- Timothy Gansert
- timothy.gansert&oit.state.nj.us
-42530
- SSQ Financial Group
- Remy Jobin
- remy.jobin&ssq.ca
-42531
- Security Industry Association
- Joseph Gittens
- jgittens&securityindustry.org
-42532
- Holysee Vatican Library
- Mr.Gabriele Giulimondi
- gabriele&giulimondi.it
-42533
- BIOVELA, UAB
- Sergej Pokusajev
- Sergej&biovela.lt
-42534
- CAFAT
- GUYAUX Pierre
- securiteinfo&cafat.nc
-42535
- ictjob
- Frederic Lepere
- info&ictjob.be
-42536
- Hanover Displays Ltd.
- David Glendining
- dglendining&hanoverdisplays.com
-42537
- SnmpStack
- Jason Patterson
- jasonp&snmpstack.com
-42538
- artnet world wide
- Muhammad Elsaiedy
- melsaiedy&artnet.com
-42539
- Trumpet, Inc
- Richard Mixon
- RNMixon&CustCo.biz
-42540
- Zimpel Events And Communications PTY Ltd.
- Maik Zimpel
- maik&zimpel.co.za
-42541
- My Telecom Holdings Pty Ltd
- Timothy Sheahan
- sheahant&mytelecom.com.au
-42542
- Voillo Solutions Ltd.
- Taneem Ahmed
- tahmed&voillo.com
-42543
- Simpson University
- Curt Dodds
- cdodds&simpsonu.edu
-42544
- ALLENGERS GLOBAL HEALTHCARE PRIVATE LIMITED
- MADHUR GOYAL
- madhur.goyal&allengers.net
-42545
- CSC Telecom
- Viktor Svecov
- noc&csc.lt
-42546
- tyntec GmbH
- Sven Neuhaus
- neuhaus&tyntec.com
-42547
- OrecX LLC
- Ralph Atallah
- ratallah&orecx.com
-42548
- gloops, Inc.
- Kenichi Matsudo
- system&gloops.com
-42549
- F.S.P. Filofarm
- Grzegorz Rybicki
- grybicki&filofarm.pl
-42550
- SFS services AG
- Marco Grünenfelder
- grue&sfsservices.biz
-42551
- CRFS Limited
- Steve Williamson
- swilliamson&crfs.com
-42552
- Hrvatski zavod za telemedicinu
- Zoran Zorica
- zoran.zorica&ztm.hr
-42553
- TeknoUnit
- Alexander Fedorov
- service&teknounit.com
-42554
- Dynamic Quest, INC
- Jen Wong
- jwong&dynamicquest.com
-42555
- Faculty of Information Technology and Applied Mathematics, BelSU
- Mikhalev Oleg
- systemarchitect.sentinel&gmail.com
-42556
- Visao Tecnologia em Transmissao de Dados Ltda
- Arthur Girardi
- noc&visao.psi.br
-42557
- Unico Data AG
- Stefan Beckmann
- oid&unico.ch
-42558
- Canis Lupus LLC
- Benjamin Nelms
- alpha&canislupusllc.com
-42559
- AppEnsure
- Sri Chaganty
- sri&appensure.com
-42560
- Kirovohrad Volodymyr Vynnychenko State Pedagogical University
- Maksym Nazarenko
- sysadmin&kspu.kr.ua
-42561
- ZAO "MD Project 2000"
- Alexander Bikov
- it&mospmc.ru
-42562
- Universidad Pública de Navarra (UPNA)
- Javier Echeverría Martorell
- secretaria.general&unavarra.es
-42563
- Kaleidescape, Inc.
- John Sykes
- internetregistrar&kaleidescape.com
-42564
- KO4BB Electronics
- Didier Juges
- didier&ko4bb.com
-42565
- Weirton Medical Center
- Mike Contumelio
- michael.contumelio&weirtonmedical.com
-42566
- ClearBearing, Inc.
- Zack Colgan
- tech&clearbearing.com
-42567
- David Spinella
- David Spinella
- spinella.david&verizon.net
-42568
- Andreas Vavra
- Andreas Vavra
- andi&vaviland.at
-42569
- Miesepies
- Michel Vissers
- iana&miesepies.nl
-42570
- Independent Bank Corporation
- Chris Michaels
- cmichaels&ibcp.com
-42571
- Cybera, Inc
- Scott Wolfe
- scott.wolfe&cybera.net
-42572
- SAFELYLOCKED, LLC
- Tuomas Siren
- iana-pen-contact&safelylocked.com
-42573
- Sun Nuclear Corporation
- Mark Paradis
- mparadis&sunnuclear.com
-42574
- Sydestep Ltd
- Dr. Richard Petheram
- it-admin&sydestep.com
-42575
- e-business-systems SARL
- Boris Wiethoff
- boris.wiethoff&ebs.co.mz
-42576
- Linpow SRL
- Jorge Sbaco
- sbaco.jorge&linpow.com.ar
-42577
- Crosspoint SRL Romania
- Viorel Dehelean
- viorel&cpt.ro
-42578
- Xcel Energy
- Jeremy Rider
- jeremy.m.rider&xcelenergy.com
-42579
- sysmocom - systems for mobile communications GmbH
- Harald Welte
- hwelte&sysmocom.de
-42580
- Statseeker
- James Wells
- james&statseeker.com
-42581
- Regional Digital Telecommunication Company
- Andrey Lygin
- sysand&rdtc.ru
-42582
- Interlink Ltd.
- John Pate
- jp&interlink.com.ua
-42583
- DPII TELECOM & SERVICES
- DELANCRAY Claire Isabelle
- cidelancray&dpii-telecom.com
-42584
- ROWA Group Holding GmbH
- Thomas Hooge
- hooge&rowa-group.com
-42585
- TRIKOM Ltd.
- Kropotov Alexander
- alk&trikom.ru
-42586
- DAG System
- Roux Jean-Luc
- jl.roux&dag-system.com
-42587
- Investigaciones Medicas S.A.
- Exequiel Arona
- earona&im.com.ar
-42588
- AGST Controles e Automação Ltda
- Tiago dAvila
- engenharia&agst.com.br
-42589
- Swifttrip LLC
- Alan Bunch
- oids&swifttrip.com
-42590
- AVB GmbH Wind Engineering
- Boy Reese
- b.reese&avb-germany.com
-42591
- Forlani Impianti s.r.l.
- Alessandro Forlani
- snmp&forlani.it
-42592
- TV 2/Danmark A/S
- Mik Kay
- administrator&tv2.dk
-42593
- Gas Natural Informática, S.A.
- Marc Xicoy Cirici
- mxicoy&gasnatural.com
-42594
- Fox Technologies
- Peter Tornberg
- peter.tornberg&foxt.com
-42595
- Right Systems Inc
- William Gunn
- wg&rightsys.com
-42596
- ATNet Services
- Alexey Asemov
- alex&alex-at.ru
-42597
- Norberto Bensa - ENEABE
- Norberto Bensa
- nbensa&gmail.com
-42598
- Tibero
- Taikyoung Kim
- taikyoung_kim&tibero.com
-42599
- NIPPON TELEGRAPH AND TELEPHONE WEST CORPORATION
- Masaki Minami
- pen-contact&rdc.west.ntt.co.jp
-42600
- Rejlers Oy
- Mikko Sirén
- mikko.siren&rejlers.fi
-42601
- Sycada
- George Tourkas
- tourkas&sycada.com
-42602
- Performr B.V.
- Michel Stol
- support&performr.com
-42603
- Vorston
- Michael Fyles
- registration&vorston.net
-42604
- Springfield Technical Community College
- Gill Lapointe
- helpdesk&stcc.edu
-42605
- PLC International Inc
- Carlos A Huerta
- carlos.huerta2010&gmail.com
-42606
- Urban-Software.de
- Thomas Urban
- ThomasUrban&urban-software.de
-42607
- Brekford International
- Michael Kniffen
- mkniffen&brekford.com
-42608
- Alan Seedhouse
- Alan Seedhouse
- alan.seedhouse&hotmail.co.uk
-42609
- Boundary, Inc.
- Cody Crawford
- cody&boundary.com
-42610
- Superior Power solutions (HK) Co.,Ltd
- salvador trullols rico
- sales&superiorpowersolution.com
-42611
- Valdrea, LLC
- Theodore Reed
- teddy&valdrea.com
-42612
- Koninklijke BAM Groep nv
- Chris van Zwolle
- informationsecurity&bamgroep.nl
-42613
- POLYONE CORPORATION
- Fatou Tounkara
- fatou.tounkara&polyone.com
-42614
- Tribal Chicken Australia
- Thomas White
- thomas&tribalchicken.com.au
-42615
- eTRUST co., ltd.
- Hideyuki Usui
- h-usui&etrust.ne.jp
-42616
- Pannonia Technologies
- Matthias Endler
- support&pantech.at
-42617
- Alphion India Private Limited
- K. Anjaneya Sharma
- asharma&alphion.in
-42618
- Kaaos Unlimited Oy
- Jaakko Vallo
- jaakko.vallo&kaaosunlimited.fi
-42619
- PRYSM SARL
- JEAN-MICHEL BELIN
- support&prysm-software.com
-42620
- Katalix Systems Ltd
- James Chapman
- jchapman&katalix.com
-42621
- Elecdan
- Moctar DIAKHITE
- mdiakhite&elecdan.com
-42622
- Hernic Ferro Chrome Pty Ltd
- Francois Kaljee
- francois.kaljee&hernic.co.za
-42623
- Open Compute Project
- Amber Graner
- amber&opencompute.org
-42624
- Whatever s.a.
- Sylvain Munaut
- netadm&whatever-company.com
-42625
- Technology Toolbox LLC
- Jeremy Jameson
- jjameson&technologytoolbox.com
-42626
- Blue Fire Capital
- Carl Strickler
- systems&bluefirecap.com
-42627
- Vermont Department of Labor
- Aaron Lewis
- Aaron.Lewis&state.vt.us
-42628
- Shenzhen HD Digital Tech Co., Ltd.
- Damon LIU
- rd&digihdtech.com
-42629
- WaveNT Co.,Ltd.
- Sung-Ho Yoon
- yoonsh&wavenettech.com
-42630
- Dona Ana County, New Mexico
- Louis VanLandingham
- louv&donaanacounty.org
-42631
- Xellia Pharmaceuticals ApS
- Niels Sillemann
- Niels.sillemann&Xellia.com
-42632
- Kompanija Dunav Osiguranje a.d.o. Beograd
- Slobodan Babic
- slobodan.babic&dunav.com
-42633
- VOXXL
- Mathieu Malaterre
- mathieu.malaterre&voxxl.com
-42634
- PSW GROUP GmbH & Co. KG
- Christian Heutger
- info&psw.net
-42635
- RudiNet Ltd.
- Rudi Ingebrethsen
- frudi999&hotmail.com
-42636
- SecuriPax
- Nick Higham
- nmh&securipax.dk
-42637
- Cloudhouse Technologies
- Mat Clothier
- mat.clothier&cloudhouse.com
-42638
- ARD-Sternpunkt
- Dominique Mähler
- dominique.maehler&ard-stern.de
-42639
- Cellcrypt Ltd
- Jim Buller
- support&cellcrypt.com
-42640
- Derek Lambert (CrEOF)
- Derek Lambert
- dlambert&dereklambert.com
-42641
- Tri-State Generation and Transmission
- Steve Wesling
- swesling&tristategt.org
-42642
- Stage Entertainment
- Kyung Eigenraam
- ict&stage-entertainment.com
-42643
- NetSavia SA
- Alejandro Ackermann
- alejandro.ackermann&netsavia.com
-42644
- New Leaf Publishing Group, Inc.
- Tim Dudley
- web&newleafpress.net
-42645
- Ros Vicente (ITComp)
- Ros Vicente
- rosvicente&hotmail.com
-42646
- Etherlive Ltd
- John Storey
- john.storey&etherlive.co.uk
-42647
- Alliance Spacesystems, LLC
- Eric Kuecherer
- ekuecherer&alliancespacesystems.com
-42648
- Blue Global Media
- Keith Linneman
- keith&blueglobalmedia.com
-42649
- The LaSalle Technology Group
- Matthew Augustine
- mmaugust&lasalletech.com
-42650
- Parque Tecnológico Itaipu - Paraguay
- Luis Bení­tez
- oidmaster&pti.org.py
-42651
- willisss.com
- Richard Willis
- richard.willis&gmail.com
-42652
- Sichuan Bihong Broadcast&Television New Technologies Co.,Ltd
- Mo Zhenyang
- mzy&scbhcatv.cn
-42653
- Netcloud AG
- Roberto Giana
- no-mail-please-20131021&netcloud.ch
-42654
- RCS & RDS SA
- Iulian Liviu Ionescu
- liviu.ionescu&rcs-rds.ro
-42655
- On the Cusp Ltd.
- Trevor Drawbridge
- trevor&onthecusp.co.uk
-42656
- Clear-Com
- Erik M. Devane
- Erik.Devane&ClearCom.com
-42657
- Mixpo
- Edward Charles
- echarles&mixpo.com
-42658
- Lakra Sintez Ltd.
- Roman Leonovich
- iana&lakra-sintez.ru
-42659
- Robert Maxwell Professional Consulting
- Robert "Bobby" Maxwell
- bobby&rm-pc.com
-42660
- Wildman & Morris
- Robert Miller
- bmiller&wildman-morris.com
-42661
- Asian Pacific Telecommunications
- David Oramas
- david.oramas&aptel.com.au
-42662
- Wuerzburger Versorgungs- und Verkehrs-GmbH
- Andreas Reumann
- andreas.reumann&wvv.de
-42663
- Zhengwei-tech Co.,Ltd.
- Wan Feng
- wanf256&qq.com
-42664
- Iromedica AG
- Ines Salzer
- administrator&iromedica.ch
-42665
- WIRD AG
- Alexandre Molari
- info&wirdgroup.com
-42666
- Affiliated Managers Group, Inc.
- Matt Miarratani
- matt.giarratani&amg.com
-42667
- Northwest Multiple Listing Service
- Michael Kimbley II
- mkimbley&nwmls.com
-42668
- ZIMT University of Siegen
- Matthias Trute
- trute&zimt.uni-siegen.de
-42669
- HangZhou Chenxiao Technologies Co.,ltd
- wangjianping
- wangjianping&chenxiaotech.com
-42670
- SICE Tecnología y Sistemas, S.A. (formerly 'Sociedad Ibérica de Construcciones Eléctricas, S.A.')
- David Marín
- dmarin&sice.com
-42671
- Pinetron Co.,Ltd
- Jeong-Ah Kim
- foxrain&pinetron.co.kr
-42672
- G. X. Clarke & Co.
- Vladimir Yakovlev
- yakovlev&gxclarke.com
-42673
- SAIC, Inc.
- Network Information Center c/o Barbara Shurtleff
- nic&net.saic.com
-42674
- TVH Group NV
- Jan Keirse
- jan.keirse&tvh.com
-42675
- Comité Permanent des Médecins Européens
- Constance Colin
- constance.colin&cpme.eu
-42676
- Servergy, Inc
- Jack Smith
- jack&servergy.com
-42677
- Altertech s.r.o.
- Sergiy Symonenko
- div&altertech.com
-42678
- Lakra Sibir Ltd.
- Sergey Rusak
- iana&lakra-sibir.ru
-42679
- cne.at
- Heinz Berger
- hbb&cne.at
-42680
- Randstad España, S.L.
- Diego Miranda García
- diego.miranda&randstad.es
-42681
- Freeport of Riga Authority
- Daniels Atkacuns
- reg&rop.lv
-42682
- Cyviz AS
- Eirik Simonsen
- simonsen&cyviz.com
-42683
- Trans Data Management (TDM)
- Reto Jaeger
- reto.jaeger&trans-data.ch
-42684
- Bump Networks, Inc.
- Oleksii Kukhar
- alex&bumpnetworks.com
-42685
- Benjamin Huepeden IT
- Benjamin Huepeden
- info&huepeden.net
-42686
- Siempelkamp Maschinen- und Anlagenbau GmbH & Co. KG
- Gerd Sitato
- gerd.sitato&siempelkamp.com
-42687
- Meridian Health System
- Bob Radvanski
- BRadvanski&meridianhealth.com
-42688
- STABILO International GmbH
- Sebastian Meyer
- sebastian.meyer&schwan-stabilo.com
-42689
- Southern Methodist University
- Joe Gargiulo, CIO
- gargiulo&smu.edu
-42690
- nGeniux LLC
- Jason Denning
- iana&ngeniux.com
-42691
- Australia and New Zealand Banking Group Limited
- Clint Cooper
- clint.cooper&anz.com
-42692
- Philotech
- Hartwig Dirscherl
- iana&philotech.net
-42693
- AcroRed Technologies, Inc.
- Raymond Lin
- sales&acrored.com
-42694
- LoopPay, Inc.
- Susan Doeit
- susan.doeit&looppay.com
-42695
- Beijing QTS Networks Technologies Co., Ltd
- TerryChen
- chengang&qtsnetworks.com
-42696
- Indian Hotels Company Limited
- Nivrutti Sutar/Vijay Mishra
- datacentre&tajhotels.com
-42697
- Activsolar
- Vladimir Sadkov
- sadkov&gmail.com
-42698
- Qualitis Kft.
- Nagy Attila
- attila.nagy&qualitis.hu
-42699
- Dorwin Enterprises
- John Dorwin
- jdorwin&gmail.com
-42700
- ESP Credit Management
- Aaron Caine
- aaron&espcreditmanagement.com
-42701
- thepickle.com, Inc.
- Dan Rothstein
- dan&thepickle.com
-42702
- Altairis, s. r. o.
- Michal A. Valasek
- michal.valasek&altairis.cz
-42703
- Locatrix Communications
- Andrew Eross
- eross&locatrix.com
-42704
- Marco Displays
- Cody Null
- itdept&marcocompany.com
-42705
- HVR Software
- Steve Sheil
- steve.sheil&hvr-software.com
-42706
- Ministry of Internal Affairs - Kosova
- Arben Osmani
- arben.f.osmani&rks-gov.net
-42707
- Corvinus University of Budapest
- Csaba Toth
- csaba.toth&uni-corvinus.hu
-42708
- Teachers Assurance
- Shane Lovett
- slovett&teachersassurance.co.uk
-42709
- CarWoo! Inc.
- Tim Chen
- tim&carwoo.com
-42710
- Designs for Health, Inc.
- Jonathan Walker
- jwalker&ashley-martin.com
-42711
- MEIRYO DENSHI CORPORATION
- Kumiko Agata
- Agata.Kumiko&meiryo.co.jp
-42712
- Hanvit SI, Inc.
- Jessie Kim
- jessie&hanvitsi.com
-42713
- HPS ICT&Mobile Solutions
- Jan Baggen
- ict&hps-solutions.nl
-42714
- Beijing Joy and Success Technology Co., Ltd.
- Ma hui
- goldmh&139.com
-42715
- tanum consult GmbH
- Michael Schrader-Bölsche
- noc&tanum-consult.de
-42716
- LzLabs GmbH
- Andrew Galewsky
- andy.galewsky&lzlabs.ch
-42717
- Prefeitura Municipal de Cachoeirinha - RS - Brasil
- Ederson Souza
- edersoncsouza&gmail.com
-42718
- Vema, a.s.
- Martin Ivanis
- itadmins&vema.cz
-42719
- CyberFX, Inc.
- Adam Werner
- adam.werner&cyberfxcorp.com
-42720
- Bilgibim Bilgisayar Teknolojileri
- Ahmet Oztuna
- ahmet.oztuna&bilgibim.com.tr
-42721
- Teck Resources Limited
- Rob Labbe
- rob.labbe&teck.com
-42722
- Miraj Technology and Consulting Corporation
- Shahn Karim
- contactsk&mirajtc.com
-42723
- Shouting Ground Technologies, Inc.
- Bryan Holloway
- admin&shout.net
-42724
- Kernel Electronics Co Ltd
- LI Man Lung
- lml&kernelhk.com
-42725
- Institut Teknologi Sepuluh Nopember
- Kamas Muhammad
- kamas&its.ac.id
-42726
- ArcSoft Hangzhou CO.,LTD.
- Liu Juan
- lj1769&arcsoft.com
-42727
- X-Company Pty Ltd
- Stephen Reay
- stephen&x-team.com
-42728
- Tomaxx GmbH
- Roger Wenham
- roger.wenham&tomaxx.com
-42729
- Private Iron and Steel Joint Stock Company "Donetsksteel"
- Yehorchenkov Nikolay
- postmaster&donetsksteel.com
-42730
- Croda International Plc
- A.W.J. van Strien
- alfred.van.strien&croda.com
-42731
- Statkraft SF
- Harald Haugan
- domains&statkraft.com
-42732
- Southern Power Systems, Inc.
- Matthew S. Fitzgerald
- mfitzgerald&southernpwr.com
-42733
- FSMLabs
- Cort Dougan
- cort&fsmlabs.com
-42734
- Nextmove Technologies
- Daniel Blackmer
- daniel.blackmer&nextmovetech.com
-42735
- dParadig
- Daniel Alejandro Zuleta Zahr
- dzuleta&dparadig.com
-42736
- Haus der Barmherzigkeit
- Thomas Schneider
- thomas.schneider&hausderbarmherzigkeit.at
-42737
- Zends
- Alvaro Jose de Oliveira Junior
- alvaro&zends.com.br
-42738
- Vivint Wireless
- Adam Augustine
- b2b-iana-2013&vivw.net
-42739
- Veolia Water Solutions & Technologies
- Olivier PILLON
- olivier.pillon&veoliawater.com
-42740
- MaerdnGaming GbR
- Dennis Katz
- dennis.katz&maerdngaming.com
-42741
- Nanjing Dong Xun Information Technology Co., Ltd.
- Steven Mao
- maofeng&dongxuntech.com
-42742
- Winix Solutions LLC
- Timothy Poschel
- ianaspam&winix.com
-42743
- Niederösterreichische Gebietskrankenkasse
- Manfred Gram
- Manfred.Gram&noegkk.at
-42744
- Falabella
- Nelson Eduardo Prado Villalobos
- ext_neprado&falabella.cl
-42745
- Jamdeo
- John Tucker
- jt&jamdeo.com
-42746
- InterNetX GmbH
- Carsten Schoene
- carsten.schoene&internetx.com
-42747
- Kik Interactive
- Dan Hendry
- dan.hendry&kik.com
-42748
- MyOrg.at (Johannes Hackl)
- Johannes Hackl
- hannes&hackl-net.at
-42749
- Utilidata, Inc
- Sridhar Ramachandran
- sri&utilidata.com
-42750
- Umbrella ID
- Björn Abt
- bjoern.abt&psi.ch
-42751
- Neowatt Energy Solutions Co. Pvt. Ltd.
- Tausif Kazi
- tausif.kazi&neowatt.co.in
-42752
- AMEDTEC Medizintechnik Aue GmbH
- Steffen Schmidt
- dicom&amedtec.de
-42753
- University of The Philippines Los Baños
- Ludwig B. Tirazona
- ljbtirazona&uplb.edu.ph
-42754
- Enel Energy Electronic
- Mehmet İşlek
- mislek&enel.com.tr
-42755
- ATON GmbH
- Marvin Schultz
- marvin.schultz&atongmbh.de
-42756
- Purdue Research Foundation
- Kenneth L. Williams
- klw&prf.org
-42757
- Encana Corporation
- Chris Wallace
- chris.wallace&encana.com
-42758
- C4B Com For Business AG
- Bernhard Woköck
- admin&c4b.de
-42759
- Practicom B.V.
- Dhr. Martin Spaans
- registratie&practicom.net
-42760
- PHOENIX PHARMA
- Zoran Vojnovic
- webmaster&phoenix.ba
-42761
- Imavis srl
- Aldo Brucale
- aldo.brucale&imavis.com
-42762
- ipex telecom LLC
- Abdul Hakeem
- alhakeem&ipextelecom.net
-42763
- ShangHai Jeelan Information Technology Inc.
- china wu
- chinawu&jeelan.com
-42764
- Smith College
- Karla Borecky
- kborecky&smith.edu
-42765
- Muzeum Historii Zydow Polskich
- Szymon Kowalczyk
- pkit&jewishmuseum.org.pl
-42766
- Typomedia Foundation
- Philipp Speck
- info&typomedia.org
-42767
- Queensland Motorways Limited
- Nathan Frankish
- iana-pen&qldmotorways.com.au
-42768
- Marcelo Leal
- Marcelo Leal
- msl&eall.com.br
-42769
- Supermathie Networks
- Michael Brown
- michael&supermathie.net
-42770
- Totalpost Services PLC
- William Wright
- hostmaster&totalpost.com
-42771
- DGQoS
- Mario Duchi
- m.duchi&antgroup.it
-42772
- Galkam PTY LTD
- Glen L Kleidon
- glenk&galkam.com.au
-42773
- Transport for London
- Gurmeet Sahotay
- gurmeet.sahotay&tfl.gov.uk
-42774
- Semtech Corporation
- Ken Porter
- kporter&semtech.com
-42775
- Linx ICT Solutions
- Muhammad Zeeshan Munir
- zeeshan&linxsol.com
-42776
- one2many BV
- Peter ter Beek
- peter.ter.beek&one2many.eu
-42777
- Gosuncn Technology Group Co., Ltd
- Yong Li
- LiYong&gosuncn.com
-42778
- Michael Offel (mflour.com)
- Michael Offel
- michael.offel&web.de
-42779
- CJSC "NORSI-TRANS"
- Maksim Zrazhevskii
- zma&norsi-trans.ru
-42780
- SEB DEVELOPPEMENT SAS
- Olivier RADIX
- iana&groupeseb.com
-42781
- Bragg Communications Inc.
- Curtis Wambolt
- curtis.wambolt&corp.eastlink.ca
-42782
- Ekrompt, JSC
- Maxim Y. Evdolyuk
- itsupport&ekromt.ru
-42783
- workvslife.com
- Brian Friday
- ianaoid&workvslife.com
-42784
- Pinnacle Foods Group, LLC
- Neil Minichino
- neil.minichino&pinnaclefoods.com
-42785
- Syntaxjockey
- Michael Frank
- iana-pen&syntaxjockey.com
-42786
- CNS Engineering
- Bruno Couillard
- bruno&bc5tech.com
-42787
- Concentric Sky
- Francisco Gray
- it&concentricsky.com
-42788
- artec technologies AG
- Uwe Martens
- uwe.martens&artec.de
-42789
- SynQor, Inc.
- Abram Dancy
- dancy&synqor.com
-42790
- Rebasoft
- Kevin Wilkie
- kevin.wilkie&rebasoft.net
-42791
- Geo-Comm, Inc.
- Neil Erickson
- nerickson&geo-comm.com
-42792
- Near East University
- Senol Korkmaz
- senol.korkmaz&neu.edu.tr
-42793
- IntCache Technology Co.,Ltd
- Jeffrey Hu
- jeffrey.hu&intcache.com
-42794
- LEX Media Concepts SRL
- Daniel Neculai
- daniel.neculai&lexmedia.ro
-42795
- mrByte Tech Solutions
- Lino Prahov
- desarrollo&mrhouston.net
-42796
- IQ Solutions S.A.
- George Varakis
- g.varakis&iqsolutions.gr
-42797
- Freie ArbeiterInnen Union
- Rudolf Rocker
- rudolf.rocker&fau.org
-42798
- HUENGSBERG AG
- Daniel Kopp
- dak&huengsberg.com
-42799
- Alfstore
- Rahmi Turhan
- r.turhan&alfstore.com
-42800
- Co-Nexus Communications Systems, Inc.
- Mark Mullings
- mark.mullings&co-nexus.com
-42801
- Essai Inc
- Richard Rebol
- TechCon&essai.com
-42802
- Rigel Engineering
- Craig DeHaan
- craig&rigel-eng.com
-42803
- Valialsoft LLC
- Svetoslav Petrov
- iana&valialsoft.com
-42804
- New Singularity International Technical Development Co.,Ltd.
- Shiyong Teng
- tengshiyong&ultrapower.com.cn
-42805
- Cloudy IT
- Jonathan Cyr
- jon&cloudyit.com
-42806
- WINFO Corp.
- GuoWei
- guowei&winfo.cc
-42807
- City West Country Ltd
- William Ross
- william.ross&mercedes-benzsouthwest.co.uk
-42808
- Arachnid Labs Ltd
- Nick Johnson
- nick&arachnidlabs.com
-42809
- netbreaker IT-Service
- Rico Koerner
- it-service&netbreaker.de
-42810
- Telesis, S.A. de C.V.
- Roberto Currlin
- ingenieria&telesis.com.sv
-42811
- Enyx
- Laurent de Barry
- laurent.debarry&enyx.fr
-42812
- ISD Dunaferr Co. Ltd.
- Zoltan Gyimesi
- gyimesi.zoltan&isd-dunaferr.hu
-42813
- Polskie Sieci Elektroenergetyczne S.A.
- Sebastian Klimczak
- sebastian.klimczak&pse.pl
-42814
- Inveo
- Slawomir Darmofal
- sdarmofal&inveo.com.pl
-42815
- Tussa IKT AS
- Stein-Are Smoge
- stein-are.smoge&tussa.no
-42816
- HACENTER
- Alexander Demertash
- alexander&hacenter.com.ua
-42817
- IBM Platform Firmware Division
- Rashmi Narasimhan
- rashmin&us.ibm.com
-42818
- Relative Variable Software
- Eugene Bolshakov
- pub&relvarsoft.com
-42819
- Carante Groep
- Sven Brocking
- sbrocking&carantegroep.nl
-42820
- Techsun
- Myron Jiang
- ph.china&hotmail.com
-42821
- ACXIO
- Patrice Collardez
- pcollardez&acxio.fr
-42822
- Tesc
- Anibal Ricardo Salusso
- anibal.salusso&tesc.com.br
-42823
- Spilsby Internet Solutions
- Terry Froy
- tez&spilsby.net
-42824
- Web.Cloud.Apps. GmbH
- Daniel Boldura
- boldura&web-cloud-apps.com
-42825
- vArmour Networks
- Sandro Janita
- sjanita&varmour.com
-42826
- ChengDu Network Security Technology Corporation
- Cole.Chen
- chenjunnian&wangankeji.cn
-42827
- rm-netproject UG (haftungsbeschränkt)
- Reiner Gutowski
- rg&rm-netproject.de
-42828
- US Army Electronic Provings Ground (USAEPG) Instrumentation Management System (IMS)
- James Fisher
- james.martin.fisher&us.army.mil
-42829
- QuartzDesk.com
- Jan Moravec
- admin&quartzdesk.com
-42830
- Landis+Gyr
- Lars E. Haven
- lars.haven&landisgyr.com
-42831
- Kickass Systems
- Ian Weller
- ian&ianweller.org
-42832
- Tata Institute Fundamental Research
- Sagar Mungse
- msagar&tifr.res.in
-42833
- Nimbus Technologieberatung GmbH
- Arno Fiedler
- arno.fiedler&nimbus-berlin.com
-42834
- TechniData IT-Service GmbH
- Ralf Wigand
- ralf.wigand&its-technidata.de
-42835
- ZELITRON SA
- Abatzis Kostas
- abatzis&zelitron.com
-42836
- eXtreme IT Development
- Mohamed Ayyad
- m.ayyad&xitd.net
-42837
- Westpac New Zealand Ltd
- David Biggs
- David_Biggs&westpac.co.nz
-42838
- FAST DISTRIBUTED CLOUD COMPUTING INC.,
- Hierro Park
- acumen&wisetodd.com
-42839
- Tactical Communications Corporation
- Doug Fuller
- dfuller&tacticalcommunications.com
-42840
- Reporo
- Reporo Tech
- tech&reporo.com
-42841
- Kraftanlagen Muenchen GmbH
- Kai Hoeltgen
- hoeltgenk&ka-muenchen.de
-42842
- iQSpot
- Damien Martin-Guillerez
- damien.martin-guillerez&iqspot.fr
-42843
- TWIN Engineering S.r.l.
- Michele Fazzalari (CEO)
- info&twinengineering.com
-42844
- SPI GmbH
- Eckhard Schilling
- iana&spi.de
-42845
- TOKYO SYSTEM HOUSE Co., Ltd.
- Kazuya SAKAMOTO
- k-sakamoto&tsh-world.co.jp
-42846
- Corhoma SRL
- Jorge Blasi
- corhoma&gmail.com
-42847
- 2H Offshore Engineering Ltd
- Robert Brock
- robert.brock&2hoffshore.com
-42848
- NETIXIA
- Laurent FRANCOISE
- iana&netixia.fr
-42849
- Fabrecode
- Robert Banfill
- robert&fabrecode.com
-42850
- LocalTV LLC of Alabama
- David McFerrin
- david.mcferrin&whnt.com
-42851
- Fidelity Voice Services
- Rob McKrill
- robm&fidelityvoice.com
-42852
- Bank Gospodarstwa Krajowego
- Dorota Remiszewska-Gajek
- pwasa&BGK.com.pl
-42853
- DunnCox
- Ryan Dunbar
- ryan.dunbar&dunncox.com
-42854
- EMPRESA DE TECNOLOGIA DA INFORMAÇÃO E COMUNICAÇÃO DO MUNICÍPIO DE SÃO PAULO
- Wagner Kanagusuko
- wagnerk&prodam.sp.gov.br
-42855
- techsoup.net
- Don Betts
- don&techsoup.net
-42856
- Kreis Warendorf
- Olaf Doering
- olaf.doering&kreis-warendorf.de
-42857
- Family Madera of Switzerland
- Jan Madera
- jan&madera.ch
-42858
- Linux Szerver Kft.
- Ferenc Koczka
- info&linux-szerver.hu
-42859
- Shanghai SHR Automation Co.,Ltd
- HU Daoxu
- hdx.3047&shrcn.com
-42860
- Asul IT Consulting LLP
- Alexandr Khrabrov
- info&asul.kz
-42861
- Ophylink Communication Technology Co., Ltd.
- Linlin Qiu
- linlin.qiu&ophylink.com
-42862
- AITA-Soft
- Oleg Ostroverkh
- oleg.o&aitasoft.ru
-42863
- IOS Health Systems
- Dario Va
- dva&ioshs.com
-42864
- Mobius Embedded Systems Ltd
- Andrew Chilcott
- iana&mobius-embedded-systems.co.uk
-42865
- Hoza Logistic Solutions
- John Melet
- jmelet&hoza.nl
-42866
- Frontend.biz GmbH
- Antonio Pedrazzini
- info&frontend.biz
-42867
- BestSolution.at
- Udo Rader
- udo.rader&bestsolution.at
-42868
- Association of American Railroads
- Mr. Robert A. Kollmar
- rkollmar&aar.org
-42869
- UNE EPM Telecomunicaciones S.A.
- Hector Fernando Vargas Montoya
- hector.vargas&une.com.co
-42870
- Unither Manufacturing LLC
- Melissa Mehlenbacher
- melissa.mehlenbacher&unither-pharma.com
-42871
- IMRIS
- Chris Mussack
- cmussack&imris.com
-42872
- Unomaly AB
- Goran Sandahl
- goran&unomaly.com
-42873
- Comune di Ascoli Piceno
- Mauro Angiolillo
- admin&comuneap.gov.it
-42874
- Hospedia Ltd
- Keith Jacobs
- keith&keithjacobs.net
-42875
- ACISA
- Silvio Fernández
- silvio.fernandez&acisa.es
-42876
- SGSITES Technologies
- Stefan Genchev
- stefan.genchev&sgsites.net
-42877
- Sundvor
- Aage Johan Strøm Sundvor
- aage&sundvor.com
-42878
- Credit-Moscow Bank
- Nikolay Belyakov
- cso&cmbank.ru
-42879
- Sielaff GmbH & Co. KG
- Oliver Muck
- oliver.muck&isa.de.com
-42880
- Uwe Disch
- Uwe Disch
- mail&uwe-disch.de
-42881
- No Limit Network
- Nicolas Belan
- contact&no-limit-network.com
-42882
- Jiangsu Fablesoft Co.,Ltd
- Xiaoqiang Ye
- yexq&fablesoft.cn
-42883
- CARC (C-DOT Alcatel-Lucent Research Centre Pvt Ltd)
- Ramkumar Jayachandran
- ramkumar.jayachandran&carc.co.in
-42884
- Anderson Morgan Kelowna Inc.
- Fred Brown
- fredb&andersonmorgan.ca
-42885
- S P I R I T - informačné systémy, a.s.
- Lubomir Bak
- bak&spirit.sk
-42886
- InMotion Hosting
- Vanessa Vasile
- steam&imhadmin.net
-42887
- One Call Now
- Edward Curren
- ed.curren&onecallnow.com
-42888
- Canadian Museum for Human Rights
- Christopher Rivers
- christopher.rivers&museumforhumanrights.ca
-42889
- IO Data Centers, LLC
- Kjell Holmgren
- koh&io.com
-42890
- Renkus Heinz Incorporated
- Tim Shuttleworth
- tim&renkus-heinz.com
-42891
- Santechkomplekt Ltd.
- Babin Vladimir
- postmaster&santech.ru
-42892
- TOYGA
- Gil Shinar
- gils&hexagontech.co.il
-42893
- Funkfeuer Wien - Verein zur Förderung freier Netze
- Matthias Šubik
- admin&funkfeuer.at
-42894
- CAROL JEANNE MACK CORPORATION
- Carol Jeanne Mack
- mac.carol5&gmail.com
-42895
- Securiton GmbH
- Peter Treutler
- peter.treutler&securiton.de
-42896
- The O'Gara Group
- Mike Estridge
- postmaster&ogaragroup.com
-42897
- Evan Edstrom
- Evan Edstrom
- contact&evanedstrom.com
-42898
- IM Service Lab Srl
- Claudio Spallaccini
- info&imservicelab.com
-42899
- kiloWattsol
- Sebastien Collin
- scollin&kilowattsol.com
-42900
- Elcom Innovations Private Limited
- Rajeev Vats
- rvats&elcominnovations.com
-42901
- Chaos Computer Club Cologne
- Tobias Wolter
- towo&koeln.ccc.de
-42902
- J.R. Torralba
- Jesus R. Torralba
- jhunetorralba&hotmail.com
-42903
- IT Innovations Ukraine LLC
- Vyacheslav Labzin
- vyacheslav.labzin&ua.ibm.com
-42904
- Nemik Consulting Inc
- Nemanja Stefanovic
- snmp&nemik.net
-42905
- Trihedral Engineering Ltd.
- John Cole
- john.cole&trihedral.com
-42906
- Shift Workforce Management
- Diego Jorquera Tapia
- djorquera&shiftlabor.com
-42907
- PLUTEX GmbH
- Fabian Müller
- fmu&plutex.de
-42908
- Megadevices
- Oleksandr Kovalenko
- kovalenko.md&gmail.com
-42909
- Tver State University
- Andrew Zhukov
- zhukov&tversu.ru
-42910
- latticeware.com
- stanton fisque
- sfisque&latticeware.com
-42911
- Metiri Systems, LLC
- Steven C. Ollmann
- s.ollmann&metirisystems.com
-42912
- locate solution GmbH
- Daniel Petat
- daniel.petat&locatesolution.de
-42913
- Exatech bv
- Henk Pragt
- hpragt&exatech.nl
-42914
- Wimsey
- Stuart Lynne
- stuart.lynne&gmail.com
-42915
- MCATSYSTEMS LLC
- Hendry Kunthara
- info&mcatsystems.com
-42916
- Arcerm
- Alexey Grenev
- graa&arcerm.spb.ru
-42917
- Adcubum AG
- Christian Pfister
- intit&adcubum.com
-42918
- Trafigura
- Mark Parris
- mark.parris&trafigura.com
-42919
- Max-Planck-Institut fuer Astrophysik
- Heinz-Ado Arnolds
- arnolds&mpa-garching.mpg.de
-42920
- Slaughter and May
- John Lynch
- John.Lynch&slaughterandmay.com
-42921
- Dropbox, Inc.
- Gary M. Josack
- pen-contact&dropbox.com
-42922
- Ministarstvo odbrane Republike Srbije
- Milos Pejanovic
- milos.pejanovic&vs.rs
-42923
- Stefan Ebert
- Stefan Ebert
- stefan&huhn.li
-42924
- The Molecule
- alex maceda
- alex&themolecule.com
-42925
- SYLEB SARL
- KLA KOUE SYLVANUS
- sylvanuskla&syleb.com
-42926
- NSC Communications Siberia Ltd
- Alexei Tsigulin
- alex&nsc-com.com
-42927
- Fidelio Cruise Software
- Gregor Stute
- gstute&fcruise.com
-42928
- Galleon Systems Ltd
- Craig Richards
- support&galleonmail.com
-42929
- securedeviceaccess.com
- Lars Reemts
- postmaster&securedeviceaccess.com
-42930
- GEKO.NET di Mena Giuseppe
- Giuseppe Mena
- info&gekoinformatica.net
-42931
- Vladimir Mihajlović pr, računarsko programiranje, METACODE, Beograd
- Vladimir Mihajlovic
- vlada79&gmail.com
-42932
- Infolink Global
- Alec Hans
- alec&infolinkglobal.net
-42933
- iArtemis
- Jie Xia
- admin&iartemis.ca
-42934
- APRS World, LLC
- James J Jarvis
- jj&aprsworld.com
-42935
- Axcelera
- Diogo Sato
- diogo&axcelera.com.br
-42936
- Anhui Telehome Digital Technology Co. Ltd
- Simon Wu
- simon100.wu&gmail.com
-42937
- VP (Video Privacy) Forum
- JinKyo Shin
- jkshin&4dream.co.kr
-42938
- Moviri S.p.a.
- Davide Malagoli
- davide.malagoli&moviri.com
-42939
- Applied Informatics for Health Society
- Doug Gorley
- dgorley&aihs.ca
-42940
- City of Smyrna
- Chris Addicks
- is&smyrnaga.gov
-42941
- 2XWIRELESS, INC
- Brock Eastman
- brock&2xwireless.com
-42942
- kayzan
- Kay Zander
- kayzan&kayzan.de
-42943
- CopperPoint Mutual Insurance Company
- Evan F. Erickson
- eerickson&copperpoint.com
-42944
- Seenov Inc.
- Claude Arpin
- claude.arpin&me.com
-42945
- Seeser Datentechnik
- Peter Seeser
- guardian&seeser.net
-42946
- Utel Systems
- Frode Gorseth
- frode.gorseth&utelsystems.com
-42947
- Network Technologies International, Inc.
- Daniel F. Domnick
- registrar&nticloud.net
-42948
- Methodist Home for Children
- Daniel F. Domnick
- registrar&nticloud.net
-42949
- Bol.com b.v.
- Mark Frasa
- tim&bol.com
-42950
- Hangzhou Joson Technology Co.,Ltd
- songjing
- songjing&hzjoson.com
-42951
- Highlands Technologies Solutions
- Patrick Zucchetta
- it&h-t-solutions.com
-42952
- SOREDI touch systems GmbH
- Gertrud Brandl
- brandl&soredi-touch-systems.com
-42953
- "Runet Business Systems"
- Sergey Levin
- levin&paymentgate.ru
-42954
- Bizerba GmbH & Co. KG
- Michael Briegel
- Michael.Briegel&bizerba.com
-42955
- Louisville-Jefferson County Metro Government
- Brian Clenney
- Brian.Clenney&Louisvilleky.gov
-42956
- HumanIT Inc.
- Manuel Deschambault
- mdeschambault&humanit.ca
-42957
- Wave Advanced Technology Applications s.r.l.
- Sergio Arena
- info&wave-srl.com
-42958
- Central Office for Administrative and Electronic Public Services
- Krisztian Horvath
- Krisztian.Horvath&kekkh.gov.hu
-42959
- Snap Limited
- James Burnett
- noc&snap.net.nz
-42960
- Garn Contracting & Consulting Pty Ltd
- Jeremy Ford
- jez&garn.cc
-42961
- EH-electronics GmbH
- Guenther Heumann
- info&eh-electronics.com
-42962
- Blitznote e.K.
- Mark Kubacki
- kubacki&blitznote.com
-42963
- UltraMED Systems, Inc.
- Robert Gill
- support&ultramedonline.com
-42964
- Abelsoft Inc
- Kazutoshi Osakabe
- k-osakabe&abelsoft.co.jp
-42965
- ec3 Networks GmbH
- Manfred Hackl
- manfred.hackl&ec3networks.at
-42966
- ECHO LLC
- Sergey Shakirov
- registry&lwd.ru
-42967
- liedloff.org
- David Liedloff
- david&liedloff.org
-42968
- Wertschütz GmbH i.Gr. (formerly 'ME Engineering M2M GmbH')
- Matthias Wimmer
- mw&wertschuetz.de
-42969
- Iorga Group
- Frédéric PREVOST
- fprevost&iorga.com
-42970
- RP SIA "Rigas satiksme"
- Nils Kolecis
- nils.kolecis&rigassatiksme.lv
-42971
- ONELAN LIMITED
- Amit Kachroo
- amit.kachroo&onelan.com
-42972
- IT Business Solutions and Services (ITBSS)
- Juergen Graf
- juergen.graf&itbss.de
-42973
- COMDOK GmbH
- Sven Ehret
- support&comdok.de
-42974
- Willis-Knighton Health System
- Theresa Cochran
- tcochran&wkhs.com
-42975
- Iridium Thought
- Peter Wood
- development&iridiumthought.com
-42976
- Key Source International
- Paul Schwartz
- paul&ksikeyboards.com
-42977
- Matta Consulting Limited
- Florent Daigniere
- florent.daigniere-pen&trustmatta.com
-42978
- CSN Groep BV
- F.A.N. van den Berg
- f.berg&csngroep.nl
-42979
- Wellington Security Systems
- Seth Stiebinger
- admin&wellingtonsecurity.com
-42980
- EZ e-TRAK
- Christos Chochlidakis
- christos&eze-trak.com.au
-42981
- Heuristic Systems Pty Ltd
- Dewayne Geraghty
- admin.operations&heuristicsystems.com.au
-42982
- Leafsprout
- Cezary Klimczak
- cezary.klimczak&leafsprout.com
-42983
- SAS Nexylan
- Gaetan Allart
- gaetan&nexylan.com
-42984
- Toyohashi University of Technology
- TSUCHIYA Masatoshi
- oid-liaison-officer&imc.tut.ac.jp
-42985
- Cnofe
- Ding Fei
- paul712&163.com
-42986
- Beijing MicroColor Corp., LTD.
- WANG LONG
- wanglong&microcolor.net
-42987
- Gida Technology Services
- Pravin Carvalho
- pravincar&gmail.com
-42988
- Nanjing Huamai Technology Co., Ltd
- Xia Haibin
- davidxia136&139.com
-42989
- Telegärtner Karl Gärtner GmbH
- Felix Klein
- felix.klein&telegaertner.com
-42990
- VTSL Ltd
- Daniel Wilson
- dwilson&vtsl.net
-42991
- Marylhurst University
- Keelan Cleary
- ies-admins&marylhurst.edu
-42992
- Vektron Energy (Pty) Ltd
- Glen Medlin
- glen&vektron.co.za
-42993
- Cornerstone Health Care, P.A.
- Ian Atchison
- infosec&cornerstonehealthcare.com
-42994
- Institut de Physique de Rennes
- Jérémy Gardais
- jeremy.gardais&univ-rennes1.fr
-42995
- AvertIT
- Alan Stewart
- Alan.Stewart&AvertIT.com
-42996
- NOMASYSTEMS, S.L.
- Enrique Marcote Peña
- admin&nomasystems.com
-42997
- Red Giant Inc
- Adam Murphy
- adam.murphy&redgiantmobile.com
-42998
- Progdence Co.,Ltd.
- Yusuke Fujimura
- fujimura&progdence.co.jp
-42999
- Parse Software Development B.V.
- Sjon Hortensius
- sjon&parse.nl
-43000
- Service Ontario
- Mike Lefever
- mike.lefever&ontario.ca
-43001
- Nextbeacon
- Steve Waldbusser
- snmp&nextbeacon.com
-43002
- RootService (Markus Kohlmeyer)
- Markus Kohlmeyer
- admin&rootservice.org
-43003
- TribalGroup
- Martyn Smith
- martyn.smith&tribalgroup.com
-43004
- Xinguard, Inc.
- Kae Hsu
- MIBs&xinguard.com
-43005
- University of Technology and Life Sciences in Bydgoszcz
- Łukasz Dobosiewicz
- lukasz.dobosiewicz&utp.edu.pl
-43006
- root-a.net
- Kukharev Vitaly
- postmaster&root-a.net
-43007
- Gipen Systems
- Gyula Nemetz
- info&gipen.hu
-43008
- FRTek
- Doyeon Kim
- dykim&frtek.co.kr
-43009
- Vilnius Gallery
- Constantin Piskounov
- kpiskounov&outlook.com
-43010
- Two Sigma Investments, LLC
- Viktor Dukhovni
- iana-master&twosigma.com
-43011
- Sängerschaft Erato
- Julian Metza
- senior&erato.de
-43012
- Aldo Group Inc.
- Eric Beaumier
- ebeaumier&aldogroup.com
-43013
- ISC8, Inc.
- Scott Millis
- smillis&isc8.com
-43014
- En Garde Systems, Inc.
- Mike Neuman
- mcn&EnGarde.com
-43015
- Quinyx AB
- Mikael Knutsson
- mikael.knutsson&quinyx.com
-43016
- Réseau en scène Languedoc-Roussillon
- Yvan GODARD
- y.godard&reseauenscene.fr
-43017
- Albaad
- Vladimir Kopolovich
- admin&albaad.com
-43018
- Pädagogisches Landesinstitut
- Sandro Isoletta
- it-support&pl.rlp.de
-43019
- Digital Human Identity S.L
- Ramón Martínez
- rampa&encomix.org
-43020
- Angel Lane
- Paul Bennett
- registry&angellane.com
-43021
- i-storm
- SeongJin Park
- sjpark&i-storms.com
-43022
- OneSearch Direct Ltd.
- Jamie Craig
- ithelpdesk&onesearchdirect.co.uk
-43023
- Tuxpower.dk
- Mikael Bertelsen
- mickey&tuxpower.dk
-43024
- InfoGoose.Inc
- Seeyun Kim
- seeyunk&infogoose.com
-43025
- Nomadconnection, Inc.
- Kyoungjune Lee
- ym1020&nomadconnection.com
-43026
- Mostlucky Ltd.
- David Fan
- david&mostlucky.com.tw
-43027
- Fujian Great Power PLC Equipment Co.,Ltd
- Wu Xueya
- wuxueya&md-front.com.cn
-43028
- Office of Immigration and Nationality
- Ede SOÓS
- iana-pen&bah.b-m.hu
-43029
- Netco Ltda. Network Solutions Co.
- Alejandro Naranjo
- anaranjo&netco.la
-43030
- ROCK YOUR LIFE! gGmbH
- Daniel Menzel
- daniel.menzel&rockyourlife.de
-43031
- RaumZeitLabor e.V.
- Simon Elsbrock
- info&raumzeitlabor.de
-43032
- Live It - Nerd
- Peter Young
- peter&liveitnerd.com
-43033
- TVV lippu- ja maksujärjestelmä Oy
- Ilkka Kankkunen
- ilkka.kankkunen&lmj.fi
-43034
- K and P Business Solutions
- Mulenga Katebe
- katebe&kpbs.co.zm
-43035
- Feinschliff
- Christian Schweizer
- administrator&feinschliff.ch
-43036
- Bay Of Plenty District Health Board
- Alexey Lobanov
- alexey.lobanov&bopdhb.govt.nz
-43037
- Newcastle-under-Lyme College
- Mr Chris Stevenson
- administrator&nulc.ac.uk
-43038
- Creative Electronic Systems SA
- Cédric Gaudin
- cedric.gaudin&ces.ch
-43039
- OASYS Healthcare Corporation
- Martin vanPutten
- mvanputten&oasyshealthcare.com
-43040
- Davra Networks
- Colin Ryan
- colin.ryan&davranetworks.com
-43041
- ATREM S.A.
- Michal Kowalski
- kontaktit&atrem.pl
-43042
- Definition Networks Inc.
- Manojkumar Nair
- mnair&definitionnetworks.com
-43043
- Information System Assiociaties
- Mario Remy Almeida
- malmeida&isa.ae
-43044
- Gran Investimentos
- Thiago Mello
- ti&granbio.com.br
-43045
- Banco Exterior C.A. Banco Universal
- Gabriel Salcedo
- arquitecturay.soporte&bancoexterior.com
-43046
- Andrey Fedorov
- Andrey Fedorov
- andrey.fedorov&gmail.com
-43047
- H&W Computer Systems
- Nick Yates
- nyates&hwcs.com
-43048
- CB7 Systems LLC
- Lance Palatini
- admin&cb7systems.com
-43049
- Stewart Bryant
- Stewart Bryant
- stewart.bryant&gmail.com
-43050
- Vobile Co., Ltd.
- Honghui Ding
- ding_honghui&vobile.cn
-43051
- SHENZHEN SENSEGRID CO.,LTD.
- liu.minpeng
- liu.minpeng&sensegrid.cn
-43052
- Shenzhen Tendzone Intelligent Technology Co; Ltd
- Buck Yu
- yuyupeng&tendzone.com
-43053
- I.T. SYNERGY LIMITED
- Tony Smith
- oid&itsynergy.co.uk
-43054
- Crown Prince Court
- Meera Al Mansoori
- meera.almansoori&cpc.gov.ae
-43055
- American Kybernetik (Juan Daugherty)
- Juan Daugherty
- juan&acm.org
-43056
- ENVISTACOM
- Mark Hammel
- mhammel&envistacom.com
-43057
- PrAT CENTRAVIS PRODUCTION UKRAINE
- Vladyslav Mochalov
- administrator&centravis.com
-43058
- Synergy Sky AS
- Egil Hasting
- eh&synergysky.com
-43059
- iteracon GmbH
- Michael van Laak
- michael.vanlaak&iteracon.de
-43060
- Leepfrog Technologies, Inc.
- Wes Bachman
- certmaster&leepfrog.com
-43061
- Global System & Network Services BVBA
- Mr. Ferrara Cataldo
- tech&gsns.be
-43062
- Ingenieure ohne Grenzen e.V.
- Tom Dinkelaker
- tom.dinkelaker&gmail.com
-43063
- Digital Multimedia Technology Co.,Ltd.
- Jae Kyun, Lee
- jklee&dmt.kr
-43064
- Embedded Wireless Labs
- Phang Wee Meng
- wmphang&embeddedwireless.com
-43065
- Shanghai Onezero Electronic Commerce Co., Ltd.
- yibing wang
- appdev&mc2.cn
-43066
- Stiebel Eltron GmbH & Co. KG
- Oliver Bast
- oliver.bast&stiebel-eltron.de
-43067
- VFI SYSTEM
- Fabrice VOMSCHEID
- fabrice.vomscheid&vfi-system.com
-43068
- AVG Technologies
- Pavel Odehnal
- pavel.odehnal&avg.com
-43069
- Markus Ruecker (mr-consult.net)
- Markus Ruecker
- markus.ruecker&mr-consult.net
-43070
- Hrvatska narodna banka
- Ana Puntarić
- ana.puntaric&hnb.hr
-43071
- NABB Gaming Community
- Mathieu Dugas
- mathieu.dugas&gmail.com
-43072
- Privlo, Inc.
- Aaron Picht
- IT-IANA&privlo.com
-43073
- roskakori.fi
- Jarmo Jaakkola
- operator&roskakori.fi
-43074
- WRH Inc
- Jack Cheney
- jack.cheney&wrhinc.net
-43075
- SKY Interactive
- James Yong
- james.yong&skyinteractive.com.au
-43076
- Greiner Holding AG
- Servicedesk
- servicedesk&greiner.at
-43077
- TUI Marine
- Shawn LoPresto
- shawn.lopresto&tuimarine.com
-43078
- Lindvik
- Kristian Lindvik
- kristian&lindvik.com
-43079
- Zimmer GmbH
- Matt Addy
- matt.addy&zimmer.com
-43080
- Atlantic Corporation of Wilmington, Inc.
- Robbie Walker
- robbiew&atlanticpkg.com
-43081
- intellec
- Christian Jucker
- christian.jucker&intellec.ch
-43082
- Informatik Service Gesellschaft mbH
- EL Ghouat Nor-eddine
- ne.elghouat&isg-cgn.de
-43083
- IMEN RAYANE SHRGH Co.
- Hassan Hamzeloue monfared
- info&imenrayaneh.com
-43084
- Webtown Informatika Kft.
- Peter Felber
- wtsysop&webtown.hu
-43085
- Detroit R & D, Inc.
- David Putt
- info&detroitrandd.com
-43086
- NHS Sistemas Eletronicos
- Thiago Wiezbicki
- thiago.wiezbicki&nhs.com.br
-43087
- xCelor LLC
- Vahan Sardaryan
- vahan&x-celor.com
-43088
- Measurlogic Inc.
- John Stratford
- john&measurlogic.com
-43089
- Dualog AS
- Vidar Berg
- vidar&dualog.com
-43090
- KVADOS, a.s.
- Milan Dadok
- dadok&kvados.cz
-43091
- SAP integrator Ltd.
- Anthony Pankov
- info&sapintegrator.com
-43092
- Habermehl
- Martin Habermehl
- Martin&Habermehls.de
-43093
- Xiamen Faratronic Co., Ltd.
- Xiang Bai
- bx&faratronic.com.cn
-43094
- HyperWallet Systems Inc
- Mark E.S. Bernard
- mbernard&hyperwallet.com
-43095
- Service2Media B.V.
- Robert Hassing
- robert&service2media.com
-43096
- James Guse (JAG Enterprises)
- James Guse
- guse3&beryk.com
-43097
- ROTH + WEBER GmbH
- Stephan Frisch
- software-entwicklung&rowe.de
-43098
- Martem AS
- Roland Uuesoo
- roland&martem.ee
-43099
- Embrionix Design inc.
- Sithideth Viengkhou
- sviengkhou&embrionix.com
-43100
- Strata Decision Technology, L.L.C.
- Joshua Bautista
- it&stratadecision.com
-43101
- Alphavida
- Stuart Cianos
- scianos&alphavida.com
-43102
- Regional Municipality of Peel
- Arthur Michalec
- arthur.michalec&peelregion.ca
-43103
- Caradigm
- Sampath Damodarasamy
- Sampath.Damodarasamy&Caradigm.com
-43104
- CyberSecure IPS
- Steve Sohn
- steve.sohn&cybersecureips.com
-43105
- CyberFlow Analytics, Inc.
- Steve Hinkle
- stevehinkle&cyberflowanalytics.com
-43106
- PERK Innovation GmbH
- Michael Pauen
- michael.pauen&perk-innovation.com
-43107
- Waclaw Schiller (Torinthiel)
- Waclaw Schiller
- iana-pen&torinthiel.pl
-43108
- Attend Systems, LLC
- Noah Groth
- ngroth&attendsystems.com
-43109
- dataFASCIA Corporation
- Bill Lattin
- blattin&datafascia.com
-43110
- LTD «Bradbury Lab»
- Evgeny Novikov
- evn&bradburylab.com
-43111
- VNT Software
- Mirit Manor
- mirit&vnt-software.com
-43112
- Picsearch AB (publ)
- Navid Abdi
- sysadmin&picsearch.com
-43113
- Screen9 AB
- Navid Abdi
- sysadmin&screen9.com
-43114
- Kantonsapotheke Zuerich
- Clau Deplazes
- clau.deplazes&kaz.zh.ch
-43115
- Forêts & Bois de l'Est
- Alain JACQUET
- contact&foretsetboisdelest.com
-43116
- Berghof Automation GmbH
- Dr. Arno Rabold
- Arno.Rabold&berghof.com
-43117
- National Stock Exchange Of India Limited
- Prasad Addagatla
- prasada&nse.co.in
-43118
- NORDSYS GmbH
- Stefan Sander
- penadmin&nordsys.de
-43119
- Altibox AS
- Jan-Frode Myklebust
- jf&altibox.no
-43120
- Peshawar Business School
- Muhammad Amjad
- amjid49&yahoo.com
-43121
- Ypsomed AG
- Patrick Hostettler
- dnsadmin&itsroot.net
-43122
- Summit Networks
- Daniel Korndorfer
- daniel.korndorfer&summitnetworks.com.br
-43123
- Instituto Nacional para la Evaluación de la Educación
- Saul Castro Olvera
- scastro&inee.edu.mx
-43124
- PasswordBox Inc.
- Francois Proulx
- francois&passwordbox.com
-43125
- System Studies Incorporated
- Eric Malmberg
- eric&airtalk.com
-43126
- US Fire Insurance Company
- Amos Desrosiers
- amos.desrosiers&cfins.com
-43127
- Oliver Manz (ips manz consulting)
- Oliver Manz
- ips&omanz.de
-43128
- TangentOrg
- Brian Aker
- brian&tangent.org
-43129
- Meijo University
- Toshihiko KATO
- ccoffice&meijo-u.ac.jp
-43130
- Amplesky Communication Technologies Ltd.
- Huang SongTao
- snmpoid&amplesky.com
-43131
- Ternopil State Medical University
- Kovalok Volodymyr
- admin&tdmu.edu.ua
-43132
- CJSC Svyaz engineering
- Evgeniy Chudaykin
- e.chudaykin&sipower.ru
-43133
- mailgarant (Meint Post)
- Meint Post
- meint&meint.net
-43134
- Advanced Fiber Products LLC
- Wojciech Przeczkowski
- wprzeczkowski&afpgco.com
-43135
- adis.ca
- Adi Linden
- adi&adis.ca
-43136
- Digital Footprints International, LLC; DBA Internet Identity
- Rod Rasmussen
- iana-pen&internetidentity.com
-43137
- Raven Rocks Computer Services Group, Inc.
- Charles Hopkins
- charlesghopkins&gmail.com
-43138
- Multapplied Networks, Inc.
- Matthew Fox
- support&multapplied.net
-43139
- Glutonus SRL
- Vladimir Tanase
- vtanase&glutonus.md
-43140
- Xora, Inc.
- James Graham
- jgraham&xora.com
-43141
- RVTN.org
- Vladimir Voskoboynikov
- vladv&rvtn.org
-43142
- St. Mary's International School
- DJ Feldmeyer
- administrator&smis.ac.jp
-43143
- Nanjing Sinovatio Technology Co. ltd
- Ning Zhang
- zhang.ning&sinovatio.com
-43144
- HMS Industrial Networks
- Magnus Hansson
- Ianacontact&hms.se
-43145
- Vasily Nushtakin (Home Router)
- Vasily Nushtakin
- nushtakin.vasily&gmail.com
-43146
- VanWesten.net
- Erik Jan van Westen
- erik&vanwesten.net
-43147
- Best Theratronics Ltd.
- Lloyd Smith
- lloyd.smith&theratronics.ca
-43148
- Det Norske Oljeselskap
- Hans Arvid Olsen
- hans.arvid.olsen&detnor.no
-43149
- RUBYCAT-Labs
- Anthony DAVID
- iana&rubycat-labs.com
-43150
- Stenbock Systems Inc.
- Tore Stenbock
- tore.stenbock&gmail.com
-43151
- AltaSteel Ltd
- Neil Tomlinson
- ntomlinson&altasteel.com
-43152
- Kristoffer Berdal (cognitive.io)
- Kristoffer Berdal
- iana&flexd.net
-43153
- Gerriko S-E-T Technology Solutions Ltd.
- Colin Gerrish
- info&gerriko.ie
-43154
- NexLabs Pte Ltd
- Foo Ji-Haw
- jhfoo&nexlabs.com
-43155
- ION Trading Srl
- Marco Bizzarri
- m.bizzarri&iontrading.com
-43156
- WEY Elektronik AG
- Thomas Rast
- thomas.rast&weytec.com
-43157
- Tatung Technology Inc.
- Ming-Yih Tom Lu
- tomlu&tti.tv
-43158
- Skytech.lt
- Viktoras Dobrovolskis
- viktoras.d&skytech.lt
-43159
- Hartley Consultants Limited
- Alan Chandler
- alan.chandler&hartley-consultants.com
-43160
- EnStream LP
- Yiping Ye
- yiping.ye&enstream.com
-43161
- Riverside County Regional Medical Center
- Elsa Wu
- elwu&co.riverside.ca.us
-43162
- Flash Services
- F.Ruitenburg
- frank.ruitenburg&flash-services.com
-43163
- Cloud Technologies Inc.
- Isao Tanimoto
- support_sapphire&cloud-tech.co.jp
-43164
- Eruditor Group Ltd.
- Alexander Tyumentsev
- it-admin&eruditor-group.com
-43165
- Strike Technologies, LLC
- Ben Yu
- byu-operations&strikens.com
-43166
- Thai Citrus, Inc.
- Krissada Jindanupajit
- info&thaicitrus.com
-43167
- NaSys Inc.
- Youngjae,Ahn
- youngjaeahn&nasys.kr
-43168
- ALFRED E. TIEFENBACHER (Gmbh & Co. KG)
- Marek Falten
- m.falten&aet.eu
-43169
- Tiroler Versicherung
- Ernst Schweighofer
- it.admin&tiroler.at
-43170
- Banco Bilbao Vizcaya Argentaria S.A
- MERCEDES GARCIA FLORES
- mercedes.garciaf&bbva.com
-43171
- Datwyler Holding AG
- Martin Sager
- global.ict&datwyler.com
-43172
- Atrium - Region PACA
- Frederic Lorrain
- frederic.lorrain&atos.net
-43173
- Elesta Ltd.
- Bykov Dmitry
- elesta&elesta.ru
-43174
- Ubiquity Srl
- Giacomo Olgeni
- giacomo.olgeni&ubiquity.it
-43175
- Dorsey Racing
- Walt Dorsey
- admin&dorseyracing.com
-43176
- Swiss Mobility Solutions
- Miguel A. Roman
- sysadmin&swissms.ch
-43177
- Positron srl
- Pier Bruni Venturoli
- info&positronaudio.com
-43178
- Main Line HealthCare
- Kim Martino
- martinok&mlhs.org
-43179
- Lendy LLC
- Brian Brophy
- brianmbrophy&gmail.com
-43180
- Ole Virginia Hams Amateur Radio Club
- Derek LaHousse
- dlahouss&mtu.edu
-43181
- VFA INC
- Antoine Jackson
- itgroup&vfa.com
-43182
- Minor Inf.Tech.
- Ahmet Bahar
- ahmetb&minor.com.tr
-43183
- Renfe Viajeros, S.A.
- Salvador Pozo Ortega
- sportega&renfe.es
-43184
- The Floow
- James Ridgway
- james.ridgway&thefloow.com
-43185
- FINN Sp. z o.o.
- Przemyslaw Sztoch
- psztoch&finn.pl
-43186
- Zweite Heimat GmbH
- enno dobberke
- ed&zweite-heimat.com
-43187
- LIM college.
- Syed Zaidi
- Syed.Zaidi&limcollege.edu
-43188
- INDIWAN GmbH
- Marco Revesz
- info&indiwan.de
-43189
- J.B. Hunt Transport Services, Inc.
- Michael Mullins
- Michael_Mullins&jbhunt.com
-43190
- Arket Srl
- Paolo Grotto
- p.grotto&arket.it
-43191
- Metamako
- Scott Newham
- info&metamako.com
-43192
- Automation & Integration Global Security Group, LLC.
- Elisa Hernandez
- elisa&aigsg.com
-43193
- GRG International LTD
- Rico Wang
- rico.wang&grgatm.com
-43194
- ABB Oy
- Mika J Kärnä
- mika.j.karna&fi.abb.com
-43195
- Management of finance of the Administration of Tchaikovsky municipal district Perm region
- Svetlana Koroteeva
- purdiksergey&yandex.ru
-43196
- Evintia SL
- Jorge Albareda Florensa
- timestamp&evintia.com
-43197
- BCS Technologies
- George Abitbol
- mco-bcs&bcstechno.net
-43198
- stepins.com
- Markus Stepins
- support&stepins.com
-43199
- Rubisco Ltd (formerly 'Aitch-Pea Limited')
- Jernej Zajc
- oidmaster&rubisco.com
-43200
- CLAAS KGaA mbH
- Ralph Hoeltmann
- iana&claas.com
-43201
- bytemine GmbH
- Holger Rasch
- info&bytemine.net
-43202
- Zeta Storage Systems Ltd (formerly 'Digital Networks UK Ltd')
- Ed Taylor
- edward.taylor&zeta.systems
-43203
- TSS COMPANY
- Frantisek Takacs
- takacs&tsscompany.eu
-43204
- Hard 'n Software Consulting GmbH
- Scott Hardin
- scott&hnsc.de
-43205
- Aloxa.eu
- Javier Fernández
- javier&aloxa.eu
-43206
- American Cancer Society, Inc.
- Scott Barr
- scott.barr&cancer.org
-43207
- Real-Time by Design, LLC
- Creed Huddleston
- creedh&realtimebydesign.com
-43208
- Cybersavants,LLC
- Guy Fuller
- sales&cybersavants.com
-43209
- Bliik
- Jonathan Vermeulen
- info&bliik.nl
-43210
- Prominic.NET, Inc.
- Andrew Hettinger
- ahettinger&prominic.net
-43211
- Atostek Oy
- Timo Mähönen
- root&atostek.com
-43212
- space150, Inc.
- Shawn Roske
- shawn.roske&space150.com
-43213
- Aveillant Ltd
- Jason Morgan
- jason.morgan&aveillant.com
-43214
- Programa Interlegis
- Fabio Kaiser Rauber
- fabior&interlegis.leg.br
-43215
- PC Users Group (ACT) Incorporated
- Stephen Rothwell
- hostmaster&tip.net.au
-43216
- Fukushima Prefectural Government. Japan
- Katsumi Ujiie
- ujiie_katsumi_01&pref.fukushima.lg.jp
-43217
- Ultimate Europe Transportation Equipment GmbH
- Christian Hintersteiner
- christian.hintersteiner&ultimate-eur.com
-43218
- tecalor
- Michael Kruckenberg
- michael.kruckenberg&tecalor.de
-43219
- Sallie Mae
- Mike Bandy
- mike.bandy&salliemae.com
-43220
- DB Netz AG
- Jan Kaebisch
- jan.kaebisch&deutschebahn.com
-43221
- Bemobi Midia e Entretenimento LTDA.
- Tamoyo Vitali
- tamoyo.vitali&bemobi.com.br
-43222
- Oxfam
- Gabriele Sani
- gabriele.sani&oxfaminternational.org
-43223
- Wireless Telecom Group, Inc
- Brian Forbes
- bforbes&wtcom.com
-43224
- Netyard Pawel Jenner
- Pawel Jenner
- netyard&jenner.pl
-43225
- Unitymedia KabelBW
- Sven Ossendorf
- postmaster&unitymedia.de
-43226
- Ashe Cosgrove Corporation
- Chris Cosgrove
- chris&sunmoonstar.net
-43227
- ossmail.de
- Till Smejkal
- postmaster&ossmail.de
-43228
- Shanghai MRDcom Co., Ltd.
- Qingzhong Tan
- qingzhong.tan&mrdcom.net
-43229
- SOFTEH PLUS SRL
- Adrian Trif
- adrian&softeh.ro
-43230
- Betrust N.V.
- Stefan Geelen
- stefan.geelen&betrust.be
-43231
- GSI Helmholtzzentrum für Schwerionenforschung GmbH
- Christopher Huhn
- monitoring-service&gsi.de
-43232
- Bank of Nova Scotia
- Jason Gray
- jason.gray&scotiabank.com
-43233
- Scheinkönig & Co.
- Dieter Scheinkönig
- service&scheinkoenig.com
-43234
- Enistek LLC
- Andrey Tolstoy
- andrey&enistek.com
-43235
- Stadt Chur
- Josua Ackermann
- lizenzen_it&chur.ch
-43236
- Pilz GmbH & Co. KG
- Frank Eberle
- f.eberle&pilz.de
-43237
- AOC Oost
- Pascal te Pas
- ictservicedesk&aoc-oost.nl
-43238
- Compass Plus Ltd.
- Alexandra Kochergina
- a.kochergina&compassplus.com
-43239
- MindMade sp. z o.o.
- Tomasz Borkowski
- office&mindmade.pl
-43240
- Day & Zimmermann
- Jason Schrader
- NetworkInfrastructure&dayzim.com
-43241
- Guidance Ltd.
- Peter Varga
- peter.varga&guidance.hu
-43242
- Universal Switching Corporation
- Hans Johansson
- hj&uswi.com
-43243
- ShinyByte Web Agency, LLC.
- Jacob Vancil
- Jacob&shinybyte.com
-43244
- Open Information Security Foundation
- Victor Julien
- oisf-team&openinfosecfoundation.org
-43245
- G421 Networks
- Keith Dube
- keith.dube&g421networks.com
-43246
- Bennington-Rutland Supervisory Union
- Daniel French
- daniel.french&brsu.org
-43247
- Rui Pereira (netcloud.pt)
- Rui Pereira
- admin&netcloud.pt
-43248
- 3 Turn Productions LLC
- Judy Tyrer
- judy3t&3turnproductions.com
-43249
- THM Consulting Ltd
- Thorsten Mayr
- thorstenpm&gmail.com
-43250
- "Group of companies "POWER ENGINEERING" Ltd
- Evgeniy Petrov
- e.petrov&e-pwr.ru
-43251
- Planet Erde
- Roland Gsell
- roland.gsell&gmx.net
-43252
- CosDay e. V.
- Alexander Pankow
- it&cosday.de
-43253
- ASGraphics
- Andreas Strobl
- astrobl&asgraphics.at
-43254
- Geonov
- Mathieu Ambrosy
- mathieu.ambrosy&geonov.info
-43255
- FISBA Optik AG
- Joder Philipp
- Philipp.Joder&fisba.ch
-43256
- FlouLab (Ioannis Angelakopoulos)
- Ioannis Angelakopoulos
- ioangel&floulab.net
-43257
- webs.bz
- Rafal Kruk
- hello&webs.bz
-43258
- D'Youville College
- Mary Spence
- helpdesk&dyc.edu
-43259
- Cambridge Health Alliance
- Jeffrey Johnson
- itd39&challiance.org
-43260
- WireGeo.com
- Konstantin Artemev
- manager&wiregeo.com
-43261
- Pontis Research Inc.
- Aditya Bhushan
- aditya.bhushan&pontisresearch.com
-43262
- ABVI-Goodwill
- Randy Overmyer
- rovermyer&abvi-goodwill.com
-43263
- SolarCity
- Todd Tidwell
- ttidwell&solarcity.com
-43264
- Opanga Networks, Inc.
- John Burnette
- johnb&opanga.com
-43265
- HongKong Yunlink Technology Co., Ltd
- WU SHUNQUAN (Jessy)
- yuncore.jessy&gmail.com
-43266
- S.Toraighyrov Pavlodar State University
- Sergey Berendakov
- admin&psu.kz
-43267
- JAMESON MEMORIAL HOSPITAL
- RHONDA GRICKS
- RGRICKS&JAMESONHEALTH.ORG
-43268
- TELECO Spa
- Massimiliano Negretti
- laboratorio&telecospa.it
-43269
- DI Kurt Renauer
- DI Kurt Renauer
- office&renauer.at
-43270
- Yoshitaka Yamane
- Yoshitaka Yamane
- yoshitaka.yamane&oasis.ocn.ne.jp
-43271
- Justus-Liebig-Universität Gießen
- Dr. Oliver Bäumer
- ldap-admin&hrz.uni-giessen.de
-43272
- Austria Card Plastikkarten und Ausweissysteme Ges.m.b.H
- Thomas Aichinger
- thomas.aichinger&austriacard.at
-43273
- Control Center Apps GmbH
- Christoph Knittel
- christoph.knittel&cca.io
-43274
- "Group of Companies "RosIntegracija" LLC.
- Dmitriy Gvozdyuk
- dmitriy.gvozdyuk&rosintegracija.ru
-43275
- Alex Eggenberger
- Alex Eggenberger
- domaxinreg9&gmail.com
-43276
- Coreline Soft Co.,Ltd
- Hyungi Seo
- hyungi.seo&corelinesoft.com
-43277
- AE Telelink System Limited
- Rajeev Kumar
- rajeev&aetelelink.com
-43278
- zalio
- Hans Riethmann
- hans.riethmann&zal.io
-43279
- R. L. Drake Holdings, LLC
- Joshua Blanton
- jblanton&rldrake.com
-43280
- Vereniging Ons Middelbaar Onderwijs
- Thijs van Ham
- ham.t&2college.nl
-43281
- PAUL HARTMANN AG
- Falk Nicolaus
- certificate-admins&hartmann.info
-43282
- PROVIDENTIA SYSTEMS
- ROBERT BASSANO
- robert.bassano&providentiasystems.com
-43283
- Vado Security
- Yossi Ben Hagai
- yossi&vadosecurity.com
-43284
- Dream Solutions Ltd
- Martin Searancke
- martin&dreamsolutions.biz
-43285
- Quanzhou Karassn Security Protection Electronics Co., Ltd.
- HongYaDe
- www&dik.com.cn
-43286
- Keysight Technologies, Inc.
- Garry Marshall
- garry_marshall&keysight.com
-43287
- Mocomsoft Inc.
- Jian Shen
- jshen&mocomsoft.com
-43288
- Lugansk State Academy Culture and Arts
- Filippov Valeriy Leonidovich
- lugansk.academy.culture.arts&gmail.com
-43289
- W3Security
- Adrian Tanasie
- adrian.tanasie&w3s.ro
-43290
- DLP Networks
- David Jia Wei Li
- david&david-li.com
-43291
- Frank Loepthien (Loeppi)
- Frank Loepthien
- loeppi&gmx.de
-43292
- Applifier Oy
- Juho Mäkinen
- juho&applifier.com
-43293
- Diakonie Deutschland
- Jörn Hoffmann
- internet&diakonie.de
-43294
- M2M Telemetria Ltda
- Celso de Oliveira
- celso&m2mtelemetria.com.br
-43295
- Kreel LLC
- Scott Kreel
- scott&kreel.com
-43296
- Exablaze
- Matthew Chapman
- matthew.chapman&exablaze.com
-43297
- BASSANO & ASSOCIATES
- ROBERT BASSANO
- robert.bassano&bassanoassociates.co
-43298
- fnordspace.net
- Markus Barenhoff
- mbarenh&alios.org
-43299
- Das Kartell (German Star Citizen Organization)
- Jörg Griepentroch
- BFC.OGDA&gmx.net
-43300
- PDC Corporation
- Hershel Wolf
- hershel.wolf&parameds.com
-43301
- xiamen diksoft Co.,Ltd.
- YaDe Hong
- www&dik.com.cn
-43302
- Bank Of Stockton
- Tyler Applebaum
- tapplebaum&bankofstockton.com
-43303
- 1st Choice Tax Service, Inc.
- Don Larsen
- donlarsen&1stChoiceTax.biz
-43304
- Davenport University
- Steven Tharp
- stharp&davenport.edu
-43305
- Hey Communications
- Chris Bajumpaa
- chrisb&hey.net
-43306
- Bitclear, LLC
- Chris Lamont
- chris.lamont&bitclear.us
-43307
- Keyprocessor
- Wilfred Janssen
- wilfred.janssen&keyprocessor.com
-43308
- Appcara Inc
- Goh Eng Teong
- engteong.goh&appcara.com
-43309
- Sweratel AB
- LIM KEE CHIAN
- keechian&sweratel.se
-43310
- Konak Solutions Pty Ltd
- Nesh Nenad Mijailovic
- info&konak.com.au
-43311
- Belcity Software
- Nigel Prosser
- nigel.prosser&belcity.co.uk
-43312
- ZRO Kvant
- Nazarenko Victor
- snakedj&inbox.ru
-43313
- zerolatency ltd
- Mauro Rappa
- info&zerolatency.co
-43314
- Tecteo Group SA
- Adrien le Maire
- adrien.le.maire&tecteo.be
-43315
- PowerDNS.COM BV
- bert hubert
- bert.hubert&powerdns.com
-43316
- Information Factory
- Anton Borowka
- admins&information-factory.com
-43317
- Stadtwerke Bonn GmbH
- Eduard Dueck
- it-service&stadtwerke-bonn.de
-43318
- PERSON to PERSON Analysis CA
- Enrique Fermin
- efermin&contactop2p.com
-43319
- Secure Meters Limited
- Hemant Jangid
- hemant.jangid&securetogether.com
-43320
- NetSTAR inc
- seinosuke terashi
- s.terashi&netstar-inc.com
-43321
- Polaris Networks
- Pradip Biswas
- pradip_biswas&polarisnetworks.net
-43322
- Kenya Education Network
- Peter Muia
- pmuia&kenet.or.ke
-43323
- Trans4mation IT GmbH
- Sebastian Hähnel
- Sebastian.Haehnel&trans4mation.de
-43324
- FARSENS S.L.
- Daniel Pardo
- info&farsens.com
-43325
- Shoreland Inc.
- Scott Kreel
- sakreel&shoreland.com
-43326
- Triple Canopy Inc.
- Todd Wallace
- it-services&triplecanopy.com
-43327
- Toronto Public Library
- Ian Stegman
- istegman&torontopubliclibrary.ca
-43328
- Exscribe, Inc
- Tony Kennedy
- tony&exscribe.com
-43329
- OneConfig Pty Ltd
- Martyn Lomax
- mlomax&oneconfig.net
-43330
- Sonavation, Inc.
- Tom Alexander
- tom.alexander&sonavation.com
-43331
- Madhat Technical Solutions LLC
- Jamie Duemo
- jamieduemo&madhatts.com
-43332
- DialogSoft inc.
- Ivan Petrov
- peti&dialogsoft.biz
-43333
- Gangwon EMbedded Software Cooperative Research Center
- Chang Yeong CHOI
- ccy333&gwnu.ac.kr
-43334
- iDocTrust
- Gerhardus Muller
- gerhardus1&gmail.com
-43335
- Union des Bois de Champagne
- Alain JACQUET
- contact&foretsetboisdelest.com
-43336
- GOERLITZ AG
- Norbert Bartsch
- norbert.bartsch&goerlitz.com
-43337
- ZENON MEDIA GmbH
- Horst Roser
- roser&zenon-media.net
-43338
- Yottabyte
- Greg Campbell
- Engineering&Yottabyte.com
-43339
- efComs UG
- Joachim von Stieglitz
- jvs&efcoms.com
-43340
- Traffic Technologies, Inc.
- Michael Kolb
- michael.kolb&t-t-i.com
-43341
- Dashlink
- Rick Gibson
- rick&dashlink.com
-43342
- SnailProof Computer Services
- Shawn Amyotte
- shawn&snailproof.com
-43343
- Contactless Devices LLC
- Evgeny Boger
- info&contactless.ru
-43344
- Maven Inventing Solutions
- Marison Gomes
- marison&maven.com.br
-43345
- Aktietrykkeriet AS
- Eyvind Riise
- eyvind.riise&aktietrykkeriet.no
-43346
- Douglas County School District, Colorado
- Jeremy Norman
- jnorman&dcsdk12.org
-43347
- ValueDatum Systems, Inc. Ltd
- Kevin Huang
- kevin&valuedatum.com
-43348
- EmbeddedSoft Ltd
- Aleksander Kałążny
- aleksander.kalazny&embeddedsoft.eu
-43349
- Nigerian Research and Education Network (NgREN)
- Prof. Mike Faborode
- ngren&eko-konnect.net.ng
-43350
- Arikel.net Enterprises, LLC
- Michael King
- mking&arikel.net
-43351
- Advania
- Aki Barkarson
- aki&advania.is
-43352
- Hangzhou Huaxing Chuangye Communication Technology CO.,LTD.
- Wang Ke
- yujiangang&hxcy.com.cn
-43353
- Beijing Certificate Authority
- Lanfang Yang
- yanglanfang&bjca.org.cn
-43354
- OBI Smart Technologies GmbH
- Dirk Proepper
- dirk.proepper&obi.de
-43355
- VTI Instruments Corporation
- Dale P. Smith
- dsmith&vtiinstruments.com
-43356
- Mimosa Networks, Inc
- Alexander Gostrer
- alex&mimosa.co
-43357
- Thomas Fagart (Brozs)
- Thomas Fagart
- tfagart&brozs.net
-43358
- candiansolar.com
- wei.yang
- wei.yang&canadiansolar.com
-43359
- China Guodian Corporation
- ChengChuan
- ChengChuan&cgdc.com.cn
-43360
- Binhai Online Information Technology Company Limited
- Sun Yajiang
- info&binhai.com
-43361
- IT Voimala Oy
- Topias Airaksinen
- topias.airaksinen&itvoimala.fi
-43362
- Zakład Automatyki i Urządzeń Pomiarowych AREX Sp. z o.o.
- Marcin Garski
- marcin.garski&arex.pl
-43363
- B2B.CZ, s.r.o.
- Richard Kotal
- richard.kotal&b2b.cz
-43364
- Vision Box, S.A.
- Roger Davies
- rdavies&vision-box.com
-43365
- Qi ict
- Martijn Ebben
- martijn.ebben&qi.nl
-43366
- N-Tools.de
- Dirk Nenninger
- iana&n-tools.de
-43367
- Suedzucker AG
- Wolfgang Junker
- wolfgang.junker&suedzucker.de
-43368
- Oradian d.o.o.
- Dražen Kačar
- drazen.kacar&oradian.com
-43369
- BrightSign LLC
- Mike Crowe
- mcrowe&brightsign.biz
-43370
- Giordano Bruno Stiftung
- Dr. Michael Schmidt-Salomon
- it-ops&giordano-bruno-stiftung.de
-43371
- Moegui S.p.A
- Luciano Giacchetta
- admin&moegui.com
-43372
- Embedded Access Inc
- Craig Honegger
- craig.honegger&embedded-access.com
-43373
- Associação dos Registradores Imobiliários de São Paulo
- walter de oliveira
- walter&arisp.com.br
-43374
- Belton IT
- Thomas Matysik
- noc&belton.co.nz
-43375
- Baer & Karrer AG
- Forgiarini Gabriele
- gabriele.forgiarini&baerkarrer.ch
-43376
- Ladybird Cranes Ltd.
- Karl Knibbs
- it&ladybirdcranes.co.uk
-43377
- GDV-IT
- Christian Graichen
- info&gdv-it.de
-43378
- Holger Genth (HGD)
- Holger Genth
- kontakt&holger-genth.de
-43379
- R.J. O'Brien and Associates
- Matthew Wulk
- MWulk&rjobrien.com
-43380
- Counterpoint Networking, Inc.
- John Hudson
- ipadmin&cpoint.net
-43381
- GEMATICA SRL
- Enrico Ciotola
- snmp&gematica.com
-43382
- Dreamket Co., Ltd.
- Jae Young Lee
- duri&dreamket.co.kr
-43383
- Commercial Bank “Severo-Vostochny Alliance” (Joint-Stock сompany)
- Vasily Rusakov
- sb&svabank.ru
-43384
- Pelle Olsson (Raholmen)
- Pelle Olsson
- pelle_olsson&swipnet.se
-43385
- Proyectos-IP
- Jose Antonio Perez
- japerez&proyectos-ip.com
-43386
- Expkits
- Göktuğ ÇAKMAK
- info&expkits.com
-43387
- city of Sioux City, IA
- Daniel Middleton
- dmiddleton&sioux-city.org
-43388
- aeworld.co.uk
- ian sutherland
- isutherland1&hotmail.co.uk
-43389
- Eko-konnect Research and Education Initiative
- Cletus Okolie
- okoliec&eko-konnect.net.ng
-43390
- BEIJING FOREVER COMMUNICATION ELECTRONICS CO.,LTD
- Jin Cancan
- jcc&xinxunxintong.com
-43391
- UTT Co., Ltd.
- Cho Yoon Sik
- yscho&uttsys.com
-43392
- Agile Digital Engineering Pty Ltd
- Justin Smith
- infrastructure&agiledigital.com.au
-43393
- S-Net
- Henrik. Schröter
- registrierung&snet-it.de
-43394
- Intrinium, Inc
- Nolan Garrett
- internalit&intrinium.com
-43395
- The City of Amsterdam
- Niels de Groot
- N.de.Groot&amsterdam.nl
-43396
- earthlab (daichi makino)
- daichi makino
- makino.daichi&earthlab.info
-43397
- NET MEDIA SERVICES a.s.
- Marek Lukács
- marek.lukacs&netmedia.as
-43398
- WILDIX
- Stefano Osler
- stefano.osler&wildix.com
-43399
- Tiscali Italia SpA
- Anselmo Canfora
- acanfora&it.tiscali.com
-43400
- IT storitve, Gregor Jerše, s.p.
- Gregor Jerše
- gregor&jerse.info
-43401
- TRData Limited
- Anton Pasiechnikov
- anton&trdata.com
-43402
- Layer-7 Technologies
- Michael Rommel
- rommel&layer-7.net
-43403
- CareerHub Pty Ltd
- Dee Hughes
- dee&careerhub.com.au
-43404
- SOCIEDAD ESTATAL CORREOS Y TELEGRAFOS SA
- David Matesanz
- asei&correos.com
-43405
- SA Water Corporation
- Andrew Commons
- issecurity&sawater.com.au
-43406
- Universiti Putra Malaysia
- Norhayti Mustafa
- ldap&upm.edu.my
-43407
- David Martin (ReaperLegion)
- David Martin
- ReaperLegion&gmail.com
-43408
- HDmessaging Inc
- Juho-Pekka Virolainen
- ops&hdmessaging.com
-43409
- Reith IT-Lösungen GmbH
- Nico Reith
- info&reith.it
-43410
- Joseph Williams
- Joseph Williams
- williams.joe&gmail.com
-43411
- Graeser Development
- Patrik Gräser
- mib-mgr&graeser.se
-43412
- Genius Digital Limited
- Alex Dick
- registry&geniusdigital.tv
-43413
- Fairview Health Services
- Coral Lindahl
- codell1&fairview.org
-43414
- Molson Coors Brewing Company
- Jackie Halewood
- jackie.halewood&molsoncoors.com
-43415
- Deepblue Informatikai Kft
- Attila Kuti
- attila.kuti&deepblue.hu
-43416
- Multigenregameworld LLC
- Mikhail Kuznetsov
- mikhail.kuznetsov&mggworld.com
-43417
- South Side Hackerspace Chicago, NFP
- Christopher Swingler
- cto&sshchicago.org
-43418
- Khakham Sayavong (Nticks)
- Khakham Sayavong
- contact&nticks.net
-43419
- Microsoft Unified Communications and Collaboration User Group
- Yves Frédéric N´Soussoula
- info&msuccug.de
-43420
- Proximic Inc
- Paul Armstrong
- iana&proximic.com
-43421
- SysMa.cz
- Tomas Krejcik
- tomas.krejcikz&gmail.com
-43422
- ADTEC Communications
- Jon Bolton
- engineering&adtec.com.au
-43423
- KeyONet
- Kim Cheol Kee
- firstpw&keyonet.com
-43424
- Securitas FINLAND
- Juha Miettinen
- juha.miettinen&securitas.fi
-43425
- Aduno Gruppe
- Boris Bellorini
- boris.bellorini&aduno-gruppe.ch
-43426
- Noction
- Eugeniu Ceglov
- eceglov&noction.com
-43427
- Altus Sistemas de Automação S.A
- Rafael Morello
- rd&altus.com.br
-43428
- The William and Flora Hewlett Foundation
- Boris Decout
- bdecout&hewlett.org
-43429
- Strata Information Technology, Inc
- Keith Stark
- keith&stratait.com
-43430
- Systems Definition, Inc.
- Frank Briese
- briesef&systemsdefinition.com
-43431
- Tate, Inc.
- Peter Strapp
- pstrapp&tateinc.com
-43432
- MICROMED BIOTECNOLOGIA LTDA
- FRANCISCO DUARTE MOREIRA NETO
- neto&micromed.ind.br
-43433
- Sreevidya Aravind
- Sreevidya Aravind
- sv.vidyaaravind&gmail.com
-43434
- Metacom Pty Ltd
- Stefan Reinke
- stefan&metacom.co.za
-43435
- Nutsrange Technologies
- James Gu
- nutsrange&gmail.com
-43436
- Accumuli PLC
- Paul Maskelyne
- paul.maskelyne&accumuli.com
-43437
- City of Montclair
- Robert Castillo
- rcastillo&cityofmontclair.org
-43438
- County Of Bruce
- Jaron Kerr
- jkerr&brucecounty.on.ca
-43439
- J.J. Downs Industrial Plastics Inc.
- Dani Cela
- dcela&jjdowns.com
-43440
- royal holloway, university of london
- roger matthews
- roger.matthews&rhul.ac.uk
-43441
- royal holloway, university of london
- roger matthews
- roger.matthews&rhul.ac.uk
-43442
- Niles Radio Communications
- John Lindsey
- john&nilesradio.com
-43443
- Transacciones y Servicios Mobile
- Fernando Bas
- ferbas&transermobile.com
-43444
- Inspire Living, Inc.
- Michael Script
- mscript&inspirelivinginc.com
-43445
- 4th Layer Integrated Solutions S.r.l.
- Enrico Milani
- enrico.milani&4lis.it
-43446
- Hartmann Electronic GmbH
- Fedor Minich
- fedor.minich&hartmann-electronic.com
-43447
- LoadFront, S.L.
- Víctor Román Archidona
- vroman&loadfront.com
-43448
- THEFEINERS.COM
- Amnon Feiner
- Amnon.Feiner&hotmail.com
-43449
- mobilcom-debitel GmbH
- Jan Singer
- jan.singer&md.de
-43450
- Agencja Restrukturyzacji i Modernizacji Rolnictwa
- Marek Michnowicz
- PKI&arimr.gov.pl
-43451
- Australian Customs and Border Protection Service
- Chris Sherlock
- chris.sherlock&customs.gov.au
-43452
- Pragtec inc.
- Jean-Francois Savard
- jf.savard&pragtec.com
-43453
- Visiometrics S.L.
- Raul Cuevas González
- informatica&visiometrics.com
-43454
- Wiccess
- Jean-Paul Mallet
- jp.mallet&wiccess.com
-43455
- LFT Solutions
- Angel Manchado
- angel.manchado&fiplex.com
-43456
- KHS GmbH
- Frank Jaenecke
- frank.jaenecke&khs.com
-43457
- Warp Software Ltda.
- Luiz Imbroisi Filho
- luiz&imbroisi.com
-43458
- Nvizible Ltd
- Mr Andrew Kingston
- licenses&nvizible.com
-43459
- Virsae Group Ltd
- Matthew Bagley
- matthew.bagley&virsae.com
-43460
- university college Leuven Limburg (UCLL)
- Noe Gunther
- gunther.noe&khleuven.be
-43461
- DGIT INTERNATIONAL PTE. LTD
- Allan Randall
- engineering&dgit.biz
-43462
- Universidade Federal Rural de Pernambuco
- Carlos Frederico Medeiros de Souza
- coord.suporte&nti.ufrpe.br
-43463
- Kyoto-University Microcomputer Club
- Kasumi Hanazuki
- hanazuki&kmc.gr.jp
-43464
- Ten Cities Media
- Greg Foster
- greg.foster&tencitiesmedia.com
-43465
- Communication Federal Credit Union
- Travis Llewellyn
- travisll&comfedcu.org
-43466
- CMS Central Media Solutions GmbH
- Lablack, Stefan
- stefan.lablack&centralmedia-solutions.de
-43467
- Evolv, Inc.
- Haam Tham
- pencontact&evolv.net
-43468
- Cacto Internet Ltda
- Daniel Farias
- daniel&cacto.me
-43469
- Sysnove
- Guillaume Subiron
- guillaume&sysnove.fr
-43470
- G + H Netzwerk-Design Gesellschaft für IT-Consulting mbH
- Tobias Schröder
- t.schroeder&netzwerk-design.de
-43471
- Sun Trading Solutions
- Jason Conley
- jconley&suntradingllc.com
-43472
- APC Integrated Services Group, Inc.
- Matt Lehmann
- mlehmann&apcisg.com
-43473
- YHGfL Foundation
- Andrew Yoward
- support&yhgfl.net
-43474
- Coca-Cola Hellenic Bottling Company
- Martin Mirov
- martin.mirov&cchellenic.com
-43475
- XNX Sàrl
- Cyril Christin
- iana-pen&xnx.ch
-43476
- LeanDev
- Robert Pettersson
- robert.pettersson&leandev.se
-43477
- Bioss Consulting SRL
- Giovanni Tirino
- info&biossconsulting.com
-43478
- Jonathon Anderson (civilfritz)
- Jonathon Anderson
- anderbubble&gmail.com
-43479
- Ecole nationale Supérieure d'Informatique
- MEDABIS BILAL
- b_medabis&esi.dz
-43480
- Canine Creche
- Alanna Marquis
- info&caninecreche.co.za
-43481
- Innovaatik OÜ
- Jargo Kõster
- jargo&inno.ee
-43482
- GlobalSensing Technologies
- Olivier BROUSSE
- r_et_d&globalsensing.eu
-43483
- AIPHONE CO., LTD.
- Hirokazu Harima
- soft_snmp&aiphone.co.jp
-43484
- Fundación Fulgor
- Juan Vercellone
- jvercellone&fundacionfulgor.org.ar
-43485
- Trillium Teamologies, Inc.
- Robert Morris
- helpdesk&trilliumteam.com
-43486
- Fuse Networks, LLC
- Garan Williams
- garanwilliams&fusenetworks.com
-43487
- Guangzhou Woxiang Information Technology Co., Ltd
- Difan Zhang
- tifan&ifanr.com
-43488
- Schletter GmbH
- Markus Burgstaller
- markus.burgstaller&schletter.de
-43489
- GOOD FIRST GROUP .
- HongDe
- 59295152&qq.com
-43490
- Rite-Tech Industrial Co., Ltd.
- Sam Huang
- sam&ritetech.com.tw
-43491
- ITR Service GmbH
- Stephan Schumann
- stephan.schumann&itr-service.de
-43492
- Bernhard Trinnes (microdots)
- Bernhard Trinnes
- bernhard.trinnes&microdots.de
-43493
- Online Linjeforening
- Kristian Ekle
- kristian.ekle&gmail.com
-43494
- Clarity Ltd
- Robert Stiles
- b06&gmx.com
-43495
- Taide Enterprise Co.,Ltd.
- Luo Xinheng
- luo&tai-de.com
-43496
- QSC AG
- Thore Bunde
- thore.bunde&qsc.de
-43497
- Weavesys UK
- Elliott Clark
- elliott.clark&weavesys.com
-43498
- SENSORBOX LTDA (formerly 'SENSORBOX DO BRASIL LTDA')
- Carlos Eduardo Padua Sarcinelli
- c.eduardo&sensorbox.com.br
-43499
- Youncta
- Luigi Russo
- luigi.russo&youncta.com
-43500
- 4D Security Solutions
- Ken Robinson
- kenneth_robinson&4-dsecurity.com
-43501
- Boston Financial Data Services Inc
- Rob Forand
- rforand&bostonfinancial.com
-43502
- HighRes Biosolutions
- Ian Locke
- ilocke&highresbio.com
-43503
- Jay Ridgeway (beekling.com)
- Jay Ridgeway
- jayridge&gmail.com
-43504
- Judd Storrs
- Judd Storrs
- jstorrs&gmail.com
-43505
- Plugh Studios Ltd
- Randy Beiter
- iana&plughstudios.com
-43506
- Beats by Dre
- Brannon Means
- brannon.means&beatsbydre.com
-43507
- ti&m AG
- Harald Böttcher
- harald.boettcher&ti8m.ch
-43508
- EDT SAS - Electronic Data Transfer
- Stéphane CHANVILLARD
- schanvillard&edt.fr
-43509
- BITPRO AS
- André Nordstokke
- an&bitpro.no
-43510
- Juan Jose Rodriguez Ponce
- Juan Jose Rodriguez Ponce
- mail&juan-jose.com
-43511
- E7 Solutions
- Brandon Opfermann
- brandon.opfermann&e7solutions.com
-43512
- BEIJING SIFANG AUTOMATION CO., LTD
- youtao
- youtao&sf-auto.com
-43513
- SDIS68
- Nicolas Riss
- nicolas.riss&sdis68.fr
-43514
- kt telecop
- Park, Sang Yeon
- itsmeda.park&kt.com
-43515
- NISCOM,Inc.
- Kaoru Miyazaki
- k-miyazaki&niscom.co.jp
-43516
- Auvik Networks Inc.
- Marc Morin
- mmorin&auvik.com
-43517
- CoolMinds Technologies (P) Ltd
- Abraham Jacob
- abraham&coolmindsinc.com
-43518
- Smartconnect NV / SA
- Mark Tetrode
- mark.tetrode&smartconnect.eu
-43519
- Tranwall
- Aurelien Duarte
- aurelien.duarte&tranwall.com
-43520
- pteam gmbh
- Markus Gruetter
- office&pteam.ch
-43521
- RSE Informationstechnologie GmbH
- Dipl.Ing. Alfred Darmann
- darmann&rse.at
-43522
- VoltServer, Inc.
- Dan Lowe
- dan.lowe&voltserver.com
-43523
- Alberta Investment Management Corporation
- Nathanael Law
- nathanael.law&aimco.alberta.ca
-43524
- Vanteon Corp.
- Matt Healy
- mhealy&vanteon.com
-43525
- Wavecon GmbH
- Cemil Degirmenci
- info&wavecon.de
-43526
- Signal Bredbånd AS
- Lars Erik Utsi Gullerud
- lerik&signal.no
-43527
- Presidio Networked Solutions
- Robert Shade
- rshade&presidio.com
-43528
- SHODEN CORPORATION
- Yoshito Yagi
- yagi&sdn.co.jp
-43529
- Istituto Radiologico e Fisioradioterapico Valdarno
- Andrea Venanzi
- andrea.venanzi&centromedicovaldarno.it
-43530
- HYTEC INTER Co.,Ltd.
- Takashi Nishihara
- net_admin&hytec.co.jp
-43531
- Atomic Object LLC
- Justin Kulesza
- admin&atomicobject.com
-43532
- Yafeng Shan (kokonur)
- Yafeng Shan
- yafeng.shan&gmail.com
-43533
- Beijing National Railway Research & Design Institude of Signal & Communication Co, Ltd. (CRSCD)
- Yafeng Shan
- yafeng.shan&gmail.com
-43534
- Alstom Grid
- Zhi Shi
- zhi.shi&alstom.com
-43535
- Luxottica North America Distribution LLC
- David Reasoner
- dreasone&luxotticaretail.com
-43536
- AO K-Dorstroy
- Alex Chernyavskiy
- support&k-dorstroy.kz
-43537
- Solumed
- Saul Jankelow
- Saulj&solumed.co.za
-43538
- EXA-TMR
- Tülin Yaman
- tulin.yaman&exa-tmr.com
-43539
- Dwarf Animation Studio
- Yann VOTÉ
- it&dwarf-labs.com
-43540
- Federal Agricultural Marketing Authority
- Sharifah Khairun Nisa Habib Elias
- ldap&fama.gov.my
-43541
- LSY Inc
- Brian Grey
- brian.grey&lsyinc.com
-43542
- DENT Instruments
- Jesse Laird
- jlaird&dentinstruments.com
-43543
- ID Business Solutions Ltd
- Simon Diaz
- snmp-admin&idbs.com
-43544
- DigiComm GmbH
- Theo Bongartz
- tbongartz&digicomm.de
-43545
- Omnitracs, LLC
- Pete Patron
- ppatron&omnitracs.com
-43546
- Tariox Limited
- Martyn Van Berkel
- hostmaster&tariox.com
-43547
- SCOOP Software GmbH
- Jürgen Link
- juergen.link&scoop-software.de
-43548
- Trasis sa
- Gauthier Philippart
- info&trasis.com
-43549
- IT Competence Group SE
- Karl Gerber
- support&neton.ag
-43550
- CAMEA spol. s r. o.
- Fučík Otto
- camea&camea.cz
-43551
- Mavari-IT bvba
- Peter Maeseele
- peter&mavari.be
-43552
- Whitesky Communications
- Spencer Thomason
- spencer&whiteskycommunications.com
-43553
- Rapid Focus Security, Inc.
- Sam Stelfox
- sam&pwnieexpress.com
-43554
- IGC
- Didier Houdas
- didier.houdas&igc-erp.com
-43555
- LayeredDefense
- Deral Heiland
- dh&layereddefense.com
-43556
- Rigas domes Informacijas tehnologiju centrs
- Juris Persins
- Juris.Persins&riga.lv
-43557
- Nick Fender
- Nick Fender
- net.admin&nickfender.com
-43558
- GitHub, Inc
- Hugh Bawt
- ops&github.com
-43559
- ENKOM AG
- Patrick Bruegger
- info&enkom.com
-43560
- New Orleans East Hospital
- Kimberly Jones-Williams
- Kim.JWilliams&NOEHospital.org
-43561
- Micro-Research Finland Oy
- Jukka Pietarinen
- jukka.pietarinen&mrf.fi
-43562
- ZepMed, LLC
- Nathan White
- natewhite44&gmail.com
-43563
- pedro paulo medeiros
- Pedro Paulo Medeiros
- ppmedeiros&ig.com.br
-43564
- TSC AUTO ID Technology Co., Ltd.
- Phil Liu
- phil&tscprinters.com
-43565
- Reliance Jio Infocomm Limited
- Sudhanshu Purwar
- sudhanshu.purwar&ril.com
-43566
- Engineering Center REGIONAL SYSTEMS, Limited
- Alexey Gordichuk
- a.gordichuk&ec-rs.ru
-43567
- Yongjia County Board of Education
- Li Chengdao
- lcd&yje.cn
-43568
- EMICON
- Rifat Abdulkaumov
- rifat&emicon.ru
-43569
- Hong Yun Technology
- Hong Yun
- hongyuntech&gmail.com
-43570
- Coopérative Forestière Bourgogne Limousin (CFBL)
- Chantal BRODIN PREVOSTO
- chantal.prevosto&cfbl.fr
-43571
- SOCIETE DES TRANSPORTS ROCHATTE
- Rose-Marie ROCHATTE
- str&transports-rochatte.com
-43572
- Foundation for Research and Technology Hellas
- Panagiotis Sikas
- sikas&ics.forth.gr
-43573
- VSAT-SERVICE
- Shishkov Alexey
- shan&vsat-s.ru
-43574
- Lansing Makers Network
- Michael Johnson
- itstaff&lansingmakersnetwork.org
-43575
- OpenPeak
- Dustin Oprea
- dustin&openpeak.com
-43576
- IntSec.NET
- Alessio Bravi
- alessio&bravi.org
-43577
- CNPC Beijing Richfit Information Technology Co.,LTD.
- Songjiajia
- songphd&hotmail.com
-43578
- 42technology AG
- Stephan Koch
- sw-development&42technology.ch
-43579
- EASYPROTO di Giacomo Cesari
- giacomo cesari
- info&easyproto.it
-43580
- SutherlandGlobalServices
- Arunbabu Rajmohan
- Arunbabu.r&sutherlandglobal.com
-43581
- Ooyala Inc.
- Bao Nguyen
- ngqbao&gmail.com
-43582
- Document Centric Solutions Ltd
- David Randall
- sysadmin&doccentrics.com
-43583
- ReMake Electric
- Karl Palsson
- developers&remake-electric.com
-43584
- Trizetto Provider Solutions
- Kyle Pott
- kyle.pott&trizetto.com
-43585
- SAMSON AG
- Axel Goettmann
- agoettmann&samson.de
-43586
- SVS TELEKOMÜNİKASYON HİZ. TİC. SAN. A.Ş.
- Muhammet Fatih OKUTAN
- fatih.okutan&svstelekom.com.tr
-43587
- Roave, LLC.
- Evan Coury
- info&roave.com
-43588
- SAA Topnet GmbH
- Suzanne Epp
- epp&saatopnet.de
-43589
- KEKLOLWTF AS
- Jan Egil Vestbø
- iana&keklolw.tf
-43590
- HAL9k hackerspace
- Georg Sluyterman
- bestyrelse&lists.hal9k.dk
-43591
- Erlang Solutions LTD
- Michal Tomczuk
- sysadmin&erlang-solutions.com
-43592
- Campbell Scientific, Incorporated
- Sam Utley
- sutley&campbellsci.com
-43593
- Crimson Innovative
- Sudhakara Rao
- sudhakarmurala03&gmail.com
-43594
- Interhyp AG
- Norman Bauer
- _IT_Windows_Services&interhyp.de
-43595
- MolinoSoft (Julian Bourne)
- Julian Bourne
- julian&britesc.com
-43596
- Carnegie Fitness
- Clark Chiu
- clark&carnegie-fitness.com
-43597
- Comprehensive Health Management, Inc.
- Oscar Galdona
- oscar.galdona&wellcare.com
-43598
- STORM
- Sernin van de Krol
- chip&storm.vu
-43599
- Paneidos Desu
- Sernin van de Krol
- sernin&paneidosdesu.com
-43600
- Beijing Easesky Netcom Technology Co.,Ltd
- David Xu
- davidxu&easeskytech.com
-43601
- Nuri Technology Co., Ltd.
- Kwang-Wook, Lee
- nuritec&nuritec.co.kr
-43602
- Rossiya Segodnya
- Andrey Belokurov
- postmaster&rian.ru
-43603
- The Twelve Tribes
- Patrick McCourt
- patrick.mccourt&twelvetribes.org
-43604
- Arkansas Educational Television Network (AETN)
- Greg Barber
- gbarber&aetn.org
-43605
- Metatrust
- Jorge Rocha
- jorge.rocha&metatrust.com.mx
-43606
- nobaq.net
- Nikolaus Hammler
- noc&nobaq.net
-43607
- Funda Real Estate B.V.
- Remie Bolte
- beheer&funda.nl
-43608
- Raben Group
- Marcin Piotrowski
- it.admin&raben-group.com
-43609
- NetCracker Technology Corp.
- Nikita Sizykh
- ldap.snmp.oids.group&netcracker.com
-43610
- ColosseoEAS, a.s.
- Miroslav Petrak
- miroslav.petrak&colosseoeas.com
-43611
- Power Ethernet
- James Gardiner
- support&powerethernet.com
-43612
- IOLAN
- Ernst Lemm
- e.lemm&iolan.com
-43613
- Skylife Engineering
- Antonio Rodriguez
- itadmin&skylife-eng.com
-43614
- phaenovum Schülerforschungszentrum Lörrach-Dreiländereck e.V.
- Lars Möllendorf
- it-robotik&phaenovum.eu
-43615
- VonRoll
- Bilal Karaagac
- bilal.karaagac&vonroll.com
-43616
- Aventura Technologies Inc.
- Michael Wangner
- info&aventuratechnologies.com
-43617
- Vidant Health
- Kirk Davis
- kirk.davis&vidanthealth.com
-43618
- Camtrace
- Alain Dumouchel
- alcodu1812&gmail.com
-43619
- LianYunGang E-Port Information Development Co.,Ltd
- Yaokun Zhang
- postmaster&lygeport.gov.cn
-43620
- Shenzhen Headsun Technology
- Bo Liu
- 18929378839&189.cn
-43621
- Medical Effect
- Dr. Roman Zolow
- zolow&medical-effect.com
-43622
- WebPerative LLC
- Alan McCluney
- alan&webperative.com
-43623
- Umensis - Guillaume Pannatier
- Guillaume Pannatier
- guillaume.pannatier&gmail.com
-43624
- Jaroslav Sendler (xsendl00)
- Jaroslav Sendler
- sendler.jaroslav&gmail.com
-43625
- Core Technology
- Krzysztof Kielak
- contact&moosefs.com
-43626
- NewB
- Catherine Blancquaert
- info&newb.coop
-43627
- Devani Creative
- Sernin van de Krol
- sernin&devani.nl
-43628
- The Rubicon Project
- Sean Michael Byron
- poc&rubiconproject.com
-43629
- PSITEX, LLC
- Jack D. Pond
- jack.pond&psitex.com
-43630
- Duxoft, Inc.
- Gennadiy Bezkorovayniy
- gb&duxoft.com
-43631
- Heijmans N.V.
- Edwin van de Burgt
- eburgt2&heijmans.nl
-43632
- Celtex Works
- Davey Robertson
- d.robertson&celtexworks.com
-43633
- AIES Advanced Industrial Electronic Systems
- Dariusz Makowski
- dariusz.makowski&aies.pl
-43634
- Metrellis, Inc.
- Walter Sujansky
- wsujansky&sujansky.com
-43635
- Practice Velocity, LLC
- Gregory J Wentz
- gwentz&practicevelocity.com
-43636
- LES.NET
- Leslie Bester
- sales&les.net
-43637
- Zymer Inc.
- Peter Yoo
- pryoo&zymerinc.com
-43638
- ITS Korea
- Sanghyun Lee
- shleego&itskorea.kr
-43639
- Evoluta Interactive
- Schalk Snyman
- schalks&evoluta.biz
-43640
- THROUGHOTHEREYES (Jonathan Platzer)
- Jonathan Platzer
- jonathan&throughotherey.es
-43641
- netplus.ch SA
- Jean-Blaise Rey
- jean-blaise.rey&netplus.pro
-43642
- Linde Engineering
- Walter Werther
- walter.werther&linde-le.com
-43643
- TEQ SA
- Alessandro Prioglio
- tech-admin&teq.ch
-43644
- Infra Services
- Arjen Barnhard
- pen.iana&infra-services.net
-43645
- FEIG ELECTRONIC GmbH
- Sascha Brueck
- sascha.brueck&feig.de
-43646
- Datatal AB
- Thomas Persson
- thomas&datatal.se
-43647
- Rimbach IT Systems UG
- Rene M. Rimbach
- info&rimbach-it-systems.de
-43648
- Naudit High Performance Computing and Networking S.L.
- Eduardo Magaña
- eduardo.magana&naudit.es
-43649
- Raritan Bay Medical Center
- Susan Landow
- slandow&rbmc.org
-43650
- United Health Services
- Kevin Rymer
- kevin_rymer&uhs.org
-43651
- INTTRA Inc
- Michael Lunny
- michael.lunny&inttra.com
-43652
- GoBICS
- Rasmus Steinkamp
- iana.pen.6kUL4EWH2w&gobics.de
-43653
- UNIVERSITAT OBERTA DE CATALUNYA
- Carles Cortada i Hortalà
- ccortada&uoc.edu
-43654
- marcsi.ch
- Marc Siegenthaler
- shin&marcsi.ch
-43655
- University Ecclesiastical Academy of Thessaloniki
- Telemachos Stamkopoulos
- telem&aeath.gr
-43656
- Consortium
- Samsun Kang
- sammy-kang&nate.com
-43657
- Kanton St.Gallen
- Robert Schneider
- Robert.Schneider&sg.ch
-43658
- Seacloud
- Bong Dae Kim
- bd.kim&sea-cloud.co.kr
-43659
- Hochschule für Technik und Wirtschaft des Saarlandes (htw saar)
- Niclas Wolniak
- niclas.wolniak&htwsaar.de
-43660
- Zadara Storage Ltd
- Yair Hershko
- yair&zadarastorage.com
-43661
- Columbus Business Solutions
- Johnny Mejias
- jmejias17&gmail.com
-43662
- Simpson Housing LLLP
- Gene Pinson
- gene.pinson&simpsonhousing.com
-43663
- eTouch Federal Systems
- Benjamin Stassart
- iana&etouchfederal.com
-43664
- Unzane
- Gerald Turner
- gturner&unzane.com
-43665
- rioxo GmbH
- Rudolf Rohr
- rudolf.rohr&rioxo.net
-43666
- Hackerspace Brussels
- Frederic Pasteleurs
- askarel&hackerspace.be
-43667
- Sunwire Inc
- Jason Legault
- support&sunwire.ca
-43668
- Andreas Kreisel
- Andreas Kreisel
- akreisel&duck-edv.de
-43669
- The Institute of Mathematical Sciences
- B. Raveendra Reddy
- ravi&imsc.res.in
-43670
- Epic Code Pty. Ltd.
- Michael Slade
- mslade&knobbits.org
-43671
- EMSEAS Teknik AB
- Jonathan Petersson
- jonathan.petersson&cxense.com
-43672
- INTELLECT MODULE
- Ivan Fedotov
- ivan&intellect-module.ru
-43673
- Federal State Unitary Enterprise CentrInform
- Aleksey Gvozdev
- a.gvozdev&center-inform.ru
-43674
- Robonect
- Mikhail Sokolov
- robot&robonect.com
-43675
- Accenture CAS GmbH
- Carsten Mueller
- carsten.mueller&accenture.com
-43676
- 57North Hacklab
- Iain Learmonth
- irl&fsfe.org
-43677
- ICT Plus srl
- Alessandro Barsotti
- alessandro.barsotti&ictplus.it
-43678
- Michael Kramer
- Michael Kramer
- verwaltung&turkeyfish.de
-43679
- SETTE
- Sotir Gramosli
- sotir.gramosli&sette.com.mk
-43680
- Chorus Limited
- David Vink
- chorusopsnotify&chorus.co.nz
-43681
- ELESTER-PKP Sp. z o.o.
- Robert Bojara
- robert.bojara&elester-pkp.com.pl
-43682
- ITSA Consulting, LLC
- Joshua M Miller
- joshua&itsecureadmin.com
-43683
- ALDEIS
- Damien guigue
- damien&yooda.com
-43684
- NOVASIB GmbH
- René Carl
- rene.carl&novasib.de
-43685
- biz:Consult Unternehmensberatung GmbH
- Gregor Kralik
- gregor.kralik&bizconsult.at
-43686
- Jefferson County
- David Olsen
- itstaff&co.jefferson.wa.us
-43687
- Christoph Knott - IT-Sicherheitstechnik
- Christoph Knott
- info&it-sicher.com
-43688
- GERMEN ELEKTRONIK LTD
- MURAT GERMEN
- mgermen&germen.com.tr
-43689
- schugart
- Dimitri Fagart
- raspberry&schugart.net
-43690
- The Active Network
- Heather Tillman
- heather.tillman&activenetwork.com
-43691
- Michael Kettner
- Michael Kettner
- mikettner&gmx.de
-43692
- haberberger.com
- Andreas Haberberger
- admin&haberberger.com
-43693
- Fotolia LLC
- Renaud Chaput
- renaud&fotolia.com
-43694
- Omega Intelligence Systems Ltd
- Martin Adamczyk
- admin&omegaintellisys.com
-43695
- 5nine Software
- Dr. Konstantin Malkov
- kmalkov&5nine.com
-43696
- LLC Info-Kontent
- Sergey Mudrak
- sergey.mudrak&beeper.ru
-43697
- JSC Tyumen Electricity sale company
- Ivan Toporkov
- Ivan&elektro-32.ru
-43698
- Joint Electronic Teller Services Ltd.
- Ricky Man
- rickyman&jetco.com.hk
-43699
- EasyData, LLC
- Vladimir Baranov
- info&easydata.ru
-43700
- PathCore
- Dan Hosseinzadeh
- iana.org&pathcore.ca
-43701
- HySecurity, Inc.
- Chuck Davidson
- cdavidson&hysecurity.com
-43702
- Dom-Daniel
- Artashes Kalantarian
- artashes&dom-daniel.com
-43703
- Wacom Company Ltd.
- Daniel Dietz
- daniel.dietz&wacom.eu
-43704
- Accutron Instruments Inc
- Mike Sharkey
- mike&accutroninstruments.com
-43705
- F!nTcH.org
- Vincent BECHON
- fintch&fintch.org
-43706
- Statnett SF
- Roar Håkonsen
- roar.hakonsen&statnett.no
-43707
- Australian Rail Tecchnology
- Thomas George
- t.george&ar-tech.com.au
-43708
- SimonMed Imaging
- Chris Diehn
- cdiehn&simonmed.com
-43709
- AirDSL (Pty) Ltd
- Iliyan Dobrev
- iliyan&airdsl.co.za
-43710
- GAMESA
- Jose Antonio Contreras Caballero
- jacontreras&gamesacorp.com
-43711
- mySupply ApS
- Peter Freiberg
- peter.schmidt.freiberg&mySupply.dk
-43712
- Universidad Central de Venezuela
- Alberto Bellorin
- alberto.bellorin&ucv.ve
-43713
- Code 42
- Ethan J Sommer
- ethan&code42.com
-43714
- Mega Soft Computación, C.A.
- Jose E. Delgado
- infra&megasoft.com.ve
-43715
- Data Infrastructure Technologies Ltd.
- Chris Ianculovici
- crs5tx&gmail.com
-43716
- Veterinary Nurse Solutions Pty Ltd
- Deane Klaer
- deane&vetnurse.com.au
-43717
- imensup
- makan jooyani
- info&imensup.com
-43718
- Österreichisches Weltraum Forum
- Sebastian Sams
- sebastian.sams&oewf.org
-43719
- Telvio LLC
- Andrew Kolchoogin
- gadm&telvio.ru
-43720
- Creat0r.pro
- Sergey A. Prokofyev
- s-proff&creat0r.pro
-43721
- Cyberoam Technologies Pvt. Ltd.
- Sanket Handa
- pen.iana&cyberoam.com
-43722
- DAC Systems, Inc.
- Mark Nickson
- mnickson&dacsystems.com
-43723
- Stancil Corporation
- Simon Farrow
- simon.farrow&stancilcorp.com
-43724
- Japan Prime Computing
- daisuke watanabe
- watanabe.daisuke&j-pc.jp
-43725
- Casair, Inc
- Mike Sturdee
- mike.sturdee&casair.net
-43726
- GO! Express & Logistics Deutschland GmbH
- Uwe Rehorst
- uwe.rehorst&general-overnight.com
-43727
- Valeo Comfort ans Driving assitance
- Etter Stephan
- stephan.etter&valeo.com
-43728
- Sinergise Ltd.
- Primoz Kolaric
- primoz.kolaric&sinergise.com
-43729
- Teckids e.V.
- Dominik George
- dominik.george&teckids.org
-43730
- Ernst Klett AG
- Horst Lehmacher
- hostmaster&klett-gruppe.de
-43731
- FooxTek Co., LTD.
- David Chu
- david&foox.cc
-43732
- Netmag Technology Corporation
- Joyce Chen
- joycechen&netmag-tech.com
-43733
- East Photonics, Inc.
- Yong-Seung Jeong
- tech&eastphotonics.com
-43734
- IQUO Ltd
- Peter Reynolds
- peter&iquo.co.uk
-43735
- STI-Tassimco
- Patrick Lauziere
- patrick.lauziere&sti-tassimco.com
-43736
- Standard Imaging, Inc.
- Mark Mackenzie
- mmackenzie&standardimaging.com
-43737
- MedAllies
- Nicole Domkiw
- ndomkiw&medallies.com
-43738
- Doshisha University
- TANAKA, Yasuhiro
- donetmgr&mail.doshisha.ac.jp
-43739
- Concept Smoke screen Ltd
- Matt Gilmartin
- Matt&smoke-screen.co.uk
-43740
- ASB-Technology Sp. z o.o.
- Tomasz Cholewiński
- t.cholewinski&asb.nl
-43741
- Cerqueira & Marcos, Lda
- Luis Martins
- luis.fcm&netcabo.pt
-43742
- Microx Computer GmbH
- Adam Jaskowiec
- adam.jaskowiec&microx-computer.de
-43743
- Open Systems Technology, Pty.
- Louis Rodriguez
- itt&ost.com.au
-43744
- airberlin
- Peter Jaremenko
- peter.jaremenko&airberlin.com
-43745
- CONSEJO DE LA JUDICATURA
- David Moncayo
- entidad.certificacion&funcionjudicial.gob.ec
-43746
- Ulterius Technologies, LLC
- Alex Cavgalar
- alex.cavgalar&ulteriustech.com
-43747
- MaterialApps
- Andreas Werder
- andreas.werder&yahoo.com
-43748
- ARES Conocimiento de Negocio, SL
- Andres Escribano de Mingo
- AEscribano&ares-cn.es
-43749
- Country Bright Company Ltd.
- Terence Ho
- it&countrybright.com
-43750
- Jabil Circuit, Inc
- Thomas Cetta
- domains-administrator&jabil.com
-43751
- Shenzhen TG-NET Botone Technology CO. Ltd.
- Shine Zhang
- xian.zhang&tg-net.cn
-43752
- China Film Equipment Co. Ltd.
- linxiaofei
- linxiaofei&cfec.com.cn
-43753
- Kyriasis
- Johannes Löthberg
- johannes&kyriasis.com
-43754
- Philipp Wagner Softwareentwicklung
- Philipp Wagner
- mail&philipp-wagner.com
-43755
- BG-Phoenics GmbH
- David Feindel
- basisdienste&bg-phoenics.de
-43756
- Schwarz Dienstleistung KG
- Max Killinger
- gtld&sbg.de
-43757
- QOSIT AG
- Uwe Schneider
- uwe.schneider&qosit.com
-43758
- Clique Intelligence Inc.
- Art Leondires
- art.leondires&cliqueintelligence.com
-43759
- Big White Network Technologies,Ltd.
- Tuhongchao
- tuhongchao&bigwhitenet.com
-43760
- Atlas Networks
- Nathan Eisenberg
- nathan&atlasnetworks.us
-43761
- Our School Ltd
- Brett Merrick
- support&ourschool.co.nz
-43762
- PlazaLotusGroup
- Pavel Chikovani
- admin&plazalotus.com
-43763
- ChinaFilm Global (Beijing) Technology limited
- wang heng
- heng.wang&cfgdc.net
-43764
- Tallac Networks
- Matthew Davy
- mpd&tallac.com
-43765
- Color Print
- Torben Vingborg
- TV&colorprint.dk
-43766
- MBSys LLC Azerbaijan
- Mehdi Kamran Mammadov
- mehdi&mbsys.tv
-43767
- Eastern Long Island Hospital
- Susan Apicello
- sapicello&elih.org
-43768
- GatesAir, Inc.
- Bradley Thomson
- brad.thomson&gatesair.com
-43769
- Vezea
- Sebastian Wetzel
- iana.admin&vezea.com
-43770
- Addat s.r.o.
- Ing. Jiri Kubias
- jiri.kubias&addat.cz
-43771
- Behlman Electronics
- Heather Savage
- hsavage&behlman.com
-43772
- K+S IT-Services GmbH
- Regina Böhm
- regina.boehm&k-plus-s.com
-43773
- The Vancouver Clinic Inc.
- Tim Morris
- netadmins&tvc.org
-43774
- Hortonworks Inc
- Jesse Lesperance
- jlesperance&hortonworks.com
-43775
- Quotepro Inc
- Brian Marquis
- brian&quotepro.com
-43776
- Symbiotic System Design
- Manuel Deschambault
- themactech&me.com
-43777
- Maikel de Boer
- Maikel de Boer
- maikel&loopodoopo.nl
-43778
- Hampshire Controls Corporation
- Diane D. Rush
- drush&hampshirecontrols.com
-43779
- Finnova AG
- Alexander Berger
- alexander.berger&finnova.ch
-43780
- Paradox Networks, Inc
- Jackie Bates
- iana-pen&paradoxnetworks.net
-43781
- Moshel Kamadu Records
- Markus Szumovski
- markus.szumovski&moshel-kamadu.at
-43782
- UPS Solutions INC.
- Mitsunari Tomosaka
- sdb-develop&ups-sol.com
-43783
- WaveNet Communications Private Limited
- MUSUNURU SRIDHAR
- ms&wavenet.co
-43784
- IFOM
- Ivan Lago
- ivan.lago&ifom.eu
-43785
- Magellium
- Romain Cabassot
- romain.cabassot&magellium.fr
-43786
- Factual Inc
- Philip Marcus
- sysops&factual.com
-43787
- Leviathan Security Technologies
- Falcon Darkstar Momot
- falcon.momot&leviathansecurity.com
-43788
- Comita d.d.
- Bojan Oresnik
- bojan.oresnik&comita.net
-43789
- Trading & Consulting 'H.P.C.' GmbH
- Robert Gierzinger
- rg&hpc.at
-43790
- becker-aero
- Roger Becker
- roger.becker&becker-aero.de
-43791
- Cine Digital Service
- Ronan SALMON
- snmp&cinedigitalservice.fr
-43792
- Now Wireless Limited
- Brett Warthen
- brett&nowsms.com
-43793
- Tom Gundersen (systemd)
- Tom Gundersen
- teg&jklm.no
-43794
- Chris Thomson
- Chris Thomson
- chris&chris-thomson.co.uk
-43795
- Guangzhou Andea Electronics Technology Co.,Ltd
- ZhenSong Li
- lzs6401948&163.com
-43796
- Rasing IT Solutions
- Bastiaan Rasing
- bastiaan&rasing.me
-43797
- Croz d.o.o.
- Neven Biruski
- nbiruski&croz.net
-43798
- NANJING SAND TECHNOLOGY CO., LTD
- Wang Kai Jiang
- tech&sandkj.com
-43799
- TRUMPF GmbH + Co. KG
- Andreas Reinmoeller
- andreas.reinmoeller&de.trumpf.com
-43800
- OraSentry
- Raphaël Tiran
- raphael&orasentry.com
-43801
- Dolphin Systems AG
- Peter Honegger
- peter.honegger&dolphin.ch
-43802
- Avaloq Evolution AG
- Jukka Salmi
- it-infrastructure&avaloq.com
-43803
- University of South Wales
- Jeremy Thomas
- sysadmin&southwales.ac.uk
-43804
- Bombardier Aerospace
- Marc Rinfret
- marc.rinfret&aero.bombardier.com
-43805
- Metalogix International GmbH
- Anna DeGiorgio
- adegiorgio&metalogix.com
-43806
- Shape Security, Inc
- Judy Karp
- judy&shapesecurity.com
-43807
- CENTRI Technology, Inc.
- Lance Lu
- lance&centritechnology.com
-43808
- Spincat Studios
- Bob Bregant II
- bob&spincats.com
-43809
- University of the Philippines
- Rommel Feria
- admin&up.edu.ph
-43810
- Li Hongnan (LiHN)
- Li Hongnan
- mail&lihn.cn
-43811
- University of the Philippines Mindanao
- Krishna Hernandez
- krishnahernandez&upmin.edu.ph
-43812
- Corscience GmbH & Co. KG
- Florian Kasper
- edv&corscience.de
-43813
- Centraal Justitieel Incassobureau
- C.M. Eyzenga
- informatiebeveiliging&cjib.minjus.nl
-43814
- GNU Networks Ltd.
- Kenneth Peiruza
- kenneth&gnun.net
-43815
- The University of Texas M.D. Anderson Cancer Center
- Sean Walker
- swalker&mdanderson.org
-43816
- Tran Industries LLC
- Duc Tran
- info&tranindustries.com
-43817
- Vertex Business Services
- Pat Sagers
- pat.sagers&vertexgroup.com
-43818
- Featurespace Limited
- Andy Whitell
- sysadmin&featurespace.co.uk
-43819
- pulse technologies
- Ronnie Gilkey
- ronnie&pulsetechofla.com
-43820
- Mozy, Inc.
- Thor Sigurjonsson
- thor.sigurjonsson&mozy.com
-43821
- Suwannee County School Board
- Adam Boatright
- adam.boatright&suwannee.k12.fl.us
-43822
- Nok Nok Labs, Inc.
- John Westien
- jw-iana&noknok.com
-43823
- VAS Experts
- Dmitriy Moldavanov
- dmoldavanov&vasexperts.ru
-43824
- ConectaIP Tecnologia S.L.
- Jordi Corpas
- jordi.corpas&conectaip.es
-43825
- Earnest Products, Inc. dba Southern Manufacturing
- Anjanett Exum
- aexum&southernmfg.com
-43826
- TEXKA LABS
- Carlos Visser
- cvisser&texka.com
-43827
- Ideosoft C.B.
- Juan Gomez Melero
- jgomez&ideosoft.es
-43828
- Bosoft
- Karol Klos
- karol.r.klos&gmail.com
-43829
- Ifield School
- Andrew Mudamai
- amudamai&ifield.kent.sch.uk
-43830
- eWater Pty Ltd
- Erick Tomaliwan
- support&ewater.com.au
-43831
- Ezvoicetek Co., Ltd.
- Samuel Sung
- samuel&ezvoicetek.com
-43832
- Beijing D&S FieldBus Technology Co.,Ltd
- Biao Wang
- wangbiao&c-profibus.com.cn
-43833
- LIVECREATION
- Navas CH
- navas&livecreation.in
-43834
- Urban Systems Design Institute
- Bugarev Ivan
- support&ecocity.ru
-43835
- HOCHTIEF CZ, a.s.
- Vladimir Bouchal
- vladimir.bouchal&hochtief.cz
-43836
- C Tech Bilisim Teknolojileri San.ve Tic. A.S
- Mahmut Bulut
- mahmut.bulut&ctech.com.tr
-43837
- DTI Group Ltd
- Jean-Michel Florent
- jean-michel.florent&dti.com.au
-43838
- Genex Hellas L.T.D
- Dimitrios Papadopoulos
- ts&genex.gr
-43839
- RailComm LLC
- Tim Myers
- tmyers&railcomm.com
-43840
- Sumitomo Mitsui Banking Corporation
- Sean Boyd
- SBoyd&JRI-America.com
-43841
- Eatel
- Duane Wylie
- duane.wylie&eatel.com
-43842
- Zero Waste Scotland
- Chris Meikle
- chris.meikle&zerowastescotland.org.uk
-43843
- Alter Trading Corporation, LLC
- Jason Hitt
- isapps&altertrading.com
-43844
- GuangDong Big Banian Info Tech Co., Ltd.
- Jack Peng
- bigbanian&gd3n.com
-43845
- Toshiba Tec Solution Services Corporation
- Syo Koyanagi
- syou_koyanagi&toshibatec.co.jp
-43846
- University of the Philippines - Baguio
- Dominic S. Dulay
- sysnet&upb.edu.ph
-43847
- A Hagedoorn Electronics
- Arend Hagedoorn
- ah&ah-electronics.com
-43848
- INoTHINGS GmbH
- Andreas Brodmann
- andreas.brodmann&inothings.com
-43849
- LiiON, LLC
- Thomas Lynn
- applications&liionllc.com
-43850
- Doxcelerate Corporation
- Thierry Thelliez
- tt&doxcelerate.com
-43851
- danieLLegal.Net - Rechtsanwälte
- Dr. Andreas Daniel
- daniel&daniellegal.net
-43852
- Truseco, s.r.o.
- Jakub Horak
- info&truseco.com
-43853
- Academy of Economic Studies of Moldova
- Constantin Sclifos
- sclifcon&ase.md
-43854
- TU Investment Club e.V.
- Mathias Burger
- mathias.burger&tuinvest.de
-43855
- ezIX.org
- Lyonel Vincent
- lyonel&ezix.org
-43856
- UNIT4 Business Software Spain S.L.U.
- Ezequiel Parra Mestre
- ezequiel.parra&unit4.com
-43857
- mITra data
- Supriya Mitra
- sm&mitradata.com
-43858
- Grigorivska International School
- Vadim Baglikov
- vadim&grigorivska.com
-43859
- Harbor Freight Tools
- Garrett Scott
- InfoSec&harborfreight.com
-43860
- Groenewoud
- Frank Groenewoud
- snmp&groenewoud.me
-43861
- New York Genome Center
- Fred Parks
- fparks&priveon.com
-43862
- Drei Banken EDV Ges.m.b.H.
- Lothar Handl
- lothar.handl&3beg.at
-43863
- Valour Security Ltd
- Dave Shaw
- dave&val-sec.com
-43864
- Breeze Innovations Private Limited
- Seenivasan Balaji
- balaji_blr&yahoo.com
-43865
- Matthias Krause (spectre-net)
- Matthias Krause
- matthias.krause&hotmail.de
-43866
- beijing huafei technology co.,ltd
- wukuang
- wukuang&huafeitech.com
-43867
- Rename it
- Rien Broekstra
- rien&rename-it.nl
-43868
- Conjur Inc
- Kevin Gilpin
- kgilpin&conjur.net
-43869
- Yatharth Gupta
- Yatharth Gupta
- yatharth.gupta&gmail.com
-43870
- Precyse Technologies
- Yaniv Shneiderman
- yanivs&precysetech.com
-43871
- Metricell Ltd.
- Nick Hassett
- nick.hassett&metricell.com
-43872
- Q'ligent.inc
- Ted Korte
- ted.korte&qligent.com
-43873
- TA Associates
- Aaron McCoppin
- amccoppin&ta.com
-43874
- pmacct
- Paolo Lucente
- paolo&pmacct.net
-43875
- TeKnowledgy, Inc.
- Bill Buhler
- bill&tknow.com
-43876
- Centre Hospitalier Universitaire Sainte-Justine
- Pascal Cloutier
- infrastructure.hsj&ssss.gouv.qc.ca
-43877
- Dalian Rural Commercial Bank Co.,Ltd.
- Li Hongnan
- lihn79&163.com
-43878
- Embross Group
- Andrew Tzelepis
- andrewt&embrossgroup.com
-43879
- Chengdu Fuhuaxin Technology Co.,Ltd.
- Wanbin.Gan
- 563572071&qq.com
-43880
- FRAKO Kondensatoren- und Anlagenbau GmbH
- Andreas Kreker
- kreker&frako.de
-43881
- Informatics Services Corporation (ISC)
- Mehrdad Sheikhan
- m_sheikhan&isc.iranet.net
-43882
- DHBW Villingen Schwenningen
- Richard Franke
- franke&dhbw-vs.de
-43883
- NiVo Engineering BV
- Edwin Vos
- evos&nivo.nl
-43884
- AnyCode Kft.
- Gabor Fekete
- pen.oid&anycode.hu
-43885
- WCC Group BV
- Rene Schuil
- mail.it&wcc-group.com
-43886
- Anjary Pty Ltd
- Andrew Fisher
- andrew&anjary.com.au
-43887
- ΒΥΤΕ COMPUTER S.A
- Christos Anifantis
- anifantis&byte.gr
-43888
- Agiloo S.r.l. Semplificata
- Andrea Duimich
- andreaduimich&agiloo.it
-43889
- datenkollektiv.net
- Jan Kowalsky
- support&datenkollektiv.net
-43890
- Thotaka Technologies Private Limited
- Lakshmi Mohan Saripalli
- mohan&thotakaa.com
-43891
- SMY.com
- Stephen Youndt
- ianapen.5.smy&neverbox.com
-43892
- NerySEC
- Kyra Zimmer
- nonchip&nerysec.de
-43893
- Hope Bay Technologies, Inc.
- Pa Hsuan
- pa.hsuan&hopebaytech.com
-43894
- HedoN electronic developments B.V.
- Remon Dijkstra
- rdijkstra&hedon.nl
-43895
- Institut für Holztechnologie Dresden gemeinnützige GmbH
- Thomas Hupfer
- hupfer&ihd-dresden.de
-43896
- Emercit
- Sergey Tsidilov
- tsidilov&emercit.ru
-43897
- Amped Wireless
- Anthony Ng
- anthony&ampedwireless.com
-43898
- Hudson City Savings Bank
- Thomas Slattery
- tslattery&hcsbnj.com
-43899
- atlantis software
- alexandre tiertant
- a.tiertant&atlantis-software.net
-43900
- Teramatrix Technologies Private Limited
- Amit Sharma
- asharma&teramatrix.in
-43901
- Talisman Sinopec Energy UK Limited
- Andrew Bentley
- hostmaster&talisman-sinopec.com
-43902
- Enkel Tecnologia
- Oscar Flores
- oscar.flores&enkeltecnologia.com
-43903
- LIons Clubs International - Multi District 111 (Germany)
- Stefan Kaufmann
- portal&lions.de
-43904
- BitronikLab
- Milovan Čolić
- bitroniklab&gmail.com
-43905
- MelRok LLC
- GY Hanna
- gyhanna&melrok.com
-43906
- Tegile Systems, Inc.
- Pradipmaya Maharana
- pradip&tegile.com
-43907
- CloudThing Ltd.
- Francis Thomas
- fran&cloudthing.com
-43908
- Hawking Technology, Inc.
- Frank Lin
- Frank&hawkingtech.com
-43909
- Association PauLLA
- Simon RECHER
- president&paulla.asso.fr
-43910
- Pravala Inc.
- Jakub Schmidtke
- admin&pravala.com
-43911
- Thureon Limited
- Ross Vincent
- ross.vincent&thureon.com
-43912
- FUJI FURUKAWA ENGINEERING & CONSTRUCTION Co.Ltd.
- Satoshi Nagai
- nagai-satoshi&ffec.co.jp
-43913
- Zhejiang Science Electronic Technology Co., Ltd
- Changyu Liu
- cliu&zjsaisi.com
-43914
- The Administrative Committee of Jiangning Development Zone
- Buqiang Liu
- lbq&jndz.net
-43915
- Wallace Kroeker
- Wallace Kroeker
- wallacekroeker&rundletech.com
-43916
- Van Lanschot
- Niels de Kok
- wintel&vanlanschot.com
-43917
- SantéLink SAS
- Romain Tartière
- pen&santelink.fr
-43918
- Marina Del Rey Hospital
- Robbin Messier
- robbin.messier&marinahospital.com
-43919
- Neoteck Grup
- Mihai Cretu
- office&neoteck.ro
-43920
- Shandong Chaoyue Digital Control Electronics Co., Ltd.
- Qingshi Li
- liqsh&inspur.com
-43921
- CJSC STC SIMOS
- Tarasov Nikolai
- tarasov&simos.ru
-43922
- Equra Health Trust
- Piet Theron
- ptheron&equrahealth.co.za
-43923
- Ivan Leonardi
- Ivan Leonardi
- ivanleonardi&gmail.com
-43924
- Standard Transfer Specification Association
- Franco Pucci
- franco.p&mweb.co.za
-43925
- EastWind
- Andrew Pavlenko
- a.pavlenko&eastwind.ru
-43926
- CSI.NET, Inc.
- Daniel J. McGrail
- dmcgrail&csiworld.com
-43927
- ID.me, Inc.
- Tom Robison
- tom&id.me
-43928
- Vantage Communications
- Kevin Miller
- kmiller&vantage.com
-43929
- WellerNET
- Lucien Weller
- info&wellernet.ch
-43930
- Radlink Communications
- Ben Rampling
- ben.rampling&radlink.com.au
-43931
- IFB Institut für Bahntechnik GmbH
- Benjamin Tietz
- bt&bahntechnik.de
-43932
- Bluwireless Technology Limited
- Doug Turner
- doug.turner&bluwirelesstechnology.com
-43933
- Exploros inc.
- Nadav Hameiri
- nadav.hameiri&exploros.com
-43934
- Võrumaa Kutsehariduskeskus
- Allan Liblik
- ikt&vkhk.ee
-43935
- Keen IO
- Joshua Coats
- joshua&keen.io
-43936
- zhong yuan hua dian
- yong fei wang
- yfwang&zyhd.com.cn
-43937
- Tieto Signaling Solutions
- Sten-Ulrik Eriksson
- sten-ulrik.eriksson&tieto.com
-43938
- Memorable Images
- Tony Flury
- memorable.images&btinternet.com
-43939
- invliD
- Sebastian Brückner
- mail&invlid.com
-43940
- WISAG Dienstleistungsholding GmbH
- Fabian Sauer
- fabian.sauer&wisag.de
-43941
- Event Store LLP
- James Nugent
- james&geteventstore.com
-43942
- Luma Pictures
- Brent Hensarling
- sys&luma-pictures.com
-43943
- VOLTRONIC POWER TECHNOLOGY CORP.
- bluefish wei
- bluefish_wei&voltronicpower.com.cn
-43944
- VOLTRONIC POWER TECHNOLOGY CORP.
- bluefish wei
- bluefish_wei&voltronicpower.com.cn
-43945
- Telenia Software srl
- Roberto Grava
- rgrava&teleniasoftware.it
-43946
- Vanilla.no
- Ole Øyvind Hove
- oleo&vanilla.no
-43947
- LichtBlick SE
- Claus Sprave
- administration&lichtblick.de
-43948
- Taiwan Intelligent Home
- Cing-Yao Chen
- pichu&tih.tw
-43949
- Aceyus, Inc.
- Gerard Lilly
- gerard.lilly&aceyus.com
-43950
- NexxCom Wireless
- Michael Overholser
- michael.overholser&nexxcomwireless.com
-43951
- Denovo Ventures LLC
- Geoff Anderson
- ganderson&denovo-us.com
-43952
- LRAD Corporation
- jason wright
- jasonwright&lradx.com
-43953
- closerlook, inc.
- Ronney N Hunter
- rhunter&closerlook.com
-43954
- Seno Medical Instruments Inc.
- Bryan Clingman
- bclingman&senomedical.com
-43955
- Radiology Associates LLP
- Harry Mosser
- jmosser&xraydocs.com
-43956
- Total Restyling di Tola Rosa
- Corrado Mulas
- amministrazione&totalrestyling.it
-43957
- Multitone Electronic plc
- Rupert Johnson
- rupert.johnson&multitone.com
-43958
- University of Innsbruck
- Dirk Draheim
- dirk.draheim&uibk.ac.at
-43959
- Torraspapel SA
- DANIEL ESCORIZA
- daniel.escoriza&lecta.com
-43960
- SaF GmbH
- Thomas Schulte
- thomas.schulte&saf-kassel.de
-43961
- OKTAL, SAS
- Yves Gallot
- yves.gallot&oktal.fr
-43962
- Utena University of Applied Sciences
- Mantas Mikulėnas
- mantas&utenos-kolegija.lt
-43963
- Thruput Ltd
- Adam Cottrell
- adam.cottrell&thruput.co.uk
-43964
- Silpakorn University
- Sethalat Rodhetbhai
- sethalat&su.ac.th
-43965
- akraas.de
- Alexander Kraas
- iana-pen&akraas.de
-43966
- J4SYSTEMS SOLUCOES TECNOLOGICAS LTDA.
- ANTONISIO PRUCOLI MARTINS
- amartins&j4systems.com.br
-43967
- Manthorpe Ltd
- Daniel Sutton
- it&manthorpe.co.uk
-43968
- California University of Pennsylvania
- Eric Sabo
- Eric.Sabo&calu.edu
-43969
- NIPPON FIELD ENGINEERING Co.,Ltd.
- Hiroki Takeda
- h_takeda&nfe.co.jp
-43970
- Bächtold & Moor AG
- Stefan Thomet
- stefan.thomet&baechtoldmoor.ch
-43971
- Map59
- Steve Saunders
- steve1&map59.com
-43972
- DriveWorks Ltd
- Philip Stears
- philip&driveworks.co.uk
-43973
- Universidad Nacional de Córdoba - UNC
- Agustín Moyano
- agustin&psi.unc.edu.ar
-43974
- Elcoma
- Rafael Moraes
- rafael.moraes&elcoma.com.br
-43975
- DaedaFusion, LLC
- Paul Patrick
- Paul.Patrick&DaedaFusion.com
-43976
- University of the Philippines Cebu
- Gigi Carcallas
- gigiprg&gmail.com
-43977
- HomeSend SCRL
- Sébastien Lefevre
- sebastien.lefevre&homesend.com
-43978
- IKATA NETWORKS
- ASIER IBARGUEN
- aibarguen&ikatanetworks.com
-43979
- IMED Engineering s.r.o.
- Francesco Buonomo
- fbuonomo61&gmail.com
-43980
- Cerritos College
- Bruce Tanner
- tanner&cerritos.edu
-43981
- Partnet, Inc.
- Todd VanderVeen
- tdv&part.net
-43982
- Analytical Flavor Systems
- Evan Farrell
- evandev&gastrograph.com
-43983
- Colibri Technologies Inc.
- Amandeep Thind
- aman&colibritech.com
-43984
- MPL Technology Group
- Harry Podciborski
- harry.podciborski&mpltechnologygroup.com
-43985
- WebINTENSIVE Software
- David Bodnick
- iana&webintensive.com
-43986
- Privredna Banka Zagreb d. d.
- Tatjana Vujovic
- tatjana.vujovic&pbz.hr
-43987
- ALVA IT-Solutions
- Michael Grieswald
- info&alvaits.com
-43988
- Bichara Tecnologia Ltd
- Daniel Bichara
- daniel&bichara.com.br
-43989
- EEMRA Inc.
- Norman Katz
- norm&eemra.com
-43990
- Tropo, Inc.
- Kevin Chatow
- kchatow&tropo.com
-43991
- Elektrum, S.A.R.L
- Ghislain IRANYUMVA
- ghislain.iranyumva&gmail.com
-43992
- Power Assure, Inc
- Andrew Stickler
- andrew.stickler&powerassure.com
-43993
- Security First Corp.
- Rick Orsini
- rorsini&securityfirstcorp.com
-43994
- QuanTemplate Technologies Limited
- Marek Nelken
- marek.nelken&quantemplate.com
-43995
- Axentia Technologies AB
- Peter Rosin
- peda&axentia.se
-43996
- Bloomington Medical Services
- Lisa Suttle
- lsuttle&bloomingtonmedical.org
-43997
- Cellwize wireless technologies PTE LTD
- Yaacov Cohen
- yaacov&cellwize.com
-43998
- Computerwork GmbH
- Norbert Rehfeldt
- nrehfeldt&computerwork.de
-43999
- Agencija za komercijalnu djelatnost d.o.o.
- Leo Lokas
- Leo.Lokas&akd.hr
-44000
- PointSecure Technologies Inc
- Warren Kahle
- warren.kahle&pointsecure.com
-44001
- Shenzhen Envicool Technology Co., Ltd.
- Yudi Xie
- xieyd&envicool.com
-44002
- Gridwiz, Inc.
- Teddy Hyunwoong Kim
- teddy&gridwiz.com
-44003
- AutoGrid Systems
- Denis Sorokin
- it&auto-grid.com
-44004
- BYKING INC.
- Kengo Saki
- saki&byking.jp
-44005
- Wadi Chadli
- Wadi Chadli
- wadisupp&gmail.com
-44006
- Xunlei Networking Technologies,Ltd.
- Feng Huayang
- postmaster&xunlei.com
-44007
- Informatica Bancaria Trentina
- Ivan Leonardi
- evolution&ibttn.it
-44008
- SYSTECH
- Ahmed Murtabegovic
- ahmed.muratbegovic&systech.ba
-44009
- WebPKI.org
- Anders Rundgren
- anders.rundgren.net&gmail.com
-44010
- OadisCorp
- Stephen Rutledge
- oadis&outlook.com
-44011
- eMortgage Logic
- Bill Miller
- bmiller&emortgagelogic.com
-44012
- Tata advanced systems limited (TASL)
- Jay Singh
- jpsingh&tataadvancedsystems.com
-44013
- MPEC Technology Ltd
- Janos Vaczi
- janos.vaczi&mpec.co.uk
-44014
- Tyco Fire & Integrated Solutions (UK) Ltd.
- David Biggins
- dbiggins&tycoint.com
-44015
- DataInfo
- Michael Khomenko
- mvhoma&gmail.com
-44016
- Baikal Electronics
- Andrey Malafeev
- Andrey.Malafeev&baikalelectronics.ru
-44017
- SmartGuard, LLC
- Erik Amundson
- erik.amundson&smartguardllc.net
-44018
- exiztec
- Effi Olivkovitch
- effi&exiztec.com
-44019
- MAXIMA GROUP, UAB
- Rytis Lietuvaitis
- service.mgroup&maximagroup.eu
-44020
- Router Networking Ltd.
- Attila Domjan
- access&router.hu
-44021
- Alliance Resource Partners, L.P. (ARLP)
- Greg Tate
- ssladmin&arlp.com
-44022
- Advanced Publishing Technology
- Stephen Hansen
- shansen&advpubtech.com
-44023
- Karther Ingeniería
- Carlos D. Medina
- info&karther.es
-44024
- ConnectSolutions
- Matthew Greenberg
- matt.greenberg&connectsolutions.com
-44025
- Foobar Development LLC
- John Moore
- jmoore&foobardevelopment.com
-44026
- Smart4Aviation Group
- Kuba Zakrzewski
- kuba.zakrzewski&smart4aviation.aero
-44027
- Shop Airlines, Ltd.
- HARATAKE Kazunari
- kazunari.haratake&shopairlines.com
-44028
- Extreme-Access.com
- Kirk Reiten
- whois&extreme-access.com
-44029
- Nestlé Operational Services Worldwide SA
- Lukasz Kozubal
- lukasz.kozubal&nestle.com
-44030
- WooshCom Corporation
- B.W. Marler
- BWMarler&WooshCom.com
-44031
- TrustCor Systems S. de R.L.
- Rachel McPherson
- rachel&trustcor.ca
-44032
- Cloud Utility District
- Edward Buchwalter
- ed.buchwalter&cloudutilitydistrict.com
-44033
- Mobitech
- Alexey Cherviakov
- cto&mobitech.ru
-44034
- S Broker AG & Co. KG
- Christian Felsing
- hostmaster&sbroker.de
-44035
- Wojskowe Zaklady Lacznosci nr 1 S.A.
- Krzysztof Marciniak
- k.marciniak&wzl1.com.pl
-44036
- OPENNETEUROPE
- Rene Stoutjesdijk
- r.stoutjesdijk&openneteurope.eu
-44037
- Deželna banka Slovenije d. d.
- Dejan Tomažič
- dejan.tomazic&dbs.si
-44038
- Filmakademie Baden-Württemberg GmbH
- Götz Reinicke
- hekdubyuj&filmakademie.de
-44039
- Wind Mobile SA
- Michał Cheba
- Michal.Cheba&windmobile.pl
-44040
- IEI Integration Corp.
- Don Yu
- donyu&ieiworld.com
-44041
- Conntrack Technologies
- Frederic d'Huart
- info&conntrack.com
-44042
- Instituto Nacional de Tecnologias de Informacao e Comunicacao (INTIC)
- Sergio Mapsanganhe
- sergio.arnaldo&intic.gov.mz
-44043
- BSG-IT Kft.
- Tamas Bagyal
- info&bsg-it.hu
-44044
- SETCCE
- Jurij Zelic
- jurij.zelic&setcce.si
-44045
- Dos al Cubo
- Mariano Gonzalez
- sysadmin&dosalcubo.com
-44046
- POK Power of Knowledge
- Martin Paierl
- martin.paierl&spaixx.ch
-44047
- Schreiber Foods Inc
- Jon Simonsen
- security&schreiberfoods.com
-44048
- Instytut Hodowli i Aklimatyzacji Roslin - Panstwowy Instytut Badawczy
- Roman Osinski
- pki&ihar.edu.pl
-44049
- Cloud2Ground Technologies Div. Digital Multimedia, LLC
- John Hooks
- johnh&cloud2groundtechnologies.com
-44050
- Cryptografree (David Hoyle)
- David Hoyle
- david_j_hoyle&hotmail.com
-44051
- Sapporo Gakuin University
- Yasuhiro Hida
- postmaster&sgu.ac.jp
-44052
- Beijing Cloud Core Network Technology Co., Ltd.
- Wang Xuesong
- wangxuesong&cloudcore.cn
-44053
- ELFTECH Co., Ltd.
- Kwak, Ja-Seop
- jskwak&elftech.co.kr
-44054
- Hörmann KG Verkaufsgesellschaft
- Christof Sobek
- c.sobek.vkg&hoermann.de
-44055
- Identity And Access Management Technologies (IAM Tec)
- Jorge de Almeida Pinto
- JorgeDeAlmeidaPinto&live.com
-44056
- Aktif Mühendislik
- Emre Sami Süzer
- haluk.turan&aktif.net
-44057
- predata.org
- Lukas Mika
- webmaster&predata.org
-44058
- Avalanche Cloud Corporation
- Scott Kern
- scott&hydrantid.com
-44059
- School District #63 (Saanich)
- Ryan Tandy
- ldapadmin&sd63.bc.ca
-44060
- Iridium Communications Inc
- redouane laroussi
- redouane.laroussi&iridium.com
-44061
- Tippecanoe County Government
- Bradley Alexander
- bpalexander&tippecanoe.in.gov
-44062
- FlightStats Inc.
- Jason Denning
- it&flightstats.com
-44063
- ACCESS CO., LTD.
- Toshikazu Sakita
- toshikazu.sakita&access-company.com
-44064
- Quobyte Inc.
- Felix Hupfeld
- support&quobyte.com
-44065
- PROGSTAR
- Gustaw Mazurek
- techniczny&progstar.com.pl
-44066
- Fachschaftinformatik, WHS
- Robin Marchel
- infra&fachschaftinformatik.de
-44067
- McStas project
- Peter Willendrup
- pkwi&fysik.dtu.dk
-44068
- Major League Baseball Advanced Media
- Friedrich Seifts
- friedrich.seifts&mlb.com
-44069
- Groupe Citypassenger Inc
- Falempin Sven
- ovh&citypassenger.com
-44070
- IFTER
- Andrzej Nieweglowski
- andrzej_n&ifter.com.pl
-44071
- New Relic, Inc
- Kevin Wright
- kwright&newrelic.com
-44072
- Lee County Schools
- James Hunter
- rhunter&lee.k12.nc.us
-44073
- Data People Pty Ltd
- Paul Whitman
- paul&datapeople.com.au
-44074
- Servyou
- Jin Cheng
- jinc&servyou.com.cn
-44075
- Beijing Nan Bao Technology Co., Ltd.
- yuqing bai
- yuqing&baonanbao.com
-44076
- Landtag von Baden-Württemberg
- Ralph Geisser
- Ralph.Geisser&landtag-bw.de
-44077
- PST AG
- Peter Piehler
- info&pst.ag
-44078
- Taiwan Mobile Payment Co.
- Wei-Ching Su
- tsmrd01&mail.fisc.com.tw
-44079
- NPO SISTEMI S.p.A.
- Massimo Bianchi
- massimo.bianchi&nposistemi.it
-44080
- TNTNET
- Thorsten Seeger
- iana&tntnet.eu
-44081
- UNI LEADER INTERNATIONAL LTD
- Patricia Gisselle Alba
- p.g.alba&unilintl.com
-44082
- Beijing DTLT Technology CO., LTD.
- Jackie Deng
- jackie.deng&lqtech.com
-44083
- GuiLin HYGJ communication technology co., Ltd
- David Qin
- qinxingsheng&foxmail.com
-44084
- B. Metzler seel. Sohn & Co. KGaA
- Joerg Huber
- cet&metzler.com
-44085
- Display Quality Equipment, S.L
- Francisco Javier Perez Gomez
- fperez&dqebroadcast.com
-44086
- E-T-A Elektrotechnische Apparate GmbH
- Werner Ruempelein
- werner.ruempelein&e-t-a.de
-44087
- Hammond Consulting Services
- Wesley Hammond
- wes.hammond&hotmail.com
-44088
- CODESA - Grupo Empresarial de la Construcción, Santiago de Cuba, Cuba
- Sr. Hector Suarez Planas
- hector.suarez&codesa.co.cu
-44089
- ABit Consulting
- Tristan Marlow
- software&abit-wa.com.au
-44090
- CSG Global LLC
- Simon Rak
- srak&csggc.com
-44091
- Agilion GmbH
- Heiko Klose
- h.klose&agilion.de
-44092
- Sigel GmbH
- Jochen Mokry
- jochen.mokry&sigel.de
-44093
- Bell Ambulance, Inc.
- Wayne A Jurecki
- WJurecki&264Bell.com
-44094
- Aser Secury
- Donizete Junior
- donizete&aser.com.br
-44095
- Kagoshima University
- Koichi SHIMOZONO
- simozono&cc.kagoshima-u.ac.jp
-44096
- Shenzhen Zhong Yuan Tong Power Supply Technology Co., Ltd.
- Liwenbin
- liwenbin&robot-zyt.com
-44097
- db-central GmbH
- Dirk Rosomm
- it-support&db-central.com
-44098
- Patchman B.V.
- Ralph Broenink
- ralph&patchman.co
-44099
- CyberSeal LTD
- Tal Yechye
- taly&cyber-seal.net
-44100
- SLASH16
- Jean EYMERIT
- clark&slash16.org
-44101
- Radiss s.c.
- Robert Karpiński
- r.karpinski&olikon.com.pl
-44102
- GRC Advisory Solutions
- Robert Bordynuik
- rbordynuik&grcas.com
-44103
- Agora Con GmbH
- Horst Kapfenberger
- horst.kapfenberger&agoracon.at
-44104
- Groupe Alsatis
- Thomas Mignien
- thomas&groupe-alsatis.com
-44105
- BHS tabletop AG
- Georg Putz
- Putz.G&bhs-tabletop.de
-44106
- IMSWorkX, Inc.
- Bradley Wideman
- support&imsworkx.com
-44107
- Rivada Networks, LLC
- Vincent D'Onofrio
- registration&rivada.com
-44108
- Telecom Argentina S.A.
- Javier Mendez
- javier.mendez&proveedor.telecom.com.ar
-44109
- FAA National Airspace Systems
- Jim Laymon
- jim.laymon&faa.gov
-44110
- Nowa Era Sp. z o.o.
- Marcin Mazur
- admin&nowaera.pl
-44111
- Guangzhou Younghead Electronic Technology Co.,Ltd
- huang chuen
- huangchuen&younghead.com.cn
-44112
- Rabobank International
- Michel Tulen
- michel.tulen&rabobank.com
-44113
- Villeroy & Boch AG
- Thomas Ochs
- domainmaster&villeroy-boch.com
-44114
- RealVNC Ltd
- Bruce Bye
- standards&realvnc.com
-44115
- Height8 Technologies Pvt. Ltd
- Vishal Solanki
- vishal&height8tech.com
-44116
- RosBusinessConsulting, CJSC
- Anes Mukhametov
- noc&rbc.ru
-44117
- Cross Borders Trust Services OÜ
- Ott Sarv
- support&signwise.me
-44118
- Noakes
- Mark Fawcett
- mark.fawcett&noakesltd.co.uk
-44119
- Creighton
- Oliver Creighton
- iana&creighton.de
-44120
- Avairis, Inc.
- James McQuillan
- jam&Avairis.com
-44121
- HRK Soft Group Ltd.
- HamidReza Kadkhodaei
- hrkadkhodaei&gmail.com
-44122
- T17R (Martin Treusch von Buttlar)
- Martin Treusch von Buttlar
- iana-pen&m.t17r.de
-44123
- Business-intelligence of Oriental Nations Corporation, Ltd.
- zhangxiao
- zhangxiao&bonc.com.cn
-44124
- bit media e-solutions gmbh.
- Michael Holasek
- michael.holasek&bitmedia.cc
-44125
- Lanyo Networks Co., LTD.
- Robin Cui
- robincui25&gmail.com
-44126
- Lookhere Design
- Mike Davis
- info&lookhere.co.za
-44127
- Borderlight AB
- Sten Oscarsson
- support&borderlight.net
-44128
- MapGear
- W. Goedhart
- w.goedhart&mapgear.nl
-44129
- beijing yunzheng telecommunication technology Co, LTD
- guohongliang
- guohongliang&robustsync.com
-44130
- Michael Ghazi
- Michael Ghazi
- hftekk&gmail.com
-44131
- Nanjing DunLei Network Technology Co.,Ltd.
- Jianping Shi
- dlshijianping&gmail.com
-44132
- OpsVision Solutions
- David Ishmael
- dishmael&opsvision.com
-44133
- Commerce Technologies, Inc.
- David Pigliavento
- pen&commercehub.com
-44134
- Bless Information & Communication Inc.
- Bok Hyeon Lee
- bhlee&bless.co.kr
-44135
- Jonkoping Energi AB
- Rickard Höglund
- rickard.hoglund&jonkopingenergi.se
-44136
- Data Controls Inc.
- Keisuke Yamaguchi
- info&dci.jp
-44137
- KaiXiang
- xinbo yan
- xinbo.yan&kaixiangtech.com
-44138
- NodeForge
- Dave Franks
- noc&nodeforge.com
-44139
- Vizury Interactive Solutions Pvt. Ltd
- Udai Singh Mehra
- vizury.infracomm&vizury.com
-44140
- Rapp Management AG
- Michael Kretschmann
- iana-pen&rapp.ch
-44141
- Rosbank
- Vitaliy Glushnev
- vitaliy.glushnev&socgen.com
-44142
- Edidin Group, Inc
- Howard Edidin
- hedidin&edidingroup.net
-44143
- kazalo GmbH
- Daniel Menzel
- daniel.menzel&kazalo.de
-44144
- Symbolic IO
- Rakesh Patel
- snmp-admin&SymbolicIO.com
-44145
- Pokazz sp. z o.o.
- Piotr Czekala
- info&pokazz.com
-44146
- INSYS K.Bartkowski, P.Czekala sp.j.
- Piotr Czekala
- info&insys.pl
-44147
- Diagnostic Imaging Associates
- Curtis Blankenship
- curtis&diarads.net
-44148
- Nanjing Tsinghua Novel Network Technology Co.,Ltd.
- Han Chen
- bsnch&163.com
-44149
- KouXianglong
- KouXianglong
- 643166601&qq.com
-44150
- Intermarketing Oy
- Valtteri Konttinen
- valtteri.konttinen&intermarketing.fi
-44151
- Metrovision
- Jacques Charlier
- charlier&metrovision.fr
-44152
- Kambio Company
- Konstantin Yakovlev
- kostya&kambio.com
-44153
- DreamCode S.A.S.
- Jorge Jonathan Ortiz Vélez
- jonathan.ortiz&dreamcodesoft.com
-44154
- InfoStreet, Inc.
- Todd Paradise / Jeff Carlson
- noc&infostreet.com
-44155
- Sacred Heart Hospital of Allentown
- Julie Grumbein
- jgrumbei&SHH.ORG
-44156
- Computer Applications & Technical Services
- Ibrm Haymour
- ibrm&cats.com.jo
-44157
- Stadtverwaltung Duebendorf
- Robert Steiner
- robert.steiner&duebendorf.ch
-44158
- Mediterranean Broadband Infrastructure s.r.l.
- Roberto Ferrari
- rferrari&mbigroup.it
-44159
- DK-Technologies
- Michael Kristensen
- mk&dk-technologies.com
-44160
- Contra Costa Oncology
- Sara Cuff
- sarac&contracostaoncology.com
-44161
- Tri-County Hematology & Oncology Assoc.
- Ruth Settle
- rsettle&tricountyassoc.com
-44162
- CHAMPLAIN VALLEY HEMATOLOGY ONCOLOGY, PC
- MICHELLE PASCHALL
- MICHELLE.PASCHALL&VTMEDNET.ORG
-44163
- University of SS. Cyril and Methodius in Trnava
- Marian Hercek
- marian.hercek&ucm.sk
-44164
- OutSmart Power Systems LLC
- Uwe Meding
- umeding&outsmartinc.com
-44165
- Eduardo Miranda MD
- Elizabeth Facundo
- mbsbilling11&yahoo.com
-44166
- Andrews & Patel Associates, P.C
- Andrew Munchel
- amunchel&andrewspatel.com
-44167
- North Texas Gynecologic Oncology
- Elizabeth Stevens
- elizabeth.stevens&northtxgynonc.com
-44168
- NetCraft Australia Pty Ltd
- Geoffrey D. Bennett
- oid&netcraft.com.au
-44169
- FIDA INTERNATIONAL (S) PTE LTD
- STEIN MA
- stein_ma&prolink2u.com
-44170
- Decision Group Inc.
- Charles Chien
- charles&decision.com.tw
-44171
- RogSibAl LLC
- Maxim Alexandrov
- support&rogsibal.ru
-44172
- Hangzhou Kuaiyue Mobile Technologies, Ltd.
- ye daoliang
- ye.dl&kuaiyuetech.com
-44173
- InPhoSys Ltd
- Jacques Peacock
- jpeacock&callconnection.com
-44174
- Baptist Health Cancer Care & Blood Disorders
- Joshua Gold
- joshua.gold&bhsi.com
-44175
- Urology Cancer Center
- Gary Glissman
- gglissman&gucancer.com
-44176
- SOCIETE REUNIONNAISE DU RADIOTELEPHONE
- Christophe CAMON
- christophe.camon&srr.fr
-44177
- INSTITUTO DE HEMATOLOGIA Y ONCOLOGIA MEDICA, SRL
- ALFREDO J MARTINEZ
- amartinez&ihom-coi.com
-44178
- Cancer Clinic
- Leah Moore
- Leah&cancerclinic.com
-44179
- Daniel Stensnes
- Daniel Stensnes
- daniel&zift.no
-44180
- Oncology & Hematology Associates of West Broward, P.A.
- Jane Steinkamp
- jane.steinkamp&ohawb.com
-44181
- Chitra Venkatraman, M.D., P.A.
- Veronica Avent
- ronniesworld330&yahoo.com
-44182
- Associates in Oncology/Hematology
- Kimberly Roddy
- kroddy&aohmd.com
-44183
- Security Confidence Corporation
- Matthew Corney
- info&securityconfidence.com
-44184
- Ma-Ya IT Consult, e.U.
- Albin Mayer
- office&mayaitc.com
-44185
- Horizon Medical Group, Inc
- Michelle Hamm
- mhamm&horizonbioadvance.com
-44186
- Keats, Connelly & Associates, LLC
- Michael Connelly
- Admin&Keatsconnelly.com
-44187
- Zirtual Inc
- Joe Tyson
- joe.tyson&zirtual.com
-44188
- Cancer Center Oncology Medical Group
- Debbie Mason
- dmason&grossmontoncology.com
-44189
- Pacific Cancer Care
- Karin N. Roman
- kroman&pacificcancercare.com
-44190
- PostAR
- Bostjan Kezmah
- bostjan.kezmah&cepris.si
-44191
- CLG Enterprises
- Louie Gomes
- IANA&CLGEnterprises.net
-44192
- Remego Ltd.
- See Kok Sin
- koksin.see&remego.com
-44193
- Beijing DATAX Technology Co., Ltd.
- Xinhong Deng
- dengxh&champor.com.cn
-44194
- EnGenius Networks, Inc.
- Joe Liang
- joe.liang&senao.com
-44195
- Southern Oncology Specialists, PLLC
- Sarah Cowart
- scowart&southern-oncology.com
-44196
- SecureRF Corporation
- Joanne Kelleher
- jkelleher&securerf.com
-44197
- Piedmont Cancer Institute
- Penny DeMarco
- pdemarco&piedmontcancerinstitute.com
-44198
- Cancer and Hematology Centers of Western Michigan
- Brian Kyllonen
- bkyllonen&chcwm.com
-44199
- University of New South Wales
- Igor Grozdanov
- i.grozdanov&unsw.edu.au
-44200
- Markit Ltd
- John Kennedy
- john.kennedy&markit.com
-44201
- Micromation.Net
- Norberto Núñez
- micromation.net&gmail.com
-44202
- American Energy Partners, LP
- Jamie Nelson
- jamie.nelson&aep-lp.com
-44203
- Global 3R Ltd.
- Andrius Jankevicius
- pen&fostral.net
-44204
- Medical Oncology Associates of Long Island, PC
- Sandra Rosenberg/Ronnie Morales
- srosenberg&medoncli.com
-44205
- BandRich, Inc.
- Purine Chu
- purine_chu&bandrich.com
-44206
- Fujitsu Isotec Limited
- Masatoshi Sato
- masatoshi.sato&jp.fujitsu.com
-44207
- Proxee Solutions
- Louis-Pierre Morin
- lpmorin&proxee.ca
-44208
- Telecom Personal Paraguay
- Norberto Isaac Núñez
- Norberto.Nunez&personal.com.py
-44209
- fsis GmbH
- Fermin Sanchez
- info&fsis.ch
-44210
- Robadey Network
- Nicolas Robadey
- nicolas&robadey.net
-44211
- GGR Communications Ltd
- Ed Collen
- ed.collen&ggr.net
-44212
- Oncology Hematology Care of Connecticut, LLC
- Nora Dias
- noraoncology&gmail.com
-44213
- Happy Gears Inc
- Vadim Kurland
- info&happygears.net
-44214
- Erie Indemnity Company
- Jamison Budacki
- jamison.budacki&erieinsurance.com
-44215
- Arsslensoft
- Arsslen Idadi
- arsslens021&gmail.com
-44216
- FUYOH VIDEO INDUSTRY CO.,LTD.
- Shinya Mochizuki
- mochizuki&fva.co.jp
-44217
- FiberRoad
- Lifeng Zhang
- lifeng_zhang&fiberroad.com.cn
-44218
- Buffalo Boots GmbH
- Michael Conradi
- hostmaster&buffalo.de
-44219
- Beijing Raytight Technologies, Co
- Chao Gao
- gaochao&raytight.com
-44220
- Netzin Technology Corporation,.Ltd.
- Jiun-Jie.Chang
- jackie.chang&netzintech.com
-44221
- Primary Oncology Network, PLLC
- Tonia Flohr
- toniaflohr&ponwv.com
-44222
- Fox Valley Hematology Oncology/Illinois Cancer Specialists
- AKHILA YESHWANT
- akhilay&yahoo.com
-44223
- GE AVIC Civil Avionics Systems Company Limited
- Andrew Hodgman
- andrew.hodgman&aviagesystems.com
-44224
- MATTHEW TAUB MD PA
- INGRID SANTOS
- optimumoncology&gmail.com
-44225
- Mr.yassine hamraoui
- yassine hamraoui
- yassinehamraoui2012&gmail.com
-44226
- sonoran hematology oncology
- aimee dundas
- aimeedundas192&yahoo.com
-44227
- Pulse Secure
- Dmitry Teleganov
- dt-iana&ux4.net
-44228
- port GmbH
- Marcus Tangermann
- mt&port.de
-44229
- Wanco Inc
- Joseph Chen
- joe.chen&wanco.com
-44230
- Bundesamt für Seeschifffahrt und Hydrographie
- Jörg Gerdes
- joerg.gerdes&bsh.de
-44231
- Queens Medical Associates, PC
- Sadiaka Joarder
- sjoarder&queensmedical.com
-44232
- Ing. Büro Mann
- Dipl.-Ing. U. Mann
- oid.mann&bklev.de
-44233
- Balluff GmbH
- Markus Rentschler
- Markus.Rentschler&balluff.de
-44234
- VIT S.A.
- WALTER SUAREZ
- walter.suarezm&gmail.com
-44235
- Ospero Pty. Ltd.
- Jonathan Kerkin
- jkerkin&ospero.com
-44236
- Compassionate Oncology Medical Group
- Joanne Ferri
- joanne&compassionateoncology.org
-44237
- Allegro Packets GmbH
- Klaus Degner
- iana&allegro-packets.com
-44238
- Esense Embeded
- Bojan Cupic
- bojancupic&gmail.com
-44239
- Centro de cancer de la mujer de Puerto Rico
- Juan C Prieto
- centrocancermujer&gmail.com
-44240
- Rocket Internet AG
- Alessandro Avagliano
- alessandro.avagliano&rocket-internet.de
-44241
- LotusCom Inc.
- Houman Sadeghi Kaji
- h.sadeghikaji&lotuscomsys.com
-44242
- Radomir LLC
- Roman Zolotov
- zolotov&radomir.su
-44243
- NSTEK Inc.
- KyungTae Kim
- mrlord7&nstek.com
-44244
- Gardens Regional Hospital and Medical Center, Inc.
- Anthony Carrasco
- acarrasco&tcrmc.org
-44245
- Fazion Sistemas Ltda
- Moacyr Franco Neto
- moacyr&fazion.com.br
-44246
- St. Louis Cancer Care, LLC
- Carol Riley
- caroljriley&hotmail.com
-44247
- CLEAR SRL
- Marcos Vicentini
- sistemas&clear.com.ar
-44248
- Simula Research Laboratory
- Nornet Ito
- nornet-ito&simula.no
-44249
- Florida Cancer Specialists & Research Institute
- Donna L. Irving
- dirving&flcancer.com
-44250
- Coastal Integrative Cancer Care
- Gail Kissinger
- gkissinger&ohmacc.com
-44251
- IMT Services Corp
- Andrew Bent
- andy&insuremytrip.com
-44252
- Iceotope
- Patrick Regnouf
- Patrick.Regnouf&iceotope.com
-44253
- HANKYUNG I-NET
- Kim Tae Je
- ktj&hkinet.co.kr
-44254
- LuckyBulldozer
- Ben Torkington
- ben&luckybulldozer.com
-44255
- Medical Oncology Associates of San Diego
- Joyce Johnston
- jjohnston&oncologysandiego.com
-44256
- Kootenai Cancer Center
- Johanna Bruning
- jbruning&kh.org
-44257
- Teraoka Weigh-System Pte Ltd
- Desmond Lye
- desmond&teraoka.com.sg
-44258
- Hello World Ltd
- Eric Yan
- eric&hlwd.uk
-44259
- Xstream Flow (Pty) Ltd
- Andrew van Tonder
- andrew.vantonder&xstreamflow.com
-44260
- BALLY WULFF Games & Entertainment GmbH
- Henry Gutknecht
- it&bally-wulff.de
-44261
- CARBOGEN AMCIS AG
- Ryan Griffiths
- ryan.griffiths&carbogen-amcis.com
-44262
- BJ's Wholesale Club
- Will Dalton
- wdalton&bjs.com
-44263
- Cancer Center of Sarasota Manatee
- Shanthy Gadam
- sgadam&cancersarasota.com
-44264
- SurfCrew, Inc.
- Todd Ignasiak
- todd&surfcrew.com
-44265
- Grotex OOO
- Dmitriy Bubnov
- iana-pen&luna-78.com
-44266
- Luna-78 LLC
- Dmitriy Bubnov
- iana-pen&luna-78.com
-44267
- Hematology & Oncology Associates of Alabama, LLC
- Vaughn Skinner
- vskinner&hoaallc.com
-44268
- DynaScan Technology, Inc.
- Asson Ko
- asson&dynascan.com.tw
-44269
- Beamly
- Neil Saunders
- neil&beamly.com
-44270
- Barnardsoft Co., Ltd.
- Masaaki Matsumi
- matsumi.masaaki&barnardsoft.co.jp
-44271
- Nuage Networks
- Diego Garcia del Rio
- diego&nuagenetworks.net
-44272
- PRO-PflegeBeratung
- Corinna Maynhardt
- kontakt&pro-pflegeberatung.de
-44273
- Gernert-Net
- Björn Gernert
- mail&gernert-net.de
-44274
- Trit Networks LLC
- Dima Dorfman
- iana-pen&trit.net
-44275
- Illumio, Inc.
- Bryan Pelham
- bryan.pelham&illumio.com
-44276
- TANABIKI Inc.
- Noriaki Tanabiki
- n-tanabiki&tanabiki.com
-44277
- Mike Tennant
- Mike Tennant
- mtennant&bigted.net
-44278
- ShangHai RealCom Communication Technology Co.,Ltd.
- Li Yan
- tech&realcom.com.cn
-44279
- ZheJiang University PRESS
- Tong HuaZhang
- tonghz&zju.edu.cn
-44280
- F E T Elettronica snc
- Marco Tani
- info&fet.it
-44281
- Blood & Marrow Transplant Group of Georgia
- Robin Cullen
- rcullen&bmtga.com
-44282
- Microware Computing & Consulting Pvt Ltd
- Sanjay Sangal
- sanjay&sanjaysangal.com
-44283
- Appnovation Technologies Inc
- Will Sheldon
- will&appnovation.com
-44284
- Time4 Systems Ltd.
- Kenneth Hann
- ken&time4systems.com
-44285
- New England Cancer Specialists
- James Reddy
- reddyj&newecs.org
-44286
- Working Distributors, Inc.
- Ken Mautz
- it&workingdistributors.com
-44287
- JConcept Open Solutions
- OLIVIER SMADJA
- olivier&jconcept.com.br
-44288
- greaty
- xiaoyong.huang
- xiaoyong.huang&greatytech.com
-44289
- Beijing Cyber Greatwall Information Technology Co., Ltd.
- Liu Junfeng
- info&cybergreatwall.com
-44290
- Sajeev Anand, M.D., LLC
- Robin Williams
- rrwilliams726&gmail.com
-44291
- New London Cancer Center
- Mithlesh Govil
- mgovil&gmail.com
-44292
- emplus Networks Inc.
- Stan H.Y, Liu
- stan.liu&senao.com
-44293
- Unwired Networks GmbH
- Alexander Szlezak
- devops&unwired.at
-44294
- Quanta-Computing
- Matthieu ROSINSKI
- sysadmin&quanta-computing.com
-44295
- SSE - Stuellein Software Engineering
- Christian Stuellein
- christian.stuellein&sse-engineering.de
-44296
- HelmetHub
- James Griffith
- jgriffith&helmet-hub.com
-44297
- Alliance Cancer Specialists, PC
- Susan Lindner
- bhoma130&gmail.com
-44298
- CogVis GmbH
- Jürgen Konetschnig
- konetschnig&cogvis.at
-44299
- I.M. Dauntless
- Ramona Trevino
- ramonatrevino&sbcglobal.net
-44300
- Cyber1st R&D Ltd.
- Jonathan Spurgin
- jonathan.spurgin&cyber1st.co.uk
-44301
- Alexander Maier GmbH
- Alexander Maier
- alexander.maier&maier-gst.de
-44302
- Clearview Cancer Institute
- Michelle Brown, Chief Operations Officer
- mbrown&ccihsv.com
-44303
- Netz-AG Emil-Figgestraße 15-39
- Fabian Reiners
- fabian.reiners&wh-nef.de
-44304
- HEMATOLOGY ONCOLOGY LIFE CENTER LLC
- JULIE BEENE
- JBEENE&HOLCMED.COM
-44305
- Oncology Hematology Associates of Springfield, MD, PC
- Amber Pierce
- amberpierce22&gmail.com
-44306
- CAROLINA ONCOLOGY ASSOCIATES, P.A.
- EMILY SHEPHERD
- ESHEPHERD&CAROLINAONCOLOGY.COM
-44307
- LP Technologies, Inc.
- Micky Mukalay
- info&lptech.com
-44308
- Centripetal Networks, Inc.
- Justin Rogers
- admin&centripetalnetworks.com
-44309
- Center for Cancer Care
- Candace Hayes
- chayes&suburban-hemonc.com
-44310
- SiteSpect, Inc.
- Simon Tetelbaum
- stetelbaum&sitespect.com
-44311
- Budapesti Fazekas Mihaly Gyakorlo Altalanos Iskola es Gimnazium
- Herczeg Zsolt
- herczeg.zsolt&fazekas.hu
-44312
- Amundson Partners, Inc.
- Mark Amundson PharmD
- mpa&cableone.net
-44313
- Johan Grip (ogun.org)
- Johan Grip
- ogun&ogun.org
-44314
- Democritus University of Thrace
- Ioannis Alexiadis
- noc&duth.gr
-44315
- Guido Di Fazio
- Guido Di Fazio
- g.difazio&mclink.it
-44316
- Softneta UAB
- Tomas Dumbliauskas
- info&softneta.com
-44317
- Kanton Zug (www.zg.ch)
- Gisler Rudolf
- rudolf.gisler&zg.ch
-44318
- PT. Telekomunikasi Indonesia
- Mohamad Fajar Aditya Masyhur
- aditya_mh&telkom.co.id
-44319
- Oklahoma Cancer Specialists and Research Institute
- John Oborn
- John.Oborn&ocsri.org
-44320
- Lake Norman Hematology Oncology
- Betty Adams
- betty&lakenormanoncology.com
-44321
- TrilioData, Inc
- Muralidhar Balcha
- murali.balcha&triliodata.com
-44322
- Shenzhen Mailian Electronics Co.,Ltd
- luo shuang shuang
- 157641738&qq.com
-44323
- SmartRG, Inc.
- David La Cagnina
- david.lacagnina&smartrg.com
-44324
- EstiNet Technologies Inc.
- Fuh-Jang Lin
- lfj&estinet.com
-44325
- TangoME, Inc.
- Zach Carlson
- chefs&tango.me
-44326
- Kwartzlab Makerspace
- Ben Brown
- admin&kwartzlab.ca
-44327
- Ardexa Pty Ltd
- David Mohr
- david.mohr&ardexa.com
-44328
- tmon
- Ingo Flaschberger
- iana&tmon.at
-44329
- Elektronik Art
- Pawel Sienczak
- pawel&elektronikart.pl
-44330
- Xeneta AS
- Pål Eivind Jacobsen Nes
- pal.nes&xeneta.com
-44331
- ZHAW Zürcher Hochschule für Angewandte Wissenschaften
- Stephan Neuhaus
- stephan.neuhaus&zhaw.ch
-44332
- Wallarm, Inc
- Alexander Golovko
- admin&wallarm.com
-44333
- artdecode.de
- Stephan Neuhaus
- sten&artdecode.de
-44334
- Saint Vincent Physician Services, Inc.
- Jennifer Woodbury
- Jennifer.woodbury&stvincenthospital.com
-44335
- Waverules LLC
- John Handley
- jhandley&waverules.com
-44336
- Oncology Hematology Associates of Saginaw Valley, P.C.
- Jennifer Metevia
- jmetevia&jbartnik.com
-44337
- ONCOLOGY ASSOCIATES OF MONROE
- KRISTI HOLTON
- kholtonoa&yahoo.com
-44338
- Low Country Cancer Care Associates, P.C.
- Jim Tucker
- jtucker&lcccsav.com
-44339
- Low Country Cancer Care Associates, P.C.
- Jim Tucker
- jtucker&lcccsav.com
-44340
- Mid-Illinois Hematology & Oncology Associates, Ltd.
- Sarah Whelan
- sarah.whelan&mihoaonline.org
-44341
- GreatCall, Inc.
- Laurent Gousset
- gcitsyseng&greatcall.com
-44342
- Regional Cancer Care Associates LLC
- Amanda K. Boyer
- aboyer&regionalcancercare.org
-44343
- Jackson Oncology Associates, PLLC
- Ann Huff
- joncology&jacksononcology.com
-44344
- CANCER CENTER ASSOCIATES
- LISA MCGILLEM
- LMCGILLEM&CANCERCENTERASSOCIATES.COM
-44345
- LLC, Sintek
- Artem Svechnikov
- svechnikov.artem&sintek-nn.ru
-44346
- JSC "Promstroikontrakt"
- Dmitry Valiavsky
- admin&psk-holding.ru
-44347
- IK SATPROF LLC
- Dmitrii Zubchenko
- dmitry.zubchenko&iksatprof.ru
-44348
- NIL KSA
- Michel Beloshitsky
- mbeloshitsky&nilksa.ru
-44349
- Highland Clinic, APMC
- Renee' DeMoss
- rdemoss&highlandclinic.com
-44350
- Cancer Care Centers of Brevard
- Gail Erentreich
- gerentreich&hoacb.com
-44351
- greglearns (Greg Edwards)
- Greg Edwards
- greg&greglearns.com
-44352
- North Shore Hematology & Oncology Associates P.C.
- ToniAnn Genna
- tgenna&nshoa.com
-44353
- Cancer Center of Central Connecticut, LLC
- Susan Hansen
- shh6219316&sbcglobal.net
-44354
- Grace Hematology and Oncology
- Amanda Strange
- gracehematology01&yahoo.com
-44355
- Oncology Hematology Associates of Northern PA, PC
- Carrie Frederick
- cbfrederick&ohanp.com
-44356
- Trust Medical and Oncology Center
- Alvaro Talavera
- talaveramd&yahoo.com
-44357
- Birchbox Inc.
- Jereme Corrado
- hostmaster&birchbox.com
-44358
- Nashat Y Gabrail, MD Inc
- Shelly Rentsch
- skr1105&aol.com
-44359
- Frederick P. Smith, MD PC
- Mary McNeal
- mmcneal&cchealthcare.net
-44360
- EAST SIDE ONCOLOGY ASSOCIATES, PLLC
- VALERIE VALLEJO
- VAL629&AOL.COM
-44361
- Dabas Cancer Institute, P.A.
- Robin Lenz
- rlenz930&gmail.com
-44362
- Universidade Federal de Uberlandia
- Divisao de Redes
- dr&cti.ufu.br
-44363
- CloudFlare
- Noah Garrett Wallach
- noc&cloudflare.com
-44364
- AVEA
- Huseyin Firat Kose
- huseyinfirat.kose&avea.com.tr
-44365
- DR. CHRISTOPHER T. SOPRENUK, M.D. P.A.
- BETH SOPRENUK
- zkstevens&hotmail.com
-44366
- Essex Oncology of North Jersey PA
- Denise Johnstone
- dj&essexoncology.com
-44367
- Highland Solutions
- Stu Heiss
- sheiss&highlandsolutions.com
-44368
- Unmukti Technology Private Limited
- Nishant Sharma
- nishant&unmukti.in
-44369
- NeoTerra Systems Inc.
- Lam Nguyen
- lam.nguyen&neoterra.ca
-44370
- Utelisys Communications B.V.
- Michiel Timmers
- mtimmers&utelisys.com
-44371
- Jay Steel
- Jason Mallory
- steelurban&yahoo.com
-44372
- Valley Medical Oncology Consultants, A Medical Group, A Professional Corp
- Arose Bey-Molina
- abeymolina&vmoc.com
-44373
- Regional Cancer Care Associates- Central Jersey Division
- Eileen Peng
- epeng&regionalcancercare.org
-44374
- New England Hematology Oncology Associatesd
- Amy Carlton
- acarlton&neho.org
-44375
- Eastern Long Island Hematology Oncology
- Wayne Burgess
- wburgess&optonline.net
-44376
- Opus One Winery, LLC
- Chris Dillon
- noc&opusonewinery.com
-44377
- Hudson Hematology Oncology
- Barry Downer
- barry24361838&yahoo.com
-44378
- Stephan Gogler
- Stephan Gogler
- pen&gogler.at
-44379
- Meanwave GmbH
- Heiko Vachek
- Heiko&Vachek.de
-44380
- Desert Hematology Oncology Medical Group Inc.
- Rita Flores
- ritadho&aol.com
-44381
- Medical Oncology Associates, PS
- Sherry Cleveland
- clevels&nwrm.com
-44382
- Intec Pacific Pty. Ltd.
- Spiro Asarloglou
- spiro&intecpacific.com.au
-44383
- Ascent Co.,Ltd
- Tsutomu Asami
- t.asami&ascent-jp.com
-44384
- Harbour IT Pty Ltd
- Brendan Thompson
- ianaregistry&harbourit.com.au
-44385
- BONSONINFO SYSTEM CO.,LTD
- haobo.wang
- wanghb&bonsoninfo.com
-44386
- 3 Gen d.o.o.
- Henrik Udovc
- henrik.udovc&3gen.si
-44387
- Conway Hematology Oncology
- Priscilla Klosky
- pklosky&conwaycorp.net
-44388
- Medical and Surgical Clinic of Irving
- Dorothy Ellis
- dellis&mscitx.com
-44389
- Max Planck Institute for Metabolism Research
- Dr. Stefan Vollmar
- vollmar&nf.mpg.de
-44390
- Skootr.com
- Scott Stephens
- scott&skootr.com
-44391
- Polytechnic West
- Nat Hansen
- icthelpdesk&polytechnic.wa.edu.au
-44392
- Xperterra
- Igor Sirkovich
- info&xperterra.com
-44393
- Pinellas Hematology &Oncology PA.
- Iliana Bolton
- iboltonhemonc&gmail.com
-44394
- Province Nord - Nouvelle Calédonie
- DSI Province Nord (Bernard Sautet)
- pen_dsi_provincenord&province-nord.nc
-44395
- Pierre Decazes
- Pierre Decazes
- pierre.decazes&gmail.com
-44396
- Hilberling GmbH
- Stefan Schmahl
- sschmahl&hilberling.de
-44397
- OTP Bank Plc.
- David Attila
- david.attila&otpbank.hu
-44398
- SAITEL Telecomunicazioni s.r.l.
- Carlo Banfi
- support&saitel.it
-44399
- Masgalor
- Julian Röder
- registration&masgalor.de
-44400
- Eagle Investment Systems LLC
- James Baker
- jbaker&eagleinvsys.com
-44401
- Meeting House Lane Medical Practice PC
- Michelle Mullin
- mmullin&southamptonhospital.org
-44402
- Singh & Arora Oncology/Hematology, P.C.
- Heather Decker
- pheather76&hotmail.com
-44403
- STUART ONCOLOGY ASSOCIATES
- JAIMINI PATEL
- pate7773&comcast.net
-44404
- Climate-control NN, Ltd.
- Marat Cheremhin
- marcher&list.ru
-44405
- Shenzhen Wintop Photoelectric Technology Co., Ltd
- Jeff Ji
- jeff&wintoptec.com
-44406
- SMT S.A.
- Tomasz Gąska
- tomasz.gaska&smtsa.pl
-44407
- Vidder, Inc.
- Scott Shackleton
- operations&vidder.com
-44408
- Ventus Technologies S.L.
- Joan Balagueró Valls
- joan.balaguero&ventusproxy.com
-44409
- OSNA Research
- Dr. Michael Schukat
- michael.schukat&osna-solutions.com
-44410
- Versilis Inc
- Jean-Francois Menier
- jfmenier&versilis.com
-44411
- Universidad Mariano Gálvez de Guatemala
- Juan Manuel Lemus
- jlemus&umg.edu.gt
-44412
- Markus Froehlich
- Markus Froehlich
- pen.iana&marfr.de
-44413
- Studievereniging A-Eskwadraat
- Jitse Klomp
- sysop&a-eskwadraat.nl
-44414
- Aldazar LLC
- David Marques
- Bills&aldazar.com
-44415
- Mikeji d.o.o.
- Miha PIhler
- miha.pihler&telnet.si
-44416
- China Electronics Technology Group Corporation No.7 Research Institute
- kinglee
- kinglee_gci&139.com
-44417
- Lazy Mountain Computers
- Greg Jetter
- greg&lazymountain.com
-44418
- Shenzhen Haipengxin Electronics Co., Ltd.
- Ms.Coco Zhou
- cocozhou&hpxin.com
-44419
- South County Hematology Oncology
- Elena Lankford
- elankford.scho&yahoo.com
-44420
- Fairfax Media
- Joe McNamara
- jmcnamara&fairfaxmedia.com.au
-44421
- Shen zhen huaptec co.,ltd
- xieyanlin
- 2580557001&qq.com
-44422
- CloudGate Systems India Pvt Ltd
- Abhik Biswas
- abhik&cloudgate.in
-44423
- Frederick G. Barr, MD
- Mary Mcneal
- mmcneal&cchealthcare.net
-44424
- Nelson G.N. Kalil, MD PC
- Mary McNeal
- mmcneal&cchealthcare.net
-44425
- goldenTech SA
- Matteo Risoldi
- mar&goldentech.ch
-44426
- ek-soft GmbH
- Frank Moegle
- moegle&ek-soft.de
-44427
- Hills Road Sixth Form College
- Matthew Benstead
- mbenstead&hillsroad.ac.uk
-44428
- ZAO Severo-Zapad
- Valeriy Bogatov
- admins&sev-zap.ru
-44429
- Great Lakes Cancer Management Specialists
- Betty Wiknich
- Betty.Wiknich&stjohn.org
-44430
- AGF Management Limited
- Russell DPaiva
- network.support&agf.com
-44431
- Panhandle Cancer Center
- Christi Richardson/Regina Parker
- chr&malamud1.comcastbiz.net
-44432
- CanDeal
- Igor Peonte
- ipeonte&candeal.com
-44433
- Tri-Tech Manufacturing, Inc
- Alf Riisnaes
- Alf&TTMi.us.com
-44434
- Junta de Comunidades de Castilla-La Mancha
- José Illescas Pérez
- jose.illescas&castillalamancha.es
-44435
- Staatliches Berufsschulzentrum Hermsdorf
- Wolfram Pienkoss
- wp&bszh.de
-44436
- IdentKey Sicherheitsverbund (Ithamar Garbe)
- Ithamar Garbe
- info&identkey.de
-44437
- CommBox Pty. Ltd.
- Robert Gaunt
- support&commbox.com.au
-44438
- Thomas A. York
- Thomas A. York
- thomas.alan.york&gmail.com
-44439
- FOP Kagarlickij D.V.
- Kagarlickij Dmitriy
- dmitriy&kagarlickij.com
-44440
- INFUSION ASSOCIATES, PC
- JAN CARRICK
- janc&infusionassociates.com
-44441
- Radford University
- Bill Abplanalp
- itsecurity&radford.edu
-44442
- iSysBus
- Ithamar Garbe
- info&isysbus.org
-44443
- Stelo - Companhia Brasileira de Pag Eletr
- Vitor Carvalho
- vitor_it7&stelo.com.br
-44444
- iWelcome B.V.
- Jordi Clement
- jordi.clement&iwelcome.com
-44445
- Corrado Mulas Enterprise Root CA
- Corrado Mulas
- corradomulas&virgilio.it
-44446
- GovComm, Inc.
- Svetoslav Veltchev
- sveltchev&govcomm.us
-44447
- Fairchild Medical Center
- Michael Madden
- mmadden&fairchildmed.org
-44448
- Apica
- Niclas Tollgard
- operations&apicasystem.com
-44449
- Xiamen University
- Chen Zhiwei
- chenzhiwei&xmu.edu.cn
-44450
- Synapsys Solutions Ltd.
- Andy Devine
- andy.devine&synapsys-solutions.com
-44451
- Schessner IT-Consulting
- Wolf Schessner
- registry&schessner-it.de
-44452
- Evgeny Artemyev (XART)
- Evgeny Artemyev
- eart&live.ru
-44453
- Arizona Oncology/Saguaro Cancer Center
- Tammy Riley
- tammy.riley&usoncology.com
-44454
- Globalstar, Inc.
- Sandra Durbin
- sandra.durbin&globalstar.com
-44455
- CHINA HUALU GROUP CO., LTD
- Che Yongjin
- cheyj&hualu.com.cn
-44456
- tuxwave.net
- Sebastian Kricner
- sebastian.kricner&tuxwave.net
-44457
- Biamp Systems
- Jeff Sondermeyer
- jeff.sondermeyer&biamp.com
-44458
- IT WATANA COMPANY
- Jaruwat Boonmee
- jaruwat&itwatana.com
-44459
- Bluepunkt Networks, Inc.
- Ronnie Hung
- ronnie&bluepunkt.com
-44460
- Alumina Elit 2003 Ltd.
- Dobrin Dobrev
- d.dobrev&aluminaelit.com
-44461
- Rainus
- Song-on Lee
- sg&rainus.co.kr
-44462
- K2E
- Jin Kim
- jin&tekpoint.com
-44463
- BTS TECH S.r.l.
- Fabio Cateno Burgarello
- btstech&hotmail.it
-44464
- Edgeguide AB
- Mats Sjöström
- mats.sjostrom&edgeguide.com
-44465
- Cataleya Pte Ltd
- Miguel Lopes
- m.lopes&cataleya.com
-44466
- FOP Tumakha Yuriy Volodymyrovych
- Yuriy Tumakha
- tumakha&gmail.com
-44467
- Sigmacom Broadcast
- Stelios Kirkalas
- skirkalas&sigmacom.gr
-44468
- Streamline, Lda.
- Francisco Maia
- famaia&streamline.pt
-44469
- ARPA2
- Rick van Rein
- rick&openfortress.nl
-44470
- Intermediate Engineering GmbH
- Elio Wahlen
- e.wahlen&im-en.com
-44471
- Kryptos Security
- Michael Copeland
- michael&kryptos-security.com
-44472
- BAMBR Information, Inc.
- Joe Bambr
- joe&bambr.info
-44473
- CSTx GmbH
- Michael Rother
- office&cstx.de
-44474
- Murata Manufacturing Co.,Ltd
- Ryuhei Nakai
- r_nakai&murata.com
-44475
- init.at informationstechnologie GmbH
- Georg Bahlon
- bahlon&init.at
-44476
- Middlesex Oncology
- MArtha Conner
- middlesexoncology&msn.com
-44477
- Washington Metropolitan Area Transit Authority
- John Michie
- jfmichie&wmata.com
-44478
- BIN-Control GmbH
- Stephan Henseler
- helpdesk&bin-control.com
-44479
- Gikos Networks
- Kranium Mendoza
- schema&gikos.net
-44480
- Beijing Liuhe Intelligence Technology Ltd.
- Sui Pingli
- suipingli&liuheit.com
-44481
- CentrAlert
- Jeff Whattam
- support&centralert.com
-44482
- Oncare-Hawaii Hematology Oncology
- Rana Sallakian
- ranas&lahomg.com
-44483
- Los Angeles Cancer Network
- Rana Sallakian
- ranas&lahomg.com
-44484
- YIXUN Technology Co., Ltd.
- PengChong
- pengchong&champor.com.cn
-44485
- WIBU-SYSTEMS AG
- Wolfgang Voelker
- wolfgang.voelker&wibu.com
-44486
- Diabolocom
- Vincent Batoufflet
- admin&dabcnet.net
-44487
- Ineos Manufacturing Koeln GmbH
- Andreas Woithon
- andreas.woithon&ineos.com
-44488
- Reichle & De-Massari AG
- Reinhard Burkert
- reinhard.burkert&rdm.com
-44489
- possybility
- Sybren Apiecionek
- ca&possybility.com
-44490
- Beward R&D Co., Ltd
- Oleg Beketov
- beketov&beward.ru
-44491
- Cherry Creek Mortgage Co., Inc.
- Todd Keller
- tkeller&ccmclending.com
-44492
- MEDIAHOUND, INC.
- WESLEY BURGER
- WESLEY&MEDIAHOUND.COM
-44493
- STARMON s.r.o.
- Jiri Holinger
- holinger&starmon.cz
-44494
- TrustAsia Technologies, Inc.
- Edwin Zhai
- edwin.zhai&trustasia.com
-44495
- PAIO co.,ltd.
- KyuWoo Choi
- apple&paio.co.kr
-44496
- Bender GmbH & Co. KG
- Jan Hofmann
- jan.hofmann&bender-de.com
-44497
- CHINA AERONAUTICAL RADIO ELECTRONICS RESEARCH INSTITUTE
- SONG QING
- song_qing&careri.com
-44498
- IT Solutions Roland Breitschaft
- Roland Breitschaft
- info&x-company.de
-44499
- BLOOD AND CANCER CENTER OF EAST TEXAS
- LISA GROSS
- lgross&bccet.com
-44500
- CHRONOTRACK SYSTEMS CORP.
- Robert Lyons
- blyons&chronotrack.com
-44501
- NuLEDs, Inc.
- Chris Isaacson
- chris&nuleds.com
-44502
- SmartCast GmbH
- Matthias Meyer
- meyer&smartcast.de
-44503
- MDLIVE Inc.
- Matt Thompson
- mthompson&mdlive.com
-44504
- Evilcats Organization
- Jonathan Pearsall
- jonathan&evilcats.org
-44505
- Ideum Group, Inc
- Mohamad EL-Bawab
- mohamad&ideumgroup.com
-44506
- Consulta Network Security AB
- Daniel Azzarri
- daniel.azzarri&consulta.se
-44507
- Northwest Alabama Cancer Center, PC
- Ella Ward
- eward_nwacc&comcast.net
-44508
- Vigilant Applications Limited
- Thomas Medhurst
- software&vigilantapps.com
-44509
- CompTek
- Fedor Vompe
- f.vompe&comptek.ru
-44510
- FJ Consultant
- Francois Joannette
- francois&fjconsultant.ca
-44511
- Rudolf Wild GmbH & Co. KG
- Peter Schwendner
- peter.schwendner&wild.de
-44512
- iptronix srl
- dario pennisi
- dario&iptronix.com
-44513
- Essener Versorgungs- und Verkehrsgesellschaft mbH (EVV)
- Ronald Kaufmann
- ronald.kaufmann&evv-online.de
-44514
- bremersee.org
- Christian Bremer
- iana&bremersee.org
-44515
- Griesson - de Beukelaer GmbH & Co. KG
- Winter Michael
- m.winter&griesson.de
-44516
- ETES GmbH
- Markus Espenhain
- support&etes.de
-44517
- Virgil Grigoras
- Virgil Grigoras
- grigoras.oid&arcor.de
-44518
- EUROSELL SPA
- VITTORIO DALERCI
- vittorio.dalerci&eurosell.it
-44519
- US Railroad Retirement Board
- Johand W. Cruse
- johand.cruse&rrb.gov
-44520
- Consolidated Information Systems
- Tim Wetzel
- wetzelt&consolidatedinfosystems.com
-44521
- WUNDERVOLL NETWORKS
- SEAN HUANG
- sean&wundervoll.com.tw
-44522
- Information Technology Solutions Laboratory
- Danila Zubkov
- danila.zubkov&gmail.com
-44523
- NetBeez
- Stefano Gridelli
- stefano&netbeez.net
-44524
- Research & Development Center "Vulkan" LLC
- Andrey Bryantsev
- a.bryantsev&ntc-vulkan.ru
-44525
- Breast Surgery of Tulsa
- Dr. LaNette Smith
- jobs&breastsurgeryoftulsa.com
-44526
- Carta Solutions Processing Services Corp
- Geoff Smith
- gsmith&cartaworldwide.com
-44527
- Marco Dominguez
- Marco Dominguez
- marco.dominguez&gmail.com
-44528
- Uriel Technologies
- Janis Germanis
- janis.germanis&urieltechnologies.eu
-44529
- One Call Care Management
- Jim Sullivan
- Security_Team_Notice&onecallcm.com
-44530
- Alphapower Ltd.
- Octavian Stanciu
- admin.alphapower&gmail.com
-44531
- Renfell Engineering Pty Ltd
- David Clement
- pen&renfell.com
-44532
- Sage Electronic Engineering, LLC
- Scott Hoot
- scott.hoot&se-eng.com
-44533
- Digital Barriers
- Paul McAteer
- paul.mcateer&digitalbarriers.com
-44534
- Weybourne Partners LLP
- Charles Airey
- charles.airey&weybournepartners.com
-44535
- TSAT AS
- Stein Harstad
- stein.harstad&tsat.net
-44536
- True Partners Consulting LLC
- Gerald Liebhardt
- gerald.liebhardt&tpctax.com
-44537
- Elauwit Networks, LLC
- Taylor Jones
- cto&elauwit.com
-44538
- Providius Corp
- Jackson Wiegman
- jackson&providiusdesign.com
-44539
- Safe Patient Systems Ltd
- Ross Folland
- tech&safepatientsystems.com
-44540
- Bond Enterprises
- Carlos Maldonado
- carlos.maldonado&inving.com
-44541
- FeiTian United (Beijing) System Technology Co.,Ltd.
- Yeping Xiao
- yeping.xiao&feitian-tech.com
-44542
- VdS Schadenverhütung GmbH
- Philipp Steingrebe
- psteingrebe&vds.de
-44543
- Viesti Networks Oy
- Risto Järvinen
- risto.jarvinen&vine.fi
-44544
- SANEF-ITS
- Stephane Coudray
- stephane.coudray&sanef-its.com
-44545
- K-LAGAN España S.L.
- Jesús González
- jgonzalez&k-lagan.com
-44546
- Harp Visual Communications Ltd
- David Dunning
- david.dunning&harpvisual.co.uk
-44547
- YMOR Group B.V.
- Stefan Postma
- spostma&ymor.nl
-44548
- Centrale Ashton Inc.
- Vincent D. Handfield
- v.handfield&ashcent.com
-44549
- ELECTRIS
- Mateusz Knapik
- mateuszknapik&electris.pl
-44550
- Avature USA LLC
- Marco Dominguez
- marco.dominguez&avature.net
-44551
- NetCredit Group
- Janis Orlovs
- it&netcreditgroup.com
-44552
- Night Corporation
- Sutton Shin
- oid&infsys.net
-44553
- Oncology/Hematology of Loudoun and Reston
- Sarva Rajendra
- onchemraj2&verizon.net
-44554
- Primevation Ltd.
- Lars Eilebrecht
- iana.org&primevation.com
-44555
- CICS AB
- Magnus Zimmerman
- magnus.zimmerman&cics.se
-44556
- Universitas Al Azhar Indonesia
- Rahman Pujianto
- rahman&uai.ac.id
-44557
- WorNet AG
- Michael Wodniok
- wodniok&wor.net
-44558
- Derixx GmbH
- Markus Mayer
- markus.mayer&derixx.de
-44559
- Tribunal Regional do Trabalho da 13a. Regiao
- Daniel Nunes Lira Barbosa
- dnbarbosa&trt13.jus.br
-44560
- International Black Sea University
- Salavat Sayfullin
- hostmaster&ibsu.edu.ge
-44561
- Alachua County Library District
- Harold McMullen
- hmcmullen&aclib.us
-44562
- aixtools (Michael Felt)
- Michael Felt
- aixtools&gmail.com
-44563
- Irkutsk Diagnostic Centre
- Vladislav Arkhipov
- arhipov&dc.baikal.ru
-44564
- CJSC "ENERGOMERA"
- Roman Lipskiy
- LipskiyRN&energomera.ru
-44565
- LECKERBEEF.de
- Tobias Mandjik
- webmaster&leckerbeef.de
-44566
- OOO Komandor-holding
- Tarelov Egor
- khext&sm-komandor.ru
-44567
- Agencja Rozwoju Przemyslu S.A.
- Piotr Stokluska
- piotr.stokluska&arp.com.pl
-44568
- newnet Marketing (formerly 'Topik Business Services GmbH')
- john read
- john.read&newnet-marketing.de
-44569
- Regional Networks, Ltd.
- Konstantin A Savchenko
- konstantin.s&regnets.ru
-44570
- Lancaster Cancer Center
- Daisy Plaza
- dplaza&lancastercancercenter.com
-44571
- Solinea, Inc
- John Stanford
- john&solinea.com
-44572
- Abington Hematology Oncology Associates
- Richard Perri
- rperri&abingtonhemeonc.com
-44573
- MGI1
- Edmund Jay
- ejay&mgi1.com
-44574
- Jilin Yuxin Technology Co. Ltd
- 李昊天 (Haotian Li)
- clerk_9919&163.com
-44575
- 3S PocketNet
- Kevin Ko
- kevin.ko&3svision.com.tw
-44576
- PERNOD-RICARD
- Gilaud Christophe
- christophe.gilaud&pernod-ricard.com
-44577
- Proxion Solutions Oy
- Liisa Tolvanen
- liisa.tolvanen&proxion.fi
-44578
- Spectra Engineering Pty Ltd
- Albertus Sonny Harmanto
- sonnyh&spectraeng.com.au
-44579
- Sonnenburg Electronic AG
- Roland Westenkirchner
- westenkirchner&sonnenburg.de
-44580
- Johann Sperber GMBH & Co. KG
- Mr. Maikranz, Michael
- maikranz&sperber-kg.de
-44581
- Regional Hematology Oncology Associates,P.C
- Carol Reifsteck
- carol.rhoa&gmail.com
-44582
- Inversion Software OÜ
- Indrek Järve
- indrek&inversion.ee
-44583
- Obicis Ltd.
- Hrvoje Maracic
- hrvoje&obicis.com
-44584
- JumpCloud, Inc
- Travis Yoes
- sa&jumpcloud.com
-44585
- Servato Corp
- Dorion Carr
- dcarr&servatocorp.com
-44586
- CommDev, LLC
- Sergey Kozlov
- commdevllc&gmail.com
-44587
- InMechaSol
- Matthew von Arx
- matt.vonarx&inmechasol.com
-44588
- Kryptus Information Security Ltd.
- Igor Jardim
- igor&kryptus.com
-44589
- becker-ikt.de - Jochen Becker
- Jochen Becker
- jochen.becker&becker-ikt.de
-44590
- Kevin Niehage
- Kevin Niehage
- kevin&niehage.name
-44591
- Morgan Hunt Ltd
- Mr Julian Fletcher
- julian.fletcher&morganhunt.com
-44592
- Fininvest Sp. z o.o.
- Jacek Blaszczynski
- oid&fininvest.pl
-44593
- Jan Bětík (Údolí Sviní)
- Jan Bětík
- jan.betik&svine.us
-44594
- DTS INSIGHT CORPORATION (formerly 'Yokogawa Digital Computer Corporation')
- Koichi Ida
- pqa_admin&dts-insight.co.jp
-44595
- indigo Consulting GmbH
- Sven Schmidtke
- svschmid&indigo-nms.eu
-44596
- DILO Armaturen und Anlagen GmbH
- Peter Haag
- Peter.Haag&dilo-gmbh.com
-44597
- BigBoards
- Wim Van Leuven
- wim.vanleuven&bigboards.io
-44598
- Gosford IT
- Dave Horsfall
- dave&gosford-it.com
-44599
- Vuzix Corporation
- Scott Wagner
- scott_wagner&vuzix.com
-44600
- e-Paper Ltd.
- Eduard Furlender
- efurl&epapersign.com
-44601
- Sunware s.r.o.
- Michael Brabec
- michael.brabec&sunware.cz
-44602
- Systems Mechanics Ltd.
- Peter Godfrey
- pete.godfrey&sysmech.co.uk
-44603
- u-form Testsysteme GmbH & Co KG
- Cornelius Scheffel
- scheffel&uforme.de
-44604
- Beijing Jinhong Xi-Dian Information Technology Corp.
- Pingli Sui
- suipingli&chinaxidian.com
-44605
- Lighthouse IVM GmbH
- Andreas Niemeyer
- technik&kadis.de
-44606
- Siraya Networks Co., Ltd.
- Sam Wang
- sam&sirayanetworks.com
-44607
- GreenField Software Private Limited
- Ankur Pramanick
- ankur.pramanick&greenfieldsoft.com
-44608
- Net at Work Netzwerksysteme GmbH
- Stefan Cink
- stefan.cink&netatwork.de
-44609
- PRONIX s.r.o.
- Petra Sergovicova
- pronix&pronix.cz
-44610
- Elvis-Telecom JSC
- Dmitry Kozlov
- noc&elnet.ru
-44611
- Dumee.fr
- Gilles Dumee
- gilles&dumee.fr
-44612
- Beijing Tonlier Energy Technology Co., Ltd.
- XiaoZiYun
- xzy_2008&sina.com
-44613
- Sunkaisens(Beijing) Technology Co.,Ltd.
- Zhang XiangLong
- zhangxianglong&sunkaisens.com
-44614
- Lingualeo LLC.
- Anthony Regeda
- regeda&lingualeo.com
-44615
- Bluehouse Technology Ltd
- Ms. Sharmila Pillai
- info&bluehouse-technology.co.uk
-44616
- University Transilvania of Brasov
- Sorin COCORADA
- cciu&unitbv.ro
-44617
- GLOBTECH spol. s r.o.
- Vit Zdara
- vit.zdara&globtech.cz
-44618
- Philter, LLC
- Chad Johnson
- chadrjohnson&gmail.com
-44619
- Ziften Technologies
- Luca Loiodice
- luca.loiodice&ziften.com
-44620
- Integrated Service Company LLC
- Jeff L Dean
- jdean&inservusa.com
-44621
- OLeary Computers Inc
- Doug O'Leary
- dkoleary&olearycomputers.com
-44622
- Instituto Colegio de Todos los Santos
- Vera Santiago
- informatica&tls.edu.ar
-44623
- Iomnis Surveillance Solutions
- Mr. Alan Davis
- iomnis_it&iomnis.com
-44624
- Blood & Cancer Center (Ohio)
- Rita Lopez
- ritlopez&hotmail.com
-44625
- Electre
- Foued ZIDANE
- fzidane&electre.com
-44626
- Captive.net
- Anton Van Cauteren
- anton&captive.net
-44627
- National Instruments Corporation
- William A Lanagan
- lanagan&ni.com
-44628
- Canva, Inc.
- Josh Graham
- josh&canva.com
-44629
- Australian Department of Infrastructure and Regional Development
- Jon Harrison
- Jon.Harrison&infrastructure.gov.au
-44630
- JSC Platron
- Dmitry Karmishkin
- cto&platron.ru
-44631
- TechFu (Pty) Ltd.
- Neil Fourie
- iana&techfu.co.za
-44632
- EBlink SA
- Ludovic Le Corre
- informatique-op&e-blink.com
-44633
- Squire Technologies
- Andrew Cooper
- acooper&squire-technologies.com
-44634
- markentier (Christoph Grabo)
- Christoph Grabo
- christoph&markentier.net
-44635
- Degeetia OÜ
- Ivo Mehide
- ivo&degeetia.ee
-44636
- NewCashel Inc.
- Mike Rainey
- mike&newcashel.com
-44637
- CB&I Federal Services
- Steven O'Neal
- steven.oneal&cbifederalservices.com
-44638
- ONEDC
- Sam WIlson
- sam.wilson&onedc.com
-44639
- Hermes Europe GmbH
- Christoph Eichner
- Christoph.Eichner&hermes-europe.eu
-44640
- UpdateLogic, Inc.
- Brian Paul Johnson
- it&updatelogic.com
-44641
- VyOS
- Daniil Baturin
- maintainers&vyos.net
-44642
- National Knowledge Network
- Gaurav Kansal
- gaurav.kansal&nkn.in
-44643
- Fujikura Automotive Europe S.A.
- Manuel Ruiz
- manuel.ruiz&fujikura-automotive.com
-44644
- Vopium A/S
- Haroon ur Rashid Abbasi
- haroon.rashid&vopium.com
-44645
- Infrabel NV
- Pieter Baele
- pieter.baele&infrabel.be
-44646
- Emko Elektronik Sanayi ve Ticaret A.Ş.
- Duygu Ispalar Guneri
- duygu.ispalar&emkoelektronik.com.tr
-44647
- Argus der Presse AG
- Yannik Nicod
- software&argus.ch
-44648
- Manet Ltd
- Tomi Malkki
- tomi&manmon.net
-44649
- Alma Technologies
- John K. Hinsdale
- postmaster&alma.com
-44650
- Hemotology Oncology Care of Northern VA
- Layne Fry
- lfry&hocnova.com
-44651
- University of Detroit Jesuit High School and Academy
- Montana Arble
- montana.arble&uofdjesuit.org
-44652
- LaMarche Mfg. Company
- Pat DeLacluyse
- pdelacluyse&lamarchemfg.com
-44653
- Unassigned
- Removed 2014-11-04
-
-44654
- Hochschule für Musik Freiburg
- Jürgen Diez
- j.diez&mh-freiburg.de
-44655
- Heartland Hematology & Oncology
- Shannon Bauer
- sbauer&heartlandhem-onc.com
-44656
- Sound Choice Communications LLC
- Eric Osterberg
- staff&sccvoip.com
-44657
- Bow Valley College
- Mark Prevey
- mprevey&bowvalleycollege.ca
-44658
- Northwest Medical Specialties PLLC
- Jeff Hunnicutt
- jhunnicutt&nwmsonline.com
-44659
- Burlington County Hematology-Oncology Associates, P.A.
- Joyce Matola
- bchemonc&verizon.net
-44660
- Landspitali
- Elfar Ingvarsson
- elfar&landspitali.is
-44661
- Boyce Technologies, Inc.
- Craig Hale
- chale&boycetechnologies.com
-44662
- CodeChase
- Andrew Hilliar
- andrewh&codechase.com.au
-44663
- Wuhan GreeNet Information Service Co., Ltd.
- zhangwei
- wzhang&greenet.net.cn
-44664
- IRCOS JSC
- Sergey Korochin
- KorochinSV&ircoc.vrn.ru
-44665
- 1&1 Internet AG
- Alfons Maas
- oid-administration&1and1.org
-44666
- Ville de Saint André
- Fabrice PAYET
- DSI&saint-andre.re
-44667
- Pardic Systems , Ltd.
- Farid Nabizad
- pardicsys&gmail.com
-44668
- Securosys SA
- Robert Rogenmoser
- roro&securosys.ch
-44669
- First Capital Payments
- Fredrick Robinson
- frobinson&firstcapitalpayments.com
-44670
- Prism Software Corporation
- Mayank Aggarwal
- mayank&prismsoftware.com
-44671
- Sysctl AB
- Andreas Jonsson
- andreas&sysctl.se
-44672
- Naucra Co., Ltd
- Shimhyun Lee
- shlee&naucra.com
-44673
- SitePen, Inc.
- Robert Chady
- sitepen-pen&sitepen.com
-44674
- FUSED NETWORK CORP
- Paul Fleming
- admins&fused.net
-44675
- Spillman Technologies Inc.
- Michael F. Wilkinson
- mwilkinson&spillman.com
-44676
- Glenn McGurrin
- Glenn McGurrin
- oid-pen-admin&glennmcgurrin.com
-44677
- Dreamhack Network
- Christian Svensson
- bluecmd&tech.dreamhack.se
-44678
- Loopia AB
- Fredrik Eriksson
- fredrik.eriksson&loopia.se
-44679
- Plansee Group Service GmbH
- Martin Broll
- martin.broll&plansee.com
-44680
- Iudex
- Tuomas RIihimäki
- pen.iana&iudex.fi
-44681
- Ajuntament de Valencia
- Pedro Belenguer
- pbelenguer&valencia.es
-44682
- CompliSpace Technology Pty Ltd
- Michael McHugh
- michael.mchugh&complispace.com.au
-44683
- Intern-net
- Bastian Brunner
- contact&intern-net.de
-44684
- Corsa Technology Inc.
- Richard Perrin
- mibmaster&corsa.com
-44685
- NTENT
- Ashton Davis
- itns&ntent.com
-44686
- ROI Development Corp., DBA Newmar
- Kurt Palermo
- kurtp&newmarpower.com
-44687
- Hebeo
- Damien Lesgourgues
- damien&hebeo.org
-44688
- WorldWide Supply LLC (aka "WWS")
- Barry Hardek
- bhardek&worldwidesupply.net
-44689
- Groupe Simplinet inc.
- Martin Hébert
- support&simpli.net
-44690
- Sonavox Canada Inc.
- Stephanie Tedesco
- stedesco-rizzo&sonavox.com
-44691
- GRUPO ONCOLOGICO COMUNITARIO DE SAN JUAN
- JENNIFER OYOLA
- oyolajennifer&gmail.com
-44692
- Sedus Stoll AG
- Eric Michael
- ericmichael&sedus.com
-44693
- Microwave Photonic Systems, Inc.
- Keith Voss
- kvoss&b2bphotonics.com
-44694
- Adams County Cancer Center
- Payal Patel
- payalppatel87&gmail.com
-44695
- Wolfgang Erlenkoetter IT
- Wolfgang Erlenkoetter
- wolfgang&erlenkoetter.net
-44696
- apl.io
- Luke Van Horn
- luke&apl.io
-44697
- Charles University in Prague, Faculty of Mathematics and Physics
- Dan Lukes
- netadm&mff.cuni.cz
-44698
- Baxter Planning System
- Ken Hughes
- it&bybaxter.com
-44699
- BiLL GmbH
- Yvan Zaugg
- zaugg&billgmbh.ch
-44700
- Kuss IT-Solutions
- Reinhard Kuss
- office&edv-profi24.at
-44701
- Hearsay Social
- Adam DePue
- opsmgmt&hearsaysocial.com
-44702
- Voiceworks B.V.
- Oliver Bril
- oliver.bril&voiceworks.com
-44703
- Danville Hematology and Oncology
- Star Reed
- starlette.reed&lpnt.net
-44704
- BlackSip Development
- Jens Sauer
- j.sauer&mx.blacksip.de
-44705
- Hack12
- Morgan Attias
- morgan&hack12.com
-44706
- Hostopia.com Inc.
- Kelvin Hockin
- khockin&hostopia.com
-44707
- SAI Technology Inc.
- Herman Lee
- hlee&saitechnology.com
-44708
- Crews Banking corporation
- Matt Opalach
- Mopalach&crewsbankcorp.com
-44709
- Xolphin B.V.
- Maarten Bremer
- info&xolphin.com
-44710
- Ensured B.V.
- Maarten Bremer
- info&ensured.com
-44711
- T-Mobile Nederland BV
- Brahim Mouhdi
- brahim.mouhdi&t-mobile.nl
-44712
- AGAT-System
- Ujin Kosy
- ujinkosy&gmail.com
-44713
- COSMOS-SOFT.net
- Masato KISHI
- mkishi&cosmos-soft.net
-44714
- Transdata
- Pavol Podolak
- podolak&transdata.sk
-44715
- Ezitherm
- James Yong
- jamesy&ezitherm.com
-44716
- University of the Sunshine Coast
- Peter Embleton
- pembleto&usc.edu.au
-44717
- CO-Sol Inc.
- Ryota Watabe
- ryota.watabe&cosol.jp
-44718
- Loews Hotels Inc
- Manuel Olivero
- HotelItTech&loewshotels.com
-44719
- UniversalCard Sibiria LLC
- Anton Maltsev
- akm&ruspro.info
-44720
- Shanghai BEIDIAN Industry Group
- Chenliyang
- chenly&shbeidian.com.cn
-44721
- Okaki Health Intelligence Inc
- Wei Tam
- wei&okaki.com
-44722
- WALLMEDIEN AG
- Sven Koepfer
- iana&wallmedien.de
-44723
- Unassigned
- Removed 2014-12-16
-
-44724
- LLC "ITTech"
- Andrey Kravchenko
- kravchenko&i-t-tech.ru
-44725
- BADTRONIC sarl
- JEROME MSIKA
- badtronic&badtronic.fr
-44726
- Radionika Sp. z o.o.
- Aleksander Piwkowski
- aleksander.piwkowski&radionika.com
-44727
- Y2S Corporation
- Yuji Kanematsu
- iana&y2s.net
-44728
- I3 CZ s.r.o.
- Tomáš Brandýský
- brandysky&i3.cz
-44729
- Fixmon
- Smirnov Alexey
- chemist&haskell.su
-44730
- Elkomtech S.A.
- Tomasz Biczyński
- tomasz.biczynski&elkomtech.com.pl
-44731
- Palestine Monetary Authority
- Hani Amer
- smart&pma.ps
-44732
- OOO bella-Don
- Vladislav Spivak
- spivak&bella-don.ru
-44733
- Forbes Technosys Ltd
- Mahesh Kulkarni
- mahesh.kulkarni&forbestechnosys.com
-44734
- Menlo Security
- Todd Ignasiak
- info&menlosecurity.com
-44735
- Electronic Commerce Inc.
- Don Magee
- dmagee&ecipay.com
-44736
- JERRA Soft GmbH
- Mr. Sascha Poss
- sascha.poss&jerra.de
-44737
- Raindrop Laboratories (Alan Batie)
- Alan Batie
- hostmaster&rdrop.com
-44738
- ASUSTOR Inc.
- James Su
- jamessu&asustor.com
-44739
- Miele & Cie. KG
- Rolf Berenbrinker
- rolf.berenbrinker&miele.de
-44740
- Innovapuglia S.p.A.
- Nicola Saracino
- n.saracino&innova.puglia.it
-44741
- IAV GmbH
- Karsten Prejawa
- iana-oid&iav.de
-44742
- Aunigma Network Security Corp.
- Karl Elliott
- kelliott&aunigma.net
-44743
- POMA
- James PARADON
- it_poma&poma.net
-44744
- Scanline VFX LA Inc.
- Viet Nguyen
- tech&scanlinevfx.com
-44745
- Tremor Video
- Presley Acuna
- pacuna&tremorvideo.com
-44746
- Sea Surveillance AS
- Roman Efanov
- re&seasurv.net
-44747
- VoiceTrust
- Jan Nitecki
- jnitecki&voicetrust.com
-44748
- Wild Kilt Pty Ltd
- Tommy Braas
- tommy&wildkilt.com
-44749
- Malwarebytes Corporation
- David Cahill
- dcahill&malwarebytes.org
-44750
- Edifecs Inc
- Vik Sachdev
- viks&edifecs.com
-44751
- Tell International Inc.
- Rabih Ismail
- rismail&tell-inc.com
-44752
- Quamatik doo
- Gustavo Perez
- gustavo.perez&quam.hr
-44753
- UniQ-CA B.V.
- Frans Bolk
- frans.bolk&uniq-id.com
-44754
- Patent Agency Tegas Llc
- Roman E. Paliy
- info&pategas.com
-44755
- Online Development Inc.
- Jim Webber
- jwebber&oldi.com
-44756
- AgNO3 GmbH & Co. KG
- Moritz Bechler
- bechler&agno3.eu
-44757
- ANIMO LIMITED.
- Yoshimichi Akiyama
- yakiyama&animo.co.jp
-44758
- ACTRONICS K.K.
- Katsumi Sasaki
- system&actronics.co.jp
-44759
- Turbo Systems Co., Ltd.
- Hiroyuki Kobayashi
- koba&turbosystems.co.jp
-44760
- Vsoft Colombia Ltda.
- Jonathan Obando
- jobando&pcsistel.com
-44761
- VoxIdea
- Jonathan Rozo
- jonathan&voxidea.com
-44762
- IBS PROJECT LLC
- Talip Ilyassov
- talip.ilyassov&ibsproject.kz
-44763
- Steven Sloane
- Steven Sloane
- oid-admin&apsmediagroup.co.uk
-44764
- bacq.ru
- Andrey Borisenko
- admin&bacq.ru
-44765
- PTL Limited
- Denis Vella
- netadmin&ptl.com.mt
-44766
- Katao Ops
- Sven Bender
- mail&svenbender.de
-44767
- Tieto Sweden AB
- Anders Strandberg
- anders.strandberg&tieto.com
-44768
- Grayson bvba
- Wim Coulier
- wim&coulier.org
-44769
- Tsinghua University
- Changqing An
- acq&tsinghua.edu.cn
-44770
- NYNEX satellite OHG
- Frederik Kriewitz
- f.kriewitz&nynex.de
-44771
- Apsidis
- Maniel Sotomayor
- maniel.sotomayor&gmail.com
-44772
- West Genesee Central School District
- Art LaFlamme
- helpdesk&westgenesee.org
-44773
- Sistemas de Seguridade A1
- Mario Rial Amado
- mario&seguridadea1.com
-44774
- Alameda Health Services
- LouAnn Raucher
- lraucher&alamedahealthsystem.org
-44775
- City Network Hosting AB
- Johan Hedberg
- jh&citynetwork.se
-44776
- Hedberg Produtions
- Johan Hedberg
- johan&hedbergproductions.com
-44777
- MEAZON SA
- Stelios Koutroubinas
- s.koutroubinas&meazon.com
-44778
- thinkindifferent.net
- lily wilson
- hotaru&thinkindifferent.net
-44779
- Unity Health Insurance
- Jeremy Hermsdorf
- netadmin&unityhealth.com
-44780
- BikePics
- Denis Markwell
- help&bikepics.com
-44781
- Connetos Company
- Luo Feng
- tech&connetos.com
-44782
- Xiamen Kehua Hengsheng Co.,Ltd
- Kewen Fu
- kecan&kehua.com
-44783
- Push To Talk International Ltd
- Kevin Broadey
- hostmaster&ptti.co.uk
-44784
- Hitzigrath
- Mischa Hitzigrath
- mischa&hitzigrath.de
-44785
- IS2 Intelligent Solution Services AG
- Florian Wöhrl
- admin&is2.de
-44786
- Stadtwerke Jena GmbH
- Bjoern Wever
- dv&stadtwerke-jena.de
-44787
- Corporate Business Systems LLP.
- Nickolay Krivtsov
- nkrivtsov&cbs.kz
-44788
- Goethe-Institut e. V.
- Benjamin Bauer
- benjamin.bauer&goethe.de
-44789
- Sarah Cannon Research Institute
- Nicholas Breaux
- nicholas.breaux&sarahcannon.com
-44790
- Ingenium Automation + Engineering Pte Ltd
- Kannan Balaji
- balaji&ingeniumiae.com
-44791
- Chengdu Global Capsheaf Solution Technology Co., Ltd.
- Zhou Ji
- jo121fox&gmail.com
-44792
- AzuriteUK (Valerij Prusakov)
- Valerij Prusakov
- valerkafromuk&yahoo.co.uk
-44793
- GAMING1 SPRL
- DONEA Bertrand
- bertrand.donea&gaming1.com
-44794
- Chickasaw Holding Company
- Billy Staggs
- ctcadmins&chchq.net
-44795
- Tridigy, LLC
- Laimonas Slecpenka
- iana&tridigy.com
-44796
- SFO Technologies Pvt. Ltd.
- Dileep Kumar S.
- dileepkumar.s&nestgroup.net
-44797
- Stoat Works
- Martin P. Hellwig
- martin&stoatworks.com
-44798
- TechsMix Networks
- Jared Ledvina
- jared&techsmix.net
-44799
- audioalgorithms
- Jakob Ashtar
- info&audioalgorithms.com
-44800
- it7 s.r.o.
- Lukas Stana
- it7&it7.sk
-44801
- Sole proprietorship Ilya Gruzinov
- Ilya Gruzinov
- ilya.gruzinov&gmail.com
-44802
- IT-Labor
- tom ate
- ich-hab-was-gefunden&web.de
-44803
- Whatson-Web
- Jordi Grimaud
- jordi.grimaud&gmail.com
-44804
- FCM TECHNOLOGY S.r.l.
- Fabio Cateno Burgarello
- fcmtechnology&gmail.com
-44805
- Sea Island Cancer Center
- Terrea R. Parker
- cancercenter&embarqmail.com
-44806
- Universidade Federal da Integração Latino-Americana
- Lucas Guilherme Diedrich
- lucas.diedrich&unila.edu.br
-44807
- Infor*Med
- Roberto Alfonso
- roberto.alfonso&praxisemr.com
-44808
- tsblog.org
- Tone Southerland
- tone&s6mail.net
-44809
- HealthStream, Inc.
- Michael Lopez
- michael.lopez&healthstream.com
-44810
- arales.org
- Yoshiaki UCHIKAWA
- yoshiaki&arales.org
-44811
- Funambolo Technologies Private Limited
- K. Shahanawaz Khan
- kskhan&funambolo.co.in
-44812
- JSC "Institute of Automation of Energy Systems"
- Alexey Petrov
- alexey&iaes.ru
-44813
- Beijing Easynetworks Technology Co.,Ltd.
- Charles Wang
- 13910122958&126.com
-44814
- Genexyx Srl
- Damiano Scrigni
- admin&genexyx.com
-44815
- Mauro Altamura
- Mauro Altamura
- mauro&mauroaltamura.com
-44816
- South Carolina Oncology Associates
- Wade Bonner
- wbonner&sconcology.net
-44817
- Idaho Division of Veterans Services
- Clinton Dale
- clinton.dale&veterans.idaho.gov
-44818
- CADMO CONOCIMIENTO S.L.
- Antonio Roncero
- soporte&cadmoweb.com
-44819
- Store Electronic Systems S.A.
- Tarik FILALI Ansary
- tarik.filali&ses-esl.com
-44820
- Chlorine Hilarva
- Manuel Lanctot
- sensoz&gmail.com
-44821
- Beijer Electronics AB
- Niklas Sjöström
- niklas.sjostrom&beijer.se
-44822
- DC Matrix Internet S/A
- Danilo Bento
- danilo.bento&matrix.net.br
-44823
- Airborne Interactive
- Ian Walberg
- ian.walberg&airborne.aero
-44824
- Opravil
- Jan Opravil
- jan.opravil&opravilovi.com
-44825
- Lautersoft
- Rainer Lauterbach
- rainer.lauterbach&lautersoft.de
-44826
- Fire Protection Service Corporation
- Andrew T. Fry
- oid&kencosecurity.com
-44827
- epcan GmbH
- nils waning
- nw&epcan.de
-44828
- SilverNet Ltd.
- Paul Ryan
- pryan&silvernet.com
-44829
- Ganymed Pharmaceuticals AG
- Dr. Bastian Holthöfer
- it&ganymed.ag
-44830
- Trio Motion Technology Ltd
- Anthony Matthews
- tmatthews&triomotion.com
-44831
- Nuvotex Solutions GmbH & Co KG
- Daniel Nachtrub
- dn&nuvotex.de
-44832
- Product Ventures Ltd
- Christopher Smith
- administrator&productventures.com
-44833
- peteheilig.com
- Pete Heilig
- pete&peteheilig.com
-44834
- SYSTEMS AND TECHNOLOGIES, ZAO
- Victor Sizov
- veector&mail.ru
-44835
- Oncology & Hematology Consultants of Houston
- Nabeel Shalan
- nabeel_shalan&yahoo.com
-44836
- Breqwatr, Inc.
- Jason Harley
- jason.harley&breqwatr.com
-44837
- Absec Malaysia Sdn Bhd
- Mohd Khalemi
- khalemi&absecmy.com
-44838
- chinasoft-tokyo corporation
- xu kebin
- xukebin&chinasoft-tokyo.co.jp
-44839
- Mega Designs Pvt. Ltd.
- Soomit Banerjee
- soomitb&gmail.com
-44840
- Intrasonics Ltd
- Paul Trinder
- itadmin&intrasonics.com
-44841
- Lyngmo.Net
- Runar Lyngmo
- ianapen&lyngmo.net
-44842
- Fairbanks North Star Borough School District
- Robert Hingst
- robert.hingst&k12northstar.org
-44843
- Hasin Technology
- Mohammad Banisaeid
- banisaeid&hasintech.com
-44844
- Nobel Biocare Services AG
- Jacopo Fumagalli
- info.switzerland&nobelbiocare.com
-44845
- Dillert
- Joerg Dillert
- jdi&gmx.net
-44846
- SuperNetwork s.r.o.
- Marek Becka
- marek.becka&superhosting.cz
-44847
- Yuri Bugelli
- Yuri Bugelli
- yuri.bugelli&gmail.com
-44848
- COSYLVAL
- RUFFIE Marc
- marc.ruffie&cosylval.fr
-44849
- Five Below, Inc.
- Joshua Cloud
- oid&fivebelow.com
-44850
- United States Antarctic Program
- Kristofer Boyd
- kristofer.boyd.contractor&usap.gov
-44851
- WINK Streaming
- Michael McConnell
- michael&winkstreaming.com
-44852
- Energy Communications Management Exchange, sub-division of Future DOS Research & Development Inc.
- Avygdor Moise
- info&ecmx.org
-44853
- KVL COMP Kft.
- Mátyás Stubeczky
- matyas.stubeczky&kvlcomp.hu
-44854
- linmaonline.de
- Markus Fluer
- webmaster&linmaonline.de
-44855
- h-dy's Home
- Dingyuan Hu
- dingyuan&h-dy.org
-44856
- Art Developers Corporation
- Koichi Taga
- iana-regist&artdev.co.jp
-44857
- Broadsound Corporation
- Steve Yao
- steveyao&broadsound.com.tw
-44858
- Elkjøp Nordic AS
- Maqsood Ali Bhatti
- maqsood.ali.bhatti&elkjop.no
-44859
- Mobik d.o.o.
- Gašper Drolc
- gasper.drolc&mobik-ics.com
-44860
- Emanomedia GmbH
- Alexander Trapp
- alexander.trapp&emanomedia.com
-44861
- Catoctin Systems
- Jason Callaway
- admin&catoctinsystems.com
-44862
- IT SYSTEMS srl
- Max Vegni
- m.vegni&itsystems.it
-44863
- Unitow Services (1978) Ltd.
- Gerald Chudyk
- gchudyk&ekotech.com
-44864
- Bethel Blood and Cancer Center
- Melissa Gutierrez
- melissa.bbcc&outlook.com
-44865
- Bay Area Regional Medical Center
- Mark Albright
- malbright&barmc.us
-44866
- Benedikt Frenzel Systems
- Benedikt FRENZEL
- pen&bfr.name
-44867
- Etic Telecom
- Mickael Chazaux
- mickael.chazaux&etictelecom.com
-44868
- Earthling Interactive
- Dan Stevens
- stevens&earthlinginteractive.com
-44869
- Zen Solutions Limited
- Colin Foster
- who.is&zen.net.nz
-44870
- JSC "SKB Electronmash"
- Mamut Naum Ilyich
- skbelectronmash&ukr.net
-44871
- Universidad de Cuenca
- María José Torres Maldonado
- mariajose.torres&ucuenca.edu.ec
-44872
- FiberLabs Inc.
- Yoshinori Mimura
- oidadmin&fiberlabs.co.jp
-44873
- CJSC «INTERSET»
- Andrey Tumanian
- atfreebox&gmail.com
-44874
- Instytut Matematyczny Polskiej Akademii Nauk
- Tomasz Zajdel
- tzajdel&impan.pl
-44875
- Reykjavikurborg
- Tomas Gudmundsson
- hostmaster&reykjavik.is
-44876
- Hrvatska poštanska banka, dioničko društvo
- Marijan Žužić
- marijan.zuzic&hpb.hr
-44877
- IMMA Inc.
- Svyatoslav Noskov
- snoskov&imma.ru
-44878
- Datcent Technology Co.,Ltd.
- ShuQiang Li
- lishuqiang&datcent.com
-44879
- Cunz RaD Ltd.
- Sascha Cunz
- sascha&cunz-rad.com
-44880
- Harte & Lyne Limited
- James B. Byrne
- support&harte-lyne.ca
-44881
- ikara
- Koji Araki
- araki.koji&ikara.jp
-44882
- Techno-com
- Maxim Melnikov
- melnikovmv&bk.ru
-44883
- Iw1BI
- Domenico Casarino
- domenico.casarino&gmail.com
-44884
- OneVision Software AG
- Christian Zietlow
- it&onevision.com
-44885
- Baltech AG
- Robert Hölzl
- robert.hoelzl&baltech.de
-44886
- Gainspeed, Inc.
- Ram Prasad
- ram&gainspeed.com
-44887
- The Kansas City Southern Railway Company
- Michael Chung
- KCSInfoSec&KCSouthern.com
-44888
- klolik.org
- Bartłomiej Korupczyński
- klolik79&gmail.com
-44889
- Denver Public Library
- Heath Young
- hyoung&denverlibrary.org
-44890
- BKtel Photonics SAS
- Cyril Le Goas
- legoas&bktel.com
-44891
- Xero
- David Garner
- david.garner&xero.com
-44892
- Primum Health IT S.L.
- David de Mena García
- info&primum.es
-44893
- Software Diversions, Inc.
- S. Colin Leister
- colin&softwarediversions.com
-44894
- Napatech
- Alex Agerholm
- aa&napatech.com
-44895
- Bitcraze AB
- Arnaud Taffanel
- arnaud&bitcraze.se
-44896
- Secureloin
- Teguh P. Alko
- chain&rop.io
-44897
- Vista Oncology
- Callie Hills
- callieh&vista-oncology.com
-44898
- Insignis
- Roberto da T. Goncalves
- roberto.goncalves&insignis.com.br
-44899
- Code L7
- Alvin Garcia Chaves
- alvin.garcia&code-l7.co
-44900
- ReminderMedia
- Information Technology
- systems&remindermedia.com
-44901
- Xiamen Sunwe Technology CO.,Ltd
- Decai Zhang
- zhangdc&china-sunwe.com
-44902
- ShareTech Information Co., LTD.
- Lois Hsieh
- ting&sharetech.com.tw
-44903
- Stratech Systems Limited
- Nurra Trog
- nurra_farhana_mahat&StratechSystems.com
-44904
- Media Stream Co., LTD.
- Kevin Lee
- gklee&media-stream.co.kr
-44905
- NightTrade Group, Inc.
- Martin Estok IV
- martin.estok&nighttrade.org
-44906
- TBDD, LTD
- Aleksandr Vavilin
- vavilin&tcobdd.ru
-44907
- nVisionIT Pty Ltd
- Stephen Jordaan
- stephenj&nvisionit.co.za
-44908
- CARTIERE DEL GARDA
- Tonidandel Flavio
- flavio.tonidandel&lecta.com
-44909
- sys-pro GmbH
- Joachim Adler
- joachim.adler&sys-pro.de
-44910
- ST-Vitrinen Trautmann GmbH & Co. KG
- Arne Schlueter
- schlueter&st-vitrinen.de
-44911
- Alpha ENGINEERING Tunisia
- Taher AMMARI
- taher.ammari&alpha-engineering.net
-44912
- 2Be-FFICIENT
- Haga Rakotoharivelo
- haga&2befficient.fr
-44913
- RedSocks B.V.
- Rick Hofstede
- rick.hofstede&redsocks.nl
-44914
- Genting Casinos UK
- Iain Smith
- iain.smith&gentinguk.com
-44915
- Silex Industrial Automation Ltd.
- Márton Ughy
- marton.ughy&silex.hu
-44916
- MJog Limited
- Mark Howells
- mark.howells&mjog.com
-44917
- LMpro GmbH
- Bernd Ahlfeld
- bahlfeld&lmpro.de
-44918
- Nethix S.r.l
- Andrea Girardi
- a.girardi&nethix.com
-44919
- Avisi B.V
- Jeroen Veldhorst
- j.h.veldhorst&avisi.nl
-44920
- Argyle Security Inc
- Neal Horman
- nhorman&argylesecurity.com
-44921
- Exele
- Dane Overfield
- dane&exele.com
-44922
- Echo Technology Solutions
- Sejo Jahic
- support-echots&echots.com
-44923
- Remco ICT
- R. Peters
- remco&remco-ict.nl
-44924
- AllSeen Alliance, Inc.
- Philip DesAutels
- info&allseenalliance.org
-44925
- East Kent Hospitals University Foundation Trust
- Mark Williams
- mark.williams28&nhs.net
-44926
- Amdocs Network Solutions
- Christopher Coote
- christopher.coote&amdocs.com
-44927
- SyS LLC.
- Sergey Randitskiy
- rsa&systemco.ru
-44928
- Caligare, s.r.o.
- Jan Nejman
- nejman&caligare.com
-44929
- NetKnights GmbH
- Cornelius Kölbel
- cornelius.koelbel&netknights.it
-44930
- Fisher Investments
- Security Administrator
- security.administrator&fi.com
-44931
- SyncWise Systems & Technology
- Aurel Chiriac
- aurel.chiriac&syncwise.ro
-44932
- Panasonic System Communications Company of North America
- Ildar Nizami
- ildar.nizami&us.panasonic.com
-44933
- In Ardua Petit
- Tim Hedtke
- thedtke&inarduapetit.org
-44934
- G-RAY
- heleihua
- leihua_he&ultrasilicom.com
-44935
- Digital Telecommunication Systems WA PTY LTD
- Justin Swain
- justin_swain&iinet.net.au
-44936
- Stratech iVision Pte. Ltd
- LOW CHENG SENG
- LOW_Cheng_Seng&stratechsystems.com
-44937
- Inoventica technologies
- Mike Kogan
- regs&inoventica-tech.ru
-44938
- Charité - Universitätsmedizin Berlin
- Frank Kiess
- frank.kiess&charite.de
-44939
- AVA-PETER Ltd.
- Pavel Finogeev
- finogeev-pk&avaclinic.ru
-44940
- Nemiroff
- Aleksey Rud
- aleksey.rud&nemiroff.pro
-44941
- GCP German Cathodic Protection GmbH & Co. KG
- Torsten Krebs
- krebs&gcp.de
-44942
- Stadt Duelmen
- Peer Wulff
- it&duelmen.de
-44943
- Inlink OÜ
- Ilvar Oja
- iana&inlink.ee
-44944
- Rock Flow Dynamics
- George Zhilyakov
- george.zhilyakov&rfdyn.com
-44945
- TEKTELIC Communications Inc.
- David Tholl
- dtholl&tektelic.com
-44946
- Danish Railway (DSB)
- Finn Fleron
- IT-Infrastruktur&dsb.dk
-44947
- Internet Security Research Group
- Josh Aas
- josh&letsencrypt.org
-44948
- Pacific Institute for the Mathematical Sciences
- Ian Allison
- iana&pims.math.ca
-44949
- NJK Aviation AG
- Nicholas John Koch
- koch&njk.aero
-44950
- automation-engineering
- Dmitriy Murashov
- dmitriy.murashov&automation-engineering.ru
-44951
- SSR Engineering, Inc.
- Kevin Miller
- kmiller&ssreng.com
-44952
- AC/ BC Electrical Company
- Bob Crnogorac
- bobacbc&rogers.com
-44953
- Flat World Resource Technologies Limited.
- Stephen Van
- stephen1w&yeah.net
-44954
- Keweon
- Torsten Jahnke
- keweon&outlook.com
-44955
- Connexo Tecnologia e Comunicação EIRELI
- Hely Firmino de Sousa
- hely.sousa&connexo.com.br
-44956
- Savvi Inc.
- Jay Fenton
- ops&savvi.io
-44957
- Robotron Datenbank-Software GmbH
- Marco Friebe
- marco.friebe&robotron.de
-44958
- mse GmbH
- René Büdinger
- rbuedinger&mse-gruppe.de
-44959
- Carl Berberich GmbH
- Colin Rust
- colin.rust&berberich.de
-44960
- Craltech Electrónica, S.L.
- Cristobal Campoy
- soft&craltech.com
-44961
- Valley Medical Center, PLLC
- Jake Hinkelman
- internalit&valleymedicalcenter.com
-44962
- Foreman Instrumentation And Controls
- Kevin Kirmse
- kdkirmse&syntemp.com
-44963
- gueux.org
- Félix Sipma
- admin&gueux.org
-44964
- Vivid Orange Limited
- Matthew Keay
- matthewkeay&vividorange.co.uk
-44965
- pascher.IT
- Peter Pascher
- info&pascher.it
-44966
- Jingtu Printing Systems Co., Ltd
- Zongxiong Nishino
- hzx&jtprint.cn
-44967
- Beijing Heweinet Technology Co.,Ltd (北京和维网通科技有限公司)
- Chen Xuedong (陈学栋)
- chenxd&heweinet.com
-44968
- May China
- Scott Flowers
- scott.flowers&gmail.com
-44969
- CLINICA DE CANCER Y ENFERMEDADES DE LA SANGRE, CSP
- MARIA DEL C. BLAS
- clinicadecancerdrvazquez&hotmail.com
-44970
- Thread Group, Inc.
- Martin Turon
- mturon&nestlabs.com
-44971
- Compen Embedded Software
- Pieter Compen
- pieter&compen.net
-44972
- Alameda Hospital
- LouAnn Raucher
- lraucher&alamedahealthsystem.org
-44973
- Kantar Media France SAS
- Tanguy MILLET
- tanguy.millet&kantarmedia.com
-44974
- Sonos, Inc.
- Jonathan Wenocur
- jonathan.wenocur&sonos.com
-44975
- FlexCoders Ltd
- Steven David West
- iana&flexcoders.co.uk
-44976
- Onegini B.V.
- Stein Welberg
- developers&onegini.com
-44977
- Reduxio Systems
- Jacob Cherian
- standards&reduxio.com
-44978
- Istria, soluciones de criptografía, S. A.
- Luis Recuerda Santiago
- luis.recuerda&istria-cripto.com
-44979
- Tsmart Inc.
- Ahn, Byung-Keun
- bkahn&tsmartall.com
-44980
- MEDiA LiNK Co.,Ltd.
- Yukihiro Taniguchi
- yukihiro.taniguchi&medialink-ml.co.jp
-44981
- LLC "PromIT"
- Gluhov Alexey
- personal&promit-ek.ru
-44982
- INNEXIV, INC.
- Muhammad Hassan
- mhassan&innexiv.com
-44983
- ARTIS GmbH
- Dirk Lange
- dirk.lange&artis.marposs.com
-44984
- EPAM Systems
- Alexander Aleksiuk
- aliaksandr_aleksiuk&epam.com
-44985
- Tecnologias Corporativas SC
- Jonathan Salazar Santos
- jonanx779&hotmail.com
-44986
- Taglio LLC
- GW Habraken
- gw&tagliosc.com
-44987
- Temple University
- Jorj Bauer
- jorj&temple.edu
-44988
- Nxtera Ltd
- David Adcock
- dave.adcock&nxtera.com
-44989
- Multi Parts Supply USA, Inc.
- Nathan Brown
- nathan.brown&multiparts.net
-44990
- TONGFANG INDUSTRIAL CO.,LTD
- li dong
- zdyzlidong&126.com
-44991
- Ameriprise Financial
- Robert Buerck
- Robert.L.Buerck&ampf.com
-44992
- Amscreen Group Limited
- James Denkaat
- jdenkaat&amscreen.co.uk
-44993
- BCP Co.
- vahid gilassi
- vahidgilassi&yahoo.com
-44994
- Umbrellium Ltd.
- Samuel Mulube
- sam&umbrellium.co.uk
-44995
- Regional Cancer Care Associates, Little Silver Division
- Debbie Wolf
- dmayo&hemoncnj.com
-44996
- JMP Group Inc.
- Charles Yao
- cyao&jmpg.com
-44997
- Emery Telcom
- Josh Galvez
- noc&emerytelcom.com
-44998
- Sichuan Zero Gravity Technology CO.LTD
- Yu HAN
- hy&zg.hk
-44999
- Ltd GoldLans
- Andrii Bratanich
- andrii.bratanich&gmail.com
-45000
- Symbicon Ltd
- Kalle Heikkinen
- kalle.heikkinen&symbicon.fi
-45001
- Northern Virginia Hematology Oncology Associates
- Ronnie Owen
- nurse&novahemonc.comcastbiz.net
-45002
- CompuGroup Medical Polska sp. z o.o.
- Dariusz Trochimiuk
- netraad&cgmpolska.pl
-45003
- Egag, LLC
- Gage Hainer
- ghainer&egagllc.com
-45004
- SMARTRAC N.V.
- Sidnei Moreira
- iana-pen&smartrac-group.com
-45005
- Advanced Alloy Processing
- James Wazorick
- jwazorick&maincompanies.com
-45006
- Wuestenrot poistovna, a.s.
- Ladislav Schramm
- uit&wuestenrot.sk
-45007
- Trial Software Laboratories, Inc.
- Nobuhiro Haketa
- iana_pen_registry_contact&trialsoftware.com
-45008
- Things.Expert LLC
- Daniel Tibor Fuchs
- daniel.fuchs&things.expert
-45009
- Thomas Hassall Anglican College
- Werner Kasselman
- wk&thac.nsw.edu.au
-45010
- Youhua
- Nision Wu
- wujunjie&youhuatech.com
-45011
- Ming Dynasty AvantLexa Firm
- James Kendrick Sneckner
- jamesthinkpad&gmail.com
-45012
- Miraeson
- SangHyun Baek
- billy&miraeson.com
-45013
- Beijing Gehua CATV Network Co.,Ltd.
- Dongxi Wu
- wudongxi&bgctv.com.cn
-45014
- Andra sp. z o. o.
- Piotr Szczerek
- snmp&andra.com.pl
-45015
- foo.sh
- Timo Mäkinen
- iana&foo.sh
-45016
- Kouba & Partner
- Martin Kouba
- iana&kouba.at
-45017
- I3 Comércio de Computadores Ltda Epp
- Paschoal Mazziero Neto
- paschoal&i3si.com.br
-45018
- QualiStream
- Romary Sonrier
- rsonrier&qualistream.com
-45019
- Infinite AI, Inc.
- Derek Knutsen
- dknutsen&infiniteai.com
-45020
- Bitnasium Co., Ltd.
- Utthawit Ratchatapoom
- utthawit&gmail.com
-45021
- Health Plan Partners LLC
- Robert Butler
- robert.butler&hpprx.com
-45022
- digivod gmbh
- Karsten Fourmont
- k.fourmont&digivod.de
-45023
- Chair Four Development Group LLC
- Daniel Sutcliffe
- dans&chairfour.com
-45024
- BTS Software Solutions, LLC
- Erich Izdepski
- erich.izdepski&bts-s2.com
-45025
- Fujitsu Hokuriku Systems Limited
- Takiguchi Naruhito
- takiguti&jp.fujitsu.com
-45026
- Mynavi Corporation
- Hiroaki Suzuki
- suzuki.hiroaki&mynavi.jp
-45027
- The Center For Mental Health
- Jason Adragna
- it&centermh.org
-45028
- Debugo
- Nicolas CHAUVENET
- nicolas&debugo.fr
-45029
- Fengyz Technology CO.,Ltd.
- Yuanzhen Feng
- fengyuanzhen.osb&vsc.com
-45030
- Lagopus switch project
- Yoshihiro Nakajima
- ynaka&lagopus.org
-45031
- Engineering Centre Energoservice LLC
- Vladimir Bovykin
- f.orlov&ens.ru
-45032
- JustNow
- Jordi Cabré
- jc.justnow&gmail.com
-45033
- synyx GmbH & Co. KG
- Marc Sommer
- sommer&synyx.de
-45034
- Millimetrica s.r.l.
- Aldo Cagno
- a.cagno&millimetrica.it
-45035
- TelSIP Communication
- Benoit Raymond
- braymond&telsip.ca
-45036
- NIC Hosting
- Juraj LUTTER
- juraj&lutter.sk
-45037
- Hauke Bartsch
- Hauke Bartsch
- hbartsch&ucsd.edu
-45038
- Enman
- Emmanuel Poitier
- contact&enman.fr
-45039
- Central Bank of the Republic of Azerbaijan
- Rafi Rahimov
- rafi_rahimov&cbar.az
-45040
- BBH Media
- Kris Reeves
- kris.re&bbhmedia.com
-45041
- Vieira Filho Tecnologia Eletronica
- Paulo Steigleder
- paulo.steigleder&vieirafilho.ind.br
-45042
- Officeworks Ltd
- Stephen Hart
- shart&officeworks.com.au
-45043
- Argus Hosting, LLC
- Derick Pelser
- tech&arguscloud.net
-45044
- TangoRythm
- Bilel Hawari
- bilel&tangorythm.com
-45045
- DELNET
- Jacques DELMAS
- officiel&delnet.fr
-45046
- lpk
- Lutz-Peter Kurdelski
- lutz-peter&kurdelski.com
-45047
- Crypto Software Chryselius
- Toralf Chryselius
- toralf&chryselius.de
-45048
- MARIA - DEBORA
- Łukasz Piotrowski
- lpiotrowski&objectivcode.com
-45049
- Gudok LLC
- Michael Dokolin
- mail&ipgudok.com
-45050
- Bjørn Ludvig Langaas Johansen
- Bjørn Ludvig Langaas Johansen
- iana-pen&bjornj.no
-45051
- Finalsite
- Carl P. Corliss
- carl.corliss&finalsite.com
-45052
- SequoiaDB Ltd.
- Tao Wang
- taoewang&sequoiadb.com
-45053
- Information and Telecom Systems India Pvt. Ltd.
- Milind Pandharipande
- pmilind&info-telecomsys.com
-45054
- Tony Ditchfield
- Tony Ditchfield
- tony.ditchfield&gmail.com
-45055
- ISAE
- David MOUCHOIR
- david.mouchoir&isae.fr
-45056
- Kassenärztliche Vereinigung Schleswig-Holstein
- Sven Grünewald
- sven.gruenewald&kvsh.de
-45057
- COPALP
- Jerome FOLLUT
- jf&copalp.com
-45058
- CCP Games
- Sturla Thorsson
- sturla&ccpgames.com
-45059
- Bauduin Raphaël
- Bauduin Raphaël
- rb&raphinou.com
-45060
- Otis R Bowen Center for Human Services, Inc
- Joseph Van Overberghe
- joe.vanoverberghe&bowencenter.org
-45061
- Gymnasium Geretsried
- Wild Axel
- Axel.Wild&gymger.de
-45062
- Southern Cancer Center
- Lauren Pettis
- lauren.pettis&southerncancercenter.com
-45063
- SEAtech Technology Inc
- Pengfei Hu
- hupengfei&seatech-global.com
-45064
- China Mobile Hong Kong Company Limited
- Komix Hui
- komixhui&hk.chinamobile.com
-45065
- Insyde
- Y.C. Lin
- yc.lin&insyde.com
-45066
- SIP Cantabria S.L.
- Luis Carlos Peña Bocos
- luis&sipcantabria.net
-45067
- Dude Solutions Inc.
- Wes Carver
- IANAAdmin&dudesolutions.com
-45068
- PROTECH SYSTEMS PRIVATE LIMITED
- ATUL BAL
- protech&aprotech.com
-45069
- TOMinf Tomasz Tomaszewski
- Tomasz Tomaszewski
- tominf&tominf.com
-45070
- Reservoir Labs, Inc.
- Nicole Leung
- leung&reservoir.com
-45071
- tetraguard systems GmbH
- Stefan Kistner
- skistner&tetraguard.de
-45072
- Catalyst Paper
- Karim Dhanani
- karim.dhanani&catalystpaper.com
-45073
- Pacific Seafood Group
- Brent Glasgow
- oid&pacseafood.com
-45074
- TTSSB corp
- Balaji Sunder Rajan
- bsfrc_2000&yahoo.com
-45075
- Electron Jungle, LLC
- Kevin Wagner
- iana&electronjungle.com
-45076
- HamLogin.com
- Tyler Sarna
- hamlogin&hamlogin.com
-45077
- Sestek Ses ve Iletisim Bilgisayar Teknolojileri San. ve Tic. A.S.
- M. Levent Arslan
- levent.arslan&sestek.com
-45078
- QoS Solutions
- Jeffrey Thomas
- jthomas&qos-solutions.com
-45079
- i2p informatikai kft.
- Rózsahegyi Zsolt
- info&i2p.hu
-45080
- Kerio Technologies, Inc.
- Martin Meduna
- hostmaster&kerio.com
-45081
- Increase Qingdao Information Technology Co., Ltd.
- Zhengxin Sun
- sunzx&qdincrease.com
-45082
- PT. Tekno Inovasi Asia
- Rachmat Kusnadi
- rachmat.kusnadi&teknoasia.com
-45083
- Intility AS
- Arne Klæboe
- arne.klaeboe&intility.no
-45084
- Arbeitsgemeinschaft Dresdner Studentennetz
- Sebastian Schrader
- software&wh2.tu-dresden.de
-45085
- Bibliotheca Alexandrina
- Mohamed Ellotf
- Sysadmin&bibalex.org
-45086
- Advanced Imaging Technologies (Pty) Ltd
- Jacques Basson
- basson&ait-sa.com
-45087
- Institut Catala de Finances
- Josep Maria Guiu Baiget
- sistemes&icf.cat
-45088
- Volkswagen Møller Bilfinans AS
- Jan-Fredrik Kleven
- jfk&vwfs.no
-45089
- ICANN
- Naela Sarras
- naela.sarras&icann.org
-45090
- Mushroom Networks, Inc.
- Cahit Akin
- hakin&mushroomnetworks.com
-45091
- Cisco Sera
- J. Huxley Barbee
- barbee&ciscosera.com
-45092
- Silectica
- Eddie Luaces
- eddie.luaces&silectica.com
-45093
- SUMOMO Computer Association
- Randy Li
- tp&soulik.info
-45094
- UAB "VAATC"
- Darius Palšis
- dariusp&vaatc.lt
-45095
- INAF - Osservatorio Astrofisico di Arcetri
- Francesco Tribioli
- tribioli&arcetri.inaf.it
-45096
- INTERNATIONAL MEDICAL SOLUTIONS INC.
- VITTORIO ACCOMAZZI
- vaccomazzi&imstsvc.com
-45097
- Graphite Systems, Inc.
- Mark Himelstein
- mark&graphitesystems.com
-45098
- Ex Cathedra Solutions Ltd.
- Stephen Durbin
- noc&excathedra.co
-45099
- Pentaho Corporation
- Ryan Schoeffler
- rschoeffler&pentaho.com
-45100
- Cloud Vision Networks Technology Co.,Ltd. (cvn)
- William Yu
- yweiquan&cvnchina.com
-45101
- Yew Tree Services, Inc.
- Ronaldo Chan
- loloski&yahoo.com
-45102
- Yawns.com Limited
- Kevin Iddles
- domain.admin&yawns.com
-45103
- Satel Spain, S.L.
- Javier de Elías
- javier.elias&satelspain.com
-45104
- infoworxx GmbH
- Sebastian Lemke
- s.lemke&infoworxx.de
-45105
- Samsung Poland R&D Center
- Sebastian Cis
- s.cis&samsung.com
-45106
- Subsentio
- Shawn Hannon
- Shawn.Hannon&subsentio.com
-45107
- IntegraOptics Inc
- Jean Sullivan
- jsullivan&integraoptics.com
-45108
- Jetmobile
- Jean-Francois d'Estalenx
- webmaster&jetmobile.com
-45109
- Chaos Labs OOD
- Trayan Azarov
- trayan.azarov&chaoslabs.bg
-45110
- IzumoBASE, Inc.
- Tomohumi Mutuda
- mutuda&izumobase.com
-45111
- Elbrus-RW
- Alex Kushick
- alex.kushick&elbrus-r.com
-45112
- Christian Wilhelmi
- Christian Wilhelmi
- christian.wilhelmi&chriwi.net
-45113
- OPTIMANS
- Christopher Niznik
- support&optimans.com
-45114
- PALS Elektronik
- Cihat Aydemir
- cihat.aydemir&pals.com.tr
-45115
- Ajenti Solutions
- Faadiel Hendricks
- faadiel.hendricks&gmail.com
-45116
- LoJack Corp.
- Pedro Pinheiro
- ppinheiro&lojack.com
-45117
- University of North Carolina at Charlotte
- Kevin Edwards
- kevin.edwards&uncc.edu
-45118
- ehaaihee
- Michal Golebiowski
- michal.golebiowski&hotmail.co.uk
-45119
- SBONGILE PROJECT
- jose manuel ernesto chunguane
- suparsquare&outlook.com
-45120
- iba AG
- Manuel Koenig
- manuel.koenig&iba-ag.com
-45121
- Hangzhou Guangwei Technology Co., Ltd
- Lizhong Liu
- lizhong.liu&hotmail.com
-45122
- M & T Bank Corporation
- Jack Stewart
- jpstewart&mtb.com
-45123
- Suzhou Industrial Park Kejia Automation Co., Ltd
- Salina Yu
- salina&kejia.com
-45124
- De Haan
- Martijn de Haan
- mdehaa&hotmail.com
-45125
- Netcom Europa S.L.
- Mario Emmanuel
- info&netcomeuropa.com
-45126
- Sarada Gummadi MD PA
- Sarada Gummadi
- vsarada&hotmail.com
-45127
- ProfitBricks GmbH
- Jan Krause
- jan.krause&profitbricks.com
-45128
- Infotrage Limited
- Petr Kutalek
- operations&infotrage.com
-45129
- BID Initiative Tanzania - PATH
- Henry Mwanyika
- hmwanyika&path.org
-45130
- r3k
- Markus Witt
- pen&feuerrot.org
-45131
- Onelogin, Inc.
- Christian Pedersen
- ops&onelogin.com
-45132
- ADD-Engineering BV
- Ed Gouweloos
- pen.gouweloos&add.nl
-45133
- Kristian Söderholm
- Kristian Söderholm
- kristian&codepusher.org
-45134
- XCore Company Limited
- Naveed Alam Khan
- pathan.pk&hotmail.com
-45135
- AQUASOFT spol. s r.o.
- Radek Nemec
- r.nemec&aquasoft.eu
-45136
- e-Cop Pte Ltd.
- Albert Lim
- albert.lim&e-cop.net
-45137
- Nanoha Project
- Naoyuki MORITA
- nanoha&saigyoji.sakura.ne.jp
-45138
- Huwomobility Inc.
- Qinan Mao
- qinanmao&gmail.com
-45139
- Maruganzer
- Alexander Marugin
- alexander.marugin&gmail.com
-45140
- Green Vict Technology Co., Ltd
- Jevy Ren
- rjw&gvtt.com.cn
-45141
- Onomichi ikakikai Co., Ltd.
- Onomichi hirokazu
- info&onomichi-ika.com
-45142
- Corporate West Computer Systems, Inc.
- Evan Hall
- evan&corpwest.com
-45143
- Datawise Systems, Inc.
- Wilson Yee
- wilson&datawisesystems.com
-45144
- American Airlines Federal Credit Union
- Russell Keith
- russell.keith&aacreditunion.org
-45145
- Hivemind Engineering
- William Pratt
- postmaster&hivemindengineering.com
-45146
- Primestone Network
- Chuansen Liu
- liuchuansen&primestone.com.cn
-45147
- Datu Health
- Sanjay Sharma
- Sanjay.sharma&datuhealth.com
-45148
- Universität Koblenz-Landau
- Uwe Arndt
- arndt&uni-koblenz.de
-45149
- NoisyPeak
- Sergey Tatarchenko
- st&noisypeak.com
-45150
- WAGNER AG
- Sanche Baskaran
- sanche.baskaran&wagner.ch
-45151
- MEISLAB
- Simon Meister
- administrator&meislab.ch
-45152
- Parchment Inc.
- Andrew Lillie
- alillie&parchment.com
-45153
- Drillinginfo
- Robert Bastian
- robert.bastian&drillinginfo.com
-45154
- ELES, d.o.o., sistemski operater prenosnega elektroenergetskega omrezja
- Tomaz Rus
- tomaz.rus&eles.si
-45155
- Democratic Alliance
- Adrian Frith
- adrianf&da.org.za
-45156
- The IcedTea project (HeapStats)
- Shinji Takao
- oss-java-support&lab.ntt.co.jp
-45157
- Medgate AG
- Oliver Schmid
- administrator&medgate.ch
-45158
- Infracom S.p.A.
- Marco Bessone
- marco.bessone&infracom.it
-45159
- Heinz Nixdorf MuseumsForum GmbH
- Thorsten Fuchs
- tfuchs&hnf.de
-45160
- Jabatan Ketua Menteri Melaka
- Md Ridzuan bin Mohammad Latiah
- mdridzuan&melaka.gov.my
-45161
- YouCo Srl
- Filippo Ferrari
- filippo.ferrari&youco.eu
-45162
- GUANG DONG SMART ELECTRIC INFORMATION INDUSTRY CO.,LTD.
- PAN HONGKAI
- 13922302687&163.com
-45163
- Hafen-Entwicklungsgesellschaft Rostock mbH
- Rayk Zimmermann
- r.zimmermann&rostock-port.de
-45164
- Brulli Energia
- Laura Filippini
- laura.filippini&brulli.it
-45165
- IT Services, Loughborough University
- John Dodson
- si.supportcontracts&lboro.ac.uk
-45166
- Itaipu Binacional
- Jacson Querubin
- querubin&itaipu.gov.br
-45167
- Redgates.com
- Karl Redgate
- Karl.Redgate&gmail.com
-45168
- krumedia GmbH
- Michael Krutwig
- office&krumedia.de
-45169
- Tahoe Forest Health System
- Michael Soule
- NetworkTeam&TFHD.COM
-45170
- The Baupost Group, L.L.C.
- Greg Smith
- baupostinfosec&baupost.com
-45171
- Gareth Morgan Investments
- Robert Pearce
- robertp&gmi.co.nz
-45172
- Stronghold, Ltd.
- Matt Walker
- matt.walker&strongholdlimited.com
-45173
- The Furukawa Battery Co.,Ltd
- Osamu Yuzawa
- a-tominaga&furukawadenchi.co.jp
-45174
- Eyecom Telecommunication Equipments Ltd
- Master Guan
- master&eyecom-telecom.com
-45175
- NGI SpA
- NGI Network Group
- network&ngi.it
-45176
- Mirantis Inc
- Alexey Rogusskiy, Scale Team Lead
- unix.linux.aix&gmail.com
-45177
- Sapientier Development
- John W Davidson
- jwdavidson&gmail.com
-45178
- Direktion der Justiz und des Innern des Kantons Zuerich
- Simon Giger
- simon.giger&ji.zh.ch
-45179
- Jablotron Alarms a.s.
- Karel Hladik
- hladik&jablotron.cz
-45180
- Rolls-Royce Marine
- Oscar Endre Edvardsen
- oscar.edvardsen&rolls-royce.com
-45181
- AVSystem
- Danilo Mitera
- d.mitera&avsystem.com
-45182
- bkaiser GmbH
- Bruno Kaiser
- bruno&bkaiser.com
-45183
- Access Control Services Ltd
- Russell Martin
- rmartin&xplan.com
-45184
- Patrick Kalkman
- Patrick Kalkman
- snmp&pakalkman.nl
-45185
- SCA Skog AB
- Magnus Tjärnskog
- magnus.tjarnskog&sca.com
-45186
- frazz.se
- Franz Levin
- iana&frazz.se
-45187
- Amber Technical Solutions Ltd
- Paul Mailes
- contact&ambertechnical.co.uk
-45188
- Vzajemna, d.v.z.
- Rok Goli
- it_app&vzajemna.si
-45189
- Genplus Pte Ltd
- LIM CHOON BOON
- limcb&genplus.sg
-45190
- Peaxy, Inc.
- Giordano Beretta
- gberetta&peaxy.net
-45191
- Simple Finance Technology Corp
- Miah Johnson
- ops&simple.com
-45192
- Lonmin
- Simon Bezuidenhout
- simon.bezuidenhout&lonmin.com
-45193
- TeraStream
- Kristian Larsson
- kristian.larsson&t-systems.se
-45194
- Oryx Embedded
- Clément Zeller
- info&oryx-embedded.com
-45195
- Beijing 35one Technology Development Co., Ltd
- MoYusheng
- moyusheng&35one.com
-45196
- Of Modems and Men
- Nick Kamenyitzky
- nick&kamenyitzky.com.au
-45197
- C.S.C.D.G.R
- Richard Mantha
- manthar&cscdgr.on.ca
-45198
- Weichert Lead Network, Inc
- Arthur Quintalino
- aquintalino&wlninc.com
-45199
- Lite-On Power System Solutions
- Jing Shao
- jing.shao&liteon.com
-45200
- Reserve Bank Of Australia
- Ronnie Sidhu
- SidhuR&rba.gov.au
-45201
- BBright
- Gael Martin
- gael.martin&bbright.com
-45202
- Fachhochschule Potsdam
- Stephan Schier
- it-service&fh-potsdam.de
-45203
- Synergy Consulting Ltd.
- Andrej Sandyrov
- andrej.sandyrov&synergy.lt
-45204
- Four Horsemen
- Lionel Mehl
- ldapadmin&sanemail.de
-45205
- Richard Frostell
- Richard Frostell
- rich_f01&yahoo.com
-45206
- Quintron Systems, Inc
- Craig Armstrong
- wcarmstrong&quintron.com
-45207
- healcerion
- lyle chung
- lyle&healcerion.com
-45208
- GSS International Group
- Riaz Farhanian
- riaz.farhanian&gssint.com
-45209
- Altostratus Oy
- Timo Kälviäinen
- timo.kalviainen&instepsoftware.fi
-45210
- DigiSeq Limited
- Colin Tanner
- colin.tanner&digiseq.co.uk
-45211
- Data Control Ltd
- Nihar Mohanta
- nihar.mohanta&datacontrol-ltd.com
-45212
- Vecture Inc.
- Eric Roman
- eroman&vectureinc.com
-45213
- Municipal Parking Services, Inc.
- Dave Collins
- dave&mpspark.com
-45214
- Community Campaign (Hart)
- James Radley
- iana&jradley.com
-45215
- Matchpoint Systems, Inc.
- Ross Dreyer
- rdreyer&matchpointsystems.com
-45216
- Cyprus Telecommunications Authority (CYTA)
- Charalambos Charalambous
- charalambos.a.charalambous&cyta.com.cy
-45217
- Large Display Solutions International ltd.
- Pere Pons
- pere&largedisplaysolutions.com
-45218
- Mesosphere
- Lukas Loesche
- lukas&mesosphere.io
-45219
- Telecomax
- John Badie
- jbadie&telecomaxgroup.com
-45220
- eGO Travel & Leisure AG
- Stoyan Mitkov
- smitkov&mygo7seas.de
-45221
- AMP
- Anand Gulla
- anand_gulla&amp.com.au
-45222
- XpoLog Ltd.
- Ziv Eylon
- ziv&xpolog.com
-45223
- FASII Information Technology
- Weifeng Yang
- wfyang&fasii.com
-45224
- Wireless Sensors LLC
- Guilherme Goretkin
- goretkin&goretkin.com
-45225
- Guangzhou Netzone Inc.
- Ansel Choi
- cai&netzone.com
-45226
- Allicient
- Peter Maxwell
- peter&allicient.co.uk
-45227
- Okinawa Institute of Science and Technology Graduate University
- Tim Dyce
- tim.dyce&oist.jp
-45228
- Lumagate AB
- Tobias Wold
- tobias.wold&lumagate.com
-45229
- nyantec UG (haftungsbeschränkt)
- Mikael Voss
- mvs&nyantec.com
-45230
- RCD Radiokomunikace spol. s r. o.
- Vaclav Korecek
- korecek&rcd.cz
-45231
- Liverock Technologies
- Toshihide Hosotani
- thosotani&liverock-tech.com
-45232
- Hellenic Ministry of Foreign Affairs
- Gerasimos Melissaratos
- gmelis&mfa.gr
-45233
- Guangzhou Tongrui Electronic Electronic Technology Co.,Ltd
- Dimon Zeng
- zlpingcn&163.com
-45234
- Pennsylvania State Education Association
- James Karom
- jkarom&psea.org
-45235
- ConfirmSign S.L.
- Frankie Gómez
- confirmsign&confirmsign.com
-45236
- Ferz corp.
- ALEXANDR SVYATOV
- a.svyatov88&gmail.com
-45237
- Context Relevant
- Jason Lucas
- jlucas&contextrelevant.com
-45238
- City of Oregon City
- David Knoll
- dknoll&ci.oregon-city.or.us
-45239
- RosReserv
- Kostukov Ivan
- licensing&rosreserv.ru
-45240
- International Capital & Management Company
- Robert Ziegler
- zieglerr&icmcvi.com
-45241
- fuzzcat.net
- Michael L Martin
- mmartin4242&gmail.com
-45242
- INGEBI
- Juan Vera
- juan&dna.uba.ar
-45243
- La Boulgour Compagnie
- Bruno Beaufils
- bruno&boulgour.com
-45244
- IJM Systems
- Ian Macdonald
- ianmac51&gmail.com
-45245
- SAS CALVI Célestin
- CALVI OLIVIER
- contact&calvibois.fr
-45246
- EcoCooling Ltd
- James Dawson
- JamesDawson&ecocooling.org
-45247
- Triple Domain Vision Co., Ltd.
- philip chang
- philipchang&tdv.com.tw
-45248
- NetOcean
- Leander Schäfer
- info&NetOcean.de
-45249
- Banco Macro S.A.
- Leandro Curci
- leandrocurci&macro.com.ar
-45250
- Habr LLC
- Vadim Rybalko
- servers&tmtm.ru
-45251
- axelIT Üzletfejlesztési Kft.
- Rózsahegyi Zsolt
- info&axelit.hu
-45252
- mDAKS GmbH
- Leo Rave
- rave&mDAKS.com
-45253
- RMB Capital Management, LLC
- Brian Hettinger
- bhettinger&rmbcap.com
-45254
- Shouei Denshi Kenkyuusho Co.,Ltd.
- Satoshi Matsumoto
- matsumoto&shouei.co.jp
-45255
- Dallas Delta Corp
- Fred Villella
- fred.villella&dallasdelta.com
-45256
- Foreks Bilgi Iletisim Hiz. A.S.
- abidin sunar
- abidin.sunar&foreks.com
-45257
- InterConnectData
- Mark Galvin
- snmp-pen-admin&interconnectdata.net
-45258
- Lazaros Economou
- Lazaros Economou
- Lazaros.Economou&gmail.com
-45259
- Billo Systems Ltd. Co.
- Bill Ota
- billo.systems&gmail.com
-45260
- FYLDE MICRO LTD
- Thomas M Johnson
- tmjohnson&fyldemicro.com
-45261
- inAere Holdings
- Grant Pullen
- grant&inaere.com
-45262
- Raven
- Philipp Raabe
- philippraabe&web.de
-45263
- VTAS GmbH & Co. KG
- Stephan Brunner
- s.brunner&vtas.de
-45264
- Schaeffler Technologies AG & Co. KG
- Daniel Jarling
- daniel.jarling&schaeffler.com
-45265
- GMAURER
- Maurer
- guido.maurer&t-online.de
-45266
- bootix Technology GmbH
- Dirk Koeppen
- dirk&bootix.com
-45267
- ISSENDIS
- Didier Urban
- urban&issendis.com
-45268
- RusHydro
- Mihail Mayorov
- MayorovMV&rushydro.ru
-45269
- Rivasense Technologies Ltd
- Vladimirov Vladimir
- vvv&rivasense.com
-45270
- Electronic Certification Services SL
- Esteban Canalda
- ecs&sga.es
-45271
- Beco
- Zehrudin Becic
- zehrudin.becic&chello.at
-45272
- Szallas.hu Ltd.
- Norbert Attila Benkocs
- norbert.benkocs&szallas.hu
-45273
- independIT Integrative Technologies GmbH
- Dieter Stubler
- kontakt&independit.de
-45274
- EyaSys
- Lars J. Aas
- lars.aas&eyasys.no
-45275
- Energy Essentials Group B.V.
- Rob Lemmens
- it&energyessentials.nl
-45276
- iTEAM (Instituto de Telecomunicaciones y Aplicaciones Multimedia, Grupo COMM)
- Juan Carlos Guerri Cebollada
- jcguerri&dcom.upv.es
-45277
- Five Monkeys Code Factory
- Alberto Bambala Arbea
- alberto.bambala&vento.tv
-45278
- OpenCloud SL
- Xavier González del Águila
- xavi&viapps.org
-45279
- Strategy Object
- Nick Spirov
- netmngmt&strategyobject.com
-45280
- Premise Health
- Joseph Johnson
- joey.johnson&premisehealth.com
-45281
- Generac Power Systems Inc.
- Mike Calbaum
- mike.calbaum&generac.com
-45282
- LinkUp Networks
- Fred L. Templin
- fltemplin&acm.org
-45283
- T-Systems International GmbH
- Jens Eisenbeiss
- de-mail&t-systems.com
-45284
- ax86.net
- Tilman Blumenbach
- tilman&ax86.net
-45285
- Salience Systems Pty Ltd
- Gary Simmons
- gary.simmons&salience.net.au
-45286
- Morning Project Samurai
- Junya Kaneko
- jyuneko&hotmail.com
-45287
- GEOPRAEVENT AG
- Daniel Regenass
- daniel.regenass&geopraevent.ch
-45288
- Compania Logistica de Hidrocarburos CLH, S.A.
- Juan Marcos
- jmarcosm&clh.es
-45289
- unixadm.org
- Philippe Kueck
- dmiawticeenq6ryxcmbw2xqkdrews&protected32.unixadm.org
-45290
- Agentia pentru Agenda Digitala a Romaniei
- Gabriel DUMITRU
- gabriel.dumitru&aadr.ro
-45291
- DOCTORS CENTER HEMATOLOGY & ONCOLOGY GROUP, PSC
- CESAR MALDONADO, MHMS
- dcc2003&gmail.com
-45292
- DOCTORS' CENTER HEMATOLOGY & ONCOLOGY GROUP BAYAMON, PSC
- CESAR MALDONADO, MHMS
- dcc2003&gmail.com
-45293
- Transport Network llc
- Minh Pham
- pxm5489&att.net
-45294
- ANEAC Co., Ltd.
- Kevin Tang
- support&aneac.net
-45295
- BTT Bilgi Teknoloji Tasarim Ltd
- Rim KHAZHIN
- rim&btt.com.tr
-45296
- Mazars
- Jayson Dudley
- jayson.dudley&mazars.co.uk
-45297
- T-21 Technologies, LLC
- Kevin Ancelin
- kancelin&t-21.biz
-45298
- Alea s.r.l.
- Giuseppe Merlino
- giuseppe.merlino&aleagames.com
-45299
- AMRTEC TECNOLOGIA IMPORTAÇÂO E EXPORTAÇÂO LTDA
- Daniel Alberto Percara
- dpercara&amrtec.com.br
-45300
- WatchDox LTD
- Guy Shrabany
- Admin&Watchdox.com
-45301
- Double B - Business, s.r.o.
- Damian Baran
- damian.baran&doublebb.sk
-45302
- SOIN Soluciones Integrales S.A,
- Nelson Baltodano
- nelsonb&soin.co.cr
-45303
- Industrial Software Co
- Ivan Petrov
- ivan.d.petrov&gmail.com
-45304
- ByteLogix
- Cole Minnaar
- cole.minnaar&bytelogix.co.za
-45305
- Asyne inc.
- Hugo Bernier
- hbernier&gmail.com
-45306
- DE-CIX Management GmbH
- Philippe Kueck
- syseng&de-cix.net
-45307
- Tracsis plc
- David Turner
- d.turner&tracsis.com
-45308
- Born Inventors BV
- Jeroen Verheul
- j.verheul&borninventors.com
-45309
- Needham Public Schools
- Paul Messias
- paul_messias&needham.k12.ma.us
-45310
- Universidade Estadual de Santa Cruz
- Raimundo Campos Simoes
- rcsimoes&uesc.br
-45311
- GHT Co., Ltd
- yong li
- li.yong&ghtchina.com
-45312
- Instituto para os Assuntos Cívicos e Municipais Macau
- Lei Seak Tou
- leist&iacm.gov.mo
-45313
- iiPAY Ltd
- Guy Webb
- techsupport&iipay.com
-45314
- CCV Deutschland GmbH
- Stefan Marxen
- S.Marxen&de.ccv.eu
-45315
- KRKA, tovarna zdravil, d. d., Novo mesto
- Zvonko Rangus
- zvonko.rangus&krka.biz
-45316
- devlab
- Corrado Colombo
- rs232&email.it
-45317
- SAU
- Maikel Ortega Hernandez
- maikeloh&gmail.com
-45318
- Rosa Khutor LLC
- Konstantin Komzolkin
- noc-adm&rosaski.com
-45319
- NGENIX
- Dmitry Krikov
- noc&ngenix.net
-45320
- ActiStuff
- Vladislav Zhuravlev
- dev&actistuff.com
-45321
- Triumph Bancorp, Inc.
- Brent Buchanan
- it&triumphllc.com
-45322
- GigaEnergy Inc.
- Felix Lin
- felix&felix-lin.com
-45323
- BIORETICS SRL
- MATTEO ROFFILLI
- roffilli&gmail.com
-45324
- Business Solutions Adviser
- Vitaly Lyanke
- VLyanke&bs-adviser.ru
-45325
- roo.ch
- Enrique Róo Moares
- enrique.roo&roo.ch
-45326
- Yves Durce ent.
- Yves DURCE
- yves.durce&sfr.fr
-45327
- NATAJA Maciej Kozuch
- Maciej Kozuch
- maciej.kozuch&nataja.pl
-45328
- KOSHIN DENKI KOGYO CO., LTD.
- Michihiro Kobayashi
- mchkoba&koshindenki.com
-45329
- Kristin School
- Tony Bigby
- tbigby&kristin.school.nz
-45330
- Fineline Solutions Ltd.
- Patrick Keys
- patrick&fineline.uk.com
-45331
- San Fernando Valley Community Mental Health Center, Inc.
- Stephen Dowd
- pki&sfvcmhc.org
-45332
- East Side Oncology Clinic PLLC
- Nagender Mankan MD
- eastsidehemoncology&gmail.com
-45333
- NeatApps, Inc.
- Dave Neathery
- dave&neatapps.com
-45334
- Nextys
- Ramon Zambelli
- ramon.zambelli&nextys.com
-45335
- Matthias Blümel IT-Dienstleistungen
- Matthias Blümel
- info&bluemel-it.de
-45336
- Microbase
- Antonis Psaras
- apsaras&microbase.gr
-45337
- voria.net
- Robert S. Quattlebaum
- darconeous&gmail.com
-45338
- Tableau Software, Inc.
- Braxton Ehle
- behle&tableau.com
-45339
- JSC "Housing Construction Savings Bank of Kazakhstan"
- Glebova Serafima
- glebova.s&hcsbk.kz
-45340
- Half-Baked Software
- Michael Thomas Richter
- ttmrichter&gmail.com
-45341
- NEXT Srl
- ing. Denis Ioan
- d.ioan&next-italia.it
-45342
- IWD Ltd.
- Sandor Takacs
- sandor.takacs&iwd.hu
-45343
- Thum+Mahr GmbH
- Benedikt Geltenpoth
- bgeltenpoth&thummahr.de
-45344
- ZhenJiang College
- Teng Bin
- zjtengbin&163.com
-45345
- Smithee, Spelvin, Agnew & Plinge, Inc.
- Meadhbh Hamrick
- meadhbh&smithee.us
-45346
- Velocloud Networks, Inc.
- Christopher Szeles
- chris&velocloud.net
-45347
- The Centers for Families and Children
- Dennis Anderson
- it.contact&thecentersohio.org
-45348
- Megvii Inc.
- Kai Jia
- jiakai&megvii.com
-45349
- VGNet Networking
- J.H. van Gils
- support&vgnet.nl
-45350
- jorde.it
- Stefan Jorde
- stefan&jorde.it
-45351
- XPSoft sas
- Luca Poretti
- poretti&xpsoft.it
-45352
- AMERGINT Technologies Inc.
- Brian Willette
- bwillette&amergint.com
-45353
- BRS Sistemas Eletrônicos
- Marcelo Richter
- marcelo&brs.ind.br
-45354
- E2G srl
- Marco Nicoloso
- marco.nicoloso&e2g.it
-45355
- Staffordshire Police
- John Dunning
- John.Dunning&staffordshire.pnn.police.uk
-45356
- Liveblock Auctions International
- Roe Peterson
- roe&liveblockauctions.com
-45357
- CUBENet GmbH
- Karsten Schramm
- kschramm&cube.net
-45358
- Integral Business Solutions
- Peter Barry
- pbarry&go-integral.com
-45359
- ARC Informatique
- Benoît LEPEUPLE
- pm&arcinfo.com
-45360
- Valley Christian School
- James Paul
- jppaul&valleybible.com
-45361
- OC Software Engineering
- Clay Cover
- ccover&ocsofte.com
-45362
- Coca-Cola Erfrischungsgetraenke AG
- Sandra Seitz
- sandra.seitz&cceag.de
-45363
- Advanced Training LLC
- Ruslan V. Karmanov
- info&atraining.ru
-45364
- TRIADE InformationSystems GmbH
- Klaus Eulenbach
- klaus.eulenbach&triade.de
-45365
- Om Vindhyavasini College of IT & Management
- Neelkamal Nimavat
- nimavat&omvvim.edu.in
-45366
- Cohere Technologies
- Ofer Avitzur
- Ofer.avitzur&cohere-technologies.com
-45367
- SilverTip Marine Inc.
- Ian McEachern
- imceachern&silvertiptel.com
-45368
- Amida Technology Solutions
- Dmitry Kachaev
- dmitry&amida-tech.com
-45369
- MVZ Labor Dr. Quade und Kollegen
- Dr. Carsten Bartling
- bartling&lab-quade.de
-45370
- ID TECH
- David Dai
- davidd&idtechproducts.com
-45371
- AV
- Mikhail Malygin
- ldnetru&gmail.com
-45372
- Professional Software Design Pty Ltd
- Neil Anderson
- neila&psdlogistics.com
-45373
- Speech Technology Center Limited
- Evgeniy Zelenko
- registr&speechpro.com
-45374
- i-SOLUTIONS HEALTH GmbH
- Technischer Service
- technik&i-solutions.de
-45375
- Znuny GmbH
- Roy Kaldung
- rk&znuny.com
-45376
- PT. Mahardika Putra Mahkota
- Head of IT Department
- itdepthead&mpmoffice.com
-45377
- Air Liquide IT
- PEN Support Team
- oid.support&airliquide.com
-45378
- Beijing Uxsino software CO.,Ltd
- Jianhui Wang
- wangjh&uxsino.com
-45379
- iCRCo, Inc
- Scott Shannon
- sshannon&icrcompany.com
-45380
- Happy Crow Enterprises, LLC
- Tim Taylor
- tim.taylor&happycrow.com
-45381
- iCode Global, LLC
- Scott Shannon
- scott.shannon&icodeglobal.com
-45382
- Huf Secure Mobile
- Daniel Deuter
- daniel.deuter&huf-group.com
-45383
- SHARP Corporation Communication Systems Division
- Kei Nakayama
- nakayama.kei&sharp.co.jp
-45384
- SERgroup Holding Europe GmbH
- Klaus Eulenbach
- klaus.eulenbach&ser.de
-45385
- 4GTSS Corporation W.L.L.
- Osama Abuamara
- Osama.taha&4gtss.com
-45386
- PeopleLogic Corporation
- Waqas Athar
- waqas.athar&peoplelogic.com.pk
-45387
- NCC Group PLC.
- Mr Chris Middleton
- chris.middleton&nccgroup.com
-45388
- SSV Software Systems GmbH
- Eduard Neufeld
- ene&ssv-embedded.de
-45389
- LV=
- John Chasty
- john.chasty&lv.com
-45390
- Alef Mobitech Inc.
- Steven Spencer
- steven.spencer&alefmobitech.com
-45391
- PLC Group
- Nasir Mahmood
- nasirm&plcgroup.com
-45392
- Quadro Group LLC
- Alexander Lyakhov
- alyakhov&quadrogroup.ru
-45393
- OSM GmbH
- Thomas Schiller
- t.schiller&osm-gmbh.de
-45394
- Mangstor Inc
- Ashwin Kamath
- ashwin&mangstor.com
-45395
- Secrétariat général de l'enseignement catholique
- Olivier Perrichon
- o-perrichon&enseignement-catholique.fr
-45396
- Dejero Labs. Inc
- IT Support
- itsupport&dejero.com
-45397
- ASFINAG Maut Service GmbH
- Alexander Coreth
- service&asfinag.at
-45398
- Segmint, Inc.
- Keith Veleba
- keith.veleba&segmint.com
-45399
- Omemee Engineering Group
- Scott MacEachern
- scottm&enggrp.com
-45400
- Candid Security Solutions LLC
- Csaba Kadar
- csaba&candid-ss.com
-45401
- Unitron NV
- Stephen Deleu
- stephen.deleu&unitrongroup.com
-45402
- Arvet Bank Operations, INC.
- Mike Calvi
- mcalvi&arvest.com
-45403
- ExchangeCore LLC
- Christopher Hougard
- chris&exchangecore.com
-45404
- TightVideo Ltd.
- Peter Volkov
- peter.volkov&tightvideo.com
-45405
- Lee County School System
- Ryan Hairyes
- rhairyes&lee.k12.nc.us
-45406
- BetEasy Pty Ltd
- Jaiwardhan Puri
- jaiwardhanp&beteasy.com.au
-45407
- Northwest Kits
- Nigel Vander Houwen
- nigel&nwkits.com
-45408
- Octavian Technology Ltd
- Eryk Bottomley
- eryk&octaviantechnology.com
-45409
- OneSoft Tecnologia S/A
- Paulo Rogerio Panhoto
- paulo.panhoto&flashtrader.com.br
-45410
- ISAMBERT
- ISAMBERT Patrick
- patrick.isambert&isambert.info
-45411
- Ultra Electronics - Varisys
- Marcin Jankowski
- marcin.jankowski&ultra-varisys.com
-45412
- HGH SYSTEMES INFRAROUGES
- THOMAS ANTHONY
- info&hgh.fr
-45413
- Global IQX
- Michael de Waal
- admin&globaliqx.com
-45414
- SHUYSKIY ZAVOD AKVARIUS LLC
- Alexandr Tridtsatov
- at&aqs.ru
-45415
- Repheka Haiti, Inc.
- Mario Malivert
- mmalivert&repheka.org
-45416
- Chengdu Chengxun Network Technologies Co., Ltd.
- Jason Deng
- admin&cxria.com
-45417
- HCO Computer Products /dba ZGO Tech Hosting
- Sam Jazaerli
- sjazaerli&zgohosting.com
-45418
- ABAST systems
- Oliver Schwarz
- oschwarz&nechigroup.com
-45419
- PhirePhly Design
- Kenneth W. Finnegan
- kennethfinnegan2007&gmail.com
-45420
- Strike XII Development
- Jairo Cantillo
- jairo&strikexii.com
-45421
- Nico Boehr
- Nico Boehr
- ianacontact&nicoboehr.de
-45422
- powerbrand marketing GmbH
- Patrick Schebek
- p.schebek&powerbrand.de
-45423
- Match.com L.L.C.
- James La Vacca
- james.lavacca&match.com
-45424
- The Ghosh Center for Oncology & Hematology
- Mindy Martin
- mmartin&theghoshcenter.org
-45425
- Kadlec Health System
- Mark Dickson
- mark.dickson&kadlec.org
-45426
- Soltec Technology Co., Ltd.
- Ying-Bin Haung
- rtarmy&gmail.com
-45427
- Xiamen Winer Technology Co.,Ltd
- ShiXu Dai
- daisx&winertech.com
-45428
- UrtheCast
- Aaron Yeung
- admin-uc&urthecast.com
-45429
- Instituto Federal Catarinense Campus Sombrio
- Marco Antonio Silveira de Souza
- marco&ifc-sombrio.edu.br
-45430
- Atlas Copco Rock Drills AB (Business Area MR)
- Tony Petersson
- tony.petersson&se.atlascopco.com
-45431
- Nanjing Lopu Co., Ltd.
- Yang Fei
- yangf&lopu.com.cn
-45432
- Cirrato Technologies AB
- Rob Pike
- robert.pike&cirrato.com
-45433
- Finivation Software
- Guido Belcic
- gbelcic&finivation.com
-45434
- Accel Frontline Ltd
- Rajesh Sharma
- rajesh.sharma&accelfrontline.in
-45435
- Cyprus University of Technology
- Andreas Mouskos
- andreas.mouskos&cut.ac.cy
-45436
- THALES Services Lab DT
- ISAMBERT Patrick
- patrick.isambert&thalesgroup.com
-45437
- TEOCO Corporation
- Zion Alfia
- ipadmin&teoco.com
-45438
- AI2M srl
- Marco Perego
- info&ai2m.eu
-45439
- Esterline Belgium bvba
- Stijn Gevels
- stijn.gevels&esterline.com
-45440
- BISS d.o.o.
- Franjo Žilić
- franjo.zilic&biss.hr
-45441
- Safe Internet, LLC
- Alexander Gusev
- smtp&cstech.ru
-45442
- Wrocław University of Technology
- Krzysztof Kołodziejczyk
- krzysztof.m.kolodziejczyk&pwr.edu.pl
-45443
- Arca Sistemi Scarl
- Michele Sandonini
- michele.sandonini&arcavita.it
-45444
- ecg.local
- Ralf Balzer
- balzer&manthey.it
-45445
- Kuantic SAS
- Mike O'Dowd
- modowd&kuantic.com
-45446
- Ministerio Publico de la Acusación
- Ing. Alejandro Azario
- aazario&mpa.santafe.gov.ar
-45447
- SOCIETE DU FIGARO
- Bruno Coutureau
- bcoutureau&lefigaro.fr
-45448
- UF Health Oncology - Baymeadows
- Kathy Politano
- kpolitano&21co.com
-45449
- Blue Krait Consulting Inc.
- Blair Sandberg
- blair.sandberg&bluekrait.com
-45450
- Parsec (Pty) Ltd
- Francois Joubert
- francoisj&parsec.co.za
-45451
- reBTSOFT
- Björn Ternes
- bjoern.ternes&gmail.com
-45452
- Instituto Medico Alexander Fleming
- Mario Cazeneuve
- mcazeneuve&alexanderfleming.org
-45453
- Banff Cyber Technologies Pte Ltd
- Alex Ngo
- alexngo&banffcyber.com
-45454
- Shanghai Digigrid Technology Co.,Ltd
- Ivy Jiang
- ivy.jiang&digigrid.com.cn
-45455
- John Wason
- John Wason
- wason&wasontech.com
-45456
- Galaxia Electronics Co., Ltd.
- Hong-rae, Kim
- hrkim&galaxia.co.kr
-45457
- Kanton Thurgau
- Patrik Stacher
- patrik.stacher&tg.ch
-45458
- VKBit Betrieb GmbH
- Matthias Fischer
- matthias.fischer&vkb.de
-45459
- Lonix Oy
- Jarmo Mitjonen
- jm&lonix.com
-45460
- Comfact AB
- Anders Tornqvist
- anders&comfact.com
-45461
- Pocos bv
- JordI Smits
- jordi&pocos.nl
-45462
- Delvag Luftfahrtversicherungs-AG
- Peter Berghaus
- servicedesk&delvag.de
-45463
- Federal Public Service Justice, Belgium
- David Roskams
- ict.infra.pen&just.fgov.be
-45464
- Verband Christlicher Pfadfinderinnen und Pfadfinder in Württemberg
- Frederik Held
- frederik.held&wuerttemberg.vcp.de
-45465
- Clear2Pay NV/SA
- Dieter Boden-Schelfthout
- dieter.boden&clear2pay.com
-45466
- PIXEL Sp. z o.o.
- Seweryn Kamiński
- s.kaminski&pixel.pl
-45467
- Vidat
- Jochen Ulbricht
- j.ulbricht&vidat.eu
-45468
- Avi Networks
- Anand Parthasarathy
- anpartha&avinetworks.com
-45469
- IQ Messenger
- Ramazan Aslan
- r.aslan&iqmessenger.com
-45470
- Azienda Ospedaliero-Universitaria di Bologna
- Luca Boccafogli
- luca.boccafogli&aosp.bo.it
-45471
- Triangle Wholefoods Collective Ltd.
- Pod Andrews
- pod&suma.coop
-45472
- Ebee Smart Technologies GmbH
- Robert Weyrauch
- iana&ebeesmarttechnologies.de
-45473
- Excelfore Corporation
- Anoop Balakrishnan
- admin&excelfore.com
-45474
- HfMT Hamburg
- Axel Schnellbügel
- axel.schnellbuegel&hfmt-hamburg.de
-45475
- MEYTEC GmbH
- Gerhard W. Meyer
- info&meytec.com
-45476
- StreamVue Ltd
- Sonia Griffiths
- hostmaster&streamvue.com
-45477
- ZOO Digital Group plc.
- Stuart Green
- stuart.green&zoodigital.com
-45478
- DIVA IT SIA
- Dmitrijs Petrovs
- dmitrijs.petrovs&divait.lv
-45479
- PXP Solutions Ltd
- James Russell
- hostmaster&pxp-solutions.com
-45480
- Packetwerk GmbH
- Sven Roethig
- s.roethig&packetwerk.de
-45481
- Galore Networks Private Limited
- Balaji Kulothungan
- balajik&ga-lore.com
-45482
- St Jude Medical
- Eric Crist
- ecrist&sjm.com
-45483
- FusionLayer, Inc.
- Rauno Haapaniemi
- snmp-admin&fusionlayer.com
-45484
- Siama Systems Inc.
- Marco Mascitto
- marco.mascitto&siamasystems.com
-45485
- SCUBI
- Gopal Padinjaruveetil
- gopal.padinjaruveetil&capgemini.com
-45486
- ACSS Communications Pty Ltd
- Alex Lodge
- AlexL&acsscomms.com.au
-45487
- Polydata Corporate
- Jing Kang
- jing.kang&polydata.com.cn
-45488
- KONAR
- Anton Myachin
- noc&konar.ru
-45489
- groupe-alpha
- Alain Mouilleron
- iana&groupe-alpha.com
-45490
- Nexperteam
- Nathan Van Overloop
- operations&nexperteam.be
-45491
- Gainde 2000
- Magatte MBAYE
- mmbaye&gainde2000.sn
-45492
- Connexin Software, Inc.
- Greg Anderson
- oid&connexinsoftware.com
-45493
- Media System Technologies Srl
- Giovanni Squassi
- gsquassi&gmail.com
-45494
- GISTEC
- Ibrahim Afaneh
- ibrahim.afaneh&gistec.com
-45495
- Konneka Information Technologies (formerly 'Konneka Bilgi ve Iletisim Teknolojileri Imalat Tic. Ltd. Sti.')
- Kursad Yusuf KONUS
- kykonus&konneka.com.tr
-45496
- Groupe ESB
- Kevin COTARD
- kevin.cotard&ecoledubois.fr
-45497
- Qucell
- Sung Hyun Park
- sunghyun.park&qucell.com
-45498
- Novella-R SIA
- Dmitrijs Petrovs
- dmitrijs.p&ivf.lv
-45499
- Janos
- Jan Van Nieuwenhove
- jan.van.nieuwenhove&gmail.com
-45500
- Virgin Technologies Inc
- Justin Miller
- justin&virgintechnologies.com
-45501
- Micro Instruments
- Francois van Jaarsveld
- francois&microinstruments.co.za
-45502
- nterra integration GmbH
- Cornelius Flöter
- cornelius.floeter&nterra.com
-45503
- 42 Solutions B.V.
- Stefan Roels
- snmp&42solutions.nl
-45504
- Synaptive Medical Inc.
- Monroe Thomas
- monroe&synaptivemedical.com
-45505
- Tox Foundation
- Sean Qureshi
- sean&tox.im
-45506
- Mida Solutions s.r.l.
- Mauro Franchin
- ict&midasolutions.com
-45507
- iMapData.com
- Jorge Dana
- jdana&imapdata.com
-45508
- Strich Labs
- Sarah Nordstrom
- oidadmin&strichlabs.com
-45509
- YourMembership
- Information Technology
- itmail&yourmembership.com
-45510
- BBMRI-ERIC
- Petr Holub
- petr.holub&bbmri-eric.eu
-45511
- Cogent Technologies Limited
- Ada Qi
- ada.qi&cogent-technologies.net
-45512
- Entergate AB
- Roger Bergstrand
- roger&entergate.se
-45513
- Hekatron Technik GmbH
- Klaus Fischer
- informatik&hekatron.de
-45514
- ShenZhen SNMP Link Electronics Co., Ltd.
- daniel zhang
- 542708124&qq.com
-45515
- Econocom-osiatis
- Eric Lapouyade
- eric.lapouyade&econocom-osiatis.com
-45516
- Valid Soluciones Tecnógicas S.A.U.
- José Carlos Santos García
- josecarlos.santos&valid.com.es
-45517
- GarantPlus Ltd
- Maxim Shabrov
- maxim&otx.ru
-45518
- Macnica Inc.
- Jiaqi Chen
- chen-j&macnica.co.jp
-45519
- Diamedica Sp. z o.o.
- Borys Stankiewicz
- telediamedica&gmail.com
-45520
- Actility
- Gilles LEFEVRE
- gilles.lefevre&actility.com
-45521
- OPENBASE
- PARK BYUNG WOOK
- bwpark&openbase.co.kr
-45522
- xipki.org
- Lijun Liao
- lijun.liao&gmail.com
-45523
- RFE Broadcast srl
- Luigi Fazio
- lfazio&rfebroadcast.com
-45524
- Advancapp
- Luis Costa
- info&advancapp.com
-45525
- Ubiqam LTD
- Dovalle Yankelovich
- Dovalle&ubiqam.com
-45526
- Snapper Services
- David Stamp
- david.stamp&snapper.co.nz
-45527
- Diehl AKO Stiftung & Co. KG
- Matthias Preissing
- matthias.preissing&diehl.com
-45528
- Joerg-Peter Hempel
- Joerg-Peter Johann Hempel
- mail&jphempel.eu
-45529
- vishmail.net
- Joerg-Peter Hempel
- mail&jphempel.eu
-45530
- Medien Service Untermain GmbH
- Peter Bethke
- bethke&msu.biz
-45531
- M.A.D.A.
- Dovalle Yankelovich
- Dovalle&MadaTechnologies.com
-45532
- Infinicore inc
- David Chen
- Dchen&infinicoreinc.com
-45533
- Red Arrow (Southampton) Group Limited
- Alex Martin
- iana&redarrow.co.uk
-45534
- WestNet
- Paul Cunnane
- paul.cunnane&westnet.ie
-45535
- Information Systems Dynamics
- Hakeem P. Fahm
- bills&isdynamics.com
-45536
- Rheinmetall Defence Electronics GmbH
- Herbst, Andre
- andre.herbst&rheinmetall.com
-45537
- NUAZ
- Dick Hofflamut
- dick.hofflamut&nuaz.fr
-45538
- PHARMAGEST INTERACTIVE
- Sebastien DEON
- sebastien.deon&pharmagest.com
-45539
- Domain fritze.org
- Stefan Fritze
- info&fritze.org
-45540
- Rueval S.A.
- Ricardo Arias
- rarias&rueval.com.uy
-45541
- Schneider Elektronik GmbH
- Jan Keßler
- jan.kessler&schneider-elektronik.de
-45542
- Orlando Utilities Commission
- Andy Bailey
- abailey&ouc.com
-45543
- Mekansal Yazilim
- Ömür YAVUZ
- omur.yavuz&intergis.com.tr
-45544
- IT Kimmig
- Alexander Kimmig
- info&it-kimmig.de
-45545
- Ormazabal
- SNMP Administrator
- licenses.electronics&ormazabal.com
-45546
- SECUWAVE CO,. LT
- PARK BYUNG WOOK
- bwpark&openbase.co.kr
-45547
- Wirtgen (China) Machinery Co., Ltd.
- Richard Shao
- richard.shao&wirtgen-china.com.cn
-45548
- Asian Hope Inc
- Lyle Kozloff
- lyle&asianhope.org
-45549
- Shenzhen Zontele Technologies Co., Ltd
- king zhu
- king.zhu&zontele.com
-45550
- Webstudio Information Technology Inc.
- Ruyi Wang
- webstudio&webstudio.com.cn
-45551
- VIPP
- CE NOYELLE
- cenoyelle&vippinterstis.com
-45552
- Unisys
- Abhineet Pandey
- abhineet.pandey&in.unisys.com
-45553
- GE Healthcare - Engineering
- METIVIER Maxime
- maximemetivier&ge.com
-45554
- Grupo JAMPIG S.A.S.
- Fabián E. Barón
- fbaron&jampig.co
-45555
- RDP
- Nechay Anton
- anechay&rdp.ru
-45556
- Triadic Industries, LLC
- Alex McWhirter
- alexmcwhirter&triadic.us
-45557
- SHENZHEN CAN TECHNOLOGY CO.,LTD
- Skye Zhao
- zhaoxiao&canpdu.com
-45558
- CJSC GROUP OF COMPANIES RENOVA
- Sergey Kulikov
- it&renova-group.ru
-45559
- Prevoty, Inc.
- Kunal Anand
- kunal&prevoty.com
-45560
- Inovapar Soluções LTDA.
- Antonio Calegare
- suporte&inovapar.com.br
-45561
- Masterclock, Inc.
- William Clark
- sysadmin&masterclock.com
-45562
- Capella Aerospace Systems Engineering Inc.
- Sean Hamilton
- seanh&capellaaero.com
-45563
- SOMNOmedics GmbH
- Jonas Zeiger
- jz&somnomedics.de
-45564
- Beijing SplendidTel Co.,Ltd.
- Marco Jun Peng
- marco.peng&splendidtel.com
-45565
- INTERBYSS S.R.L
- Alvin Nunez
- a.nunez&interbyss.com
-45566
- INTELMA CONSULTING Inc.
- Badis Omarouayache
- badis.omarouayache&intelmas.com
-45567
- Ticom Geomatics, Inc.
- Craig Hamilton
- chamilton&ticom-geo.com
-45568
- GoCardless Ltd
- James Cunningham
- webops&gocardless.com
-45569
- Core Network Dynamics
- Dragos Vingarzan
- dragos&corenetdynamics.com
-45570
- IQ Tel d.o.o.
- Ognjen Seslija
- ognjen.seslija&iqtel.rs
-45571
- Midfin Systems
- Shuvabrata Ganguly
- sganguly&midfinsystems.com
-45572
- awelten
- Roman Hector Bianco
- roman.bianco&awelten.com
-45573
- Western Michigan University Homer Stryker M.D. School of Medicine
- David Mitchell
- david.mitchell&med.wmich.edu
-45574
- Hellea SPRL
- Jean-Charles de Longueville
- iana.pen&hellea.net
-45575
- China Beijing Stegosaurus Technology Laboratory
- Sean.Zhu
- SeanZhu&163.com
-45576
- Hulu LLC
- Robert Minsk
- iana&hulu.com
-45577
- Shenzhen Sundray Technologies Company Limited
- MaoXing Qin
- qmx&sundray.com
-45578
- BroadQuest
- MI HYE, KIM
- mhkim&broadquest.co.kr
-45579
- Guangdong Nenkingtech Development Co,Ltd.
- MINXUAN CAO
- maxoncao&163.com
-45580
- DENTCAT
- Masood Behabadi
- masood&dentcat.com
-45581
- YICHUN YILIAN PRINT TECH CO.,LTD
- Chloe Sun
- chloe_lishan&sina.cn
-45582
- paysafecard.com Wertkarten GmbH
- Michael Postmann
- m.postmann&paysafecard.com
-45583
- Puminsoft Co.,Ltd.
- Pumin Duangmanee
- puminsoft&gmail.com
-45584
- OJSC "RIRT"
- Alexander Barskiy
- Barskiy_AA&rirt.ru
-45585
- Space Imaging Middle East (SIME)
- Spandan Kar
- spandan&dsi.co.ae
-45586
- Mythic Network
- Ilya Kogan
- ikogan&mythicnet.org
-45587
- Software & Service Center,Sichuan Changhong Electric Co.,Ltd
- Chuan Gu
- chuan.gu&changhong.com
-45588
- OLSPS
- Rikus Combrinck
- rikus&olsps.com
-45589
- Doc-Soft Ltd.
- Daniel KEKESI
- daniel.kekesi&docsoft.hu
-45590
- Mutesah General Investments ltd
- Golan Mutesah
- mutesah&yahoo.com
-45591
- Shenzhen Sungreat Communication Co.,LTD
- huangchuen
- 1320798537&qq.com
-45592
- Julius Clinical
- Sander Böhm
- admin&juliusclinical.com
-45593
- OpenREM
- Ed McDonagh
- pen&openrem.org
-45594
- Università Iuav di Venezia
- Boeretto Marco
- boeretto&iuav.it
-45595
- Reaktor 23
- Elias Bonauer
- info&reaktor23.org
-45596
- ICloud Innovation (Beijing) ltd.
- Weihua Li
- liweihua&icloudinno.com
-45597
- TESA Assa Abloy
- Julia Vila
- j.vila&tesa.es
-45598
- Mckinney Independent School District
- Robert Foster
- rfoster&mckinneyisd.net
-45599
- Network RADIUS SARL
- Alan DeKok
- aland&networkradius.com
-45600
- OX Service AG
- Markus Ruefenacht
- support&ors.ch
-45601
- Wikimedia Deutschland e.V.
- Silke Meyer
- noc&wikimedia.de
-45602
- Corvus Energy
- Nick Erb
- nerb&corvus-energy.com
-45603
- Rieker, Inc.
- Harry May
- hmay&riekerinc.com
-45604
- BeiJing SmartWell Info&Tech Co.,Ltd.
- Fountain Hsiao
- info&smartwell.cn
-45605
- Wi-SUN Alliance, Inc
- Phil Beecher
- pbeecher&wi-sun.org
-45606
- Carillon Federal Services Inc.
- Patrick Turcotte
- pturcotte&carillon.ca
-45607
- Sysco Foods
- Michael Germony
- germony.michael&corp.sysco.com
-45608
- Atlan dynamic group
- Anton V. Sekretov
- service&ahilles.name
-45609
- Centralschweizerische Kraftwerke AG
- Daniel Jud
- oid-admin&ckw.ch
-45610
- EAM GmbH & Co. KG
- Uwe Scheller
- it&eam.de
-45611
- EOSPACE Inc.
- William Dougherty
- dougherty&eospace.com
-45612
- Under Armour Connected Fitness
- Stew Blanford
- sblanford&underarmour.com
-45613
- Universiti Malaysia Terengganu
- Ahmad Nazir bin Haron
- admin&umt.edu.my
-45614
- RegEd Inc.
- Yury Nemchin
- yury.nemchin&ontarget-group.com
-45615
- CityNet
- Gubanov Dmitry
- koloskovm&mail.citynet.ru
-45616
- Healthcare Information and Management System Society (HIMSS)
- Richard Delort
- rdelort&himss.org
-45617
- The Institute of Computational Technologies of the Siberian Branch of the Russian Academy of Sciences
- Oleg Zhizhimov
- zhizhim&mail.ru
-45618
- Ferdinand Malcher
- Ferdinand Malcher
- mail&ferdinand-malcher.de
-45619
- Oei Family Office
- Chris Oei
- admin&oei.io
-45620
- Steampunk Island Inc
- James N Riley Jr
- webmaster&steampunkisland.com
-45621
- Tycon Systems Inc.
- Scott Parsons
- scottp&tyconsystems.com
-45622
- Netrix LLC.
- Andrew Meyer
- ameyer&netrixllc.com
-45623
- Hughey & Phillips, LLC
- Michael A. Forhan
- mforhan&hugheyandphillips.com
-45624
- Brain Sense
- Haim Gabsow
- haim&brain-sense.co.il
-45625
- hahnefeld.net
- Andreas Hahnefeld
- info&hahnefeld.net
-45626
- Sapientia Systems
- John Liebenau
- johnliebenau&gmail.com
-45627
- X NET
- Igor Malyshkin
- imalyshkin&xnet.kz
-45628
- HANFORD (DOE)
- Michael Epler
- mepler&rl.gov
-45629
- Ritron
- Bruce Ahlemeyer
- bahlemeyer&ritron.com
-45630
- Regional Medical Oncology Center
- Tracie Whitley
- tracie.whitley&regionaloncology.com
-45631
- Perimind Corporation
- Patrick Pyette
- ppyette&perimind.com
-45632
- br0.fr
- Johan Fleury
- johan.fleury&br0.fr
-45633
- The Hershey Company
- Kyle Smith
- kasmith&hersheys.com
-45634
- XeeMetric Inc.
- Konstantin Korf
- konstantin.korf&xeemetric.com
-45635
- Cornerstone Health Enablement Strategic Solutions, LLC
- Ian Atchison
- infosec&chessmso.com
-45636
- Robit SAS
- Maurizio Bovo
- info&robit.com
-45637
- Dicks Garage
- Richard Beck
- dfb83&dicksgarage.com
-45638
- AVOLITES LTD
- ADAM PROFFITT
- adam&avolites.com
-45639
- Chen-Hung Chen
- Todd Chen
- luvboa&gmail.com
-45640
- Fujitsu Taiwan Ltd.
- Todd Chen
- todd.chen&tw.fujitsu.com
-45641
- SOARNEX Technology Corporation
- Ethan Wang
- ethan.wang&soarnex.com
-45642
- SITRINICS CAMS, JSC
- Alexey Zharkov
- azharkov&sitronics-cams.com
-45643
- MARETON d.o.o.
- Matija Markovic
- mareton&mareton.hr
-45644
- Tom Maher
- Tom Maher
- tom_maher&outlook.com
-45645
- thinkCSC, Inc
- Jacob Delgado
- jacob&thinkcsc.com
-45646
- UK Shared Business Services Ltd
- Colin McDerment
- colin.mcderment&uksbs.co.uk
-45647
- Grant Thornton UK LLP
- Adam Stevens
- adam.stevens&uk.gt.com
-45648
- Bridgeway Software, Inc.
- Swarupa Kota
- swarupa.kota&bridge-way.com
-45649
- Sousou Industries
- Cochise Ruhulessin
- cochise.ruhulessin&sousouindustries.com
-45650
- Fibersystem AB
- Anders Fallheden
- Anders.Fallheden&fibersystem.se
-45651
- Layer3 TV, Inc.
- Nobuo Matsushita
- nobuo&layer3tv.com
-45652
- New Jersey State Government (Office of Information Technology)
- Ricardo J Oliveira
- OIT-DNSadmin&oit.nj.gov
-45653
- Compression Services
- Harlan Lane
- bt.alerts.domainnames&exterran.com
-45654
- LogicVein, Inc.
- Leo Bayer
- leo&lvi.co.jp
-45655
- CHUNG-HSIN ELECTRIC & MACHINERY MFG. CORP.
- Alice Li
- c0000&chem.com.tw
-45656
- Vector-V, Law Firm
- Akim Korolev
- 0255838&gmail.com
-45657
- Syncbak
- Timothy Kriz
- tim.kriz&syncbak.com
-45658
- P3 GmbH & Co KG
- Markus Kalmbach
- helpdesk&p3-group.com
-45659
- LPO OUI Dev Teams
- Tristan Le Toullec
- tristan.letoullec&univ-brest.fr
-45660
- Pentandra Research Solutions, Inc.
- Chris Chapman
- netadmin&pentandra.com
-45661
- Instec Inc.
- LH Ji
- lh.ji&instec.com
-45662
- Intelligence Ambiante
- Frédéric Menut
- frederic.menut&laposte.net
-45663
- Hochschule Merseburg
- Dirk Hube
- netadmin&hs-merseburg.de
-45664
- Guangzhou Hugen Electronic Technology Co .Ltd
- wujinming
- 304252844&qq.com
-45665
- Biroteh Ltd
- Mr. Uldis Jaudzems
- info&biroteh.lv
-45666
- Ebiid Product and Solutions, S.L.
- Santiago Batlle
- tech&biid.com
-45667
- Single Digits
- Bob Sullivan
- bsullivan&singledigits.com
-45668
- Midwest Microwave Solutions Inc.
- Michael Horn
- mchorn&mms-rf.com
-45669
- CBR Systems Limited
- Anthony de Broise
- anthony&cbrsystems.co.uk
-45670
- tcc construction
- tim clapp
- timclapp700&gmail.com
-45671
- Nick Sverdel
- Nick Sverdel
- NickSverdel&gmail.com
-45672
- HARVL
- Herry Darmawan
- herry&harvl.co.id
-45673
- Smith & Nephew
- Todd Smith
- todd.smith&smith-nephew.com
-45674
- Redbird Advanced Learning, LLC
- Cory Finnimore
- coryfinnimore&redbirdlearning.com
-45675
- Evolve IP, LLC
- Peter Eisengrein
- peisengrein&evolveip.net
-45676
- OCHIN
- Tyler Applebaum
- applebaumt&ochin.org
-45677
- Parashift
- Peter Lesty
- peter&parashift.com.au
-45678
- Department of Primary Industries and Mines
- Padoongsak Nojit
- padoongsak&dpim.go.th
-45679
- AGR Abfallentsorgungs-Gesellschaft Ruhrgebiet mbH
- Uwe Hildebrandt
- uwe.hildebrandt&agr.de
-45680
- ORISOFT
- Dong-Won Kim
- 9112027&daum.net
-45681
- Polska Spolka Gazownictwa sp. z o.o.
- Andrzej Nosek
- andrzej.nosek&psgaz.pl
-45682
- Michigan Education Special Services Association
- Darryl Castillo
- dcastillo&messa.org
-45683
- Flexpay AB (Benify)
- Marcus Wallgren
- ops&benify.com
-45684
- Ingenieurbüro Dübon
- Matthias Dübon
- matthias.duebon&ing-duebon.de
-45685
- AllCreator Co., Ltd.
- Toshihide Hashimoto
- toshihide.hashimoto&allcreator.net
-45686
- Ratel Technologies
- Abhinav Sahrawat
- abhinav&rateltechnologies.com
-45687
- oneM2M
- Gerry McAuley
- gerry.mcauley&etsi.org
-45688
- Limone Fresco Limited
- Michael Laccetti
- michael&limone.me
-45689
- Evolveum
- Radovan Semancik
- semancik&evolveum.com
-45690
- bitbone AG
- Sebastian Scheuring
- technik&bitbone.de
-45691
- Javacraft LLC
- Michael Swiercz
- iana&java-craft.org
-45692
- Dantherm Power A/S
- Morten Brun Madsen
- mma&dantherm.com
-45693
- arvato Systems S4M GmbH
- Harald Hoyer
- harald.hoyer&s4m.com
-45694
- Comvergence Pty Ltd
- Paul Arnold
- paul.arnold&comvergence.com.au
-45695
- CHAPS spol. s r.o.
- Petr Hlavac
- hlavac&chaps.cz
-45696
- Mitchel Berberich Software GmbH
- Mitchel Berberich
- info&mbsw.com
-45697
- Computer Sciences Corporation
- Garvita Singh
- gsingh41&csc.com
-45698
- E-KENT Teknoloji ve Odeme Sistemleri San. ve Tic A.S
- Huseyin Erdem Oguz
- erdem.oguz&e-kent.com.tr
-45699
- JazzHR (formerly 'Hireku, Inc.')
- Sean McAfee
- sean.mcafee&jazzhr.com
-45700
- Transylvania University
- Stephen Poynter
- gadmin&transy.edu
-45701
- IntegraCore, LLC
- J.R. Maycock
- jrmaycock&integracore.com
-45702
- China Transinfo Technology
- Wang Gang
- wanggang02&chinatransinfo.com
-45703
- Gemeindewerke Ga.-Pa.
- Albert Grassl
- it&gw-gap.de
-45704
- Landstinget i Kalmar Län
- Jens Vegeby
- jens.vegeby&ltkalmar.se
-45705
- FINT AB
- Aengeln Englund
- aengeln&fintab.se
-45706
- Bluer Medical Technology
- Tommy Bluer
- bluermedical&163.com
-45707
- ITCEG S.A.S
- Alejandro Valdes Arcila
- alejandro.valdes&itceg.com.co
-45708
- Lively Arts Productions LLC
- Director of Information Systems
- infosys&livelyarts.net
-45709
- Seibels
- Nick Agostas
- nick.agostas&seibels.com
-45710
- Mobie Oy
- Joni Eskelinen
- oid-admin&mobie.fi
-45711
- Matrix Electronica S.L.
- Jose Gallego
- jgallego&matrix.es
-45712
- SERFIM T.I.C. (formerly 'SERELEC SAS')
- WAUTHIER Valérian
- vwauthier&serfimtic.com
-45713
- CONSULDATA Advisors di Massimo Del Barba
- Massimo Del Barba
- maxdb&consuldataweb.net
-45714
- Logitravel SL
- Raimund Sacherer
- rs&logitravel.com
-45715
- Empresa Municipal de Informática S.A. - IPLANRIO
- Bruno Furtado
- bruno.furtado&rio.rj.gov.br
-45716
- ARGE Rundfunk-Betriebstechnik
- Christian Pohle
- christian.pohle&rbt-nbg.de
-45717
- Sensu Enterprise
- Sean Porter
- support&heavywater.io
-45718
- TJH Systems Pty Limited
- Trevor Harwood
- trevor&tjhsystems.com.au
-45719
- inQool a.s.
- Matus Zamborsky
- zamborsky&inqool.cz
-45720
- Chaos Computer Club Mainz e.V.
- Tobias Hachmer
- admin&lists.cccmz.de
-45721
- Shenzhen SONTU Medical Imaging Equipment Co.,LTD
- qiuhongfa
- qiuhongfa&sontu.com.cn
-45722
- Hamburg Port Authority AoeR
- Sean Crane
- pen&hpa.hamburg.de
-45723
- Cirrent
- Robert Conant
- Rob&cirrent.co
-45724
- FIDO Alliance, Inc.
- Debbie Mac
- debbie&fidoalliance.org
-45725
- ABB Xiamen Low Voltage Equipment Co.,Ltd
- Mike-Wulin Weng
- mike-wulin.weng&cn.abb.com
-45726
- ecava sdn bhd
- Ti Tiau Kiem
- tkti&ecava.com
-45727
- HDWIFI TECHNOLOGIES
- Byron del Castillo
- byron&hdwifitech.com
-45728
- JunoTele Solutions Pvt. Ltd
- Sudhir Nayak
- sudhir&junotele.com
-45729
- Roedl IT Operation GmbH
- Adam Bielak
- adam.bielak&roedl.com
-45730
- Geneberg
- Holger Geneberg
- pki&geneberg.net
-45731
- WOOBE s.a.s.
- bernard HAUZEUR (Woobe CTO)
- bhauzeur&woobe.fr
-45732
- TIM AG
- Nico Rathke
- Nicor&tim.de
-45733
- Frank Wagner Holding Hanseatische Management GmbH
- Arne Quante
- arne.quante&fw-holding.de
-45734
- STARNET s.r.o.
- Milan Cizek
- milan.cizek&mail.starnet.cz
-45735
- easyset
- Jin Young Kim
- skyblue&easyset.co.kr
-45736
- Utilisoft Ltd
- Philip Littler
- philip.littler&utilisoft.com
-45737
- shah-network.com
- Shahrad Rezaei
- shahrad.rezaei&shah-network.com
-45738
- Aspirational Cognition LLC
- Greg Gaskill
- aboron&aspirationalcognition.com
-45739
- winfonet.eu
- Nils Guenther
- n.guenther&winfonet.eu
-45740
- Cirrus Identity, Inc
- Ian Tegebo
- ian.tegebo&cirrusidentity.com
-45741
- Entensys
- Alexander Kistanov
- akistanov&entensys.com
-45742
- ImageWare Components GmbH
- Guido Albers
- albers&imageware.de
-45743
- FIBERLAB
- WS Jung
- hifiberlab&daum.net
-45744
- GGExo
- Gergely Pollak
- shuzirra&gmail.com
-45745
- Care Zone Inc.
- Walter Smith
- walter&carezone.com
-45746
- University of Rochester Medical Center
- Mario Sbrocco
- oidadmins&urmc.rochester.edu
-45747
- Wuhan Rui Ying Tong Network Technology Co., Ltd(China)
- pitao
- ptao&whyktx.com
-45748
- Thüga MeteringService GmbH
- Jörg Stelzle
- it&meteringservice.de
-45749
- Evolving Models
- Konstantin Schaefer
- ks&kschaefer.eu
-45750
- gerthoux
- Luca Gerthoux
- luca&gerthoux.net
-45751
- Hibernating Rhinos
- Oren Eini
- ayende&ayende.com
-45752
- connecT EDV-Vertriebs GmbH
- Jens Dimter
- info&connect-edv.de
-45753
- winterdrache.de
- Matthias S. Benkmann
- msb&winterdrache.de
-45754
- VoipOtago Ltd
- Kieren Black
- kieren&voipotago.co.nz
-45755
- 2memory LTD
- Alexey Tsareov
- a.tsareov&2memory.com
-45756
- MicroLAB Systems
- Pavel Semyonov
- pavel.td.amc&mlabsys.com
-45757
- FUCOM
- Shahzad Haider
- shahzad.haider&fucom.com
-45758
- IPCOMM GmbH
- Edgar Zaiser
- Edgar.Zaiser&ipcomm.de
-45759
- Signicat AS
- Harald Stendal
- harald.stendal&signicat.com
-45760
- Kove IO Inc.
- Andy Poling
- logistics&kove.com
-45761
- Celab Communications AB
- Daniel Tagesson
- daniel.tagesson&celab.se
-45762
- Platan spółka z ograniczoną odpowiedzialnością sp.k.
- Karol Marczyński
- Karol.Marczynski&platan.pl
-45763
- EMG Systems Sp. z o.o.
- Piotr Swebodzinski
- emgadmin&emg-systems.com
-45764
- CH Des pays de Morlaix
- CREACH Gilles
- gcreach&ch-morlaix.fr
-45765
- nohl.eu
- Johannes Nohl
- webmaster&nohl.eu
-45766
- Serval CA
- Vaclav Rous
- admin&serval.cz
-45767
- Succeed Management Solutions, LLC
- Moses Stickney
- moses.stickney&succeedms.com
-45768
- telecoms forensics equipment ltd
- brian parsons
- brianparsons&subpico.com
-45769
- Farm House Technologies, LLC.
- Brent Fiegle
- brent&farmhousetech.com
-45770
- Digital Loggers, Inc.
- Martin Bodo
- mbodo&digital-loggers.com
-45771
- weatherlights.com
- Hauke Hasselberg
- hauke&weatherlights.com
-45772
- TauRes Gesellschaft für Investmentberatung mbH
- Christoffer Rumohr
- c_rumohr&taures.de
-45773
- Liebherr-IT Services GmbH
- Martin Rogg
- martin.rogg&liebherr.com
-45774
- SHS SERVICES GmbH
- Christian Jung
- iana&shsservices.org
-45775
- Tornado Network Operating System
- Reyk Floeter
- reyk.floeter&esdenera.com
-45776
- Belden Deutschland GmbH
- Markus Jung
- markus.jung&belden.com
-45777
- Fingerprint Technologies SAS
- Jean-Christophe CUENOD
- jcc&fingerprint.fr
-45778
- exp Services Inc.
- Sean Chard
- sean.chard&exp.com
-45779
- Mosaic Life Care at St. Joseph Medical Oncology
- Shana Tauai
- shana.tauai&mymlc.com
-45780
- Norsk Sykepleierforbund
- Pål Kristen Rønnevik
- Pal.Kristen.Ronnevik&sykepleierforbundet.no
-45781
- Masaryk Memorial Cancer Institute
- David Nejeral
- spravci&mou.cz
-45782
- Metacores Sp. z o.o.
- Sebastian Smyczyński
- s.smyczynski&metacores.com
-45783
- TEKIN
- Raphaël AUTALE
- beii&tekin.fr
-45784
- Novarad, Corp
- Carlo Okolowitz
- dns&novarad.net
-45785
- bangj, LLC
- Tom Pusateri
- pusateri&bangj.com
-45786
- SAT-AN CableNet SE
- Milan Krcmar
- krcmar&sat-an.net
-45787
- WISTE
- Wilhelm Stejskal
- w.stejskal&wiste.at
-45788
- Agustus & Ahab, Inc.
- Sam Aarons
- sam&agustusandahab.com
-45789
- Vicon
- Kobi Shnaidman
- kobi.shnaidman&vicon-security.com
-45790
- Crystal GmbH
- Michael Ratcliffe
- michael&crystal.de
-45791
- Neos Ventures GmbH
- Michael Ratcliffe
- mratcliffe&neosventures.net
-45792
- Flohr IT
- Nico Flohr
- IANA.ORG&nicoflohr.de
-45793
- Joint Stock Company "PK Kupchino"
- Antipov Evgeniy
- antipov&pk-kupchino.spb.ru
-45794
- Safe Creative
- Jorge Guillo Pitarque
- development&safecreative.org
-45795
- Primo1D SA
- Dominique Vicard
- dominique.vicard&primo1d.com
-45796
- Umea Municipality
- David Krasowski
- hostmaster&umea.se
-45797
- Viettel Group
- Le Quang Son
- sonlq4&viettel.com.vn
-45798
- Enovae BV
- Sven Berkvens-Matthijsse
- s.berkvens&enovae.nl
-45799
- Csaw BV
- Sven Berkvens-Matthijsse
- sven&csaw.nl
-45800
- Zorgdoc Nederland BV
- Sven Berkvens-Matthijsse
- s.berkvens&zorgdoc-nederland.nl
-45801
- TARASOFT SRL
- PAOLO TARANTOLA
- info&tarasoft.eu
-45802
- Ubee Interactive Corp.
- Luke Liu
- luke.liu&ubeeinteractive.com
-45803
- netcruz inc.
- Yong Soo Park
- yspark&netcruz.co.kr
-45804
- ERICA
- Michel Marchandise
- webmaster&erica.fr
-45805
- OCMW Temse
- Leander Quintelier
- ict&ocmwtemse.be
-45806
- genealogie.com
- Xiao Hui LOO
- loo.xiaohui&genealogie.com
-45807
- Starbucks Coffee Company
- Greg Onstot
- gonstot&starbucks.com
-45808
- Global Tecnologia LTDA.
- Zundir Buzzi
- zundir&globaltecseg.com.br
-45809
- Beijing Mipay Technology Co., Ltd.
- junqi lin
- linjunqi&xiaomi.com
-45810
- Binary Rock
- Dan McCormack
- site-iana&binrock.net
-45811
- Istvan Puzsar e.v.
- Istvan Puzsar
- snmp&puzsar.hu
-45812
- ILoca Services, Inc.
- Gus Caparell
- gus&semitrailers.net
-45813
- PI '97 Bt.
- Ferik Mihály
- femisi&upcmail.hu
-45814
- Waukesha-Pearce Industries, Inc.
- C Cheung
- admin&wpi.com
-45815
- Sourcewise
- Network Engineer
- networkengineer&sourcewise.co
-45816
- Bruce R. Smith Limited
- Erik Dupuis
- edupuis&brsmith.com
-45817
- Inacomp Consultores SA
- Alexander Osorio
- alexander.osorio&inacomp.com.ve
-45818
- Passaic County Technical Institute
- Roberto D. Rubino
- rob&pcti.tec.nj.us
-45819
- Sven Anders
- Sven Anders
- pen-oid&sven.anders.im
-45820
- PROFIPRINT spol. s r.o.
- David Makovský
- makovsky&profiprint.cz
-45821
- 21st century Oncology, LLC-Gabriel Domenech MD
- JUAN M RODAS
- Juan.Rodas&21co.com
-45822
- Les Ambassadeurs Club
- Carl van Eijk
- carlvaneijk&lesaclub.com
-45823
- Orient Technologies LTD
- Colin Leister
- c.leister&orientdb.com
-45824
- System One Noc & Development Solutions
- David Batanero
- dbatanero&systemonenoc.com
-45825
- One-Click Softworks
- David Mason
- mason&pr-team.org
-45826
- Singlewire Software, LLC
- Jerry Steinhauer
- iana&singlewire.com
-45827
- Beijing JN TASS Technology Co.,Ltd.
- yanfeng wang
- wangyanfeng&tass.com.cn
-45828
- Kanhan Technologies Limited
- Chu Chi Hang
- chihang.chu&kanhan.com
-45829
- preis24.de GmbH
- Nicolas Neumann
- nicolas.neumann&preis24.de
-45830
- Dynniq UK Ltd (formerly 'Imtech Traffic & Infra UK Ltd')
- Steve Gray
- steve.gray&dynniq.co.uk
-45831
- Argo Technologie SA
- Denis Nuja
- denis&argotech.io
-45832
- I-ROSE d.o.o.
- Janez A. Korun
- office&i-rose.si
-45833
- Hoffmann Foerdertechnik GmbH
- Dmitry Sintschilin
- dmitry.sintschilin&liftket.de
-45834
- Tieto Finland Oy
- Hannu Tirkkonen
- hannu.tirkkonen&tieto.com
-45835
- Tangara Tagentis Inc.
- Steeve Stooke
- steeve.stooke&tangaratagentis.com
-45836
- Varonis System inc.
- Hanni Barry
- hbarry&varonis.com
-45837
- Orage.io
- Nicolas BAUDEZ
- okhin&okhin.fr
-45838
- BELIMO Automation AG
- Andreas Mühlebach
- andreas.muehlebach&belimo.ch
-45839
- NETEVEN
- thomas SIMON
- tsimon&neteven.com
-45840
- Lester Electrical of Nebraska, Inc.
- Spencer Stock
- Marketing&LesterElectrical.com
-45841
- System One Noc & Development Solutions S.A
- Juan Villegas
- jvillegas&systemonenoc.com
-45842
- Andrew Stemen
- Andrew Stemen
- andrew&stemen.net
-45843
- WebNet Broadband
- Nicholas J Brockway
- noc&login2us.net
-45844
- Uwe Stoppel
- Uwe Stoppel
- uwe&stoppel.name
-45845
- EchoPixel, Inc.
- Sumeet Khandelwal
- khandelwal&echopixeltech.com
-45846
- StorPool Storage AD
- Anton Todorov
- oid&storpool.com
-45847
- ComputerTel LTD
- Johannes van den Berg
- development&computertel.co.uk
-45848
- VISHMAIL
- Joerg-Peter Hempel
- mail&jphempel.eu
-45849
- MMCVEN Mail
- Teudis Naranjo
- teudis2008&gmail.com
-45850
- Eternity's Touch, Inc.
- Eric VanDamme
- eric.vandamme&eternitystouch.com
-45851
- Unfallkasse Baden-Wuerttemberg
- Christoph Haas
- christoph.haas&ukbw.de
-45852
- Miami Hematology and Oncology Associates
- Wendy Gibbs
- wendygibbs&hemonc101.com
-45853
- Jaguar Land Rover Limited
- Jerome Law
- jlaw2&jaguarlandrover.com
-45854
- Cell Technology Ltd.
- Clarence KI
- kki&cell-technology.net
-45855
- Intracom Asia Co., Ltd.
- Jacky Yu
- jackyyu&icintracom.com.tw
-45856
- Mie Prefectural Government
- Masaya Okajima
- network&pref.mie.jp
-45857
- Kailow Graphic A/S
- Boris Dreyer
- sysadmin&kailow.dk
-45858
- Cifernet Inc.
- Neco Fang
- neco&cifernet.net
-45859
- Pylo.Net
- Pylo.Net Hostmaster
- hostmaster&pylo.net
-45860
- Exel Technology Group
- Wayne Barr
- wayne.barr&etgl.co.uk
-45861
- Research Associates of Syracuse, Inc.
- Michael Swiercz
- iana&ras.com
-45862
- Apost Ltd.
- A. Khodorov
- a.khodorov&corpbox.ru
-45863
- La Folie Boutique
- Angie Evers
- angieevers&me.com
-45864
- Direction Generale de l'Education et des Enseignements
- Bureau De l'Informatique
- informatique&education.pf
-45865
- Shouei electric,co
- Shinei Ueki
- ueki-shinei&shoueidenki.co.jp
-45866
- GlobalPME
- Diego Gonzalez
- diego.gonzalez&globalpme.com
-45867
- LUKOIL Bulgaria Ltd.
- Borislav Cheshmedzhiev
- bvc&lukoil.bg
-45868
- Skywire Technologies
- Leroy Simonsen
- technical&skywire.co.za
-45869
- POET GmbH
- Alexander Ludwig
- Alexander.Ludwig&poet.de
-45870
- Fraunhofer Institute for Secure Information Technology SIT
- Levona Eckstein
- Levona.Eckstein&sit.fraunhofer.de
-45871
- FATECH Electronic
- Mohammad Reza Akhoundi
- m.reza&fatechelectronic.com
-45872
- Institut National de l'Audiovisuel
- Ludovic Bey
- lbey&ina.fr
-45873
- Instituto Federal Catarinense
- Marcos Antônio Malfatti
- cirt&ifc.edu.br
-45874
- Coencorp
- Serge Kopikov
- serge&coencorp.com
-45875
- Edward H. Kaplan,M.D. and Assoc.
- Sandra Hatzopoulos
- sandy&nsoncology.com
-45876
- Jetson Systems, LLC
- Elizabeth A. Dexter
- edexter&jetsonsys.com
-45877
- Intelligent Homes
- Sam Roberts
- iana.pen1&gmail.com
-45878
- vesperal.eu
- Stephane Martin
- stephane.martin&vesperal.eu
-45879
- Université de Lille
- Sylvain DEROSIAUX
- sylvain.derosiaux&univ-lille3.fr
-45880
- West-Ward Pharmaceuticals Corp
- Steven Bolan
- sbolan&west-ward.com
-45881
- 2Lconsult
- Laurent Lesage
- laurent&2lconsult.be
-45882
- Global Voice Group, S.A.
- James J. Claude
- james&globalvoicegroup.com
-45883
- EagleBurgmann Germany GmbH & Co. KG
- Mazen Moussli
- mazen.moussli&de.eagleburgmann.com
-45884
- AuthClub Inc
- Paul Querna
- paul.querna&scaleft.com
-45885
- Cesbo Ltd.
- Andrei Dyldin
- and&cesbo.com
-45886
- Connect-Omsk, Ltd.
- Samoseev Pavel
- conver-pavel&yandex.ru
-45887
- Arke Telekom Ltd. Sti.
- Saygun Onay
- saygun&arketel.com
-45888
- Jawset Visual Computing
- Jascha Wetzel
- jascha&jawset.com
-45889
- TechMIC electronics
- Michael Vermeulen
- michael&techmicelectronics.co.za
-45890
- Sys-City Co., Ltd.
- Tun Win Naing
- twnaing&sys-city.com
-45891
- Pandora A/S
- Jan Lynegaard Kragh, Group IT Operations
- admin&pandora.net
-45892
- Combination AB
- Mikael Johansson
- it&combination.se
-45893
- PSTech
- Marko Potkonjak
- valentina.savic&pstech.rs
-45894
- SysAdmin-CR Sociedad Anonima
- Danny Castillo Segura
- danny&sysadmin-cr.com
-45895
- SysAdmin-CR Sociedad Anonima
- Danny Castillo Segura
- danny&sysadmin-cr.com
-45896
- Paperless Pipeline, LLC.
- Rajesh Dhawan
- rajesh&paperlesspipeline.com
-45897
- M H Corbin Inc
- Brandon Whitaker
- brandon.whitaker&mhcorbin.com
-45898
- KEYLOGIC AB
- Martin Liesén
- martin&keylogic.se
-45899
- CASwell Inc
- Pomah Yen
- pomah.yen&cas-well.com
-45900
- Weber Schraubautomaten GmbH
- Sebastian Theuerkorn
- IT&weber-online.com
-45901
- Kellerman Networks
- Ryan Kellerman
- rkellerman&westmonroepartners.com
-45902
- Kellerman Networks
- Ryan Kellerman
- rkellerman&westmonroepartners.com
-45903
- dachsbau
- Stefan Kauerauf
- mail&stefankauerauf.de
-45904
- National Foods Ltd.
- Muhammad Abdullah Saqib
- muhammad.saqib&nfoods.com
-45905
- Obihai Technology, Inc.
- Sherman Scholten
- sherman&obihai.com
-45906
- Selinko S.A.
- Jonathan Giannuzzi
- dev&selinko.com
-45907
- PolyVirtual Corporation
- Samuel Li
- sam.li&polyvirtual.com
-45908
- ITDO Inc.
- Kazuhiko Oota
- pen-regist&itdo.jp
-45909
- SHENZHEN ANKKI TECHNOLOGIES CO., LTD
- WANGCAI
- wangc&ankki.com
-45910
- haiyi
- jingtao
- jingtao&haiyisoft.com
-45911
- SynerMed Labs
- Hossein Aarabi
- haerabi&synermed.com
-45912
- Universitas Brawijaya
- Abdurrohman Muhammad
- abdurrm&ub.ac.id
-45913
- M2 Group Pty Ltd
- Leon Kyneur
- leon.kyneur&m2.com.au
-45914
- Cetera Financial Group
- Matt Lehman
- matthew.lehman&cetera.com
-45915
- PromonLogicalis
- Eduardo Henrique Tessarioli
- eduardo.tessarioli&br.promonlogicalis.com
-45916
- Quest Payment Systems
- Rupert Enwright
- ruperte&questps.com.au
-45917
- NFRI
- Woongryol Lee
- wrlee&nfri.re.kr
-45918
- Network Canary
- Chris Watt
- admin&networkcanary.com
-45919
- Planevision Systems GmbH
- Gunther Kruse
- snmp.pen&planevision.de
-45920
- Humble Carrier
- Johnson Tellewoyan
- jmt82g2&yahoo.com
-45921
- Ministry of Agriculture Latvia
- Armands Smits
- armands.smits&zm.gov.lv
-45922
- DunaNet-DeviceManagement LLC
- Laszlo KUPOR
- penreg&dunanet.hu
-45923
- TVN S.A.
- Witold Oleksiak
- witold.oleksiak&tvn.pl
-45924
- NOU IPAP
- Alexander E. Zabiralov
- admin&ipap.ru
-45925
- MPS GmbH
- Johannes Klug
- johannes.klug&chemocompile.de
-45926
- OpenZAB.com
- Grzegorz Grabowski
- grzegorz&mbs-it.pl
-45927
- Ahsay Systems Corporation Limited
- Scherring Chong
- mispro&ahsay.com
-45928
- MORU Industrial Systems Co.,LTD.
- Jisu-Jang
- jjs1127&moru.com
-45929
- Plum Sp. z o.o.
- Andrzej Rusiecki
- grupa_it&plum.pl
-45930
- Landwirtschaftskammer Niedersachsen
- Axel Blees
- webmaster&lwk-niedersachsen.de
-45931
- Patterson Companies
- Kirk Haddad
- Kirk.haddad&pattersoncompanies.com
-45932
- Walcoe
- Victor Walcoe
- iana&walcoe.com
-45933
- Kuratorium für Dialyse und Nierentransplantation e.V.
- Thomas Schickedanz
- thomas.schickedanz&k2it-services.de
-45934
- Fiber Mountain Inc
- Phuc Ly
- phuc&fibermountain.com
-45935
- Main Line Oncology Hematology Associates
- Jaclyn Callahan
- jaclyncal&gmail.com
-45936
- Das Kommunalunternehmen des Landkreises Wuerzburg
- Andreas Korbmann
- edv&kommunalunternehmen.de
-45937
- M & C Enterprises, Ltd.
- Doc Miller
- support&mc-enterprises.com
-45938
- Intelligent Visibility, Inc.
- Michael Cotrone
- mikec&intelligentvisibility.com
-45939
- TRIMET S.A.
- ELISEO JUSTO
- eliseo.justo&trimet.com.ar
-45940
- Beckman Library
- Keith Beckman
- kbeckman&becknet.com
-45941
- Papa Malick MBOW
- Papa Malick MBOW
- pm.mbow&gmail.com
-45942
- ezVoice Telecom
- Danilo Martins
- danilo&ezvoice.com.br
-45943
- Londelec UK Ltd
- Alan Kay
- tech&londelec.com
-45944
- IT Telecom co.,Ltd
- Hyunsoon Lee
- aromacrony&it-telecom.co.kr
-45945
- Friedrich-von-Bodelschwingh-Schule
- Timo Widdau
- Timo.Widdau&rsplus-puderbach.de
-45946
- dynexo GmbH
- Florian Reinholz
- info&dynexo.de
-45947
- Kartal Belediye Baskanligi
- Murat Aksoy
- sistemyonetimi&kartal.bel.tr
-45948
- FitnessFirst Germany
- Rene Henzinger
- rene.henzinger&fitnessfirst.de
-45949
- RF elements s.r.o.
- Miroslav Vrabel
- vrabel&rfelements.com
-45950
- Cogo Labs
- Ken Koldewyn
- kkoldewyn&cogolabs.com
-45951
- RDK Management LLC
- Peter Sheedy
- oid_admin&rdkcentral.com
-45952
- CTRLTECH S.A.
- GUSTAVO RAMIREZ
- gustavo.ramirez&ctrltech.com.br
-45953
- CyberData Corporation
- Ian Ford
- iford&cyberdata.net
-45954
- Truven Health Analytics Inc.
- Match Grun
- match.grun&truvenhealth.com
-45955
- Big Daddy Games, LLC
- Mark Trettin
- MTrettin&bigdaddygames.net
-45956
- 128 Technology
- Michael Baj
- mike&128technology.com
-45957
- Cryptographic Information Services
- Kevin Acres
- cryptis&cryptis.com.au
-45958
- aisubp
- Mihail Kutsenko
- m.kutsenko&bftcom.com
-45959
- Zhongyunwangan Technology (Beijing) Co.,Ltd
- Lei Wu
- lei.wu&zhongyunwangan.com
-45960
- IMS, TU Wien
- Johannes Fromm
- techn&ims.tuwien.ac.at
-45961
- ATGEN SOFTWARE SOLUTIONS LLP
- SAGAR MEHTA
- SAGAR.MEHTA&ATGENSOFT.COM
-45962
- SHOWA TSUSHIN KOGYO INC.
- Showa Tsushin
- info&stkinc.co.jp
-45963
- HHnet
- Henner Kruse
- henner.m.kruse&fh-stralsund.de
-45964
- Dispersive Technologies
- Brian Burns
- bburns&dispersivegroup.com
-45965
- Aleris International Inc
- Christopher Eberle
- Christopher.Eberle&aleris.com
-45966
- GURI SOFTHOUSE LTDA
- Ulisses Thadeu Vieira Guedes
- uli1958&hotmail.com
-45967
- SWAN Analytische Instrumente AG
- Michael Rudolf
- michael.rudolf&swan.ch
-45968
- perinova IT-Management GmbH
- Stefan Wagner
- info&perinova.com
-45969
- perinova IT-Management GmbH
- Stefan Wagner
- info&perinova.com
-45970
- Böttcher & Collin GbR
- Fabian Böttcher
- fabianb&bcbangs.com
-45971
- CJSC "Transinfoset"
- Konkin Andrey
- konkin&tsi.ru
-45972
- Baptist School of Health Professions
- Jason Everling
- jeverling&bshp.edu
-45973
- Playground Global
- Dan Morrill
- morrildl&playground.global
-45974
- SPINNER GmbH
- Michael Lege
- m.lege&spinner-group.com
-45975
- Securities Finance Trust Company
- David Griswold
- dgriswold&eseclending.com
-45976
- Intema Comunicaciones
- Agustín Ivorra
- aivorra&intema.biz
-45977
- Platform.sh
- Damien Tournoud
- damien&platform.sh
-45978
- Vision 95 Ltd.
- Zoltan Kakuk
- zoltan.kakuk&vision95.hu
-45979
- Intevac, Inc.
- Brenda Thrasher
- blthrasher&intevac.com
-45980
- S.Network Communications Ltd.
- Denis Ignatov
- denis&snc.ru
-45981
- DroidInActu
- Andy Aspell-Clark
- andyaspellclark&gmail.com
-45982
- Goletas
- Maksim Goleta
- admin&goletas.com
-45983
- Airbus DS Limited - MIPN
- Andy Aspell-Clark
- Andy.Aspell-Clark&airbus.com
-45984
- OOO Stels
- Vladimir Gorpenko
- vgo&stels.ru
-45985
- CyberStream Ltd
- Nikos Lykouropoulos
- nikos.lykouropoulos&cyberstream.gr
-45986
- Kramer Electronics Ltd.
- Nahum Aharon
- naharon&kramerel.com
-45987
- Rete telematica del CNR di Pisa
- Alessandro Mancini
- alessandro.mancini&iit.cnr.it
-45988
- SKYCOM
- Hyeok-Hee Lee
- hhlee&skycom.ne.kr
-45989
- SKYCOM
- Hyeok-Hee Lee
- hhlee&skycom.ne.kr
-45990
- Brueckner-Werke KG
- Jan Beers
- edv&bwhh.de
-45991
- KLENK HOLZ AG
- Winfried Hofmann
- edv&klenk.de
-45992
- Grabeuh Corp.
- Javelini
- javelini-xwyn9p&yopmail.com
-45993
- ITSMOS
- Nestor Charczuk
- nestor.charczuk&itsmos.com
-45994
- Prink s.r.l
- Paolo De Vito
- paolo&prink.it
-45995
- Posteo e.K.
- Patrik Löhr
- iana&posteo.de
-45996
- Chora A/S
- Johnny Vestergaard
- chora&chora.dk
-45997
- Colorado Center for Gynecologic Oncology
- Kelly Sullivan
- kelly&ccgynonc.com
-45998
- JENSEN-GROUP
- Fabian Lutz
- it-ch&jensen-group.com
-45999
- The Dysongang
- Jon Dyson
- jon&thedysongang.co.uk
-46000
- Third Light Ltd.
- Dominic Benson
- dominic.benson&thirdlight.com
-46001
- Vektra Advanced Engineering
- Evan Phoenix
- evan&vektra.com
-46002
- 6Harmonics Inc.
- Yaoyang Wang
- yaoyang.wang&6wilink.com
-46003
- NAUTILUS INFOTECH Co., Ltd.
- Cheng Chao
- cheng.chao&nautilus.com.tw
-46004
- 50Hertz Transmission GmbH
- Thomas Naumann
- thomas.naumann&50hertz.com
-46005
- SAG Services AG (formerly 'SAG Informatik AG')
- Anthony Uk
- sysadmin&sag-ag.ch
-46006
- Greetz BV
- Jan van der Veen
- jan.van.der.veen&greetz.com
-46007
- Augustinum gGmbH
- Thorsten Mueller
- t.mueller&augustinum.de
-46008
- Codan A/S
- Alan Burton-Woods
- abw&codan.dk
-46009
- Advanced Hematology & Oncology Group of PR
- Maria Rincon
- advonco&gmail.com
-46010
- Westfalen Weser Netz GmbH
- Rudolf Hessel
- rudolf.hessel&ww-energie.com
-46011
- cloudVM Inc.
- Matthew Gamble
- mgamble&cloudvm.io
-46012
- Redhot OOO
- Andrey Petrovsky
- admin&redhot.su
-46013
- Yhat, Inc.
- Ryan J. O'Neil
- ryan&yhathq.com
-46014
- KCA Deutag
- Mark McRitchie
- mark.mcritchie&kcadeutag.com
-46015
- PrimoTechSolution S.R.L.
- Denis Shapovlaov
- shapovalovdenis&gmail.com
-46016
- Leonton Technologies, Co. Ltd.
- Kun-Lung Liao
- clone.liao&leonton.com
-46017
- Research Institute of Systems Planning, Inc. / ISP
- Tomoya Saito
- stt&isp.co.jp
-46018
- Thoralf Tietboehl (ttcn)
- Thoralf Tietboehl
- thoralf.tietboehl&outlook.com
-46019
- DSPG Ltd.
- Martin Holmes
- hostmaster&dspg.co.uk
-46020
- Cardio Sistemas Coml. Indl. Ltda.
- Ricardo Miglino
- webmaster&cardios.com.br
-46021
- Thales Belgium SA
- Eric Viseur
- eric.viseur&be.thalesgroup.com
-46022
- Deep S.R.L
- Fernando Ghioldi
- deep&deep-ing.com
-46023
- High Desert Oncology
- Veronica Santos
- vronika21&yahoo.com
-46024
- W&W-AFCO STEEL LLC
- Todd Park
- tpark&wwsteel.com
-46025
- Kahana Technology, LLC
- Jason Woodrich
- domain&kahanatech.com
-46026
- Southern Oncology Hematology Associates
- Trish Morgan
- pam&southernoncology.net
-46027
- OFICINA NACIONAL DE PROCESOS ELECTORALES
- Erik Ulises Bazan Flores
- ebazan&onpe.gob.pe
-46028
- Play Consulting
- Alastair McFarlane
- alastair&play-consult.co.uk
-46029
- Serenergy A/S
- Christian Rostgaard Andersen
- cra&serenergy.com
-46030
- iRespond
- Identity Administrator
- info&irespond.org
-46031
- Taconza LLC
- Scott Deerwester
- scott.deerwester&taconza.com
-46032
- AccelStor, Inc.
- Clare Tai
- clare.tai&accelstor.com
-46033
- Cavium Inc.
- Biju Abraham
- babraham&caviumnetworks.com
-46034
- Ramakrishna Mission Vivekananda University
- Swami Sarvottamananda
- vivekananda.university&gmail.com
-46035
- Company Crypton Ltd.
- Dmitry Gorokh
- d.gorokh&crypton.com.ua
-46036
- IT CARD Centrum Technologii Platniczych SA
- Radoslaw Glowka
- network&itcard.pl
-46037
- City of Pearland
- Justin Arnold
- jarnold&pearlandtx.gov
-46038
- Layer8
- Fernando Cardoso
- fernando.cardoso&layer8.pt
-46039
- Dynamist AB
- Henrik Holmboe
- registry&dynamist.se
-46040
- Freestyle Technology Pty. Ltd.
- Jamie Chard
- jamie.chard&freestyletechnology.com.au
-46041
- W.B. Hunt Co., Inc.
- Kit LaMark
- support&wbhunt.com
-46042
- SpacePath Communications
- David Lawrence
- dl&alphawave.net
-46043
- element j
- Jason Woodrich
- jason&elementj.net
-46044
- Cloudbyte
- Senthilkumar Eswaran
- senthilkumar.e&cloudbyte.com
-46045
- BYTEDANCE LTD.
- Wang Jian
- wangjian&bytedance.com
-46046
- Branislav Manic Law Office
- Branislav Manic
- branislav.manic&iplaw.co.rs
-46047
- paulista informatica ltd
- antonio carlos oliveira
- acoliveira&terra.com.br
-46048
- Attivo Networks
- Srikant Vissamsetti
- srikant&attivonetworks.com
-46049
- SMSEagle
- Radoslaw Janowski
- hello&smseagle.eu
-46050
- Remod Oy
- Juho Juopperi
- juho.juopperi&remod.fi
-46051
- STAGE2015
- STAGE Test
- zabbixmaquette&gmail.com
-46052
- Neotys
- Benoit Derouet
- benoit.derouet&neotys.com
-46053
- AVEBE U.A.
- Erik Dijck
- erik.dijck&avebe.com
-46054
- NBS Ltd.
- Evgeniy Palenov
- palenov&scsbm.ru
-46055
- Hytera Broadband Products
- Zhigang Wang
- zhigang.wang&hytera.com
-46056
- OOO"NPF MULTIOBRABOTKA"
- AROV MARK
- amv&multio.ru
-46057
- Hong Kong Community Athletic Development
- Brad PFEFFER
- brad.pfeffer&hkcad.org
-46058
- Panda Sports
- Brad PFEFFER
- brad.pfeffer&pandasports.asia
-46059
- Vidamin Ltd
- Kari Arvonen
- kari.arvonen&vidamin.com
-46060
- central florida cancer and blood center
- Ravi Koti
- ravikoti&aol.com
-46061
- Ognios GmbH
- Hermann Haslinger
- office&ognios.com
-46062
- YAVEON AG
- IT Management / Peter Reinhardt
- itadmin&yaveon.de
-46063
- Broala
- Seth Hall
- seth&broala.com
-46064
- AddApptr GmbH
- Stefan Scheld
- support&addapptr.com
-46065
- Cannabis Credit
- shaun savage
- savages&savages.com
-46066
- The DiameterTech Project
- Tomi Varhe
- tsv&diametertech.com
-46067
- Union College - Computer Science Department
- Tom Yanuklis
- yanuklit&union.edu
-46068
- Take-Two Interactive Software, Inc.
- Victor Carpetto
- ateam&take2games.com
-46069
- Deutsches Rotes Kreuz Ortsverein Suedlicher Wonnegau e. V.
- Christoph Kling
- info&drk-suewo.de
-46070
- NDP, LLC (NVEA)
- Justin Mercier
- justin.mercier&ndpgroup.com
-46071
- Chista Ltd.
- Ali Nikneshan
- Ali&nikneshan.com
-46072
- B2B-SOFT
- Maksym Chubarov
- tycooncmn&gmail.com
-46073
- Imbasoft
- Philippe Granjal
- pgranjal&imbasoft.fr
-46074
- ROAMData, Inc.
- William C Kincaid
- BKincaid&ROAMData.com
-46075
- Freshmind Sp. z o. o.
- Paweł Krzaczkowski
- pawel&freshmind.pl
-46076
- Edward A Eichler, Jr., M.D., P.A.
- Edward A Eichler
- eahackett60&gmail.com
-46077
- Inventive IT Services Ltd
- Adam Miloszewski
- adam&invntvitsrvs.com
-46078
- Beijing ForceControl-Huacon Technology Co., Ltd.
- Li Da
- lid&huacon.com.cn
-46079
- HM Electronics, Inc.
- Ryan Foley
- rfoley&hme.com
-46080
- Yara SA/NV
- Yves Duquenne
- Yves.duquenne&yara.com
-46081
- INFODAS Gesellschaft für Systementwicklung und Informationsverarbeitung mbH
- Markus Arens
- m.arens&infodas.de
-46082
- AVI
- Chris Lockwood
- info&avi.com.au
-46083
- F&F Computer Anwendungen und Unternehmensberatung GmbH
- Stefan Krauthausen
- s.krauthausen&ff-muenchen.de
-46084
- FACTORYNET AUGUSTA, S.L.
- JOSE MARIA MARCO LAZARO
- info&factorymail.es
-46085
- INFORMATICA Y PROCESOS DE GESTION, S.L.
- JOSE MARIA MARCO LAZARO
- info&ipgsoft.com
-46086
- Infoteam Technique SA
- David Godel
- david.godel&infoteam.ch
-46087
- IT Scharschinger
- Simon Scharschinger
- simon&scharschinger.de
-46088
- Sylvain Girod
- Sylvain Girod
- girod.sylvain&gmail.com
-46089
- DB.Studio
- Ming Chien Lee
- edisonlee55&dbgamestudio.com
-46090
- namotronic GmbH
- Christian von Stebut
- christian&von.stebut.org
-46091
- ICM University of Warsaw
- Dominik Bartkiewicz
- bart&icm.edu.pl
-46092
- Ingenieurgesellschaft für Gebäudeautomation mbH
- Kristian Virkus
- kristian.virkus&inga-hameln.de
-46093
- Sistelbanda S.A.
- Alvaro del Campo
- adelcampo&sistelbanda.es
-46094
- Brampton College
- Network Manager
- networkmanager&bramptoncollege.com
-46095
- otrisPROJECTS GmbH
- Michael Marsanu
- marsanu&otrisprojects.de
-46096
- bitbert.com
- Robert Gierzinger
- robert.gierzinger&bitbert.com
-46097
- IPiFony Systems, Inc.
- Matthew Hardeman
- mhardeman&ipifony.com
-46098
- Ericsson Canada Inc.
- Steve Baillargeon
- steve.baillargeon&ericsson.com
-46099
- Community Health Systems-CHS14
- Bob Kearns
- bob.kearns&chs14.net
-46100
- Maxwell Paper Canada Inc
- Charles Herrington
- cherrington&maxwellpaper.ca
-46101
- Belar Electronics Laboratory Inc
- Mark Grant
- mark&belar.com
-46102
- Art Van Furniture, Inc.
- Tony Sayers
- oid.admin&artvan.com
-46103
- VoIP Integration Inc
- Brad Vonarx
- brad.vonarx&voipintegration.com
-46104
- TVM Capital
- Mark Williams
- williams&tvmcapital.com
-46105
- Alexion Pharmaceuticals, Inc.
- Todd Brodie
- oidadmin&alxn.com
-46106
- 1-800 Contacts Inc.
- Suni Alles
- mbx-systemops&1800contacts.com
-46107
- Medivation, Inc.
- Ody Lupescu
- ody.lupescu&medivation.com
-46108
- Medivation, Inc.
- Ody Lupescu
- ody.lupescu&medivation.com
-46109
- Credomatic
- Journey Tinoco
- jtinocoal&credomatic.com
-46110
- smartTrade Technologies
- Remy Falco
- rfalco&smart-trade.net
-46111
- Document Knowledge Business Solutions (DKB Solutions SA)
- K. Bertin DJAHA
- bertin.djaha&dkbsolutions.com
-46112
- All Russian Institute for Scientific and Technical Information (VINITI) of the Russian Academy of Sciences
- Dmitry Sirik
- sirik&viniti.ru
-46113
- The Moscow Chamber of Advocates
- Sergey Zakhryapin
- it&advokatymoscow.ru
-46114
- «SUMYOBLENERGO» PJSC
- Sergii Taraban
- stg&soe.com.ua
-46115
- Progi-média inc.
- James Watkins-Harvey
- technical&progi-media.com
-46116
- CRYPTONEO
- ZEHI Felix
- felix.zehi&cryptoneo.com
-46117
- SMP Solutions GmbH
- Mathieu Habegger
- mh&smpsolutions.ch
-46118
- SwissMediaPartners AG
- Mathieu Habegger
- mh&swissmediapartners.ch
-46119
- Eden Rock Communications, LLC
- Juan Olivo
- juan.olivo&edenrockcomm.com
-46120
- Alliance-Electronics, Ltd.
- Andrey Kireev
- info&alliance-electronics.ru
-46121
- The Stahura-Brenner Group Inc.
- Dale Brenner
- dbrenner&stahurabrenner.com
-46122
- WrightCCS
- Steven Wright
- steven&wrightccs.com
-46123
- Wiener Boerse AG
- Simone Braun
- iana&wienerborse.at
-46124
- MICI Network Co,.Ltd
- George Wu
- george&mici.com.tw
-46125
- Canadian Pacific
- Darcy McCully
- darcy_mccully&cpr.ca
-46126
- Blockstream
- Jonathan Wilkins
- root&blockstream.com
-46127
- Rock Solid Solutions LLC
- Daniel Kauffman
- 7fpsf2wxeanbgwykrsrf3bnw29ajedhbbachneh2gdkptep&rocksolidsolutions.org
-46128
- City of Biel
- Thomas Bodenmann
- oid-admin&biel-bienne.ch
-46129
- MechanicaPark LLC
- Ilya Burov
- ilya.burov&gmail.com
-46130
- Informa Sistemi S.P.A.
- Andrea Zaghi
- a.zaghi&informasistemi.com
-46131
- Hackerspace Kraków
- Paweł Kozubal
- pawel&hackerspace-krk.pl
-46132
- Amdatu
- Jan Willem Janssen
- janwillem.janssen&luminis.eu
-46133
- ostermeyer.de
- Andreas Ostermeyer
- andreas&ostermeyer.de
-46134
- Uprava za indirektno oporezivanje
- Dijana Jankovic
- dijana.jankovic&uino.gov.ba
-46135
- MSS Managed Security Services GmbH
- Falk Gruenwald
- falk.gruenwald&mssgmbh.com
-46136
- Steinbeis Embedded Systems Technologies GmbH
- Christian Hayer
- christian.hayer&steinbeis-est.de
-46137
- Association Clandestine
- Muri Nicanor
- muri&immerda.ch
-46138
- HTU Härtetechnik Uhldingen-Mühlhofen GmbH
- Helmut Dautermann
- h.dautermann&htu-haertetechnik.de
-46139
- Baseventure Investing
- Craig Setera
- craig&baseventure.com
-46140
- Laboratoire d'Analyse et de Mathématiques Appliquées
- Laurent Marciniszyn
- laurent.marciniszyn&math.cnrs.fr
-46141
- Ysance
- REMI JANOT
- remi.janot&ysance.com
-46142
- ShenZhen Sinexcel Electric Co.Ltd.
- lin ting
- ting_lin&sinexcel.cn
-46143
- Lazada South East Asia (formerly 'Lazada Tech Hub')
- Lim Qi Kang
- qikang.lim&lazada.com
-46144
- Schmidt & Co., (H.K.) Ltd. Taiwan Branch
- James hsu
- jameshsu&schmidtelectronics.com
-46145
- A. Baggenstos & Co. AG
- Enrique Róo Moares
- eroo&baggenstos.ch
-46146
- INFORM GmbH
- Michael Carell
- michael.carell&inform-software.com
-46147
- American Prepaid VAS LLC
- Osmar Coronel
- osmar.coronel&americanprepaidvas.com
-46148
- Beijing Yoxon Smart Technology Co.,Ltd.
- HuangWei
- harrid&qq.com
-46149
- ZAO Citibank
- Yuriy Stryuchkov
- yuriy.stryuchkov&citi.com
-46150
- spornkuller.de
- Johannes Bauer
- wpaptwcvqpfu&spornkuller.de
-46151
- Brett A. Lewis
- Brett A. Lewis
- brett.lewis&gmail.com
-46152
- MCHV Software
- BOUZOUAD Abderrahmane
- abouzouad&mchvsoftware.com
-46153
- Budafony
- Aurélien Vabre
- gm&budafony.hu
-46154
- xMob
- Pete Foster
- oid.admin&xmob.me
-46155
- TAKAOKA TOKO CO.,LTD.
- MASAKI HOSOYA
- hosoya.masaki&tktk.co.jp
-46156
- SB Systems Co.,Ltd
- Park Min Woo
- mwpark&sbsystems.co.kr
-46157
- NARI Technology Co., Ltd.
- Luo Linglu
- luolinglu&sgepri.sgcc.com.cn
-46158
- Ohanae
- Greg Hauw
- greg&ohanae.com
-46159
- TselinTransStroy Ltd.
- Alexey Chernyavskiy
- cts.astana&gmail.com
-46160
- GDV Dienstleistungs-GmbH & Co. KG
- Ingo Braun
- uhd&gdv-dl.de
-46161
- Mobile Viewpoint
- Gertjan Bult
- support&mobileviewpoint.com
-46162
- Tuna Technologies Limited
- Alex Amsel
- alex&tunatech.com
-46163
- Neuberger Gebaeudeautomation GmbH
- Steffen Hornung
- steffen.hornung&neuberger.net
-46164
- AS-PC Sarl
- Arnaud Brand
- abrand&aspc.fr
-46165
- Politeknik Negeri Ujung Pandang
- Andi Zulfadli Malik
- andi.zulfadli&gmail.com
-46166
- JETR Consulting
- Jeff Truong
- jeff_truong&yahoo.com
-46167
- Toptranslation GmbH
- Stefan Rohde
- stefan.rohde&toptranslation.com
-46168
- NewGen Interactive Software Corporation
- Ryan Hairyes
- rhairyes&ng-interactive.com
-46169
- International Capital Investment Company
- Mo Ismail
- mo.ismail&icicusa.com
-46170
- Runetwister Publishing
- Matt Thomason
- matt&warpedcore.net
-46171
- HashPlex, Inc
- Finn Herzfeld
- admin&hashplex.com
-46172
- Redcello Ltd.
- Jonathan Kerkin
- jonathan&redcello.co.uk
-46173
- PayPal Inc
- Steven Rosonina
- srosonina&paypal.com
-46174
- SecuLynx Corporation
- Masami Hisada
- hisada.masami&seculynx.co.jp
-46175
- NEWIND Sp. z o.o.
- Slawomir Glowacz
- iana-pen&newind.pl
-46176
- SensorLink
- Henrique Santos
- sensorlink&sensorlink.com.br
-46177
- KYOSAN ELECTRIC MFG. CO., LTD.
- KATSUTOSHI FUKUDA
- ka-fukuda&kyosan.co.jp
-46178
- Faculty of Informatics, TU Wien
- Alexander Dorfmeister
- trouble&zkk.tuwien.ac.at
-46179
- Pikkatech Software Development & Consulting
- Stanislav Koncebovski
- stanislav&pikkatech.eu
-46180
- Gables Engineering, Inc.
- Robert Zamora
- zamora&gableseng.com
-46181
- sanscomp
- Sanoop Mallissery
- sanoopmallissery&gmail.com
-46182
- Golden Grid Systems
- Xiaochun Liu
- sliu&goldengridsys.com
-46183
- Dansk Medicinsk DataCenter ApS
- Thomas Larsen
- tl&dmdc.dk
-46184
- Lumentum.com
- Channy Tremblay
- channy.tremblay&lumentum.com
-46185
- Intelity
- Andrew Bailey
- andrew.bailey&intelitycorp.com
-46186
- cyontec solutions GmbH
- Fred Tate
- hostmaster&cyontec.de
-46187
- AGRAVIS Raiffeisen AG
- Nils Wernau
- nils.wernau&agravis.de
-46188
- MarketFactory Inc
- George Cox
- support&marketfactory.com
-46189
- John Cianfarani
- John Cianfarani
- john&the-net.ca
-46190
- Phoenyxcode
- Kenneth Benson
- phoenyx33&outlook.com
-46191
- 21st Century Oncology - Crestview
- Aurelle Delerme
- aurelle.delerme&21co.com
-46192
- ToastCoders
- Michael Rice
- michael&michaelrice.org
-46193
- Distributed Hacker Maker Network Inc.
- Mark Finn
- treasurer&dhmn.net
-46194
- arara inc. (formerly 'repica Inc.')
- Shigeki Torii
- mib&arara.com
-46195
- sdc world group co.
- Zhe Chen
- zchen1007&gmail.com
-46196
- Narodowy Fundusz Ochrony Srodowiska i Gospodarki Wodnej
- Zbigniew Pawelec
- informatyka&nfosigw.gov.pl
-46197
- Telensa Limited
- Trevor Byrne
- tb&telensa.com
-46198
- Equinox Holdings LLC
- Stephen Roux
- stephen.roux&equinox.com
-46199
- DENTSPLY International
- Andrew Campbell
- andrew.campbell&dentsply.com
-46200
- Matthew Martin
- Matthew Martin
- phy1729&gmail.com
-46201
- Business Telecommunications Services Europe
- Juan Villegas
- jvillegas&bts.io
-46202
- Avigilon Corporation
- Chris Monkiewicz
- chris.monkiewicz&avigilon.com
-46203
- Strictly Monitoring Limited
- Edward St Pierre
- edward.stpierre&strictlymonitoring.com
-46204
- Hutchison Drei Austria GmbH
- Martin Diewald
- martin.diewald&drei.com
-46205
- MIT Dynamic Technologies Limited
- Paul McGuinness
- info&mit-tech.co.uk
-46206
- Stamm
- Markus Stamm
- admin&stamm.nu
-46207
- Kasisto, Inc.
- Stephen Martin
- system&kasisto.com
-46208
- Knjaz Milos a.d.
- Dejan Camilovic
- Dejan.Camilovic&knjaz.co.rs
-46209
- deepin
- Hong Hao
- oahong&gmail.com
-46210
- Shanghai Koal Software
- zhang xiaoyu
- zhangxy&koal.com
-46211
- Fernfachhochschule Schweiz (FFHS)
- Informatikdienste FFHS (Stefan Meichtry)
- id&ffhs.ch
-46212
- e2E Satcom Limited
- Alan Hughes
- alanhughes&e2eservices.co.uk
-46213
- Atmos Sistemas Ltda.
- Rafael Villatore
- rafael.mello&atmossistemas.com.br
-46214
- COGIT MATIDA UK LTD
- Taofik I Ajagbe
- tajagbe&cogitmatida.com
-46215
- Shandong Senter Electronic Co., Ltd.
- Hanzhen
- 277054510&qq.com
-46216
- Rocken am Brocken UG
- Eric Hertwig
- eric&rocken-am-brocken.de
-46217
- VINCI Energies Schweiz AG
- Stefan Buergi
- iana.veshol&vinci-energies.com
-46218
- SilverTours GmbH
- Christian Michel
- technik&billiger-mietwagen.de
-46219
- Migros Bank AG
- Marcel Graf
- loitse&migrosbank.ch
-46220
- Ministério Público do Estado de Santa Catarina
- Rodrigo Grumiche Silva
- gered&mpsc.mp.br
-46221
- iconectiv
- Gabor Kiss
- CTO&iconectiv.com
-46222
- On IP 46 Limited
- Dr. Paul C. Caesar PhD Comp. Sci.
- onip46&outlook.com
-46223
- Cyber Medical Imaging, Inc.
- Joel Karafin
- jkarafin&XDRradiology.com
-46224
- Inner Range Pty. Ltd.
- Alfred Katz
- alf.katz&innerrange.com
-46225
- tehasdf.com
- Edward Ceaser
- ed&tehasdf.com
-46226
- Apigee Corporation
- Vidya Pissaye
- vpissaye&apigee.com
-46227
- Guangxi radio and television information network corporation limited
- Weihua Zhang
- z2002wh&96335.COM
-46228
- Nikko Graphic Arts Co.,Ltd.
- Makoto Sugimoto
- sugimoto&nkbj.co.jp
-46229
- igus GmbH
- Christian Thönes
- cthoenes&igus.de
-46230
- Cleverlance Enterprise Solutions a.s.
- Michal Cervinka
- michal.cervinka&cleverlance.com
-46231
- Eikeo
- Stéphane Pinchaux
- spinchaux&eikeo.com
-46232
- Ergatel
- Cedric CASTRO
- ccastro&ergatel.com
-46233
- Mundo Digital Informática Redes y Comunicación S.L.
- Emilio González
- egonzalez&mundodigital.es
-46234
- SpaceTeamLab, Ltd.
- Nikolay Pankov
- pankov_n&st-hld.ru
-46235
- RCNTEC
- Sergey Minakov
- ser&rcntec.com
-46236
- Multisoft S.A.
- Artur Kot
- artur.kot&multisoftsa.com
-46237
- Ayuntamiento de Alcobendas
- Javier Peña
- jpena&aytoalcobendas.org
-46238
- Immobilien Hilgers e.K
- Philipp Hilgers
- philipp.hilgers&t-online.de
-46239
- InviNets
- Michał Marschall
- m.marschall&invinets.com
-46240
- Polish Border Guard (Border Guard Headquarters)
- Piotr PIETRZAK
- Piotr.Pietrzak&strazgraniczna.pl
-46241
- Bionic Fuel Knowledge Partners Inc.
- Ulrich Riemann
- ubr&bionicmail.de
-46242
- Netonix
- Eric Stern
- eric&netonix.com
-46243
- Programize
- Andreas Prodromidis
- staff&programize.com
-46244
- South African Air Force
- Daniel du Plessis
- daniedup&cybersmart.co.za
-46245
- Reo3
- Greg Geering
- greg.geering&reo3.com
-46246
- 88.io
- David Chung
- admin-iana&88.io
-46247
- Supertel-DALS
- Sergei Lebedev
- lebedev_sf&supertel-dals.ru
-46248
- Pole/Zero Corporation
- Kevin Ehlert
- kehlert&polezero.com
-46249
- SITES
- Tony FRUCHART
- tony.fruchart&sites.fr
-46250
- Amsted Rail
- Dustin Nikora
- dnikora&amstedrail.com
-46251
- POSBANK
- Kyu Seok, Park
- parksio2&posbank.co.kr
-46252
- Z-ROUTER TECHNOLOGY
- Tom Lin
- TOM&Z-ROUTER.CN
-46253
- Plusserver GmbH
- Malte von dem Hagen
- noc&heg.com
-46254
- Vector Informatik GmbH
- Stefan Ries
- iana-pen&de.vector.com
-46255
- Ovenden Papers Limited
- James Ovenden
- james.ovenden&ovendenpapers.co.uk
-46256
- Hokkaido University
- Norishige Nagai
- sec-t&iic.hokudai.ac.jp
-46257
- Wlbe Deutschland
- R. Alexander Marschall
- amarschall&wlbe.de
-46258
- VENISO SOLUTIONS PRIVATE LIMITED
- Navnit Chachan
- navnit&veniso.com
-46259
- Hauseigentümerverband Zürich
- Tobias Horber
- tobias.horber&hev-zuerich.ch
-46260
- IQ-Media B.V.
- Mark van Oudheusden
- mark&iqmedia.nl
-46261
- Universidad Nacional del Litoral
- Maximiliano Boscovich
- mboscovich&rectorado.unl.edu.ar
-46262
- Zscaler Inc
- Vivek Srivastava
- vsrivastava&zscaler.com
-46263
- LPL Financial
- Dwayne White
- dwayne.white&lpl.com
-46264
- FinnHEMS Oy
- Ossi Ahosalmi
- ossi.ahosalmi&finnhems.fi
-46265
- AlBikar.net
- Daniel Drennan
- drennan&panix.com
-46266
- Wood County Telephone Company dba Solarus
- Brian Krause
- bkrause&solarus.net
-46267
- Development Gateway
- Stepan Semenukha
- domains&developmentgateway.org
-46268
- bleim.net GmbH
- Wolfgang Bleim
- Wolfgang.Bleim&bis.at
-46269
- Dynasys Technology Co.,LTD
- Lu Huang
- hlu&dynasys.com.tw
-46270
- NBOO-RU
- Yury Ulyanov
- common&nboo.ru
-46271
- PaloVerde Cancer Specialists
- Michael Bustard
- mbustard&pvcancer.com
-46272
- DataStax, Inc.
- Mike Mercado
- sysadmin&datastax.com
-46273
- informalogique
- Ian Labbé
- ian.labbe&gmail.com
-46274
- Heartware
- James Waite
- jwaite&heartware.com
-46275
- EBPI
- John Renne
- john.renne&ebpi.nl
-46276
- Linux Lab
- Vijay Nayani
- vijay&linuxlab.org
-46277
- Ministerio dos Petroleos
- Rafael Aranha
- raranha&progroup.co.ao
-46278
- TÜV NORD AG
- Matthias Helmhagen
- mhelmhagen&tuev-nord.de
-46279
- Thomas Hellström
- Thomas Hellström
- thohell&thohell.com
-46280
- Enterprise Computing
- Francisco Moreira
- moreira&enterprisecomputing.com
-46281
- WRITESYS Traffic Systems
- Lucas Zampar Bernardi
- lucas&writesys.com.br
-46282
- uGo3D LLC
- Peter Yoo
- peter&ugo3d.com
-46283
- Inmotion Data, LLC.
- Joseph Lee
- support&inmotiondata.com
-46284
- ENERGEX
- Graeme Farquharson
- graemefarquharson&energex.com.au
-46285
- Trimble Navigation Ltd.
- Haroon Muhammad
- haroon_muhammad&trimble.com
-46286
- RUDIMENTS
- Rudi Yanto
- rudiments21&gmail.com
-46287
- yaxunhongda
- peiji zhao
- whyhonest&126.com
-46288
- Tedas B.V.
- Thomas van Dongeren
- t.vandongeren&tedas.nl
-46289
- gluIT Software GmbH
- Herr Kirchberg
- sk&gluit.de
-46290
- VS XXI JSC
- Nikolay Bukin
- nb&vsxxi.ru
-46291
- IES srl
- Alessandro Arras
- alessandro.arras&iessrl.it
-46292
- Koiossian Inc.
- Robert Cowart
- snmp&koiossian.com
-46293
- Monroe County Hospital Oncology Clinic
- Katrina Meshell
- kmeshell&mchcare.com
-46294
- inView GmbH
- Caspar Fromelt
- cf.iana.pen&inview.de
-46295
- City of Huntsville
- Chris Davis
- chris.davis&huntsvilleal.gov
-46296
- SHI
- David Marques
- david_marques&shi.com
-46297
- Agrarmarkt Austria
- Gerhard Dyduch
- office&ama.gv.at
-46298
- ISPM Serviços em Informática LTDA
- Alexandre Santos Campos
- alexandre.campos&ispm.com.br
-46299
- Birmingham Hematology and Oncology Associates, LLC d/b/a Alabama Oncology
- Chris Barnes
- chris.barnes&alabamaoncology.com
-46300
- MicroKnight Business Systems Ltd.
- Kevin Jeffery
- kevin&microknight.com
-46301
- CARRA, Inc.
- Kelly Mieszkalski
- info&carragroup.org
-46302
- Urmet Sistemi S.p.A.
- Giannini Alessandro
- alessandro.giannini&urmetsistemi.it
-46303
- ITSUDE
- Ralf Schmitz
- ralf.schmitz&it-su-de.net
-46304
- GSMA
- Emanuele Forlano
- eforlano&gsma.com
-46305
- OSDE
- Seguridad de la Información
- seginf&osde.com.ar
-46306
- Institute for Traffic Safety Management and Research
- Joel Lord
- jlord&itsmr.org
-46307
- Briskhome
- Egor Zaitsev
- heuels&gmail.com
-46308
- GDC Communications
- Gerald Douglas
- data&gdc.com.fj
-46309
- Delft Solutions
- Max Maton
- max&maton.info
-46310
- BCons Argentina S.A.
- Leonardo Federico Rosso
- lrosso&baufest.com
-46311
- Baufest
- Leonardo Federico Rosso
- lrosso&baufest.com
-46312
- Jack Kingsman
- Jack Kingsman
- jack.kingsman&gmail.com
-46313
- Level 8 Aps
- Jan Frank Nielsen
- jfn&level8.dk
-46314
- SongMovers
- Antwan Carr
- webmaster&songmovers.com
-46315
- Silicon Valley Bank
- Ron Parker
- RParker&svb.com
-46316
- AERTiCKET AG
- Maximilian Mühe
- mmuehe&aer.de
-46317
- VRSG Verwaltungsrechenzentrum AG St.Gallen
- Edgar Stammbach
- edgar.stammbach&vrsg.ch
-46318
- Mils Electronic Gesmbh & CoKG
- Martin Lubich
- ml&mils.com
-46319
- Traffic Tech Inc.
- Yann Bourgault
- ybourgault&traffictech.com
-46320
- BNC National Bank
- Shaun Skeldum
- pen&bncbank.com
-46321
- Sensignal Co.,Ltd.
- Yuuki Uno
- yuuki-uno&sensignal.co.jp
-46322
- Gareth Williams
- Gareth Williams
- gareth&garethwilliams.me.uk
-46323
- F. KLUCZNIK & SON LIMITED
- Dan McNicol
- daniel.mcnicol&iae.co.uk
-46324
- HAYSYS Ltd
- Nicholas Lloyd
- nlloyd&haysys.co.uk
-46325
- Firstwan Delivery Network Services
- Jean-François ESPERET
- jfesperet&firstwan.fr
-46326
- IUT de VALENCE
- Eric PEYREMORTE
- eric.peyremorte&iut-valence.fr
-46327
- Niagara Regional Police Service
- Matthew Kohut
- oid-admin&niagarapolice.ca
-46328
- DDS Wireless International Inc
- David Nagy
- David.Nagy&ddswireless.com
-46329
- Security Indemnity Insurance Company In Liquidation
- Michael Rydzewski
- mrydzewski&njliq.org
-46330
- Vubiq Networks
- Aaron Baranoff
- aaron&vubiqnetworks.com
-46331
- NightSteam Solutions
- Marcel Heers
- info&nightsteam.de
-46332
- Lacuna Software LTDA - EPP
- Bazili Swioklo
- bazili&lacunasoftware.com
-46333
- American Express Global Business Travel
- Kenny Moss
- kenny.moss&aexp.com
-46334
- HRM Systems AG
- Felix Zimmermann
- it&hrm-systems.ch
-46335
- Bruce A. Hayton, M.D.
- Bruce A. Hayton, M.D.
- brucehaytonmd&yahoo.com
-46336
- Live Niaga
- Edie Mohamad
- administrator&liveniaga.com
-46337
- Meisei Electric Co., Ltd.
- Ryuya Yamagishi
- yamagishir&meisei.co.jp
-46338
- CTO Balzuweit GmbH
- Dennis Balzuweit
- dennis.balzuweit&cto.de
-46339
- National Archives, Czech Republic
- Milan Vojacek
- milan.vojacek&nacr.cz
-46340
- The Opole University of Technology
- Marcin Sroczak
- m.sroczak&po.edu.pl
-46341
- Dansk Metalarbejderforbund
- Christian Jensen
- hostmaster&danskmetal.dk
-46342
- Anoop Sukumaran
- Anoop Sukumaran
- anoops1984&gmail.com
-46343
- mazou kitchen
- zoliswa ndzuzo
- zoliswandzuzo9&gmail.com
-46344
- PricewaterhouseCoopers AG
- Marc Eggenberger
- marc.eggenberger&ch.pwc.com
-46345
- Clear Government Solutions, Inc.
- Alexis Bor
- alexis.bor&cleargovsolutions.com
-46346
- Vail Software Solutions
- BJ Vail
- bjvail&sbcglobal.net
-46347
- Ovapro
- Lee Choon Siong
- choonsiong.lee&gmail.com
-46348
- Providence Health & Services
- Bill Stites
- bill.stites&providence.org
-46349
- Deepfield
- Max Mizikar
- maxmzkr&deepfield.net
-46350
- NorCERT - Norwegian Computer Emergency Response Team
- Tor Inge Skaar
- tor.inge.skaar&nsm.stat.no
-46351
- Laubheimer Networks
- Markus Laubheimer
- markus&laubheimer.de
-46352
- Premier Business Centers
- Aaron Mendoza
- Amendoza&Pbcenters.com
-46353
- Schwackenberg Consulting
- Andreas Schwackenberg
- admin&schwackenberg.com
-46354
- Kooperativa pojistovna, a.s.
- David Klima
- dklima&koop.cz
-46355
- Expert-Team Pte Ltd
- Edgardo Gonzales
- edgardo.gonzales&expert-team.net
-46356
- Grupo de Tecnologia Cibernetica, S.A. de C.V.
- Claudio M. Horvilleur
- claudio.horvilleur&tecno.com.mx
-46357
- NBS System
- Jean EYMERIT
- jean.eymerit&nbs-system.com
-46358
- Zwick GmbH & Co KG
- Markus Laubheimer
- markus.laubheimer&zwick.de
-46359
- Robert P. Fein and David A. Richards
- James Badaracco
- jbadarac&gmail.com
-46360
- West and Central African Research and Education Network (WACREN)
- Omo Oaiya
- omo&wacren.net
-46361
- Richard Scranton
- Richard Scranton
- scrantr&yahoo.com
-46362
- Digital Data Technologies Inc.
- Justin Martinek
- jmartinek&ddti.net
-46363
- BGProtect
- Alex Maltinsky
- alex&bgprotect.com
-46364
- Halmstad University
- Magnus Moren
- iana-pen&hh.se
-46365
- arvato IT Support GmbH
- Uwe Weiss
- uwe.weiss&bertelsmann.de
-46366
- Technicolor
- Alex De Smedt
- alex.desmedt&technicolor.com
-46367
- UPSINVERTER.COM
- RAKESH GARG
- RAKESH&UTLUPS.COM
-46368
- The Job Planet
- Melissa Maxwell c/o Roy Barnett
- maxwellmelissa75&yahoo.com
-46369
- Miskolci Egyetem Informatikai Intezet
- Gergo Szabo
- szabo89&iit.uni-miskolc.hu
-46370
- eshore
- luoyongqi
- 13316209005&189.cn
-46371
- Japan Canada Oil Sands Limited
- Joel Francisco
- joel.francisco&jacos.com
-46372
- Uber Operations, LLC
- Franscis de Wet
- system&uberops.com
-46373
- Bypass Network Services
- Patrick Jordan-Smith
- patrick.jordan-smith&bypass.net.nz
-46374
- Zizaike Inc.
- genyiwang
- genyiwang&zizaike.com
-46375
- eCommistry Ltd
- Matt Johnston
- matt.johnston&ecommistry.com
-46376
- Nullroute
- Mantas Mikulėnas
- mantas&nullroute.eu.org
-46377
- Star Media (Beijing) CO.,LTD
- Michael Fu
- fubotao&star-media.cn
-46378
- Centre Hospitalier Mémorial Saint-Lô
- Nicolas GOEURY
- nicolas.goeury&ch-stlo.fr
-46379
- LunaticIsland.net
- Justin M. Bushey
- antix84&gmail.com
-46380
- Enghouse Interactive AB
- Mikael Norberg
- mikael.norberg&enghouse.com
-46381
- Imterra
- Peter Polacik
- polacik.p&gmail.com
-46382
- Berolina-autolacke
- Michael Degner
- security&netelco.de
-46383
- Ministry Division, Church of England
- Dr Ken Farrimond
- ken.farrimond&churchofengland.org
-46384
- DUCA Financial Services Credit Union Ltd.
- Matthew Burr
- sysadmin&duca.com
-46385
- Walnut Hill Physicians’ Hospital, LLC
- Larry Sutherland
- larry.sutherland&walnuthillmc.com
-46386
- Shenzhen GL-COM Technology Co.,Ltd.
- hongshun cui
- cuihsh&gl-com.com
-46387
- Drift
- Sedelkova Daria
- dasha.sede&gmail.com
-46388
- Taygeta Scientific Inc.
- Everett Carter
- office&taygeta.com
-46389
- VESTA
- Luke Young
- Luke.Young&airbus-dscomm.com
-46390
- Clarke Technical Services, Inc.
- Carlos Clarke
- carlos&ptdprolog.net
-46391
- jddev
- Jakub Dohnal
- jak.doh&gmail.com
-46392
- Donostian Belgie
- Albert Narain
- donostianbe&yahoo.com
-46393
- Programlabbet AB
- Johan Persson
- johan&programlabbet.se
-46394
- BLITSC
- Bernhard Lang
- Bernhard.Lang&blitsc.de
-46395
- FirstRand Group
- Vincent Andrew
- vincent.andrew99&gmail.com
-46396
- Marotta Controls, Inc.
- Carlos Clarke
- cclarke&marotta.com
-46397
- iSecway Inc.
- Veda Wang
- isecway&163.com
-46398
- Regional Cancer Care Associates Hope Community Cancer Center Division
- Pauline Flaville
- pflaville&regionalcancercare.org
-46399
- iSIGHT Partners
- Matt Shelton
- mshelton&isightpartners.com
-46400
- NorQuest College
- Kevin Nikiforuk
- kevin.nikiforuk&norquest.ca
-46401
- Marshall B. Ketchum University
- Jeremy Bascom
- dnsadmin&ketchum.edu
-46402
- NSF Telecom Ab
- Joonas Harjumäki
- joonas.harjumaki&nsftele.com
-46403
- QA2
- Daniel Dent
- iana-qa2-oid&contactdaniel.net
-46404
- DOT Systems Sp. z o.o.
- Klaudiusz Kobylecki
- info&dotsystems.pl
-46405
- superChic
- Michael Hacker
- mh&superchic.at
-46406
- Foundation Pärnu Hospital
- Vegard Kruusla
- vegard.kruusla&ph.ee
-46407
- TECNOLOGIAS EOS SA DE CV
- CARLOS ENRIQUEZ
- carlos.enriquez&tec-eos.com
-46408
- PKP Polskie Linie Kolejowe S.A.
- Daniel Kozłowski
- daniel.kozlowski&plk-sa.pl
-46409
- BSP Consulting spol. s r.o.
- Martin Rublík
- martin.rublik&bspc.sk
-46410
- SEGGER Microcontroller GmbH & Co. KG
- Oliver Olligs
- iana_pen&segger.com
-46411
- Art2Wave Canada Inc.
- Sergey Plotnikov
- sergey.plotnikov&art2wave.com
-46412
- Andrew Sheret Ltd.
- David Manning
- david.manning&sheret.com
-46413
- Table25, Inc.
- Mike Adair
- r.mike.adair&gmail.com
-46414
- William Oliver
- William Oliver
- Woliver1&gmail.com
-46415
- Open Banking Foundation
- Vedran Čačić
- veky&opensourcebank.net
-46416
- The National Archives of Latvia
- Haralds Krūmiņš
- Haralds.Krumins&arhivi.gov.lv
-46417
- Emerald Coast Cancer Center
- Cynthia Vinson
- cancercenter1&yahoo.com
-46418
- Agile Ingeniería y Consultoría Ltda.
- CLAUDIO DELGADO
- claudio.delgado&agile.cl
-46419
- Araknis Networks
- Ayham Ereksousi
- ayham.ereksousi&araknisnetworks.com
-46420
- Knauf Information Services GmbH
- Yvonne Hillenbrand
- hillenbrand.yvonne&knauf.de
-46421
- B/E Aerospace
- Tim Keller
- tim_keller&beaerospace.com
-46422
- UTEK TECHNOLOGY(SHENZHEN)CO,LTD
- YEDAWEN
- yedw&szutek.com
-46423
- Osirium Ltd
- Kev Pearce
- kev.pearce&osirium.com
-46424
- Otterbein Homes
- Kevin Hook
- khook&otterbein.org
-46425
- DTSV, Inc.
- Jason Dickert
- jason.dickert&cellavant.com
-46426
- Salinas Valley Medical Clinic Cancer Care
- Claudia Powell
- cpowell&chp-dod.com
-46427
- LISI AEROSPACE
- GAGLIARDI Gérard
- gerard.gagliardi&lisi-aerospace.com
-46428
- Mobicare
- Jorge Pereira
- jorge.pereira&mobicare.com.br
-46429
- Universidad Nacional de San Martin
- Pablo Esteban Bullian
- pbullian&unsam.edu.ar
-46430
- RTEC
- Ivanov Kirill
- ivanov_k&pkcc.ru
-46431
- Alaf Organization
- Alexandre Lafargue
- a26&lafargue.eu
-46432
- Modula Shop Systems
- Alexander Schmid
- alex&modula-shop-systems.de
-46433
- Fern Ridge School District 28J
- M Bateman
- 28jadmin&fernridge.k12.or.us
-46434
- consulter net GmbH
- M.Balter
- balter&consulternet.net
-46435
- LEW AG
- Bernhard Lang
- Bernhard.Lang&lew.de
-46436
- Infoprocess
- Viacheslav Alekseev
- info&infoprocess.ru
-46437
- TTI NORTE SL
- Borja Santander
- bsantander&ttinorte.es
-46438
- Bartec-Vodec
- William Dudeney
- William.Dudeney&Bartec-Vodec.com
-46439
- Bolsas y Mercados Españoles Innova, S.A.U. (BME Innova).
- Ivan Zapata
- izapata&bmeinnova.com
-46440
- Cloud Electronics Ltd.
- Jon Spyve
- technical&cloud.co.uk
-46441
- AKROS AG
- Akros Informatik
- iana-pen&akros.ch
-46442
- PIHI Media
- Isaac Hildebrandt
- isaac&pihimedia.com
-46443
- intec GmbH
- Joerg Huwig
- joerg.huwig&argus.info
-46444
- Zhejiang Huanshun Network Science & Technology Co., Ltd.
- Jianjie Chen
- cjj&huanshun.com
-46445
- Unitel Engineering
- Vladimir Trushchenko
- v.truschenko&uni-eng.ru
-46446
- OV Corporation SAS
- Benjamin ROZIERE
- benjamin.roziere&rdalambic.com
-46447
- Embedict
- Yiğit YÜCE
- ygtyce&gmail.com
-46448
- Telewizja Polsat Spolka z o. o.
- Marcin Barcikowski
- mbarcikowski&polsat.com.pl
-46449
- Collibra
- Xavier Tesch
- xavier.tesch&collibra.com
-46450
- Opsmate, Inc.
- Hostmaster
- hostmaster&opsmate.com
-46451
- InfoRelay Online Systems, Inc
- Justin Bushey
- jbushey&inforelay.com
-46452
- Lanworld Finland Oy
- Matti-Oskari Leppanen
- mongrelx&gmail.com
-46453
- McKesson IWS
- Vanja Hrbacek
- vanja.hrbacek&mckesson.com
-46454
- Goldberg and Mathew Medical Assc P.L.L.C.
- Renee Goldberg
- renee.goldberg.phd&gmail.com
-46455
- Coral Active
- Kelvin Lynch
- info&coralactive.com
-46456
- AttoCore Ltd
- David Neil
- David.Neil&attocore.com
-46457
- Gerrie Electric Wholesale Limited
- Trevor Davis
- tdavis&gerrie.com
-46458
- ENow, inc.
- Jay Gundotra
- jayg&enowinc.com
-46459
- Mairie de Canteleu
- M. Kévin ROSSELOT
- K-Rosselot&ville-canteleu.fr
-46460
- Veterinary Specialists of North Texas
- Michael Gibson
- iana.org&vsnt.com
-46461
- Outhwaite Technologies
- Dan Outhwaite
- admin&outhtech.com
-46462
- Sicoob Confederação
- BRUNO RITHELE CORREA BATISTA
- bruno.rithele&sicoob.com.br
-46463
- Radio Gigabit Inc.
- Alexey Sevastyanov
- alexey.sevastyanov&radiogigabit.com
-46464
- Knowledgeloop, Inc.
- Vitaliy Sapounov
- vitaliy&knowledgeloop.com
-46465
- EKE-Electronics Ltd.
- Kimmo Lindholm
- kimmo.lindholm&eke.fi
-46466
- Rossbach Systems
- Julian Rossbach
- julian.rossbach&rossbach-systems.eu
-46467
- CellSens
- Guy op de Beeck
- guyopdebeeck&cellsens.com
-46468
- Coho Data, Inc.
- Ed Woz
- it&cohodata.com
-46469
- 149W Managed Services LLC
- Dennis Hollenbeck
- hollenbeckd&gci.net
-46470
- Man Technology Co, Ltd.
- Harold Lee
- hllee&mantech.co.kr
-46471
- Illusive Networks Ltd.
- Olga Vingurt
- olga&illusivenetworks.com
-46472
- infraView GmbH
- Andreas Wilhelmi
- andreas.wilhelmi&infraview.net
-46473
- Otterbein Homes
- Kevin Hook
- khook&otterbein.org
-46474
- Kiwox Soluciones Tecnológicas
- Francisco Pérez
- francisco&kiwox.cl
-46475
- OSTEC Business Security
- Denis Volpato Martins
- denis&ostec.com.br
-46476
- Martijn van Hoof
- Martijn van Hoof
- martijn&vhoof.com
-46477
- HealthNow New York Inc
- EIS
- EIS&healthnow.org
-46478
- DIAL GmbH
- Administration
- sysadmins&dial.de
-46479
- Unidesk Corporation
- Chad Heipler
- cheipler&unidesk.com
-46480
- Modular Mining Systems, Inc.
- SNMP Management
- iana-snmp&mmsi.com
-46481
- Desjardins Groupe Technologies
- Jean Voltaire Emile
- jean.voltaire.emile&desjardins.com
-46482
- Netki, Inc.
- Justin Newton
- oidadmin&netki.com
-46483
- ERLPhase Power Technologies Ltd
- Anatoliy Ksyunz
- Aksyunz&erlphase.com
-46484
- HERE North America, LLC
- Jeff Phillips
- pen-administrator&here.com
-46485
- Guy's and St Thomas' NHS Foundation Trust
- Jamie Cousinne
- jamie.cousinne&gstt.nhs.uk
-46486
- Dedrone GmbH
- Frederic Beister
- frederic.beister&dedrone.com
-46487
- Stripe, Inc.
- Carl Jackson
- iana&stripe.com
-46488
- WALSER-NET
- Michael Walser
- admin&walser-net.at
-46489
- TGR - Tecnologia para Gestão de Redes, S.A.
- Guilherme da Silva Senges
- guilherme.senges&tgr.net.br
-46490
- Captel
- Pierre-Yves GIRAULT
- pygirault&captel.fr
-46491
- Valerio Morozzo
- Valerio Morozzo
- valerio.morozzo&yahoo.com
-46492
- Conevity Solutions Inc
- Nick Judson
- nick.judson&conevity.com
-46493
- UAB "GKF"
- Vytautas Simanaitis
- it&gkf.lt
-46494
- Assimil8 Limited
- Chris Jones
- c.jones&assimil8.com
-46495
- European Dynamics SA
- Nassos Michas
- nmix&eurodyn.com
-46496
- DEPARTAMENTO ADMINISTRATIVO DE CIENCIA, TECNOLOGIA E INNOVACION - COLCIENCIAS
- LUIS EDUARDO SIERRA
- servicedesk2&colciencias.gov.co
-46497
- ISS BRASIL LTDA
- DANIEL PECHMANN
- daniel&issbrasil.com
-46498
- Jiangsu Sinolte Wireless Technology Co., Ltd.
- rulinwan
- rulinwan&sinolte.net
-46499
- ICD CO.,LTD
- Hosoo Lee
- hosoolee50&eicd.co.kr
-46500
- Trukai Industries Limited
- Richard Omi
- romi&trukai.com.pg
-46501
- Didactum® Ltd. Deutschland (formerly 'Vutlan sro')
- Roger Oeltjendiers
- roe&didactum.com
-46502
- TASS
- Denis Ovchinnikov
- ois&tass.ru
-46503
- Quench Worldwide Limited
- Jim Marsden
- jim.marsden&quenchww.com
-46504
- Stolt-Nielsen Limited
- Vidar Kroslid
- v.kroslid&stolt.com
-46505
- PLAS-TEK Ltd.
- Alexander Pautov
- alexander.pautov&plas-tek.ru
-46506
- Systems Integrated
- Larry Pomatto
- kishore&systemsintegrated.com
-46507
- Simpress Comercio Locacao e Servicos
- Rangel Pacheco Sperandio
- admredes&simpress.com.br
-46508
- Glen Raven, Inc.
- Taylor Edwards
- apps&glenraven.com
-46509
- Oncology and Hematology Specialists
- David Wilmes
- dwilmes&ohsnj.com
-46510
- Wake County Public School System
- Rob Breault
- rbreault&wcpss.net
-46511
- New Telecom Solutions LLC
- Vladimir Gorin
- gorin&mwnts.ru
-46512
- Times Internet Limited
- Mohammad Shoaib Zahir
- shoaib.zahir&timesinternet.in
-46513
- ZorgNed Automatisering BV
- Albert Post
- software&zorgned.nl
-46514
- Mhashim Ltd
- Babiker Mohammed
- mhashim.gm&gmail.com
-46515
- Wolf-Medizintechnik GmbH
- Torsten Peukert
- torsten.peukert&womed.net
-46516
- Ante Grup Elektrik Elektronik Bilişim İnşaat Danışmanlık San. ve Tic. Ltd. Şti.
- Alper SEZEN
- alper.sezen&antegrup.com.tr
-46517
- FitX Deutschland GmbH
- Markus Warg
- markus.warg&fitx.de
-46518
- SPD Electrical Engineers (Pty) Ltd
- Dr Andries Hercules Putter
- aputter&vukanet.com
-46519
- Albertslund Kommune
- It-afdelingen
- it.teknik&albertslund.dk
-46520
- Hitachi Industry & Control Solutions, Ltd.
- Toshio Ooga
- enterprise-mib&ml.hitachi-ics.co.jp
-46521
- PMC - PERIPHERIQUES ET MATERIELS DE CONTROLE
- Franck LEDAY
- f.leday&pmc-sa.com
-46522
- Dino Occhialini
- Dino Occhialini
- dino.occhialini&gmail.com
-46523
- Bridgetec Corp.
- SuJeung Shin
- sujeungshin&gmail.com
-46524
- Linkbroad Technology Beijing Corporation Limited
- WU JIANMING
- digger.wu&linkbroad.com
-46525
- Hedvig Inc.
- Reece Joyner
- rjoyner&hedviginc.com
-46526
- Moldeo AB
- Joakim Nilén
- joakim.nilen&moldeo.se
-46527
- Trans Link Systems B.V.
- Gerrit Kraaij
- registrar&translink.nl
-46528
- Shanghai Chuxun Information Technology Co.,Ltd.
- Yiqing Wang
- yiqing&storswift.com
-46529
- ldap4mail
- Jan Krüger
- jk&jk.gs
-46530
- R-SYS s.r.o.
- Attila Csontos
- attila.csontos&r-sys.sk
-46531
- PGE Polska Grupa Energetyczna S.A.
- Jerzy Compa
- jerzy.compa&gkpge.pl
-46532
- Hinchingbrooke Hospital NHS Health Care Trust
- Sean Diviney
- sean.diviney&nhs.net
-46533
- Open Source System
- Brian Lockwood
- Lockwoodbj&gmail.com
-46534
- Arx One
- Steven Rogers
- servers&arx.one
-46535
- CosmoKey GmbH & Co. KG
- Christian Tacke
- iana&cosmokey.com
-46536
- Textel Marimon s.a.
- Carlos Marimón
- carlos&textel-marimon.com
-46537
- Yodel Delivery Network Limited
- Mark Needham
- mark.needham&yodel.co.uk
-46538
- Pioneers Memorial Healthcare
- Alicia Ortega
- aortega&pmhd.org
-46539
- Virtual Network Element, Inc.
- Kalidas Porika
- kporika&vne.io
-46540
- VSSUT
- Janmejaya Barik
- barikjanmejaya&gmail.com
-46541
- Seneca Data Distributors, Inc.
- Rob Dukette
- robd&senecadata.com
-46542
- Mountain Blue Cancer Care Center
- Amy Holleran
- amy.holleran&mountainbluecare.org
-46543
- CNIAP - Guinea Ecuatorial
- Djassi Fonseca
- djassi.fonseca&nosi.cv
-46544
- Axion Technologies Ltd.
- Carl Cassista
- ticontact&axiontech.ca
-46545
- Rechtsanwaltskanzlei Schaalo
- Wolfram Schaalo
- kanzlei&schaalo.de
-46546
- Impavid LLC
- Benjamin Wilson
- ben&impavid.io
-46547
- BILD GmbH & Co. KG
- Harald Brückner
- harald.brueckner&bild.de
-46548
- Secvice Information Technologies Private Limited
- Raju Alluri
- raju&secvice.net
-46549
- Messer Information Services GmbH
- Matthias Thaler
- matthias.thaler&messer-is.com
-46550
- Dufoort
- Dufoort Michaël
- iana&dufoort.be
-46551
- Amprion GmbH
- Andreas Westhoff
- andreas.westhoff&amprion.net
-46552
- Eltham College
- Piotr Zdarzil
- pz&eltham-college.org.uk
-46553
- Amsterdamtelecom Ltd.
- Victor Litvin
- v.litvin&amsterdamtelecom.ru
-46554
- Anthon Romanov
- Anthon Romanov
- alxadm&yandex.ru
-46555
- Kostya.Pro
- Konstantin Ol'khovyy
- olkhovyy&kostya.pro
-46556
- L.D. Lutum
- Leonardo D'Onofrio
- leonardo&ldlutum.com
-46557
- Scale Genius Inc.
- Michael Vallaly
- iana&scalegenius.com
-46558
- FutoIn
- Andrey Galkin
- andrey&futoin.eu
-46559
- ESC - Electronic Service Center GbR
- Martin A. Wielebinski
- marwie&esc.de
-46560
- Cox Communications Inc - Engineering
- Shannon Orem
- shannon.orem&cox.com
-46561
- BHS Sonthofen GmbH
- Helmut Clausnitzer
- helmut.clausnitzer&bhs-sonthofen.de
-46562
- Revenue Management Solutions, LLC
- Philip Morrow
- hostmaster&revenuemanage.com
-46563
- Virgin Islands Oncology & Hematology,PC
- Eielt Semper Smith
- semper&vioandh.com
-46564
- Entera AS
- Gunay Mazmanoglu
- snmp-mib&entera.net
-46565
- Wiollo Sp. z o.o.
- Rafal Michalak
- r.michalak&wiollo.pl
-46566
- Holbæk Kommune
- Bo Von Jensen
- boj&holb.dk
-46567
- DIROX
- Truong Ta
- truong.ta&dirox.net
-46568
- Moqom Limited
- David Morrissey
- david.morrissey&moqom.com
-46569
- HybridDigital
- Rittichai Limarunothai
- rittichai&hybriddigitals.com
-46570
- Mithril Informatique
- Jean-Noel Rouchon
- mail&mithril.re
-46571
- Fruit of the Loom
- Cliff Coleman
- internettechnician&fotlinc.com
-46572
- Comact Equipment Inc.
- Stefan Graf
- sgraf&comact.com
-46573
- Stefan van Someren
- Stefan van Someren
- iana&vansomeren.nl
-46574
- Encore Systems, LLC
- Joe Enzminger
- joe.enzminger&encoresystems.com
-46575
- WorkCover Queensland
- Server Support
- serversupport&workcoverqld.com.au
-46576
- NFWare Inc.
- Igor Ryzhov
- iryzhov&nfware.com
-46577
- Cloudstead, Inc.
- Jonathan Cobb
- jonathan&cloudstead.io
-46578
- Gereltei Systems
- Zoljargal Gantumur
- contact&zoloogg.com
-46579
- Pivotal Cloud Foundry
- Toolsmiths
- cf-toolsmiths&pivotal.io
-46580
- Braincoolant Oy
- Jan Tuomi
- jan.tuomi&braincoolant.fi
-46581
- MalariaGEN
- Ian Wright
- sysadmin&malariagen.net
-46582
- Robert-Bosch-Krankenhaus GmbH
- Walid Sbaih
- its&rbk.de
-46583
- Linoma Software
- Bob Luebbe
- bluebbe&linoma.com
-46584
- French Lick Resort
- Andrew K. Condra
- acondra&frenchlick.com
-46585
- StrathTech
- Adam McGhie
- contact&strathtech.co.uk
-46586
- ProSiebenSat.1 Media SE
- Biebl Christian
- christian.biebl&p7s1produktion.de
-46587
- Institute of Low Temperature and Structure Research, Polish Academy of Sciences
- Krzysztof Cach
- k.cach&int.pan.wroc.pl
-46588
- Aptitude Technologies
- Bernard Lefebvre
- bernard.lefebvre&aptitudetech.net
-46589
- Stifel Financial Corp
- Chris Savala
- chris.savala&stifel.com
-46590
- suretap wallet lp
- Abbas Zangeneh
- abbas.zangeneh&suretap.com
-46591
- Auditoria y Consultoria de Privacidad y Seguridad, S.L.
- Candido Rodriguez Montes
- candido.rodriguez&prise.es
-46592
- Gebr. Hoffmann Werkzeugmaschinen GmbH
- Steffen Rademacher
- st.rademacher&arcor.de
-46593
- JuntoTelecom
- Gean Martins
- gean.martins&juntotelecom.com.br
-46594
- Matthew Wynn
- Matthew Wynn
- matthew&matthewwynn.com
-46595
- smartbits
- Stephan Burger
- stephan.burger&live.at
-46596
- Hazelnut Software Ltd
- Technical Support
- iana&hazelnutsoftware.co.uk
-46597
- OW2 Consortium
- Stéphane Laurière
- stephane.lauriere&ow2.org
-46598
- Industrielle Alliance Valeurs mobilières inc.
- Florian Niculae
- fniculae&iagto.ca
-46599
- UAB Erisata
- Karolis Petrauskas
- karolis.petrauskas&erisata.lt
-46600
- Mersoft Corporation
- Jeff Smith
- itsupport&mersoft.com
-46601
- Inform-Mobil
- Alexander Sergin
- sergin&immo.ru
-46602
- kt Corporation
- Sanghun Kim
- dustin.kim&kt.com
-46603
- Xeron Universal Technologies
- Rasmus Riis
- tech&xeron.dk
-46604
- NetIndia Private Limited
- Chandrasekhar Vallabhaneni
- chandra&netindia.co.in
-46605
- WALLYS COMMUNICATIONS SDN BHD
- JOVI YEONG
- jovi&wallyscommunications.com
-46606
- Cisco Systems India Private Limited
- Madhur Raj N
- madhurn&cisco.com
-46607
- VetRay N
- Peter Pfeifer
- pp&vetray.de
-46608
- SoftLab–NSK Co., Ltd.
- Igor Arsenin
- administration&softlab-nsk.com
-46609
- The Wireless Innovation Forum
- Lee Pucker
- Lee.Pucker&wirelessinnovation.org
-46610
- Sensorpoint, LLC
- Mark Bain
- markb&sensorpoint.net
-46611
- St Vincents Health Australia (NSW)
- Glenn Elliott
- glenn.elliott&svha.org.au
-46612
- DV Impex, Ltd
- Alexandra Glushkova
- glushkova&doublev.ru
-46613
- JSC "SPO Angstrem"
- Sedykh Fedor
- sedykh&npo-angstrem.ru
-46614
- BBM spol. s r. o.
- Jan Pomahac
- jan.pomahac&bbm.cz
-46615
- WirelessCar
- Ola Dawidson
- ola.dawidson&wirelesscar.com
-46616
- Anghel F. Dan-Alexandru PFA
- Dan-Alexandru Anghel
- dan.anghel&outlook.com
-46617
- Helse Nord IKT
- John Ole Grønmo
- john.ole.gronmo&hnikt.no
-46618
- AXEL
- Georges COTTIN
- georges.cottin&axel.fr
-46619
- Centre Hospitalier Emile Mayrisch
- Roland Kuffer
- downloads&chem.lu
-46620
- Wolseley plc
- Jediah Logiodice
- it.iana-pen.admin&wolseley.com
-46621
- Thales Services France Toulouse
- Antoine Tran
- antoine-b.tran&thalesgroup.com
-46622
- FLAG Solutions S.L.
- Jose A. Rodriguez
- info&flagsolutions.net
-46623
- Trunomi, Inc.
- Pawel Veselov
- pawel&trunomi.com
-46624
- Flexoptix GmbH
- Volker Meiss
- development&flexoptix.net
-46625
- wingtop co., ltd
- jerry wu
- jerry&wingtop.com.tw
-46626
- zibernetics
- Chris Sanchez
- chris&zibernetics.com
-46627
- Init Corporation
- Rytis Urnezius
- it&init.lt
-46628
- SC 4 WAVE BRO SRL
- Andrei Nicolau
- andrei.nicolau&4wave.ro
-46629
- Joe Pitt
- Joe Pitt
- Webmaster&joepitt.co.uk
-46630
- Dominique Dor
- Dominique Dor
- dominiquedor&free.fr
-46631
- DeviousOps
- Michael van Slingerland
- michael&deviousops.nl
-46632
- Encinitas Country Day School
- Richard Bychowski
- admin&ecdschools.org
-46633
- Oncology San Antonio
- Patrick Magallanes
- waji.syed&oncologysa.com
-46634
- NIvetti Systems Private Limited
- Manjul Khandelwal
- manjul&nivettisystems.com
-46635
- INTERSCHALT maritime systems AG
- Fred Ollermann
- fred.ollermann&interschalt.de
-46636
- Honorardozent Peter Kruse
- Peter Kruse
- kruse.peter&outlook.de
-46637
- RaulWalter LLC
- Raul Kaidro
- info&raulwalter.com
-46638
- City of Sunrise
- Chris Rhamanohar
- crhamanohar&sunrisefl.gov
-46639
- Jan Skogqvist
- Jan Skogqvist
- jan.skogqvist&gmail.com
-46640
- Caixa Economica Federal
- Alessandro Lasmar Mourão
- ceptibr05&caixa.gov.br
-46641
- MeterBee
- Felipe Maier Cruz
- fmaier&gmail.com
-46642
- National Documentation Centre
- Alexandros Soumplis
- noc&ekt.gr
-46643
- kittenberger.org
- Peter Kittenberger
- pekittenberger&gmx.at
-46644
- ZettaLogs
- Saygun Onay
- saygun&zettalogs.com
-46645
- Aeronix
- Dana Reed
- dreed&aeronix.com
-46646
- Wavelab Inc.
- Xiang Gao
- xiangg&wave-lab.com
-46647
- Michael G. Sullivan (MGS)
- Michael Sullivan
- mike&mgs.sh
-46648
- Brain4Net, Inc.
- Sergey Romanov
- s.romanov&brain4net.com
-46649
- PTPd project
- Wojciech Owczarek
- wojciech&owczarek.co.uk
-46650
- Humboldt Solutions Ltd
- Adrian Cox
- info&humboldt.co.uk
-46651
- Dantherm Cooling A/S
- Harikrishnan Chinnappan
- hac&dantherm.com
-46652
- Sertel Electronics UK Ltd
- Srinath Gopalan
- srinath.g&sertel.co.uk
-46653
- Raymond Chung Industries Corporation
- Raymond Chung
- raymond_chung&rayind.biz
-46654
- Future Infrastructures Online Ltd.
- Miguel Angel Nubla
- ianaoid&fiolimited.com
-46655
- Innofidei Technologies Inc.
- xiongjun
- xiongjun&innofidei.com
-46656
- Polskie Koleje Państwowe S.A.
- Paweł Weżgowiec
- pawel.wezgowiec&pkp.pl
-46657
- EKCR
- Ziker Koz
- 5033282&gmail.com
-46658
- AssetOwl
- Fletch Hogan
- admin&assetowl.com
-46659
- BBR Verkehrstechnik GmbH
- Eugen Maier
- maier&bbr-vt.de
-46660
- Volvo Group Telematics
- Ola Dawidson
- ola.dawidson&volvo.com
-46661
- Bucherer AG
- Maurizio Riva
- IT&bucherer.com
-46662
- Pointek
- Yagiz Yildirim
- yagiz.yildirim&pointek.com.tr
-46663
- TORRING SYSTEMS CORP
- Pavel Kiriakov
- forhosting&lucky-labs.com
-46664
- Novatronic
- Alfredo Guzmán
- aguzman&novatronic.com
-46665
- Reshin
- Viktor Reshin
- reshin-va&yandex.ru
-46666
- NPF Modem, Ltd.
- Alex Gorokhov
- asg&npfmodem.spb.ru
-46667
- Limited Liability Company «ICBCOM»
- Dmitriy Ivushkin
- divushkin&icbcom.ru
-46668
- ENX Association
- Immo Wehrenberg
- immo.wehrenberg&enx.com
-46669
- Job Corps
- Bill Stites
- stites.bill&jobcorps.org
-46670
- OCTAGON computer&communication
- Alexander Steins
- alexander.steins&octagon.de
-46671
- Medical Specialists of Fairfield, LLC.
- Victoria Root
- Victoria.msf12&gmail.com
-46672
- PrimeDesign
- Markus Primes
- admin&primedesign.at
-46673
- Minoris
- Kent Gustavsson
- kent&minoris.se
-46674
- cantaa GmbH
- Andreas Micklei
- andreas.micklei&cantaa.de
-46675
- Essential Energy
- Matt Coman
- matthew.coman&essentialenergy.com.au
-46676
- Weir Shared Services Ltd
- Cory Davis
- cory.davis&weirgroup.com
-46677
- XATU
- HeiSir
- 369946814&qq.com
-46678
- naksitrallid.com
- Vladislav Artemyev
- iana&naksitrallid.com
-46679
- Bistum Würzburg
- Michael Seufert
- Michael.Seufert&bistum-wuerzburg.de
-46680
- Control Techniques
- Auryn Hughes
- auryn.hughes&emerson.com
-46681
- SV Informatik GmbH
- Andreas Legler
- iana&sv-informatik.de
-46682
- Applied Optoelectronics, Inc.
- Mark Siejka
- mark_siejka&ao-inc.com
-46683
- OkAlfred (formerly 'Zdravec Bulgaria Ltd')
- Alexander Atanasov
- hw&okalfred.com
-46684
- Nazessen
- Peter Breur
- peytor&gmx.com
-46685
- Maag Informatik
- Daniel Maag
- daniel.maag&gmx.net
-46686
- Document Storage Systems, Inc.
- Carlos Serpa
- cserpa&dssinc.com
-46687
- Qualicorp SA
- Carlos Eduardo Faucz
- cefaucz&illimitati.com
-46688
- Karl Camilleri
- Karl Camilleri
- karl&camilleri.za.net
-46689
- Entria LLC
- Wolfgang Baltes
- wolfgang_baltes&hotmail.com
-46690
- 12Sided Technology, LLC
- Phil Vachon
- pvachon&12sidedtech.com
-46691
- IDOBJECT
- Rémi CARLIER
- rfid&idobject.com
-46692
- Ripple
- Craig DeWitt
- craig&ripple.com
-46693
- BestCAS Ltd
- Krassimir Slavchev
- krassi&bestcas.com
-46694
- KoreLogic, Inc.
- Joe Segreti
- iana&korelogic.com
-46695
- Cancer Care of West Central Ohio
- Christopher L. Powell
- cpowell&drdavidpowell.com
-46696
- MastMinder Ltd
- Cliff Whitehead
- CliffWhitehead&MastMinder.com
-46697
- Unimar, Inc.
- Terry Zarnowski
- terryz&unimar.com
-46698
- Cybersales a.s.
- Radek Hladík
- r.hladik&cybersales.cz
-46699
- HCit Consultant
- Dr. Lavanian Dorairaj
- ceo&hcitconsultant.com
-46700
- ICTrex
- ICTrex admin
- ictrex&ictrex.nl
-46701
- State Historical Museum
- German Dubinin
- dgv&shm.ru
-46702
- Control Service do Brasil Ltda.
- Eduardo Antão
- eduardo&controlservice.com.br
-46703
- aBjorne
- Andrea Bosa
- mib&abjorne.info
-46704
- Salib Oncology Hematology
- Roxanne Brown
- billingmanagerhs&yahoo.com
-46705
- Maestria en Seguridad Informatica Aplicada - ESPOL
- Lilian Benavides
- liliantbo&gmail.com
-46706
- Wowza Media Systems, LLC
- Elliot Miller
- legalnotices&wowza.com
-46707
- Neocoretech SAS
- Christophe Rettien
- christophe.rettien&neocoretech.com
-46708
- Action for Children
- Richard Hill
- isias&actionforchildren.org.uk
-46709
- BDO Canada LLP
- Drew Farlinger
- dfarlinger&bdo.ca
-46710
- Network Time Foundation
- OID Administrator
- oid-admin&nwtime.org
-46711
- DoubleNegative.eu
- Márton Levente Szigeti
- szigeti.marton&doublenegative.eu
-46712
- Open Infrastructure
- Daniel Baumann
- system-administration&open-infrastructure.net
-46713
- Datahealth
- Simon Devine
- Simon&datahealth.com.au
-46714
- Cesa Inc
- Mike Joe
- 446251226&qq.com
-46715
- Bioptická laboratoř s.r.o.
- Radek Vopěnka
- rvopenka&trask.cz
-46716
- TARGOBANK AG & Co. KGaA
- Hoffmann Oliver
- oliver.hoffmann&targobank.de
-46717
- Ibys Technologies S.A.
- José Luis Carretero
- jlcarret&ibys.net
-46718
- Sea Island Systems, Inc.
- Lloyd Milligan
- Lloyd&SeaIslandSystems.com
-46719
- dtsi
- Vladimir Datsevich
- oid&dtsi.eu
-46720
- LightFactor
- Jeff Cesnik
- jcesnik&lightfactor.co
-46721
- Cancer Care Center, PC
- Linda Moore
- lindamoorecc&gmail.com
-46722
- Merge Security
- Ren Wei
- renwei&mergesecurity.com
-46723
- United Educators Credit Union
- Dennis Griesgraber
- djg&uecu.coop
-46724
- Ferrograph Limited
- Jeff Ferrier
- jeff.ferrier&ferrograph.com
-46725
- Swift MT
- Kevin Lentle
- kevin.lentle&swiftmt.com
-46726
- U.S. Anesthesia Partners, Inc.
- Russell Booker
- Russell.Booker&USAP.com
-46727
- SOFTEK GLOBAL EDESIGN S DE RL DE CV
- JUAN GONZALEZ
- juan.gonzalez&softekglobal.com
-46728
- Heksagon Group Cy Ltd
- Andraz Oblak
- andraz.oblak&hex-group.com
-46729
- Growing Energy Labs, Inc.
- Ivan Cooper
- ic.pen&geli.net
-46730
- Route Weaver LLC
- Kumaresh Malli
- kmalli&routeweaverllc.com
-46731
- Institut fuer medizinische und pharmazeutische Pruefungsfragen
- Dr. Marco Schaerfke
- oidmaster&impp.de
-46732
- Vedang Radio Technology Pvt. Limited
- Dharmesh Gupta
- dharmesh&vedangradio.com
-46733
- DOM-P Zrt
- Miklos Fazek
- hostmaster&domp.hu
-46734
- TCCC
- Mary Lou Gladieux
- mgladieux&toledoclinic.com
-46735
- Silhouette International Schmied AG
- Johann Mairinger
- j.mairinger&silhouette.com
-46736
- Powertech IT Services S.R.L.
- Marian Patruca
- mpatruca&gmail.com
-46737
- Amphinicy Technologies
- Marko Mrvelj
- marko.mrvelj&amphinicy.com
-46738
- Beeler IT Services
- Adrian Beeler
- info&beeler-it-services.ch
-46739
- RONIT. N.THAKOR
- RONIT. N.THAKOR
- ronitnthakor&gmail.com
-46740
- Zendesk, Inc
- Aaron Peschel
- opsteam&zendesk.com
-46741
- Aspect Enterprise Solutions Inc.
- Liviu Faciu
- lfaciu&aspectenterprise.com
-46742
- Global Biodiversity Information Facility (GBIF)
- Tim Robertson
- trobertson&gbif.org
-46743
- Technology Architects LLC
- John Flanigan
- JFlanigan&TechnologyArchitects.com
-46744
- Transaction Technologies Pte Ltd
- Thorsten Neumann
- thorsten.neumann&smartpesa.com
-46745
- Joe Thielen
- Joe Thielen
- joe&joethielen.com
-46746
- Weill Cornell Medicine
- Lucas Rockwell
- lur2015&med.cornell.edu
-46747
- The Christ Hospital Hem Onc
- Regina Lampe RN BSN OCN
- regina.lampe&thechristhospital.com
-46748
- Alliance Technology Group, LLC
- Eric L. Kibisingo
- eric.kibisingo&alliance-it.com
-46749
- 121 Marketing Services Group, Inc.
- David Carter
- hostmaster&121msg.com
-46750
- MobilSign Ltd.
- Peter Dohanyos
- info&mobilsign.hu
-46751
- Carrizo Oil & Gas, Inc.
- David Hepler
- hostmaster&carrizo.com
-46752
- THE MINNITI CENTER FOR MEDICAL ONCOLOGY & HEMATOLOGY
- LINDA BURKE
- minniticenterlinda&comcast.net
-46753
- Hematology Oncology Clinic, LLP
- Steven Winkler
- stevenwinkler3&aol.com
-46754
- NETFOX AG
- Mirko Ludeke
- mludeke&netfox.de
-46755
- Nexgen Oncology
- Sujan Paudel
- spaudel&mycancercenter.com
-46756
- Michael Oberdorf IT-Consulting
- Michael Oberdorf
- info&oberdorf-itc.de
-46757
- DeMoulas Market Basket, Inc.
- Neil Buckley
- security&demoulasmarketbasket.com
-46758
- CarMax
- David Harold
- david_harold&carmax.com
-46759
- CoverMyMeds
- CoverMyMeds
- admins&covermymeds.com
-46760
- Teksush.com
- Shubhra Prakash Nandi
- email2shubhra&gmail.com
-46761
- Groupe JVS
- childeric busche
- childeric.busche&jvs.fr
-46762
- Atos IT Solutions and Services GmbH
- Björn Pohl
- bjoern.pohl&atos.net
-46763
- alfer aluminium Gesellschaft mbH
- Christine Breitmoser
- christine.breitmoser&alfer.com
-46764
- HealthInsight
- Information Services
- hisrlis&healthinsight.org
-46765
- Sviaz-Bank
- Nikolay Kurepkin
- nkurepkin&sviaz-bank.ru
-46766
- Creatcomm Technology
- jie zhao
- suijtwl&gmail.com
-46767
- CarMax, Inc
- Shiva Thatipelli
- shiva_thatipelli&carmax.com
-46768
- Symphony Communication Services LLC
- Andrew Wnuk
- andrew.wnuk&symphony.com
-46769
- St. Leonard's Community Services
- Grant Emsley
- gemsley&st-leonards.com
-46770
- Benz Dataconsulting
- Christian Benz
- info&benz-dc.de
-46771
- Atos IT Services Sp. z o.o.
- Paweł Antczak
- pawel.antczak&atos.net
-46772
- Brig Center for Cancer Care and Survivorship
- Christy Campbell
- ccampbell&brigcancercare.com
-46773
- Voss Kommunikasjon AS
- Øyvind Fykse
- oyvind&vossk.no
-46774
- K4Connect
- Jonathan Gould
- jonathan&k4connect.com
-46775
- Bourgeois Bits LLC
- Peter Sagerson
- psagers&bourgeoisbits.com
-46776
- Westchester Cancer Care
- Ellen Hantman
- wcancercare&aol.com
-46777
- Air New Zealand
- Mark Sim-Smith
- mark.sim-smith&airnz.co.nz
-46778
- NTx Back Office Consulting Group
- Christian Schindler
- christian.schindler&ntx.at
-46779
- Belgian Supreme Administrative Court
- Pieterjan Montens
- pmo&raadvst-consetat.be
-46780
- Leo Angelo
- Leo Angelo
- theleoa&gmail.com
-46781
- Sasola Limited
- Ian Tyson
- ian.tyson&sasola.com
-46782
- John Holland PTY LTD
- Tim Rollason
- tim.rollason&jhg.com.au
-46783
- Nephos6
- Ciprian Popoviciu
- chip&nephos6.com
-46784
- COSMOVISION Co., Ltd.
- Yutaka Yamatsu
- yamatsu.yutaka&cosmovision.co.jp
-46785
- Comark Communications LLC
- Jason Hwang
- jhwang&comarktv.com
-46786
- blue-beam.de
- Aaron Bulmahn
- webmaster&blue-beam.de
-46787
- Sony Computer Entertainment Shanghai Ltd.
- Chen Wenli
- wenli.chen&scesh.sony.com
-46788
- Xabyss Inc.
- Changwoo Ryu
- changwoo&xabyss.com
-46789
- Rains Corp.
- Thomas Lewis
- thomaslewis&rains-corp.com
-46790
- TOYOTA MOTOR CORPORATION
- Shinichiro Hagihara
- hagihara&mail.toyota.co.jp
-46791
- Stephan Fiebrandt
- Stephan Fiebrandt
- stephan&fiebrandt.org
-46792
- ISON Technology Co., Ltd
- Eric.hung
- eric.hung&ison.com.tw
-46793
- ASAT Co., Ltd.
- Young Hwan Kim (YH Kim)
- kyhwan&asat.kr
-46794
- Decision Detective Corporation
- D. Stewart
- info&decisiondetective.com
-46795
- Organization for Security and Co-operation in Europe
- Andreas Hainz
- andreas.hainz&osce.org
-46796
- Bedrock Automation Platforms, Inc.
- John Weismiller
- john.weismiller&bedrockautomation.com
-46797
- The self-financing Science Information Center for New Technologies under State Tax Committee of the Republic of Uzbekistan
- Azamat Musakhanov
- sicnt.uz&gmail.com
-46798
- RBS Services (Switzerland) Ltd
- Andrew Church
- andrew.church&rbs-services.com
-46799
- Interblock d.d.
- Dobrovoljc Dejan
- dejan.dobrovoljc&interblockgaming.com
-46800
- Digitoll Information Technology and Servicing Ltd.
- Viktor Németh
- digitoll&digitoll.co.hu
-46801
- The Hut Group
- Martyn Ashworth
- martyn.ashworth&thehutgroup.com
-46802
- The Business Clinic Ltd
- Mark Rawlinson
- mark&thebusinessclinic.ltd.uk
-46803
- BROCELIA
- Christophe GOUTEIX
- gouteix&brocelia.fr
-46804
- Himnark CJSC
- Ruben Osipyan
- ruben&himnark.am
-46805
- Oncology Consultants
- Jerel Sukarangsan
- jsukarangsan&oncologyconsultants.com
-46806
- Mid Florida Hematology Oncology
- Harish Gowda
- hgowda&mfhoc.com
-46807
- Motiv Telecom Group
- Eugene Bobin
- gene&motivtelecom.ru
-46808
- Fall River School District
- Jim Maynard
- jmaynard&fallriver.k12.wi.us
-46809
- KB PROMSVYAZ
- Viktor Khomenko
- vx&dbic.pro
-46810
- Stockton University
- Brian Cole
- Brian.Cole&stockton.edu
-46811
- L'Imprimerie
- Menard Patrick
- pmenard&l-imprimerie.fr
-46812
- Konsortium ICT Pantai Timur
- Ahmad Fazli Ismail
- office&k-ict.org
-46813
- Sunbird Software, Inc.
- Michael Davidson
- michael.davidson&sunbirddcim.com
-46814
- SC3 Technologies Oü
- Andrew Billington
- andy.billington&sc3tech.ee
-46815
- Third Point LLC
- Scott Zionic
- it&thirdpoint.com
-46816
- HELM AG
- Gregor Glinski
- g.glinski&helmag.com
-46817
- Atam Holdings
- Adam Green
- adamgreen&atam.com
-46818
- Systemhaus Scheuschner GmbH
- Mario Andexel
- mandexel&scheuschner.de
-46819
- Attenda Ltd.
- Julian Jordan
- julian.jordan&attenda.com
-46820
- Telekom Malaysia Berhad
- Mazlaini Yahya
- mazlaini&tmrnd.com.my
-46821
- Commandus
- Andrei Ivanov
- support&commandus.com
-46822
- Zhuhai Kingsoft Office Software Co Ltd
- Chen Jie
- chenjie4255&gmail.com
-46823
- Siselectron Technology Ltd
- Eva Tsai
- eva&siselectron.com
-46824
- Certly, Inc.
- Ian Carroll
- ian&certly.io
-46825
- Loop Technologies Limited
- Glenn McCarthy
- glennm&looptechnologies.com
-46826
- OptimalMethods Ltd.
- Yuriy Demchenko
- yuriy.demchenko&optimalmethods.ca
-46827
- Affix Technology Co., Ltd.
- Sompop Kumnoonsate
- sompop&microx.co.th
-46828
- Sea and Air Technology, S.L.
- Francisco Gonzalez
- fgonzalez&seairtech.com
-46829
- GLOCK Ges.m.b.H.
- Christian Mikula
- christian.mikula&glock.at
-46830
- LearnConsult - DI Meitz & Ing. Pock OG
- Christoph Schick
- christoph.schick&learnconsult.com
-46831
- GRAUPNER medical solutions GmbH
- Robert Kreher
- robert.kreher&graupner-medizin.de
-46832
- Heylige FRau Latte
- Robert Pehl
- robert.pehl&hf-latte-berlin.de
-46833
- Synapses Technologies, LLC
- Brian Long
- Brian.Long&SynapsesTech.com
-46834
- Martin GmbH für Umwelt- und Energietechnik
- Guenter Flohe
- guenter.flohe&martingmbh.de
-46835
- rf152
- Richard Franks
- pen&rf152.co.uk
-46836
- Bilfinger GreyLogix GmbH
- Lars Petersen
- lars.petersen&bilfinger.com
-46837
- AZD Praha s.r.o.
- Richard Lammel
- doz&azd.cz
-46838
- Swaffer Consulting Ltd.
- Stuart Swaffer
- stuart&swaffer.net
-46839
- RED ELECTRICA DE ESPAÑA SAU
- José Manuel Moure
- jmoure&ree.es
-46840
- Christophorus Club e.V.
- Henryk Plötz
- henryk&christophorus.club
-46841
- Hwacheon Machinery Europe GmbH
- Steffen Rademacher
- admin-hme&hwacheon.com
-46842
- Hamburger Software GmbH & Co. KG
- Dennis Kronbuegel
- dennis.kronbuegel&hamburger-software.de
-46843
- Newfield Automation Ltd.
- David Jones
- david.jones&newfieldautomation.com
-46844
- Dreamtime.net (Thailand) Co., Ltd.
- Stephen Karrington
- support&diamondcard.us
-46845
- Interlink INC
- Eduardo Malisani
- support&interlink.com.ar
-46846
- FLOPNET
- Krzysztof Zarzycki
- admin&flopnet.pl
-46847
- VALLEY MEDICAL & SURGICAL CLINIC
- WANDA MCCOY
- WANDASCOTT624&CHARTER.NET
-46848
- Lavelle Networks India Private Limited
- Trivikrama Rao V
- operations&lavellenetworks.com
-46849
- Irving Independent School District
- Jon Melancon
- jmelancon&irvingisd.net
-46850
- Tula State Center of Information Technology
- Aleksei Sukhov
- noc&tularegion.ru
-46851
- Terremark
- Bill McLaren
- billmcl&terremark.com
-46852
- viagogo AG
- David Suart
- iana&viagogo.com
-46853
- PAC Enterprises
- Brad Alexander
- balexand&comcast.net
-46854
- Hagenberger Kreis zur Förderung der digitalen Sicherheit
- System Administrator
- admin&hagenbergerkreis.at
-46855
- ShowCase PRO Tecnologia LTDA
- Rafael Augusto Peressinoto
- rap&showcasepro.com.br
-46856
- ZPEG, Inc.
- Scott Hastings
- scott&zpeg.com
-46857
- Park Controls & Communications (P) Ltd.
- Satyanarayana Tummalapalli
- tsatya&parkcontrols.com
-46858
- Dgoujard
- Damien Goujard
- damien&macuser.fr
-46859
- Guangdong Quantum Technology Co., Ltd
- NancyChen
- nancy_chern&163.com
-46860
- Bittacle Consulting Limited
- Craig Baltzer
- Craig.Baltzer&bittacle.com
-46861
- JVCKENWOOD Corporation
- Manabu Sato
- snmp.support&jvckenwood.com
-46862
- Digital Life Promotion Association
- Kazuhiro Tabuchi
- info&dlpa.jp
-46863
- Bosch Thermotechnik GmbH
- Tobias Baumgartner
- tobias.baumgartner2&de.bosch.com
-46864
- Embedtronics Oy
- Sami Kantoluoto
- sami.kantoluoto&embedtronics.fi
-46865
- IS4U, s.r.o.
- Petr Dadák
- tech&is4u.cz
-46866
- Virdata NV
- Jeremy De Clercq
- jeremy.declercq&virdata.com
-46867
- Synthetel Corporation
- Shao Miller
- iana-pen&synthetel.com
-46868
- Secure Energy Services
- Tim Nickerson
- tnickerson&secure-energy.com
-46869
- Torchmind
- Johannes Donath
- johannesd&torchmind.com
-46870
- relaxt confusion labs e.U.
- Thomas Gradisnik
- tg&relaxt.at
-46871
- Magic Mike, Ltd
- Michael Bonhomme
- michael.bonhomme&gmail.com
-46872
- Bimex Energy AG
- Lukas Kaufmann / Simon Kech
- lukas.kaufmann&polytech.ch
-46873
- y1s2
- smail chamrah
- yossefsaso2015&gmail.com
-46874
- Wavenet sprl
- Jean-Noël Wallez
- iana&wavenet.be
-46875
- prodot GmbH
- Mischa Hueschen
- mischa.hueschen&prodot.de
-46876
- GE Lighting
- SiNguyen Vo
- singuyen.vo&ge.com
-46877
- ATB Financial
- Dustin Heywood
- dheywood&atb.com
-46878
- PermaGreen Supreme, Inc.
- Christopher McChristian
- clm&permagreen.com
-46879
- Lengvarsky.com
- Igor Lengvarsky
- igor&lengvarsky.com
-46880
- Technology Kitchen Corporation
- Brad Claflin
- bradclaflin&technologykitchen.com
-46881
- henz.co
- John Henz
- john.henz&jhenz.net
-46882
- LSTI
- Philippe Bouchet
- pbouchet&exchange.lsti.fr
-46883
- Capsicum Business Architects
- Michael Wyatt
- mwyatt&capsi.com.au
-46884
- Freie ev. Gemeinde Giessen
- Peter Schuster
- admin&feg-giessen.de
-46885
- TwoFive, Inc.
- Masatatsu Akamine
- akamine&twofive25.com
-46886
- Beken Learning Systems, Inc.
- Steve Benoit
- steve.benoit&bekenlearning.com
-46887
- Bulletin.net Ltd
- Kerry Sainsbury
- kerry.sainsbury&bulletin.net
-46888
- KRDS
- Guillaume Simon
- hosting&krds.com
-46889
- Gravity Academy Engineering
- grant haywood
- mrgranthaywood&gmail.com
-46890
- SOLUM Co., Ltd.
- ChangWoo Lee
- cw0220.lee&solu-m.com
-46891
- fmad engineering llc
- Aaron Foo
- aaron_ppus&fmad.com
-46892
- TwelveBaud Studios, LLC
- Andrew Cook
- andrew.cook&twelvebaud.net
-46893
- Antelope Enterprises
- Joel Maslak
- jmaslak&antelope.net
-46894
- Hanwha S&C
- See Yun Kim
- seeyunk&hanwha.com
-46895
- NexDefense, Inc.
- Jeff Barber
- jeff.barber&nexdefense.com
-46896
- UNIACC Electronic Technology Ltd. of Suzhou
- Kingtonlee
- kingtonlee&sina.com
-46897
- Virtual Hold Technology, LLC
- Sean O'Rourke
- sorourke&virtualhold.com
-46898
- Hewlett-Packard (Schweiz) GmbH
- John Henz
- john.henz&hpe.com
-46899
- TDK LAMBDA LTD
- SHMUEL MASSIL
- samuel.m&tdk-lambda.co.il
-46900
- TiePie engineering
- Anton Poelsma
- sysops&tiepie.nl
-46901
- Wilhelmsen Loom Consulting
- Lars Wilhelmsen
- lars&sral.org
-46902
- Keegan Moodley Ltd
- Keegan Moodley
- keeganmoodley96&gmail.com
-46903
- DE-CIX Management GmbH
- Kay Schroeder
- kay.schroeder&de-cix.net
-46904
- Sepura plc
- Nick James
- nick.james&sepura.com
-46905
- KTI RÁDIO, spol. s r.o.
- Miroslav Sajko
- sajko&kti.sk
-46906
- Enghouse Networks Nordics AB
- Johan Norborg
- johan.norborg&enghouse.com
-46907
- Qognify LTD
- Info at Qognify
- info&qognify.com
-46908
- Ascot Industrial
- Marco Bambili
- m.bambili&ascotinternational.it
-46909
- Centric Housing & Healthcare
- Erik van Alderwegen
- erik.van.alderwegen&centric.eu
-46910
- AIC S.A.
- IT Department
- it&myaic.com
-46911
- KERLINK
- Dubourg Ronan
- ronan.dubourg&kerlink.fr
-46912
- Nassauische Heimstaette Wohnungs- und Entwicklungsgesellschaft mbH
- Michael Schreck
- michael.schreck&naheimst.de
-46913
- Hotspot Tiefenort
- Thomas Pinkert
- thomas.pinkert&hotspot-tiefenort.de
-46914
- Administration des Ponts et Chaussées
- Georges Goebel
- georges.goebel&pch.etat.lu
-46915
- raffel.biz
- Joern Raffel
- joern&raffel.biz
-46916
- Aviva Voice Systems and Services SL
- Javier Moreno
- jmoreno&avivavoice.com
-46917
- PC-TipTop
- Robert Christian Strasser
- pki&pc-tiptop.de
-46918
- GRUPO REVENGA
- FRANCISCO JOSÉ ELENO PARDO
- elias.molinedo&revenga.com
-46919
- Aadi Network Tools
- Hemant Kelkar
- hemantkelkar2001&yahoo.com
-46920
- DEVISE FUTURES - IT SOLUTIONS, LDA
- José Eduardo Pina Miranda
- jose.miranda&devisefutures.com
-46921
- Universidade Federal de Sao Joao del-Rei
- Roosevelt Mairink dos Santos Junior
- mairink&ufsj.edu.br
-46922
- Wolf GmbH
- David Mager
- David-Arpad.Mager&Wolf-Heiztechnik.de
-46923
- LG&E-KU LLC
- Steven Ramirez
- Steven.Ramirez&lge-ku.com
-46924
- Oncology Specialists of Charlotte, PA
- Erin LeMire
- elemire&oncologycharlotte.com
-46925
- EEBus Initiative e.V.
- Andreas Schwackenberg
- schwackenberg&eebus.org
-46926
- Midas Green Technologies
- Chris Boyd
- iana&midasgt.com
-46927
- INVITE Networks Incorporated
- Josh Whiting
- josh&invitenetworks.com
-46928
- r0ck.net
- Cary Kempston
- iana&r0ck.net
-46929
- Uzma Iqbal MD PA
- Barbara Hand
- manager&houstoncenterofhope.com
-46930
- Sandelman Software Works
- Michael Richardson
- mcr&sandelman.ca
-46931
- Welch Allyn Singapore Pte Ltd
- Michael Lim
- michael.lim&welchallyn.com
-46932
- OAO NEFAZ
- Gavrilenko Sergey
- admin&nefaz.ru
-46933
- Business&Decision
- Blyednova Iryna
- iryna.blyednova&businessdecision.com
-46934
- AFSOC
- David Bricker
- afsoc.csf.scp.cmia&us.af.mil
-46935
- Provinzial NordWest
- Uwe Karhof
- ca-admin&provinzial.de
-46936
- Ingenieurbüro Eggimann
- Peter Eggimann
- office&i-buero.ch
-46937
- jduprat.net
- Jean-Luc Duprat
- jld&acm.org
-46938
- Frederick Oncology Hematology Associates
- Naycherie Alvira
- manager&fredonc.com
-46939
- Sentinel Technologies
- Doug Schaapveld
- dschaapveld&sentinel.com
-46940
- Quantic Telecom
- Josselin Lecocq
- noc&quantic-telecom.net
-46941
- Noom, Inc.
- Zachary Elliott
- infrastructure&noom.com
-46942
- Löwenfelsen UG (haftungsbeschränkt)
- Philipp Schafft
- it&loewenfelsen.net
-46943
- STC Systems
- François Lacombe
- iana&stcsystems.fr
-46944
- Beijing Yanglian technology co., LTD
- Tenen An
- ancuizhao&ylnetworks.com
-46945
- Rafako S.A.
- Mateusz Żołyński
- administratorzy&rafako.com.pl
-46946
- Transports Publics Genevois
- Jean-Christophe Valiere
- ExploitationSRT&tpg.ch
-46947
- Meplan GmbH
- Martin Stefan Riesel
- itadmin&meplan.de
-46948
- United Airlines, Inc.
- Brandon Mangold
- brandon.mangold&united.com
-46949
- Moore Family
- David Moore Jr.
- drmoorejr&gmail.com
-46950
- FRZ Uni Leipzig
- Bjoern Schwarzbach
- schwarzbach&wifa.uni-leipzig.de
-46951
- 中山大学附属第一医院 (First Affiliated Hospital of Sun Yat-sen)
- 王武 (Wang Wu)
- cfanwang_001&126.com
-46952
- SecureAuth Corporation
- Michael Franke
- dev_mgmt&secureauth.com
-46953
- Active8
- Erik de Jonge
- erik&a8.nl
-46954
- Institut Puig Castellar
- Gerard Falcó
- gerardfp&iespuigcastellar.xeill.net
-46955
- Wolfnet
- Jason Fritcher
- jkf&wolfnet.org
-46956
- Institute of Cosmophysical Research and Aeronomy of the Siberian Branch of the Russian Academy of Sciences
- Andrey I. Ivanov
- andrey.ivanov&ikfia.sbras.ru
-46957
- setelsa
- Jesus Manuel Ibañez Gomez
- jibag&setelsa.net
-46958
- New Cloud Technologies Ltd.
- Vladislav Varnavsky
- vladislav.varnavsky&ncloudtech.ru
-46959
- Jaxageto
- Robert Labudda
- iana-contact&jaxageto.de
-46960
- mrn sa (formerly 'mrn lda')
- bruno romao
- ssi&mrn.pt
-46961
- emineo AG
- Claudio Jossen
- ictservices&emineo.ch
-46962
- Novaris Ltd.
- Evgeny Kurensky
- support&novaris.ru
-46963
- Shenzhen United Innovation Automatic Control System Co., Ltd.
- likongcai
- lghcg2015&hotmail.com
-46964
- Yandik
- Yandi Kuspriandi
- rian191&gmail.com
-46965
- Wordery
- Lee Valentine
- tech&wordery.com
-46966
- KIRACON Ltd.
- Rainer Kirchner
- piana&kiracon.com
-46967
- Thompson Rivers University
- Wesley Cole
- hostmaster&tru.ca
-46968
- Triad RF Systems
- David Campbell
- info&triadrf.com
-46969
- R&D Software Solutions srl
- Dragos Iosub
- dragos&rdss.ro
-46970
- Borealis
- Ivo Karremans
- ivo.karremans&borealisgroup.com
-46971
- GKeS
- Sunghae Kim
- shkim&gkes.co.kr
-46972
- ICS Industries Pty Ltd
- David Barker
- dbarker&icsindustries.com.au
-46973
- Datalab Software GmbH
- Bernhard Radke
- info&datalab.de
-46974
- EdgeTheory LLC
- Maloy Wilkes
- maloywilkes&leadify.net
-46975
- MediGroup
- Cedomir Suljagic
- c.suljagic&medigroup.rs
-46976
- Rhebo AG
- Martin Menschner
- martin.menschner&rhebo.com
-46977
- ELTEC Elektronik AG
- Ralf Spachmann
- rspachmann&eltec.de
-46978
- The Akron Holding
- Alexander Lukin
- it&akron-holding.ru
-46979
- Q&D Solutions
- Carl Sörqvist
- oid-admin&qdsolutions.se
-46980
- Ondics GmbH
- Wolfgang Clauss
- marketing&ondics.de
-46981
- Netclient as
- Svend Eriksen
- supplier&netclient.no
-46982
- Smart Concepts B.V.
- Johan Vaatstra
- info&smartconcepts.nl
-46983
- inIT - Institute Industrial IT, Ostwestfalen-Lippe University of Applied Sciences
- Uwe Meier, Prof. Dr.-Ing.
- uwe.meier&hs-owl.de
-46984
- SABO Elektronik GmbH
- Ulrich Gruenebaum
- gruenebaum&sabo.de
-46985
- Marcus Portmann
- Marcus Portmann
- marcus&mmp.guru
-46986
- Meister Rechtsanwaelte
- Bernhard Radke
- b.radke&meisterlaw.de
-46987
- Cancer & Blood Disorders Treatment Center
- Lauren Breznak
- lmbreznak&gmail.com
-46988
- CGI Deutschland
- Uwe Hering
- uwe.hering&cgi.com
-46989
- Systemservice Nordfriesland
- Sascha Büttner
- Sascha.Buettner&sysserv-nf.de
-46990
- ACCOLADE ELECTRONICS PVT. LTD.
- Mr. Deepak Jagdale
- design&accoladeelectronics.com
-46991
- Universitaetsmedizin Goettingen
- Mathias Schuetze
- mathias.schuetze&med.uni-goettingen.de
-46992
- IP CINT
- Zhitenev Viktor
- vicomsys&mail.ru
-46993
- TDP s.r.o.
- Petr Kureš
- pkures&tdp.cz
-46994
- ETS Schick
- Andreas Schick
- andreas.schick&elektrotechnik-schick.de
-46995
- Tantalus Systems
- Kel Bahi
- kbahi&tantalus.com
-46996
- Claus Queck GmbH
- Thomas Frings
- it&stahlbau-queck.de
-46997
- MyQuickCloud
- Talal Choucair
- iana&myquickcloud.com
-46998
- CEHL
- Cristian E. Honorato L.
- cristian&honorato.cl
-46999
- RAK
- XiaoXia Cui
- jackel.cui&dhdz-suzhou.com
-47000
- Converling Group B.V.
- Dennis van den Oever
- Domains&converling.com
-47001
- LCS Co.Ltd
- Johnson Lu
- lcsbbs&163.com
-47002
- System Controls Technology Solutions Private Limited
- Barry Anand Francis
- webmaster&system-controls.com
-47003
- JSC VELAN
- Maxim Tsyplakov
- tm&oganer.net
-47004
- Secucloud Network GmbH
- Steffen Bajerke
- steffen.bajerke&secucloud.com
-47005
- Fort Lewis College
- Information Technology
- information_technology&fortlewis.edu
-47006
- TransneftEnergy, LLC
- Artem Shtykov
- ShtykovAA&tne.transneft.ru
-47007
- Ascent Resources
- Murphy Crosby
- murphy.crosby&ascentresources.com
-47008
- MBDA France
- Jean-Philippe Brossat
- jean-philippe.brossat&mbda-systems.com
-47009
- ISIS Bilisim Teknolojileri San. Tic. Ltd. Sti.
- Mustafa Kerim Yılmaz
- mustafa.yilmaz&isisbilisim.com.tr
-47010
- UK Ministry of Defence
- Mathew Newton
- hostmaster&mod.uk
-47011
- Ozarks Community Hospital
- Joe Johnson
- joejohnson&ochonline.com
-47012
- SIMP
- Trevor Vaughan
- simp&onyxpoint.com
-47013
- APTVISION LIMITED
- Marek Wierzbicki
- markw&aptvision.com
-47014
- BBS1 Mainz
- Frank Schurad
- edv&bbs1-mainz.de
-47015
- Zeye Solutions
- Pavel Reznikov
- info&zeye.ws
-47016
- BlackSands Inc
- Timothy Gallagher
- tgallagher&blacksandsinc.com
-47017
- Qumulo Inc.
- Michael Murray
- mmurray&qumulo.com
-47018
- ZeuSWarE GmbH
- Kai Scheddin
- kaisch&zeusware.de
-47019
- ApexSQL LLC
- Adrijan Bandu
- adrijan.bandu&apexsql.com
-47020
- Flor Szoftver Ltd.
- Flor Gabor
- info&florszoftver.hu
-47021
- Real Time Automation, Inc.
- Scott Zukewich
- szukewich&rtaautomation.com
-47022
- TSI Automacao
- Eduardo Goncalves
- tsi&tsi-aut.com.br
-47023
- Xolarsoft
- Guynell Pittman
- gpittman&xolarsoft.com
-47024
- Catalyze
- Mark Olschesky
- mark&catalyze.io
-47025
- Charles River Analytics, Inc.
- James Lauwers
- iana&cra.com
-47026
- Paraqum Technologies (Private) Limited
- Ajith Pasqual
- pasqual&paraqum.com
-47027
- Quavant Networks, Inc.
- Ronald Phillips
- rphillips&quavant.com
-47028
- Bund der Pfadfinderinnen und Pfadfinder e.V.
- Philipp Steinmetzger
- hostmaster&pfadfinden.de
-47029
- Thomas Tague
- Thomas Tague
- pen&intivo.com
-47030
- HAN Networks Co., Ltd
- Fan Xiaowei
- fanxw&han-networks.com
-47031
- Shenzhen Eunicum Electric Co., Ltd.
- Xianyao Yu
- xianyao.yu&eunicum.com.cn
-47032
- Shanghai Yamu Technology Limited
- Xiaodong Zhang
- xd.zhang&yamutech.com
-47033
- LLC "66 Parallel"
- Alexei Babich
- expl&66p.su
-47034
- CARS
- Fred Yin
- fredyin32&gmail.com
-47035
- trash.net
- Roman Fischer
- romanf&trash.net
-47036
- Ecosoft B.V. (trademark is Vidicode)
- Alwin Adolf
- alwin&vidicode.nl
-47037
- Jubic Oy
- Matti Rita-Kasari
- matti.rita-kasari&jubic.fi
-47038
- Université de Namur (UNamur)
- Antoine Roly
- antoine.roly&unamur.be
-47039
- 312Telephony
- Charlie Srutowski
- csrutowski&312telephony.com
-47040
- ChuckStarter
- C Srutowski
- srutowsk&chuckstarter.com
-47041
- gurtzick.net
- Thomas Gurtzick
- iana-pen&gurtzick.de
-47042
- Neragon Networks LTD
- Raviv Zeev
- raviv&neragon.com
-47043
- Illusion Ltd.
- Csaba Major
- major&illusion.hu
-47044
- Charter Court Financial Services
- Stuart Pittaway
- stuart.pittaway&chartercourtfs.co.uk
-47045
- MartinLefebvre.com
- Martin Lefebvre
- dadexter&gmail.com
-47046
- Bucks New University
- Dr Nikos Baltas
- Nikos.Baltas&bucks.ac.uk
-47047
- Phoenix Home
- YANG WEI
- urbain.yang&qq.com
-47048
- Webnii
- David J. Warho
- dwarho&webnii.com
-47049
- EndFirst LLC
- Rob Archibald
- rob.archibald&endfirst.com
-47050
- The AREDN Project
- Andre Hansen
- andre.k6ah&gmail.com
-47051
- Virtu Financial LLC
- Peter Venardos
- ondesk&virtu.com
-47052
- SK Planet
- Jinoos Lee
- jinoos&sk.com
-47053
- SOUTHEAST ASIA JOINT STOCK COMMERCIAL BANK (SeABank)
- Nguyen Tuan Cuong
- cuong.nt&seabank.com.vn
-47054
- CJSC Transmashholding
- Kapitonov Mikhail
- info&tmholding.ru
-47055
- GouldFLP
- Thomas Gould
- tgould&gouldflp.com
-47056
- SunEdison Inc
- John Bassinger
- jbassinger&sunedison.com
-47057
- CityLink Data Co,.Ltd
- Zhihong You
- youzhihong&citylinkdata.com
-47058
- AlfaSix Tecnologia
- Fernando Gottlieb
- fernando&alfasix.com.br
-47059
- Earth2 Software Pty Ltd.
- Adam Ali
- adam.ali&earth2.com.au
-47060
- elementmedia GmbH
- Christian Friedrich
- friedrich&elementmedia.com
-47061
- Shenzhen headsun technology co.,ltd.
- Li Zhi
- 13603076995&139.com
-47062
- Isha Foundation
- Arumugam Rajarethinam
- arumugam.r&ishafoundation.org
-47063
- ZWAY CO.,LTD.
- Zhou Arron
- arron&zwpdu.com
-47064
- St. Joseph's Anglo-Chinese Primary School
- Kwok Wan
- admin&sjacps.edu.hk
-47065
- TACACS.net, Inc.
- Rob Lemaster
- rob&tacacs.net
-47066
- VISQUAL Technologies
- Brave Wong
- admin&visqual.com
-47067
- xlea.se GmbH
- L. Wolf
- l.wolf&xlea.se
-47068
- Optelix (Pty) Ltd
- Wietz Joubert
- wietz&optelix.com
-47069
- Economia per i Cittadini
- William B. Clay
- hostmaster&epici.it
-47070
- Orell Fuessli Holding AG
- Beat Gruetter
- support&ofh.ch
-47071
- Flash Systems
- Daniel Goss
- developer&flashsystems.de
-47072
- 567.dk
- Henrik Bruun
- registration&567.dk
-47073
- Layka Soluciones
- Arturo Diaz Rosemberg
- arturodr&gmail.com
-47074
- TRONTEQ Electronic
- Simon Tapmeyer
- Simon.Tapmeyer&tronteq.de
-47075
- PROJECT-M
- Kimura Masao
- cybermasa&project-m.jp
-47076
- Bridgeway Security Solutions
- Jason Holloway
- it&bridgeway.co.uk
-47077
- Device Insight GmbH
- Matthias Rothe
- it&device-insight.com
-47078
- JAPAN TELECOMMUNICATION ENGINEERING SERVICE CO., LTD.
- Manabu Teshirogi
- ma-teshirogi&j-tes.co.jp
-47079
- Mott MacDonald
- Joe Madden
- helpdesk.tts&mottmac.com
-47080
- EDV-Beratung Baumgarten GmbH
- Daniel Gompf
- daniel.gompf&edv-baumgarten.de
-47081
- Aragon Institute of Engineering Research
- Juan Ignacio Garcés Gregorio
- hcluster&unizar.es
-47082
- Mobiquithings
- Jérémy RIZZOLI
- jrizzoli&sierrawireless.com
-47083
- Advanced Vision Technology LTD
- Alan Pritchard
- alan&avtechuk.com
-47084
- Stade Toulousain Rugby
- Julien BARES
- jbares&stadetoulousain.fr
-47085
- Controles Inteligentes S.A.S
- Pedro Camargo
- pcamargo&ci24.com
-47086
- Olmsted County Minnesota
- Jim Burke
- burke.jim&co.olmsted.mn.us
-47087
- Masonic Villages of the Grand Lodge of PA
- Tamara Hake
- thake&masonicvillages.org
-47088
- Pro-hosting s.r.o.
- Peter Húbek
- info&pro-hosting.sk
-47089
- Ramp Holdings, Inc.
- Giovanni Marzot
- gmarzot&ramp.com
-47090
- Exdev
- bennani afif
- afif.bennani&exdevbusiness.com
-47091
- Cancer and Blood Specialist of Northern Virginia, PC
- Deborah Kandahari
- dkandahari&cancerandbloodspecialist.com
-47092
- Tangible Trade
- Alex Kwiatkowski
- iana&tangibletrade.ca
-47093
- DeMaTech HB
- M. Katerbarg
- info&dema-tech.se
-47094
- Sielte S.p.A.
- Salvatore Davide Rapisarda
- sa.rapisarda&sielte.it
-47095
- Subtopia Ltd
- Chris Smith
- chris.smith&subtopia.org
-47096
- Unisphone
- Miguel Silvosa Rodríguez
- sat&unisphone.es
-47097
- ARDIAN
- Olivier RUZE
- olivier.ruze&ardian.com
-47098
- Lloyd Industries Inc.
- liton liao
- itcn&lloydind.cn
-47099
- G4S Security Systems (Hungary) Ltd.
- Tamas Morocz
- tamas.morocz&hu.g4s.com
-47100
- Linkscreens SRL
- Todor Florin
- florin.todor&linkscreens.com
-47101
- DAS-Online
- Dirk Alexander Schaefer
- info&das-online.org
-47102
- Global Technology Solutions
- Mahmazayitov Kufliddin
- iana.contact&glotechsol.com
-47103
- PLC Technology, LLC
- Kirill Esipov
- yesipov&tpz.ru
-47104
- Agentia pentru Agenda Digitala a Romaniei
- Gabriel DUMITRU
- gabriel.dumitru&aadr.ro
-47105
- Together Bulgaria
- Lachezar Kuzmanov
- lachezar.kuzmanov&together.bg
-47106
- Spearline Labs
- Matthew Lawlor
- support&spearline.com
-47107
- Shaw Academy
- Ajit Parthan
- ajit.p&shawacademy.com
-47108
- Beeper Communications Ltd.
- Benny Michailovici
- mislogs&beeper.co.il
-47109
- Abaco Systems
- Charles Wood
- charles.wood&abaco.com
-47110
- Agenzia per l'Italia Digitale
- Umberto Rosini
- rosini&agid.gov.it
-47111
- Baker Hill Solutions, LLC
- David Petercheff
- david.petercheff&bakerhill.com
-47112
- Louisiana Division of Administration
- DeSha Fryoux
- admin&la.gov
-47113
- Aviacomm Inc.
- Qinan Mao
- qinan.mao&aviacomm.com
-47114
- WOM Engineering
- Peter Chen
- yxchen0324&gmail.com
-47115
- The Star Entertainment Group Limited
- Steve Malone
- Software.Licensing&star.com.au
-47116
- NPL Management Ltd
- Simon Ashford
- simon.ashford&npl.co.uk
-47117
- Spaulding Clinical
- Troy Garrison
- informationtechnology&spauldingclinical.com
-47118
- Asian Arts Talents Foundation
- Felix Wong
- felix&aatf.us
-47119
- SCIFI
- Cosme Faria Corrêa
- cosmefc&id.uff.br
-47120
- Solustic - Solucoes em Tecnologia
- Rodrigo Melo Meireles
- rodrigo&solustic.com.br
-47121
- TDCH A/S
- Claus Albøge
- ca&tdchosting.dk
-47122
- BVL Group Ltd
- Wallace Wadge
- info&bvlgp.com
-47123
- CODEC CO.,LTD.
- Kunihiro Tanaka
- codec_tanaka&yahoo.co.jp
-47124
- Schmied Elektronik & Software
- Benedikt Schmied
- b.schmied&gmx.com
-47125
- IDEAS S.R.L.
- DOMENICO CAPELLA
- d.capella&ideas-srl.com
-47126
- earthTV network GmbH
- Anja Krüger
- accounting&earthtv.com
-47127
- Yoti Ltd
- Laurence Withers
- laurence.withers&yoti.com
-47128
- Insobis GmbH
- Danny Baensch
- danny.baensch&insobis.de
-47129
- SECURA Insurance Companies
- Mark Ziesemer
- Mark_Ziesemer&secura.net
-47130
- Al Yah Satellite Communication Company PJSC (Yahsat)
- Josip Duricic
- jduricic&yahsat.ae
-47131
- ViktorBalogh
- Viktor Balogh
- me&viktorbalogh.net
-47132
- Thinking Automation, Inc.
- Derek Knutsen
- dknutsen&researchcapitalgroup.com
-47133
- Research Capital Group, Inc.
- Derek Knutsen
- dknutsen&researchcapitalgroup.com
-47134
- FROG CELLSAT LIMITED
- TARUN SHARMA
- tarun&frogcellsat.com
-47135
- MotionLED Technology Ltd.
- Wilfred Wong
- wilfred&motionledtechnology.com
-47136
- 4S Information Technologies
- Efe Erdogru
- efe.erdogru&4s.com.tr
-47137
- Andre Grosse Bley
- Andre Grosse Bley
- mib&grosse-bley.com
-47138
- Noble 3D Printers, LLC
- Edward R. Aylward II
- edward.aylward&Noble3DPrinters.com
-47139
- MaTelSo GmbH
- Marc Fürst
- marc.fuerst&matelso.de
-47140
- DSG Systems AS
- Espen Remman
- espen.remman&dsg.no
-47141
- PT. WIRAKY NUSA TELEKOMUNIKASI
- UJANG HERANI
- ujaheran&wnt.co.id
-47142
- CoralTree Systems
- Lee Ward
- lee.ward&coraltreesystems.com
-47143
- iSnapp
- Willem de Jonge
- willem&isnapp.nl
-47144
- CommerceHub
- Michael Vinzi
- mvinzi&commercehub.com
-47145
- Telonic Berkeley Inc
- KANAK VAGHELA
- kanak&telonicberkeley.com
-47146
- Unassigned
- Returned 2017-05-04
- ---none---
-47147
- Avionics Interface Technologies
- Sharon Simon
- sharons&aviftech.com
-47148
- Winston Brands Inc.
- Wilson Caetano
- wcaetano&winstonbrands.com
-47149
- Adaptrum Inc.
- Shufen Zhang
- shufen&adaptrum.com
-47150
- Virginia Cancer Institute
- Shonda Clements
- sclements&vacancer.com
-47151
- CoinBau GmbH
- Dr. Markus Winter
- winter&coinbau.com
-47152
- Dovecot Oy
- Ville Savolainen
- ville.savolainen&dovecot.fi
-47153
- Brunke electronic
- Marc Brunke
- pen.iana&optocore.org
-47154
- Stabilitas
- Stephen Riley
- stephen&stabilitas.io
-47155
- VINTEGRIS SL
- Marisa Herranz
- marisa.herranz&vintegris.com
-47156
- Haus Michael auf Draht e.V.
- Malte Horstmann
- mad&rub.de
-47157
- Boston Scientific Corporation
- Craig Johnson
- Craig.Johnson&bsci.com
-47158
- Clipcomm Inc.
- Kim Eunsoo
- eskim&clipcomm.co.kr
-47159
- Jevons Global Pty Ltd
- Kingsley Jones
- Info&jevonsglobal.com
-47160
- Centorrino Technologies
- Nicholas Iacobucci
- niacobucci&ct.com.au
-47161
- Stuttgarter Haus- und Grundbesitzerverein e. V.
- Daniel Niccoli
- d.niccoli&hausundgrund-stuttgart.de
-47162
- Ote SA (Hellenic Telecommunications Organisation)
- George Patikis
- gpatikis&ote.gr
-47163
- Banka Koper d.d.
- Damjan Janezic
- damjan.janezic&banka-koper.si
-47164
- Ciudad del Motor de Aragon, SA
- Jose Miguel Arilla Navarro
- jmarilla&motorlandaragon.com
-47165
- Self Esteem Brands
- Matthew Warrick
- matt&sebrands.com
-47166
- Digital Insyte, LLC
- Lewey Taylor
- lewey&digitalinsyte.com
-47167
- AB LITGRID
- Robertas Radžvilas
- robertas.radzvilas&litgrid.eu
-47168
- Guangzhou Yinxun Comm. Tech. Co., LTD
- Hengxuan Liu
- market&gzyinxun.com
-47169
- JSS Technologies, LLC
- Jared Szechy
- jared&jsstechllc.com
-47170
- Skylark Technology Inc.
- Alexey Sadovskiy
- sadovsky&skylark.tv
-47171
- Maximus, Inc.
- Daniel J Dohner
- danieljdohner&maximus.com
-47172
- OMNITEC SOLUTIONS, Inc.
- Mark Holmes
- mholmes&omnitecinc.com
-47173
- Openwave Messaging
- Paul van Gool
- paul.vangool&owmessaging.com
-47174
- Compute Canada
- Gregory Newby
- cto&computecanada.ca
-47175
- Cosylab d.d.
- Rok Kosir
- rok.kosir&cosylab.com
-47176
- gbltech.net
- George Lancina
- gbl&gbltech.net
-47177
- Diplomat Pharmacy, Inc.
- Charles Williamson
- cwilliamson&diplomat.is
-47178
- Seneca Mortgage Servicing LLC
- James Torrence
- jtorrence&senecaservicing.com
-47179
- Infosec Global Inc
- Dilip Chetram
- dilip.chetram&infosecglobal.com
-47180
- Unite Control Sp. z o.o.
- Semyon Krivosheev
- sk&unitecontrol.com
-47181
- Capella Systems, LLC
- David Dong
- ddong&capellasystems.net
-47182
- Applied Micro Design Inc.
- Eric Becker
- ebecker&appliedmicrodesign.com
-47183
- Studer Innotec SA
- Vincent Bovay
- it_manager&studer-innotec.com
-47184
- LifeTech
- Roman Korshakevich
- license&life.com.by
-47185
- TOPCON CORPORATION
- Tomoyuki Yabe
- t.yabe&topcon.co.jp
-47186
- CryoWerx
- Darwin Gosal
- contact&cryowerx.com
-47187
- Global Blue Service Company Austria GmbH
- Nils Mayerhofer
- nmayerhofer&globalblue.com
-47188
- Slovenske elektrarne, a.s.
- Matej Sustr
- matej.sustr&seas.sk
-47189
- EPICT Italy
- Koceva Frosina
- frosina.koceva&edu.unige.it
-47190
- HCMI datasharing consortium
- N.F. Ramsey
- admin&hcmi-consortium.nl
-47191
- Bulat LLC
- Shubin Sergey
- shubin&bulat-opk.ru
-47192
- Central Bank of Ireland
- Dan Cleary
- information.security&centralbank.ie
-47193
- ATICEL - Advanced Tech Cell
- Miguel Proaño
- miguel&advancedtechcell.com
-47194
- Asesoria Telematica Canarias SL
- Eric Dantie
- edantie&atcan.es
-47195
- Gradkell Systems, Inc.
- Mike R. Prevost
- mprevost&gradkell.com
-47196
- Hewlett Packard Enterprise
- Harry Lynch
- harry.lynch&hpe.com
-47197
- Rainbow Crow
- Mike Dimitrov
- mike.dimitrov&gmail.com
-47198
- IVALUA SAS
- Arnaud Khuat-Duy
- akd&ivalua.com
-47199
- ISEC7
- Michael Brandt
- michael.brandt&isec7.com
-47200
- realraum - Verein für Technik in Kultur und Gesellschaft
- Nicolas Braud-Santoni
- nicoo&realraum.at
-47201
- Vivid-Hosting, LLC
- Kiet Chau
- kchau&vivid-hosting.net
-47202
- Top Down Systems Corporation
- Jeromy Arnold
- jeromy.arnold&topdownsystems.com
-47203
- Flipit Marketing Ltd (formerly 'Reactiv Media Ltd')
- Clinton Edmondson
- Clinton.Edmondson&flipitmarketing.co.uk
-47204
- «КВАНТЭКС» Limited liability partnership («QUANTEX»)
- Yuriy S. Samarin
- office&quantex.kz
-47205
- Lake Superior State University
- Scott Olson
- solson&lssu.edu
-47206
- Brnit
- Sharagim Parvareshkhah
- sh&brnit.com
-47207
- DAVID Systems GmbH
- Wolfgang Seidl
- wseidl&davidsystems.com
-47208
- Ensinger GmbH
- Rupert Holzer
- OID-Admin&de.ensinger-online.com
-47209
- MonkZ
- Malte Kuhn
- admin&monkz.de
-47210
- ug consult
- Ulrich Greshake
- ugreshake&ug-consult.de
-47211
- Ecole Polytechnique Fédérale de Lausanne
- Claude Lecommandeur
- claude.lecommandeur&epfl.ch
-47212
- MailInBlack
- Antony Spera
- aspera&mailinblack.com
-47213
- Nechi Group
- Yandi Naranjo Basalo
- ynaranjo&nechigroup.com
-47214
- 4all Tecnologia
- Eduardo Hahn
- infra&4all.com
-47215
- Markus Losco
- Markus Losco
- markus.losco&diskstation24.de
-47216
- Mundio Mobile Holding Limited
- Mr Andoko Wicaksono
- legal&mundio.com
-47217
- Einstein Medical Center
- Louis Esposito
- espositol&einstein.edu
-47218
- websix GmbH
- Marco Eble
- m.eble&websix.de
-47219
- Primary Data
- Roni Rosen
- roni&primarydata.com
-47220
- IUT de BEZIERS
- Christophe BORELLY
- Christophe.Borelly&iutbeziers.fr
-47221
- µE Kunst
- Stefan Dickel
- stefan.dickel&t-online.de
-47222
- Megapath
- Hugo Aviles
- syseng&megapath.com
-47223
- IQlunch
- Hironori Ikura
- hikura&iqlunch.net
-47224
- Maersk Oil
- Henrik Hulstrøm
- henrik.hulstrom&maerskoil.com
-47225
- David Garner NZ
- David Garner
- david&davidgarner.nz
-47226
- Walker Digital Table Systems
- Brian Besterman
- bbesterman&wdtablesystems.com
-47227
- EPI-USE Systems
- Roelof Naude
- snmp&epiuse.com
-47228
- Evolution Gaming, Ltd.
- Janis Lasmanis
- security&evolutiongaming.com
-47229
- SIPO Global
- David Martin
- dmart408&gmail.com
-47230
- Gafachi, Inc.
- Adam Glynn
- adam.glynn&gafachi.com
-47231
- Foxconn Corporation
- Alex Phan
- houston.it&foxconn.com
-47232
- RodNoc
- Dominik Sliwa
- iana&tuxtorials.de
-47233
- TELENT TECHNOLOGY SERVICES LIMITED
- Adrian Phillips
- adrian.phillips&telent.com
-47234
- Suffolk County Scouts
- Rob Gloess
- rob.gloess&suffolkscouts.org.uk
-47235
- QXIP
- Lorenzo Mangani
- lorenzo.mangani&gmail.com
-47236
- MarSoftware
- Torsten Markwardt
- tmarkwardt&marsoftware.de
-47237
- SYSTEMES INFORMATION HARMONIE MUTUELLE SIHM GIE
- Patrick Rioche
- contact.certificat&sihm.fr
-47238
- AIS Advanced Info Service
- Rachot Tawornsiri
- rachotta&ais.co.th
-47239
- Braincarta
- V.M.E. Kersten
- v.m.e.kersten&braincarta.com
-47240
- Vision Solutions, Inc.
- Domain Registration
- domainreg&visionsolutions.com
-47241
- DZIECIECY SWIAT Krzysztof Pytko
- Krzysztof Pytko
- krzysztof.pytko&edzieciecyswiat.pl
-47242
- CoreOS, Inc
- Brian Harrington
- brian.harrington&coreos.com
-47243
- Steelcase, Inc.
- Christian Gillen
- ianaadmin&steelcase.com
-47244
- Roku Inc.
- Gary Ellison
- gfe&roku.com
-47245
- Shar3d Interactive
- Arnaud BOUTIN
- contact&shar3d-interactive.com
-47246
- JF Zwobada
- JF Zwobada
- jf&zwobada.com
-47247
- SILKAN SA
- Farid Ben Tekfa
- courrier&silkan.com
-47248
- Ramarc Innovations
- Marc Bilodeau
- marc&ramarc.com
-47249
- Pjano Consulting AB
- Johan Pellkvist
- jope&pjano.se
-47250
- ProMDM d.o.o.
- Ratko Štibrić
- stibra&promdm.com
-47251
- WEBSPH
- Pepe Mariano Jr
- jhuntech09&gmail.com
-47252
- City of West Lafayette
- Brad Alexander
- balexander&westlafayette.in.gov
-47253
- secureNET Switzerland Inc.
- Bruno Kunz
- bkunz&securenetswiss.ch
-47254
- Western Australian Internet Association Inc.
- Will Dowling
- will&ix.asn.au
-47255
- T&T sistemi srl
- Gabriele Valentini
- gabriele.valentini&tetsistemi.com
-47256
- INSTER Tecnologia y Comunicaciones
- Jose Antonio Cardenas Montero
- jcardenas&inster.es
-47257
- DBC A/S
- Lars Skjærlund
- las&dbc.dk
-47258
- The Automobile Association (AA PLC)
- Darragh O'Keeffe
- darragh.okeeffe&theaa.com
-47259
- LUNATICANET
- Alexander Koch
- hostmaster&lunatica.net
-47260
- Electrontechnika
- Tretyakov Sergey
- root&et32.ru
-47261
- OBI Smart Technologies mbH
- Guido Kötter
- guido.koetter&obi.de
-47262
- LSware Inc.
- Information Technology
- infotech&lsware.co.kr
-47263
- HEITZ Jean-Marie
- HEITZ Jean-Marie
- loc.heitz&wanadoo.fr
-47264
- New Zealand Customs Service
- Byron Collins
- byron.collins&datacom.co.nz
-47265
- HWADAR Technologies Co., Ltd.
- Tom.Zhao
- zcx3000&126.com
-47266
- Prochista Irsa Tech Ltd.
- AmirAli Pasdar
- pasdar&prochista.ir
-47267
- OpenSwitch
- Frank Reichstein
- frank.reichstein&hpe.com
-47268
- FARMING BITS, UNIPESSOAL LDA
- Filipe Romão da Fonseca
- filipe.fonseca&farmingbits.com
-47269
- Pluribus Networks, Inc
- Marco Pessi
- marco.pessi&pluribusnetworks.com
-47270
- Felixfound
- William Knox
- william.knox&iinet.net.au
-47271
- Dreamlab Onet.pl SA
- Marcin Kaptur
- marcin.kaptur&dreamlab.pl
-47272
- Evrotrust JSC
- Martin Petkov
- ca&evrotrust.bg
-47273
- LLAMMA SK
- Juraj Binka
- juraj.binka&llamma.sk
-47274
- CPK Interior Products
- Arley Hinds
- arley.hinds&cpkip.ca
-47275
- Hirschmann Multimedia B.V.
- Daan Bonenkamp
- dbonenkamp&hirschmann.nl
-47276
- Helsana Versicherungen AG
- Hans-Peter Bärtsch
- hans-peter.baertsch&helsana.ch
-47277
- Hochschule Weihenstephan-Triesdorf
- Rechenzentrum
- rz&hswt.de
-47278
- TeskaLabs Ltd
- Ales Teska
- ales.teska&teskalabs.com
-47279
- ITCENTER
- Carlos Almeida
- carlos.almeida&itcenter.com.pt
-47280
- Imagen Technologies
- Ronald Kneusel
- ron&imagentechnologies.com
-47281
- Auloce S.A.
- Fernando Palacio
- fpalacio&espublico.com
-47282
- The LinchPinGroup, LLC
- IANA Contact
- IANA&thelinchpingroup.com
-47283
- PJSC SOLLERS
- Glinnik Dmitry
- msk.help&sollers-auto.com
-47284
- Cyber IT Solutions
- Con Zymaris
- conz&cyber.com.au
-47285
- LLC "Smartbrood"
- Andrey Petrov
- andreynpetrov&gmail.com
-47286
- UANATACA S.A.
- Marco Scognamiglio
- info&uanataca.com
-47287
- Brabbler Secure Message and Data Exchange Aktiengesellschaft
- Ivaylo Mateev
- imateev&brabbler.ag
-47288
- COMMUNITHINGS S.A.
- JUAN HURTADO TOMERO
- juan.hurtado&communithings.com
-47289
- Tango Wave
- Sparky Stewart
- c.roy&tango-wave.com
-47290
- Johnson Computers
- Johnson Computer Operations
- operations&johnson.computer
-47291
- Deep Groups
- Pavel Kurkin
- p.kurkin&deepgroups.net
-47292
- Luxar Tech Inc
- Sean Chen
- info&luxartech.com
-47293
- STILLITS
- José Carlos França
- info&stillits.com.br
-47294
- NPort Networks, Inc.
- Stephen Shiue
- stephen.shiue&nport.com.tw
-47295
- Marvin Gülker
- Marvin Gülker
- m-guelker&guelkerdev.de
-47296
- Arctic Paper Kostrzyn S.A.
- Marcin Szymanek
- marcin.szymanek&arcticpaper.com
-47297
- hotelleriesuisse
- hotline
- hotline&hotelleriesuisse.ch
-47298
- Pastem Solutions, Ltd.
- Pastem Admin
- sysoid&necps.jp
-47299
- P2 Wireless Technologies Limited
- Kevin Chan
- kevinchan&p2wt.com
-47300
- itelligence AG
- Amine El-Ayadi
- help-network&itelligence.org
-47301
- "NR"WEB US
- Joshua K Betts
- servers&nrwebus.com
-47302
- Alnatura Produktions- und Handels GmbH
- Thomas Brettnich
- thomas.brettnich&alnatura.de
-47303
- Moratua Solutions
- Mahadi Siregar
- regar.016&gmail.com
-47304
- Ivnosys Soluciones S.L.
- Jose Biosca
- sistemas&ivnosys.com
-47305
- FoxGuard Solutions
- Mitch Helton
- mhelton&foxguardsolutions.com
-47306
- Jasper
- Bobby Richardson
- bobby.richardson&jasper.com
-47307
- IgniteNet
- Harold Bledsoe
- hbledsoe&ignitenet.com
-47308
- Lanbowan Technology Ltd.
- guangdong yang
- 18626469675&163.com
-47309
- Sofia Digital, Ltd.
- Juha Joki
- juha.joki&sofiadigital.com
-47310
- botanic
- Nicolas Dubost
- systeme&botanic.com
-47311
- Seacomp s.r.o.
- Ivo Hlavaty
- admin&seacomp.cz
-47312
- Searidge Technologies
- Justin Beattie
- justin&searidgetech.com
-47313
- Adenon Bilisim ve Iletisim Tek. San. ve Tic. Ltd. Sti.
- Ergun SERAY
- ergun.seray&adenon.com
-47314
- Torrential Data Solutions, Inc.
- Joseph Pickard
- jpickard&torrentialdata.com
-47315
- Wahsega Labs
- Kelley Conway
- kconway&wahsega.com
-47316
- True Manufacturing
- Jeremy Zanitsch
- networkoperations&truemfg.com
-47317
- University of Warsaw
- Andrzej Zadrozny
- devel&adm.uw.edu.pl
-47318
- Optigo Networks
- Stephen Chan
- stephen&optigo.net
-47319
- Riella Systems
- Mike Riella
- Mike&Riella.com
-47320
- Advanced Enterprise Solutions Limited
- Dan Williams
- oid_admin&adventsol.co.uk
-47321
- memit.de
- Merlin Mittelbach
- merlin.mittelbach&memit.de
-47322
- Office IT-Partner Borås
- Martin Westberg
- martin.westberg&officeitpartner.se
-47323
- TrustKo
- Seongwoo Hong
- certmaster&trustko.com
-47324
- Mokop, Bartosz Rebeś
- Bartosz Rebeś
- admin&mokop.co
-47325
- Suzhou Robot Information Technology Co.,Ltd.
- Yin Haibo
- yhb&szrobot.net
-47326
- yanyuxieyang
- dong pan
- 361435262&qq.com
-47327
- Kassenärztliche Vereinigung Nordrhein
- Cornelius Vaessen
- Zertifikate&kvno.de
-47328
- Simulity Labs
- Colin Tebbutt
- colin.tebbutt&simulity.com
-47329
- Stancke Transporte GmbH & Co. KG
- Christoph Becker
- it&stancke.com
-47330
- Murrelektronik GmbH
- Bernd Waser
- licenses.rnd&murrelektronik.de
-47331
- Pro:Atria Ltd.
- Adi Roiban
- adi.roiban&proatria.com
-47332
- Current, powered by GE
- SiNguyen Vo
- singuyen.vo&ge.com
-47333
- Asintel, S.L.
- Victor Orero
- info&asintel.net
-47334
- trendytech
- Xiaoyin Liu
- liuxy&trendytech.com.cn
-47335
- Superwave Group LLC
- Dmitriy Novokhatniy
- admin&swgroup.ru
-47336
- Iguana Comunicacions SL
- Aleix Solé Romeu
- aleix.sole&iguana.cat
-47337
- Security On-Demand, Inc.
- Marcus Rosenberg
- sysadmin&securityondemand.com
-47338
- Bob Ziuchkovski Free/Libre and Open Source Software
- Bob Ziuchkovski
- bob.ziuchkovski&gmail.com
-47339
- Hessware GmbH
- Sebastian Heß
- shess&hessware.de
-47340
- Handysoft,co.ltd.
- Kim keehwan
- kimkeehwan&handysoft.co.kr
-47341
- Syllaba Press International Inc.
- Ernesto Rodriguez
- info&syllabapress.us
-47342
- VITAL WILLIAM CONSEIL
- William VITAL
- william.vital&william-vital.fr
-47343
- ElektronIT GmbH
- Jörn Volkhausen
- service&elektronit.de
-47344
- COMSYS Communications Systems Service GmbH
- Robert Sander
- robert.sander&comsysgmbh.de
-47345
- Variant
- Oleg Avrutin
- avrutin&variant.kiev.ua
-47346
- Laurenz Wagner
- Laurenz Wagner
- mail&ldd.li
-47347
- MIRACL
- John McCane-Whitney
- john.mccane-whitney&miracl.com
-47348
- Centro de Tradições Nordestinas
- Arthur Stanev
- cti&radioatual.com.br
-47349
- Rockwell Automation
- Julie Farrell
- jmfarrell&ra.rockwell.com
-47350
- Securian Financial Group
- Nicholas LaFleur
- nick.lafleur&securian.com
-47351
- Premium Security Broadband
- Tony Ledbetter
- tledbetter&utiglobal.com
-47352
- AMPAREX GmbH
- Thomas Marquardt
- thomas.marquardt&amparex.com
-47353
- HornasjövägenIT
- Tom Tjörnhed
- tom.tjornhed&gmail.com
-47354
- Avista Corporation
- Security Operations
- corpsecurityoperations&avistacorp.com
-47355
- Metamarkets
- Jeff Strunk
- jeff.strunk&metamarkets.com
-47356
- Cress Enterprises
- Michael Cress
- michael.cress&cress.us
-47357
- Technology Concepts & Design, Inc.
- Terry Spotts
- t_spotts&tcdi.com
-47358
- HenzHome Services
- Tobias Henz
- tobias.henz&henzhome.ch
-47359
- stary tec
- staryzhou
- staryzhou&163.com
-47360
- MAX-TECH
- Kim Min Jae
- mj.kim&max-tech.co.kr
-47361
- KT&C CO., LTD.
- HYUN MUG JI
- software&ktnc.co.kr
-47362
- Woningstichting Haag Wonen
- Patrick van der Harst
- p.vander.harst&haagwonen.nl
-47363
- SYSTEM Development Inc.
- Kenichi Shimizu
- ken&sysky.co.jp
-47364
- SIRIETA
- DAVID PHILIPPE
- phdavid75&gmail.com
-47365
- Wabtec Railway Electronics
- Michael Bratcher
- mbratcher&wabtec.com
-47366
- Arturs Plisko
- Arturs Plisko
- legal&blizko.lv
-47367
- Transport for New South Wales
- Duncan Chan
- adteam&transport.nsw.gov.au
-47368
- dainox GmbH
- Jochen Brueckner
- jochen.brueckner&dainox.net
-47369
- Canal Digital AS
- Helge Hasund
- helge.hasund&canaldigital.com
-47370
- Lorindus
- Joost Daem
- jdaem&esolutions.be
-47371
- Shine Security Ltd
- Oren Farage
- oren&getshine.com
-47372
- MariaDB Corporation Ab
- Adam Donnison
- adam.donnison&mariadb.com
-47373
- Octopod Technology Company Limited
- Chen Mingyuan
- mike&octopodtech.com
-47374
- Sitex Inc.
- Nikita Inozemtsev
- n.inozemtsev&sitex.ru
-47375
- Turpeinen
- Teemu Turpeinen
- teemu-iana.pen&turpeinen.org
-47376
- Taqniat Ltd
- Yury Lapin
- taqniat&outlook.com
-47377
- International Software Systems Inc. (ISSI)
- VC Sekhar Parepalli
- sekhar&issi-software.com
-47378
- Threema GmbH
- Manuel Kasper
- noc&threema.ch
-47379
- iot.nxt
- Gysbert Jacobs
- bertus.registrations&iotnxt.co.za
-47380
- Zagrebacka banka d.d.
- Goran Sustek
- Goran.Sustek&unicreditgroup.zaba.hr
-47381
- Omnitelecom
- Daniel Marchasin
- danielm&omnitelecom.co.il
-47382
- UMAITEK
- DEMIL Rezki
- r.demil&umaitek.dz
-47383
- Kaessbohrer Geländefahrzeug AG
- Timo Schetelich
- timo.schetelich&pistenbully.com
-47384
- Sartorius Mechatronics T+H GmbH
- Christian Raffel
- christian.raffel&sartorius-intec.com
-47385
- Sveaskog Förvaltnings AB
- Johanna Snell
- johanna.snell&sveaskog.se
-47386
- US Signal
- Chuck Taylor
- ctaylor&ussignal.com
-47387
- 0xBEDA, LLC
- Joe Beda
- joe&0xbeda.com
-47388
- SeGuru Corp.
- Sean Arries
- sean&seguru.io
-47389
- State Universities Retirement System
- Byron Campbell
- bcampbell&surs.org
-47390
- Affinity Credit Union 2013
- Dustin Halvorson
- dustin.halvorson&affinitycu.ca
-47391
- Green Cubes Technology Corporation
- Anthony Cooper
- acooper&greencubestech.com
-47392
- FAWONG
- Felix Wong
- felix&fawong.com
-47393
- Koalephant Co., Ltd.
- Stephen Reay
- stephen&koalephant.com
-47394
- BKT Elektronik Sp. z o.o.
- Jacek Siwilo
- siwilo&bkte.pl
-47395
- East Central Oncology
- Diana Rossell
- dianaatecoa&yahoo.com
-47396
- CJSC TransProektInzhiniring
- Dmitry Markov
- pkiadmin&transpir.ru
-47397
- IT-Wissen.org
- Udo Jendges
- jendges&jendges.org
-47398
- AVP Technology
- Kalachev Aleksandr
- pkiadmin&avpt.ru
-47399
- AMAG Technology
- Joe Kelleher
- joe.kelleher&amag.com
-47400
- Cottonwood Creek Technologies, Inc.
- Alan Schott
- aschott&cwctech.com
-47401
- Hotel Internet Services
- Rafael van den Berg
- admin&hotelwifi.com
-47402
- VALID CERTIFICADORA DIGITAL LTDA
- MARCIO ROBERTO RAMIREZ
- marcio.ramirez&valid.com.br
-47403
- Connect Managed Services
- Adam Leedell
- adam&connectmanaged.com
-47404
- Coligo AB
- Tim Nilimaa-Svärd
- tim.nilimaa-svard&coligo.se
-47405
- Brukarkooperativet JAG
- Tim Nilimaa-Svärd
- tim.nilimaa-svard&coligo.se
-47406
- Tactic Code AB
- Tim Nilimaa-Svärd
- tim&tacticcode.com
-47407
- Forester IT
- Mal Harwood
- mal.harwood&foresterit.com.au
-47408
- Pankraz Elektronik
- Viktor Pankraz
- info&pankraz.org
-47409
- Javier Pastor
- Javier Pastor
- jpastor&cerebelum.net
-47410
- InfraSource Inc.
- Jae Kyung KIM
- jkiset&infra-source.com
-47411
- Esferize Comunicaciones SL
- Fernando Enriquez
- ingenieria&esferize.com
-47412
- SAIFER ASSOCIATES LTD
- Juan Luis Iglesias
- jliglesias&saiferassociates.co.uk
-47413
- Caprica Limited
- Manfred Duchrow
- manfred.duchrow&caprica.biz
-47414
- Burgstaller
- Albert Burgstaller
- albert&burgstaller.priv.at
-47415
- Voxaware Ltd.
- Ray Euden
- voxaware&btconnect.com
-47416
- 3Shape Medical A/S
- Søren Friis Skovsen
- Soeren.Skovsen&3shape.com
-47417
- Associazione La Nostra Famiglia
- Marco Gaiarin
- gaio&sv.lnf.it
-47418
- Key Bridge LLC
- Jesse Caulfield
- jesse.caulfield&keybridgeglobal.com
-47419
- Halter AG
- Stefan Koch
- support&halter.ch
-47420
- 2scale GmbH
- Dirk Vleugels
- pen&2scale.net
-47421
- Cohesity Inc.
- Roy Yang
- roy&cohesity.com
-47422
- imito AG
- Manuel Studer
- manuel.studer&imito.io
-47423
- Viamericas Corporation
- Joel Kosloski
- Joel.Kosloski&Viamericas.com
-47424
- RPCI Oncology, PC
- Joseph Wedge
- joe.wedge&shoawny.org
-47425
- BASYS Bartsch EDV-Systeme GmbH
- Florian Stamer
- florian.stamer&basys-bremen.de
-47426
- Triolan Limited Inc.
- Max Sorokolat
- gambit&gambit.net.ua
-47427
- PULLNET TECHNOLOGY, S.L.
- Jaume Darne
- jaume.darne&pullnet.com
-47428
- Taras Shevchenko National University of Kyiv
- Ievgen Sliusar
- slu&knu.ua
-47429
- NOWMEDIA TECHNOLOGIES
- Bakhtiyorbek Khasanov
- bkhasanov&lamuz.uz
-47430
- Ifixmail.com
- Phillip LaRue
- Pj&ifixmail.com
-47431
- CrowdStrike Inc.
- Milos Petrbok
- milos&crowdstrike.com
-47432
- Diamond Technologies Inc.
- Paul Tesini
- ptesini&diamondt.com
-47433
- DAC System SA
- Paolo Delmastro
- paolo.delmastro&dacsystem.ch
-47434
- COUNT+CARE GmbH & Co. KG
- Juergen Friedrich
- juergen.friedrich&countandcare.de
-47435
- Roksnet Solutions LTD
- Kristjan Kullerkann
- kristjan.kullerkann&roksnet.com
-47436
- Lufthansa Systems GmbH & Co. KG
- Wolfgang Wahle
- licencemanagement&lhsystems.com
-47437
- Vagaro Inc.
- Eric Lee
- webmaster&vagaro.com
-47438
- tofutown gmbh
- thomas knoche
- it.service&tofutown.com
-47439
- Alexander Zaigraev
- Alexander Zaigraev
- zaigraev&outlook.com
-47440
- Stellus Technologies
- Mark Lonsdale
- mark.lonsdale&stellus.com
-47441
- Lagardère Ressources
- Marc BEHIDI / Paul HALAJ
- dsi-lr&lagardere.fr
-47442
- Highlands Oncology Group
- Meagan Higginbotham
- mhigginbotham&hogonc.com
-47443
- Jockulator Studios North
- Magnus Haack
- magnus.haack&jockulator.eu
-47444
- Milwaukee School of Engineering
- Christopher Hougard
- hougardc&msoe.edu
-47445
- Telestream LLC
- Scott Davis
- scottd&telestream.net
-47446
- 443 IT
- Thomas Komen
- info&443-it.nl
-47447
- UniqCast
- Dario Habulin
- dhabulin&uniqcast.com
-47448
- Intis d.o.o.
- Miroslav Kelekovic
- miroslav.kelekovic&intis.hr
-47449
- Ryanair Ltd
- Systems Support
- systemssupport&ryanair.com
-47450
- Cloud Foundry Foundation
- Chip Childers
- cchilders&cloudfoundry.org
-47451
- OmegaStar
- Marcin Jurczuk
- snmp&omegastar.eu
-47452
- QMS Capital Management LP
- Casey Averill
- casey.averill&qmscapital.com
-47453
- Gobierno de Santa Fe
- Pablo Bussi
- pbussi&santafe.gov.ar
-47454
- Area d'Inxenieria Telematica - University of Oviedo
- Francisco G. Bulnes
- bulnes&uniovi.es
-47455
- Sydved AB
- Ingemar Arvidsson
- ingemar.arvidsson&sydved.se
-47456
- Vodafone NZ Limited
- Syed hassan
- syed.hassan&vodafone.com
-47457
- SAS Orbitracs
- Daniel Tits
- daantits&wanadoo.fr
-47458
- GIGANET NETWORKING SOLUTIONS LTD
- Erick Mbugua
- gigalite&giga-net.co.uk
-47459
- BKM-Micronic Richtfunkanlagen GmbH
- Robert Schubert
- info&bkm-micronic.de
-47460
- LiquidCool Solutions
- Daryl Lautenschlager
- daryl.lautenschlager&liquidcoolsolutions.com
-47461
- Lit Consulting
- Staffan Olsson
- staffan.olsson&litconsulting.se
-47462
- ChangZhou Taiping Communication Technology Co.Ltd
- Zhou Yang
- zyang&taiping.cc
-47463
- bestrun nanjing, co.ltd
- YK Huang
- ykhuang&bestrun.com.cn
-47464
- IN WIN Development Inc.
- Eric Lin
- eric.lin&in-win.com.tw
-47465
- CDB Monolit
- Konovalov Alex
- alexcon314&gmail.com
-47466
- Lab3 e.V.
- Sebastian Ratajczak
- sebastian.ratajczak&lab3.org
-47467
- Allianz Insurance Company Russia OJSC
- Boukreev Vassili Vassilievich
- ng_mail&allianz.ru
-47468
- Trueverit
- Simone Gasparini
- simone.gasparini&trueverit.com
-47469
- Presence Technology
- Francisco Segovia Mora
- fsegovia&presenceco.com
-47470
- CGI Sverige
- Stefan Carlsson
- s.carlsson&cgi.com
-47471
- Apogey Ltd
- Voloshin Vladimir Alekseevich
- 516965&mail.ru
-47472
- Purkinje Inc.
- Alain Toutant
- atoutant&purkinje.com
-47473
- Resurs-Komplekt LLC
- Nikolay Bukhalov
- resgroup.iana&gmail.com
-47474
- Sonn & Partner Patentanwälte
- IT Department
- admin&sonn.at
-47475
- ShenZhen Smart Imaging Healthcare Co.,Ltd.
- ShenWen Quan(male)
- shenwen.quan&zying.com.cn
-47476
- medi.com sp. z o.o.
- Marcin Zabraniak
- marcin.zabraniak&medi.com.pl
-47477
- CGS Tower Networks Ltd.
- Nitzan Gurfinkel
- nitzan&cgstowernetworks.com
-47478
- NetSection Security
- Lars Karlslund
- lars&netsection.com
-47479
- Artec Design LLC
- Anti Sullin
- anti.sullin&artecdesign.ee
-47480
- TECO Ltd
- Trubochkin Alexey
- tav&teco.com.ua
-47481
- RADD Web Studio
- Darlington Wleh
- radd&raddwebstudio.com
-47482
- ATVIRTUAL.NET KG
- Martin Fischer
- martin.fischer&atvirtual.net
-47483
- Mcallen Oncology
- Bricy Martinez
- bmartinez&mcallenoncology.org
-47484
- Quest Medical Imaging B.V.
- Richard Meester
- richard.meester&quest-innovations.com
-47485
- ArmySr
- Ron Armstrong
- ron&armysr.com
-47486
- Factorial Advance Systems Ltd
- Adebola Omoboya
- aomoboya&icloud.com
-47487
- Leroy Merlin Polska Sp. z o.o.
- Tomasz Pikon
- tpikon&leroymerlin.pl
-47488
- Nedam ENG. Co., ltd.
- Min Joon Jeon
- mjjeon&nedameng.com
-47489
- Techonline Consulting Ltd
- Mike Elliott
- support&techonlineuk.com
-47490
- Nordea AEP Luxembourg
- IT Department
- iana_pen&nordea.lu
-47491
- Feenix Communications
- Mark Abrahams
- mark&feenix.co.nz
-47492
- Carnelutti Studio Legale Associato
- Nicola La Selva
- issupport&carnelutti.com
-47493
- SHENZHEN GYE TECH CO.,LTD
- Guangming Han
- hanguangm&sohu.com
-47494
- AO-27 Control Operators Association
- Michael Wyrick
- wyrick&umbrasi.com
-47495
- alfaleasing
- Maltsev Andrey
- helpdesk&alfaleasing.ru
-47496
- Binary Kitchen e.V.
- Markus Hauschild
- markus.hauschild&binary-kitchen.de
-47497
- KIZIL Elektronik
- Ali KIZIL
- ali&kizil.com
-47498
- Dirk Rossmann GmbH
- Florian Goehlke
- florian.goehlke&rossmann.de
-47499
- Beijing NewDigit Technology Co., Ltd.
- Xiao Hua Yang
- yangxh&newdt.cn
-47500
- PB Design & Developments Limited
- Michael Provis
- Mike.Provis&pbdesign.co.uk
-47501
- Hargreaves Lansdown Plc
- Mike Salway
- oidadmin&hl.co.uk
-47502
- Hiawatha Valley Education District
- Andrew Hamilton
- itsupport&hved.org
-47503
- Ralph Lauren Center for Cancer Care
- Lisa Pfail
- lpfail&ralphlaurencenter.org
-47504
- Zellkraftwerk GmbH
- Christian Hennig
- hennig&zellkraftwerk.com
-47505
- Numonix
- Evan Kahan
- evan.kahan&numonixrecording.com
-47506
- AOSense, Inc.
- Isaac Wilson IV
- iwilson&aosense.com
-47507
- CT LAB
- Jacobus van Zyl
- jacobus&ctlab.com
-47508
- Incosys SAS
- Fabio Alexander Ferreira Angarita
- fabiorov&gmail.com
-47509
- Herz Group
- Christian Dergovics
- iana.pen&herz.eu
-47510
- Signifai, Inc
- Zach Carlson
- zcarlson&signifai.io
-47511
- GPC Asia Pacific
- Christian Joy
- cjoy&gpcasiapac.com
-47512
- linuxmuster.net e.V.
- Jesko Anschütz
- jesko.anschuetz&linuxmuster.net
-47513
- venetex corporation
- keiji sawada
- sawada&venetex.co.jp
-47514
- RAK SYSTEM CO,;LTD
- TianFeng
- tianfeng&dhdz-suzhou.com
-47515
- Spectrum Controls, Inc.
- Mike Chen
- oid.admin&spectrumcontrols.com
-47516
- Certego s.r.l.
- Bernardino Grignaffini
- info&certego.net
-47517
- Nekomit
- Sorah Fukumori
- her&sorah.jp
-47518
- Openflexo
- Christophe Guychard
- christophe.guychard&openflexo.org
-47519
- Fincons SpA
- Vincenzo Summo
- vincenzo.summo&finconsgroup.com
-47520
- NES Technology Inc
- Dae Won Kim
- dwkim&nestek.co.kr
-47521
- S+T Service & Technique S.A.
- Frédéric Hess
- fhess&splust.ch
-47522
- BTECO LIMITED
- Gunter Liszewski
- gunter.liszewski&gmail.com
-47523
- VDE Prüf- und Zertifizierungsinstitut GmbH
- Dr. Arthur Herzog
- ianapen&vde.com
-47524
- Rubicon Labs, Inc.
- Alexander Usach
- ausach&rubiconlabs.io
-47525
- Wuliang
- En Feng Wu
- wuen320&gmail.com
-47526
- A. Farber & Partners Inc.
- IANA Administrator
- iana&afarber.com
-47527
- Charbonnier
- Patrick Charbonnier
- penmaster&charbonnier.de
-47528
- Softhum
- Armando Hernández Aguayo
- armando.hdez&softhum.com
-47529
- NATIONAL BANK OF GREECE
- Michael Ontrias
- ibank_Business_Analysis&nbg.gr
-47530
- Softwaretechnik Ges.m.b.H.
- Dipl. Ing. Hermann Reisinger
- hermann.reisinger&softwaretechnik.at
-47531
- Analytik Jena AG
- Gert Finke
- gert.finke&analytik-jena.de
-47532
- Arhides d.o.o.
- Dejan Kampus
- iana&arhides.si
-47533
- Balyasny Asset management L.P.
- Ken D'Agostino
- certificates&bamfunds.com
-47534
- AutoAlert
- Michael Dean
- michael.dean&autoalert.com
-47535
- Autoridad Certificante de la Oficina Nacional de Tecnologías de Información
- Federico Bustamante
- consultapki&jefatura.gob.ar
-47536
- PJSC "Sumykhimprom"
- Dmitry Malyshok
- d.a.malyshok&sumykhimprom.org.ua
-47537
- SATT PACA Corse
- ENJOLRAS Marc
- marc.enjolras&sattse.com
-47538
- knoefel.xyz
- Markus Knoefel
- markus&knoefel.xyz
-47539
- Greendoc Systems Kft.
- Péter Bösztöri
- bosztori.peter&greendoc.hu
-47540
- QuadraNet, Inc
- Kate Gerry
- kate.gerry&quadranet.com
-47541
- Admino LLC
- Andrey Kurochkin
- iana&admino.ru
-47542
- Tianyi iMusic culture & technology Co. Ltd.
- Zhao Xu
- zhaoxu&imusic.cn
-47543
- MWR InfoSecurity
- Stuart Morgan
- stuart.morgan&mwrinfosecurity.com
-47544
- JTKJ.com
- Ivor TsLeng
- qbystory&163.com
-47545
- Jingtong Technology Co. Ltd.
- Buyun QU
- buyun.qu&gmail.com
-47546
- HANGZHOU CHANGER TECHNOLOGY.,LTD
- Yang Lei
- lei.yang&changertech.net
-47547
- Takta Co.
- Heshmati, Mohammad Ali
- heshmati&takta.com
-47548
- Tvip Ltd
- Pavel Sokolov
- pavel&tvip.ru
-47549
- iniLINE Co., Ltd.
- Ki Tae John
- ktjohn&iniline.co.kr
-47550
- AVENTICS GmbH
- Sebastian Minks
- sebastian.minks&aventics.com
-47551
- USGS National Wildlife Health Center
- Tom Beighley
- tbeighley&usgs.gov
-47552
- Marcone Supply
- Stephen Lotz
- stephen.lotz&marcone.com
-47553
- Hochschule Koblenz
- Heiko Hellweg
- hellweg+iana&hs-koblenz.de
-47554
- Total Highspeed
- Christopher Tyler
- sysadmin&totalhighspeed.net
-47555
- EA Games FireMonkeys
- Fletch Hogan
- fhogan&ea.com
-47556
- Barrcode Ltd
- Brian Barr
- brianbarr&barrcode.com
-47557
- Hangzhou Telin Technologies Company limited
- Wang Qun
- liuhaichao&telincn.com
-47558
- General Dynamics SATCOM Technologies, Inc.
- Robert Chenault
- robert.chenault&gd-ms.com
-47559
- Crypto-Pro
- Kollegin Maksim
- maxdm&cryptopro.ru
-47560
- Westinghouse Electric Sweden AB
- Mats Karlsson
- karlssmg&westinghouse.com
-47561
- System-on-Chip engineering (SoC-e)
- Sergio Salas
- sergio.salas&soc-e.com
-47562
- Chengdu Emfuture Automation Engineering Co., Ltd
- Dongming Tang
- tangdm&emfuture.com
-47563
- Falcon Critical Care Transport
- Alex Ackerman
- netad&falconcct.com
-47564
- Permian Resources, LLC
- Blake Reeves
- Blake.Reeves&PermianResources.com
-47565
- Forcepoint LLC
- Security Operations
- domains&forcepoint.com
-47566
- Uniper AG
- Peter Marschall
- peter.marschall&eon.com
-47567
- Seifert Logistics GmbH
- IT Abteilung
- urgent&seifert-logistics.com
-47568
- Pantel International
- Matthew MacDonald
- mmacdonald&pantelintl.com
-47569
- FIAMM SoNick S.A.
- Todeschini Marco
- marco.todeschini&fiamm.com
-47570
- Ennnot
- Maxim Korolyov
- info&ennnot.ru
-47571
- Glowpoint
- Ted Tzeng
- ttzeng&glowpoint.com
-47572
- University of Keele
- Jonathan Knight
- it.operations&keele.ac.uk
-47573
- McFarland Clinic
- Rich Voyek
- rvoyek&mcfarlandclinic.com
-47574
- City of Harker Heights
- Gary Bates
- gbates&ci.harker-heights.tx.us
-47575
- AUTEC Gesellschaft fuer Automationstechnik mbH
- Dr. Hartmut Staerke
- dhs1&autec-gmbh.de
-47576
- CapSenze Biosystems AB
- Dag Erlandsson
- de&capsenze.se
-47577
- Newell Rubbermaid
- Tom Glowacki
- Tom.Glowacki&newellco.com
-47578
- Vantiv Inc
- William Cain
- william.cain&vantiv.com
-47579
- Open Software S.r.l.
- Giuseppe Pitzus
- giuseppe&osw.it
-47580
- Liechtensteinische Landesverwaltung
- Peter Kindle
- wsc&llv.li
-47581
- Styevko Attila
- Styevko Attila
- attila&sty.hu
-47582
- Timothy Boronczyk
- Timothy Boronczyk
- tboronczyk&gmail.com
-47583
- Gentrack
- Vincent Commarieu
- vincentc&gentrack.com
-47584
- Hirealton network technology co., LTD
- xiaojing.weng
- xiaojing.weng&hirealton.com
-47585
- 上海兆越通讯技术有限公司 (Shanghai Communication Technology Co., Ltd. trillion more)
- 张健荣 (Zhang Jianrong)
- 2472265650&qq.com
-47586
- Alfing Kessler Sondermaschinen GmbH
- Dietmar Wieber
- dwieber&aks.alfing.de
-47587
- Rack2Cloud Limited
- Nicholas McDermott
- nick.mcdermott&rack2cloud.com
-47588
- StatPro Group Plc.
- George Palmer
- george.palmer&statpro.com
-47589
- Route443 LLP
- Security Officer
- info&route443.eu
-47590
- iik
- Paul Engel
- pen&iik.dk
-47591
- aidounix
- Aidouni, Frederic
- snmp&aidounix.com
-47592
- NJATECH
- Huzhong
- huzhong&njatech.net
-47593
- Shenzhen Electrical Co.
- NIE YONG JUN
- nyj981&163.com
-47594
- Allwaywin Co., Ltd
- Liu Wei
- admin&allwaywin.com
-47595
- cluster
- wangzhibao
- wangzhibao163&163.com
-47596
- INSS
- Eulaidy Assuncao
- eulaidyreis&gmail.com
-47597
- christmann informationstechnik + medien GmbH & Co. KG
- Wolfgang Christmann
- mail&christmann.info
-47598
- Weiss Klimatechnik GmbH
- Christoph Hammer
- c.hammer&wkt.com
-47599
- Changzhou Wisdom Intelligent Technology CO.,LTD.
- dapeng ye
- ydp&czwit.com
-47600
- LLC "Commercial Bank" Bank Talmenka "
- Cherkashin Dmitriy
- cherkashin&tb22.ru
-47601
- Novo Nordisk A/S
- Preben Stilling Vestergaard
- prsv&novonordisk.com
-47602
- pandoranorge
- John Thingstad
- jpthing&online.no
-47603
- eClinicalWorks
- Paul R. Dittrich
- paul.dittrich&eclinicalworks.com
-47604
- OOO NPP ETRA-Plus (Ltd, Research and Production Enterprise)
- Alexander Arserntiev
- stolknovenie&gmail.com
-47605
- OOO BALTSTAR
- Pavel Galkin
- administrator&baltstar.net
-47606
- ocuro
- Badrul Alam
- balam&ocuro.net
-47607
- Lopez Foods, Inc.
- Chris Wooldridge
- cwooldridge&lopezfoods.com
-47608
- WIRTGEN GROUP Holding GmbH
- Frank Kehlenbach
- edv&wirtgen.de
-47609
- Escola Nacional de Administração Pública (Enap)
- Coordenação-Geral de TI
- infrati&enap.gov.br
-47610
- Bitwiseshift Ltd.
- George Palmer
- gp&bitwiseshift.net
-47611
- CENAPAD
- Carlos Henrique Rebollo
- rebollo&cenapad.unicamp.br
-47612
- Gurtsoft
- Matvei A. Tokmakou
- tama&gurtam.com
-47613
- Esbjerg Kommune
- Esben Foverskov
- hostmaster&esbjergkommune.dk
-47614
- Pranas.NET
- Ruslan Sudentas
- ruslan&pranas.net
-47615
- WRELMS Networking
- Wendy Ruokangas
- wruokangas&gmail.com
-47616
- HangZhou AOBO TELECOM Corp
- zhangshen
- 13656650200&163.com
-47617
- NTSystems
- tadasi nisiyama
- watanabe&ntsystems.co.jp
-47618
- SEFIRA spol. s r.o.
- Tomas Vanek
- it&sefira.cz
-47619
- D&K Technologies GmbH
- Stanislav Koncebovski
- Stanislav.Koncebovski&dktech.de
-47620
- DOMIS/SOMFY
- Alain DEPLANTE
- alain.deplante&somfy.com
-47621
- RiverWeb IT Solutions
- Fotini Tatsidou
- hostmaster&riverweb.gr
-47622
- nicos Research & Development GmbH
- Jörg Langkau
- jlangkau&nicos-rd.com
-47623
- schaetz cro
- William Young
- w.young&schaetz-cro.ch
-47624
- Sysdat Turismo s.r.l.
- Fabrizio Monti
- assistenza.hardware&sigesgroup.it
-47625
- Gekås Ullared AB
- Johan Armfelt
- johan&gekas.se
-47626
- Datelstream Limited
- Darryl Betts
- darryl.betts&datelstream.co.nz
-47627
- kapptivate
- Alexandre Grais
- alexandre.grais&kapptivate.com
-47628
- krauth technology GmbH
- Olaf Knüppel
- Olaf.Knueppel&krauth-online.de
-47629
- AAEON Technology Inc.
- Robin Lin
- RobinLin&aaeon.com.tw
-47630
- Ontario English Catholic Teachers Association
- Joanne Chenier
- sysadmin&oecta.on.ca
-47631
- University of South Alabama
- Ernest A. Lighrtbourne
- alightbo&southalabama.edu
-47632
- HC APMC ONCOLOGY
- JAMIE BAKER
- JBAKER&HIGHLANDCLINIC.COM
-47633
- International Airlines Group
- Matt Hudson
- matt.hudson&ba.com
-47634
- Blue Labs
- David Ford
- david&blue-labs.org
-47635
- Skogsutveckling Syd AB
- Ingemar Arvidsson
- ingemar.arvidsson&sydved.se
-47636
- Stora Enso Bioenergi AB
- Ingemar Arvidsson
- ingemar.arvidsson&sydved.se
-47637
- gehrigmobi
- Jeffrey Gehrig
- registration&gehrig.mobi
-47638
- Crescend Technologies
- Marc Holdwick
- mholdwick&crescendtech.com
-47639
- KpXX
- Serge Guzew
- Serge&Guzew.Ru
-47640
- Tangible Security Inc
- David Partridge
- dpartridge&tangiblesecurity.com
-47641
- gruenewald-clan.de
- Willi Gruenewald
- hostmaster&gruenewald-clan.de
-47642
- Istituto Clinico Città Studi
- Dario Pezzi
- dario.pezzi&ic-cittastudi.it
-47643
- Asahi Net, Inc.
- LABONNE Christophe
- iana_contact&bizml.asahi-net.or.jp
-47644
- Robin Systems
- Tom Morano
- tom&robinsystems.com
-47645
- Harman Intl.
- Mark Smith
- mark.smith&harman.com
-47646
- Beijing Qianxin Technology Co., LTD.
- Jiming Gao
- gaojiming&b.360.cn
-47647
- barox Kommunikation
- Angelo Banfi
- banfi.angelo&barox.ch
-47648
- Aireon LLC
- Andy Hoag
- info&aireon.com
-47649
- World Economic Forum
- Carine Benetti
- carine.benetti&weforum.org
-47650
- Arkin Net Inc.
- Maor Bril
- mbril&arkin.net
-47651
- Accessnord AB
- Tom Tjörnhed
- tom&accessnord.se
-47652
- D.C.Orbital LLC
- Sergey Sapiga
- sys&dcorbital.net
-47653
- Lanbowan Technology Ltd.
- guangdong yang
- 18626469675&163.com
-47654
- News India Today Trust
- Hiranmoy Debnath
- advhiranmoy&gmail.com
-47655
- Nufront co.ltd
- Liu Zhi Gang
- zhigang.liu&nufront.com
-47656
- Conval, Inc.
- Tim Pickering
- tpickering&conval.com
-47657
- Shanghai Golden Bridge InfoTech Co.,Ltd
- zhumin
- zhumin&shgbit.com
-47658
- ZITH
- Sherwood Wang
- sherwoodwang&zith.org
-47659
- Actions-Micro
- Tingya Wang
- tingyawang&actions-micro.com
-47660
- Cookpad Inc.
- Shota Fukumori
- sorah&cookpad.com
-47661
- H&K International
- Sri Karan
- sri.karan&hki.com
-47662
- weroSoft AG
- Rolf Wenger
- rolf.wenger&weroSoft.net
-47663
- Baruwa Enterprise Edition
- Andrew Colin Kissa
- andrew&baruwa.com
-47664
- IP Rozduhov M.E.
- Sergey Gulyaev
- gusa&maxi-net.ru
-47665
- InformInvestGroup
- Andrey Nikolaev
- anikolaev&iigroup.ru
-47666
- Qualica Technologies (Pty) Ltd
- Gregory Babski
- greg&qualica.com
-47667
- Init AB
- Calle Dybedahl
- calle.dybedahl&init.se
-47668
- Agência para a Modernização Administrativa, I.P. (AMA)
- Rui Martinho
- rui.martinho&ama.pt
-47669
- IHI Charging Systems International GmbH
- Torsten Lechler
- it&ihi-csi.de
-47670
- Hitachi, Ltd., Defense Systems Business Unit
- Shohei Nishida
- shohei.nishida.vy&hitachi.com
-47671
- Intra
- Tatiana Kondakova
- t&yadro.com
-47672
- findsolutions
- Alexander Pohl
- info&findsolutions.de
-47673
- IHI Charging Systems International Germany GmbH
- Uwe Jakobi
- it&ihi-csi.de
-47674
- University POLITEHNICA of Bucharest
- Soriga Stefan Gabriel
- stefan.soriga&upb.ro
-47675
- IHI Charging Systems International Sp A
- Gavino Fraghì
- it&ihi-csi.de
-47676
- Social Native
- Steven Oxley
- steveno&socialnative.com
-47677
- Point of Presence Technologies
- Michael Newton
- mnewton&pofp.com
-47678
- Intuity Consultants, Inc.
- Dave Martens
- davemartens&yahoo.com
-47679
- DigitalX
- Alex Wied
- alex.wied&digitalx.com
-47680
- Weimann - IT Consulting
- Marc Weimann
- marc.weimann&gmail.com
-47681
- Endeavor Air, Inc.
- Erik Radde
- erik.radde&delta.com
-47682
- Rocket Lab Ltd.
- Joshua Lamorie
- j.lamorie&rocketlabusa.com
-47683
- MSCH
- Michael Schubert
- michael&schubert-kaunitz.de
-47684
- Babcock Power
- Keith Taylor
- ktaylor&babcockpower.com
-47685
- SimuOne ApS
- Michael Skriver
- msk&simuone.com
-47686
- Switzerland Global Enterprise
- IT-Team
- it-team&s-ge.com
-47687
- Filetress
- Peter Donov
- registration&filetress.com
-47688
- Itential
- Dale Sorsby
- dale.sorsby&itential.com
-47689
- Chop-Chop Sp. z o.o.
- Paweł Jasiński
- payments&chop-chop.org
-47690
- Linton Enterprise I (LEI)
- Eric Russell Linton I
- ericlintonsr&outlook.com
-47691
- Krogh-Consult
- Jesper Krogh
- jek&krogh-consult.dk
-47692
- Tribunal Supremo de Elecciones de Costa Rica
- Eric Quiros Jimenez
- equiros&tse.go.cr
-47693
- Monroe Tool and Manufacturing
- IT department
- it&monroetoolmfg.com
-47694
- CANATAL
- Huzhong
- huzhong&njatech.net
-47695
- McKesson Corporation
- Conrad Spielman
- conrad.spielman&mckesson.com
-47696
- MedicusTek Inc
- William Ott
- william.ott&medicustek.com
-47697
- Nanjing Tian Hua Zhong An Communication Technology CO.LTD
- E Wang
- wange&chinathza.com
-47698
- aroba Inc.
- Masato Kudo
- aroba_se&aroba.jp
-47699
- Avon Products Inc
- Walter Kerner
- walter.kerner&avon.com
-47700
- Systrome Networks
- Steven George
- steven&systrome.com
-47701
- BDO Audit SRL
- Sorin Popa
- sorin.popa&bdo.ro
-47702
- SECLAB
- Thomas VIDAL
- tvidal&seclab-solutions.com
-47703
- cadilinea, slu
- carlos briso
- internet&cadilinea.com
-47704
- BEIT Systemhaus GmbH
- Michael Trenkle
- domainadmin&beit.de
-47705
- Norra Skogsägarna Ek För
- Thomas Nilsson
- thomas.nilsson&norra.se
-47706
- Silion Technology Co., Ltd
- He Xiaopeng
- hexp&silion.com.cn
-47707
- Zynx
- Joey Leclerc
- ta01&zynx.ca
-47708
- Di-Nikko Engineering Co.,Ltd.
- shinya sato
- shinya.sato&dne.co.jp
-47709
- GE Healthcare on behalf of ACRIM hospital
- Emmanuel Gleye
- emmanuel.gleye&ge.com
-47710
- RIBS - Registration and Imaging of Brain Systems
- VME Kersten
- ribsadmin&umcutrecht.nl
-47711
- KECK MEDICINE OF USC
- Jill Chiascione
- jill.chiascione&med.usc.edu
-47712
- Treegital
- Gilles Sauliere
- gse&treegital.fr
-47713
- Charlieuniformtango
- Jeffery Harrell
- sparky&charlietango.com
-47714
- qsx
- Thomas Schneider
- oid-pen&qsuscs.de
-47715
- EZTrader
- gal koren
- galk&eztrader.com
-47716
- Devdot B.V.
- Raymond Pley
- ray&devdot.io
-47717
- OrbiWise SA
- Pierre-Jean PIETRI
- pierre-jean.pietri&orbiwise.com
-47718
- Zetes
- Erwin Vermoesen
- erwin.vermoesen&zetes.com
-47719
- Videology
- Jon Turwy
- jturwy&videologygroup.com
-47720
- LAWO Informationssysteme GmbH
- Karsten Köth
- k.koeth&lawo.info
-47721
- Avaleris
- Hugh Lindley
- hugh.lindley&avaleris.com
-47722
- Hansoft AB
- Erik Olofsson
- erik.olofsson&hansoft.com
-47723
- Michigan Open Carry, Inc.
- Jason Gillman Jr.
- jgillman&miopencarry.org
-47724
- Cuyahoga County
- Tim Verry, Aaron Edens
- tverry&cuyahogacounty.us
-47725
- Konke Online
- Jared Honey
- jared&konkeonline.com
-47726
- Slots Machines S.A.
- Claudio Gustavo Gonzalez
- claudio.gonzalez&slotsmachines.com.ar
-47727
- Assistance Publique des Hôpitaux de Paris
- François Pereira de Lima
- francois.pereira&aphp.fr
-47728
- Tobias Buchloh
- Tobias Buchloh
- postmaster&tb-devel.de
-47729
- Niagara Networks Inc
- Bill Kish
- billk&niagaranetworks.com
-47730
- République et Canton du Jura
- Bruno KEROUANTON
- bruno.kerouanton&jura.ch
-47731
- Leidos, Inc.
- Richard Braunagel
- braunagelr&leidos.com
-47732
- Kopano B.V.
- Michael Kromer
- mike&zarafa.com
-47733
- Beijing Lehe Innovation Information Technology Co.,Ltd.
- chongli wei
- weichongli&higohappy.com
-47734
- Nomura Holdings, Inc.
- Shigekazu Inohara
- inohara-0hxz&jp.nomura.com
-47735
- Toyam Cox
- Toyam Cox
- toyam&borealis.com
-47736
- L2M Solutions doo
- Miljan Djakonovic
- office&l2m.rs
-47737
- BLUETOWN
- Jesper Sandberg
- js&bluetown.com
-47738
- MilDef AB
- Christoffer Martinsson
- christoffer.martinsson&mildef.com
-47739
- Fam.Andersson Skog AB
- Marie Andersson
- marie&askog.se
-47740
- Holmen Skog AB
- Christer Hörnfeldt
- christer.hornfeldt&holmenskog.com
-47741
- Vista Group Limited (formerly 'Vista Entertainment Solutions')
- Christoph Berthoud
- christoph.berthoud&vista.co
-47742
- V-Key Pte Ltd
- Yoong Kwek Yuan
- itsupport&v-key.com
-47743
- Atelios Communication Systems GmbH
- Hans-Juergen Schmidt
- hans.schmidt&atelios.de
-47744
- Tomra ASA
- Vincent Ambo
- vincent.ambo&tomra.com
-47745
- Monmouth Hematology Oncology
- Margaret Bell
- mbell&barnabashealth.org
-47746
- Celgene
- Kushal Mukehrjee
- kmukherjee&celgene.com
-47747
- Oakwood Controls
- John Harrell
- admin&oakwoodcontrols.com
-47748
- Rubricall, SL
- Alejandro Pinedo
- aph&rubricall.com
-47749
- GemTalk Systems
- Norm Green
- norm.green&gemtalksystems.com
-47750
- Bring Dialog Norge AS
- Kim Olsen
- support&bringdialog.no
-47751
- Mattersight Corporation
- Steven Anderson
- steven.anderson&mattersight.com
-47752
- Lycee Louis Armand
- Ewen PRIGENT
- ewen.prigent&ac-creteil.fr
-47753
- Aperi Corporation
- Brian Keane
- bkeane&apericorp.com
-47754
- Core Services Corporation
- Michael Rulf
- mrulf&coreservices.com
-47755
- OpenRat CMS
- Jan Dankert
- iana&jan.weiherhei.de
-47756
- Global Oncology, Inc
- LiiShin
- lslin&global-oncology.com
-47757
- Bariq Electronics
- Muhammad Yahya
- meetyahya&outlook.com
-47758
- Służba Więzienna
- Marcin Woldan
- webmaster&sw.gov.pl
-47759
- Sociedade Educacional Braz Cubas Ltda
- Andre Janna
- andre61&brazcubas.br
-47760
- County of El Dorado
- Tim Liston
- tim.liston&edcgov.us
-47761
- Wishnmix Ltd
- Justin Megawarne
- justin.megawarne&wishnmix.com
-47762
- Section9
- Mark Mc Nicholas
- markmcn&section9.ie
-47763
- OfficeFlex LLC
- Bimal Saraiya
- bimal&officeflexplano.com
-47764
- Elektrownia Rybnik
- Jan Radwański
- jan.radwanski&edf.pl
-47765
- DOC.INFOSAFE (ISRAEL) LTD
- Andrei Tseitlin
- it&swissinfocloud.ch
-47766
- MACNICA FUJI ELECTRONICS HOLDINGS, INC.
- Jiaqi Chen
- chen-j&macnica.co.jp
-47767
- ASH Szoftverhaz Kft
- Bederna, Zsolt
- zsolt.bederna&ashszoftverhaz.hu
-47768
- Aristech GmbH
- Mirko Hering
- mirko.hering&aristech.de
-47769
- Armour Communications Limited
- Andy Lilly
- it&armourcomms.com
-47770
- ESG BIRO DE SERVICOS S/S LIMITADA - ME
- Eugênio Neves da Rocha
- eugenio&esg.eng.br
-47771
- Colorado School of Mines
- Matthew B. Brookover
- mbrookov&mines.edu
-47772
- Clear Axess SAGL
- Giovanni Tirino
- giovanni.tirino&clearaxess.com
-47773
- Radeus Labs
- Robert Gomez
- robert.gomez&radeuslabs.com
-47774
- Microsoft Small Basic
- Ed Price
- smallbasic&microsoft.com
-47775
- Ernst Basler + Partner AG
- Hjalmar Heinrich
- support&ebp.ch
-47776
- TS Gateway Ltd
- Stuart Berry
- slberry&tsgateway.com
-47777
- Fachschaftsvertretung der Fakultät für Informatik und Mathematik, Universität Passau
- FSinfo administrators
- admins&fsinfo.fim.uni-passau.de
-47778
- Cox Communications Inc. - Atlanta Technology
- Gemarl Perry
- gemarl.perry&cox.com
-47779
- TaiHao Medical
- You-Wei Wang
- wei.tomato1112&gmail.com
-47780
- Prosoft Kroměříž s.r.o.
- Josef Zvoníček
- prosoft&prosoft.cz
-47781
- National Western Life Insurance
- Trevor Westerdahl
- twesterdahl&nationalwesternlife.com
-47782
- Nautile Software
- laurent CONIN
- conin&nautile-software.com
-47783
- codia Software GmbH
- Thomas Menke
- t.menke&codia.de
-47784
- Suncoast Cancer Institute
- Don Heinrich
- admin&suncoastci.com
-47785
- mBank S.A.
- Roger Walczak
- roger.walczak&mbank.pl
-47786
- 5BARz India Private Limited
- J RAJENDRA PRASAD DEEPAK
- djrprasad&5barzindia.com
-47787
- MuseumsIT
- Thomas Johansen
- post&museumsit.no
-47788
- Prismaflex International
- Alexis Greppo
- itsupport&prismaflex.com
-47789
- OAO MNIIPI OKOSZ "MOSPROEKT-4"
- system administrator
- admin&mosproekt-4.ru
-47790
- ASYS Automatic Systems GmbH & Co. KG
- Fredy Walth
- f.walth&asys-micro.de
-47791
- Rayed Alrashed
- Rayed Alrashed
- rayed&rayed.com
-47792
- Pew Research Center
- Brian Broderick
- bbroderick&pewresearch.org
-47793
- Scripps Networks Interactive
- Chuck Edwards
- Chuck.Edwards&scrippsnetworks.com
-47794
- Arizona Center for Hematology and Oncology, LLC
- Kimberly Fanciullo
- kfanciullo&arizonaccc.com
-47795
- Tegsoft
- Eray Gürsoy
- info&tegsoft.com
-47796
- Architecting.nl
- Jan Schoonderbeek
- j.schoonderbeek&architecting.nl
-47797
- Yellowbrick Data, Inc
- Mark Brinicombe
- iana&yellowbrick.io
-47798
- CNI
- nadia chebbi
- nadia.chebbi&hotmail.fr
-47799
- Verody, LLC
- Kobi Eshun
- info&verody.com
-47800
- Waiariki Bay of Plenty Polytechnic
- James Chamberlain
- james.chamberlain&boppoly.ac.nz
-47801
- CloudSeeds GmbH
- Kevin Fibich
- info&cloudseeds.de
-47802
- CTSI Limited
- David Reid
- david.reid&ctsilimited.com
-47803
- Urban Renaissance Agency
- Amimoto Reiji
- amimoto&ur-net.go.jp
-47804
- Bravowhale Information Technology Ltd
- Jason Deng
- denghuimin&bravowhale.com
-47805
- Shenzhen Grentech RF Communication Limited
- qiyang
- yangqi&powercn.com
-47806
- Trussan Co., Ltd
- Jarod Yu
- jarodyu&trussan.com
-47807
- DSRI "Volna", OJSC
- Mirza Nabiev
- volna.nabiev&yandex.ru
-47808
- Delaware County Community College
- Donald Sloat
- dsloat&dccc.edu
-47809
- Centerline Biomedical, Inc.
- Vikash Goel
- v&centerlinebiomedical.com
-47810
- LINAGORA TUNISIE
- Sami Bouhlel
- sbouhlel&linagora.com
-47811
- Pavilion Data Systems Inc
- Sundar Kanthadai
- sundar&paviliondata.com
-47812
- AZ Elektro AG
- Thomas Müller
- Thomas.Mueller&az-elektro.ch
-47813
- Luetze Transportation GmbH
- Dimitrios Koutrouvis
- dimitrios.koutrouvis&luetze.de
-47814
- ChinaUnicom
- zhanglunyong
- zhanglunyong&chinaunicom.cn
-47815
- Stora Enso Skog AB
- Erik Buki
- erik.buki&storaenso.com
-47816
- Joseph Workstation
- Joseph Chris
- 279212363&qq.com
-47817
- HAWE Hydraulik SE
- Daniel Pradel
- d.pradel&hawe.de
-47818
- Salzburg AG
- Adnan Reh
- adnan.reh&salzburg-ag.at
-47819
- NTT DATA Italia
- Stefano Crespi
- stefano.crespi&nttdata.com
-47820
- Böco Böddecker & Co. GmbH & Co. KG
- Benedikt Diederichs
- b.diederichs&boeco.de
-47821
- Sjova-Almennar tryggingar hf
- Jon Elias Thrainsson
- skilriki&sjova.is
-47822
- NdT Web Services
- Nicholis du Toit
- ndtwebservices&icloud.com
-47823
- Couch Red
- Niklas Johansson
- raphexion&gmail.com
-47824
- Exprivia Telco & Media srl
- Andrea Andreucci
- andrea.andreucci&exprivia.it
-47825
- Ravel Electronics Pvt Ltd
- Ramdas Ayyadurai
- ramdas&ravelfire.com
-47826
- Bristows LLP
- Chris Jory
- chris.jory&bristows.com
-47827
- Moogsoft
- Andrew Hepburn
- spike&moogsoft.com
-47828
- Lincoln Oncology, LLC
- Joanne Cruz
- cruz.joanne23&gmail.com
-47829
- Fornetix
- Gerald Stueve
- GStueve&Fornetix.net
-47830
- MovingStar Corporation
- Sanghyun Park
- shpark&movingstar.org
-47831
- Robert Half Inc.
- Mark Nguyen
- mark.nguyen&roberthalf.com
-47832
- NBCUniversal
- Tarfa Hachem
- tarfa.hachem&nbcuni.com
-47833
- Teleworks Co., Ltd.
- Ivy Kim
- tw_lab&teleworks.co.kr
-47834
- OOO NPP "POLUS"
- Andrey Lebedev
- polus_npp_lebedev&mail.ru
-47835
- ARCHIVECO
- SYLVAIN PLANCHON
- pen&archiveco.fr
-47836
- Bernd Matusche
- Bernd Matusche
- bernd.matusche&gmx.de
-47837
- Produban Global Services
- Alexander Gray
- cloudsecurity&produban.com
-47838
- Angstroem Event Solutions
- Hannes Eberhardt
- info&onether.net
-47839
- Landesarchiv Nordrhein-Westfalen
- Mario Gruchalski
- mario.gruchalski&lav.nrw.de
-47840
- alzahra university
- sara ahmadi
- ahmadi_2616&yahoo.com
-47841
- Comita Group of companies
- Maxim Y. Evdolyuk
- support&comitagroup.com
-47842
- Identity Tech Solutions, LLC
- Jeffery Frederick
- jeff&identitytechsolutions.com
-47843
- 广州易速计算机设备有限公司 (Guangzhou-speed computer equipment Ltd.)
- 谢锐民 (Xie Ruimin)
- 329920023&qq.com
-47844
- ELEET Networks
- Tomas Agartz
- oid-admin&as31337.org
-47845
- Netz39 e.V.
- Stefan Haun
- stefan.haun&netz39.de
-47846
- BCausE Enterprise Private Limited
- Apu Chandra Saha
- apu.saha&bcause.in
-47847
- Informatikdienste, Stadt Bern
- Vladimir Fabian
- vladimir.fabian&bern.ch
-47848
- SYNERGY SYSTEMS AND SOLUTIONS
- VIDHU AGGARWAL
- info&s3india.com
-47849
- RealSprint AB
- Niclas Åström
- niclas.astrom&realsprint.com
-47850
- Cathexis Technologies (PTY) LTD
- Morkel Potgieter
- devpartner&cat.co.za
-47851
- Arest Inc.
- Orest Pazdriy
- dr.arest&gmail.com
-47852
- throwstone
- Sylvester Chen
- wencong.chen&outlook.com
-47853
- Key Performance Consulting
- Patrice Blanchardie
- patrice.blanchardie&kpconsulting.fr
-47854
- Abakusz Computer Services
- Peter Oth
- othp&abakusz.hu
-47855
- Rumo Logística
- Félix Alexandre da Silva
- felix.silva&rumoall.com
-47856
- Geo++ GmbH
- Norbert Matzke
- matzke&geopp.de
-47857
- Juice Goose
- Stephen Blow
- sblow&juicegoose.com
-47858
- ENDICOTT PRECISION
- Joshua Kaminsky
- JKaminsky&endicottprecision.com
-47859
- KEO GmbH
- Peter Kellendonk
- kellendonk&kellendonk.de
-47860
- Thalia Bücher GmbH
- Claus-Dieter Wittek
- c.wittek&thalia.de
-47861
- The Berkeley Carroll School
- Tammi Williams
- tdwilliams&berkeleycarroll.org
-47862
- almanid group GmbH
- Ronny Bremer
- rbremer&almanid.com
-47863
- Ing.-Büro Sigmund Gassner
- Sigmund Gassner
- g&ssner.de
-47864
- Futureweb OG
- Andreas Schnederle-Wagner
- schnederle&futureweb.at
-47865
- PT. Sinergi Teknologi Utama
- Rachmat Kusnadi
- rachmat.kusnadi&sinergiteknologi.com
-47866
- Deniz Sezer
- Deniz Sezer
- deniz.sezer1&gmail.com
-47867
- nadansys
- Byun Jung In
- jibyun&ndsys.co.kr
-47868
- Luigi D'Ambrosio
- Luigi D'Ambrosio
- luigi.dambrosio&gmail.com
-47869
- Nykvist Skogs AB
- Lina Edin
- lina&nykvist-skogs.se
-47870
- thovel Thomas Velthoven
- Thomas Velthoven
- thomas&velthoven.no
-47871
- RadioFrequencyExpert srl
- Cesare Paganino
- c.paganino&radiofrequencyexpert.com
-47872
- BANK-now AG
- Matt, Rainer
- rainer.matt&bank-now.ch
-47873
- SURIX SRL
- Sergio Starkloff
- starkloff&surix.net
-47874
- County of Sacramento
- Adam C. Huyck
- huycka&saccounty.net
-47875
- Solebit Labs
- Boris Vaynberg
- boris&solebitlabs.com
-47876
- Shanghai Real Communication Technology Co., Ltd.
- gongchengxin
- gongcx&realcom.com.cn
-47877
- LÖWEN Entertainment GmbH
- IT&Organisation
- admin&loewen-gruppe.de
-47878
- pretty Easy privacy foundation
- Volker Birk
- council&pep.foundation
-47879
- Skogsägarna Norrskog
- Rikard Lundström
- rikard.lundstrom&norrskog.se
-47880
- Wildom Ltd.
- Gabor Kovacs
- kovacsg&wildom.com
-47881
- B.P. Konstantinov Petersburg Nuclear Physics Institute
- IT Department
- software&pnpi.nrcki.ru
-47882
- TechAssist
- Brad Beckett
- bradbeckett&gmail.com
-47883
- sst-net.de
- Sven Stitzelberger
- iana.dienste.sst&sst-net.de
-47884
- ISIMA
- Guillaume Avez
- guillaume.avez&isima.fr
-47885
- SWDC RTSoft, OOO
- Timur Frolov
- admin&dev.rtsoft.ru
-47886
- Intelligent Automation, Inc.
- Geoffrey Bernstein
- itdept&i-a-i.com
-47887
- Keramik Bruckner e.U.
- Christine MILISITS
- info&keramik-bruckner.eu
-47888
- Freifunk - Verein zur Förderung des freien Internets
- Juergen Bruckner
- juergen&freifunk.club
-47889
- Traffic and Parking Control Co., Inc.
- Chris McLean
- cmclean&tapconet.com
-47890
- QSight Ltd
- Daniel Price
- qsightnz&gmail.com
-47891
- Sea Tel
- Nedko Vassilev
- nedko.vassilev&cobham.com
-47892
- Cosmic Engineering Inc.
- Tetsuo Saito
- saito_tetsuo&cosmic-eng.co.jp
-47893
- NEW SUNRISE CO.,LTD.
- zhu jian
- zhujian778&163.com
-47894
- phoenixcompany
- jianbo,tian
- 291205728&qq.com
-47895
- 杭州云霁科技有限公司 (Hangzhou Yun Ji Technology Co., Ltd.)
- James Gao
- gaowenfei&idcos.com
-47896
- System Infra Solutions Pvt. Ltd.
- Dushyant Kumar
- dushyant&sysinfra.in
-47897
- SmartGen
- zhangshuangyang
- zsysmartgen&126.com
-47898
- Centrul de Calcul S.A.
- Adelin Cusman
- office&certdigital.ro
-47899
- École Supérieure des Arts Saint-Luc Liège
- Jean-Michel CAFAGNA
- cafagna.jean-michel&saint-luc.be
-47900
- Södra Skogsägarna Ekonomisk Förening
- Örjan Vorrei
- orjan.vorrei&sodra.com
-47901
- Hypixel, Inc
- Bruce Blair Jr
- agentk&hypixel.net
-47902
- Ralphie T
- Ralph Thompson
- ralphiet78&gmail.com
-47903
- RAC Motoring Services
- Ralph Thompson
- ralph.thompson&getronics.com
-47904
- Ricola AG
- Christian Jud
- christian.jud&ricola.com
-47905
- OBS/OCB Cloudwatt
- FERAUDET Cyril
- ops.cloudwatt&orange.com
-47906
- ninjap
- francois casse
- fchr&free.fr
-47907
- HAMBURG WASSER
- Katrin Morhöfer
- katrin.morhoefer&hamburgwasser.de
-47908
- Consulting Company Informatica SC Ltda
- Marcos Hideyo Sibuya
- m.sibuya&consultingcompany.com.br
-47909
- Bossa Nova Robotics
- Joe Hosteny
- joe&bnrobotics.com
-47910
- Orbitel
- Evgeney Kirik
- orbitel45&gmail.com
-47911
- TOC S.A.
- Ricardo Navarro
- rn&toc.cl
-47912
- Radio Rentals Ltd
- Brad Howson
- rrgitregistrations&radiorentals.com.au
-47913
- uczen
- Hyungsuk Choi
- hschoi&uczen.co.kr
-47914
- geoint.org
- Steven Siebert
- steve&geoint.org
-47915
- CAAGIS
- SVP Caagis
- supervision&ca-caagis.fr
-47916
- ioTRAN Corp.
- Michael Banschbach
- mwb&iotran.com
-47917
- Urban Search & Rescue Austria (U.S.A.R. Austria)
- Juergen Bruckner
- info&usar.at
-47918
- Lucien Pullen
- Lucien Pullen
- drurowin&gmail.com
-47919
- dsi
- Md. Habibur Rahman
- habib.rahman&dsinnovators.com
-47920
- PropertyGuru Pte. Ltd.
- Kostiantyn Lysenko
- engineering&propertyguru.com.sg
-47921
- One Nine One Computer
- Olivier Eigensatz
- nic&191.ch
-47922
- NetPilot Internet Security Ltd.
- Robert Hawkins
- rhawkins&netpilot.com
-47923
- Sentia B.V.
- Dennis van Zuijlekom
- dennis.van.zuijlekom&sentia.com
-47924
- mergedK GmbH
- Conrado Seibel
- conrado.seibel&mergedk.com
-47925
- Cima S.p.A.
- Fabio Abbottoni
- fabio.abbottoni&cimaspa.it
-47926
- Mitchell Farrar Holdings LTD
- Daniel Bairstow
- externalitsupport&mfgroup.co.uk
-47927
- Tenet Healthcare
- Jarrett Bell
- Jarrett.Bell&ca.com
-47928
- Fortifydata
- Sushil jain
- sushil.jain&fortifydata.com
-47929
- Edwards Lifesciences LLC
- Ben Monrad
- ben_monrad&edwards.com
-47930
- Mansoft
- H.F. Manson
- hfmanson&mansoft.nl
-47931
- ExteNet Systems, Inc.
- Keyur Brahmbhatt
- kbrahmbhatt&extenetsystems.com
-47932
- Andrino
- Martin Andrino
- martin&andrino.eu
-47933
- Terma A/S
- Mads Ulrik Kristoffersen
- muk&terma.com
-47934
- World Privacy and Identity Association (WPIA) (formerly 'Freifunk Burgenland - Verein freie Netze im Burgenland')
- Juergen Bruckner
- info&wpia.club
-47935
- tiri GmbH
- Gerald Fehringer
- gerald.fehringer&tiri.li
-47936
- HansBeerman B.V.
- Hans Beerman
- HansBeerman-BV&xs4all.nl
-47937
- Ophir Energy PLC
- Damien Derby
- damien.derby&ophir-energy.com
-47938
- Alloy Software, Inc.
- Ivan Samoylov
- ivans&alloy-software.com
-47939
- Audio Export GmbH
- Jürgen Schenk
- j.schenk&audioexport.de
-47940
- clAIRvision Corporation
- Jun Ogawa
- enmng&clairvision.co.jp
-47941
- Mendix B.V.
- Hans van Kranenburg
- iana&mendix.net
-47942
- Tachyons .NET
- Joel Studtmann
- joel&tachyons.net
-47943
- Oesterreichischer Mantrailing Verband - Mantrailing Austria
- Doris Bruckner
- info&mantrailing-austria.org
-47944
- Center for International Private Enterprise
- Christopher Bolcik
- cbolcik&cipe.org
-47945
- Fukoku Matual Life Insurance Company
- Ryouichi Mukai
- ryouichi.mukai&fi.fukoku-life.co.jp
-47946
- OOO "Eko Paper"
- Sergey V. Kurochkin
- serge&volga-paper.ru
-47947
- Hoermann GmbH
- Matthias Müllner
- info&hoermann-gmbh.de
-47948
- Systemtechnik LEBER GmbH & Co. KG
- Stefan Angele
- info&leber-ingenieure.de
-47949
- SYMACORP
- Cedric LEFIEF
- dtechnique&symamobile.com
-47950
- Balkantel Ltd.
- Georgi Georgiev
- ggeorgiev&balkantel.net
-47951
- Foundation for Trusted Identity
- Sam Dibrell
- sam&strac.org
-47952
- NETIO products a.s.
- Jan Rehak
- info&netio.eu
-47953
- D11
- Peter Ahlgren
- peter.ahlgren&kalundborg.dk
-47954
- Punkt Creative LLC
- Ethan Brooks
- punktcreative&gmail.com
-47955
- Max Planck Institute for the Physics of Complex Systems
- Thomas Mueller
- mueller&pks.mpg.de
-47956
- KAV Danubia
- Sebastian Ecker
- calimero&danubia.wien
-47957
- Equiis Technologies Inc.
- Valdemar Tadeu Mendonca
- tmendonca&equiis.com
-47958
- Cloud Cantábrico Siglo XXI, S.L.U
- Óscar Flor Lozano
- oscar.flor&cc3m.com
-47959
- Snapchat, Inc.
- Eric Mak
- eric.mak&snapchat.com
-47960
- Hartmann GmbH
- Lutz Polosek
- lutz.polosek&hartmann-gmbh.eu
-47961
- Gerhard D. Wempe KG - Division Chronometerwerke
- Christian Blanck
- chrono&wempe.de
-47962
- Ezam Automotive Parts
- Ali Karimi
- Karimi&ezamco.com
-47963
- Schwyzer Kantonalbank
- Martin Annen
- netadmin&szkb.ch
-47964
- Landkreis Oberhavel
- Uwe Volwarski
- it&oberhavel.de
-47965
- Dedicated Computing LLC
- Greg Krimmer
- administrator&dedicatedcomputing.com
-47966
- NooBaa
- Yuval Dimnik
- yuval.dimnik&noobaa.com
-47967
- IT-Consulting Mario Bergmann
- Mario Bergmann
- mb&mabecon.de
-47968
- KOMSET-servis LLC
- Ilya Orlenko
- support&komset.ru
-47969
- Mills College
- Tobin Lee
- its-admins&mills.edu
-47970
- Neulinger Consulting
- Nathan Neulinger
- nneul&neulinger.org
-47971
- Martin Sprocket and Gear, Inc.
- Network Admin
- netadmin&martinsprocket.com
-47972
- Sam Yaple
- Sam Yaple
- sam&yaple.net
-47973
- Servosity Inc
- Sam Yaple
- syaple&servosity.com
-47974
- WANSecurity, Inc.
- Robert Smith
- iana.org&wansecurity.com
-47975
- kezhi-controls
- gen.xu
- gen.xu&kezhi-controls.com
-47976
- gematik Gesellschaft für Telematikanwendungen der Gesundheitskarte mbH
- Ingo Bahn
- ingo.bahn&gematik.de
-47977
- Tivaci Corporation
- Edward Kwa
- ed.k&tivacicorp.com
-47978
- ALPEIN Software SWISS AG
- Sergey Gamov
- devteam&alpeinsoft.ch
-47979
- BG Klinikum Hamburg gGmbH
- A.-R. Schmidt
- edv&bgk-hamburg.de
-47980
- Jernbaneverket
- Herman Seip
- enterprise_oid_snmp&jbv.no
-47981
- Prowise B.V.
- Paul de Laat
- systeembeheer&prowise.com
-47982
- 6PM PLC
- David Vassallo
- david.vassallo&6pmplc.com
-47983
- Hanseatic Bank
- Stephan Jacobsen
- Stephan.jacobsen&hanseaticbank.de
-47984
- Atos IT Solutions and Services AG
- Sebastian Manthey
- sebastian.manthey&atos.net
-47985
- IDnomic
- Ahmadou DEM
- securite-audit&idnomic.com
-47986
- Green Communications
- Khaldoun Al Agha
- admin&green-communications.fr
-47987
- Eraldo Gandini
- Eraldo Gandini
- io&eraldogandini.it
-47988
- PDS s.r.o.
- Lukas Plachy
- lukas.plachy&pds.eu
-47989
- Software Workers srl
- Riccardo Scartozzi
- riccardo.scartozzi&softwareworkers.it
-47990
- Juergen M. Bruckner
- Juergen M. Bruckner
- info&bruckner.xyz
-47991
- shadowhunt
- Alexander Dreweke
- iana&shadowhunt.de
-47992
- Gettysburg Cancer Center
- Bansari Mandalia
- bamandalia&gettysburgoncology.com
-47993
- Brazen Technologies
- Jason Southern
- jason&brazen.com
-47994
- bba solutions
- Darrick Buralli
- dburalli&bbasolutions.com
-47995
- American University
- Hosein Nahidian
- nahidian&american.edu
-47996
- DataBoost LLC
- Bradley Giesbrecht
- iana&databoost.com
-47997
- Securilytics, LLC
- Alex Senkevitch
- tech-poc&securilytics.com
-47998
- DASSAULT FALCON SERVICE
- Nicolas SAINT-VAL
- nicolas.saint-val&dassault-falcon.com
-47999
- Port of Portland
- IT Technical Services - IANA Admin
- iana&portofportland.com
-48000
- Steelwedge Software
- Chris Callison
- ccallison&steelwedge.com
-48001
- OOOGLEEE, INC.
- JAYANTA KACHARI
- jayantasumitra2011&gmail.com
-48002
- schoeller network control Datenverarbeitung GmbH
- Wilhelm Pichler
- wilhelm.pichler&schoeller.at
-48003
- Fast S.p.A.
- Lorenzo Rompianesi
- l.rompianesi&fastautomation.it
-48004
- Digifort - IP Surveillance System
- Francisco Luiz Zanini
- francisco&digifort.com.br
-48005
- ZyCast Technology Inc.
- Shelly Chang
- shelly_chang&zycast.com.tw
-48006
- Nandex, Inc
- Vladmir Komarov
- vladimir.komarov&nandex.org
-48007
- Netskope
- Nauman Tahir
- Nauman&netskope.com
-48008
- BfG Eigentümer/-innen- und Verwaltungsgenossenschaft eG
- Philipp Tod
- it-support&mitgruenden.at
-48009
- AÇÃO EDUCACIONAL CLARETIANA
- Danilo da Silva
- danilodasilva&claretiano.edu.br
-48010
- Howard & Howard
- Darren Ginter
- dg&h2law.com
-48011
- SparkStone Ltd
- Michael Keeley
- admin&sparkstone.co.nz
-48012
- COWE Co., Ltd.
- Kenick Kim
- khkim&cowe.co.kr
-48013
- Strauss and Strauss Consultants (Pty) Ltd.
- Heinrich Strauss
- hostmaster&strauss.company
-48014
- SCAI Connect
- Francesco Pinta
- francesco.pinta&scaiconnect.it
-48015
- IT Gården i Landskrona AB
- Magnus Nilsson
- magnus.nilsson&itgarden.se
-48016
- MELASZ
- Janos Almasi
- elnokseg&melasz.hu
-48017
- Syamsul Mobile
- Syamsul Maarief
- syyull&gmail.com
-48018
- Today Technology Co., Ltd.
- jinmingfeng
- jinmf&todaysec.com
-48019
- InMobi Pte Ltd
- Masthanaiah Cheekavolu
- infra-ops&inmobi.com
-48020
- Shanghai Chenrui Communication Technology Company
- Xuhua Zhou
- anthony570&163.com
-48021
- THE ROBERTO GIORI COMPANY LTD
- Roberto Giori
- info&gsmt.ch
-48022
- Norges Geotekniske Institutt
- Arne Digernes
- arne.digernes&ngi.no
-48023
- Latvian Institute of Organic Synthesis
- Andris Diss
- andris&osi.lv
-48024
- Paradise Network Enterprises
- David Robb
- ender&paradise.gen.nz
-48025
- Lyonel Serradura
- Lyonel Serradura
- lserradura&free.fr
-48026
- Oostec BV
- L. Meinders
- leo.meinders&oostec.nl
-48027
- PKB RIO Ltd
- Konstantin Alekseenkov
- AlekseenkovK&pkb-rio.com
-48028
- VS Web Labs
- VANGALA SURESH
- 640067&gmail.com
-48029
- High-Galaxy,HGANS
- Zhuoyao Wang
- wang.zy&high-Galaxy.com
-48030
- Pesticide Software
- Steven Stanton
- sstanton&pesticidesoftware.com
-48031
- GLOBAL 2000
- Stefan Hirschhofer
- stefan.hirschhofer&global2000.at
-48032
- Västra Värmland och Dals skogsägareförening
- Anders Alm
- anders.alm&vvds.se
-48033
- Aktiebolaget Hilmer Andersson
- Erland Erlandsson
- erland.erlandsson&hilmer.se
-48034
- Bukalapak
- Rizal Muhammad Nur
- rizal&bukalapak.com
-48035
- Copperchase Limited
- Tony Myers
- sales&copperchase.co.uk
-48036
- ALHUE-TEC LTDA
- Sergio Uribe
- sergioaquiles.uribe&gmail.com
-48037
- SHENZHEN UTEPO TECH CO., LTD
- timwang
- wangxianghua&utepo.com
-48038
- ONF ENERGIE
- Aymeric ALBERT
- aymeric.albert&onf.fr
-48039
- PIRIOS S.A.
- Konrad Pieniawski
- konrad.pieniawski&pirios.com
-48040
- Radium s.r.o
- Milan Cecrdle
- cecrdle&radium.cz
-48041
- Technica Del Arte BV
- Joost Bloemen
- joost&technicadelarte.com
-48042
- Geomant
- Akos Vecsei
- info&geomant.com
-48043
- DENSO International America
- Douglass Coombs
- douglass_coombs&denso-diam.com
-48044
- Tri-Valley Oncology
- Yvette Hamilton
- yhamilton&tvoha.com
-48045
- Inpro Telecom S.A. de C.V.
- Enrique RIvera Florentino
- erivera&inprotelecom.com
-48046
- Arcadis NV
- Flint Barber
- flint.barber&arcadis.com
-48047
- DDESK LLC
- Andre Meyer Pflug
- andre&ddeskllc.com
-48048
- Levene Såg AB
- Björn Broberg
- broberg&levene-sag.se
-48049
- NEW Service GmbH
- Clemens Blank
- clemens.blank&new.de
-48050
- International Personal Finance
- Nic Tomlinson
- nic.tomlinson&ipfin.co.uk
-48051
- Sato America
- Zayar Tun
- zayar.tun&sato-global.com
-48052
- Milpowerinc
- Brooks Dorroh
- bdorroh&milpowerinc.com
-48053
- Mazatal Hotel and Casino
- Scott Smith
- scotts&777play.com
-48054
- SunGard Data Systems
- Mark Kaczorowski
- mark.kaczorowski&fisglobal.com
-48055
- sendhybrid GmbH
- Peter Danner
- peter.danner&sendhybrid.com
-48056
- Jeremy Gibbons
- Jeremy Gibbons
- jeremy.gibbons&laposte.net
-48057
- Kronos Technologies
- Nicolas Vanheuverzwijn
- nvanheuverzwijn&kronostechnologies.com
-48058
- SouthEast Texas Regional Advisory Council
- Jeremiah Williamson
- jeremiah.williamson&setrac.org
-48059
- Karlsruhe Institute of Technology (KIT)
- Reinhard Strebler
- reinhard.strebler&kit.edu
-48060
- SecureMe2
- Hans van Beek
- hans&byte.expert
-48061
- Byte Expert B.V.
- Hans van Beek
- hans&byte.expert
-48062
- Territorial Generation Company 14
- Anatoly Loskutnikov
- anatlosk&gmail.com
-48063
- Anna Jaques Cancer Center
- Laura Rossi
- lrossi&ajh.org
-48064
- Grupo MSA S.A.
- IT Services department
- webmaster&msa.com.ar
-48065
- Talentnet Corporation
- IT Department
- it&talentnet.vn
-48066
- Linkforce Engineering
- Todd Bayley
- IT&linkforce.com.au
-48067
- UnifyID, Inc.
- John Whaley
- john&unify.id
-48068
- CSE Transtel
- Diego Abas
- diego.abas&cse-transtelsg.com
-48069
- Demmich IT Service
- Torsten Demmich
- mail&torstendemmich.de
-48070
- Patrick Lesky
- Patrick Lesky
- mail&patricklesky.at
-48071
- Retarus GmbH
- Florian Kretzschmar
- enterprise.it&retarus.de
-48072
- Optanix
- Kelly Ronan
- timothy.boronczyk&optanix.com
-48073
- Pentest Limited
- Lasantha Priyankara
- lasantha.priyankara&pentest.co.uk
-48074
- Cube-Tec International GmbH
- Robert Meyer
- technik&cube-tec.com
-48075
- Tennessee Plateau Oncology
- Linda Barnwell
- lbarnwell&volfirst.net
-48076
- NexGen Inc
- Mohsen Mashayekhi
- admin&arianrp.com
-48077
- State University of Feira de Santana
- Delmar Broglio Carvalho
- aei&uefs.br
-48078
- Ventura County Hematology Oncology Specialists
- Marissa Rivera
- mrivera&venturaoncology.com
-48079
- NEC Enterprise Communication Technologies
- Amit V Raut
- amit.raut&necect.com
-48080
- Mimetrix Design Group
- Elliott Starin
- elliott.starin&mimetrix.com
-48081
- Max Planck Institute for Plant Breeding Research
- Andreas Hoffmann
- iana&mpipz.mpg.de
-48082
- Stromnetz Hamburg GmbH
- Matthias Brasch
- Matthias.Brasch&stromnetz-hamburg.de
-48083
- AIRESERVICES
- Bruno LE TUAL
- technique&aireservices.com
-48084
- Stewart Investors
- Peter Lyttle
- peter.lyttle&firststate.co.uk
-48085
- RCCA COMMUNITY HEMATOLOGY ONOCOLGY
- BETH SHAW
- BSHAW&CHOP-MD.COM
-48086
- Helicon Opleidingen
- Alex Peeters
- aut.bb&helicon.nl
-48087
- Troup County School System
- Gary Stansbury
- admin&troup.org
-48088
- Instituto Superior de Economia e Gestão
- Raul Bras
- rbras&iseg.ulisboa.pt
-48089
- Rådgivende Ingeniør Per Dypvik AS
- Per Dypvik
- per&energea.no
-48090
- Nord/LB Luxembourg S.A. Covered Bond Bank
- Juergen Koehnen
- juergen.koehnen&nordlb.lu
-48091
- Sicss Society
- Haochen Xie
- haochenx&acm.org
-48092
- qi2
- Laurent Cambou
- qi2.info&free.fr
-48093
- Aptomar AS
- Morten Espeland
- morten.espeland&aptomar.com
-48094
- White Star Petroleum
- Joshua Shackeford
- Joshua.Shackelford&wstr.com
-48095
- Stadler Pankow GmbH
- André Orpel
- Andre.Orpel&stadlerrail.de
-48096
- jedernet GmbH
- Pete Inhofer
- ldap&jedernet.de
-48097
- RAYAPHONE
- Mahdi Mohammad Hossaini
- info&rayaphone.com
-48098
- EBPI BV
- Martijn van Buijtene
- martijn.van.buijtene&ebpi.nl
-48099
- Redgate Software
- Ben Emmett
- bsprocurement&red-gate.com
-48100
- Orca Technologies
- Gary Geil
- sales&orcatechnologies.com
-48101
- Systech International
- Robert Phillips
- bob.phillips&systechone.com
-48102
- DARTY
- Jonas BARROZO
- jonas.barrozo&darty.fr
-48103
- Executive Weather Corporation
- Amy M. Fincher
- amy&executiveweather.com
-48104
- example.cz
- Alice Vixie
- example&email.cz
-48105
- Sky Puzzle Ltd.
- Zdenko Marincic
- info&sky-puzzle.com
-48106
- Skami Programming
- Karn Kallio
- kkallio&skami.org
-48107
- Equidome
- Turpin Olivier
- turpin_olivier&orange.fr
-48108
- 9DOT
- Alessandro Campanella
- a.campanella&9dot.it
-48109
- WishCert
- Hyunjae Yoo
- y9769852&gmail.com
-48110
- Universite de Rouen Normandie
- Cedric HOUSSIER
- cedric.houssier&univ-rouen.fr
-48111
- AMD Distribution sp.z o.o.
- Marcin Cichocki
- m.cichocki&amdd.pl
-48112
- AZCOM Technology s.r.l.
- Stefano Gandini
- stefano.gandini&azcom.it
-48113
- Rabian Inc.
- Adrien Rabian
- admin&rabian.fr
-48114
- Solutionbase Ltd
- Kevin Golding
- kgolding&solutionbase.co.uk
-48115
- Gallagher Group Limited
- Eric Light
- ISInfrastructure&gallagher.co.nz
-48116
- VšĮ Kauno Šilainių poliklinika
- Darius Grigarevičius
- d.grigarevicius&silainiupoliklinika.lt
-48117
- Scheidt & Bachmann GmbH
- Julian Dickreiter
- dickreiter.julian&scheidt-bachmann.de
-48118
- Pyro Telecom Solutions Pvt Ltd
- Yugandhar Dussani
- yugandhar.dussani&pyrogroup.com
-48119
- Scangaule
- Christophe Hellman
- info&scangaule.com
-48120
- Digipolis CVBA
- Cor Michels
- cor.michels&digipolis.be
-48121
- njhd
- liu bin
- hd&njhd.com.cn
-48122
- Internal Medicine Associates of Lee County MD PA
- Ryan Williams
- rwilliams&imadoctors.com
-48123
- Paradise Valley Community College
- itpvc
- itpvc&paradisevalley.edu
-48124
- MagicMonster Limited
- Jurn Ho
- jurn&magicmonster.com
-48125
- Exodus Intelligence
- Peter Vreugdenhil
- pen&exodusintel.com
-48126
- Energostat Co., Ltd
- Andrei Polizharov
- support&energostat.ru
-48127
- salesforce.com, inc.
- PEN
- pen&salesforce.com
-48128
- Distributed Data Systems Ltd.
- Alex Kuzmuk
- alex&kuzmuk.com
-48129
- simplicityEngine Inc.
- David Kristensen
- david&simplicityengine.com
-48130
- Batscan / PL Trading AB
- Göran Krook
- gk&batscan.se
-48131
- "DEP Company" Ltd.
- Grishin Alexey
- grishin&dep.ru
-48132
- Sparebanken Vest
- Anders Lunde
- anders.lunde&spv.no
-48133
- McCullough-Solutions.NET
- Andrew McCullough
- andrew.mccullough&mccullough-solutions.co
-48134
- 8438757 Canada Inc D.B.A. Multifactor.net
- Kate Gray
- kgray&multifactor.net
-48135
- MOPIENS Inc.
- Myung-Joo Lee
- mjlee&mopiens.com
-48136
- GitLab
- John Northrup
- john&gitlab.com
-48137
- Billi Pty Ltd
- Adam Marriott
- adam.marriott&billi.com.au
-48138
- BillerudKorsnäs Skog & Industri AB
- Lise-Lotte Swing
- lise-lotte.swing&billerudkorsnas.com
-48139
- Krogle
- Jean-Francois Ageneau
- jf.ageneau&gmail.com
-48140
- mBank Hipoteczny SA
- Dawid Smoliński
- seb&mhipoteczny.pl
-48141
- first frame networkers ag
- IT Architecture Admin
- hostmaster&firstframe.net
-48142
- Digiton Systems LLC
- Aleksandr Sirotkin
- support&digiton.ru
-48143
- Aurum Europe B.V.
- Twan van der Schoot
- twan.van.der.schoot&aurumeurope.com
-48144
- Synermed Soluciones Medicas
- Claudio Baeza
- cl.baeza&gmail.com
-48145
- SNS Bank NV
- Mike Noonan
- mike.noonan&sns.nl
-48146
- FlyCAA
- Didier MBONEKUBE
- didier.mbonekube&caacongo.com
-48147
- The Warehouse Group Limited
- Anthony Gorecki
- anthony.gorecki&thewarehouse.co.nz
-48148
- Taos
- Christopher Crabtree
- ccrabtree&taos.com
-48149
- CybLab Ltd
- Stefano Sola
- support&cyblab-ltd.com
-48150
- simus systems GmbH
- Harald Kunze
- kunze&simus-systems.com
-48151
- Laryio
- Paul Arnold
- sysadm&laryio.com
-48152
- WishCert Co.
- Hyunjae Yoo
- y9769852&gmail.com
-48153
- xgp.ch
- G. P.
- iana-pen&xgp.ch
-48154
- XMW
- Woo Ram Jeong
- wrjeong&xmwinc.com
-48155
- Wuhan FiberHome International Technologies Co., LTD
- ZhangZheng
- zhangzheng2012&fiberhome.com
-48156
- Hypertech Solutions Pty Ltd
- Hamish Graham
- hamish&hypertechsolutions.com.au
-48157
- CIBRED SUD s.r.l.
- Carmelo Russo
- engineering&cibred.com
-48158
- cedric ltd
- cedric luneau
- cedricluneau&gmail.com
-48159
- NHS Property Services Ltd
- Gareth Tandridge
- gareth.tandridge&property.nhs.uk
-48160
- Stichting Regionale Radio Noord
- John Melet
- helpdesk&rtvnoord.nl
-48161
- TUI AG
- Ian Macro
- Directory&tui.com
-48162
- Torchmark Corporation
- Bradley Marrs
- brmarrs&torchmarkcorp.com
-48163
- abahlali
- Adrian Riaan
- adrianriaan458&gmail.com
-48164
- my-PV GmbH
- Dr. Gerhard Rimpler
- gerhard.rimpler&my-pv.com
-48165
- 1stPoint Communications, LLC
- Erik Levitt
- elevitt&1pcom.com
-48166
- Bayerische Staatsbibliothek
- Gregor Horstkemper
- horstkemper&bsb-muenchen.de
-48167
- Dr. Mohtaseb Cancer Center and Blood Disorders
- Brandie Carrington
- brandie&azcancerandblood.com
-48168
- SCPTime
- Xavier Bestel
- xavier.bestel&gorgy-timing.fr
-48169
- Bumps to Babes
- Jack Jiang
- jiang1095&hotmail.com
-48170
- Avaya Atlanta Lab
- Shane Artman
- artman&avaya.com
-48171
- Health Catalyst
- Nate Arnold
- administrator&healthcatalyst.com
-48172
- Speed Roam PTE LTD
- Deepthi Duggirala
- deepthi&speedroam.com
-48173
- Careum AG Bildungszentrum für Gesundheitsberufe
- Oliver von Wartburg
- oliver.vonwartburg&careum.ch
-48174
- Italian Pastafarian Church
- Salvo Enrico
- info&chiesapastafarianaitaliana.it
-48175
- Astronix Data Security Solutions
- Antonio N. Saygbe
- astronixt&gmail.com
-48176
- InnoEye LLC
- Rajeev Gupta
- rajeev&innoeye.com
-48177
- ZIGGO
- Jutta Galatenko
- jutta.galatenko&office.ziggo.nl
-48178
- Contargo GmbH & Co. KG
- Henrik Hanke
- hhanke&contargo.net
-48179
- Andreas Heigl
- Andreas Heigl
- iana&heigl.org
-48180
- Nial
- Andreas Påhlsson
- andreas&pahlsson.info
-48181
- pSenso sp. z o.o.
- Mariusz Żelażewski
- mariusz.zelazewski&psenso.com
-48182
- Terberg Group B.V.
- Rene van Stipriaan
- stipriaan&terberg.nl
-48183
- Phegda Technology Co.,Ltd.
- Tao Jin
- brody_tao&phegda.com
-48184
- Nanning OMARA Tech .inc
- gecheng wang
- bitgothic&163.com
-48185
- NeuLion, Inc.
- Frank Schoenberger
- frank.schoenberger&neulion.com
-48186
- Innere Mission München e.V
- Gerwin Miller
- gmiller&im-muenchen.de
-48187
- Nanjing Balance Network technology Co., Ltd
- Chen Shen
- shenchen&balance-net.com
-48188
- Delta Solutions LLC
- Ilya Smirnov
- i.smirnov&deltasolutions.ru
-48189
- SPRUT Technology Ltd
- Dmitriy Bukeev
- dbuk&sprut.ru
-48190
- mcccxxxvii.net
- Marcel Meyer
- iana-pen&mcccxxxvii.net
-48191
- Praten
- Andrew Okri
- andrew.okri&praten.co.uk
-48192
- SEPPmail AG
- Stefan Klein
- klein&seppmail.ch
-48193
- University of Pittsburgh Medical Center
- Ralph T. Moffat
- moffatrt&upmc.edu
-48194
- Alltec GmbH
- Mathis Graw
- mgraw&alltec-laser.com
-48195
- SISDEF Ltda.
- Alejandro Yachan
- ayachan&sisdef.cl
-48196
- Horvoje.net
- Hrvoje Lončar
- horvoje&gmail.com
-48197
- TECNIARK S.A.
- JUAN JOSE SANCHEZ
- jsanchez&tecniark.com.ar
-48198
- cryptofreek.org
- Cole Barnes
- colebarnes&gmail.com
-48199
- mVISE AG
- Thomas Lewandowski
- iana-requests&mvise.de
-48200
- LumenVox
- Nigel Quinnin
- NigelQuinnin&LumenVox.com
-48201
- CyberHound
- Bernd Jerzyna
- bernd.jerzyna&cyberhound.com
-48202
- Vekomy Technologies
- Sathyanarayanan Srinivasan
- sathya.narayanan.s&vekomy.com
-48203
- Obstreperus
- Sathyanarayanan Srinivasan
- sathya.narayanan.s&obstreperus.com
-48204
- Eisenmann SE
- Jörg Eddiks
- joerg.eddiks&eisenmann.com
-48205
- COLO21 AG
- Admin
- admin&colo21.com
-48206
- SRC Incorporated
- Sal Yurman
- syurman&srcinc.com
-48207
- University of Hull
- Shaun Miller
- shaun.miller&hull.ac.uk
-48208
- Axilspot Communication CO.,Ltd
- Huangyao
- daisy.qiu&axilspot.com
-48209
- AB Karl Hedin Sågverk Råvara
- Erik Sundström
- erik.sundstrom&abkarlhedin.se
-48210
- AB Karl Hedin Sågverk Biobränsle
- Erik Sundström
- erik.sundstrom&abkarlhedin.se
-48211
- Derome Skog AB
- Helena Andersson
- helena.andersson&derome.se
-48212
- Frödinge Skog AB
- Joakim Rosén
- joakim&frodingeskog.se
-48213
- COC AG
- Lars Schmidt
- hostmaster&coc-ag.de
-48214
- Master Class Corp
- Nicolay Oladov
- it&mk-profy.ru
-48215
- American Heart Association
- Corey Clements
- corey.clements&heart.org
-48216
- RADIANTECH, INC.
- Pin-Lin, Huang
- pinlinhuang&radiantech.com.tw
-48217
- codemanufaktur GmbH
- Vit Matousek
- sale&codemanufaktur.com
-48218
- Government of Manitoba
- Faren Chadney
- faren.chadney&gov.mb.ca
-48219
- Jackson Hewitt Tax Service Inc.
- Adam Murphy
- adam.murphy&jtax.com
-48220
- TPAX EU
- Jens Trach
- jens.trach&k-67.de
-48221
- Flopsar Technology
- Dariusz Sendkowski
- dsendkowski&flopsar.com
-48222
- Micro 100 Tool Corp
- Brett Hill
- technology&micro100.com
-48223
- Rauland-Borg Corporation
- Thomas Fuller
- thomas.fuller&rauland.com
-48224
- QIT Systeme GmbH & Co. KG
- Stefan Baur
- stefan.baur&qit-systeme.de
-48225
- Summonte
- Walter Summonte
- walter&summonte.com
-48226
- Sandåsa Timber AB
- Tina Gyllengahm
- tina.gyllengahm&sandasa.se
-48227
- AB Tutor
- Phil Hallows
- phallows&globemicro.com
-48228
- LLC "Tecon MT"
- Artem Dolgikh
- dolgih&tecon.ru
-48229
- Platina Systems, Inc.
- Jason Pang
- jason&platinasystems.com
-48230
- Montefiore Medicine
- John Wang
- jowang&montefiore.org
-48231
- Alvernia University
- Richard Reitenauer
- richard.reitenauer&alvernia.edu
-48232
- Platinum Home Mortgage Corporation
- Network Administrator
- netadmin&phmc.com
-48233
- IceMobile Agency BV
- Rutger van Bergen
- rutger&icemobile.com
-48234
- Netronics Technologies Inc.
- Claire Winfield
- clairew&netronics-networks.com
-48235
- LinkXess GmbH
- Christian Marhoff
- c.marhoff&linkxess.de
-48236
- Zschimmer & Schwarz GmbH & Co KG
- Ingo Junker
- i.junker&zschimmer-schwarz.com
-48237
- SOFTEL Corp.
- Igor Kovalev
- ikov&softel.ru
-48238
- Optima Tours GmbH
- Silvio Šverko
- silvio&optimatours.de
-48239
- Non-public JSC "Krasnaya polyana"
- Evgeniy Belokon
- it&karousel.ru
-48240
- senselan gmbh
- Martin Kolly
- martin.kolly&senselan.ch
-48241
- Neptune and Company, Inc.
- Seth Sanchez
- ssanchez&neptuneinc.org
-48242
- Serban Nistor
- Serban Nistor
- serban.nistor&gmail.com
-48243
- Mindit Services
- Serban Nistor
- serban.nistor&mindit.ro
-48244
- Quantic Vision, S.A.
- Luis Bethancourt
- luis.bethancourt&quanticvision.com
-48245
- Atlas Air
- timothy cochrane
- timothy.cochrane&atlasair.com
-48246
- Mission Microwave Technologies, Inc
- Chad Deckman
- chad&missionmicrowave.com
-48247
- CENTRAL PARK HEMATOLOGY & ONCOLOGY, P.C.
- David Halvorsen
- david&cpho.com
-48248
- innoTel Pty Ltd
- Andrew Sims
- info&innotel.com.au
-48249
- Rohe Automation
- Georgi Pangev
- office&rohe-auto.com
-48250
- 中国广东省深圳市核达中远通电源技术有限公司 (Shenzhen City, Guangdong Province, China COSCO through Nuclear Power Technology Co., Ltd.)
- 谢先生 (xiejiangbo)
- xiejiangbo&vapel.com
-48251
- Liskl Networks, Inc
- Loren Lisk
- loren.lisk&liskl.com
-48252
- Ecole CentraleSupelec
- Renaud MONNET
- Renaud.Monnet&CentraleSupelec.fr
-48253
- OpusV
- Mark Taylor
- mark&opusv.com.au
-48254
- Shaanxi XinTong Intelligent Technology Co., Ltd.
- zhaoyu jia
- jiazy&xaxintong.com
-48255
- DiaSys Diagnostic Systems GmbH
- Alexander Schwarz
- a.schwarz&diasys.de
-48256
- NISHANT.BIZ
- NISHANT KUMAR
- NISHANT.ORG&GMAIL.COM
-48257
- Comoretel
- Eric Lackore
- elackore&comoretel.com
-48258
- SourceClear
- Pete Kocks
- operations&srcclr.com
-48259
- R+V Allgemeine Versicherung AG
- Axel Panten
- axel.panten&ruv.de
-48260
- Guangzhou iplook network technologies Co.,Ltd.
- Yong Liang
- liangyong&iplooknetworks.com
-48261
- Callison Networking Company
- Christopher Callison
- chris&callison.org
-48262
- Tricentis GmbH
- Heike Artner
- h.artner&tricentis.com
-48263
- Noble Markets, LLC
- Jason Frisvold
- jason&noblemarkets.net
-48264
- Mairie de Saint-Maur-des-Fossés
- Julien Huon
- admin&mairie-saint-maur.com
-48265
- Assembly Data System S.p.a.
- Matteo Patrignanelli
- matteo.patrignanelli&assembly.it
-48266
- Mainmetall GmbH & Co. KG
- Nils Berberich
- nbe&mainmetall.de
-48267
- Phexonite
- Arsslen Idadi
- arsslens021&gmail.com
-48268
- c13 LLC
- Arturo Dumas
- dumas&c13.us
-48269
- Info-Tech Research Group
- PKI Admin
- iana-pen&infotech.com
-48270
- MiroNet AG
- Mathias Seiler
- noc&mironet.ch
-48271
- AITelecom S.A. de C.V.
- Fernando Rodriguez
- frod&aitelecom.net
-48272
- Examination Management Services, Inc.
- Infrastructure Manager
- infrastructure&emsinet.com
-48273
- Computer Health
- Michael Cameron
- msp&chcorp.ca
-48274
- Saxion University of Applied Sciences
- Kick Molenveld
- k.molenveld&saxion.nl
-48275
- SingularIT Solutions
- Jean-Marc Lavoie
- pen&singularitsol.com
-48276
- BNP Paribas Fortis SA (Belgian UEN: 0403.199.702)
- Fréderic Huygens (Global Security)
- frederic.huygens&bnpparibasfortis.com
-48277
- Topway Network Engineering Co., Ltd.
- Jianqing Tang
- tjianqing&qq.com
-48278
- Twowing Technologies
- king zhu
- king&twowing.com
-48279
- Institut für Steuerungstechnik der Werkzeugmaschinen und Fertigungseinrichtungen, Universität Stuttgart
- Felix Kretschmer
- felix.kretschmer&isw.uni-stuttgart.de
-48280
- R-Platforma LLC
- Dmitriy Baturin
- info&rosplatforma.ru
-48281
- Khipu
- Emilio Davis
- emilio.davis&khipu.com
-48282
- The Situs Companies
- Ryan Young
- Ryan.Young&situs.com
-48283
- ZI-Argus
- Nicholas Farrugia
- Nicholas.Farrugia&zi-argus.com
-48284
- in2ip BV
- Dirk-Jan Wemmers
- dirkjan&in2ip.nl
-48285
- Mary Street Wellness
- Oliver Frye
- webmaster&marystreetwellness.com.au
-48286
- NewsUK
- Pankaj Pratap Singh
- pankaj.singh&news.co.uk
-48287
- 中电和瑞科技有限公司 (China Electronics Harvest Technology Co., Ltd.)
- 林志伟 (Lin Zhiwei)
- linzw&cechr.com.cn
-48288
- Health-net 2020 GmbH
- Arno Krzywon
- krzywon&health-net.at
-48289
- Connect2 Systems Limited
- Steve Rutherford
- steve&connect2.io
-48290
- Óbuda University
- Levente Németh
- nemeth.levente&kvk.uni-obuda.hu
-48291
- CTOUCH Europe B.V.
- Rick van Dijk
- pm&ctouch.eu
-48292
- Michigan Education Association
- Darryl Castillo
- dcadmin&mea.org
-48293
- Utica College
- David Parker
- network&utica.edu
-48294
- Personal Genome Diagnostics, Inc.
- Matthew Riedel
- mriedel&personalgenome.com
-48295
- UNess Smart Home and Living
- Bas Sanders
- bas.sanders&com1.nl
-48296
- Montgomery Blair High School
- Peter Hammond
- Peter_A_Hammond&mcpsmd.org
-48297
- Chillout
- Maxim Tkachenko
- tkacenko.maxim&gmail.com
-48298
- Health Choice Management Company
- Firas Matti
- HCH_ISNetworkSecurity&iasishealthcare.com
-48299
- Koninklijke Nederlandse Dambond
- Martijn van der Klis
- martijnvdklis&gmail.com
-48300
- ComSource s.r.o.
- Ales Lednej
- ales.lednej&comsource.cz
-48301
- NathanNet
- Næþ'n Lasseter
- nathannet&4574.co.uk
-48302
- Big Neptune
- Matthew Walker
- matthew&bigneptune.com
-48303
- 0x0f
- Simon Wachter
- ops&0x0f.org
-48304
- American Financial Group Inc
- Charles Peters
- afgit&amfin.com
-48305
- APRA-OPTINET Sp. z o. o.
- Jakub Kaczmarek
- j.kaczmarek&apra-optinet.pl
-48306
- Gentofte Kommune
- Martin Arnoldi
- arno&gentofte.dk
-48307
- Continental Electronics
- Joshua Moore
- license&contelec.com
-48308
- Argeo GmbH
- Mathieu Baudier
- mbaudier&argeo.org
-48309
- Fuji IT Co.,Ltd.
- SHIGERU SUDA
- suda-shigeru&fujielectric.com
-48310
- BLOBFISH E.I.R.L.
- Jaime Hablutzel Egoavil
- jaime&blobfish.pe
-48311
- Northcloak Corporation
- Juli Mallett
- juli&northcloak.com
-48312
- Avid Integration Technologies
- Toby Napier
- service&avidintegrationtechnologies.com
-48313
- Not for Radio, LLC
- Patrick Kelsey
- pat.kelsey&notforadio.com
-48314
- ESA Elektroschaltanlagen Grimma GmbH
- Steffen Löb
- pki&esa-grimma.de
-48315
- Documenta S.A.
- André L'Hereux
- comunicaciones&documenta.com.py
-48316
- Berliner Verkehrsbetriebe
- Evelyn Thiel
- evelyn.thiel&bvg.de
-48317
- PedFast Technologies
- John F. Tamburo
- johntam&pedfast.com
-48318
- Beijing NationSky Network Technology Co., Ltd
- Weining Ma
- weining.ma&nationsky.com
-48319
- 911 Datamaster, Inc.
- Babu Cherian
- babuc&911datamaster.com
-48320
- Xhesi
- Xhesi Galanxhi
- xhesi.galanxhi&outlook.com
-48321
- Metroswitch Technologies, Inc.
- Chris Fogel
- chris.fogel&metroswitch.net
-48322
- Surfilter Network Technology Co.,Ltd
- David Lee
- lichangqing&1218.com.cn
-48323
- Altaire Ltd
- Nathan Baum
- nathan&altaire.com
-48324
- 2test
- Mikhail Sokolov
- m.sokolov&2test.ru
-48325
- Tesco Europe
- Pavel Vagner
- wintel&cz.tesco-europe.com
-48326
- Vänerbränsle AB
- Rodica Rosca
- rodica.rosca&vanerbransle.se
-48327
- Johnson Controls Inc.
- Justin Watts
- Justin.Watts&jci.com
-48328
- Veritas Technologies LLC
- Xiaowei Deng
- clare.deng&veritas.com
-48329
- OJSC "MINSK TRACTOR WORKS"
- Dmitry Pogorelov
- mtz_adm&belarus-tractor.com
-48330
- Nationalmuseet
- Bjarke Schaar
- bjarke.schaar&natmus.dk
-48331
- SKTB "SKiT"
- Alexander Meshkov
- meshkov.av&skitlab.ru
-48332
- Callans Trä AB
- Christian Jacobson
- christian&callanstra.se
-48333
- Koolsign Co., LTD
- MoonSeok Cho
- mscho&koolsign.net
-48334
- Bank of the South
- James Brammer
- IANA&bankofthesouth.com
-48335
- RealPage, Inc.
- Sloan Ozanne
- infosechelpdesk&realpage.com
-48336
- Abrumet
- Filoretta Velica
- filoretta.velica&abrumet.be
-48337
- TD Avidis LLC
- Pereverzev Sergey
- support&avidis.kiev.ua
-48338
- Orion Power Systems
- Robert Bridenbaugh
- rebriden&orionpowersystems.com
-48339
- Seldiame Software
- Olaf Hernandez Beristain
- olaf&seldiame.net
-48340
- Public Sector Pension Investment Board
- IT Infrastructure
- dlgDistList-Infra-Certificates&investpsp.ca
-48341
- DevLounge
- Nicola Delle Foglie
- nicola.dellefoglie&devlounge.it
-48342
- Ransnet Singapore Pte Ltd
- Ben Hau
- benhau&ransnet.com
-48343
- Industrial Bank of Kuwait
- Mr. Mustafa Gangardiwala
- g_mustafa&ibkuwt.com
-48344
- SHW Automotive GmbH
- Georg Erhard
- georg.erhard&shw.de
-48345
- IP-Lease BV
- Frank Kuipers
- frank.kuipers&ip-lease.com
-48346
- Elan Audio
- Rob Parker
- Rob&elan.com.au
-48347
- OHB System AG
- Domenic Abb
- domenic.abb&megatel.de
-48348
- Medcomsoft Ltd.
- Sergey V. Sergeev
- sergeev&echo1.ru
-48349
- The Scale Factory Ltd
- Jack Thomas
- jack&scalefactory.com
-48350
- Serco Inc.
- Frank Vona
- frank.vona&serco-na.com
-48351
- Beijing Coconet Corporation
- tao zhang
- hr&coconet.cn
-48352
- Levantis AG
- Patrik Hurni
- lizenzen&levantis.ch
-48353
- Neosecure S.A
- Ricardo Perez
- rperez&neosecure.com
-48354
- Qiy Foundation
- Bram Neuteboom
- webmaster&qiyfoundation.org
-48355
- General Motors
- Ken Peirce
- Ken.Peirce&gm.com
-48356
- Salerno Data LLC
- Steven Salerno
- noc&salernodata.com
-48357
- Skogsägarna Mellanskog Ek För
- Ian von Essen
- ian.vonessen&mellanskog.se
-48358
- Hobbylook
- Ahmad Tubaishat
- Ahmadtubishat&live.com
-48359
- Infosec (T) LTD
- Joel Wilson
- joel.wilson&infosec.co.tz
-48360
- Sakura City
- Satoshi Atsuta
- jyosys&city.sakura.lg.jp
-48361
- Kpnetworks Ltd.
- Naonobu Yamamoto
- info&kpnetworks.jp
-48362
- IndraStra Global
- Rahul Guhathakurta
- info&indrastra.com
-48363
- ResoNetz Airfolc Inc.
- Yutaka Nakai
- nakai&airfolc.co.jp
-48364
- SNAL
- Romuald Squarzoni
- oid&albus.fr
-48365
- QWERTY Concepts Inc
- Jimmy Kaytovich
- jimk&qwertyc.com
-48366
- DriveScale, Inc.
- Tom Lyon
- pugs&drivescale.com
-48367
- GOTrust Technology Inc.
- Lawrence Lee
- lawrencelee&go-trust.com
-48368
- Beijing Zrinc Technologies Co., Ltd.
- Xiuqin Yao
- it&zrinc.cn
-48369
- Falcon Technologies LTD
- Boaz Dovev
- boaz&edig.co.il
-48370
- NMB PLC
- Joel W. Kazoba
- joel.kazoba&nmbtz.com
-48371
- Long-Distance Communication Branch
- Igor Zinchuk
- izin68&gmail.com
-48372
- MicroStep - HDO s.r.o.
- Michal Liziciar
- mliziciar&microstep-hdo.sk
-48373
- Kamago
- Grégory Oestreicher
- greg.iana&kamago.net
-48374
- Polarteknik Oy
- Mr. Mika Korhonen
- mika.korhonen&pmcpolarteknik.com
-48375
- Igepa Paper Hungary Kft.
- Stankóczi László
- l.stankoczi&igepa.hu
-48376
- MimerCon
- Michael Buchardt
- mhb&mimercon.dk
-48377
- Linefactory
- Peter Philips
- support&linefactory.net
-48378
- Zwise s.a.
- Martin Lamote
- martin.lamote&zwise.eu
-48379
- Camelot Global
- George Adamopoulos
- devops-support&camelotglobal.com
-48380
- Newbridge Technologies Int. Ltd.
- Kenny Khoo
- kenny&newbridgewireless.net
-48381
- BLS AG
- Lorenz Heusser
- lorenz.heusser&bls.ch
-48382
- Case Tecnologia Ltda
- Fernando Brunelli Costa
- fernando&casetecnologia.com.br
-48383
- McKinsey & Company
- Tyson Grassing
- tyson_grassing&external.mckinsey.com
-48384
- STAPRO SLOVENSKO s.r.o.
- Adrian Petrik
- petrik&stapro.sk
-48385
- Audax Electronics Corporation
- Marco Tramujas
- audax.usa&gmail.com
-48386
- MJ Technical Solutions, LLC
- Jon McCombs
- Jon.McCombs&mjtsolns.com
-48387
- Japan Airlines Co.,Ltd.
- Kazuhiko Fujiwara
- kazuhiko.fujiwara&jal.com
-48388
- EIDISTA
- Fermin Latas
- fermin.latas&eidista.com
-48389
- TakumiVision Co.,LTD.
- Takashi Nakanishi
- office&takumivision.co.jp
-48390
- Bottomline Technologies
- Derik Bibb
- dbibb&bottomline.com
-48391
- photicsensing
- Bruce.Wang
- wx89489&163.com
-48392
- FilmLight Ltd
- Andy Moseley
- hostmaster&filmlight.ltd.uk
-48393
- SDxLab
- Kenny Khoo
- kenny&sdxlab.com
-48394
- br.Svensson Skog AB
- Martin Svensson
- martin&brsvensson.com
-48395
- Qimtronics
- Achmad Anugrah
- achmad.anugrah&qimtronics.com
-48396
- Sood sales
- Akshay Sood
- soodsales&outlook.com
-48397
- Joma-Polytec GmbH
- Peter Rist
- peter.rist&joma-polytec.de
-48398
- Paranoidlabs
- Gregor Reitzenstein
- gregor.reitzenstein&paranoidlabs.org
-48399
- Kassenaerztliche Vereinigung Sachsen
- Volker Hanisch
- edvsupport&kvsachsen.de
-48400
- Bjernareds Sågverk AB
- Janet Fredriksson
- janet&bjernared.se
-48401
- AJ Vaccines
- Jacob Riedel
- jacob.riedel&devoteam.com
-48402
- Konica Minolta Business Solutions Czech, spol. s r.o.
- Sebastian Bušek
- sebastian.busek&konicaminolta.cz
-48403
- PEQ Services
- Pekka Pietikäinen
- hostmaster&peq.fi
-48404
- Korbank S.A.
- Konrad Kreciwilk
- noc&k.pl
-48405
- Orbiss Ltd
- Will Colwyn
- systems&orbiss.co.uk
-48406
- swisspro Solutions AG
- Daniel Kasper
- daniel.kasper&swisspro.ch
-48407
- Open Applications Ltd
- Nigel Hanlon
- nigel.hanlon&openapp.ie
-48408
- Flint International Limited
- Joseph Dunne
- joseph.dunne&flintmail.com
-48409
- SHENZHEN PHOTON BROADBAND TECHNOLOGY CO., LTD
- Xiangshan Yi
- xiangshan_yi&photonbroadband.com.cn
-48410
- COLEGIO ESTADUAL EURICO BATISTA ROSAS
- WILLIAM GERRIT LOS JUNIOR
- wjr&williamjunior.com.br
-48411
- AB Maa Såg
- Anneli Andelen
- Anneli&maa.se
-48412
- CCEE
- Marcelo Molina
- marcelo.molina&ccee.org.br
-48413
- NSF International
- Montana Arble
- marble&nsf.org
-48414
- Line34 Telefonia e Computação
- Alessandro Jorge Correa
- alessandro.correa&line34.com.br
-48415
- IBM (group CloudMatrix)
- David Jimenez
- jimenez&us.ibm.com
-48416
- Bell Canada
- Frederic Bonin
- frederic.bonin&bell.ca
-48417
- GLCMI Internal Shared Services
- Justin Sabourin
- justin.sabourin&gwl.ca
-48418
- ANF AC United Kingdom, LTD.
- Florencio Díaz
- fdiaz&anf.es
-48419
- Marcia Slosson, MS, LAC, MAC
- Marcia Slosson
- marciaslossonmslacmac&gmail.com
-48420
- Meraskog i Jämtland AB
- Mikael Mattsson
- mikael&meraskog.com
-48421
- Hematology Oncology Associates of Central New York
- Brian Barker
- bbarker&hoacny.com
-48422
- Tech Futures Interactive Inc.
- Andrew Gee
- agee&techfutures.co
-48423
- Enli Health Intelligence
- Matthew Wilson
- mwilson&enli.net
-48424
- Insatech A/S
- René Nielsen
- rbn&insatech.com
-48425
- isboom.com
- Esa Ääpälä
- aapala&gmail.com
-48426
- Lambda Tech Ltd
- Joseph Dunne
- iana&lambda.tech
-48427
- Budget Insight
- Messager Jean-Pierre
- jpmessenger&budget-insight.com
-48428
- MFA Russia
- Dmitry Klimentiev
- kda&mid.ru
-48429
- BELADACI CONSULTING, LLC
- STEPHANE BELADACI
- STEPHANE&BELADACI.ORG
-48430
- Pro-Digital Projetos Eletronicos Ltda
- Marco Antonio de Paula Tramujas
- pro2&prodigital.com.br
-48431
- NetStable, LLC
- Julian Yates
- julian&netstablellc.com
-48432
- 广州程星通信科技有限公司(Guangzhou Starway Communication Technology Co., LTD)
- 袁先生(yuan huangxing)
- huangxing.yuan&starwaycomm.com
-48433
- Wuxi Broadlan Telecommunication Technology Co.,Ltd
- Alan Song
- wxbrtx&163.com
-48434
- praclear
- Christian Brenner
- chr.bre&outlook.com
-48435
- Wuxi Neihua Network Technology Co.,(NHN)
- Alan Song
- songrr&leihua.com
-48436
- Siemens AG - Transmission Solutions
- Jochen Schaefer
- jochen.schaefer&siemens.com
-48437
- Ikano Bank
- Henrik Klinkvort
- hkl&ikano.dk
-48438
- Trätransporter i Norrbotten AB
- Mattias Markström
- mattias.markstrom&bdx.se
-48439
- Schönfelder Papierfabrik GmbH
- Frank Liebig
- frank.liebig&schoenfelder-papierfabrik.de
-48440
- 2mt Software GmbH
- Michael Wallner
- mw00&2mt-software.de
-48441
- Gridco Systems
- Guruprasad Kulkarni
- gkulkarni&gridcosystems.com
-48442
- Frankonia Handels GmbH & Co. KG
- Simon Gottschlich
- sgottschlich&frankonia.de
-48443
- Verticali LLC
- Andrey Zhelezin
- a.zhelezin&verticali.ru
-48444
- Stefano Canepa
- Stefano Canepa
- stefano&canepa.ge.it
-48445
- Digital Security
- Stéphane Jourdois
- stephane.jourdois&digitalsecurity.fr
-48446
- Slottstornet AB
- Victoria Eriksson
- victoria.eriksson&slottstornet.se
-48447
- Verizon Labs
- Vlabs
- jayaraj.wilson&intl.verizon.com
-48448
- Bricata, LLC
- Paul Casto
- pcasto&bricata.com
-48449
- Harvard Computer Society
- Frederick Widjaja
- fwidjaja&hcs.harvard.edu
-48450
- Timmerkörarna i Norrland AB
- Stefan Nordström
- stefan.nordstrom&timmerkorarna.se
-48451
- Fuzhou In&Pro Information Technology Co., Ltd
- inpro sysop
- inpro.sysop&gmail.com
-48452
- ANF Certification Authority USA, Corp.
- Florencio Diaz
- fdiaz&anf.es
-48453
- Riddarhusförvaltningen Fr Emilie Pipers Donationsfond
- Victoria Eriksson
- victoria.eriksson&skogstjanst.se
-48454
- Riddarhuset O G Paulis Donationsfond
- Victoria Eriksson
- victoria.eriksson&skogstjanst.se
-48455
- Linköpings Skogstjänst AB
- Victoria Eriksson
- victoria.eriksson&skogstjanst.se
-48456
- Wasatornet AB
- Victoria Eriksson
- victoria.eriksson&skogstjanst.se
-48457
- KaX Pvt. Ltd
- Samohan Kumar
- kaxpvtltd&gmail.com
-48458
- Otsuka America Pharmaceutical, Inc.
- David Sullivan
- david.sullivan&otsuka-us.com
-48459
- Condast GmbH
- Frank Brieger
- frank.brieger&condast.de
-48460
- Rotronic AG
- Bruno Niklaus
- bruno.niklaus&rotronic.ch
-48461
- StudentBridge LLC
- Sergii Koval
- skoval&studentbridge.com
-48462
- Insight media Devlopment.
- Khandoker Golam Morsheed
- gmorsheed&gmail.com
-48463
- Fitworks Co., Ltd.
- Hisaaki Takeuchi
- iana&fit-works.co.jp
-48464
- ANF AC Panamá, S.R.L.
- Florencio Díaz
- fdiaz&anf.es
-48465
- Gestión Tributaria Territorial, S. A.
- José Joaquín Callado Leal
- jcallado&gtt.es
-48466
- Chambre des Députés Luxembourg
- Nicolas Dubois
- chdcontact&chd.lu
-48467
- Imperial College Healthcare
- Yusuf Mangera
- yusuf.mangera&imperial.nhs.uk
-48468
- Lianozovo Electromechanical Plant
- Rinat Gadelshin
- gadelshin.r.n&topaz-atcs.com
-48469
- Cancer Care Specialists
- Wesley Falconer
- wesley.falconer&etransmedia.com
-48470
- Örnfrakt
- Jan-Eric Lindberg
- jan-eric.lindberg&ornfrakt.se
-48471
- British Amateur Television Club
- Philip Crump
- phil&philcrump.co.uk
-48472
- swissEmbedded GmbH
- Dr. Daniel Haensse
- info&swissembedded.com
-48473
- mh2net, z.s.
- Radim Horak
- radim.horak&mh2net.cz
-48474
- Klynt Industries
- Dave McCarthy
- dave&klynt.com
-48475
- SIA Rigas udens
- Andris Smits
- andris.smits&rigasudens.lv
-48476
- Zen Swipe, Inc.
- Eric Lee
- webmaster&zenswipe.com
-48477
- Nuix North America Inc
- Justin Capella
- justin.capella&nuix.com
-48478
- Hainan Goodstart Network Technology Co. Ltd.
- gong ze
- gongze&goodstart.com.cn
-48479
- Sunshine Sugar
- William Wood
- itregistrations&sunshinesugar.com.au
-48480
- finally safe GmbH
- Dominique Petersen
- infra&finally-safe.com
-48481
- Falu Energi & Vatten AB
- Daniel Ahlberg
- daniel.ahlberg&fev.se
-48482
- Linaro Ltd
- Dave Pigott
- dave.pigott&linaro.org
-48483
- RecordSure Ltd.
- Jacint Toth
- jacint.toth&recordsure.com
-48484
- topsystem Systemhaus GmbH
- Karl-Heinz Gross
- khg&topsystem.de
-48485
- ITEC Training Solutions Ltd
- Simon Watts
- s.watts&itecskills.co.uk
-48486
- Salzbrenner Media
- Thomas Baier
- t.baier&salzbrenner.com
-48487
- Veropharm
- Alexandr Simonov
- simonov&veropharm.ru
-48488
- ACS International Schools Ltd.
- Graham Mayers
- gmayers&acs-schools.com
-48489
- ANF AC Chile, Ltda.
- Florencio Díaz
- fdiaz&anf.es
-48490
- Bundesministerium fuer Land- und Forstwirtschaft, Umwelt- und Wasserwirtschaft
- Georg Estelmann
- georg.estelmann&bmlfuw.gv.at
-48491
- Strategic Information Technology Ltd.
- William MacDonald
- billm&stratinfotech.com
-48492
- Zequenze
- Erasmo Zubillaga
- erasmo&zequenze.com
-48493
- Naltagrett
- Jorgen Bjorck
- naltagrett&gmail.com
-48494
- Lockstep Technologies
- Stephen Wilson
- swilson&lockstep.com.au
-48495
- Alm. Brand A/S
- Rene B. Rosenbeck-Larsen
- it.sikkerhed&almbrand.dk
-48496
- LOTS Group AB
- Fredrik Hjelm
- Fredrik.hjelm&lotsgroup.com
-48497
- VIDA Energi AB
- Magnus Linnér
- magnus.linner&vida.se
-48498
- VIDA Skog AB
- Magnus Linnér
- magnus.linner&vida.se
-48499
- inovex GmbH
- Jan Gehring
- jan.gehring&inovex.de
-48500
- Ventilatorenfabrik Oelde GmbH
- Detlef Wilmsen
- detlef.wilmsen&venti-oelde.de
-48501
- Wilmers Messtechnik GmbH
- Hans Wilmers
- hans&wilmers.no
-48502
- Startups, Inc.
- Shilles Steven Albert
- steven&startupsinc.co
-48503
- Magrathea Laboratories e.V.
- Sven Reißmann
- sven&0x80.io
-48504
- Pulselight Inc
- Stuart Jarriel
- sjarriel&pulselight.com
-48505
- AI2Co
- Peter Lasker
- P.Lasker&AI2Co.nl
-48506
- Tunnel Radio of America
- Carlo McKee
- carlo.mckee&tunnelradio.com
-48507
- o-byte.com GmbH & Co. KG
- Martin Weiß
- info&o-byte.com
-48508
- Trapeze-Elgeba GmbH
- Lars Hantschmann
- lars.hantschmann&trapezegroup.com
-48509
- add solution GmbH
- Alberto Mancheno Sanchez
- alberto.mancheno&add-solution.de
-48510
- Grand Rapids Adventist Academy
- Christian McDonald
- admin&graa.com
-48511
- ApeComm Sdn. Bhd.
- Farhah Kamaruzzaman
- farhah.zm&gmail.com
-48512
- Inspur Group Co.,Ltd.
- Fairy Sun
- sunfl&inspur.com
-48513
- Owari Precision Products (India) Pvt.Ltd.
- Man Mohan Kumar
- mmkumar&oppi.ttp.co.in
-48514
- Warkdag AS
- Mirko Klaus Ansgar Tasler
- mirko&tasler.net
-48515
- PACE POWER SYSTEMS PVT LTD
- Basavaraja BR
- basavaraja.br&pacerenewables.com
-48516
- Duerr IT Service GmbH
- Jan Skowron
- Jan.Skowron&durr.com
-48517
- Locatel Flotas, S.L.
- Juan Carlos Mendez
- jcmendez&locatel.biz
-48518
- BYOM Electronics LLC
- Oleg Morozov
- byom&omino-board.com
-48519
- St. Bernards Medical Center
- Kevin Hawley
- khawley&sbrmc.org
-48520
- ADISTA SAS
- Marquet Yannick
- ymarquet&adista.fr
-48521
- nCentric Europe BVBA
- Robin Leblon
- robin.leblon&ncentric.com
-48522
- Elisa Eesti AS
- Elisa Eesti
- aqnomail&icloud.com
-48523
- ALTEC S.p.A.
- Carmelo Manetta
- carmelo.manetta&altecspace.it
-48524
- Ping Communication (Switzerland) AG
- Markus Goetsch
- mg&pingcom.net
-48525
- SnapServ Ltd
- Pascal Mathis
- pascal.mathis&snapserv.net
-48526
- Twilio
- Seth Hardiman
- shardiman&twilio.com
-48527
- LEGO System A/S
- Simon Clausen
- simon.clausen&lego.com
-48528
- IT Niedersachsen
- Frank Meyer
- frank.meyer&it.niedersachsen.de
-48529
- MediaSift Ltd
- Gareth Llewellyn
- gareth&datasift.com
-48530
- OOO "TIUS"
- Sergey Mikhaylin
- info&tius-project.ru
-48531
- FIS
- Mark Kaczorowski
- mark.kaczorowski&fisglobal.com
-48532
- Inlandsfrakt AB
- Carina Kristoffersson
- carina.kristoffersson&inlandsfrakt.se
-48533
- Sony Mobile Communications AB
- Security & Enterprise
- DL-SELD-securityenterprise&sonymobile.com
-48534
- FIT Networks
- Oscavo Prata
- oscavo&fitnetworks.com.br
-48535
- Blue Ridge Concepts, Inc.
- Robert M. Gregory, Jr.
- gregory&BlueRidgeConcepts.com
-48536
- Hochschule Aschaffenburg
- Tony Ziroff
- teamrz&h-ab.de
-48537
- Defense Information Systems Agency
- David Wagner
- david.s.wagner.ctr&mail.mil
-48538
- ServerCentral
- Andrew Meyer
- ameyer&servercentral.com
-48539
- ED&F Man Capital Markets
- Timothy Perry
- tperry&edfmancapital.com
-48540
- ED&F Man Capital Markets
- Timothy Perry
- tperry&edfmancapital.com
-48541
- BWAY S.r.l.
- Claudio Botta
- claudio.botta&bway.it
-48542
- Chromatic Inc.
- Stephen Quebe
- stephen&chromatic.ai
-48543
- Procesar, S.A de C.V
- Jorge Sánchez
- jsanchez&procesar.com
-48544
- TV-Teknik Jonas Hermansson
- Jonas Hermansson
- jonas&tvteknik.se
-48545
- Triona AB
- David Lundgren
- david.lundgren&triona.se
-48546
- Hans Andersson Recycling AB
- Claes Dahlberg
- claes.dahlberg&hansandersson.se
-48547
- Public Technical Identifiers
- Punky Duero
- punky.duero&icann.org
-48548
- Harbin Yantuo Science and Technology Development Co.,Ltd
- Minglin lee
- superlml&163.com
-48549
- 广州阜月软件有限公司 (Guangzhou fuyue Software Co. Ltd.)
- Ansion
- 1572309495&qq.com
-48550
- Beijing Redlink Information Technology Co., Ltd.
- Zhao Zhiquan
- zhaozhiquan&redlink-tech.com
-48551
- Profound Solutions
- Olesov Peter
- peter&profound.ru
-48552
- ShangHai 30wish information security Limited
- wuchong
- wuc_sh&30wish.net
-48553
- Duet Asset Management Ltd
- Davide Ronchi
- iana-pen&duetgroup.net
-48554
- Church Pension Group Services Corporation
- Clayton Crawley
- PrivateEnterpriseNumber&cpg.org
-48555
- STORMATRIX, Inc.
- Mark Mays
- mark.mays&stormatrix.com
-48556
- bellaflora Gartencenter GmbH
- Thomas Hartl
- it&bellaflora.at
-48557
- OOO LOYALTY PROGRAM Koshelek
- Evgeny Ermakov
- e.v.ermakov&yandex.ru
-48558
- Trinity Grammar School
- Mitchell Richters
- mrichters&trinity.nsw.edu.au
-48559
- Rosenberger Technology (Kunshan) Co., Ltd
- Guozhenjie
- guozhenjie&rosenbergerap.com
-48560
- Almnäs Bruk AB
- Simon Bylund
- sb&almnas.com
-48561
- Munksjö Paper AB
- Maria Andersson
- maria.andersson&munksjo.com
-48562
- KENDRIS AG
- Sacha Verwaaijen
- software&kendris.com
-48563
- ANEXIA Internetdienstleistungs GmbH
- Stephan Peijnik
- speijnik&anexia-it.com
-48564
- Autoland Deutschland Inh. Wilfried Wilhelm Anclam, e. K.
- Mario Neubert
- neubert&autoland.de
-48565
- NEUBERT-IT Inh. Mario Neubert
- Mario Neubert
- mn&neubert-it.de
-48566
- Guangzhou Shirui Electronics Co., Ltd.
- ChenWeilin
- chenweilin&cvte.com
-48567
- LINET Group SE
- Petr Kraus
- petr.kraus&linet.cz
-48568
- First Orion LLC
- Keith Rogers
- krogers&privacystar.com
-48569
- Midland States Bancorp, Inc
- Tim Krampe
- tkrampe&midlandsb.com
-48570
- sn3rd llc
- Sean Turner
- iana-pen&sn3rd.com
-48571
- Istanbul Teknik Universitesi (ITU)
- Can Sirin
- sistemdestek&itu.edu.tr
-48572
- Vanti
- Mike Brooman
- hello&vanti.co.uk
-48573
- C-Hack
- Web Master
- webmaster&c-hack.de
-48574
- Quanergy Systems, Inc
- IT Administrator
- support&quanergy.com
-48575
- Experts Enterprises.
- Sandeep Kumar
- sandeep180782&gmail.com
-48576
- GTBilt
- Carlos Alvarez
- tech&gtbilt.com
-48577
- Fail-Safe IT Solutions Oy
- Mikko Kortelainen
- mikko.kortelainen&fail-safe.net
-48578
- Shenzhen KSTAR Science and Technology Co., Ltd
- xiao tian
- xiaott&kstar.com.cn
-48579
- BOMAR, spol. s r.o.
- Christian Dergovics
- iana-pen&bomar.cz
-48580
- Continuity Logic LLC
- Casey Friese
- casey.friese&continuitylogic.com
-48581
- Changhong Network Tech.
- Yongjun Rao
- yongjun.rao&changhong.com
-48582
- GSK #11 Gradskiy
- Konstantin M. Khankin
- hc&gsk11.ru
-48583
- HTWNET Information Technology Services
- Weber, Helge Thorsten
- info&htwnet.de
-48584
- CineLab
- Evgeny Ischenko
- cert&cinelab.ru
-48585
- jiangsu broadcasting cable information network corporation limited suzhou branch
- zhaofeng chen
- 280446991&qq.com
-48586
- KUNDOXT GmbH
- Andre Binnig
- andrebinnig&aol.com
-48587
- Ring2 Communications LLC
- Oleksiy Pavlenko
- oleksiy.pavlenko&loopup.com
-48588
- Capgemini Next Generation Platform
- A.J.A.M. (Rob) van Eerd
- rob.van.eerd&capgemini.com
-48589
- Tallink Grupp AS
- Juhan Tamsalu
- juhan.tamsalu&tallink.ee
-48590
- Peñasco Valley Telephone Cooperative, Inc.
- Zachary Arias
- pen&pvt.com
-48591
- Borda Technology
- Seckin Can
- seckin.can&bordatech.com
-48592
- Capetrust
- Arnaud Tardy
- oid&capetrust.com
-48593
- ECRA SRL
- Troisi Pasquale
- marketing&ecranet.com
-48594
- University Cancer Institute
- Bonnie Raines
- braines&universitycancerinstitute.com
-48595
- ENKON Information Systems Inc.
- Richard Ihmels
- rihmels&enkon.com
-48596
- SKOGsam ab
- Joel P Åberg
- joel&skogsam.se
-48597
- Administrative Computer Consultants Co.
- Mike Boyer
- boyer&administrative.com
-48598
- NetGuardians
- Support
- support&netguardians.ch
-48599
- Zodiac Telecommunications South Africa
- Keegan Moodley
- zodiac&highveldmail.co.za
-48600
- Cyber Advanced Technology, Inc.
- Paul Bowman
- paul.bowman&ot-ocn.com
-48601
- Syadem
- Josselin Auguste
- contact&mesvaccins.net
-48602
- Pacific Hematology Oncology Associates
- David Ruiz-Velez
- david&phoamd.com
-48603
- Systemk
- Osamu Takahashi
- o.takahashi&systemk.co.jp
-48604
- ShenZhen SandStone Data Technology Co.,Ltd
- LiXinrong
- lixinrong&szsandstone.com
-48605
- PSZ
- Yuri Azanov
- skb162&imf.ru
-48606
- ADVENS
- POTTIER Frédéric
- frederic.pottier&advens.fr
-48607
- Navkonzept GmbH
- Krystian Gawol
- k.gawol&navkonzept.de
-48608
- PT. Waruna Nusa Sentana
- Des Dulianto
- desdulianto&waruna-group.co.id
-48609
- Averbis GmbH
- Jan Paetzold
- jan.paetzold&averbis.com
-48610
- Net2Edge Limited
- Jon Burke
- engineering&net2edge.com
-48611
- Locher & Christ GmbH
- Markus Kollmann
- markus.kollmann&lc-top.de
-48612
- R.WEISS GROUP
- Helmut Kienle
- kienle.h&r-weiss.de
-48613
- DTV Innovations, LLC
- Benitius Handjojo
- bhandjojo&dtvinnovations.com
-48614
- Infraxis AG
- Jonathan Taylor
- itsupport&infraxis.com
-48615
- Cancer Care Associates of York
- Shauna Herman
- sherman&cancercareyork.com
-48616
- AWGES
- Ânderson Ignácio da Silva
- anderson&awges.com
-48617
- binsec GmbH
- Florian Zavatzki
- fz&binsec.com
-48618
- revservrd
- Bill Huddleston
- spaderbaby&gmail.com
-48619
- Stream Technologies Ltd
- Melissa Jenkins
- noc&stream-technologies.com
-48620
- ALMERYS
- MUSTAPHA MIRAOUI
- mustapha.miraoui&almerys.com
-48621
- Dueton Systems s.r.o.
- Vasily Goldobin
- vasily&dueton.com
-48622
- Innovate DC S.A.C.
- Carina Estrada
- carina.estrada&innovateahora.com
-48623
- Ingarps Trävaror AB
- Mattias Sälleteg
- mattias.salleteg&ingarpstra.se
-48624
- Johnson Earls
- Johnson Earls
- johnson.earls.pen&gmail.com
-48625
- Setra Group AB
- Mikael Nylén
- Mikael.Nylen&setragroup.com
-48626
- Duo Security
- Nick Soulliere
- nsoulliere&duosecurity.com
-48627
- CounterCraft
- David Barroso
- dbarroso&countercraft.eu
-48628
- Whanganui High School
- Sean Anderson
- techs&whs.ac.nz
-48629
- ID-ware Deutschland GmbH
- Sebastian Fiebig
- Administrator&id-ware.com
-48630
- DOCAPOST
- Nicolas DUMINIL
- nicolas.duminil&simplex-software.fr
-48631
- AlkSys
- AlkSys
- info&alksys.com
-48632
- Carousel Industries of North America
- James Middleton
- jmiddleton&carouselindustries.com
-48633
- IT-Consulting Gschwendt
- Ing. Markus Gschwendt
- office&gschwendt.at
-48634
- BK TELECOMUNICAÇÕES LTDA ME
- José Welliton Sá da Silva
- infraestrutura&bktele.com
-48635
- Riverside County Information Technology
- Jason Smith
- jasonsmith&rivco.org
-48636
- ewell
- hu haifeng
- huhaifeng&ewell.cc
-48637
- COLEGIO DE NOTARIOS DE LIMA
- Gerardo García Martínez
- ggarcia&notarios.org.pe
-48638
- DOCTORS CANCER CENTER
- CESAR MALDONADO, MHMS
- dcc2003&gmail.com
-48639
- Platformatics
- Jon Ford
- jford&platformatics.com
-48640
- Electronic Technology Inc.
- Dave DeLeo
- engineering&eti-nj.com
-48641
- Det Norske Studentersamfund
- Jonas Braathen
- jonas&studentersamfundet.no
-48642
- Wangarden
- Edouard Bonnet
- system&wangarden.com
-48643
- Graytech Computers
- Chris Gray
- domain&graytech.com.au
-48644
- UNION NATIONALE DES MAISONS FAMILIALES RURALES D'EDUCATION et D'ORIENTATION
- HURLAIN Arnaud
- union&mfr.asso.fr
-48645
- Haldor Topsoe
- Kim Bauer
- kbj&topsoe.dk
-48646
- Aralink Tecnologias de la Informacion SL
- Departamento de Administracion
- administracion&aralink.com
-48647
- Jan Vana
- Jan Vana
- jan&janvana.cz
-48648
- New Mexico Oncology Hematology Center, Ltd
- Cookie Santamaria
- cookies&nmohc.com
-48649
- Practical Design Group, LLC
- Tim Paulson
- tpaulson&practicaldesign.com
-48650
- MAILEVA
- Mekki GHERNATI
- mekki.ghernati&docapost.fr
-48651
- Vint
- Rémi Lapeyre
- remi.lapeyre&vint.fr
-48652
- Lokithor Sécurité
- Jacques Beauregard
- dtln&netcourrier.com
-48653
- HUGO BOSS AG
- Rainer Koch
- rainer_koch&hugoboss.com
-48654
- P3KI GmbH
- Gregor Jehle
- hadez&p3ki.com
-48655
- Sky Brasil
- Welber Neto
- skyengnetwork&sky.com.br
-48656
- HighJump Software Inc.
- Timothy R. Simmons
- Tim.Simmons&Highjump.com
-48657
- Tobias Tilgner
- Tobias Tilgner
- tt&totis.net
-48658
- Martin Balint
- Martin Balint
- martin&balint.cz
-48659
- Tecnotel Servizi Tecnologici SRL
- Sergio Tosti
- noc&tecnoadsl.it
-48660
- Netz-Weise
- Holger Voges
- holger.voges&netz-weise.de
-48661
- Dialamerica
- Bryan Dorry
- bdorry&dialamerica.com
-48662
- bDigital Indonesia
- Adiwijaya Hadinoto
- technology&bdigital.id
-48663
- T38Fax Incorporated
- Patrice Fournier
- patrice.fournier&t38fax.com
-48664
- eth2 networks
- Martijn Reening
- m.reening&eth2.link
-48665
- Telcom d.o.o.
- Sasa Galjak
- sasa.galjak&telcom.co.rs
-48666
- 24-7 Entertainment ApS
- Andrzej Soinski
- doms&247e.com
-48667
- ibes AG
- Marian Wendt
- mwendt&ibes.ag
-48668
- Czech University of Life Sciences Prague (CULS)
- Jan Richter
- apacheadmin&czu.cz
-48669
- WIPO
- Thierry Crouzier
- thierry.crouzier&wipo.int
-48670
- Nuco Technologies LTD (Host-IT Internet Solutions)
- Maxim Wilson (Host-IT Technical Support)
- support&host-it.co.uk
-48671
- Giax GmbH
- Andreas Blohmann
- ab&giax.de
-48672
- Symbotic LLC
- John Cole
- iana-admin&symbotic.com
-48673
- iCONX solutions
- Shane O'Keeffe
- shane.okeeffe&iconxsolutions.com
-48674
- Jano
- Edward Antony Muchiri
- ed&jano.co.ke
-48675
- Heerscharen.Net
- Thies Müller
- webmaster&hosting.heerscharen.net
-48676
- Zaba Industries
- Vsevolod Kozlov
- zaba&mm.st
-48677
- SEPSA
- Vincenzo Auteri
- vincenzo.auteri&sepsa.es
-48678
- RNAV CDG
- CARRIERE Arnaud
- dark_mickey95&yahoo.fr
-48679
- dataWeapons
- songjun choe
- 10gic&dataweapons.org
-48680
- abas-usa
- Jeremy Sheridan
- jeremysheridan&abas-usa.com
-48681
- Guangzhou Caipin Communication Technology Co., Ltd.
- Huan Yong, Qin
- 287042313&qq.com
-48682
- NETSTARS CO., LTD.
- WangKun
- wang.kun&netstars.co.jp
-48683
- Elastifile
- Modi Finkelstein
- modi.finkelstein&elastifile.com
-48684
- 32lou
- arthur li
- yunql4&sina.com
-48685
- IXI Technology
- Bryan Ly
- bryanly&ixitech.com
-48686
- Pittel+Brausewetter Holding GmbH
- Marvin Kirowitz
- it-office&pittel.at
-48687
- John Kenyon
- John Kenyon
- etljwk&gmail.com
-48688
- Ventacity Systems, Inc.
- Jonah Peskin
- jp&ventacity.com
-48689
- Novar GmbH
- Klaus-Dieter Wank
- klaus-dieter.wank&honeywell.com
-48690
- Teltonika
- Darius Jokšas
- darius.joksas&teltonika.lt
-48691
- OPNT B.V.
- Marco Gorter
- m.gorter&opnt.nl
-48692
- ASP AG
- Christof Kraka
- christof.kraka&asp-ag.eu
-48693
- Sistemas Electrónicos de Potencia, S.A.
- José Alberto García García
- jagarcia&sepsa.es
-48694
- Vision4ce Limited
- Philip Park
- snmp.admin&vision4ce.com
-48695
- Occitaline
- ben hassen imen
- benhassen.imen8&gmail.com
-48696
- infofab GmbH
- Frank Flachenecker
- frank.flachenecker&infofab.de
-48697
- Threat Stack, Inc.
- Patrick Cable
- pat.cable&threatstack.com
-48698
- McHenry Savings Bank
- Ken Olsen
- kolsen&mchenrysavings.com
-48699
- Reversing Labs
- Igor Lasic
- ilasic&reversinglabs.com
-48700
- SwipeSense
- Daniel Gunderson
- admin&swipesense.com
-48701
- Steward Health Care System
- Glenn Brown
- glenn.brown&steward.org
-48702
- ReversingLabs US Inc.
- Maarten Boot
- cloud&reversinglabs.com
-48703
- A.T.I.B. Srl
- Antonio Tinti
- antonio.tinti&atib.com
-48704
- Center of Radiological Medical Physics, USTC
- Yifei Pi
- pyfdrw&mail.ustc.edu.cn
-48705
- Griffith City Council
- Mike Gaze
- mike.gaze&griffith.nsw.gov.au
-48706
- Beijing Feifanshi Technology Co., Ltd.
- DANG Fan
- dangfan&fayfans.com
-48707
- häwa GmbH
- Markus Spring
- edv&haewa.de
-48708
- Rolls-Royce Control Systems
- Simon Daniel
- simon.daniel&rolls-royce.com
-48709
- DevTeam SRL
- Mauricio Ghiorzi
- mauriciog&devteam.com.ar
-48710
- Gluu, Inc.
- Michael Schwartz
- mike&gluu.org
-48711
- UBIVELOX Inc.
- Jung-Ho Kim
- visualguide&ubivelox.com
-48712
- van-Eerd.net
- Rob van Eerd
- rob&van-Eerd.net
-48713
- DWA Internet Solutions
- Slobodan Senic
- office&dwais.rs
-48714
- LEMZ R&P Corp.
- Rinat Gadelshin
- gadelshin.r.n&topaz-atcs.com
-48715
- LEMZ R&P Corp.
- Rinat Gadelshin
- gadelshin.r.n&topaz-atcs.com
-48716
- Ceredigion County Council
- Jason Taylor
- jason.taylor&ceredigion.gov.uk
-48717
- Q2 Solutions
- Anthony Altemara
- anthony.altemara&q2labsolutions.com
-48718
- United Power Inc
- System Administrator
- itregistrations&unitedpower.com
-48719
- Digitalor Tech Inc
- ZOU BIN
- binzou&digitalor.com
-48720
- New Mexico Oncology Hematology Consultants, Ltd
- Tyler Black
- Tyler.Black&pathforward.us
-48721
- Chastain-Skillman, Inc.
- Matthew Gruenau
- mgruenau&chastainskillman.com
-48722
- PG Services Sarl
- Murat Izli
- murat.izli&pg-services.lu
-48723
- Institute for Family Health
- Muhammad Sulaman
- it-com&institute.org
-48724
- cCARE:California Cancer Associates for Research and Excellence
- Mahshid Albrecht
- malbrecht&ccare.com
-48725
- PayNet, Inc.
- Avi Nutkis
- anutkis&paynet.com
-48726
- TAP Portugal
- Marcio Garcia Marcenari
- e-mmarcenari&tap.pt
-48727
- COTA Inc.
- Doug Leder
- dougleder&oncota.com
-48728
- CircleX
- Richard Dawson
- dawsora&gmail.com
-48729
- CSRA
- Michael Cramer
- michael.cramer&csra.com
-48730
- HostDir
- Antonino Riina
- admin&hostdir.net
-48731
- Home Branch
- Richard Dawson
- dawsora&gmail.com
-48732
- Fundação Educacional Encosta Inferior do Nordeste
- Marcia Regina Diehl
- redes&faccat.br
-48733
- Excellium Services S.A.
- Morgan HENREAUX
- mhenreaux&excellium-services.com
-48734
- IOxOS Technologies SA
- Ralph Hoffmann
- ralph.hoffmann&ioxos.ch
-48735
- CAE Engineering Kft.
- Dr. András Korn
- iana-pen&cae-engineering.hu
-48736
- INX International Ink Co.
- Todd Pharis
- todd.pharis&inxintl.com
-48737
- EasyNMS
- Sławomir Kłos
- slawekk87&gmail.com
-48738
- Littlepay Pty Ltd
- David Johnston
- iana.admin&littlepay.com
-48739
- 杭州电子科技大学 (Hangzhou University of Electronic Science and Technology)
- zhangmeng
- 1247882983&qq.com
-48740
- Clanjor Prods.
- Giumo Clanjor
- cjxgm2&gmail.com
-48741
- Zitius Service Delivery AB
- Mathias Ehrlin
- mathias&zitius.com
-48742
- RetailPact Group
- Thomas Hayes
- thomasbhayes&gmail.com
-48743
- Cepheid
- Jessica Rivera-Vargas
- it.telecom&cepheid.com
-48744
- MiraCosta Community College District
- Karen Brown
- kbrown&miracosta.edu
-48745
- JSC Team-R
- Razumov Dmitry
- razumd&algspb.ru
-48746
- Fondation Officielle de la Jeunesse
- Diego Carrillo
- diego.carrillo&foj.ch
-48747
- Meep Consulting SPRL
- Dimitri Lambert
- info&meep.be
-48748
- Ali
- Alireza Mohammadi
- alireza83&gmail.com
-48749
- Cavisson Systems Inc.
- Raj Sajankila
- raj.s&cavisson.com
-48750
- Traiana Inc.
- Andy Kubat
- andreask&traiana.com
-48751
- Pace IT Systems
- Chris Kirkham
- chris.kirkham&paceit.co.uk
-48752
- Bergs Timber Production AB
- Anders Jansson
- anders.jansson&bergstimber.se
-48753
- ES-prom
- Andrey Kostrov
- kostrov.a&elsystems.ru
-48754
- EnShape GmbH
- Dr. Martin Schaffer
- m.schaffer&enshape.de
-48755
- Armagard Ltd
- Craig Richards
- craig.richards&armagard.com
-48756
- Skogssällskapets Förvaltning AB
- Stefan Hillerström
- stefan.hillerstrom&skogssallskapet.se
-48757
- kubos.org
- Jean Brangé
- jean&kubos.org
-48758
- 3City Electronics Sp. z o.o.
- Marek Kuciński
- biuro&3CityElectronics.com
-48759
- Le EcoSystems Technology Private Limited
- Syam Sundar
- syamsundar&le.com
-48760
- Envall Tech
- Henrik Envall
- henrik.envall&gmail.com
-48761
- SEYR
- Administrator
- iana-contact&seyr.me
-48762
- AiEmTi LLC
- Pavel Zakharov
- support&clouddc.ru
-48763
- VoltDB
- Stefano Santoro
- ssantoro&voltdb.com
-48764
- HeartVista, Inc.
- Juan Santos
- jmsantos&heartvista.com
-48765
- 1705 Purdue
- Administrator
- 310.9.300&gmail.com
-48766
- Sawtelle & Palms
- Administrator
- dubs11233035&gmail.com
-48767
- SDIS DE SAONE ET LOIRE
- COUSANCA, Didier
- dcousanca&sdis71.fr
-48768
- DeviceRadio AB
- Christian Klemetsson
- christian&deviceradio.com
-48769
- Process Automation Solutions GmbH
- Marc Haehnlein
- marc.haehnlein&pa-ats.com
-48770
- Tosibox Oy
- Jari Tenhunen
- jari.tenhunen&tosibox.com
-48771
- Diebold Nixdorf
- Roman Cinkais
- roman.cinkais&dieboldnixdorf.com
-48772
- SSP ZhilComResurs
- Yuri Gunbin
- yuri_gunbin&zhcr.ru
-48773
- NETRONIK spolka z o.o.
- Tomasz Slaski CEO
- iana&netronik.pl
-48774
- FlexiLogix
- Junaid Mukhtar
- jmukhtar&flexilogix.com
-48775
- TELSY SpA
- ORLANDINI Roberto
- roberto.orlandini&telsy.it
-48776
- Skellefteå Kraft AB
- Jörgen Larsson
- dataavd&skekraft.se
-48777
- Globalways AG
- Hostmaster of the Day
- support&globalways.net
-48778
- Dana-Farber Community Cancer Care
- Michele Schuckel
- michele_schuckel&dfci.harvard.edu
-48779
- Michel Reynaud Joyeux
- Michel Joyeux
- michel.joyeux&zoho.com
-48780
- Trustonic
- Andy Mell
- andy.mell&trustonic.com
-48781
- blobule.com
- Glenn Slayden
- boots&blobule.com
-48782
- Moelven Skog AB
- Bo Nyberg
- bo.nyberg&moelven.se
-48783
- STG, Inc.
- Daniel Bizon
- noc&stg.com
-48784
- European Securities and Markets Authority
- Paul Hussein
- systems.admin&esma.europa.eu
-48785
- ARGETURK
- Coskun Tasdemir
- coskun&argeturk.com
-48786
- heiland.io
- Martin Heiland
- martin&heiland.io
-48787
- linudata GmbH
- Claus Wickinghoff
- info&linudata.de
-48788
- Bohlins Träexport AB
- Erland Forsstrom
- Erland&archipelago.se
-48789
- Fielmann AG
- Pietro Cattide
- p.cattide&fielmann.com
-48790
- OOO KIT
- Anton Abrosimov
- admin&itcgrp.ru
-48791
- H. Elderson
- Herman Elderson
- herman&elderson.com
-48792
- SCC Technology GmbH
- Rene Rimach
- rene.rimbach&scc-technology.de
-48793
- morgiij, inc.
- Clay Hutcherson
- clay&morgiij.com
-48794
- binnj, inc.
- Clay Hutcherson
- clay&binnj.com
-48795
- Comm5 Tecnologia Ltda
- Thiago Augusto Correa
- thiago&comm5.com.br
-48796
- Tennessee Oncology, PLLC
- Toni Perry
- tperry&tnonc.com
-48797
- Inspur-Cisco Networking Technology Co., Ltd.
- Harrison Liu
- liushaoy&inspur.com
-48798
- AKIPS Pty Ltd
- Paul Koch
- paul.koch&akips.com
-48799
- BiZone LLC
- Vyacheslav Tsepennikov
- vt&bi.zone
-48800
- CSNS
- Hong Jianshu
- hongjs&ihep.ac.cn
-48801
- CAF Signalling
- Miguel Villeta
- mvilleta&cafsignalling.com
-48802
- Panavision International, L.P.
- Jeff Wilson
- certificates&panavision.com
-48803
- VTID
- Egide Chiapponi
- egide.chiapponi&vtidiksmuide.be
-48804
- Univef LLC
- Igor Vershinin
- i_vershinin&univef.ru
-48805
- Shadrinsk State Pedagogical University
- Dmitry Slinkin
- vc&shgpi.edu.ru
-48806
- uznm
- Valentin Kulesh
- valentin.kulesh&phystech.edu
-48807
- Post Holdings
- David Combs
- david.combs&postholdings.com
-48808
- Thales Services France ATHENA (formerly 'THALES SERVICES LAB CSK')
- GINTRAND Olivier
- olivier.gintrand&thalesgroup.com
-48809
- medi-x-Thomas Kadlubowski
- Dominik Murr
- MurrComputer&gmx.de
-48810
- 21st Century Onco EKWR
- Mercy Hiller
- mercy.hiller&21co.com
-48811
- BADU Networks Inc.
- Timothy Nelson
- tim.nelson&badunetworks.com
-48812
- Nerotech Solutions
- Matthew Probasco
- mprobasco&nerotechsolutions.com
-48813
- TechnoBox Tecnologia LTDA
- Matheus Cadori
- suporte&technobox.com.br
-48814
- Max Planck Institute for Polymer Research
- Robert Klein
- kleinrob&mpip-mainz.mpg.de
-48815
- ProsiebenSat.1 Digital GmbH
- Lasse Borchard
- oid-reg&7tv.com
-48816
- Boxholms Skogar AB
- Peter Wallin
- peter.wallin&boxskog.se
-48817
- Rödins Trä AB
- Lars Svensson
- lars.svensson&rodinstra.se
-48818
- WELLTRON ELECTRONICS CO., LTD.
- Peter Lee
- plp456&welltron.com.tw
-48819
- Techno Mathematical
- Yasuo Suzuki
- suzuki-ya&tmath.co.jp
-48820
- VoiSmart S.r.l.
- Matteo Brancaleoni
- mbrancaleoni&voismart.it
-48821
- Haroutioun Shahinian, MD, PA
- Haroutioun Shahinian
- hsscancer.onc1&yahoo.com
-48822
- Interfax - Corporate Information Disclosure Center LLC
- Serafima Gorbatova
- dc2&e-disclosure.ru
-48823
- MAIF
- Alice MILANOVA
- alice.milanova&maif.fr
-48824
- Ponce Hematology Oncology
- Vanessa Alvarez
- mokin&flatiron.com
-48825
- Smurfit Kappa Kraftliner Piteå Aktiebolag
- Nicklas Norén
- Nicklas.Noren&smurfitkappa.se
-48826
- Gabriel Domenech 21st Century Oncology
- George Moore
- gmoore&flatiron.com
-48827
- KGSS
- Chris Pavona
- chris.pavona&kgssinc.com
-48828
- Bollore
- LEFEBVRE Francois
- francois.lefebvre&bollore.com
-48829
- INSYS Therapeutics, Inc.
- Adam Brumm
- abrumm&insysrx.com
-48830
- Green Charge Networks, LLC
- Bryan Chow
- bchow&greencharge.net
-48831
- Clarive Software
- Ricardo Martinez
- ricardo&clarive.com
-48832
- Assense Software Solutions
- Tsen Yang Kwong
- tsen.kwong&assense.com
-48833
- Veas Inc.
- Jorge Luis Gandulfo
- jorge&veas.tv
-48834
- WS Technology GmbH
- Thomas Fröhlich
- thomas.froehlich&waysense.eu
-48835
- Pico Systems Co., Ltd.
- Makoto Ito
- makoto&picosystems.net
-48836
- Evada Technology (Shenzhen) Co.,Ltd
- Lin Zhou
- zh_zhuanyong&hotmail.com
-48837
- FUJIAN NEBULA BIG DATA APPLICATION SERVICE CO.,LTD
- 钟军 (Zhang Jun)
- zhangzhangwen&xrjiot.com
-48838
- Nesodden Kommune
- Tobias Wold
- tobias.wold&lumagate.com
-48839
- Sömlös AB
- Stefhan Stjärnås
- stefhan&stjarnas.com
-48840
- stij.net
- Stijn Adriaensens
- stijn.adriaensens&gmail.com
-48841
- LevelUP Solutions Pty Ltd
- Brendon Allen
- brendon.allen&levelup.solutions
-48842
- Spiral Software Ltd
- Dan Martinelli
- dmartinelli&spiralsoft.com
-48843
- LBS Bayerische Landesbausparkasse
- Alexander Eller
- alexander.eller&lbs-bayern.de
-48844
- Unmanned Innovation D.B.A Airware
- Ash Smolenski
- it&airware.com
-48845
- August Schell
- Olavo da Rocha
- olavo.rocha&augustschell.com
-48846
- WE
- Dan Kuzmicki
- dan.kuzmicki&we.org
-48847
- Reputronix
- Jean Claude Lemoyne
- jclaude.lz&gmail.com
-48848
- FORTUNA GAME a.s.
- Vojtech Kotous
- kotous.vojtech&ifortuna.cz
-48849
- Marcus Seidel Beteiligungs GmbH Businessangels.de
- Janko Richter
- j.richter&adcell.de
-48850
- Logi-Concept Computers
- Sylvain Girouard
- sylvain38&bell.net
-48851
- Flaxen Consulting
- Michael P. Gerlek
- mpg&flaxen.com
-48852
- SL Global Service
- Oleksii Shevchenko
- support&sgs4business.com
-48853
- Jura Elektroapparate AG
- Dominik Schweizer
- itsupport&jura.com
-48854
- SherWeb Inc.
- Karl Gagnon
- kgagnon&Sherweb.com
-48855
- Domsjö Fiber AB
- Anna Nylander
- anna.nylander&domsjofiber.com
-48856
- Lewis-Sigler Institute
- Mark Schroeder
- mds&princeton.edu
-48857
- Hawaii Cancer Care
- Phia Magill
- phia.magill&hawaiicancercare.com
-48858
- Hope Health Center
- Lida Arutyunyan
- hope_healthcenter&yahoo.com
-48859
- Nevada National Security Site
- Joshua Moulin
- MoulinJS&nv.doe.gov
-48860
- “Metinvest Eurasia” LLC
- Eugene Panin
- evgeniy.panin&metinvest-eurasia.com
-48861
- Aysima Bilişim Teknolojileri
- Özkan TOPAL
- destek&aysima.com
-48862
- Alexson Solutions
- Adrien Alexson
- adrien&alexson.ca
-48863
- HM Wallace, Inc.
- Michael White
- m.white&hmwallace.com
-48864
- Serit Skagerak AS
- Lars Erik Wold
- lew&serit-skagerak.no
-48865
- Sava Turizem
- Peter Hocevar
- peter.hocevar&sava.si
-48866
- Enav spa
- daniel di rienzo
- daniel.dirienzo&technosky.it
-48867
- Questa Computing Ltd.
- Andrew Johnston
- andrew3&andrewj.com
-48868
- Bureau de coopération interuniversitaire
- Francois Fortier
- informatique&bci-qc.ca
-48869
- Synergy Embedded
- Elias Jose Di Domenico
- elias&synergyembedded.com.br
-48870
- ECHONET Consortium
- Toshiba Corporation : Keiichi Teramoto
- keiichi.teramoto&toshiba.co.jp
-48871
- XSky(beijing) Data Technology Co.,Ltd.
- Liu Bo
- liubo&xsky.com
-48872
- PT. Cipta Piranti Sejahtera
- Ariel Silooy
- ariel&bisnis2030.com
-48873
- Guangzhou Rojao Technology Co., Ltd
- MiaoJun
- brucemiao&hotmail.com
-48874
- DongHui Group
- Xushengyang
- dhsc100&163.com
-48875
- Fast National University
- Rizwan Saeed
- rizwan.saeed&nu.edu.pk
-48876
- Fatbat
- Fatih BATUM
- fatih&batum.gen.tr
-48877
- thomas beteiligungen GmbH
- Stefan Boemer
- pki&thomas-gruppe.de
-48878
- TOP TECHNOLOGIES CONSULTING GmbH
- IT-ServiceDesk
- it-servicedesk&toptechnologies.de
-48879
- Centre Patronal
- LERESCHE François
- licence&centrepatronal.ch
-48880
- The Sigma Financial Group Limited
- Karl Russell
- karl.russell&sigfin.co.uk
-48881
- MTRLC LLC
- Hume Vance
- humev&motorolacable.com
-48882
- L-TECH Corp. Networks
- Jong-Suk Jung
- jsj&ltechnology.co.kr
-48883
- Universidad de Murcia
- ATICA - Sección telemática
- t&um.es
-48884
- Skyriver
- John Neubauer
- jneubauer&skyriver.net
-48885
- Tsuzuki Denki Co. Ltd.
- Hiroshi Fujita
- fujita-h&tsuzuki.co.jp
-48886
- NPF Sibpeleng Ltd.
- Alexei Bazlaev
- lexus&sibpeleng.ru
-48887
- 东方网力科技股份有限公司南京研发中心 (Oriental Network Technology Co., Ltd. Nanjing R & D Center)
- 丁伟 (Ding Wei)
- dingwei&netposa.com
-48888
- SSLINK TECHNOLOGY (BEIJING) CO., LTD.
- Jackie Deng
- jackie.deng&sslink.com.cn
-48889
- SilicoWolf (Pty) Ltd.
- Andrew Broekman
- technical&silicowolf.com
-48890
- Huels Unternehmensgruppe
- Carsten Theißing
- carsten.theissing&dihug.de
-48891
- EVN AG
- IT Benutzerservice
- ius.lizenzen&evn.at
-48892
- Administration des services de secours
- Jerry Jacobini
- itmgmt&secours.etat.lu
-48893
- Bornemann AG
- Johannes Rehm
- jre&bornemann.net
-48894
- Banco BPI, SA
- Jorge Miguel Fernandes Carvalho Pinto
- jorge.miguel.pinto&bancobpi.pt
-48895
- Netcompany A/S
- Aya Nielsen
- itservices&netcompany.com
-48896
- Ironwood Physicians, PC
- Becky House
- rhouse&ironwoodcrc.com
-48897
- /ETC - Martin Misuth
- Martin Misuth
- etc&ethome.sk
-48898
- Software Freedom Law Center
- Daniel Gnoutcheff
- root&softwarefreedom.org
-48899
- VoiceOverNet
- Alexis Fidalgo
- afidalgo&voiceovernetinc.com
-48900
- Guaranty Bank and Trust Company
- Casey Boyd
- ncc&guarantybankco.com
-48901
- DOTSENSEI LTD
- Iliya Bazlyankov
- iliya&dotsensei.com
-48902
- Shenzhen Puduan Technology Co., Ltd.
- Yang Jin
- yangjin&puduantech.com.cn
-48903
- Qualvision
- enjun.zhao
- enjun.zhao&qualvision.cn
-48904
- AB Gustaf Kähr
- Kyllikki Liljegren
- kyllikki.liljegren&kahrs.se
-48905
- Falan Energiflis AB
- Michael Lindström
- michael&falan.se
-48906
- EVRY Sweden AB
- Anders Wadell
- anders.wadell&evry.com
-48907
- Ter Hell & Co. GmbH
- Martin Kroll
- m.kroll&tergroup.com
-48908
- girtech srl
- Claudio Girlanda
- cgirlanda&girtech.com
-48909
- SDEL Contrôle Commande
- Valentin Brehier
- support.rd&sdelcc.com
-48910
- Rheinische Fachhochschule Köln gGmbH
- Philipp Thomas
- philipp.thomas&rfh-koeln.de
-48911
- DS Norden A/S
- Peter Frost
- vesselit&ds-norden.com
-48912
- Thismonkey IT Pty. Ltd.
- Scott Aitken
- iana02&thismonkey.com
-48913
- Haussli
- John Heasley
- heas&haussli.com
-48914
- Conductor Inc.
- Donald Stahl
- dstahl&conductor.com
-48915
- SPG International, LLC
- Dave Bicanic
- it.tech&spgusa.com
-48916
- ITS-Network
- Sven Schertel
- sven.schertel&schertel.net
-48917
- CPI Security
- Steve Butkovich
- itsoftware&cpisecurity.com
-48918
- Dothan Hematology & Oncology
- Tonya Odom
- tonya&dothanhemonc.com
-48919
- Bancroft
- Andre Bodden
- Andres.Bodden&Bancroft.Org
-48920
- Identos Inc.
- Brion Muldoon
- brion&identos.com
-48921
- Mercer Bucks Hematology Oncology
- Stefanie Callahan
- stefanie&mbhemonc.com
-48922
- Thales Australia
- Jeremy Kerwin
- jeremy.kerwin&thalesgroup.com.au
-48923
- icomer
- choi hyoung tag
- cht&icomer.com
-48924
- HIST
- Joung minsoub
- mjoung&hist.co.kr
-48925
- Invite Services
- Frey Mansikkaniemi
- iana&accounts.invite.hk
-48926
- OOO Tsentr Sistem Svyazi
- Egor Bolshedvorsky
- info&da-tele.com
-48927
- Circle B
- Menno Kortekaas
- menno&circleb.eu
-48928
- 深圳市视游互动科技有限公司 (Shenzhen City videoseeing Interactive Technology Co., Ltd)
- Jacky yi
- yirui&videoseeing.com
-48929
- DBLabs
- Yiorgos Adamopoulos
- adamo&dblabs.com
-48930
- IFRASS
- Jeremie Pilette
- j.pilette&ifrass.fr
-48931
- Assecor GmbH
- IT-Support
- It-support&assecor.de
-48932
- Secure Systems & Technologies
- Andrew Harrison
- andrew.harrison&sst.ws
-48933
- BIT
- Teun Vink
- teun&bit.nl
-48934
- Vevida
- Onno Molenkamp
- onno&vevida.nl
-48935
- PumpCo Ltd
- Andrew Lawrenson
- andy.lawrenson&pumpco.co.uk
-48936
- OMEGA Ltd
- Christian Ritter
- webmaster&omega.ch
-48937
- Polyconseil SAS
- Raphaël Barrois
- iana-oid&polyconseil.fr
-48938
- Denys Berkovskyy
- Denys Berkovskyy
- den.kiev&gmail.com
-48939
- Vevida
- Jacco Koning
- jacco&vevida.com
-48940
- Controllis
- Mark Anderson
- mark.anderson&controllis.com
-48941
- Schleupen AG
- Dr. Peter Wenderoth
- peter.wenderoth&schleupen.de
-48942
- Synaptics Inc
- Preetham Nayak
- preetham.nayak&synaptics.com
-48943
- Ampetronic Ltd
- Russell Simpson
- russell.simpson&ampetronic.co
-48944
- Lietuvos vyriausiojo archyvaro tarnyba
- Vaidotas Ramonas
- v.ramonas&archyvai.lt
-48945
- Rundvirke Skog AB
- Tomas Berg
- tomas.berg&rundvirkeskog.se
-48946
- 556081-8782
- Erik Kjellberg
- erik&karlatra.se
-48947
- ATMC Automação e Comunicação Ltda
- Marcos Pereira
- marcos&atmc.com.br
-48948
- TCPixel, LLC
- Brian Cavanaugh
- brian&tcpixel.com
-48949
- At4wireless
- Alexander Quesada López
- aquesada&at4wireless.com
-48950
- LogDNA
- Mike Hu
- ops&logdna.com
-48951
- UNION TANK Eckstein GmbH & Co. KG
- IT-Technik
- pki&uta.com
-48952
- ATA Timber AB
- Jonas Hafmar
- jonas&ata.nu
-48953
- UbuntuNet Alliance
- Chris Rohrer
- chris.rohrer&ubuntunet.net
-48954
- ieBep.cn
- Jebwiz Oscar
- ieb&outlook.my
-48955
- Schoeller Technocell GmbH & Co KG
- Michael Moehlmann
- MMoehlmann&Felix-Schoeller.com
-48956
- T4MGroup.com
- Thomas Nierychlo
- thomas.nierychlo&trans4mation.de
-48957
- awaii.net
- Jesper Nøhr
- jesper&awaii.net
-48958
- Trinity Industries, Inc.
- Anthony Noonan
- Anthony.Noonan&trin.net
-48959
- Cruise Engineering Management Consulting
- Stanley Cruise
- scruise56&gmail.com
-48960
- SoftwareONE AG
- David Tannheimer
- david.tannheimer&softwareone.com
-48961
- struktur AG
- Joachim Bauch
- bauch&struktur.de
-48962
- Unilogic Networks B.V.
- Cliff Albert
- cliff&unilogicnetworks.net
-48963
- Gällö Skog AB
- Hans Lantz
- hans.lantz&galloskog.se
-48964
- VŠĮ "Šviesos kūgiai"
- Anatolij Škodin
- iana&sviesoskugiai.lt
-48965
- eMudhra Limited
- Vijay Kumar M
- Vijay&emudhra.com
-48966
- Nils Kaczenski
- Nils Kaczenski
- nils&kaczenski.de
-48967
- ZincFive, Inc.
- Michael P. Wells
- mwells&zincfive.com
-48968
- akquinet AG
- Matthias Timm
- matthias.timm&akquinet.de
-48969
- TK-Schulsoftware GmbH & Co. KG
- Tobias Knipping
- knipping&tk-schulsoftware.de
-48970
- Navipoint Genomics LLC
- Evan Cofsky
- evan&navipointgenomics.com
-48971
- PSYSTEME GmbH
- Reiner Pröls
- proels&psysteme.de
-48972
- Soulssoft
- Fischer Romain
- romain.fischer&soulssoft.com
-48973
- Menzel IT Services
- Daniel Menzel
- service&menzel-it.net
-48974
- Arte y Calidad en Papel,Artepapel,S.A.
- Fernando Araujo
- informatica&artepapel.com
-48975
- Ulmart RSK Ltd.
- Aleksey Bondarenko
- ianaoid&ulmart.ru
-48976
- MURATA SYSTEMS,LTD.
- Kazuki Kariya
- kazuki.kariya&jhb.muratec.co.jp
-48977
- Corsham Technologies, LLC
- Bob Applegate
- bob&corshamtech.com
-48978
- Sawwave
- Yeoncheon Yi
- yeoncheon&sawwave.kr
-48979
- 帝信科技股份有限公司 (DIXIN Technology Co., Ltd)
- Charlie Li
- li.changli&bendis.cc
-48980
- TCL-IMAX
- Xiaofeng Wu
- xfwu&tcl-imax.com
-48981
- Eigenexus Incorporated
- Dennis Hollenbeck
- dennis.hollenbeck&eigenexus.net
-48982
- Navitel s.r.o.
- Alexey Morozov
- morozov&navitel.ru
-48983
- Open Consent Group
- Mark Lizar
- info&openconsentgroup.com
-48984
- Athene Lebensversicherung AG
- Christian Pöll
- christian.poell&athene.de
-48985
- Netresec AB
- Erik Hjelmvik
- info&netresec.com
-48986
- LLC "INVEST-M"
- Kirill Nastasin
- nk&invm.net
-48987
- SkyDNS LLC
- Dmitriy Vostretsov
- mail&skydns.ru
-48988
- Streamonix Ltd
- DNS Manager
- dns_manager&streamonix.com
-48989
- Ture Johanssons Trävaru AB
- Renata Sorockova
- renata&tujo.se
-48990
- Intesi Group S.p.A.
- Francesco Barcellini
- fbarcellini&intesigroup.com
-48991
- Aequitas Software GmbH & Co. KG
- Dr. Burkhard Mars
- burkhard.mars&aequitas-software.de
-48992
- AEF e.V.
- AEF PKI Administrator
- jh.woelker&aef-online.org
-48993
- MKB Webhoster Limited
- Michel Dekker
- michel&mkbwebhoster.com
-48994
- AGELEC
- Guillaume Guerin
- guerin&agelec.fr
-48995
- Lumeta Corporation
- Lumeta Support
- lumetait&lumeta.com
-48996
- HOPE Cancer Center of East Texas
- Fred L Ernest
- flernest&hopecancertexas.com
-48997
- Colorado Blood Cancer Institute
- Peter Paturynski
- Peter.Paturynski&HealthONEcares.com
-48998
- Colorado Blood Cancer Institute
- Peter Paturynski
- Peter.Paturynski&HealthONEcares.com
-48999
- MoraMedSoft
- Enn Maripuu
- enn.maripuu&telia.com
-49000
- "Zheldorconsulting", Ltd.
- Zakharov Marat
- software&ocv.ru
-49001
- KHADAMAT NOVIN DADEAVARZI SADAD
- Mehdi Khademi
- m.Khademi&sadadpsp.ir
-49002
- ULTRA SA
- Fabio Ferreira
- sistemas&alarmasultra.com
-49003
- Gen Re
- Pratap Sahoo
- Pratap.sahoo&genre.com
-49004
- EGate Networks Inc.
- Matthew Gamble
- mgamble&egate.net
-49005
- A&H Software House, Inc.
- Sergey Gorbachev
- sergey.gorbachev&luxriot.com
-49006
- DHARA CONSULTING GROUP, INC
- SASTRY DHARA
- SASTRY&DHARA-IT.COM
-49007
- YAMABUN ELECTRONICS CO., LTD.
- Masaru Iguchi
- yamabun&mxa.mesh.ne.jp
-49008
- Derome Timber AB
- Helena Andersson
- helena.andersson&derome.se
-49009
- THE PUBLIC AUTHORITY FOR CIVIL INFORMATION
- Tareq Al-Rashed
- tareqr&paci.gov.kw
-49010
- Rayzon Technologies AG
- Marc Danzeisen
- marc.danzeisen&rayzon-technologies.com
-49011
- Tanium Inc.
- Justin Burke
- jburke&tanium.com
-49012
- Indasys
- Dominik Appich
- Dominik.appich&indasys.de
-49013
- Choice Cancer Care
- Joseph P. Gilio, PhD
- j.gilio&choicecancercare.com
-49014
- Sörmlands Printing Solutions AB
- Palle Jacobsen
- paja&stibo.com
-49015
- HEXBITS TECNOLOGIA LTDA
- Carlos Eduardo F. Magnani
- carlos.magnani&hexbits.com.br
-49016
- Build Informed GmbH
- Peter Hirn
- peter+iana&bim.ag
-49017
- Yukoo Limited
- Greg Newton-Ingham
- greg&yukoo.co.uk
-49018
- Assmann Télécom
- Mathieu Van Westerlaak
- vanwes_m&assmanntelecom.fr
-49019
- ExaScaler Inc.
- Yuki Yamaura
- yamaura&exascaler.co.jp
-49020
- Exaphotons Co., ltd.
- Liu Yan
- liuyan1001&exaphotons.com
-49021
- Saturn Imaging Inc.
- Alma Su
- almasu&saturnimage.com.tw
-49022
- China Moblie(Suzhou) Software Technology Co,Ltd
- Jiang Zhaohai
- sdlyjzh&126.com
-49023
- Universitätsbibliothek Johann Christian Senckenberg
- Armin Wenz
- a.wenz&ub.uni-frankfurt.de
-49024
- Deutsche Gesellschaft zum Bau und Betrieb von Endlagern fuer Abfallstoffe mbH
- DBE Technical Support
- info&dynexo.de
-49025
- ISPAS AS
- Anders Rosnes
- ar&ispas.no
-49026
- DEG - Deutsche Investitions- und Entwicklungsgesellschaft mbH
- Pascal Hansmann
- nwm&deginvest.de
-49027
- Berner Trading Holding GmbH
- Hans-Georg Schweikert
- iana_pen&berner-group.com
-49028
- Värmevärden AB
- Gustaf Molin
- gustaf.molin&varmevarden.se
-49029
- Seven Solutions S.L
- Rafael Rodriguez
- sevensols&gmail.com
-49030
- GST
- Gregor Stever
- pen&stever.de
-49031
- Walhalla u. Praetoria Verlag GmbH & Co. KG
- Hans Schwendner
- schwendner.hans&walhalla.de
-49032
- Telecom North America Inc.
- Roch-Alexandre Nominé
- roch&telna.com
-49033
- Uptake Technologies, Inc.
- Koushik Subramanian
- koushik.subramanian&uptake.com
-49034
- PROFEN ILETISIM
- AHU ATAKAN
- ahu.atakan&profen.com
-49035
- Seattle Radiologists APC
- Casey Allard
- it&searad.com
-49036
- EM Group
- Markus Greiner
- markus.greiner&emmos.de
-49037
- BrByte
- Luiz Fernando Souza Softov
- softov&brbyte.com
-49038
- Klinikum Dortmund
- Jens Leuschner
- jens.leuschner&klinikumdo.de
-49039
- Teslonix Inc
- Alaaedeen Aglan
- aaglan&teslonix.com
-49040
- Pharm-IT GmbH
- Florian Schindler
- cert&pharmit.de
-49041
- Betc digital
- florent Peyron
- florent.peyron&ext.betc.com
-49042
- Blue Pillar
- Mike Rooks
- mike.rooks&bluepillar.com
-49043
- TeamViewer GmbH
- Christoph Kohler
- IT&TeamViewer.com
-49044
- NewPace Communications Inc
- Gavin Murphy
- gavin.murphy&newpace.com
-49045
- JoyMoe Interactive Entertainment Limited
- Chino Chang
- chino&joymoe.com
-49046
- Faria Education Group Limited
- Darrin Wortlehock
- operations&fariaedu.com
-49047
- Ville de Québec
- Bruno Gagnon
- bruno-b.gagnon&ville.quebec.qc.ca
-49048
- AFONWeb
- Alistair Fenning
- pen.admin&afonweb.co.uk
-49049
- Oster Consulting
- CJ Oster
- iana-pen&cjoster.com
-49050
- PRINT SOLUTION
- Naveen Sharma
- print24solution&gmail.com
-49051
- IKEM AD
- Stefan Kirchev
- stefan.kirchev&gmail.com
-49052
- Trätåg AB
- Olle Pettersson
- mats.jannes&tieto.com
-49053
- Cesare Ceneri
- Cesare Ceneri
- cesare.ceneri&gmail.com
-49054
- Koenigin-Luise-Stiftung
- Tobias Seifert
- seifert&kls-berlin.de
-49055
- AOIFES
- Angel Suero
- angel.suero&aoifes.com
-49056
- 4SH FRANCE
- Roux Nicolas
- nicolas.roux&4sh.fr
-49057
- invenio GmbH Engineering Services
- Andreas Vogt
- andreas.vogt&invenio.net
-49058
- Glookast LLC
- Felipe Santos
- felipe.santos&glookast.com
-49059
- Cronoburn
- Eric Goerge
- cronoburn&gmail.com
-49060
- Martinsons Såg Aktiebolag
- Anders Ringsell
- anders.ringsell&martinsons.se
-49061
- Agree Technoloy
- Zhang Cong
- zhangcong02&agree.com.cn
-49062
- William Robinson
- William Robinson
- willrobi&shaw.ca
-49063
- ALTYS TECHNOLOGIES
- GELLY Julien
- julien.gelly&altys-tech.net
-49064
- Astyx GmbH Communication & Sensors
- Roland Stigge
- r.stigge&astyx.de
-49065
- Gruppo Servizi Informatici s.r.l.
- Nazzareno Sileno
- nazzareno.sileno&grupposi.eu
-49066
- Capesesp - Caixa de Assistencia e Previdencia
- Marcos Menegazzo
- marcos.menegazzo&capesesp.com.br
-49067
- Beaufort - Jasper Water & Sewer Authority
- Phillip McCright
- phillipm&bjwsa.org
-49068
- SGCA-THD
- Richard Darrieutort
- richard.darrieutort&treshautdebit.com
-49069
- ICT Berufsbildungscenter AG
- Kevin Wyer
- kevin.wyer&bbcag.ch
-49070
- TELEFONICA DE ESPAÑA SAU
- Guillermo Gavilan Montenegro
- guillermo.gavilanmontenegro&telefonica.com
-49071
- D2slink Systems
- Jose Vivero
- j.vivero&d2slink.com
-49072
- AIG Wilton
- Jack McKinney
- WBPServerAppSupport&aig.com
-49073
- Cutler Group, LP
- Dave Preston
- dave.preston&cutlergrouplp.com
-49074
- Blue Cross Blue Shield of North Dakota
- Jeremy Boelter
- jeremy.boelter&bcbsnd.com
-49075
- Samlex America Inc
- Michael Hamanishi
- mike&samlexamerica.com
-49076
- Itawamba Community College
- Jason Guntharp
- jwguntharp&iccms.edu
-49077
- JGA Skog AB
- Andreas Grugiel
- ag&jga.se
-49078
- Skånetimmer Bioenergi AB
- Andreas Grugiel
- ag&jga.se
-49079
- Skånetimmer AB
- Andreas Grugiel
- ag&jga.se
-49080
- Allianz pojistovna, a.s.
- Stanislav Bednar
- OID-admin&allianz.cz
-49081
- Lógica Sistemas de Informação LTDA-ME
- Daniel Passos Martins
- mib&logicasistemas.com.br
-49082
- Modulation Index, LLC
- Greg Ogonowski
- greg&indexcom.com
-49083
- Avon Maitland District School Board
- Dan Root
- dan.root&ed.amdsb.ca
-49084
- BrByte
- Luiz Fernando Softov
- softov&brbyte.com
-49085
- DETEC
- Nestor Martinez
- nestor.martinez&patikna.com
-49086
- CORUSCANT INVESTMENT GROUP AS
- Thomas Ryste
- thomas&ryste.net
-49087
- Waterside Consulting, Inc
- Theodore S Kapela
- IANA&WatersideConsulting.com
-49088
- D.S. Group Ltd.
- Yemets Andriy
- cio&dsg.org.ua
-49089
- ESKtrade UG (haftungsbeschraenkt)
- Mathias Kowalkowski
- mk&esktrade.com
-49090
- My-MTC.NET
- Thomas Lessel
- t.lessel&gmx.de
-49091
- Eastern Connecticut Hematology and Oncology
- Anne Slam
- aslam&echoct.com
-49092
- One Call Away, Inc.
- Christian Stuck
- noc&onecallaway.biz
-49093
- Xi'an HISU Multimedia Technology Co., Ltd.q
- fu yinghu
- fuyh&chinahisu.com
-49094
- FASTWEL Group Co. Ltd.
- Alexander Amelkin
- iana&fastwel.ru
-49095
- Swedish National Agency for Education
- Tomas Lindhoff
- tomas.lindhoff&skolverket.se
-49096
- KPCS CZ
- Jakub Urban
- urban&kpcs.cz
-49097
- EVTEC AG
- Markus Kramis
- evtec&evtec.ch
-49098
- NP ZAO "REKO-VEK"
- Andrey Mazilov
- amazilov&reko-vek.ru
-49099
- GBLabs Ltd.
- Alex Richman
- a.richman&gblabs.co.uk
-49100
- ce - corporate education GmbH
- Ulrich Bruns
- ubruns&ce.de
-49101
- EBS BrokerTec
- Gil Kaspi
- gil.kaspi&ebs.com
-49102
- INEL TEHNIK
- Nikola Sapundjiev
- nikola&inel.net.mk
-49103
- AMD
- Dmitry Sabaev
- dsabaev&datamodel.ru
-49104
- Invenia AS
- Trygve Sanne Hardersen
- dns-admin&invenia.no
-49105
- tetrardus.net
- Paul McMath
- paul.mcmath&gmail.com
-49106
- Hindog.com
- Aaron Hiniker
- hindog&gmail.com
-49107
- Elecronic Applications, Inc.
- Russ Churchill
- russc&electronicapplications.com
-49108
- Gustafsborgs Säteri AB
- Mikael Jönsson
- jnm&gustafsborg.se
-49109
- Rörvik Skog
- Linus Swanberg
- linus.swanberg&rtimber.se
-49110
- Millenium Internet Exchange
- Keshwarsingh Nadan
- kn&millenium.net.mu
-49111
- Tigera, Inc.
- Karthik Krishnan Ramasubramanian
- tech-admin&tigera.io
-49112
- Hecho-a-Mano
- Markus Buchholz
- markus.buchholz&hecho-a-mano.eu
-49113
- ITooLabs
- Alexey Naidyonov
- alexey.naidyonov&itoolabs.com
-49114
- simplicity wins
- Raphael Rojas
- pen&simplicity-wins.de
-49115
- GreenAnt
- Frank Giorlando
- ldap&greenant.net
-49116
- 天津蓝天科技股份有限公司 (Tianjin Blue Sky Technology Co., Ltd)
- chengjun pan
- panchj&zanpu.com
-49117
- Micronet Communications Inc.
- Albert Feng
- albert&micronet.com.tw
-49118
- Utilex
- Alexey Khrestolyubov
- lex&utilex.ru
-49119
- Setra Trävaror
- Mårten Stjernberg
- Marten.stjernberg&setragroup.com
-49120
- pureLiFi Limited
- Ron Schaeffer
- ron.schaeffer&purelifi.com
-49121
- Legislative Assembly of British Columbia
- Graeme Brown
- Graeme.Brown&leg.bc.ca
-49122
- Antheus Telecom Ltd
- Nik Middleton
- nik.middleton&antheus.co.uk
-49123
- Turbonomic, Inc.
- Yuri Rabover
- yuri.rabover&turbonomic.com
-49124
- Hematology Oncology Associates Of Brooklyn
- Tammi Ramos
- Tramos&brooklynoncology.com
-49125
- Xoriah Solutions Inc.
- Wilson Fung
- wilson&xoriah.com
-49126
- Sudo Security Group, Inc
- William Strafach
- will.strafach&sudosecuritygroup.com
-49127
- Musée Guérin
- JACQUES CORNILY
- cornily&gmail.com
-49128
- PromKomplektServis
- Michael
- itpks&pks.su
-49129
- finke Das Erlebnis-Einrichten GmbH & Co. KG
- Michael Vogt
- it-srv-net&finke.de
-49130
- access fintech
- steve fazio
- steve&access-fintech.com
-49131
- OWLCO
- Alexey Sovenko
- alexey.sovenko&owlco.ru
-49132
- Globility Limited
- Oliver Kemmis
- okemmis&globility.co.uk
-49133
- Stiegele Datensysteme GmbH
- Felix Puchinger
- felix.puchinger&stiegele.eu
-49134
- BKS Systems, Inc.
- Brian Strelioff
- BKStrelioff&Hotmail.com
-49135
- Carbon Soft Ltd
- Osintsev Sergey
- sergey&carbonsoft.ru
-49136
- ALGcom
- Lissandro Gerhardt
- lissandro&algcom.com.br
-49137
- Ljusnans Virkesfrakt AB
- Lars Svedåker
- lvfrakt&lvfrakt.se
-49138
- bjut, Inc.
- qian yong
- qianyong&mail.taiji.com.cn
-49139
- First State Investments (UK) Limited
- Tom Lloyd
- PKIAdministrators&firststate.co.uk
-49140
- exands
- wei zhang
- zw&exands.com
-49141
- VAG-Armaturen GmbH
- Ibanez Jose-Manuel
- it&vag-group.com
-49142
- Gemalto AG Switzerland
- Michael Lehmann
- michael.lehmann&gemalto.com
-49143
- cryptosource GmbH
- Dr. Falko Strenzke
- fstrenzke&cryptosource.de
-49144
- AB Högland Såg & Hyvleri
- Ulrika Rehn
- ulrika&hoglandssagen.se
-49145
- IHK Nürnberg für Mittelfranken
- Mirko Hoffmann
- admins&nuernberg.ihk.de
-49146
- bpost banque SA - bpost bank NV
- Sacha Heinen
- ictsecurity&bpostbank.be
-49147
- Bexen Cardio
- Estefania Gutierrez
- egutierrez&bexencardio.com
-49148
- Civis Grand Casino Kft.
- Szendrei Attila
- online&grandcasino.hu
-49149
- Deutsche Gesellschaft zum Bau und Betrieb von Endlagern fuer Abfallstoffe mbH (DBE)
- IT-Service
- it-service&dbe.de
-49150
- Vertiv Co
- John Bogdan
- john.bogdan&vertivco.com
-49151
- California Credit Union
- Charles Lacuesta
- charlesl&californiacu.org
-49152
- BlueArchive
- Jeff Flowers
- jflowers&bluearchive.com
-49153
- Stratos
- Wassilios Stratos
- wst&stratox.de
-49154
- Nordic Automation Systems
- Viljo Veesaar
- viljo&nasys.no
-49155
- jusst technologies GmbH
- Julian Scheel
- jscheel&jusst.de
-49156
- Canham
- Paul Canham
- paul&canham.eu
-49157
- Sylpheo
- Mathias Bazire
- mathias.bazire&sylpheo.com
-49158
- Cancer Center of Southern Califonria/Sarcoma Oncology Research Center
- Victoria Chua
- vchua&sarcomaoncology.com
-49159
- Milai Digital
- Keisuke Watanabe
- k-wata&mail.milai-digital.com
-49160
- Forssjö Pellets AB
- Tina Gyllengahm
- tina.g&sandasa.se
-49161
- CEIA S.p.A.
- Mr. Riccardo Bruni
- rbruni&ceia-spa.com
-49162
- Team GeoLook
- Usanov Denis
- team&geolook.me
-49163
- Nippon Electronics Service Co.
- YOSHIHIRO OHURA
- info&neskk.co.jp
-49164
- Japan Novel Corporation
- Mari Miyata
- mari.miyata&jnovel.co.jp
-49165
- JUNI Software SAS
- Julien Blitte
- julien.blitte&juni-soft.fr
-49166
- Kirale Technologies S.L.
- Manuel Amutio
- mamutio&kirale.com
-49167
- Terpotiz - Privat
- Andreas Terpotiz
- andreas&terpotiz.net
-49168
- Clear Guide Medical Inc.
- Philipp Stolka
- admin&clearguidemedical.com
-49169
- Zhejiang Chuangyi Optoelectronics CO.,LTD.
- Zhang Baoyin
- byzhang&cykj-tech.com
-49170
- Dhaawat Web Services
- Suchitra Reddy
- suchi.reddy1196&gmail.com
-49171
- UCS Technology Services
- Edward Hinchcliffe
- InetAdmin&ucsts.com
-49172
- Eurowings Aviation GmbH
- Matthias Bolte
- appwin&eurowings.com
-49173
- PTV Group
- Klaus Fronius
- it-services&ptvgroup.com
-49174
- Bogadi
- Marc Bogadi
- marc&bogadi.de
-49175
- Galapagos Linux Foundation
- Elizabeth Myers
- elizabeth&glpgs.io
-49176
- CCMI
- IT Administrator
- itadm&ccorpusa.com
-49177
- Capital Vision Services, LLC
- Steven R. Hensley
- shensley&myeyedr.com
-49178
- End 2 End Technologies, LLC
- Greg Crow
- info&e2etechinc.com
-49179
- xmachina GmbH
- Klaus Mueller
- orders&xmachina.de
-49180
- hoge.se
- Kenichi Harada
- postmaster&hoge.se
-49181
- MAGFest
- Joe Cooter
- joe.cooter&magfest.org
-49182
- Flughafen Köln/Bonn GmbH
- René Koch
- Rene.Koch&koeln-bonn-airport.de
-49183
- Codeacious Pty Ltd
- Glenn Schmidt
- glenn&codeacious.com
-49184
- IT PRO Szkolenia
- Adam Jakubiec
- behemot206&op.pl
-49185
- Quasar EDV-Informationsges. mbH
- Raymond Tuleweit
- raymond.tuleweit&quasar-edv.de
-49186
- Cinedom Kinobetriebe GmbH
- Raymond Tuleweit
- raymond.tuleweit&quasar-edv.de
-49187
- Wausau Supply Co
- Nate Wheeler
- nate.wheeler&wausausupply.com
-49188
- O3cv
- Ricardo Vieira
- contato&o3cv.com.br
-49189
- LDA Technologies
- Vahan Sardaryan
- info&ldatech.com
-49190
- Mothic Technologies LLC
- Brandon Martin
- administrators&mothictech.com
-49191
- LCA Systems
- Lucas Coelho de Almeida
- atendimento.lca.systems&gmail.com
-49192
- CM IT Certification Authority
- Corrado Mulas
- ca&casamulas.it
-49193
- Archivio Digitale - Casa Mulas
- Giovanni Mulas
- archivio&casamulas.ml
-49194
- multipurpose center of Irkutsk region
- Sergey Starovoytov
- s.starovoytov&mfc38.ru
-49195
- Deutsche Messe
- Thomas Howind
- pki-iana&messe.de
-49196
- First Solutions Sistemas de Informação S.A.
- Tiago Oliveira
- tiago.oliveira&first-global.com
-49197
- Orange System Group, CJSC
- Paul Vavilov
- pv&orangesystem.ru
-49198
- Domination
- ALEKSEY BAYDAROV
- 1&networkvideo.ru
-49199
- WONDERS INFORMATION CO., LTD
- zhimin Li
- lizhimin&wondersgroup.com
-49200
- Vasamed, Inc
- James Parr
- jparr&vasamed.com
-49201
- ANF Autoridad de Certificación, S.L.
- Florencio Díaz
- fdiaz&anf.es
-49202
- S.C. Mindsentry S.R.L.
- Alexandru Culea
- alexandru.culea&mindsentry.com
-49203
- Dirk Gerbig, EDV & IT-Dienstleistungen
- Direk Gerbig
- pen-iana&gerbig.info
-49204
- Foehammer Games LLC
- John Edmiston
- john.edmiston&foehammergames.com
-49205
- CERMOB TECNOLOGIA LTDA
- Jose Carlos da Silva Neto
- j.neto&cermob.com.br
-49206
- City of Tempe
- Scott Campbell
- security_admin&tempe.gov
-49207
- arizvi
- Ali Rizvi
- ali&arizvi.ca
-49208
- Jackie's Wholesale Nurseries Pty Ltd
- Dan Irwin
- dan&jackies.com.au
-49209
- easynetworks
- Ge jin
- gj&easynetworks.com.cn
-49210
- CR0BAR Limited
- Anthony de Broise
- anthony&cr0bar.co.uk
-49211
- DATAGROUP Operate IT GmbH (formerly 'HanseCom Gesellschaft für Informations- und Kommunikationsdienstleistungen mbH')
- Clemens Christensen
- clemens.christensen&operate-it.com
-49212
- Oleg Dubovskoy
- Oleg Dubovskoy
- odubovskoy&outlook.com
-49213
- Nextcloud
- Arthur Schiwon
- arthur&nextcloud.com
-49214
- Monzo Bank Limited
- Oliver Beattie
- oliver&monzo.com
-49215
- Emma, Inc.
- Marc Powell
- systems&myemma.com
-49216
- Corigine, Inc.
- Wing Lee Sing
- wing.sing&corigine.com
-49217
- Hypherion
- Eitan Levy
- ethanlevy97&protonmail.com
-49218
- Nelkinda Software Craft Private Limited
- Siddhesh Nikude
- Siddhesh.Nikude&nelkinda.com
-49219
- LANI GmbH & Co. KG
- Sven Lanzke
- administrator&herberge-harz.de
-49220
- Tiger Management L.L.C.
- Tommie Porter
- tommie&tigerfund.com
-49221
- IACPublishing
- Dan Constatino
- operations&iacpublishinglabs.com
-49222
- KOMDAT
- Ronald Kopecky
- kopecky&komdat.at
-49223
- ZOOM SERVER
- wei hui
- weih&zoomserver.cn
-49224
- PikTime Systems Sp. z o.o.
- Robert Urbaniak
- piktime&piktime.com
-49225
- 5micron GmbH
- Sebastian Werner
- oid&5micron.de
-49226
- Patriot's, LLC
- Jacob Ives
- jacob.ives81&gmail.com
-49227
- GGR Bryansk
- Teleliaev Evgeny
- asu&gro32.ru
-49228
- The unbelievable Machine Company GmbH
- David Obando
- david.obando&unbelievable-machine.com
-49229
- Siljan Skog AB
- Kent Matsuhashi
- it&siljan.com
-49230
- Enginuity Communications, Inc.
- Mark Orton
- morton&enginuitycom.com
-49231
- Guest-tek Interactive Entertainment Ltd
- Christian Carrier
- christian.carrier&guest-tek.com
-49232
- ChemAxon Kft
- Sandor Juhasz
- it&chemaxon.com
-49233
- Liberty Bank
- Dan LaLone
- dlalone&liberty-bank.com
-49234
- Wyatt Miler
- Wyatt Miler
- wmiler1&gmail.com
-49235
- ninIRC Network
- Michael Sauer
- michael&ninirc.ga
-49236
- appway
- Ge Jin
- gj&easynetworks.com.cn
-49237
- GAU MFC IO
- Sergey Starovoytov
- info&mfc38.ru
-49238
- VAV UNION Kft.
- Tóth Tamás
- totht&vavunion.hu
-49239
- MIBESIS D.O.O.
- Miroslav Beranič
- info&mibesis.si
-49240
- AK-Funktechnik GmbH
- Werner Bader
- werner.bader&ak-funktechnik.de
-49241
- uTech Tecnologia
- Jeferson A. Cassol
- cassol&utech.com.br
-49242
- Steuerbüro Pfeiffer
- Mathias Pfeiffer
- mathias.pfeiffer&pfhq.org
-49243
- Dailymotion
- Alan Martins
- admins&dailymotion.com
-49244
- Söderenergi AB
- Sylwe Wedholm
- sylwe.wedholm&soderenergi.se
-49245
- The University of Kansas Health System
- James Beeson
- jbeeson&kumc.edu
-49246
- Initium Novum LLC
- Joshua Marvel
- joshuam&initiumnovumllc.com
-49247
- Genesis Cancer Center
- Laura Sellers
- lsellers&genesiscancercenter.com
-49248
- Leipziger Versorgungs- und Verkehrsgesellschaft mbH
- Michael Pilz
- michael.pilz&l.de
-49249
- GBSD Technologies, Inc. (GBSDTech)
- Michael Powers
- mike.powers&gbsdtech.com
-49250
- Robiquity Limited
- Anthony de Broise
- adebroise&robiquity.com
-49251
- Blue Grass Airport
- David Roux
- helpdesk&bluegrassairport.com
-49252
- Cincinnati Bell
- Dan Trees
- dan.trees&cinbell.com
-49253
- Timrå Kommun
- Robin Nylander
- robin.nylander&timra.se
-49254
- Factory Systemes
- Fabien Serre
- fabien.serre&factorysystemes.fr
-49255
- econ solutions GmbH
- Christoph Rust
- christoph.rust&econ-solutions.de
-49256
- Weatherford International
- Lawrence Baumle
- larry.baumle&weatherford.com
-49257
- ECSC Group plc
- Adam Shore
- adam.shore&ecsc.co.uk
-49258
- DR-ARP
- Mark Matties
- mmatties&gmail.com
-49259
- NINTEGRATE, INC.
- Hakan Berg
- hakan.berg&nintegrate.com
-49260
- Bims Laboratories
- Harry Bims
- harrybims&me.com
-49261
- Contact Wave Limited
- Meena Anton
- manton&contactwave.co.uk
-49262
- Scientific RT GmbH
- Markus Alber
- markus&scientific-rt.com
-49263
- Connect and Exchange
- Martin Meuwese
- m.meuwese&cande.nl
-49264
- Benelec Pty Ltd
- Grant Pinkney
- service&benelec.com.au
-49265
- Kivu GmbH
- DI Jan van Oort
- jan&kivu.tech
-49266
- Ashenden Capital
- Richard Bibb
- richard.bibb&ashendencapital.com
-49267
- Government of Western Australia, Department of Finance
- Nikhil Mugi
- ICT-ServerTeam&finance.wa.gov.au
-49268
- Profamilia Bundesverband
- Thomas Elsaesser
- thomas.elsaesser&animate.de
-49269
- Franck d.d.
- Alen Santic
- alen.santic&franck.hr
-49270
- Locata Corporation Pty. Ltd.
- Tony Griffiths
- engineering&locata.com
-49271
- Wireless Technology, Inc.
- Chris Richardson
- chris&gotowti.com
-49272
- AREA S.p.A.
- SNMP customer support
- snmp&area.it
-49273
- BIZMEDTECH
- CEDRIC DAIMO
- it&bizmedtech.com
-49274
- Belgian Mobile ID
- Wim Coulier
- wim.coulier&sixdots.be
-49275
- Royal Society of Chemistry
- Andrew Preston
- technology&rsc.org
-49276
- Integramed Fertility
- Kelsey Smith
- kelsey.smith&integramed.com
-49277
- Stafford County Public Schools
- Barton Hunter Matheson III
- mathesonbh&staffordschools.net
-49278
- Ayasdi, Inc.
- Scott Mikusko
- ops&ayasdi.com
-49279
- Tesla
- Thaddeus Fortenberry
- tfortenberry&tesla.com
-49280
- Trapper
- Alejandro Del Cid
- delcid.alejandro.z&gmail.com
-49281
- Plexonics Technologies Pvt. Ltd.
- Sumit Agarwal
- sumit.agarwal&plexonics.com
-49282
- medimaps
- pascal vergnaud
- pvergnaud&medimapsgroup.com
-49283
- Credit Union of Colorado
- Tom E Gonzales
- iana&cuofco.org
-49284
- LankaClear (Pvt) Ltd.
- Duleep Liyanage
- duleep.liyanage&lankaclear.com
-49285
- Lightbend Inc
- Christopher Hunt
- admin&typesafe.com
-49286
- IMOTIONS
- Imotions Support
- support&videobutler.nl
-49287
- Millson Custom Solutions
- Jay Gibson
- it&millson.net
-49288
- Bitoptimum
- Dragos Ilie
- dragos&bitoptimum.com
-49289
- Praniskom Solutions Private Limited
- Devang Tanna
- sales&praniskom.com
-49290
- consultec sas di Sartor P. & c.
- Piero Sartor
- pierosartor&tiscali.it
-49291
- Access Denied bvba
- Johan Loos
- iana&accessdenied.be
-49292
- Biblioteca - Casa Mulas
- Giovanni Mulas
- biblioteca&casamulas.it
-49293
- Nanjing Juming Network technology Co.,Ltd
- tangjun
- tangjun&juminfo.com
-49294
- Hargs Bruk AB
- Lotta Wallin
- lotta.wallin&hargsbruk.se
-49295
- Direction du numerique UPPA
- DAUBA Christophe
- christophe.dauba&univ-pau.fr
-49296
- Fraunhofer MEVIS
- Ruben Stein
- ruben.stein&mevis.fraunhofer.de
-49297
- Avicenna Health Group Inc
- Mohammadreza Hemmati
- hemmati&avicennapp.com
-49298
- The Port Authority of NY & NJ
- Steven Choy
- schoy&panynj.gov
-49299
- Truecom Telesoft Private Limited
- Chirayu Patel
- sales&truecomtelesoft.com
-49300
- The New Tricks
- Taylor Trimble
- taylor&thenewtricks.com
-49301
- BCS Information Systems Pte Ltd
- Choo Tian Fook
- chootianfook&bcsis.com
-49302
- Dart Container
- Michael Watters
- michael.watters&dart.biz
-49303
- Flexmedia Ind. e Com. de Tecnologia Ltda.
- Gustavo Yamasaki Martins Vieira
- gvieira&flexmedia.com.br
-49304
- Tapoustry
- David Roux
- hello&tapoustry.com
-49305
- Neural Technologies
- Adrian C Harris
- adrian.harris&neuralt.com
-49306
- AUM Cardiovascular Inc
- Marie Johnson
- info&aumcardiovascular.com
-49307
- Secturion Systems Inc.
- Richard Jorgensen
- rjorgensen&secturion.com
-49308
- Airwave Brasil Tecnologia
- Younes Maia
- ymaia&abt.tv.br
-49309
- VIDA AB
- Magnus Linner
- magnus.linner&vida.se
-49310
- CELLULAR GmbH
- Daniel Storozhev
- dstorozhev&cellular.de
-49311
- Asteas Technologies GmbH & Co KG
- SNMP MiB Management
- office&asteas.com
-49312
- MichaelSchneiderKoeln
- Michael Schneider
- schneider.michael.cgn&web.de
-49313
- Isaac Johnson Organization
- Isaac Johnson
- isaacmjohnson&gmail.com
-49314
- ADFweb.com
- Piero Sartor
- p.sartor&adfweb.com
-49315
- Sealite PTY LTD
- Jens Ohle
- j.ohle&sealite.com
-49316
- SixGor
- Zanz Abteilung
- ZanzAbteilung&protonmail.ch
-49317
- ICT Star Group Myanmar Co., Ltd.
- San Lin Naing
- sanlin&isgm2.com
-49318
- Desert Water Agency
- Mohammed S Abbazih
- isguys&dwa.org
-49319
- Credit Bank of Moscow PJSC
- Andrey Lopatin
- crt&mkb.ru
-49320
- Wallnäs AB
- Carl johan Örmander
- carl-johan.ormander&wallnas.se
-49321
- Vevy Europe S.p.A.
- Raffaele Rialdi
- atd&vevy.com
-49322
- Haaglanden Medisch Centrum
- Michel Vissers
- tib&haaglandenmc.nl
-49323
- Dynamic Consulting International Telecommunications Spain, S. L.
- Seila Garcia
- admdci&dci.es
-49324
- mobex communication GmbH
- Markus Urban
- m.urban&mobex.de
-49325
- EVER SMART TECHNOLOGIES SL
- Jesus Martínez
- jesus&eversmart.io
-49326
- Clyde Bergemann Power Group International Ltd
- Stephan Bovet
- stephan.bovet&de.cbpg.com
-49327
- Frivillighetshuset
- Karl Fredrik Haugland
- kf&frivillighetshuset.no
-49328
- Praim srl
- Andres Kaswalder
- sysadmin&praim.com
-49329
- SysEleven GmbH
- SysEleven GmbH Security
- security&syseleven.de
-49330
- A.B.G Systems Ltd Israel
- Yuval Ofer
- yuval&abgsystems.com
-49331
- Johannishus godsflrvaltning AB
- Magnus Roth
- magnus.rooth&johannishus.com
-49332
- AppWorks
- Juliana Lin
- appworksales&gmail.com
-49333
- Brighthouse Financial Inc.
- Stefan Kelber
- skelber&metlife.com
-49334
- Axon-Ar
- Diego Bellver
- diego.bellver&gmail.com
-49335
- ROTOK
- Robert Klein
- rtwk72&yahoo.com
-49336
- Schreiber Systems
- Dennis Schreiber
- oid.iana&schreiber.systems
-49337
- KommunalBIT AöR
- Team Systeme und Netze
- systemeundnetze&kommunalbit.de
-49338
- ASTEN
- Philippe LEMAZURIER
- philippe.lemazurier&groupe-asten.fr
-49339
- GAYA
- Julien Liebert
- tech&gaya.fr
-49340
- Beijing Fusion Co., Ltd
- Gao, Bo
- gaobo&senlime.com
-49341
- Ayuntamiento de Cartagena
- Alejandro Delgado-Gomez
- alejandro.delgado&ayto-cartagena.es
-49342
- Unser Heimatbäcker GmbH
- Mathias Krämer
- m.kraemer&unserheimatbaecker.de
-49343
- HaloDoc.com
- Pandu POLUAN
- pandu.poluan&halodoc.com
-49344
- IX Layers, Inc.
- KIKUCHI Yutaka
- admin&ix-layers.com
-49345
- KVaibhav Personal CA
- Vaibhav Kurde
- sslca&kvaibhav.in
-49346
- Samvardhana Motherson Innovative Autosystems B.V. & Co. KG
- Juergen Baule
- juergen.baule&smia-automotive.com
-49347
- Healthjump
- Clifford Cavanaugh
- oid&healthjump.com
-49348
- Yapku Limited
- Darren Breeze
- darren&yapku.com
-49349
- BCDVideo
- tom larson
- tlarson&bcdvideo.com
-49350
- VGCIT, Inc.
- Vartan Chukhadarian
- vartanc&vgcit.com
-49351
- STIVCX
- Ivan Athanazio
- ivan.athanazio&gmail.com
-49352
- Hines Network
- Jason Hines
- jason&hinesnetwork.com
-49353
- Certificate Authority for Presidential Office of Information and Communication Technologies of the Dominican Republic
- BENITO GALAN
- BGALAN&VIAFIRMA.COM
-49354
- ARGYROU MINAS
- ARGYROU MINAS
- minasargyrou&outlook.com
-49355
- Fiskarhedens Trävaru AB
- Ulf Gustavsson
- ulf.gustavsson&fiskarheden.se
-49356
- DQE Communications
- Mike Kelly
- mkelly&dqe.com
-49357
- Hoptroff London Limited
- Lasse Johnsen
- admin&hoptroff.com
-49358
- Tri-State Digital Services
- Jim Wickenhiser
- jim&tristatetheatre.com
-49359
- Enterstrata
- Isaac Johnson
- isaacmjohnson&gmail.com
-49360
- Cord3 Innovations
- Dennis Momy
- dennis.momy&cord3inc.com
-49361
- Pridok AS
- Dag Christensen
- dag&pridok.no
-49362
- tabaracci.org
- Al Tabaracci
- oidadmin&tabaracci.org
-49363
- Unior Hungary Ltd.
- Balazs Tihanyi
- balazs.tihanyi&unior.hu
-49364
- ALFA SATCOM SYSTEMS LLC
- Andrey Zinchenko
- az&alfasatcom.ru
-49365
- Phoenix Online Studios
- Richard Flores
- webmaster&postudios.com
-49366
- visol digitale Dienstleistungen GmbH
- Jonas Renggli
- jonas.renggli&visol.ch
-49367
- inducta++
- Jerko sladoljev
- jerko.sladoljev&inducta.hr
-49368
- Airbus Safran Launchers
- Thomas MEUNIER
- thomas.meunier&airbusafran-launchers.com
-49369
- Neopath Integrated Systems ltda
- Leonardo Alvim Muricy
- leonardo&neopath.com.br
-49370
- VTU Energy
- Miguel Prokop
- miguel.prokop&vtu.com
-49371
- VIA Rail Canada Inc.
- Francois Du Perron
- IT_Security&viarail.ca
-49372
- Apmetrix, Inc.
- Mark Caldwell
- armin&apmetrix.com
-49373
- Meissner AG (formerly 'Daniel Schmitz')
- IT Services
- it&meissner.eu
-49374
- BAITIC SOLUCIONES
- Luis M. Roman Sanchez
- contacto&baitic.com
-49375
- New York City Housing Authority
- Jian Hua Chen
- jianhua.chen&nycha.nyc.gov
-49376
- IPKids
- James Lee
- support&ipkids.com
-49377
- 556075-2825
- Martina Lindman
- martina&nydalatra.se
-49378
- People Come First Informatikai Szakertok Egyesulete
- Ramona Berki
- admin&pcf.hu
-49379
- RGB Spectrum
- Lynton Auld
- lauld&rgb.com
-49380
- The Fastest Dog, Inc.
- Aury G. Friedman
- afriedman&fastestdog.com
-49381
- University of Wollongong
- OID Administrator
- oid-admin&uow.edu.au
-49382
- Engility Corporation
- Administrator
- j.goldberg&engilitycorp.com
-49383
- Riverscape Software
- Brian Mottershead
- development&riverscape.info
-49384
- InfoTest@KinLong
- Palvin Zhu
- palvin&163.com
-49385
- effiPilot
- DUBUS Cyril
- cyril.dubus&effipilot.com
-49386
- Agentil Software
- Ronan BARIOU
- contact&agentil-software.com
-49387
- Empresas Publicas de Medellin E.S.P
- Edwin Alberto Montoya Saldarriaga
- edwin.montoya&epm.com.co
-49388
- Nanjing Jiuyao Networks Technology Co.,Ltd
- Rudy Sun
- rudynj&sina.com
-49389
- Weeden & Co. LP
- Weeden Admins
- oids&weedenco.com
-49390
- Nebbiolo Technologies
- Thiru Narayanan
- thiru&nebbiolotech.com
-49391
- PCs Plus
- Todd Cowman
- todd&pcsplus.biz
-49392
- Think Clever
- Raita Ionut Cristian
- craita&think-clever.com
-49393
- Neetra Srl
- Domenico Ruggiero
- d.ruggiero&neetra.com
-49394
- VidaIdentity
- Ivan Brightly
- webmaster&vidaidentity.com
-49395
- WestTel International
- Robin Erkkila
- robin.erkkila&westtel.com
-49396
- McKean Defense
- Paul Perusse
- pperusse&mckean-defense.com
-49397
- Wizards of Industry B.V.
- Cochise Ruhulessin
- cochise.ruhulessin&wizardsofindustry.net
-49398
- NPCore lnc.
- support email
- support&npcore.com
-49399
- Process-Informatik Entwicklungsgesellschaft mbH
- Werner Sonnentag
- sonnentag&process-informatik.de
-49400
- Borås Energi och MIljö AB
- Farid Dedeic
- farid.dedeic&borasem.se
-49401
- JSC Navigation-Information Systems
- Evgeniy Bolshakov
- bolshakovev&nis-glonass.ru
-49402
- Skogsbrukarna Ek Förening
- Kjell-Åke Åslund
- kjell-ake.aslund&moelven.se
-49403
- ZaPF e.V.
- Technisches Organisationsgremium der Physikfachschaften
- topf&zapf.in
-49404
- shenzhen qibo network co.,ltd
- quanwei liu
- lqw&vpnsoft.net
-49405
- HIGH CONNEXION
- Omar DAROUICHE
- o.darouiche&highconnexion.com
-49406
- Concordia University
- Tim Wier
- cnet.noc&cuchicago.edu
-49407
- Skylark Wireless LLC
- Ryan Guerra
- ryan&skylarkwireless.com
-49408
- ZestFinance
- Kuba Tyszko
- devops&zestfinance.com
-49409
- miniOrange Inc
- Gaurav Sood
- gaurav&miniorange.com
-49410
- Objective:pi LLC
- Network Administration
- hostmaster&objectivepi.com
-49411
- Mindleap
- Dan Rades
- dan.rades&mindleap.io
-49412
- Guenzel IT
- Andreas Günzel
- a.guenzel&guenzel-it.de
-49413
- Telmec Soc. Coop. a r.l.
- Daniele Donnini
- daniele.donnini&telmec.net
-49414
- Windstack IVS
- Giuseppe Aceto
- giuseppe&windstack.io
-49415
- Business Services Organisation
- Michael Harnett
- ictsecuritymanager&hscni.net
-49416
- upSource GmbH
- Daniel Tretter
- dtr&upsource.de
-49417
- Emsyscon Solutions
- Luc Vansteenkiste
- luc.vansteenkiste&emsyscon.com
-49418
- Innovation Place
- Eric Chalifoux
- echalifoux&innovationplace.com
-49419
- Barefoot Networks, Inc.
- Prem Jonnalagadda
- prem&barefootnetworks.com
-49420
- Baylor Scott & White Health
- Robson Strange
- robson.strange&bswhealth.org
-49421
- DMIB Inc.
- Alexandre Gravel
- agravel&dmib.com
-49422
- SeQnet
- Pawel Kunecki
- seqnet&seqnet.pl
-49423
- The Pingry School
- Apu
- apu&pingry.k12.nj.us
-49424
- GDT Advanced Solutions
- Ben McClure
- ben.mcclure&gdtadvancedsolutions.com
-49425
- Foolean.org
- Bennett Samowich
- support&foolean.org
-49426
- Cnergee Technologies Pvt. Ltd.
- Suvarna Kulkarni
- suvarnak&cnergee.com
-49427
- Shopping24 Internet Group
- Dr. Björn Schäfers
- domreg&s24.com
-49428
- Mobeewave
- Raphael Hudon-Voyer
- rhv&mobeewave.com
-49429
- MRSG Advisors
- Manvir Randhawa
- manvirr&yahoo.com
-49430
- Treatment.com
- Seonho Kim
- seonho.kim&outlook.com
-49431
- UNION PAPELERA MERCHANTING, S.L.
- DAVID RIBALTA
- dribalta&unionpapelera.es
-49432
- RAMSAY Générale de Santé
- Christophe MAIRA
- C.MAIRA&ramsaygds.fr
-49433
- Path
- Dean Chandler
- dchandler&path.org
-49434
- cusy GmbH
- Peter Hormanns
- peter.hormanns&cusy.io
-49435
- Fundamentia Business Consulting SL
- Francisco Morales
- francisco.morales&fundamentia.com
-49436
- Joe Gedeon
- Joe Gedeon
- joe.gedeon&gmail.com
-49437
- Prodemge
- Elmar Lacerda
- elmar&prodemge.gov.br
-49438
- TalkTalk Technology
- Paul Chattaway
- pchattaway&talktalkplc.com
-49439
- Altitude - Phenix/Projet3
- GUITARD Ancelin
- ancelin.guitard&altitude.fr
-49440
- Vasgard GmbH
- Gregor Best
- support&vasgard.com
-49441
- OTLIS - Operadores de Transportes da Região de Lisboa, A.C.E.
- Alexandre Domingues
- geral&otlis.pt
-49442
- IOOOTA Srl
- Roberto Pierpaoli
- roberto&iooota.com
-49443
- European Court of Auditors
- Rodrigo Vicente MANZANAL RUIZ
- eca-dit-netsec&eca.europa.eu
-49444
- Delypse
- Frédéric Bron
- frederic.bron&delypse.com
-49445
- Emeritus Solutions Ltd
- Martin Bishop
- webhead&emeritus-solutions.com
-49446
- Gordion AB
- Måns Gotare
- mans.gotare&gordion.se
-49447
- ITAhM
- eui-jin jeon
- itahm2014&gmail.com
-49448
- Sprylogic Technologies Ltd.
- Mukhtar Khan
- mukhtar.khan&sprylogic.com
-49449
- International Telecom Assistance, sa
- AGUIE AGUIE GHISLAIN ARNAUD
- aguie&ita-ci.com
-49450
- DGAC SNA-RP
- HARIB
- brahim&harib.fr
-49451
- Molina Healthcare Inc
- Darrell Wright
- darrell.wright&molinahealthcare.com
-49452
- Dmitriy Merkushov
- Dmitriy Merkushov
- d.merkushov&gmail.com
-49453
- Crab Cove Limited
- Steven Griffiths
- servernet1997&hotmail.com
-49454
- Lobster Bay Limited
- Steven Griffiths
- servernet1997&hotmail.com
-49455
- Oncology and Hematology Associates of South Texas, P.A.
- Veronica Procasky
- vprocasky&aol.com
-49456
- Rottneros AB
- Pasi Toivanen
- val.support&rottneros.com
-49457
- CM IT Services
- Corrado Mulas
- it-services&corradomulas.ml
-49458
- Selective Insurance Company of America
- Robert England
- robert.england&selective.com
-49459
- Baker, Donelson, Bearman, Caldwell & Berkowitz, PC
- Jason Kopacko
- jkopacko&bakerdonelson.com
-49460
- Priora AG
- Rüetschi Werner
- werner.rueetschi&priora.ch
-49461
- Xeen.UK LTD.
- Alex Wright
- alex&xeen.uk
-49462
- Crinkleit
- Scott Crilly
- scottcrilly&crinkleit.com
-49463
- Severn Trent Services
- Scott Crilly
- scott.crilly&stservices.co.uk
-49464
- Darktide
- Jenna Matthews
- jrm&darktide.net
-49465
- Yuki Enterprises
- Jye Karl-Perry
- snowleopard&amused.com.au
-49466
- Helse Midt-Norge IT
- Tore Tetliaune
- tore.tetliaune&hemit.no
-49467
- LOGISMAN ARAGÓN, S.L.
- JAVIER LÓPEZ LORDA
- jlopez&logisman.es
-49468
- PrJSC "MTS UKRAINE"
- Hablo Vladimir
- vhablo&vodafone.ua
-49469
- WIT
- TangQianfeng
- tqf&czwit.com
-49470
- Community Life GmbH
- Joerg Aulich
- jaulich&communitylife.de
-49471
- bayernets GmbH
- Reinhard Melzer
- reinhard.melzer&bayernets.de
-49472
- Photo-Sonics, Inc
- Cecil Rudenberg
- crudenberg&photosonics.com
-49473
- Weydstone LLC
- Kai Johnson
- info&suttonabinger.com
-49474
- CKUA Radio Network
- Ryan Breitkreitz
- rbreitkreitz&ckua.com
-49475
- suckleast.org Hosting Collective
- Stefan Lücke
- iana-pen&glaxx.net
-49476
- Session Control LLC
- Gerald Lester
- glester&sessioncontrol.com
-49477
- Vault Investing
- Brent Jones
- brent&getvault.com
-49478
- funatic b.v.
- William Janssen
- william.janssen&funatic.nl
-49479
- Damian Murphy Private LDAP Development
- Damian Murphy
- murff&warlock.org
-49480
- Williams-Sonoma, Inc. (WSI)
- Chris King
- CKing3&wsgc.com
-49481
- Vonamic GmbH
- Kevin Konrad
- snmp&vonamic.com
-49482
- OEDIV Oetker Daten- und Informationsverarbeitung KG
- Sebastian Kerssen
- sebastian.kerssen&oediv.de
-49483
- NYS Unified Court System
- Brandon Koch
- bkoch&nycourts.gov
-49484
- Foundation National intellectual development
- Alexander Scherbachev
- als&cnir.ru
-49485
- Behr Paint
- Darrin Frazer
- dfrazer&behr.com
-49486
- Activx Biosciences
- Paul Chen
- paulc&activx.com
-49487
- NTT DATA, Inc.
- Vartan Chukhadarian
- Vartan.Chukhadarian&nttdata.com
-49488
- Vinton Steel LLC
- Rene Salayandia
- renefurcio&hotmail.com
-49489
- Winmate INC.
- Bill Lin
- bill_lin&winmate.com.tw
-49490
- Compello
- Efe Erdogru
- efe.erdogru&compello.com.tr
-49491
- Epec Oy
- Mr. Kari Ahvenlampi
- kari.ahvenlampi&epec.fi
-49492
- Danphone A/S
- Kresten Tolstrup
- kt&danphone.com
-49493
- Türkiye Cumhuriyeti İçişleri Bakanlığı İller İdaresi Genel Müdürlüğü
- Murat Tamer Ataol
- m.tamer.ataol&icisleri.gov.tr
-49494
- TSI Solutions
- David Grace
- dgrace&4tsi.com
-49495
- Textron Systems - Electronic Systems
- Nathan Twombly
- ntwombly&textronsystems.com
-49496
- BA-POWER ELECTRONICS INC.
- Peter Lee
- bapower&ms39.hinet.net
-49497
- Immucor Inc
- Joe DeNicola
- jdenicola&immucor.com
-49498
- engelbert strauss GmbH & Co. KG
- Matthias Fischer
- oid-admin&engelbert-strauss.de
-49499
- VCAT Consulting GmbH
- Patrick Schwalger
- admin&vcat.de
-49500
- CODIUM Company Limited
- Htet Naing Aung
- htet_naing.a&codium.co
-49501
- UGO3D INC.
- Peter Yoo
- support&ugo3d.com
-49502
- NRPL Aero Oy
- Alexey Dudkov
- alexey.dudkov&nrpl.aero
-49503
- North Atlantic Industries, Inc.
- Paul Reid
- preid&naii.com
-49504
- De Dietrich SAS
- Pascal Muckensturm
- Pascal.Muckensturm&DeDietrich.com
-49505
- Payboost
- Eric Machabert
- eric.machabert&payboost.com
-49506
- GE Transportation
- Ryan Hoffman
- ryanmarcus.hoffman&ge.com
-49507
- Air Canada
- Mohamad Mneimneh
- mohamad.mneimneh&aircanada.ca
-49508
- FidusCrypt GmbH
- Andrey Ludwig
- a.ludwig&fiduscrypt.com
-49509
- Frank Engler
- Frank Engler
- oid&engleer.de
-49510
- Pragmatik
- Geoffrey JARASSIER
- gjarassier&pragmatik.fr
-49511
- Arcom Digital, LLC.
- Gregory A. Tresness
- tresness.greg&arcomlabs.com
-49512
- ipHouse
- Doug McIntyre
- merlyn&iphouse.net
-49513
- AgResearch Ltd
- Alastair Sheppard
- alastair.sheppard&agresearch.co.nz
-49514
- EPK Solutions
- Onnig Kouyoumdjian
- onnig&epk-solutions.com
-49515
- SQLTreeo
- Danny Riebeek
- d.riebeek&databaseonline.nl
-49516
- Jesse Friedman
- Jesse Friedman
- jesse&jesse.ws
-49517
- Implaneo Dental Clinic Regensburg
- Christian Fohmann
- edv&implaneo.com
-49518
- turbosoft
- John Chen
- tbsoftinc&gmail.com
-49519
- PremiumSoft CyberTech Limited
- Lin Wa Wing
- adp&navicat.com
-49520
- Kauer GmbH
- Christoph Molenda
- christoph.molenda&kauer.de
-49521
- George Hogan Sound Ltd
- George Hogan
- george&georgehogan.co.uk
-49522
- SPIDYA Yazılım A.Ş.
- Ali YAZICI
- ali.yazici&spidya.com
-49523
- CANCOM GmbH
- Marc Bergner
- marc.bergner&cancom.de
-49524
- MiE GmbH
- Dr. Hanno Schumacher
- schumacher&miegermany.de
-49525
- Avatier Corporation
- Billy Barron
- billyb&avatier.com
-49526
- Massaraksh
- Valentin Kulesh
- valentin.kulesh&gmail.com
-49527
- Sigterm AS
- Mikal Villa
- mikalv&sigterm.no
-49528
- Menzell & Döhle GmbH & Co. KG
- Martin Lormes
- helpdesk&menzelldoehle.de
-49529
- ALTEN SA
- Christophe DECOMBE
- christophe.decombe&alten.com
-49530
- MSC Trustgate.com Sdn. Bhd.
- Ikmal Salleh
- operation&msctrustgate.com
-49531
- True Partner Singapore Holding PTE. LTD.
- Martin Meuwese
- m.meuwese&truepartner.org
-49532
- Plustek Inc.
- Chris Lin
- chrislin&plustek.com.tw
-49533
- Banco de Credito Social Cooperativo S.A.
- Francisco Navarro
- francisco.navarro&bcc.es
-49534
- jagdish chand
- jagdish chand
- jkumar852&gmail.com
-49535
- MaxLinear, Inc.
- Ken Chu
- kchu&maxlinear.com
-49536
- NetCom Satelital S.A.
- Claudio J. Peña
- claudio&netcomsatelital.com.ar
-49537
- Rewards LLC
- Adam Browning
- adam&savvysoftwaremt.com
-49538
- Mencom Corporation
- John J. Bisson
- john.bisson&mencom.com
-49539
- Communications & Power Industries, ASC Signal Division
- Douglas A Gribben
- douglas.gribben&cpii.com
-49540
- SSE
- Wayne Stidolph
- wayne&stidolph.com
-49541
- Computerhaus EDV-Handels GmbH
- Heiko Steindl
- heiko&kom.at
-49542
- DCM TECNOLOGIA
- DANIEL PECHMANN
- daniel&dcmtech.com.br
-49543
- Unimatica S.p.A.
- Gestione Sistemi Unimatica
- sistemi&unimaticaspa.it
-49544
- Nathan Balch
- Nathan Balch
- PrivateEnterpriseNumber.Admin&NathanBalch.com
-49545
- Universidad de Mendoza
- Departamento de tecnología
- infraestructura&um.edu.ar
-49546
- Wilhelm Eimke oHG
- Michael Eimke
- edv&eimke.com
-49547
- OpenIQ Pty Ltd
- Mark van Kerkwyk
- mark&vk.net
-49548
- FUJIAN GELU POWERTRONICS CO.,LTD.
- Vinter Wu
- vinter.wu&cn.ssemco.com
-49549
- GmSSL
- Zhi Guan
- guanzhi1980&gmail.com
-49550
- LG Uplus
- Jinseok, Kang
- realstone&lguplus.co.kr
-49551
- vorg.eu
- Felix Serbanoiu
- felix.serbanoiu&icloud.com
-49552
- Snowflake Software Ltd.
- Andy Newton
- oid-master&snowflakesoftware.com
-49553
- Radis Ltd
- Mikhail Golovenko
- miha-gol&mail.ru
-49554
- WIN-T
- Paul Boin
- paul.r.boin.ctr&mail.mil
-49555
- Stadt Jessen (Elster)
- Sven Wewior
- info&jessen.de
-49556
- BRUNO BADER GmbH + Co. KG
- Patrick Bäzner
- pki&bader.de
-49557
- CONDAT S.A.S.
- DANIEL ESCORIZA SANTIAGO IT. DPT LECTA GROUP
- daniel.escoriza&lecta.com
-49558
- TechCERT
- Harshana Porawagama
- harshana&techcert.lk
-49559
- Cancer Care Specialists
- Brett Slizeski
- brett.slizeski&ccsreno.com
-49560
- Gemeente Purmerend
- Sander Kornman
- systeembeheer&purmerend.nl
-49561
- EAD Systeme GmbH
- Georg Eutermoser
- support&ead-systeme.de
-49562
- Frankfurter Verein für soziale Heimstätten
- Dirk Westfal
- it&frankfurter-verein.de
-49563
- Shure Incorporated
- Kehang Wu
- wu_kehang&shure.com
-49564
- YumaWorks, Inc.
- Andy Bierman
- andy&yumaworks.com
-49565
- Universitate Alexandru Ioan Cuza din Iasi, Facultatea de Informatica
- Alexandru Ocheana
- arhanghel&info.uaic.ro
-49566
- Salish Cancer Center
- Lauree Ombrellaro
- Lauree.ombrellaro&salishcancercenter.com
-49567
- Norrskog Wood Products AB
- Jim Salvin
- jim.salvin&norrskog.se
-49568
- jRedes Ltda ME
- Jardson Thome
- redes&jardsont.com.br
-49569
- Surgical Information Sciences
- Danny Askarov
- danny.askarov&surgicalis.com
-49570
- Jonathan Wilbur
- Jonathan Wilbur
- jwilbur&jwilbur.info
-49571
- Elektrotechnik und Elektronik Oltmann GmbH
- Stefan Springer
- s.springer&eeo-gmbh.de
-49572
- Precision Castparts Corp
- Network Operations
- pccnoc&precastcorp.com
-49573
- eVolution Networks
- Tomer Greenwald
- Tomer.greenwald&evolution-networks.com
-49574
- Modern Language Association
- Eric Knappe
- eknappe&mla.org
-49575
- El-Abbadi School
- Jacob El-Abbadi
- jacob.elabbadi&elabbadischool.com
-49576
- K.T.E.C.
- Kai Ryu
- kai1103&gmail.com
-49577
- GlobalCom
- Praneet Rai
- praneet&globalcom.in
-49578
- OON GlobalCom Private Limited
- Praneet Rai
- praneet&globalcom.in
-49579
- TCOM L.P.
- Matt Fields
- tclo&tcomlp.com
-49580
- Samuel Bächler Informatik
- Samuel Bächler
- baechler&boeser.ch
-49581
- Sensify Security
- Jeffrey Venable, Sr.
- jeff&sensify-security.com
-49582
- Vapor Team
- Thomas Lewis
- thomaslewis&0xaa55.me
-49583
- Txture GmbH
- Thomas Trojer
- thomas.trojer&txture.io
-49584
- PacketX Technology Ltd.
- Tony Wang
- tony.wang&packetx.biz
-49585
- InoftTech
- Demakov Nikita
- demakoffnik&gmail.com
-49586
- Ulf Andersson Åkeri AB
- Anders Andersson
- anders&uaakeri.se
-49587
- Prästlönetillgångarna i Uppsala stift
- Stefan Granath
- stefan.granath&svenskakyrkan.se
-49588
- CONET Kft.
- Sandor Meczler
- smeczler&conet.hu
-49589
- Auto-Maskin AS
- Leif Algermissen
- la&auto-maskin.com
-49590
- Bobst Mex SA
- Bernard Schuepbach
- bernard.schuepbach&bobst.com
-49591
- TecAlliance GmbH
- Oliver Mittas
- Oliver.Mittas&tecalliance.net
-49592
- Net Research
- Andrzej Gregorczyk
- andgre&netrsr.com
-49593
- ACES
- SCHINIOTAKIS K.
- constantin.schiniotakis&gmail.com
-49594
- The Royal Marsden NHS Foundation Trust
- Simon Bryant
- simon.bryant&rmh.nhs.uk
-49595
- aineton
- rui ma
- 420874062&qq.com
-49596
- Previder BV
- Stefan Broeils
- s.broeils&previder.nl
-49597
- PremiumSoft CyberTech Limited
- LIN WA WING
- adp&navicat.com
-49598
- LANKA NAP INC
- Ruben Rajah
- admin&lankanap.com
-49599
- Bridgeworks Ltd
- Steven Hayter
- development&4bridgeworks.com
-49600
- Vision Valley FZ LLC
- Muhammed Basheer
- products&visionvalley.net
-49601
- Apollo Solar Inc.
- John E. Pfeifer
- johnp&apollosolar.com
-49602
- CertificaEdu
- Ronaldo de Sousa Araujo
- contato&ronaldoaraujo.eti.br
-49603
- LINKTEK Co., LTD.
- Doo-Hwa, Jung
- dhjung&linktek.biz
-49604
- KysinTech
- Xun HAN
- hx&kysintech.com
-49605
- MONISTOR
- Taras & Iegor Nabok
- egorn2007&yandex.ru
-49606
- First American Bank
- Jeff Noga
- jnoga&firstambank.com
-49607
- Learning Equality
- Jamie Alexandre
- jamie&learningequality.org
-49608
- Kofola Ceskoslovensko a.s.
- Roman Birtek
- ms.admins&kofola.cz
-49609
- Picomass Limited
- Martin Hayes
- Martin.Hayes&picomass.com
-49610
- d.velop AG
- Thomas Henrichsmann
- thomas.henrichsmann&d-velop.de
-49611
- molch
- Thomas Felder
- tf&molch.at
-49612
- Orange Espagne, S.A.U.
- Roberto Martín
- roberto.martin&orange.com
-49613
- Fremont Bank
- Chris Lane
- christopher.lane&fremontbank.com
-49614
- Caritas der Dioezese St. Poelten
- Stefan Teklits
- edv&stpoelten.caritas.at
-49615
- Metro Vancouver Regional District
- Alfred Ho
- alfred.ho&mvrd.ca
-49616
- Bienestar
- Juan José Zamora Mejía
- jjzamoram&gmail.com
-49617
- Controlid Industria e Comercio de Hardware e Servicos de Tecnologia Ltda
- Albert Nissimoff
- iana&controlid.com.br
-49618
- Cubic Controls
- Simon Churcher
- simon&cubiccontrols.com
-49619
- SOJO University
- Akira Tagami
- tagami&cc.sojo-u.ac.jp
-49620
- ePatientFinder
- Rob Moore
- rmoore&epatientfinder.com
-49621
- Synetica Limited
- David Norman
- info&synetica.net
-49622
- ASRock Rack Incorporation
- Jeff Chan
- jeff9_chan&asrockrack.com
-49623
- Bragafvl
- Wyatt Miler
- wmiler1&gmail.com
-49624
- Loews Corporation
- Wing Chiu
- IT-TechSvcs&loews.com
-49625
- China Telecom
- shi meng
- shimeng&chinatelecom.cn
-49626
- CITIC GUOAN BROADCOM NETWORK CO.,LTD
- Liuzhenfeng
- liuzhenfeng&citicguoanbn.com
-49627
- Guangzhou Ziyuan Information Technology Co.,Ltd.
- chenxianhong
- chenxh&zyserv.com.cn
-49628
- Penumbra
- Lucas Gallagher
- lgallagher&my.wctc.edu
-49629
- AlphaTesters
- Praneet Rai
- administrator&alphatesters.com
-49630
- Instituto Superior de Derecho y Economia, S.A.
- Alfonso Pueyo
- alfonso.pueyo&isdemasters.com
-49631
- Arcad Software
- Raphael Manchon
- rmanchon&arcadsoftware.com
-49632
- BeeZeeLinx
- Renan Le Padellec
- rlepadellec.bzl&gmail.com
-49633
- CESBIO
- ROBERT
- yann.robert&obs-mip.fr
-49634
- TIMWE Group HQ – TOTAL TIM Servicos de Telecomunicacoes e Afins, Unipessoal Lda
- Rui Alexandre Ferreira
- rui.ferreira&timwe.com
-49635
- Schwan-STABILO Cosmetics GmbH & Co. KG
- Robert Hans
- robert.hans&schwancosmetics.com
-49636
- SUNY-ESF
- Help Desk
- helpdesk&esf.edu
-49637
- Kostiantyn Osypenko
- Kostiantyn Osypenko
- k.osypenko&gmail.com
-49638
- Kekesed Asmasta
- Mealkuwat D. Hayashi
- mealkuwat&publik.kekesed.id
-49639
- Stampa Sistem
- Sasa Antic
- sasa.antic&stampa.rs
-49640
- AIRTAG
- Cyril Porteret
- iana-pen&airtag.com
-49641
- VPS Holdings Ltd
- Group IT
- itadmin&vpsgroup.com
-49642
- Innotech Controls
- Simon Hoer
- simon&innotech.com.au
-49643
- Grand Rapids Public Schools
- Ruth Michels
- michelsr&grps.org
-49644
- cenetec
- Pierre Kraschinski
- pierre.kraschinski&cenetec.de
-49645
- Flanga
- Moritz Wirth
- mw&flanga.io
-49646
- SCHÄFER Ausstattungs-Systeme GmbH
- Christoph Lammers
- clammers&schaefer-it-systems.de
-49647
- Substrata Systems LLC
- Tim Lukasiewicz
- tim&substrata.io
-49648
- zcsevcik
- Radek Sevcik
- zcsevcik&gmail.com
-49649
- Skyport Systems, Inc
- Ted Treiber
- ttreiber&skyportsystems.com
-49650
- Vanasse Hangen Brustlin Inc
- Rocky Cheung
- rcheung&vhb.com
-49651
- Erste Group Card Processor d.o.o.
- Tomislav Živković
- tomislav.zivkovic&egcp.com
-49652
- Infrontec GmbH
- Juergen Mueller
- juergen.mueller&infrontec.de
-49653
- WIKON Kommunikationstechnik GmbH
- Dennis Rech
- it&wikon.de
-49654
- JSC Varutis
- Evaldas Dobravolskas
- info&varutis.lt
-49655
- RFmondial GmbH
- Jens Schroeder
- schroeder&rfmondial.de
-49656
- Cohen & Grigsby, P.C.
- Justin Dodd
- jdodd&cohenlaw.com
-49657
- NEC Solution Innovators, Ltd.
- Yoshinori Nishino
- yos-nishino&ys.jp.nec.com
-49658
- BIIK SibSUTIS
- Artem Matveev
- ianapen&biik.onmicrosoft.com
-49659
- Shanghai Shentong Metro Group Co.Ltd.
- Ming Zhou
- mingzgabriel&163.com
-49660
- MOTEX Inc.
- Akira Nishitani
- akira.nishitani&motex.co.jp
-49661
- Hive13
- Ian Blais
- cto&hive13.org
-49662
- Net4You Internet GmbH
- Stefan Raspotnig
- sraspotnig&net4you.net
-49663
- Belbohemia, IOOO
- Sergei Grebenchikov
- sg&belbohemia.com
-49664
- Fundació Centre de Seguretat de la Informació de Catalunya
- David Forner Griñó
- msalinas&bcn.sia.es
-49665
- Tessares SA
- Raphaël Bauduin
- account&tessares.net
-49666
- Gribskov Kommune
- Benny Rasmussen
- it-kontakt&gribskov.dk
-49667
- Weda Skog AB
- Anders Bergström
- anders.bergstrom&wedaskog.se
-49668
- maxdoom.com
- Nico Hoffmann
- info&maxdoom.com
-49669
- DB Station&Service AG
- David Jähnert
- David.Jaehnert&deutschebahn.com
-49670
- 有时间 (Have time)
- 申华林 (Shen Huolin)
- shl_256&163.com
-49671
- Vnomic, Inc.
- Derek Palma
- dpalma&vnomic.com
-49672
- POWER Engineers, Inc.
- Russel Riley
- noc&powereng.com
-49673
- Capernwray Torchbearers Australia
- Samuel Weirich
- it&capernwrayaustralia.org
-49674
- Marland.IT
- Chris Marland
- chris&marland.it
-49675
- LLC Qualitteq
- Andrey Karpov
- info&qualitteq.ru
-49676
- Agence Nationale de Sécurité des Systèmes d'Information (ANSSI/BF)
- Georges P. LALLOGO
- glallogo&cirt.bf
-49677
- BlackBelt Technology Kft.
- Robert Csakany
- robert.csakany&blackbelt.hu
-49678
- Cogit Studio
- Yohann Prigent
- yohann&cogitstudio.com
-49679
- VLSS
- Dean Bolton
- dean.bolton&vlss-llc.com
-49680
- Binovia Corp.
- John Pell
- jpell&binovia.com
-49681
- Praetorian Group, Inc
- Richard Penshorn
- it&praetorian.com
-49682
- Dittman
- Eric Dittman
- dittman&dittman.net
-49683
- iPhotonix
- Andrew Fullford
- net-coord&iphotonix.com
-49684
- Infinit Group
- Glenn Lim
- glenn&infinit.com.sg
-49685
- Polovnikov LLC
- Alexander Polovnikov
- polovnikov&triadatv.ru
-49686
- Fundação Universidade Regional de Blumenau
- Ana Lucia Anacleto Reis
- anna&furb.br
-49687
- Cormant Inc.
- Paul Goodison
- services&cormant.biz
-49688
- Blue Danube Systems
- Dan Kiewlich
- dan.kiewlich&bluedanube.com
-49689
- Zener Redes
- Angel Granado
- angel.granado&zenerlan.com
-49690
- Fortanix
- Jethro Beekman
- jethro&fortanix.com
-49691
- kd5ahl.org
- Kelsey Smith
- admin&kd5ahl.org
-49692
- SHENZHEN Maisijie NETWORK CO.,LTD
- 张巍 (Zhang Wei)
- zhangwei&msjnet.cn
-49693
- Warner Music Group
- Stelancy D.Lapointe
- Phibog59&yahoo.com
-49694
- IoTium Inc
- Dhruva Narasimhan
- dhruva.narasimhan&iotium.io
-49695
- D & K Co.
- Kevin Smih
- kevin&dk.co
-49696
- WanLiYun Medical Information Technology Co. Ltd.
- Xiaohui Wang
- go2hero&gmail.com
-49697
- Twitch Interactive
- Kevin Smith
- kevins&twitch.tv
-49698
- Sector 7
- Christian Klein
- Sector7&gmx.de
-49699
- Wack.de
- Franz Wack
- pen&wack.de
-49700
- SCHERDEL GmbH
- Michael Schobert
- pki-admins&scherdel.de
-49701
- DofiLoop
- Mikael Schultz
- mikael&dofiloop.com
-49702
- Coc Coc Company Limited
- Duc Nguyen
- ducnm&coccoc.com
-49703
- Nutimaja Ltd.
- Reijo Sirila
- reijo&nutimaja.ee
-49704
- Tieto Sweden Healthcare & Welfare AB
- Joachim Wallberg
- joachim.wallberg&tieto.com
-49705
- Cloudworks AS
- Ragnar Storstrøm
- ragnar.storstrom&cloudworks.no
-49706
- glomex GmbH
- Andreas Sieferlinger
- ops&services.glomex.com
-49707
- Pragmaxus AG
- Harald Grov
- harald.grov&pragmaxus.ch
-49708
- DentalRay
- Andrea Venanzi
- a.venanzi&yahoo.it
-49709
- Universign
- Julien STERN
- julien.stern&universign.com
-49710
- GOMA Elettronica SpA
- Davide Calza
- davide.calza&gomaelettronica.it
-49711
- Polizei Sachsen
- Service Desk
- pki&polizei.sachsen.de
-49712
- Ivins, Phillips & Barker Chartered
- Douglas M. Andre
- dandre&ipbtax.com
-49713
- Instituto Nacional de Metrologia, Qualidade e Tecnologia - INMETRO
- Marcos Trevisan Vasconcellos
- mtvasconcellos&inmetro.gov.br
-49714
- Stannum-Man
- Sean Mullin
- sean_mullin&charter.net
-49715
- Epilog Vermögensverwaltungs AG
- Guido Grygiel
- it-koordination&mayfair-hamburg.de
-49716
- Mayfair Vermögensverwaltungs SE
- Guido Grygiel
- it-koordination&mayfair-hamburg.de
-49717
- Complyify LLC
- Sean Bruton
- sean&complyify.com
-49718
- Catalia Health
- Gary Arnold
- garnold&cataliahealth.com
-49719
- PERK Innovation
- Nicolas Höft
- nicolas.hoeft&perk-innovation.com
-49720
- Australian Access Federation
- Terry Smith
- t.smith&aaf.edu.au
-49721
- LinCom
- Marcin Jabłecki
- jableckim&lincom.waw.pl
-49722
- Perspica Networks
- Jonathan Creasy
- jonathan.creasy&perspica.io
-49723
- ELAS Ltd.
- Sviatoslav Kononenko
- kononenko&elas.com.ua
-49724
- PJSC Rostelecom Volga branch
- Andrey Klimentev
- a.klimentev&volga.rt.ru
-49725
- SSIMWave
- Abdul Rehman
- info&ssimwave.com
-49726
- Tata Communications.Limited (TCL)
- Jacques Sabourin
- jacques.sabourin&tatacommunications.com
-49727
- BA
- Support Team
- support&ba.be
-49728
- Broadquest 2nd system
- may kim
- mhkim&broadquest.co.kr
-49729
- GN Hearing A/S
- Peder Thode
- pthode&gn.com
-49730
- GN Audio A/S
- Peder Thode
- pthode&gn.com
-49731
- Apollo Enterprise Imaging Corp
- Jeff Wang
- jwang&apolloei.com
-49732
- Parahyangan Catholic University
- FTIS Lab Adminstrator
- it&unpar.ac.id
-49733
- SMARTMOVE S.A.
- LUIS OSORIO
- luis.osorio&smartmove.pt
-49734
- Ekeryds trävaruaffär AB
- Leif Nilsson
- Ekerydstra&gmail.com
-49735
- Hwang Group
- Hwang Hyun Chang
- hhc00&hanmail.net
-49736
- Crytus corporation
- Yoshiaki Kurihara
- ykuri&crytus.co.jp
-49737
- Verizon Telematics
- Kalyan Varma Bhupathiraju
- kalyan.varma.bhupathiraju&verizon.com
-49738
- SynTrust Tech International Ltd.,
- Jason Chuang
- Jason_Chuang&SynTrustTech.Com
-49739
- Drivenets
- Gal Zolkover
- gal&drivenets.com
-49740
- Velostrata
- Ady Degany
- ady&velostrata.com
-49741
- xanzex
- Robert Harris
- rjt.harris&gmail.com
-49742
- Hot Chilli Box Ltd.
- Martin Henery
- martin&hotchillibox.com
-49743
- Intouch Games Ltd
- Florin Cazanaru
- florin.cazanaru&mfortune.co.uk
-49744
- Hughes do Brasil
- Fernando Secali
- fsecali&hughes.com.br
-49745
- Ludia inc.
- Olivier Gagnon
- operations&ludia.com
-49746
- ImageWare Systems, Inc.
- Dale Peek
- infotech&iwsinc.com
-49747
- Ricegrowers Limited
- Ben Saxvik
- bsaxvik&sunrice.com.au
-49748
- NearbySensor
- Ricard Maso
- rmaso&nearbysensor.com
-49749
- K&T Host
- Timothy Grondin
- hostmaster&knthost.com
-49750
- Mutualink, Inc
- David Parry
- dparry&mutualink.net
-49751
- Gridscape Solutions
- Ali Imran Najmi
- ali&grid-scape.com
-49752
- CLOUDWAN
- Eugene M. Kim
- eugene.kim&ntti3.com
-49753
- Interactive Northwest Inc
- Matthew Van Gordon
- mvg&interactivenw.com
-49754
- Hydro-Quebec - DPT (Direction Principale Telecom)
- El Hassan Aouzah
- Aouzah.ElHassan&hydro.qc.ca
-49755
- Université Paris Sciences et Lettres
- Mathieu Grelier
- mathieu.grelier&univ-psl.fr
-49756
- Futurecom Systems Group, ULC.
- Samuel J. Grabski
- sam.grabski&futurecom.com
-49757
- USMD
- Sandra Lazala
- lisa.shulin&usmd.com
-49758
- NextgenID
- Dario J Berini
- dberini&nextgenid.com
-49759
- Jacques Technologies
- Heena Kapadia
- heena.kapadia&jacques.com.au
-49760
- Semperficio Software LLC
- Kristopher Mader
- kristopher.mader&semperficio.com
-49761
- Toki Winter
- Toki Winter
- kevin.t.winter&gmail.com
-49762
- PCCW-HKT TSL
- Marco HSU
- marco.mt.hsu&pccw.com
-49763
- Communication Company, NARI Group Corporation Information Technology
- Li Muye
- limuye&sgepri.sgcc.com.cn
-49764
- Spokeo, Inc.
- Tom Chapon
- tchapon&spokeo.com
-49765
- Guangzhou ChengJia Technology Co., Ltd.
- Xie.Shaofeng
- postmaster&o-home.com
-49766
- Radium Networks
- René Mau
- rene.mau&radium-networks.com
-49767
- J. RETTENMAIER & SÖHNE GMBH + CO KG
- Swen Blatt
- Swen.Blatt&jrs.de
-49768
- Infomac Sp. z o. o. Sp. k.
- Andrzej Maciejczyk
- biuro&infomac.pl
-49769
- YADRO
- Artem Ikoev
- a.ikoev&yadro.com
-49770
- NAVIUS
- IT Dept
- support&navius.ru
-49771
- Stiftung Krankenhaus Bethanien für die Grafschaft Moers
- Michael Ziller
- michael.ziller&bethanienmoers.de
-49772
- Zolkover
- gal zolkover
- Gal&zolkover.com
-49773
- SCHOELLERSHAMMER GmbH & Co.KG
- Günter Wirtz
- gwirtz&schoellershammer.de
-49774
- XLIM
- Laurent Hagerman
- svp-pen&xlim.fr
-49775
- Unassigned
- Returned 2017-05-03
- ---none---
-49776
- INSTITUTO DEL CANCER Y ENFERMEDADES DE LA SANGRE, CSP
- MELANIE CUEVAS
- cuevasriveramelanie&hotmail.com
-49777
- Herbrich Corporation
- Jennifer Herbrich
- j.herbrich&aol.de
-49778
- Lin and Associates, Inc.
- Eric LeBlanc
- sysadmin&linandassociates.com
-49779
- Shenzhen Yetelcom Communication Tech. Co.,Ltd.
- Laurence Lu
- LaurenceLu&139.com
-49780
- Oklahoma State University Foundation
- David Laws
- dlaws&osugiving.com
-49781
- MicroGrid Solutions, LLC
- Andrew Stevens
- admin&mgrids.com
-49782
- Author Solutions, LLC
- Michael Kreitzer
- michael.kreitzer&authorsolutions.com
-49783
- SnapRoute Inc.
- Adam Casella
- acasella&snaproute.com
-49784
- FINAO Ltd
- Greg Harbers
- greg.harbers&finao.co.nz
-49785
- Tubular Labs, Inc.
- Christian Verkerk
- operations&tubularlabs.com
-49786
- Cancer Specialists of North Florida
- Kelly Anderson
- kelly.anderson&csnf.us
-49787
- AparnaSystems Inc.
- Alex Henderson
- ahenderson&aparnasystems.com
-49788
- Nova Computer Services LLC
- Scott A Buettner
- buettner.scott&live.com
-49789
- DHW
- Drake Weibel
- drake.weibel&dhwtechnologies.net
-49790
- Marmocet LLC
- Jacob C Conley
- jake&marmocet.com
-49791
- Borel & Barbey
- Roger Noetzlin
- roger.noetzlin&borel-barbey.ch
-49792
- HDS a.s.
- Jozef Juriga
- jozef.juriga&hds.sk
-49793
- Persson Invest skog AB
- Henrik Mårtensson
- henrik.martensson&piskog.com
-49794
- M2MSOFT
- Pierre BINGUY
- pierre.binguy&m2msoft.com
-49795
- Navitel
- Wojciech Mordec
- serwis&navitel.pl
-49796
- ARH Inc.
- Csaba Nagy-Amigó
- csaba.nagy&arh.hu
-49797
- RideOnTrack
- Herman Laenen
- herman.laenen&rideontrack.com
-49798
- BVZ Holding AG
- Martin Ittig
- martin.ittig&mgbahn.ch
-49799
- Visteon Electronics Germany GmbH
- Jo Wilkes
- jwilkes&visteon.com
-49800
- GE Digital
- Don Quigley
- donald.quigley&ge.com
-49801
- PST Public Safety Technologies GmbH
- Herwart Wermescher
- herwart.wermescher&pst.at
-49802
- beyerdynamic GmbH & Co. KG
- Ulrich Roth
- roth&beyerdynamic.de
-49803
- Kopen Secondary School
- Haroun Rashid
- shane&emstret.com
-49804
- Concept Soluções
- Marcio Thomaz Lima
- marcio&conceptsol.com.br
-49805
- Skaro 73k
- Adam Piontek
- damekpiontek&gmail.com
-49806
- St. Luke's Hospital
- Terri Penn
- tpenn&stlukes-stl.com
-49807
- BERNMOBIL
- Thomas Bodenmann
- it.oid-admin&bernmobil.ch
-49808
- Rubica
- Ryan Denniston
- ryan&rubica.com
-49809
- Fitivision Technology Inc.
- Lisa Chen
- fitiadmin&fitivision.com
-49810
- Panalpina World Transport (Holding) Ltd.
- Regis Hambalek
- TrustCenter.PAC&panalpina.com
-49811
- Ecole Supérieure de la Francophonie pour l'Administration et le Management
- Ecole Supérieure de la Francophonie pour l'Administration et le Management
- info&bg.auf.org
-49812
- S&T AG
- Karl Klauda
- karl.klauda&snt.at
-49813
- Sytecs
- Alexander Motsnyy
- info&sytecs.com.ua
-49814
- GWAdriga GmbH & Co. KG
- Kevin Kadalla
- k.kadalla&gwadriga.de
-49815
- FBR Group B.V.
- Jorrit Pouw
- jorrit&fiber.nl
-49816
- SEIKO TIME SYSTEMS INC.
- MAKOTO IIJIMA
- m.iijima&seiko-sts.co.jp
-49817
- Solid Park AB
- Stefan Törnblom
- stefan.tornblom&solidpark.se
-49818
- shikuo technology corpartion
- Cook Xiao
- xcc_shikuo&163.com
-49819
- KST technology co.,ltd
- YouChan So
- ycso1011&i-kst.com
-49820
- TELEOFIS JSC
- Pavel Gololobov
- pavel&teleofis.com
-49821
- New Jersey Hematology Oncology Associates, LLC
- Kimberly Loevy
- admin&njhoa.com
-49822
- Matthias Robert Wiora
- Matthias Robert Wiora
- iana&wiora.co.uk
-49823
- Multapplied Networks Inc.
- Josh Hicks
- josh.hicks&multapplied.net
-49824
- Springs Charter Schools
- Thomas Krause
- tj.krause&springscs.org
-49825
- Canovate Group
- Adil Bek
- adil.bek&canovate.com
-49826
- Drees & Sommer
- Denis Günther
- denis.guenther&dreso.com
-49827
- Digital imaging
- Mario Testoni
- mario.testoni&digitalimaging.it
-49828
- City of York Council
- Ian Towner
- ian.towner&york.gov.uk
-49829
- VTTEK - Viettel Group
- Thanh Doan
- thanhdc3&viettel.com.vn
-49830
- eDoc Group
- Gabriel GIL
- gabriel.gil&edoc.fr
-49831
- Expression Networks LLC
- John Robinson
- jrobinson&expression.net
-49832
- Nero Blanco IT Ltd
- Twan van Beers
- team&neroblanco.co.uk
-49833
- Sierra View Medical Center
- Scott Cheney
- scheney&sierra-view.com
-49834
- Sioui Microsolutions
- Pierre Sioui, Ing. jr,
- pierre&sioui.com
-49835
- Barava, LLC
- Johnny Betz
- bahnbrenner&hotmail.com
-49836
- MirageOS
- Camelus Dromedarius
- oid&mirage.io
-49837
- JIANGSU HENGSION ELECTRONIC S&T CO.,LTD
- Yanping-Zhang
- zhangyp&hengsion.com
-49838
- ZHEJIANG QUANTUM TECHNOLOGIES CO., LTD
- ZhouQi
- zhouqi&qtec.cn
-49839
- Adjara Group Hospitality
- Dimitri Karapetian
- dimitri.karapetian&adjaragroup.com
-49840
- Ponomarevs
- Dmitry Ponomarev
- dmitry&ponomarevs.ru
-49841
- Tecnohold Development Tecnology Ind. e Com. Ltda.
- Daniel de Souza Vicente
- daniel.vicente&tecnohold.com.br
-49842
- Mark Broecker IT-Consulting
- Mark Broecker
- broecker&qsecofr.de
-49843
- Universidad Nacional de Colombia
- Mauricio Tamayo
- emtamayog&unal.edu.co
-49844
- KAHUNA Ventures LLC
- Steve Russell
- srussell&kahunaventures.com
-49845
- Älvdalens Besparingsskog
- Håkan Lissman
- hakan.lissman&besparingsskogen.se
-49846
- Vadsbo Skog AB
- Ulf Eriksson
- Vadsbo.skog&vadsbo-skog.se
-49847
- Logitech, Inc.
- Ken Erbes
- kerbes&logitech.com
-49848
- Heilongjiang ETSkill Technology Co., Ltd.
- JiangXuehao
- 1062881635&QQ.com
-49849
- UNIS-WDC Storage Co., LTD.
- Ray Hu
- ray.hu&uniswdc.com
-49850
- Idiosys
- Wietse Zuyderwyk
- wzuyderwyk&idiosys.net
-49851
- Aria Networks
- Rob Desbois
- pen-admin&aria-networks.com
-49852
- JSC ITC Sistema-Sarov
- Kirill Novichikhin
- kirill.novichikhin&sarov-itc.ru
-49853
- Atea Norge AS
- Thommy Mikkelsen
- thommy.mikkelsen&atea.no
-49854
- BITMARCK TECHNIK GMBH
- Frank Wagenbach
- frank.wagenbach&bitmarck.de
-49855
- IDGENERIS
- RENATO G MACHADO
- contato&idgeneris.com
-49856
- Community Living British Columbia
- Ian Scott
- ian.scott&gov.bc.ca
-49857
- Department of Intellectual Property
- Chaiyaporn Phopan
- chaiyaporn.p&ipthailand.go.th
-49858
- Centracare Health
- Dianna Esplan
- centradomain&centracare.com
-49859
- Lyggeskog AB
- Erland Forsström
- erland&archipelago.se
-49860
- Rönås Skog AB
- Erland Forsström
- erland&archipelago.se
-49861
- Logate
- Predrag Biskupovic
- predrag.biskupovic&logate.com
-49862
- NodNetwork
- Andrew Meyer
- ameyer&nodnetwork.org
-49863
- RESEARCH ON DEMAND LAB
- Oleksii Serikov
- ceo&rdl.global
-49864
- BlueGoat
- Tin Tin Hamans
- t.hamans&bluegoat.me
-49865
- BARTZIS.NET
- Jason Bartz
- bartzjegr&gmail.com
-49866
- Thurnau Industries
- Chris Drosos
- c&chateau76.net
-49867
- Kforce, Inc.
- Jay Astell
- hostmaster&kforce.com
-49868
- Pizza Max
- Orhan Gensch
- info&pizzamax-spandau.de
-49869
- TrowLink
- Evan Trowbridge
- admin&trowlink.net
-49870
- APIIDA AG
- Stefan Schaffner
- stefan.schaffner&apiida.com
-49871
- OpenBMC Project
- Patrick Williams
- patrick&stwcx.xyz
-49872
- McKay Brothers, LLC
- Ralph Childers
- Ralph.Childers.IANA&mckay-brothers.com
-49873
- Thales Services France Agora-t
- RUGET Frédéric
- olivier.gintrand&thalesgroup.com
-49874
- friedlmaier.net
- Daniel Friedlmaier
- daniel&friedlmaier.net
-49875
- Advocate Health and Hospitals Corporation
- Stephen Krug
- steve.krug&advocatehealth.com
-49876
- Vexata Inc.
- Venkatesh Krishnamurthy
- venkatesh&vexata.com
-49877
- Skylads Ltd
- Soufian Aboulfaouz
- soufian&skylads.com
-49878
- Wanless Systems Limited
- Matt Wanless
- matt&wanless-systems.com
-49879
- Gorilla Technology
- PaulLuo
- mis&gorilla-technology.com
-49880
- wevcode
- Elias Werberich
- elias&werberich.de
-49881
- Prismview
- Jared Yelton
- jyelton&prismview.com
-49882
- Synanetics Ltd
- Robert Hickingbotham
- robert&synanetics.com
-49883
- MES Solutions by ASTOR
- Kamil Prejs
- kamil.prejs&astor.com.pl
-49884
- Praetors AG
- Costin Enache
- costin&praetors.ch
-49885
- Wisscot
- David Scott
- contact&wisscot.com
-49886
- LensRentals.com
- Will Glynn
- will&lensrentals.com
-49887
- MySCS
- Timothy Nothdurft
- support&myscs.com.au
-49888
- SEEK LIMITED
- Domain Administrator
- skdns&seek.com.au
-49889
- BobsterCorp
- Jason Tung
- jasontung&bobster.co
-49890
- Choptank Electric Cooperative
- Deni Dorsey
- denid&choptankelectric.coop
-49891
- Hubei Keenward Engineering Co.,Ltd.
- Li Le
- xiagjiu2gai&163.com
-49892
- ProcessUnity
- Eric Kemp
- eric.kemp&processunity.com
-49893
- Trimoz Technologies
- Lou Simard
- lsimard&trimoz.com
-49894
- Tom W Wolf
- Tom W Wolf
- tomwwolf&gmail.com
-49895
- ZXW Networks Co., Ltd.
- Bin Zhao
- zhaobin_0516&163.com
-49896
- Fireglass
- Danny Rehelis
- danny&fire.glass
-49897
- TrueVolve Technologies
- Steyn Geldenhuys
- steyn&truevolve.technology
-49898
- PROMSVYAZKOMPLEKT LLC
- Denis Peretrukhin
- peretruhin&pskt.ru
-49899
- stone IT SOLUTIONS
- Roman Steininger
- roman.steininger&stone-it.at
-49900
- Rahandusministeeriumi Infotehnoloogiakeskus
- Raimo Pinding
- raimo.pinding&rmit.ee
-49901
- LDA Audio Tech
- Juande Sánchez
- jdsanchez&lda-audiotech.com
-49902
- PANSOMA GmbH
- Administrator
- office&pansoma.at
-49903
- Petrolink International Ltd
- Robert Bruce
- robert.bruce&petrolink.com
-49904
- telisca
- Jean-Marc LACOSTE
- jmlacoste&telisca.com
-49905
- OOO KONTINENT
- Perepelkin Aleksei
- perepelkin.a&kontinent-spb.ru
-49906
- Hanning
- Rainer Beermann
- vtm&hanning-gim.com
-49907
- Phasor Solutions Ltd
- Matthew Wells
- matthew.wells&phasorsolutions.com
-49908
- Nuance Communications, Inc.
- Jason Qualkenbush
- jason.qualkenbush&nuance.com
-49909
- BNP Paribas Real Estate Hungary
- Attila Kovari
- attila.kovari&bnpparibas.com
-49910
- Gonščákovci
- Stanislav Gonščák
- stanislav&gonscak.sk
-49911
- Alliance Entertainment
- Michael J. Prentice
- michael.prentice&aent.com
-49912
- Moose and Wombat
- Rian Aldridge
- rian&mooseandwombat.com
-49913
- kioriy network
- Yuta Okubo
- kioriy95&kioriy.net
-49914
- SAKO TECHNOLOGIES LIMITED
- Zidago Sako
- zst&sakotechnologies.co.uk
-49915
- Los Angeles Department of Water & Power
- David Chwa
- david.chwa&ladwp.com
-49916
- ESTECH International
- Inseok Choi
- ischoi&es-tech.com
-49917
- MNP LLP
- Justin Van Niejenhuis
- justin.vanniejenhuis&mnp.ca
-49918
- UNATEC ICT, S.L.
- Raúl Gil García
- info&unatec.es
-49919
- SQUELCH INC.
- Bahman Safinejad
- Bahman.Safinejad&squelch.io
-49920
- VITOGAZ Switzerland AG
- Yann-Amaël Aubert
- it.service&vitogaz.ch
-49921
- OLZETEK, Inc.
- Kyeong-Min Park
- kyeongmin.park&olzetek.com
-49922
- Aron AG
- Peter Strauss
- p.strauss&aron-ag.com
-49923
- VELANKANI ELECTRONICS PVT. LTD.
- GIRISH ANAND KALELE
- GKALELE&VELANKANIGROUP.COM
-49924
- whiteneng
- Yong-Hwan Kim
- whiteneng&gmail.com
-49925
- Figeas SA
- Kevin Taillens
- ktaillens&figeas.ch
-49926
- H&D International Sp. z o.o. Oddział w Polsce
- Mikołaj Wieczorkiewicz
- mww&hud.pl
-49927
- Oregon Department of Transportation
- Karina Stewart
- ODOTSecurityProgram&odot.state.or.us
-49928
- Nomad Global Communication Solutions
- Brett Bowden
- brett.bowden&nomadgcs.com
-49929
- Rubrik, Inc
- Peter J. Milanese
- peterm&rubrik.com
-49930
- Zollner Elektronik AG
- Andreas Hausner
- admin&zollner.de
-49931
- Metacode
- Wiktor Kwapisiewicz
- contact&metacode.biz
-49932
- Deerfield Academy
- William Summers
- wsummers&deerfield.edu
-49933
- Alpha Med Physician Group LLC
- Steve Bainaka
- steve_bainaka&alphamedphysicians.com
-49934
- Cellnetrix GmbH
- Vladimir Nagin
- vnagin&cellnetrix.com
-49935
- Thought Through Software, Inc.
- Corporate President
- pen.iana.org&bairdbunch.com
-49936
- The AME Group
- Justin Hack
- jhack&theamegroup.com
-49937
- bg nerilex
- bg nerilex
- bg&nerilex.org
-49938
- Azapp Software
- Cristiano Fernandes
- cristiano&azapp.net
-49939
- nyx-network
- Mickael Winschel
- contact&nyx.cx
-49940
- Sagio A/S
- Svend Meyland Nicolaisen
- smn&sagio.com
-49941
- ReadyNet Solutions
- David Salick
- sslca&readynetsolutions.com
-49942
- myspot.at
- Martin Tomanec
- martin+iana&myspot.at
-49943
- Tamseng
- Mingyu Kim
- mingyu&tamseng.co.kr
-49944
- City of Toronto
- Andrew Chan
- abchan&toronto.ca
-49945
- Fastly, Inc.
- RIR Administrator / Thomas Daly
- rir-admin&fastly.com
-49946
- Nymi
- Jonathan Sau
- jsau&nymi.com
-49947
- ACH Colombia SA
- Diego Jaramillo
- administradoresseguridad&achcolombia.com.co
-49948
- eWitness Italia Srl
- Eleonora Giardino
- eleonora.giardino&ewitness.eu
-49949
- Calvert County Government
- John Silcox
- silcoxjd&co.cal.md.us
-49950
- MeetNow! GmbH
- Patrick Schneider
- patrick.schneider&meetnow.eu
-49951
- Jaramillo
- Diego Jaramillo
- ddjaramillo&outlook.com
-49952
- DATA TECH INTERNATIONAL DOO
- Goran Todorov
- office&dti.rs
-49953
- Spg Controls Pty Ltd
- Myles Rennick
- mylesr&spgcontrols.com
-49954
- Forimp AB
- Eric Gäverth
- info&forimp.se
-49955
- Martin Handl
- Martin Handl
- info&szarafinski.de
-49956
- ReiseBank AG
- Patrick Baumann
- patrick.baumann&reisebank.de
-49957
- Diginext
- Aurélie Trautmann
- aurelie.trautmann&diginext.fr
-49958
- Burgergemeinde Bern
- Patric Bartl
- zi&bgbern.ch
-49959
- inDenova SL
- Jordi Gisbert Rodas
- jgisbert&indenova.com
-49960
- Ericsson DE - MS/IT
- Hermann Maurer
- hermann.maurer&ericsson.com
-49961
- MindCompute Inc.
- Praveen Srinivasan
- praveen.srinivasan&mindcompute.com
-49962
- Magic Code Co., Ltd.
- Thanate Dhirasakdanon
- thanated&magic-code.com
-49963
- Belarusian State University
- Dimitry Dvorcovoy
- dvorc&bsu.by
-49964
- Bobby's Foods Ltd
- Christopher Cowley
- registrations&bobbysfoods.co.uk
-49965
- Neova AB
- Christer Danneskog
- christer.danneskog&neova.se
-49966
- Herbrich Corporation
- Aleksandar Herbrich
- aleksandar&herbrich.biz
-49967
- Värendskog AB
- Erland Forsstrom
- Erland&archipelago.se
-49968
- Tyfone Inc
- Warren Bebout
- warren.bebout&tyfone.com
-49969
- Miramar Networks
- Gene Swank
- geneswank&miramarnetworks.com
-49970
- s IT Solutions
- Thomas Schiesterl
- thomas.schiesterl&s-itsolutions.at
-49971
- Hedmark IKT
- Bjørn Are Hansen
- Bjorn.Are.Hansen&hedmark-ikt.no
-49972
- RunSDN
- Alexey Elin
- aelin&runsdn.com
-49973
- FancyGuy Technologies
- Steve Buzonas
- sbuzonas&fancyguy.com
-49974
- Vlinder Software
- Ronald Landheer-Cieslak
- rlc&vlinder.ca
-49975
- Bon Secours Health System
- Arpad Rohrsetzer
- ADMGT&bshsi.org
-49976
- E8 storage
- Danny Melamed
- danny&e8storage.com
-49977
- West Virginia State Tax Department
- Jonathan Lipscomb
- jonathan.k.lipscomb&wv.gov
-49978
- Universidade do Estado de Santa Catarina - UDESC
- Jose Eduardo Giacomelli
- jose.e.giacomelli&udesc.br
-49979
- BigRentz
- Matthew Evans
- ianamaster&bigrentz.com
-49980
- ExampleCompany
- Jan Hakl
- janhakl1456&gmail.com
-49981
- IFBLE SOLUCIONES
- Juanra Posada
- juanra.posada&ifble.com
-49982
- Medtronic RTG
- Tom W Wolf
- tom.w.wolf&medtronic.com
-49983
- Luminate Wireless
- Albert Pang
- albert&luminatewireless.com
-49984
- Arecont Vision
- Alex Krul
- akrul&arecontvision.com
-49985
- Franklin Community Schools
- Quyen Nguyen
- nguyenq&franklinschools.org
-49986
- BAE Systems Inc.
- Robert Schwendinger
- robert.schwendinger&baesystems.com
-49987
- GHIGHO
- Raoul Signorile
- raoul&signorile.it
-49988
- Bundeseisenbahnvermoegen
- Anton Babel
- anton.babel&bev.bund.de
-49989
- Peloton Technology
- John Muth
- jmuth&peloton-tech.com
-49990
- UTISCP
- Ruediger R. Asche
- rac&ruediger-asche.de
-49991
- Smart Integrated Solutions SRL
- Ioan Sonea
- ioan.sonea&s-i-s.ro
-49992
- Littwin Systemtechnik GmbH & Co. KG
- Kai Schmidt
- kai.schmidt&littwin-systemtechnik.de
-49993
- Koinonia Christian Fellowship
- Jason Cook
- iana&kcf.org
-49994
- Banco Azteca S.A. Institución de Banca Múltiple
- Rosangela Luna Muñoz
- roluna&bazdigital.com
-49995
- DS Broadcast, Inc.
- Harry Chang
- info&dsbroadcast.com
-49996
- CoreEdge Networks Co., Ltd
- Nick Choi
- nickchoi&ce-net.com
-49997
- Socionext Inc.
- Masahiro Yamada
- yamada.masahiro&socionext.com
-49998
- OOO INFOCOM-LTD
- Vladyslav Mochalov
- vlad_mochalov&ia.ua
-49999
- GFD GmbH
- Daniel Jordan
- d.jordan&gfd.de
-50000
- King Tsushin Kogyo Co., Ltd.
- Taiyu Ono
- ono&king-tsushin.co.jp
-50001
- Scildon
- Wijnand Westra
- beheer&scildon.nl
-50002
- Marcepan Org.
- Sergey Bartenev
- ntsdec&mail.ru
-50003
- NCSCCS Limited
- James Burton
- jb&0.me.uk
-50004
- Einsatz Development Inc
- Luqman Hakim
- luqi&luqi.web.id
-50005
- Université de Haute Alsace
- Alexandre Heck
- iana-oid&uha.fr
-50006
- Chongqing Ambition Science&Technologies Co.,Ltd.
- waine liu
- huayong.liu&cnambition.com
-50007
- Lahti University of Applied Sciences
- Sari Laaksonen
- sari.laaksonen&lamk.fi
-50008
- RPC LLP
- Craig Hawthorne
- orders&rpc.co.uk
-50009
- Workinout.com
- James Danforth
- admin&workinout.com
-50010
- Collinear Networks Inc.
- Jon Horddal Jonasson
- jon.horddal&collinear.com
-50011
- Hose-McCann Communications
- Andrea Jara
- ajara&hosemccann.com
-50012
- Enrique Avalle
- Enrique Avalle
- enrique&avalle.net
-50013
- Aldridge Traffic Controllers Pty Ltd
- Paul Milazzo
- pmilazzo&atsc4.com.au
-50014
- nmhq.net
- Niklas Matthies
- contact_pen.iana.org&nmhq.net
-50015
- Scarsdale Schools
- Michael Basso
- mbasso&scarsdaleschools.org
-50016
- Biocatch
- Konstantin Savelev
- providers&biocatch.com
-50017
- CG Defense Technologies
- Jeremy Sparks
- admin&threemail.org
-50018
- Pacific Media Technologies Pty Ltd
- Glen English
- glen&pacificmedia.com.au
-50019
- Bucet AG
- Thorsten Lauer
- thorsten.lauer&bucet.de
-50020
- Nightwire
- Robin Beismann
- robin&beismann.biz
-50021
- MAJALOG
- JACQUES LE GOUSSE
- jlegousse&majalog.fr
-50022
- air atéliers GmbH
- Oliver Marugg
- airateliers&gmail.com
-50023
- HIMA Paul Hildebrandt GmbH
- Alexandre Terentiev
- a.terentiev&hima.com
-50024
- AlmavivA S.p.A
- Andrea Polidoro
- a.polidoro&almaviva.it
-50025
- dSPACE GmbH
- Volker Göke
- iana-admin&dspace.de
-50026
- PHYSEC GmbH
- Andreas Rex
- it&physec.de
-50027
- The Document Foundation
- Florian Effenberger
- info&documentfoundation.org
-50028
- Siemens AG Mobility Division
- Ulrich Barner
- ulrich.barner&siemens.com
-50029
- AGILE WEB
- Benjamin MIXTE
- contact&agileweb.fr
-50030
- BENTELER Business Services GmbH
- Roland Arendes
- iana&benteler.com
-50031
- Ring Central, Inc
- Timothy McKee
- tim.mckee&ringcentral.com
-50032
- City of Edmond
- Hans Schroeder
- nst&edmondok.com
-50033
- IT-Solutions Nuernberg
- Alexander Kress
- info&it-solutions-nuernberg.de
-50034
- AR24 SAS
- Clément Schneider
- clement.schneider&ar24.fr
-50035
- Identinetics IT-Services GmbH
- Rainer Hoerbe
- pen.iana.org&mail.identinetics.com
-50036
- Cancer South Institute
- Dr Hector Silva
- drhsilva55&yahoo.com
-50037
- Ultimate Software
- Michael Taylor
- mike_taylor&ultimatesoftware.com
-50038
- Southeast Nebraska Hematology and Oncology Consultants
- Becky Shedeed
- beckys&leadingcancercare.com
-50039
- ELUON
- Kim Soyoun
- sykim&eluon.com
-50040
- MTI Systems
- Wesley Eddy
- wes&mti-systems.com
-50041
- dust production
- Anders Hannus
- anders&hannus.eu
-50042
- ZERO WAR (零度战争 工作室)
- Kevin Yu
- 2629171127&qq.com
-50043
- Svanängskog AB
- Arne Ytterström
- svanang.skog&telia.com
-50044
- STR-SpeechTech Ltd.
- Matt Middlebrook
- mattm&speechtech.com
-50045
- IT-LINE SIA
- Jevgenijs Grossmans
- genn&it-line.lv
-50046
- The ICT Hub INC.
- Zubaer Ahammed
- zubaer.ceo&theicthub.com
-50047
- S-Sharp Corporation
- Ryan Kuo
- ryan.kuo&s-sharp.com
-50048
- Härnösands stift
- Thomas Karnestrand
- thomas.karnestrand&svenskakyrkan.se
-50049
- Openfiler
- Rafiu Fakunle
- support&openfiler.com
-50050
- JNC FZE
- Albert Armand
- jncrak&gmail.com
-50051
- tRetail
- Ben Antony
- technical&tretail.net
-50052
- Datang Gohighsec(zhejiang)Information Technology Co.,Ltd.
- Haijie Liu
- liuhaijie&gohighsec.com
-50053
- AVer Information Inc.
- Ming-Kang Chuang
- mk.chuang&aver.com
-50054
- Cherry Grass
- Administrator
- keith.sieman&gmail.com
-50055
- Telegra
- Hrvoje Prgeša
- hrvoje.prgesa&telegra-europe.com
-50056
- Public Joint-Stock Company "Detsky Mir"
- Sergey Rusak
- itsa&detmir.ru
-50057
- PrimeCalc GmbH
- Martin Gwerder
- mgwerder&primecalc.com
-50058
- RtBrick Inc.
- Hannes Gredler
- hannes&rtbrick.com
-50059
- JSC Penza Research Electrotechnical Institute
- Larisa Y. Anisimova
- ontipr&pniei.penza.ru
-50060
- HPC
- Vincent AUDOUARD
- vincent.audouard&appartcity.com
-50061
- IP Directions
- Gilles Bernard
- gilles.bernard&ipdirections.net
-50062
- Ultra Electronics – Communication and Integrated Systems
- Stuart Gilbey
- stuart.gilbey&c4systems.co.uk
-50063
- QCR Holdings, Inc.
- Michael Cave
- MCave&qcrh.com
-50064
- By Techdesign
- Agustin Pizarro
- agustin&by.com.es
-50065
- PREFECTURE DE POLICE DE PARIS
- didier enjaux
- didier.enjaux&interieur.gouv.fr
-50066
- YADOS GmbH
- Daniel Schulz
- daniel.schulz&yados.de
-50067
- University Cancer & Blood Center, LLC
- Loretta Goodson
- lgoodson&universitycancer.com
-50068
- JNETLABS
- Jason Smith
- jason&jnetlabs.com
-50069
- ELIT electronics & IT
- Stefan Kleck
- stefan.kleck&elit.at
-50070
- Network Kinetix, LLC
- Jonas Haskins
- Jonas&networkkinetix.com
-50071
- Immae
- Ismael Bouya
- ismael&bouya.org
-50072
- CAF Power & Automation
- Mikel Korta
- mkorta&cafpower.com
-50073
- Integrisight, LLC
- Peter Dutton
- pdutton0&gmail.com
-50074
- Changchun Sunny Information Technology Co., Ltd
- Yu Pan
- dev&sunnyit.cn
-50075
- Shanghai YuanRui Industrial Co., Ltd.
- Yu Pan
- dev&yuanruish.cn
-50076
- Real World Education Ltd
- Wiremu Demchick
- wdemchick&real.ac.nz
-50077
- AZZURRA Engenharia de Sistemas Ltda
- Mario Girasole Junior
- contato&azzurraengenharia.com
-50078
- Equate Technologies Pty Ltd
- Fadly Tabrani
- fadly.tabrani&equatetechnologies.com.au
-50079
- ABT ASSOCIATES PTY LTD
- IT Manager
- peter.tiggerdine&abtassoc.com.au
-50080
- Do It Yourself Werkstatt Wilhelmshaven e.V.
- Viktor Grosch
- it&diyww.de
-50081
- SMC Corporation (Product Development Division-6)
- SMC-K6-THERMO-CON
- k6_eg&smcjpn.co.jp
-50082
- Beijing JoinusRIP Co.
- Ke Meng Wang
- kmwang&joinusrip.com
-50083
- Norwegian Creations
- OID Administrator (G)
- oidmaster&norwegiancreations.com
-50084
- Douanes Sénégalaises
- Moussa Diouf
- ababacar.diack&atos.net
-50085
- Condeco
- Mark Flowers
- mark.flowers&condecosoftware.com
-50086
- Fircroft Engineering Services Limited
- Nicholas McDermott
- nick.mcdermott&fircroft.com
-50087
- Comprimato Systems, s.r.o.
- Martin Jirman
- jirman&comprimato.com
-50088
- Japanese Communist Party, Central Comittee
- Kunio Kasai
- admin&jcp.or.jp
-50089
- Continent 8 Technologies PLC
- Marcel Balan
- marcel.balan&continent8.com
-50090
- Floyd Arguello
- Floyd Arguello
- floyd.arguello&gmail.com
-50091
- BrightSoftware Technologies LLC.
- Rustam Khamidov
- ruster88&gmail.com
-50092
- Ostec-SMT
- Vladimir Badashkin
- badashkin.v&ostec-group.ru
-50093
- SCA Munksund AB
- Joakim Sturesson
- joakim.sturesson&sca.com
-50094
- SEC 1.01 AG
- Roman Gribi
- tech&sec101.ch
-50095
- Private-Network.com, Inc.
- Maksim Erenburg
- merenburg&private-network.com
-50096
- Scoop Publishing Limited
- Wiremu Demchick
- iana-contact&scoop.co.nz
-50097
- SCA Östrand
- Joel Svensson
- joel.svensson&sca.com
-50098
- SCA Graphic Sundsvall Aktiebolag
- Joel Svensson
- joel.svensson&sca.com
-50099
- PRZEDSIĘBIORSTWO WIELOBRANŻOWE DMS BOGDAN DARZECKI MAREK MAŚLANKA S.C.
- Piotr Maślanka
- piotrm&dms-serwis.com.pl
-50100
- energy & meteo systems GmbH
- Christian Ambrass
- ldap&energymeteo.de
-50101
- NEOCHROM, ltd
- Oleksii Serikov
- ceo&neochrom.company
-50102
- FATH Mechatronics GmbH
- Frank Schütz
- frank.schuetz&fath-mechatronics.de
-50103
- TSYS
- EU UNIX
- euunix&tsys.com
-50104
- ActivIntel Inc.
- Nate Groendyk
- nate&activintel.com
-50105
- Candela Innovations, LC
- Ryan Walker
- ryan&candelainnovations.com
-50106
- delgiacco medical, llc
- elizabeth delgiacco
- drelliesmith&gmail.com
-50107
- Karlour LLC
- Karl Wang
- karl&karlour.com
-50108
- Gebhardt Bauzentrum GmbH & Co. KG
- Philip May
- may&gebhardt-bauzentrum.de
-50109
- Open Banking Limited
- Ralph Bragg
- ralph.bragg&openbanking.org.uk
-50110
- Cybraics, Inc.
- Robert Sanders
- rsanders&cybraics.com
-50111
- Samsung SDI America
- Xajuan Smith
- Xajuan.smith&samsung.com
-50112
- Otomatica
- Mert Cingöz
- mert.cingoz&otomatica.com
-50113
- AI Prime
- Michael Sullivan
- mike&ai-prime.com
-50114
- CloudGenix
- Aaron Edwards
- arin-poc&cloudgenix.com
-50115
- Genesis Medical Group
- Vicky Titus
- billing&genesisdoctors.com
-50116
- Rivian Automotive, Inc.
- Timothy Tickel
- ttickel&rivian.com
-50117
- Eversource Energy
- PAULO SILVA
- PAULO.SILVA&EVERSOURCE.COM
-50118
- NZ FIBRE COMMUNICATIONS LIMITED trading as Stuff Fibre
- Sam Chan
- sam.chan&stuff-fibre.co.nz
-50119
- Seoul National University Hospital
- Youngho Kim
- argonaise&snu.ac.kr
-50120
- Sofco Pty Ltd
- Andrew Hughes
- ahughes&sofco.com.au
-50121
- Root
- Ervin Remus Radosavlevici
- admin&root-cloud.com
-50122
- ISiT OOO
- Andrey Kolegov
- alko&istperm.ru
-50123
- Rutronik Elektronische Bauelemente GmbH
- Alexander Schnitzer
- alexander.schnitzer&rutronik.com
-50124
- Howco
- Scott McKinnie
- scott.mckinnie&howcogroup.com
-50125
- SERVICIOS DE RADIO WAVENET
- MANUEL HERAS
- mheras&wavenetradio.com
-50126
- Elecard
- Nikolay Milovanov
- sales&elecard.com
-50127
- Changchun Vocational Institute Of Technology
- Yu Pan
- dev&cvit.com.cn
-50128
- Digiroam LLC
- Grant Browne
- grant.browne&digiroam.com
-50129
- DEM Manufacturing
- Simon Heyward
- simon.heyward&alpha3manufacturing.com
-50130
- Perfoware Corp.
- George Maroulis
- gmaroulis&gmail.com
-50131
- Blacktree Technology Pty Ltd.
- Joe Nevin
- info&blacktree.com.au
-50132
- Sonic Automotive
- Scott Jernigan
- bt.servers&sonicautomotive.com
-50133
- GPI RAS
- Alexander Samarin
- sasha&lt.gpi.ru
-50134
- Enika LLC
- Alexander Samarin
- sasha&enikasoft.ru
-50135
- Markon Cooperative Inc
- John Eldredge
- johne&markon.com
-50136
- High Sec Hosting HSDC AB
- Rickard Johnsson
- rille&highsechosting.eu
-50137
- Greene County Circuit Court
- Doug Shy
- dshy&courts.mo.gov
-50138
- Legrand North and Central America
- John Canny
- John.Canny&Legrand.Us
-50139
- Trice Medical, Inc.
- Al Intintoli
- aintintoli&tricemedical.com
-50140
- Thinking Objects GmbH
- Raffaele Lupo
- penmaster&to.com
-50141
- Sundkontor
- Igor Hein
- igor.hein&sundkontor.de
-50142
- Sunshine Coast Council
- Web Master
- webmaster&sunshinecoast.qld.gov.au
-50143
- Universitätsmedizin Greifswald
- UMG Hostmaster
- umg-it-netz&uni-greifswald.de
-50144
- Viz.AI
- David Golan
- david&viz.ai
-50145
- FRRouting
- David Lamparter
- equinox&opensourcerouting.org
-50146
- Wi-Net Telecom
- Hugo De Zela
- hugodz&winet.com.pe
-50147
- Mateer Harbert
- Bryan Fowler
- bfowler&mateerharbert.com
-50148
- PIXELLAB LLC
- Jaiden Benz
- pixellab&icloud.com
-50149
- Beijing ZhongChuang Teraspek Co.,LTD
- Marvin
- Marvin&teraspek.com
-50150
- Royole Corporation
- Tuochen Lyu
- Tuochen.Lyu&Royole.com
-50151
- Flugatlas
- PEN Administrator
- pen.administrator&flugatlas.com
-50152
- NEOCHROM-TRADE, ltd
- Oleksii Serikov
- ceo&neochrom.trade
-50153
- Span d.o.o.
- Jasmin Kotur
- jasmin.kotur&span.eu
-50154
- NU2 Systems LLC
- Isac Tabib
- isac&ifly51.com
-50155
- Babioch
- Karol Babioch
- karol&babioch.de
-50156
- Navigators Studentenverenging Enschede
- Daniël van de Giessen
- daniel&nsenschede.nl
-50157
- fouss
- Sébastien Fouss
- sebastien&fouss.be
-50158
- City of Burnsville
- Ryan Huss
- ryan.huss&burnsvillemn.gov
-50159
- Monro Muffler Brake Inc.
- Mark Kraska
- mark.kraska&monro.com
-50160
- YUASA-NET
- Toru Yuasa
- cert_contact&yuasa.org
-50161
- it-pro-berlin.de
- Evgenij Smirnov
- es&it-pro-berlin.de
-50162
- Sweet Hub
- Yanwen Sun
- sunyanwen&steadysweet.com
-50163
- Hartmut Eilers
- Hartmut Eilers
- hartmut&eilers.net
-50164
- STATUS INTERNET CO., LTD
- Nick Chang
- Nickchang&status.com.tw
-50165
- IPN Solutions GmbH & Co. KG
- Daniel Glaser
- info&ipn-solutions.com
-50166
- Aviall Services, Inc.
- Lesli Hust
- Netops&aviall.com
-50167
- NGP VAN, Inc
- Louis Levine
- it&ngpvan.com
-50168
- Aaltronav
- ICT Manager
- hostmaster&aaltronav.eu
-50169
- Industrielle Alliance
- Olivier Van Uytvanck
- olivier.vanuytvanck&ia.ca
-50170
- Price International Ltd
- Martin Kokalov
- support&callflowlab.com
-50171
- ICON Multimedia, S.L.
- Rafael Hornos
- rhornos&iconmm.com
-50172
- ifm syntron gmbh
- Andreas Gebhard
- andreas.gebhard&ifm.com
-50173
- DOMINAE Srl Unipersonale
- Alessandro Bressan
- info&dominae.com
-50174
- Beekeeper Technology
- Jonathan Steinert
- iana&beekeeper.technology
-50175
- The Department for Work and Pensions
- Phil Raynor
- phil.raynor&dwp.gsi.gov.uk
-50176
- Mark H. Zangmeister Center
- Dewana Frazier
- mstromer&zangcenter.com
-50177
- Nextiva
- Ralph Goers
- rgoers&nextiva.com
-50178
- FLR Services Ltd
- Lewis Richards
- flr_ots&hotmail.com
-50179
- Ocean Technical Systems
- Lewis Richards
- lrichards&oceantechsys.co.uk
-50180
- MiaRec, Inc.
- Gennadiy Bezkorovayniy
- gb&miarec.com
-50181
- pioto.org
- Mike Kelly
- pioto&pioto.org
-50182
- Weibel Scientific A/S
- Peter Adamsen
- pa&weibel.dk
-50183
- EIUS d.o.o.
- Andrej Komelj
- akomelj&gmail.com
-50184
- Tech4Lyfe Co. Ltd
- Nur Nadia Nabila Binti Mustakim
- misenns&gmail.com
-50185
- WH Gelsenkirchen FB Informatik
- Volker Goerick
- Volker.Goerick&w-hs.de
-50186
- Vodafone UK
- Lorraine Dryland
- Lorraine.Dryland&vodafone.com
-50187
- Pattern Recognition and Inteligent Systems Laboratory
- Fransisco Siles
- prislab.soporte&gmail.com
-50188
- zkpig123.org
- Kevin Zhang
- zkpig123&yahoo.com
-50189
- anrobot
- ZHANG XINNAN
- 70331471&qq.com
-50190
- CS Corporation
- Tae Kun Ha
- tgha&cs-holdings.com
-50191
- Matra Mandiri Prima
- Rommy Pardamean
- rpardamean&mmp-group.co.id
-50192
- SOGETEL srl
- Stefano Aquino
- fornitori&sogetel.it
-50193
- ANA-U GmbH
- Ewald Ulrich
- register&ana-u.com
-50194
- Deutscher Genossenschafts-Verlag eG
- Harald Lukhaub
- hlukhaub&dgverlag.de
-50195
- Domo Tactical Communications (DTC) Ltd
- Greg Hindley
- greg.hindley&domotactical.com
-50196
- Instituto de Física Gleb Wataghin - Unicamp
- Ariel Luiz Malves
- redes&ifi.unicamp.br
-50197
- jedi solutions
- Alex Jankuv
- consultingjedi&gmail.com
-50198
- Aplura, LLC
- Dan Deighton
- sysadmin-iana&aplura.com
-50199
- Skogsbolaget Mats Broberg AB
- Mats Broberg
- mats&matsbroberg.se
-50200
- yellowshelf
- PEN Admin
- pen.admin&yellowshelf.com
-50201
- Cubic Telecom
- Frank Monahan
- FrankM&Cubictelecom.com
-50202
- Southern Union Conference of Seventh day Adventists
- Richard Stephenson
- is&southernunion.com
-50203
- Sankosha Corporation
- Yuichi Takahashi
- takahashi-y&sankosha.co.jp
-50204
- congliu0913 Limited
- Liu Cong
- congliu0913&126.com
-50205
- Telescent Inc.
- Anthony Kewitsch
- kewitsch&telescent.com
-50206
- QuaeroSys UG
- Johannes Braun
- mail&quaerosys.com
-50207
- Kerridge Commercial Systems
- Neil Mulligan
- neil.mulligan&kerridgecs.com
-50208
- TRANSPORTS GPH
- PHILIPPE GEYER
- transports.gph&orange.fr
-50209
- kbo-Isar-Amper-Klinikum
- Nicolas Stein
- postmaster&kbo.de
-50210
- The Center for Cancer and Blood Disorders
- Irene Rand
- irand&txcc.com
-50211
- Universitätsstadt Tübingen
- Michael Politz
- informationstechnik&tuebingen.de
-50212
- HostId
- Mikhail Mikhaylov
- postmaster&hostid.ru
-50213
- Positive Technologies
- Mikhail Golovanov
- migolovanov&ptsecurity.com
-50214
- Alfred Kärcher GmbH & Co. KG
- Ronny Buchmann
- dns.admin&de.kaercher.com
-50215
- FIBOIS Alsace
- Cedric Luneau
- cedric&fibois-alsace.com
-50216
- Two Degrees Ltd
- Anton Pereira
- NOC&2degrees.nz
-50217
- EVICERTIA (formerly 'Evidencias Certificadas SL')
- Jacobo van Leeuwen
- info&evicertia.com
-50218
- Union Scribe
- Kevin Burkhart
- kburkhart&unionscribe.com
-50219
- Alaska Railroad
- Brian Scheid
- scheidb&akrr.com
-50220
- Lukas Müller
- Lukas Müller
- info&muellerlukas.de
-
-
-End of Document
diff --git a/epan/proto.h b/epan/proto.h
index 7306ad1d8e..deecd478a3 100644
--- a/epan/proto.h
+++ b/epan/proto.h
@@ -70,6 +70,8 @@ WS_DLL_PUBLIC int hf_text_only;
/** the maximum length of a protocol field string representation */
#define ITEM_LABEL_LENGTH 240
+#define ITEM_LABEL_UNKNOWN_STR "Unknown"
+
struct expert_field;
/** Make a const value_string[] look like a _value_string pointer, used to set header_field_info.strings */
diff --git a/epan/sminmpec.c b/epan/sminmpec.c
deleted file mode 100644
index c88efe2e12..0000000000
--- a/epan/sminmpec.c
+++ /dev/null
@@ -1,50250 +0,0 @@
-/*
- * THIS FILE IS AUTOGENERATED, DO NOT EDIT
- * generated from http://www.iana.org/assignments/enterprise-numbers
- * run "tools/make-sminmpec.pl <infile> <outfile>" to regenerate
- *
- * Note 1: "Gaps" in the iana enterprise-numbers list have been "filled in"
- * with "(Unknown)" as the name so that direct (indexed) access to
- * the list is possible.
- *
- * Note 2: We should probably parse "enterprise-numbers" at program start
- * instead of generating this file.
- */
-#include "config.h"
-
-#include <glib.h>
-
-#include <epan/value_string.h>
-#include <epan/sminmpec.h>
-
-static const gchar sminmpec_unknown[] = "(Unknown)";
-
-const value_string sminmpec_values[] = {
- { 0, "Reserved" },
- { 1, "NxNetworks" },
- { 2, "IBM (https://w3.ibm.com/standards)" },
- { 3, "Carnegie Mellon" },
- { 4, "Unix" },
- { 5, "ACC" },
- { 6, "TWG" },
- { 7, "CAYMAN" },
- { 8, "PSI" },
- { 9, "ciscoSystems" },
- { 10, "NSC" },
- { 11, "Hewlett-Packard" },
- { 12, "Epilogue" },
- { 13, "U of Tennessee" },
- { 14, "BBN Technologies" },
- { 15, "Xylogics, Inc." },
- { 16, "Timeplex" },
- { 17, "Canstar" },
- { 18, "Wellfleet" },
- { 19, "TRW" },
- { 20, "MIT" },
- { 21, "EON" },
- { 22, "Fibronics" },
- { 23, "Novell" },
- { 24, "Spider Systems" },
- { 25, "NSFNET" },
- { 26, "Hughes LAN Systems" },
- { 27, "Intergraph" },
- { 28, "Interlan" },
- { 29, "Vitalink Communications" },
- { 30, "Ulana" },
- { 31, "NSWC" },
- { 32, "Santa Cruz Operation" },
- { 33, "MRV Communications, In-Reach Product Division" },
- { 34, "Cray" },
- { 35, "Nortel Networks" },
- { 36, "DEC" },
- { 37, "Touch" },
- { 38, "Network Research Corp." },
- { 39, "Baylor College of Medicine" },
- { 40, "NMFECC-LLNL" },
- { 41, "SRI" },
- { 42, "Sun Microsystems" },
- { 43, "3Com" },
- { 44, "CMC" },
- { 45, "SynOptics" },
- { 46, "Cheyenne Software" },
- { 47, "Prime Computer" },
- { 48, "MCNC/North Carolina" },
- { 49, "Chippcom" },
- { 50, "Optical Data Systems" },
- { 51, "gated" },
- { 52, "Enterasys Networks Inc." },
- { 53, "Apollo Computers" },
- { 54, "DeskTalk Systems, Inc." },
- { 55, "SSDS" },
- { 56, "Castle Rock Computing" },
- { 57, "MIPS Computer Systems" },
- { 58, "TGV, Inc." },
- { 59, "Silicon Graphics, Inc." },
- { 60, "University of British Columbia" },
- { 61, "Merit" },
- { 62, "NetEdge" },
- { 63, "Apple Computer, Inc." },
- { 64, "Gandalf" },
- { 65, "Dartmouth College" },
- { 66, "David Systems" },
- { 67, "Reuter" },
- { 68, "Cornell" },
- { 69, "Michael Sabo" },
- { 70, "Locus Computing Corp." },
- { 71, "NASA" },
- { 72, "Retix" },
- { 73, "Boeing" },
- { 74, "AT&T" },
- { 75, "Ungermann-Bass" },
- { 76, "Digital Analysis Corporation" },
- { 77, "LAN Manager" },
- { 78, "LogMatrix Inc (formerly 'OpenService Inc.')" },
- { 79, "Fujitsu Services" },
- { 80, "Auspex Systems, Inc" },
- { 81, "Lannet Company" },
- { 82, "Network Computing Devices" },
- { 83, "Raycom Systems" },
- { 84, "Pirelli Focom Ltd." },
- { 85, "Datability Software Systems" },
- { 86, "Network Application Technology" },
- { 87, "Institute of Telematics, Karlsruhe Institute of Technology (KIT)" },
- { 88, "New York University" },
- { 89, "RND" },
- { 90, "InterCon Systems Corporation" },
- { 91, "Coral Network Corporation" },
- { 92, "Webster Computer Corporation" },
- { 93, "Frontier Technologies Corporation" },
- { 94, "Nokia" },
- { 95, "Allen-Bradely Company" },
- { 96, "CERN" },
- { 97, "Sigma Network Systems, Inc." },
- { 98, "Emerging Technologies, Inc." },
- { 99, "SNMP Research" },
- { 100, "Ohio State University" },
- { 101, "Ultra Network Technologies Julie" },
- { 102, "Microcom" },
- { 103, "Lockheed Martin" },
- { 104, "Micro Technology" },
- { 105, "Process Software Corporation" },
- { 106, "EMC Data General Division" },
- { 107, "Bull Company" },
- { 108, "Emulex Corporation" },
- { 109, "Warwick University Computing Services" },
- { 110, "NetScout Systems, Inc. (formerly 'Network General Corporation')" },
- { 111, "Oracle" },
- { 112, "Control Data Corporation" },
- { 113, "Hughes Aircraft Company" },
- { 114, "Synernetics, Inc." },
- { 115, "Mitre" },
- { 116, "Hitachi, Ltd." },
- { 117, "Telebit" },
- { 118, "Salomon Technology Services" },
- { 119, "NEC Corporation" },
- { 120, "Fibermux" },
- { 121, "FTP Software Inc." },
- { 122, "Sony" },
- { 123, "Newbridge Networks Corporation" },
- { 124, "Racal-Datacom" },
- { 125, "CR SYSTEMS" },
- { 126, "DSET Corporation" },
- { 127, "Computone" },
- { 128, "Tektronix, Inc." },
- { 129, "Interactive Systems Corporation" },
- { 130, "Banyan Systems Inc." },
- { 131, "Sintrom Datanet Limited" },
- { 132, "Bell Canada" },
- { 133, "Olicom Enterprise Products Inc." },
- { 134, "Rice University" },
- { 135, "OnStream Networks" },
- { 136, "Concurrent Computer Corporation" },
- { 137, "Basser" },
- { 138, "Luxcom" },
- { 139, "Artel" },
- { 140, "Independence Technologies, Inc.(ITI)" },
- { 141, "NetScout Systems, Inc. (formerly 'Frontier Software Development')" },
- { 142, "Digital Computer Limited" },
- { 143, "Eyring, Inc." },
- { 144, "Case Communications" },
- { 145, "Penril DataComm, Inc." },
- { 146, "American Airlines, Inc." },
- { 147, "Sequent Computer Systems" },
- { 148, "Bellcore" },
- { 149, "Concord Communications" },
- { 150, "University of Washington" },
- { 151, "Develcon" },
- { 152, "Solarix Systems" },
- { 153, "Unifi Communications Corp." },
- { 154, "Roadnet" },
- { 155, "Network Systems Corp." },
- { 156, "ENE (European Network Engineering)" },
- { 157, "Dansk Data Elektronik A/S" },
- { 158, "Morningstar, Inc." },
- { 159, "Dupont EOP" },
- { 160, "Legato Systems, Inc." },
- { 161, "Motorola" },
- { 162, "European Space Agency (ESA)" },
- { 163, "Aethis sa/nv" },
- { 164, "Rad Data Communications Ltd." },
- { 165, "OfficeNet, Inc." },
- { 166, "Shiva Corporation" },
- { 167, "Fujikura America" },
- { 168, "Xlnt Designs INC (XDI)" },
- { 169, "Tandem Computers" },
- { 170, "BICC" },
- { 171, "D-Link Systems, Inc." },
- { 172, "AMP, Inc." },
- { 173, "Netlink" },
- { 174, "C. Itoh Electronics" },
- { 175, "Sumitomo Electric Industries (SEI)" },
- { 176, "DHL Systems, Inc." },
- { 177, "Network Equipment Technologies" },
- { 178, "APTEC Computer Systems" },
- { 179, "Schneider & Koch & Co, Datensysteme GmbH" },
- { 180, "Hill Air Force Base" },
- { 181, "Kentrox" },
- { 182, "Japan Radio Co." },
- { 183, "Versitron" },
- { 184, "Telecommunication Systems" },
- { 185, "Interphase" },
- { 186, "Toshiba Corporation" },
- { 187, "Clearpoint Research Corp." },
- { 188, "Ascom" },
- { 189, "Fujitsu America" },
- { 190, "NovaQuest InfoSystems" },
- { 191, "NCR" },
- { 192, "Dr. Materna GmbH" },
- { 193, "Ericsson AB" },
- { 194, "Metaphor Computer Systems" },
- { 195, "Patriot Partners" },
- { 196, "The Software Group Limited (TSG)" },
- { 197, "Kalpana, Inc." },
- { 198, "University of Waterloo" },
- { 199, "CCL/ITRI" },
- { 200, "Coeur Postel" },
- { 201, "Mitsubish Cable Industries, Ltd." },
- { 202, "SMC" },
- { 203, "Crescendo Communication, Inc." },
- { 204, "Goodall Software Engineering" },
- { 205, "Intecom" },
- { 206, "Victoria University of Wellington" },
- { 207, "Allied Telesis, Inc." },
- { 208, "Cray Communications A/S" },
- { 209, "Protools" },
- { 210, "NIPPON TELEGRAPH AND TELEPHONE CORPORATION" },
- { 211, "Fujitsu Limited" },
- { 212, "Network Peripherals Inc." },
- { 213, "Netronix, Inc." },
- { 214, "University of Wisconsin Madison" },
- { 215, "NetWorth, Inc." },
- { 216, "Tandberg Data A/S" },
- { 217, "Technically Elite Concepts, Inc." },
- { 218, "Labtam Australia Pty. Ltd." },
- { 219, "Republic Telcom Systems, Inc." },
- { 220, "ADI Systems, Inc." },
- { 221, "Microwave Bypass Systems, Inc." },
- { 222, "Pyramid Technology Corp." },
- { 223, "Unisys_Corp" },
- { 224, "LANOPTICS LTD., Israel" },
- { 225, "NKK Corporation" },
- { 226, "CODIMA Technologies Ltd" },
- { 227, "Acals" },
- { 228, "ASTEC, Inc." },
- { 229, "Delmarva Power" },
- { 230, "Telematics International, Inc." },
- { 231, "Fujitsu Technology Solutions GmbH (formerly 'Fujitsu Siemens Computers')" },
- { 232, "Compaq" },
- { 233, "NetManage, Inc." },
- { 234, "NC State University" },
- { 235, "Empirical Tools and Technologies" },
- { 236, "Samsung Electronics Co., LTD." },
- { 237, "Takaoka Electric Mfg. Co., Ltd." },
- { 238, "NxNetworks" },
- { 239, "WINDATA" },
- { 240, "RC International A/S" },
- { 241, "Netexp Research" },
- { 242, "Internode Systems Pty Ltd" },
- { 243, "netCS Informationstechnik GmbH" },
- { 244, "Lantronix" },
- { 245, "Avatar Consultants" },
- { 246, "Furukawa Electoric Co. Ltd." },
- { 247, "ND SatCom - Gesellschaft f\0303\0274r SatellitenkommunikationssystemembH" },
- { 248, "Richard Hirschmann GmbH & Co." },
- { 249, "G2R Inc." },
- { 250, "University of Michigan" },
- { 251, "Netcomm, Ltd." },
- { 252, "Sable Technology Corporation" },
- { 253, "Xerox" },
- { 254, "Conware Computer Consulting GmbH" },
- { 255, "Compatible Systems Corp." },
- { 256, "Scitec Communications Systems Ltd." },
- { 257, "Transarc Corporation" },
- { 258, "Matsushita Electric Industrial Co., Ltd." },
- { 259, "ACCTON Technology" },
- { 260, "Star-Tek, Inc." },
- { 261, "ADC Codenoll Technology Corporation" },
- { 262, "Formation, Inc." },
- { 263, "Seiko Instruments, Inc." },
- { 264, "RCE (Reseaux de Communication d'Entreprise S.A.)" },
- { 265, "Xenocom, Inc." },
- { 266, "Nexans Deutschland Industries" },
- { 267, "Systech Computer Corporation" },
- { 268, "Visual" },
- { 269, "CSC Airline Solutions Denmark A/S" },
- { 270, "Zenith Electronics Corporation" },
- { 271, "TELECOM FINLAND" },
- { 272, "BinTec Communications GmbH" },
- { 273, "EUnet Germany" },
- { 274, "PictureTel Corporation" },
- { 275, "Michigan State University" },
- { 276, "GTE Government Systems - Network Management Organization" },
- { 277, "Cascade Communications Corp." },
- { 278, "APRESIA Systems, Ltd. (formerly 'Hitachi Cable, Ltd.')" },
- { 279, "Olivetti" },
- { 280, "Vitacom Corporation" },
- { 281, "INMOS" },
- { 282, "AIC Systems Laboratories Ltd." },
- { 283, "Cameo Communications, Inc." },
- { 284, "Diab Data AB" },
- { 285, "Olicom A/S" },
- { 286, "Digital-Kienzle Computersystems" },
- { 287, "CSELT(Centro Studi E Laboratori Telecomunicazioni)" },
- { 288, "Electronic Data Systems" },
- { 289, "Brocade Communications Systems, Inc. (formerly 'McData Corporation')" },
- { 290, "Harris Corporation" },
- { 291, "Technology Dynamics, Inc." },
- { 292, "DATAHOUSE Information Systems Ltd." },
- { 293, "Teltrend (NZ) Limited" },
- { 294, "Texas Instruments" },
- { 295, "PlainTree Systems Inc." },
- { 296, "Hedemann Software Development" },
- { 297, "Fuji Xerox Co., Ltd." },
- { 298, "Asante Technology" },
- { 299, "Stanford University" },
- { 300, "Digital Link" },
- { 301, "Raylan Corporation" },
- { 302, "Commscraft" },
- { 303, "Hughes Communications, Inc." },
- { 304, "Farallon Computing, Inc." },
- { 305, "GE Information Services" },
- { 306, "Gambit Computer Communications" },
- { 307, "Livingston Enterprises, Inc." },
- { 308, "Star Technologies" },
- { 309, "Micronics Computers Inc." },
- { 310, "Basis, Inc." },
- { 311, "Microsoft" },
- { 312, "US West Advance Technologies" },
- { 313, "University College London" },
- { 314, "Eastman Kodak Company" },
- { 315, "Network Resources Corporation" },
- { 316, "Atlas Telecom" },
- { 317, "Bridgeway" },
- { 318, "American Power Conversion Corp." },
- { 319, "DOE Atmospheric Radiation Measurement Project" },
- { 320, "VerSteeg CodeWorks" },
- { 321, "Verilink Corp" },
- { 322, "Sybus Corportation" },
- { 323, "Tekelec" },
- { 324, "NASA Ames Research Center" },
- { 325, "Simon Fraser University" },
- { 326, "Fore Systems, Inc." },
- { 327, "Centrum Communications, Inc." },
- { 328, "NeXT Computer, Inc." },
- { 329, "Netcore, Inc." },
- { 330, "Northwest Digital Systems" },
- { 331, "Andrew Corporation" },
- { 332, "Digi International" },
- { 333, "Computer Network Technology" },
- { 334, "Lotus Development Corp." },
- { 335, "MICOM Communication Corporation" },
- { 336, "ASCII Corporation" },
- { 337, "PUREDATA Research" },
- { 338, "NTT DATA" },
- { 339, "Siemens Industry Inc." },
- { 340, "Kendall Square Research (KSR)" },
- { 341, "ORNL" },
- { 342, "Network Innovations, Inc." },
- { 343, "Intel Corporation" },
- { 344, "Compuware Corporation" },
- { 345, "Epson Research Center" },
- { 346, "Fibernet" },
- { 347, "Dot Hill Systems" },
- { 348, "American Express Company" },
- { 349, "Compu-Shack" },
- { 350, "Parallan Computer, Inc." },
- { 351, "Stratacom" },
- { 352, "Open Networks Engineering, Inc." },
- { 353, "ATM Forum" },
- { 354, "SSD Management, Inc." },
- { 355, "Automated Network Management, Inc." },
- { 356, "Magnalink Communications Corporation" },
- { 357, "Kasten Chase Applied Research" },
- { 358, "Skyline Technology, Inc." },
- { 359, "Nu-Mega Technologies, Inc." },
- { 360, "Morgan Stanley & Co. International PLC" },
- { 361, "Integrated Business Network" },
- { 362, "L & N Technologies, Ltd." },
- { 363, "Cincinnati Bell Information Systems, Inc." },
- { 364, "RAMA Technologies" },
- { 365, "MICROGNOSIS" },
- { 366, "Datapoint Corporation" },
- { 367, "RICOH Co. Ltd." },
- { 368, "Axis Communications AB" },
- { 369, "Pacer Software" },
- { 370, "3COM/Axon" },
- { 371, "Alebra Technologies, Inc." },
- { 372, "GSI" },
- { 373, "Tatung Co., Ltd." },
- { 374, "DIS Research Ltd." },
- { 375, "Quotron Systems, Inc." },
- { 376, "Dassault Electronique" },
- { 377, "Corollary, Inc." },
- { 378, "SEEL, Ltd." },
- { 379, "Lexcel" },
- { 380, "pier64" },
- { 381, "OST" },
- { 382, "Megadata Pty Ltd." },
- { 383, "LLNL Livermore Computer Center" },
- { 384, "Dynatech Communications" },
- { 385, "Symplex Communications Corp." },
- { 386, "Tribe Computer Works" },
- { 387, "Taligent, Inc." },
- { 388, "Symbol Technologies, Inc." },
- { 389, "Lancert" },
- { 390, "Alantec" },
- { 391, "Ridgeback Solutions" },
- { 392, "Metrix, Inc." },
- { 393, "Symantec Corporation" },
- { 394, "NRL Communication Systems Branch" },
- { 395, "I.D.E. Corporation" },
- { 396, "Panasonic Electric Works Co., Ltd." },
- { 397, "MegaPAC" },
- { 398, "Tyco Electronics" },
- { 399, "Hitachi Computer Products (America), Inc." },
- { 400, "METEO FRANCE" },
- { 401, "PRC Inc." },
- { 402, "Wal-Mart Stores, Inc." },
- { 403, "Nissin Electric Company, Ltd." },
- { 404, "Distributed Support Information Standard" },
- { 405, "SMDS Interest Group (SIG)" },
- { 406, "SolCom Systems Ltd." },
- { 407, "Bell Atlantic" },
- { 408, "Advanced Multiuser Technologies Corporation" },
- { 409, "Mitsubishi Electric Corporation" },
- { 410, "C.O.L. Systems, Inc." },
- { 411, "University of Auckland" },
- { 412, "Distributed Management Task Force (DMTF)" },
- { 413, "Klever Computers, Inc.Tom Su" },
- { 414, "Amdahl Corporation" },
- { 415, "JTEC Pty, Ltd." },
- { 416, "Matra Communcation" },
- { 417, "HAL Computer Systems" },
- { 418, "Lawrence Berkeley Laboratory" },
- { 419, "Dale Computer Corporation" },
- { 420, "University of Tuebingen" },
- { 421, "Bytex Corporation" },
- { 422, "Cogwheel, Inc." },
- { 423, "Lanwan Technologies" },
- { 424, "Thomas-Conrad Corporation" },
- { 425, "TxPort" },
- { 426, "Compex, Inc." },
- { 427, "Evergreen Systems, Inc." },
- { 428, "HNV, Inc." },
- { 429, "UTStarcom Incorporated" },
- { 430, "Canada Post Corporation" },
- { 431, "Open Systems Solutions, Inc." },
- { 432, "Toronto Stock Exchange" },
- { 433, "Mamakos\\TransSys Consulting" },
- { 434, "EICON" },
- { 435, "Jupiter Systems" },
- { 436, "SSTI" },
- { 437, "Grand Junction Networks" },
- { 438, "Pegasus Solutions, Inc." },
- { 439, "Edward D. Jones and Company" },
- { 440, "Amnet, Inc." },
- { 441, "Chase Research" },
- { 442, "BMC Software" },
- { 443, "Gateway Communications, Inc." },
- { 444, "Peregrine Systems" },
- { 445, "Daewoo Telecom" },
- { 446, "Norwegian Telecom Research" },
- { 447, "WilTel" },
- { 448, "Ericsson-Camtec" },
- { 449, "Codex" },
- { 450, "Basis" },
- { 451, "AGE Logic" },
- { 452, "INDE Electronics" },
- { 453, "Isode Limited" },
- { 454, "J.I. Case" },
- { 455, "Trillium" },
- { 456, "Bacchus Inc." },
- { 457, "MCC" },
- { 458, "Stratus Computer" },
- { 459, "Quotron" },
- { 460, "Beame & Whiteside" },
- { 461, "Cellular Technical Services" },
- { 462, "Shore Microsystems, Inc." },
- { 463, "Telecommunications Techniques Corp." },
- { 464, "DNPAP (Technical University Delft)" },
- { 465, "Plexcom, Inc." },
- { 466, "Tylink" },
- { 467, "Brookhaven Laboratory" },
- { 468, "Computer Communication Systems" },
- { 469, "Norand Corporation" },
- { 470, "MUX-LAP" },
- { 471, "Premisys Communications, Inc" },
- { 472, "Bell South Telecommunications" },
- { 473, "J. Stainsbury PLC" },
- { 474, "Manage Operations" },
- { 475, "Wandel and Goltermann Technologies" },
- { 476, "Vertiv (formerly 'Emerson Computer Power')" },
- { 477, "Network Software Associates" },
- { 478, "Procter and Gamble" },
- { 479, "Meridian Technology Corporation" },
- { 480, "QMS, Inc." },
- { 481, "Network ExpressTom Jarema" },
- { 482, "LANcity Corporation" },
- { 483, "Dayna Communications, Inc." },
- { 484, "kn-X Ltd." },
- { 485, "Sync Research, Inc." },
- { 486, "PremNet" },
- { 487, "SIAC" },
- { 488, "New York Stock Exchange" },
- { 489, "American Stock Exchange" },
- { 490, "FCR Software, Inc." },
- { 491, "National Medical Care, Inc." },
- { 492, "DCS Dialog Communication Systems Aktiengesellschaft Berlin" },
- { 493, "NorTele" },
- { 494, "Madge Networks, Inc." },
- { 495, "Memotec Communications" },
- { 496, "ON" },
- { 497, "Leap Technology, Inc." },
- { 498, "General DataComm, Inc." },
- { 499, "ACE Communications, Ltd." },
- { 500, "ADP" },
- { 501, "European Agency of Digital Trust (formerly 'Programa SPRITEL')" },
- { 502, "Adacom" },
- { 503, "Metrodata Ltd" },
- { 504, "Ellemtel Telecommunication Systems Laboratories" },
- { 505, "Arizona Public Service" },
- { 506, "NETWIZ, Ltd.," },
- { 507, "Science and Engineering Research Council (SERC)" },
- { 508, "508 Credit Suisse First Boston - Watcher" },
- { 509, "Hadax Electronics Inc." },
- { 510, "VTKK" },
- { 511, "North Hills Israel Ltd." },
- { 512, "TECSIEL" },
- { 513, "Bayerische Motoren Werke (BMW) AG" },
- { 514, "CNET Technologies" },
- { 515, "MCI" },
- { 516, "Human Engineering AG (HEAG)" },
- { 517, "FileNet Corporation" },
- { 518, "Kongsberg Gruppen ASA (formerly 'NFT-Ericsson')" },
- { 519, "Dun & Bradstreet" },
- { 520, "Intercomputer Communications" },
- { 521, "Defense Intelligence Agency" },
- { 522, "Telesystems SLW Inc." },
- { 523, "APT Communications" },
- { 524, "Delta Airlines" },
- { 525, "California Microwave" },
- { 526, "Avid Technology Inc" },
- { 527, "Integro Advanced Computer Systems" },
- { 528, "RPTI" },
- { 529, "Ascend Communications Inc." },
- { 530, "Eden Computer Systems Inc." },
- { 531, "Kawasaki-Steel Corp" },
- { 532, "Systems Management Infrasture, Barclays Bank PLC" },
- { 533, "B.U.G., Inc." },
- { 534, "Eaton Corporation" },
- { 535, "Superconducting Supercollider Lab." },
- { 536, "Triticom" },
- { 537, "Universal Instruments Corp." },
- { 538, "Information Resources, Inc." },
- { 539, "Kentrox" },
- { 540, "Crypto AG" },
- { 541, "Infinite Networks, Ltd." },
- { 542, "Tangram Enterprise Solutions, Inc." },
- { 543, "Alebra Technologies, Inc." },
- { 544, "Equinox Systems, Inc." },
- { 545, "Hayes Microcomputer Products" },
- { 546, "Empire Technologies Inc." },
- { 547, "Glaxochem, Ltd." },
- { 548, "Software Professionals, Inc" },
- { 549, "Agent Technology, Inc." },
- { 550, "Dornier GMBH" },
- { 551, "Telxon Corporation" },
- { 552, "Entergy Corporation" },
- { 553, "GarrettCom, Inc (formerly 'Garrett Communications')" },
- { 554, "Agile Networks, Inc." },
- { 555, "Larscom" },
- { 556, "Stock Equipment" },
- { 557, "ITT Corporation" },
- { 558, "Universal Data Systems, Inc." },
- { 559, "Sonix Communications, Ltd." },
- { 560, "Paul Freeman Associates, Inc." },
- { 561, "John S. Barnes, Corp." },
- { 562, "Northern Telecom, Ltd." },
- { 563, "CAP Debris" },
- { 564, "Telco Systems NAC" },
- { 565, "Tosco Refining Co" },
- { 566, "Russell Info Sys" },
- { 567, "University of Salford" },
- { 568, "NetQuest Corp." },
- { 569, "Armon Networking Ltd." },
- { 570, "IA Corporation" },
- { 571, "AU-System Communicaton AB" },
- { 572, "GoldStar Information & Communications, Ltd." },
- { 573, "SECTRA AB" },
- { 574, "ONEAC Corporation" },
- { 575, "Tree Technologies" },
- { 576, "General Dynamics C4 Systems" },
- { 577, "Geneva Software, Inc." },
- { 578, "Interlink Computer Sciences, Inc." },
- { 579, "Bridge Information Systems, Inc." },
- { 580, "Leeds and Northrup Australia (LNA) Nigel Cook" },
- { 581, "CSG Systems International (formerly 'Intec Telecom Systems')" },
- { 582, "Newport Systems Solutions, Inc." },
- { 583, "azel Corporation" },
- { 584, "ROBOTIKER" },
- { 585, "PeerLogic Inc." },
- { 586, "Digital Transmittion Systems" },
- { 587, "Far Point Communications" },
- { 588, "Xircom" },
- { 589, "Mead Data Central" },
- { 590, "Royal Bank of Canada" },
- { 591, "Advantis, Inc." },
- { 592, "Chemical Banking Corp." },
- { 593, "Eagle Technology" },
- { 594, "BT" },
- { 595, "Radix BV" },
- { 596, "TAINET Communication System Corp." },
- { 597, "Comtek Services Inc." },
- { 598, "Fair Isaac Corporation" },
- { 599, "AST Research Inc." },
- { 600, "Soft*Star s.r.l. Ing. Enrico Badella" },
- { 601, "Bancomm" },
- { 602, "Trusted Information Systems, Inc." },
- { 603, "Harris & Jeffries, Inc." },
- { 604, "Axel Technology Corp." },
- { 605, "NetTest Inc." },
- { 606, "CAP debis" },
- { 607, "Lachman Technology, Inc." },
- { 608, "Galcom Networking Ltd." },
- { 609, "BAZIS" },
- { 610, "SYNAPTEL" },
- { 611, "Investment Management Services, Inc." },
- { 612, "Taiwan Telecommunication Lab" },
- { 613, "Anagram Corporation" },
- { 614, "Univel" },
- { 615, "University of California, San Diego" },
- { 616, "CompuServe" },
- { 617, "Telstra - OTC Australia" },
- { 618, "Westinghouse Electric Corp." },
- { 619, "DGA Ltd." },
- { 620, "Elegant Communications Inc." },
- { 621, "Experdata" },
- { 622, "Unisource Business Networks Sweden AB" },
- { 623, "Molex, Inc." },
- { 624, "Quay Financial Software" },
- { 625, "VMX Inc." },
- { 626, "Hypercom, Inc." },
- { 627, "University of Guelph" },
- { 628, "DIaLOGIKa" },
- { 629, "NBASE Switch Communication" },
- { 630, "Anchor Datacomm B.V." },
- { 631, "PACDATA" },
- { 632, "University of Colorado" },
- { 633, "Tricom Communications Limited" },
- { 634, "Santix Software GmbH" },
- { 635, "Encore Networks, Inc." },
- { 636, "Georgia Institute of Technology" },
- { 637, "Alcatel-Lucent (formerly 'Alcatel Data Network')" },
- { 638, "GTECH" },
- { 639, "UNOCAL Corporation" },
- { 640, "First Pacific Network" },
- { 641, "Lexmark International" },
- { 642, "Qnix Computer" },
- { 643, "Jigsaw Software Concepts (Pty) Ltd." },
- { 644, "Eastern Research Inc." },
- { 645, "nsgdata.com Inc" },
- { 646, "SEIKO Communication Systems, Inc." },
- { 647, "Unified Management" },
- { 648, "RADLINX Ltd." },
- { 649, "Microplex Systems Ltd." },
- { 650, "Trio Information Systems AB" },
- { 651, "Phoenix Microsystems" },
- { 652, "Distributed Systems International, Inc." },
- { 653, "Evolving Systems, Inc." },
- { 654, "SAT GmbH" },
- { 655, "CeLAN Technology, Inc." },
- { 656, "Landmark Systems Corp." },
- { 657, "Netone Systems Co., Ltd." },
- { 658, "Loral Data Systems" },
- { 659, "Cellware Broadband Technology" },
- { 660, "MuSys Corporation" },
- { 661, "IMC Networks Corp." },
- { 662, "Octel Communications Corp." },
- { 663, "RIT Technologies Ltd." },
- { 664, "Adtran" },
- { 665, "Netvion, Inc." },
- { 666, "Oki Electric Industry Co., Ltd." },
- { 667, "Specialix International" },
- { 668, "INESC (Instituto de Engenharia de Sistemas e Computadores)" },
- { 669, "Globalnet Communications" },
- { 670, "Product Line Engineer SVEC Computer Corp." },
- { 671, "Printer Systems Corp." },
- { 672, "Contec Micro Electronics USA" },
- { 673, "Unix Integration Services" },
- { 674, "Dell Inc." },
- { 675, "Whittaker Electronic Systems" },
- { 676, "QPSX Communications" },
- { 677, "Loral WDl" },
- { 678, "Federal Express Corp." },
- { 679, "E-COMMS Inc." },
- { 680, "Software Clearing House" },
- { 681, "Antlow Computers Ltd." },
- { 682, "Emcom Corp." },
- { 683, "Extended Systems, Inc." },
- { 684, "Sola Electric" },
- { 685, "Esix Systems, Inc." },
- { 686, "3M/MMM" },
- { 687, "Cylink Corp." },
- { 688, "Znyx Advanced Systems Division, Inc." },
- { 689, "Texaco, Inc." },
- { 690, "McCaw Cellular Communication Corp." },
- { 691, "ASP Computer Product Inc." },
- { 692, "HiPerformance Systems" },
- { 693, "Regionales Rechenzentrum Erlangen" },
- { 694, "SAP AG" },
- { 695, "ElectroSpace System Inc." },
- { 696, "( Unassigned )" },
- { 697, "MultiPort Corporation" },
- { 698, "Combinet, Inc." },
- { 699, "TSCC" },
- { 700, "Teleos Communications Inc." },
- { 701, "Alta Research" },
- { 702, "Independence Blue Cross" },
- { 703, "ADACOM Station Interconnectivity Ltd." },
- { 704, "MIROR Systems" },
- { 705, "Merlin Gerin" },
- { 706, "Owen-Corning Fiberglas" },
- { 707, "Talking Networks Inc." },
- { 708, "Cubix Corporation" },
- { 709, "Formation Inc." },
- { 710, "Lannair Ltd." },
- { 711, "LightStream Corp." },
- { 712, "LANart Corp." },
- { 713, "University of Stellenbosch" },
- { 714, "Wyse Technology" },
- { 715, "DSC Communications Corp." },
- { 716, "NetEc" },
- { 717, "Breltenbach Software Engineering GmbH" },
- { 718, "Victor Company of Japan,Limited" },
- { 719, "Japan Direx Corporation" },
- { 720, "NECSY Network Control Systems S.p.A. Piero Fiozzo" },
- { 721, "ISDN Systems Corp." },
- { 722, "Zero-One Technologies, Ltd." },
- { 723, "Radix Technologies, Inc." },
- { 724, "National Institute of Standards and Technology" },
- { 725, "Digital Technology Inc." },
- { 726, "Castelle Corp." },
- { 727, "Memotec Inc." },
- { 728, "Showa Electric Wire & Cable Co., Ltd." },
- { 729, "SpectraGraphics" },
- { 730, "Connectware Inc." },
- { 731, "Wind River Systems" },
- { 732, "RADWAY International Ltd." },
- { 733, "System Management ARTS, Inc." },
- { 734, "Persoft, Inc." },
- { 735, "Xnet Technology Inc." },
- { 736, "Unison-Tymlabs" },
- { 737, "Micro-Matic Research" },
- { 738, "B.A.T.M. Advance Technologies" },
- { 739, "University of Copenhagen" },
- { 740, "Network Security Systems, Inc." },
- { 741, "JNA Telecommunications" },
- { 742, "Encore Computer Corporation" },
- { 743, "Central Intelligence Agency" },
- { 744, "ISC (GB) Limited" },
- { 745, "Digital Communication Associates" },
- { 746, "CyberMedia Inc." },
- { 747, "Distributed Systems International, Inc." },
- { 748, "Peter Radig EDP-Consulting" },
- { 749, "Vicorp Interactive Systems" },
- { 750, "Inet Inc." },
- { 751, "Argonne National Lab" },
- { 752, "Teklogix" },
- { 753, "North Western University" },
- { 754, "Astarte Fiber Networks" },
- { 755, "Diederich & Associates, Inc." },
- { 756, "Florida Power Corporation" },
- { 757, "Ingres Corporation" },
- { 758, "Open Network Enterprise" },
- { 759, "The Home Depot" },
- { 760, "Pan Dacom Telekommunikations" },
- { 761, "NetTek" },
- { 762, "Karlnet Corp." },
- { 763, "Efficient Networks, Inc." },
- { 764, "Fiberdata" },
- { 765, "Lanser" },
- { 766, "Ericsson Denmark A/S, Telebit Division" },
- { 767, "QoSCom" },
- { 768, "Network Computing Inc." },
- { 769, "Walgreens Company" },
- { 770, "Internet Initiative Japan Inc." },
- { 771, "GP van Niekerk Ondernemings" },
- { 772, "Queen's University Belfast" },
- { 773, "Securities Industry Automation Corporation" },
- { 774, "SYNaPTICS" },
- { 775, "Data Switch Corporation" },
- { 776, "Telindus Distribution" },
- { 777, "MAXM Systems Corporation" },
- { 778, "Fraunhofer Gesellschaft" },
- { 779, "EQS Business Services" },
- { 780, "CNet Technology Inc." },
- { 781, "Datentechnik GmbH" },
- { 782, "Network Solutions, LLC" },
- { 783, "Viaman Software" },
- { 784, "Schweizerische Bankgesellschaft Zuerich" },
- { 785, "University of Twente - TIOS" },
- { 786, "Simplesoft Inc." },
- { 787, "Stony Brook, Inc." },
- { 788, "Unified Systems Solutions, Inc." },
- { 789, "Network Appliance Corporation" },
- { 790, "Ornet Data Communication Technologies Ltd." },
- { 791, "Computer Associates International" },
- { 792, "Wireless Incorporated" },
- { 793, "NYNEX Science & Technology" },
- { 794, "Commercial Link Systems" },
- { 795, "Adaptec Inc." },
- { 796, "Softswitch" },
- { 797, "Link Technologies, Inc." },
- { 798, "IIS" },
- { 799, "Mobile Solutions Inc." },
- { 800, "Xylan Corp." },
- { 801, "Airtech Software Forge Limited" },
- { 802, "National Semiconductor" },
- { 803, "Video Lottery Technologies" },
- { 804, "National Semiconductor Corp" },
- { 805, "Applications Management Corp" },
- { 806, "Travelers Insurance Company" },
- { 807, "Taiwan International Standard Electronics Ltd." },
- { 808, "US Patent and Trademark Office Rick" },
- { 809, "Hynet, Ltd." },
- { 810, "Aydin, Corp." },
- { 811, "ADDTRON Technology Co., Ltd." },
- { 812, "Fannie Mae" },
- { 813, "MultiNET Services" },
- { 814, "GECKO mbH" },
- { 815, "Memorex Telex" },
- { 816, "Advanced Communications Networks (ACN) SA" },
- { 817, "Telekurs AG" },
- { 818, "IMV Victron bv" },
- { 819, "CF6 Company" },
- { 820, "Walker Richer and Quinn Inc." },
- { 821, "Saturn Systems" },
- { 822, "Mitsui Marine and Fire Insurance Co. Ltd." },
- { 823, "Loop Telecommunication International, Inc." },
- { 824, "Telenex Corporation" },
- { 825, "Bus-Tech, Inc." },
- { 826, "ATRIE" },
- { 827, "Gallagher & Robertson A/S" },
- { 828, "Networks Northwest, Inc." },
- { 829, "Conner Peripherials" },
- { 830, "Elf Antar France" },
- { 831, "Lloyd Internetworking" },
- { 832, "Datatec Industries, Inc." },
- { 833, "TAICOM" },
- { 834, "Brown's Operating System Services Ltd." },
- { 835, "MiLAN Technology Corp." },
- { 836, "NetEdge Systems, Inc." },
- { 837, "NetFrame Systems" },
- { 838, "Xedia Corporation" },
- { 839, "Pepsi" },
- { 840, "Tricord Systems, Inc." },
- { 841, "Proxim Wireless, Inc" },
- { 842, "Applications Plus, Inc." },
- { 843, "Pacific Bell" },
- { 844, "Scorpio Communications" },
- { 845, "TPS-Teleprocessing Systems" },
- { 846, "Technology Solutions Company" },
- { 847, "Computer Site Technologies" },
- { 848, "NetPort Software" },
- { 849, "Alon Systems" },
- { 850, "Tripp Lite" },
- { 851, "NetComm Limited" },
- { 852, "Precision Systems, Inc.(PSI)" },
- { 853, "Objective Systems Integrators" },
- { 854, "Simpact, Inc." },
- { 855, "Systems Enhancement Corporation" },
- { 856, "Information Integration, Inc." },
- { 857, "CETREL S.C." },
- { 858, "Platinum Technology, Inc." },
- { 859, "Olivetti North America" },
- { 860, "WILMA" },
- { 861, "Thomson Financial" },
- { 862, "Total Peripherals Inc." },
- { 863, "SunNetworks Consultant" },
- { 864, "Arkhon Technologies, Inc." },
- { 865, "Computer Sciences Corporation" },
- { 866, "Philips Communication d'Entreprise Claude Lubin" },
- { 867, "Katron Technologies Inc." },
- { 868, "Transition Engineering Inc." },
- { 869, "Altos Engineering Applications, Inc." },
- { 870, "Nicecom Ltd." },
- { 871, "Fiskars/Deltec" },
- { 872, "AVM GmbH" },
- { 873, "Comm Vision" },
- { 874, "Institute for Information Industry" },
- { 875, "Legent Corporation" },
- { 876, "Network Automation" },
- { 877, "EView Technology" },
- { 878, "Coman Data Communications Ltd." },
- { 879, "Skattedirektoratet" },
- { 880, "Client-Server Technologies" },
- { 881, "Societe Internationale de Telecommunications Aeronautiques" },
- { 882, "Maximum Strategy Inc." },
- { 883, "Integrated Systems, Inc." },
- { 884, "E-Systems" },
- { 885, "RELTEC Corporation" },
- { 886, "Summa Four Inc." },
- { 887, "J & L Information Systems" },
- { 888, "Forest Computer Inc." },
- { 889, "Palindrome Corp." },
- { 890, "ZyXEL Communications Corp." },
- { 891, "Network Managers (UK) Ltd," },
- { 892, "Sensible Office Systems Inc." },
- { 893, "Informix Software" },
- { 894, "Dynatek Communications" },
- { 895, "Versalynx Corp." },
- { 896, "Potomac Scheduling Communications Company" },
- { 897, "Sybase, Inc" },
- { 898, "DiviCom Inc." },
- { 899, "Datus elektronische Informationssysteme GmbH" },
- { 900, "Matrox Electronic Systems Limited" },
- { 901, "Digital Products, Inc." },
- { 902, "Scitex Corp.Ltd." },
- { 903, "RAD Vision" },
- { 904, "Tran Network Systems" },
- { 905, "Scorpion Logic" },
- { 906, "Inotech Inc.Eric Jacobs" },
- { 907, "Controlled Power Co." },
- { 908, "ABB Inc. (formerly 'Elsag Bailey Incorporated')" },
- { 909, "J.P. Morgan" },
- { 910, "Clear Communications Corp." },
- { 911, "General Technology Inc." },
- { 912, "Adax Inc." },
- { 913, "Mtel Technologies, Inc." },
- { 914, "Underscore, Inc." },
- { 915, "SerComm Corp." },
- { 916, "Allegiance Corporation" },
- { 917, "Tellus Technology" },
- { 918, "Continuous Electron Beam Accelerator Facility" },
- { 919, "Canoga Perkins" },
- { 920, "R.I.S Technologies" },
- { 921, "INFONEX Corp." },
- { 922, "WordPerfect Corp." },
- { 923, "NRaD" },
- { 924, "Hong Kong Telecommunications Ltd." },
- { 925, "Signature Systems" },
- { 926, "Alpha Technologies, Inc." },
- { 927, "PairGain Technologies, Inc." },
- { 928, "Sonic Systems" },
- { 929, "Steinbrecher Corp." },
- { 930, "Centillion Networks, Inc." },
- { 931, "Network Communication Corp." },
- { 932, "Sysnet A.S." },
- { 933, "Telecommunication Systems Lab" },
- { 934, "QMI" },
- { 935, "Phoenixtec Power Co., Ltd." },
- { 936, "Hirakawa Hewtech Corp." },
- { 937, "No Wires Needed B.V." },
- { 938, "Primary Access" },
- { 939, "FD Software AS" },
- { 940, "g.a.m.s. edv-dienstleistungen" },
- { 941, "Nemesys Research Ltd." },
- { 942, "Pacific Communication Sciences, Inc." },
- { 943, "Level One Communications, Inc." },
- { 944, "Intellimon Software, LLC." },
- { 945, "Accenture (formerly 'Andersen Consulting')" },
- { 946, "Bay Technologies Pty Ltd." },
- { 947, "Integrated Network Corp." },
- { 948, "CyberPro International" },
- { 949, "Wang Laboratories Inc." },
- { 950, "Polaroid Corp." },
- { 951, "Sunrise Sierra" },
- { 952, "Silcon Group" },
- { 953, "Coastcom" },
- { 954, "4th DIMENSION SOFTWARE Ltd." },
- { 955, "SEIKO SYSTEMS Inc." },
- { 956, "PERFORM" },
- { 957, "TV/COM International" },
- { 958, "Network Integration, Inc." },
- { 959, "Sola Electric, A Unit of General Signal" },
- { 960, "Gradient Technologies, Inc." },
- { 961, "Tokyo Electric Co., Ltd." },
- { 962, "Codonics, Inc." },
- { 963, "Delft Technical University" },
- { 964, "Carrier Access Corp." },
- { 965, "eoncorp" },
- { 966, "Naval Undersea Warfare Center" },
- { 967, "AWA Limited" },
- { 968, "Distinct Corp." },
- { 969, "National Technical University of Athens" },
- { 970, "BGS Systems, Inc." },
- { 971, "AT&T Wireless (McCaw Wireless Data)" },
- { 972, "Bekaert" },
- { 973, "Epic Data Inc." },
- { 974, "Prodigy Services Co." },
- { 975, "First Pacific Networks (FPN)" },
- { 976, "Xylink Ltd." },
- { 977, "Relia Technologies Corp." },
- { 978, "Legacy Storage Systems Inc." },
- { 979, "Digicom, SPA" },
- { 980, "Ark Telecom" },
- { 981, "National Security Agency (NSA)" },
- { 982, "Southwestern Bell Corporation (AT&T) (formerly 'Southwestern Bell Corporation')" },
- { 983, "Virtual Design Group, Inc." },
- { 984, "Rhone Poulenc" },
- { 985, "Swiss Bank Corporation" },
- { 986, "ATEA N.V." },
- { 987, "Computer Communications Specialists, Inc." },
- { 988, "Object Quest, Inc." },
- { 989, "DCL System International, Ltd." },
- { 990, "SOLITON SYSTEMS K.K." },
- { 991, "U S Software" },
- { 992, "Systems Research and Applications Corporation" },
- { 993, "University of Florida" },
- { 994, "Dantel, Inc." },
- { 995, "Multi-Tech Systems, Inc." },
- { 996, "Softlink Ltd." },
- { 997, "ProSum" },
- { 998, "March Systems Consultancy, Ltd." },
- { 999, "Hong Technology, Inc." },
- { 1000, "Internet Assigned Numbers Authority" },
- { 1001, "PECO Energy Co." },
- { 1002, "United Parcel Service" },
- { 1003, "Storage Dimensions, Inc." },
- { 1004, "ITV Technologies, Inc." },
- { 1005, "TCPSI" },
- { 1006, "Promptus Communications, Inc." },
- { 1007, "Norman Data Defense Systems" },
- { 1008, "Pilot Network Services, Inc." },
- { 1009, "Integrated Systems Solutions Corporation" },
- { 1010, "SISRO" },
- { 1011, "NetVantage" },
- { 1012, "Marconi" },
- { 1013, "SURECOM" },
- { 1014, "Royal Hong Kong Jockey Club" },
- { 1015, "Gupta" },
- { 1016, "Tone Software Corporation" },
- { 1017, "Opus Telecom" },
- { 1018, "Cogsys Ltd." },
- { 1019, "Komatsu, Ltd." },
- { 1020, "ROI Systems, Inc" },
- { 1021, "Lightning Instrumentation SA" },
- { 1022, "TimeStep Corp." },
- { 1023, "INTELSAT" },
- { 1024, "Network Research Corporation Japan, Ltd." },
- { 1025, "Relational Development, Inc." },
- { 1026, "Emerald Systems, Corp." },
- { 1027, "Mitel, Corp." },
- { 1028, "Software AG" },
- { 1029, "MillenNet, Inc." },
- { 1030, "NK-EXA Corp." },
- { 1031, "BMC Software" },
- { 1032, "StarFire Enterprises, Inc." },
- { 1033, "Hybrid Networks, Inc." },
- { 1034, "Quantum Software GmbH" },
- { 1035, "Openvision Technologies Limited" },
- { 1036, "Healthcare Communications, Inc.(HCI)" },
- { 1037, "SAIT Systems" },
- { 1038, "SAGEMCOM SAS " },
- { 1039, "CompuSci Inc." },
- { 1040, "Aim Technology" },
- { 1041, "CIESIN" },
- { 1042, "Systems & Technologies International" },
- { 1043, "Israeli Electric Company (IEC) Yoram Harlev" },
- { 1044, "Phoenix Wireless Group, Inc." },
- { 1045, "SWL" },
- { 1046, "nCUBE" },
- { 1047, "Cerner, Corp." },
- { 1048, "Andersen Consulting" },
- { 1049, "Windstream Communications" },
- { 1050, "Acer" },
- { 1051, "Cedros" },
- { 1052, "AirAccess" },
- { 1053, "Expersoft Corporation" },
- { 1054, "Eskom" },
- { 1055, "SBE, Inc." },
- { 1056, "SS8" },
- { 1057, "American Computer and Electronics, Corp." },
- { 1058, "Syndesis Limited" },
- { 1059, "Isis Distributed Systems, Inc." },
- { 1060, "Priority Call Management" },
- { 1061, "Koelsch & Altmann GmbH" },
- { 1062, "WIPRO INFOTECH Ltd." },
- { 1063, "Controlware" },
- { 1064, "Mosaic Software" },
- { 1065, "Canon Information Systems" },
- { 1066, "AOL Inc." },
- { 1067, "Whitetree Network Technologies, Inc." },
- { 1068, "Northrop Grumman / Xetron" },
- { 1069, "Target Concepts, Inc." },
- { 1070, "DMH Software" },
- { 1071, "Innosoft International, Inc." },
- { 1072, "Controlware GmbH" },
- { 1073, "Telecommunications Industry Association (TIA) Mike" },
- { 1074, "Boole & Babbage" },
- { 1075, "System Engineering Support, Ltd." },
- { 1076, "SURFnet" },
- { 1077, "OpenConnect Systems, Inc." },
- { 1078, "PDTS (Process Data Technology and Systems)" },
- { 1079, "Cornet, Inc." },
- { 1080, "NetStar, Inc." },
- { 1081, "Semaphore Communications, Corp." },
- { 1082, "Casio Computer Co., Ltd." },
- { 1083, "CSIR" },
- { 1084, "APOGEE Communications" },
- { 1085, "Information Management Company" },
- { 1086, "Wordlink, Inc." },
- { 1087, "PEER" },
- { 1088, "Telstra Corp" },
- { 1089, "Net X, Inc." },
- { 1090, "PNC PLC" },
- { 1091, "DanaSoft, Inc." },
- { 1092, "Yokogawa-Hewlett-Packard" },
- { 1093, "Citem" },
- { 1094, "Link Telecom, Ltd." },
- { 1095, "Xirion bv" },
- { 1096, "Centigram Communications, Corp." },
- { 1097, "Gensym Corp." },
- { 1098, "Apricot Computers, Ltd." },
- { 1099, "CANAL+" },
- { 1100, "Cambridge Technology Partners" },
- { 1101, "MoNet Systems, Inc." },
- { 1102, "Metricom, Inc." },
- { 1103, "Xact, Inc" },
- { 1104, "Brave Software, Inc." },
- { 1105, "NetCell Systems, Inc." },
- { 1106, "Uni-QLennart Norlanderlennart.norlander&uniq.se" },
- { 1107, "DISA Space Systems Development Division" },
- { 1108, "INTERSOLV" },
- { 1109, "Vela Research, Inc." },
- { 1110, "Tetherless Access, Inc." },
- { 1111, "Magistrat Wien, AT" },
- { 1112, "Franklin Telecom, Inc." },
- { 1113, "EDA Instruments, Inc." },
- { 1114, "EFI Electronics, Corporation" },
- { 1115, "GMD" },
- { 1116, "Voicetek, Corp" },
- { 1117, "Avanti Technology, Inc." },
- { 1118, "ATLan LTD" },
- { 1119, "Lehman Brothers" },
- { 1120, "LAN-hopper Systems, Inc." },
- { 1121, "Web-Systems" },
- { 1122, "Piller GmbH" },
- { 1123, "Engenio Information Technologies, Inc." },
- { 1124, "NetSpan, Corp." },
- { 1125, "Nielsen Media Research" },
- { 1126, "Sterling Software" },
- { 1127, "Applied Network Technology, Inc." },
- { 1128, "Union Pacific Railroad" },
- { 1129, "Tec Corporation" },
- { 1130, "Datametrics Systems, Corporation Karl S." },
- { 1131, "Intersection Development Corporation Michael" },
- { 1132, "BACS Limited, GB" },
- { 1133, "Engage Communication" },
- { 1134, "Fastware, S.A." },
- { 1135, "LONGSHINE Electronics Corp." },
- { 1136, "BOW Networks, Inc." },
- { 1137, "emotion, Inc." },
- { 1138, "Rautaruukki steel factory, Information systems" },
- { 1139, "EMC Corp" },
- { 1140, "University of West England" },
- { 1141, "Com21" },
- { 1142, "Compression Tehnologies Inc." },
- { 1143, "Buslogic Inc." },
- { 1144, "Firefox Corporation" },
- { 1145, "Mercury Communications Ltd" },
- { 1146, "COMPUTER PROTOCOL MALAYSIA SDN. BHD." },
- { 1147, "Institute for Information Industry" },
- { 1148, "Pacific Electric Wire & Cable Co. Ltd." },
- { 1149, "MPR Teltech Ltd" },
- { 1150, "P-COM, Inc" },
- { 1151, "Anritsu Corporation" },
- { 1152, "SPYRUS" },
- { 1153, "NeTpower, Inc." },
- { 1154, "Diehl ISDN GmbH" },
- { 1155, "CARNet" },
- { 1156, "AS-TECH" },
- { 1157, "SG2 Innovation et Produits" },
- { 1158, "CellAccess Technology, Inc." },
- { 1159, "Bureau of Meteorology" },
- { 1160, "ELTRAX" },
- { 1161, "Thames Water Utilities Limited" },
- { 1162, "Micropolis, Corp." },
- { 1163, "Integrated Systems Technology" },
- { 1164, "Brite Voice Systems, Inc." },
- { 1165, "Associated Grocer" },
- { 1166, "General Instrument" },
- { 1167, "Stanford Telecom" },
- { 1168, "ICOM Informatique" },
- { 1169, "MPX Data Systems Inc." },
- { 1170, "Syntellect" },
- { 1171, "Polyhedra Ltd (formerly 'Perihelion Technology Ltd')" },
- { 1172, "Shoppers Drug Mart" },
- { 1173, "Apollo Travel Services Judith Williams-Murphy" },
- { 1174, "Time Warner Cable, Inc." },
- { 1175, "American Technology Labs Inc." },
- { 1176, "Dow Jones & Company, Inc." },
- { 1177, "FRA" },
- { 1178, "Equitable Life Assurance Society" },
- { 1179, "Smith Barney Inc." },
- { 1180, "Compact Data Ltd" },
- { 1181, "I.Net Communications" },
- { 1182, "Yamaha Corporation" },
- { 1183, "Illinois State University" },
- { 1184, "RADGuard Ltd." },
- { 1185, "Calypso Software Systems, Inc." },
- { 1186, "ACT Networks Inc." },
- { 1187, "Kingston Communications" },
- { 1188, "Incite" },
- { 1189, "VVNET, Inc." },
- { 1190, "Ontario Hydro" },
- { 1191, "CS-Telecom" },
- { 1192, "ICTV" },
- { 1193, "CORE International Inc." },
- { 1194, "Mibs4You" },
- { 1195, "ITK" },
- { 1196, "Network Integrity, Inc." },
- { 1197, "BlueLine Software, Inc." },
- { 1198, "Migrant Computing Services,Inc." },
- { 1199, "Linklaters & Paines" },
- { 1200, "EJV Partners, L.P." },
- { 1201, "Guardeonic Solutions Ltd." },
- { 1202, "VARCOM Corporation" },
- { 1203, "Equitel" },
- { 1204, "The Southern Company" },
- { 1205, "Dataproducts Corporation" },
- { 1206, "National Electrical Manufacturers Association (NEMA)" },
- { 1207, "RISCmanagement, Inc." },
- { 1208, "GVC Corporation" },
- { 1209, "timonWare Inc." },
- { 1210, "Capital Resources Computer Corporation" },
- { 1211, "Storage Technology Corporation" },
- { 1212, "Tadiran Telecom TTL." },
- { 1213, "NCP" },
- { 1214, "Operations Control Systems (OCS)" },
- { 1215, "The NASDAQ Stock Market Inc." },
- { 1216, "Tiernan Communications, Inc." },
- { 1217, "Goldman, Sachs Company" },
- { 1218, "Advanced Telecommunications Modules Ltd" },
- { 1219, "Phoenix Data Communications" },
- { 1220, "Quality Consulting Services" },
- { 1221, "MILAN" },
- { 1222, "Instrumental Inc." },
- { 1223, "Yellow Technology Services Inc." },
- { 1224, "Mier Communications Inc." },
- { 1225, "Cable Services Group Inc." },
- { 1226, "Forte Networks Inc." },
- { 1227, "American Management Systems, Inc." },
- { 1228, "Choice Hotels Intl." },
- { 1229, "SEH Computertechnik Gm Rainer Ellerbrake" },
- { 1230, "McAFee Associates Inc." },
- { 1231, "Network Intelligent Inc." },
- { 1232, "Luxcom Technologies, Inc." },
- { 1233, "ITRON Inc." },
- { 1234, "Linkage Software Inc." },
- { 1235, "Spardat AG" },
- { 1236, "VeriFone Inc." },
- { 1237, "Revco D.S., Inc." },
- { 1238, "HRB Systems, Inc." },
- { 1239, "Litton Fibercom" },
- { 1240, "Silex Technology America, Inc. (formerly 'XCD, Incorporated')" },
- { 1241, "ProsjektLeveranser AS" },
- { 1242, "Halcyon Inc." },
- { 1243, "SBB" },
- { 1244, "LeuTek" },
- { 1245, "Zeitnet, Inc" },
- { 1246, "Visual Networks, Inc." },
- { 1247, "Coronet Systems" },
- { 1248, "SEIKO EPSON CORPORATION" },
- { 1249, "DnH Technologies" },
- { 1250, "Deluxe Data" },
- { 1251, "Michael A. Okulski Inc." },
- { 1252, "Saber Software Corporation" },
- { 1253, "Mission Systems, Inc." },
- { 1254, "Siemens Plessey Electronics Systems" },
- { 1255, "Applied Communications Inc," },
- { 1256, "Transaction Technology, Inc." },
- { 1257, "HST Ltd" },
- { 1258, "Michigan Technological University Onwuka" },
- { 1259, "Next Level Communications" },
- { 1260, "Instinet Corp." },
- { 1261, "Analog & Digital Systems Ltd." },
- { 1262, "Ansaldo Trasporti SpA" },
- { 1263, "ECCI" },
- { 1264, "Imatek Corporation" },
- { 1265, "PTT Telecom bv" },
- { 1266, "Data Race, Inc." },
- { 1267, "Network Safety Group, Inc." },
- { 1268, "Application des Techniques Nouvelles en Electronique" },
- { 1269, "MFS Communications Company" },
- { 1270, "Information Services Division" },
- { 1271, "Ciena Corporation" },
- { 1272, "Fujitsu Nexion" },
- { 1273, "Standard Networks, Inc" },
- { 1274, "Scientific Research Corporation" },
- { 1275, "micado SoftwareConsult GmbH" },
- { 1276, "Concert Management Services, Inc." },
- { 1277, "University of Delaware" },
- { 1278, "Bias Consultancy Ltd." },
- { 1279, "Micromuse Inc." },
- { 1280, "Translink Systems" },
- { 1281, "PI-NET" },
- { 1282, "Amber Wave Systems" },
- { 1283, "Superior Electronics Group Inc." },
- { 1284, "Network Telemetrics Inc" },
- { 1285, "BSW-Data" },
- { 1286, "ECI Telecom Ltd." },
- { 1287, "BroadVision" },
- { 1288, "ALFA, Inc." },
- { 1289, "TELEFONICA SISTEMAS, S.A." },
- { 1290, "Image Sciences, Inc." },
- { 1291, "MITSUBISHI ELECTRIC INFORMATION NETWORK CORPORATION (MIND)" },
- { 1292, "Central Flow Management Unit" },
- { 1293, "Woods Hole Oceanographic Institution" },
- { 1294, "Raptor Systems, Inc." },
- { 1295, "TeleLink Technologies Inc." },
- { 1296, "First Virtual Corporation" },
- { 1297, "Network Services Group" },
- { 1298, "SilCom Manufacturing Technology Inc." },
- { 1299, "NETSOFT Inc." },
- { 1300, "Fidelity Investments" },
- { 1301, "Telrad Telecommunications" },
- { 1302, "VERITAS Software Corp." },
- { 1303, "LeeMah DataCom Security Corporation" },
- { 1304, "Racemi, Inc." },
- { 1305, "USAir, Inc" },
- { 1306, "Jet Propulsion Laboratory" },
- { 1307, "ABIT Co" },
- { 1308, "Dataplex Pty. Ltd." },
- { 1309, "Creative Interaction Technologies, Inc." },
- { 1310, "AimNet Solutions" },
- { 1311, "Unassigned" },
- { 1312, "Klos Technologies, Inc." },
- { 1313, "ACOTEC" },
- { 1314, "Datacomm Management Sciences Inc." },
- { 1315, "MG-SOFT d.o.o." },
- { 1316, "Plessey Tellumat SA" },
- { 1317, "PaineWebber, Inc." },
- { 1318, "DATASYS Ltd." },
- { 1319, "QVC Inc." },
- { 1320, "IPL Systems" },
- { 1321, "Pacific Micro Data, Inc." },
- { 1322, "DeskNet Systems, Inc" },
- { 1323, "TC Technologies" },
- { 1324, "Racotek, Inc." },
- { 1325, "CelsiusTech AB" },
- { 1326, "Xing Technology Corp." },
- { 1327, "dZine n.v." },
- { 1328, "Electronic merchant Services, Inc." },
- { 1329, "Linmor Information Systems Management, Inc." },
- { 1330, "ABL Canada Inc." },
- { 1331, "University of Coimbra" },
- { 1332, "Iskratel, Ltd., Telecommunications Systems" },
- { 1333, "ISA Co.,Ltd." },
- { 1334, "CONNECT, Inc." },
- { 1335, "Digital Video" },
- { 1336, "InterVoice, Inc." },
- { 1337, "Liveware Tecnologia a Servico a Ltda" },
- { 1338, "Precept Software, Inc." },
- { 1339, "Heroix Corporation" },
- { 1340, "Holland House B.V." },
- { 1341, "Dedalus Engenharia S/C Ltda" },
- { 1342, "GEC ALSTHOM I.T." },
- { 1343, "Deutsches Elektronen-Synchrotron" },
- { 1344, "Avotus Corporation" },
- { 1345, "Dacoll Ltd" },
- { 1346, "NetCorp Inc." },
- { 1347, "KYOCERA Corporation" },
- { 1348, "The Longaberger Company" },
- { 1349, "ILEX" },
- { 1350, "Conservation Through Innovation, Limited" },
- { 1351, "SeeBeyond Technology Corporation" },
- { 1352, "Multex Systems, Inc." },
- { 1353, "Gambit Communications, Inc." },
- { 1354, "Central Data Corporation" },
- { 1355, "CompuCom Systems, Inc." },
- { 1356, "Generex Systems GMBH" },
- { 1357, "Periphonics Corporation" },
- { 1358, "Freddie Mac" },
- { 1359, "Digital Equipment bv" },
- { 1360, "PhoneLink plc" },
- { 1361, "Voice-Tel Enterprises, Inc." },
- { 1362, "AUDILOG" },
- { 1363, "SanRex Corporation" },
- { 1364, "Chloride" },
- { 1365, "GA Systems Ltd" },
- { 1366, "Microdyne Corporation" },
- { 1367, "Boston College" },
- { 1368, "Orange (formerly 'France Telecom')" },
- { 1369, "Stonesoft Corp" },
- { 1370, "A. G. Edwards & Sons, Inc." },
- { 1371, "Attachmate Corp." },
- { 1372, "LSI Logic" },
- { 1373, "interWAVE Communications, Inc." },
- { 1374, "mdl-Consult" },
- { 1375, "Frobbit AB (formerly 'Firma PAF')" },
- { 1376, "Nashoba Networks Inc" },
- { 1377, "Comedia Information AB" },
- { 1378, "Harvey Mudd College" },
- { 1379, "First National Bank of Chicago" },
- { 1380, "Department of National Defence (Canada)" },
- { 1381, "CBM Technologies, Inc." },
- { 1382, "InterProc Inc." },
- { 1383, "Glenayre R&D Inc." },
- { 1384, "Telenet GmbH Kommunikationssysteme" },
- { 1385, "Softlab GmbH" },
- { 1386, "Storage Computer Corporation" },
- { 1387, "CellStack Systems Ltd" },
- { 1388, "Viewgate Networks" },
- { 1389, "Simple Network Magic Corporation" },
- { 1390, "Stallion Technologies Pty Ltd" },
- { 1391, "Loan System" },
- { 1392, "DLR - Deutsche Forschungsanstalt fuer Luft- und Raumfahrt e.V." },
- { 1393, "ICRA, Inc." },
- { 1394, "Probita" },
- { 1395, "NEXOR Ltd" },
- { 1396, "American Internation Facsimile Products" },
- { 1397, "Tellabs" },
- { 1398, "DATAX" },
- { 1399, "IntelliSys Corporation" },
- { 1400, "Sandia National Laboratories" },
- { 1401, "Synerdyne Corp." },
- { 1402, "UNICOM Electric, Inc." },
- { 1403, "Central Design Systems Inc." },
- { 1404, "The Silk Road Group, Ltd." },
- { 1405, "Positive Computing Concepts" },
- { 1406, "First Data Resources" },
- { 1407, "INETCO Systems Limited" },
- { 1408, "NTT Mobile Communications Network Inc." },
- { 1409, "Target Stores" },
- { 1410, "Advanced Peripherals Technologies, Inc." },
- { 1411, "Juniper Networks/Funk Software" },
- { 1412, "DunsGate, a Dun and Bradstreet Company" },
- { 1413, "AFP" },
- { 1414, "VertexRSI, Controls and Structures" },
- { 1415, "The Williams Companies, Inc." },
- { 1416, "ASP Technologies, Inc." },
- { 1417, "Philips Communication Systems" },
- { 1418, "Dataprobe Inc." },
- { 1419, "ASTROCOM Corp." },
- { 1420, "CSTI(Communication Systems Technology, Inc.)" },
- { 1421, "Sprint" },
- { 1422, "Syntax" },
- { 1423, "LIGHT-INFOCON" },
- { 1424, "Performance Technology, Inc." },
- { 1425, "CXR" },
- { 1426, "Amir Technology Labs" },
- { 1427, "ISOCOR" },
- { 1428, "Array Technology Corportion" },
- { 1429, "Scientific-Atlanta, Inc." },
- { 1430, "GammaTech, Inc." },
- { 1431, "Telkom SA Limited" },
- { 1432, "CIREL SYSTEMES" },
- { 1433, "Redflex Limited Australia" },
- { 1434, "Hermes - Enterprise Messaging LTD" },
- { 1435, "Acacia Networks Inc." },
- { 1436, "NATIONAL AUSTRALIA BANK Ltd." },
- { 1437, "SineTec Technology Co.,Ltd." },
- { 1438, "Applied Innovation Inc." },
- { 1439, "Arizona State University" },
- { 1440, "Xionics Document Technologies, Inc." },
- { 1441, "Southern Information System Inc." },
- { 1442, "Nebula Consultants Inc." },
- { 1443, "SITRE, SA" },
- { 1444, "Paradigm Technology Ltd" },
- { 1445, "Telub AB" },
- { 1446, "Virginia Polytechnic Institute and State University" },
- { 1447, "Martis Oy" },
- { 1448, "ISKRA TRANSMISSION" },
- { 1449, "QUALCOMM Incorporated" },
- { 1450, "AOL / Netscape Communications Corp." },
- { 1451, "BellSouth Wireless, Inc." },
- { 1452, "NUKO Information Systems, Inc." },
- { 1453, "IPC Information Systems, Inc." },
- { 1454, "Estudios y Proyectos de Telecomunicacion, S.A." },
- { 1455, "Winstar Wireless" },
- { 1456, "Terayon Corp." },
- { 1457, "CyberGuard CorporationDavid Rhein" },
- { 1458, "AMCC" },
- { 1459, "Jupiter Technology, Inc." },
- { 1460, "Delphi Internet Services" },
- { 1461, "Kesmai Corporation" },
- { 1462, "Compact Devices, Inc." },
- { 1463, "OPTIQUEST" },
- { 1464, "Loral Defense Systems-Eagan" },
- { 1465, "OnRamp Technologies" },
- { 1466, "Mark Wahl" },
- { 1467, "Loran International Technologies, Inc." },
- { 1468, "S & S International PLC" },
- { 1469, "Atlantech Technologies Ltd." },
- { 1470, "IN-SNEC" },
- { 1471, "Melita International Corporation" },
- { 1472, "Sharp Laboratories of America" },
- { 1473, "Groupe Decan" },
- { 1474, "Spectronics Micro Systems Limited" },
- { 1475, "varetis COMMUNICATIONS GmbH" },
- { 1476, "ION Networks, Inc." },
- { 1477, "Telegate GlobalAccess Technology Ltd." },
- { 1478, "Merrill Lynch & Co., Inc." },
- { 1479, "JCPenney Co., Inc." },
- { 1480, "The Torrington Company" },
- { 1481, "GS-ProActive" },
- { 1482, "BarcoNet" },
- { 1483, "vortex Computersysteme GmbH" },
- { 1484, "DataFusion Systems (Pty) Ltd" },
- { 1485, "Allen & Overy" },
- { 1486, "Atlantic Systems Group" },
- { 1487, "Kongsberg Informasjonskontroll AS" },
- { 1488, "ELTECO a.s." },
- { 1489, "Schlumberger Limited" },
- { 1490, "CNI Communications Network International GmbH" },
- { 1491, "M&C Systems, Inc." },
- { 1492, "OM Systems International (OMSI) Mats" },
- { 1493, "DAVIC (Digital Audio-Visual Council) Richard" },
- { 1494, "ISM GmbH" },
- { 1495, "E.F. Johnson Co." },
- { 1496, "Baranof Software, Inc." },
- { 1497, "University of Texas Houston" },
- { 1498, "Ukiah Software Solutions/EDS/HDS" },
- { 1499, "STERIA" },
- { 1500, "ATI Australia Pty Limited" },
- { 1501, "The Aerospace Corporation Michael" },
- { 1502, "Orckit Communications Ltd." },
- { 1503, "Tertio Limited" },
- { 1504, "Comsoft Solutions GmbH (formerly 'COMSOFT GmbH')" },
- { 1505, "Power Center Software LLC" },
- { 1506, "Technologic, Inc." },
- { 1507, "Vertex Data Science Limited" },
- { 1508, "ESIGETEL" },
- { 1509, "Illinois Business Training Center Weixiong" },
- { 1510, "Arris Networks, Inc." },
- { 1511, "TeamQuest Corporation" },
- { 1512, "Sentient Networks" },
- { 1513, "Skyrr hf." },
- { 1514, "Tecnologia y Gestion de la Innovacion" },
- { 1515, "Connector GmbH" },
- { 1516, "Kaspia Systems, Inc." },
- { 1517, "SmithKline Beecham" },
- { 1518, "NetCentric Corp." },
- { 1519, "ATecoM GmbH" },
- { 1520, "Citibank Canada" },
- { 1521, "MMS (Matra Marconi Space)" },
- { 1522, "Intermedia Communications, Inc." },
- { 1523, "School of Computer Science, University Science of Malaysia" },
- { 1524, "University of Limerick" },
- { 1525, "ACTANE" },
- { 1526, "Collaborative Information Technology Research Institute(CITRI)" },
- { 1527, "Intermedium A/S" },
- { 1528, "ANS CO+RE Systems, Inc." },
- { 1529, "UUNET Technologies, Inc." },
- { 1530, "Telesciences, Inc." },
- { 1531, "QSC Audio Products" },
- { 1532, "Australian Department of Employment, Education and Training" },
- { 1533, "Network Media Communications Ltd." },
- { 1534, "Sodalia" },
- { 1535, "Innovative Concepts, Inc." },
- { 1536, "Japan Computer Industry Inc." },
- { 1537, "Telogy Networks, Inc." },
- { 1538, "Merck & Company, Inc." },
- { 1539, "GeoTel Communications Corporation" },
- { 1540, "Sun Alliance (UK)" },
- { 1541, "AG Communication Systems" },
- { 1542, "Pivotal Networking, Inc." },
- { 1543, "TSI TelSys Inc." },
- { 1544, "Harmonic Systems Incorporated" },
- { 1545, "ASTRONET Corporation" },
- { 1546, "Frontec" },
- { 1547, "NetVision" },
- { 1548, "FlowPoint Corporation" },
- { 1549, "Allied Data Technologies" },
- { 1550, "Nuera Communication Inc." },
- { 1551, "Radnet Ltd." },
- { 1552, "Oc\0303\0251 Technologies BV" },
- { 1553, "Air France" },
- { 1554, "Communications & Power Engineering, Inc." },
- { 1555, "Charter Systems" },
- { 1556, "Performance Technologies, Inc." },
- { 1557, "Paragon Networks International" },
- { 1558, "Skog-Data AS" },
- { 1559, "mitec a/s" },
- { 1560, "THOMSON-CSF / Departement Reseaux d'Entreprise" },
- { 1561, "Ipsilon Networks, Inc." },
- { 1562, "Kingston Technology Company" },
- { 1563, "Harmonic Lightwaves" },
- { 1564, "InterActive Digital Solutions" },
- { 1565, "Coactive Aesthetics, Inc." },
- { 1566, "Tech Data Corporation" },
- { 1567, "Z-Com" },
- { 1568, "COTEP" },
- { 1569, "Raytheon Company" },
- { 1570, "Telesend Inc." },
- { 1571, "NCC" },
- { 1572, "Forte Software, Inc." },
- { 1573, "McAfee (formerly 'Secure Computing Corporation')" },
- { 1574, "BEZEQ" },
- { 1575, "TU Braunschweig" },
- { 1576, "Stac Inc." },
- { 1577, "StarNet Communications" },
- { 1578, "Universidade do Minho" },
- { 1579, "Department of Computer Science, University of Liverpool" },
- { 1580, "Tekram Technology, Ltd." },
- { 1581, "RATP" },
- { 1582, "Rainbow Diamond Limited" },
- { 1583, "Magellan Communications, Inc" },
- { 1584, "Bay Networks Incorporated" },
- { 1585, "Quantitative Data Systems (QDS)" },
- { 1586, "ESYS Limited" },
- { 1587, "Switched Network Technologies (SNT)" },
- { 1588, "Brocade Communications Systems, Inc." },
- { 1589, "Computer Resources International A/S (CRI)" },
- { 1590, "Luchtverkeersleiding Nederland" },
- { 1591, "GTIL" },
- { 1592, "XactLabs Corporation" },
- { 1593, "Quest Software, Inc. (formerly 'NetPro Computing, Inc.')" },
- { 1594, "TELESYNC" },
- { 1595, "ewt breitbandnetze gmbh" },
- { 1596, "INS GmbH" },
- { 1597, "Distributed Processing Technology" },
- { 1598, "Tivoli Systems Inc." },
- { 1599, "Network Management Technologies" },
- { 1600, "SIRTI" },
- { 1601, "TASKE Technology Inc." },
- { 1602, "CANON Inc." },
- { 1603, "Systems and Synchronous, Inc." },
- { 1604, "XFER International" },
- { 1605, "Scandpower A/S" },
- { 1606, "Consultancy & Projects Group srl" },
- { 1607, "STS Technologies, Inc." },
- { 1608, "Mylex Corporation" },
- { 1609, "CRYPTOCard Corporation" },
- { 1610, "LXE, Inc." },
- { 1611, "BDM International, Inc." },
- { 1612, "Spacenet Inc." },
- { 1613, "Datanet GmbH" },
- { 1614, "Opcom, Inc." },
- { 1615, "Mlink Internet Inc." },
- { 1616, "SR-Telecom Inc." },
- { 1617, "Net Partners Inc." },
- { 1618, "Peek Traffic - Transyt Corp." },
- { 1619, "Comverse Information Systems" },
- { 1620, "Data Comm for Business, Inc." },
- { 1621, "CYBEC Pty. Ltd." },
- { 1622, "Mitsui Knowledge Industry Co.,Ltd." },
- { 1623, "Tech Laboratories, Inc." },
- { 1624, "Blockade Systems Corp." },
- { 1625, "Nixu Oy" },
- { 1626, "Australian Software Innovations (Services) Pty. Ltd." },
- { 1627, "Omicron Telesystems Inc." },
- { 1628, "DEMON Internet Ltd." },
- { 1629, "PB Farradyne, Inc." },
- { 1630, "Telos Corporation Sharon" },
- { 1631, "Manage Information Technologies" },
- { 1632, "Harlow Butler Broking Services Ltd." },
- { 1633, "Eurologic Systems Ltd" },
- { 1634, "Telco Research Corporation" },
- { 1635, "Mercedes-Benz AG" },
- { 1636, "HOB GmbH & Co. KG - HOB Germany" },
- { 1637, "NOAA" },
- { 1638, "Cornerstone Software" },
- { 1639, "Wink Communications" },
- { 1640, "Thomson Electronic Information Resources (TEIR)" },
- { 1641, "HITT Holland Institute of Traffic Technology B.V." },
- { 1642, "KPMG" },
- { 1643, "Loral Federal Systems" },
- { 1644, "S.I.A.- Societa Interbancaria per l'Automazione" },
- { 1645, "United States Cellular Corp." },
- { 1646, "AMPER DATOS S.A." },
- { 1647, "Carelcomp Forest Oy" },
- { 1648, "Open Environment Australia" },
- { 1649, "Integrated Telecom Technology, Inc." },
- { 1650, "Langner Gesellschaft fuer Datentechnik mbH" },
- { 1651, "Wayne State University" },
- { 1652, "SICC (SsangYong Information & Communications Corp.)" },
- { 1653, "THOMSON - CSF" },
- { 1654, "Teleconnect Dresden GmbH" },
- { 1655, "Panorama Software Inc." },
- { 1656, "CompuNet Systemhaus GmbH" },
- { 1657, "JAPAN TELECOM CO.,LTD." },
- { 1658, "TechForce Corporation" },
- { 1659, "Granite Systems Inc." },
- { 1660, "Bit Incorporated" },
- { 1661, "Companhia de Informatica do Parana - Celepar" },
- { 1662, "Rockwell International Corporation" },
- { 1663, "Ancor Communications" },
- { 1664, "Royal Institute of Technology, Sweden (KTH)" },
- { 1665, "SUNET, Swedish University Network" },
- { 1666, "Sage Instruments, Inc." },
- { 1667, "Candle Corporation" },
- { 1668, "CSO GmbH" },
- { 1669, "M3i Systems Inc." },
- { 1670, "CREDINTRANS" },
- { 1671, "ADVA Optical Networking Ltd." },
- { 1672, "Pierce & Associates" },
- { 1673, "RTS Wireless" },
- { 1674, "R.I.C. Electronics" },
- { 1675, "Amoco Corporation" },
- { 1676, "Qualix Group, Inc." },
- { 1677, "Sahara Networks, Inc." },
- { 1678, "Hyundai Electronics Industries Co.,Ltd." },
- { 1679, "RICH, Inc." },
- { 1680, "Amati Communications Corp." },
- { 1681, "P.H.U. RysTECH" },
- { 1682, "Data Labs Inc." },
- { 1683, "Occidental Petroleum Corporation" },
- { 1684, "Rijnhaave Internet Services" },
- { 1685, "Lynx Real-Time Systems, Inc." },
- { 1686, "QA IT Services Ltd" },
- { 1687, "SofTouch Systems, Inc." },
- { 1688, "Sonda S.A." },
- { 1689, "McCormick Nunes Company" },
- { 1690, "Ume E5 Universitet" },
- { 1691, "NetiQ Corporation" },
- { 1692, "Starlight Networks" },
- { 1693, "Informacion Selectiva S.A. de C.V. ( Infosel )" },
- { 1694, "HCL Technologies Limited" },
- { 1695, "Maryville Data Systems, Inc" },
- { 1696, "EtherCom Corp" },
- { 1697, "MultiCom Software" },
- { 1698, "BEA Systems Ltd." },
- { 1699, "Advanced Technology Ltd." },
- { 1700, "Mobil Oil" },
- { 1701, "Arena Consulting Limited" },
- { 1702, "Netsys International (Pty) Ltd" },
- { 1703, "Titan Information Systems Corp." },
- { 1704, "Cogent Data Technologies" },
- { 1705, "Reliasoft Corporation" },
- { 1706, "Midland Business Systems, Inc." },
- { 1707, "Optimal Networks" },
- { 1708, "Gresham Computing plc" },
- { 1709, "Leidos, Inc. (formerly 'SAIC')" },
- { 1710, "Acclaim Communications" },
- { 1711, "BISS Limited" },
- { 1712, "Caravelle Inc." },
- { 1713, "Diamond Lane Communications Corporation" },
- { 1714, "Infortrend Technology, Inc." },
- { 1715, "Ardatis N.V (formerly 'Orda-B N.V.')" },
- { 1716, "Ariel Corporation" },
- { 1717, "Datalex Communications Ltd." },
- { 1718, "Server Technology Inc." },
- { 1719, "Unimax Systems Corporation" },
- { 1720, "DeTeMobil GmbH" },
- { 1721, "INFONOVA GmbH" },
- { 1722, "Kudelski SA" },
- { 1723, "Pronet GmbH" },
- { 1724, "Westell, Inc." },
- { 1725, "Nupon Computing, Inc." },
- { 1726, "Cianet Ind e Com Ltda (Cianet Networking)" },
- { 1727, "Aumtech of Virginia (amteva)" },
- { 1728, "CheongJo data communication, Inc." },
- { 1729, "Genesys Telecommunications Laboratories Inc.(Genesys Labs.)" },
- { 1730, "Progress SoftwareAndrew Neumann" },
- { 1731, "ERICSSON FIBER ACCESS" },
- { 1732, "Open Access Pty Ltd" },
- { 1733, "Sterling Commerce" },
- { 1734, "Predictive Systems Inc." },
- { 1735, "Architel Systems Corporation" },
- { 1736, "QWEST NMS" },
- { 1737, "Eclipse Technologies Inc." },
- { 1738, "Navy" },
- { 1739, "Bindi Technologies, Pty Ltd" },
- { 1740, "Hallmark Cards Inc." },
- { 1741, "Object Design, Inc." },
- { 1742, "Unassigned" },
- { 1743, "Zenith Data Systems (ZDS)" },
- { 1744, "Gobi Corp." },
- { 1745, "Universitat de Barcelona" },
- { 1746, "Institute for Simulation and Training (IST)" },
- { 1747, "US Agency for International Development" },
- { 1748, "Tut Systems, Inc." },
- { 1749, "AnswerZ Pty Ltd (Australia)" },
- { 1750, "H.Bollmann Manufacturers Ltd (HBM)" },
- { 1751, "Lucent Technologies" },
- { 1752, "phase2 networks Inc." },
- { 1753, "Unify Corporation" },
- { 1754, "Gadzoox Microsystems Inc." },
- { 1755, "Network One, Inc." },
- { 1756, "MuLogic b.v." },
- { 1757, "Optical Microwave Networks, Inc." },
- { 1758, "SITEL, Ltd." },
- { 1759, "Cerg Finance" },
- { 1760, "American Internet Corporation" },
- { 1761, "PLUSKOM GmbH" },
- { 1762, "Dept. of Communications, Graz University of Technology" },
- { 1763, "EarthLink Inc." },
- { 1764, "Real Soft, Inc" },
- { 1765, "Apex Voice Communications, Inc." },
- { 1766, "National DataComm Corporation" },
- { 1767, "Telenor Conax AS" },
- { 1768, "Patton Electronics Company" },
- { 1769, "Digital Fairway Corporation" },
- { 1770, "BroadBand Technologies, Inc." },
- { 1771, "Myricom" },
- { 1772, "DecisionOne" },
- { 1773, "Tandberg Television" },
- { 1774, "AUDITEC SA" },
- { 1775, "PC Magic" },
- { 1776, "Koninklijke Philips Electronics NV" },
- { 1777, "ORIGIN" },
- { 1778, "CSG Systems" },
- { 1779, "Alphameric Technologies Ltd" },
- { 1780, "NCR Austria Michael Ostendorf" },
- { 1781, "ChuckK, Inc." },
- { 1782, "PowerTV, Inc." },
- { 1783, "webMethods" },
- { 1784, "Enron Capitol & Trade Resources" },
- { 1785, "ORBCOMM" },
- { 1786, "Jw direct shop" },
- { 1787, "B.E.T.A." },
- { 1788, "Healtheon" },
- { 1789, "Integralis Ltd." },
- { 1790, "Folio Corporation" },
- { 1791, "ECTF" },
- { 1792, "WebPlanet" },
- { 1793, "nStor Corporation" },
- { 1794, "Deutsche Bahn AG" },
- { 1795, "Paradyne" },
- { 1796, "Nastel Technologies, Inc." },
- { 1797, "Metaphase Technology, Inc." },
- { 1798, "Zweigart & Sawitzki" },
- { 1799, "PIXEL" },
- { 1800, "WaveAccess Inc." },
- { 1801, "The SABRE Group" },
- { 1802, "Redland Technology Corp." },
- { 1803, "PBS" },
- { 1804, "Consensus Development Corporation" },
- { 1805, "SAGEM SA" },
- { 1806, "I-Cube Inc." },
- { 1807, "INTRACOM S.A HELLENIC TELECOMMUNICATION AND ELECTRONICS INDUSTRY)" },
- { 1808, "Aetna, Inc." },
- { 1809, "Dow Jones Markets, Inc." },
- { 1810, "Czech Railways s.o. CITJaroslav Militky" },
- { 1811, "Scan-Matic A/S" },
- { 1812, "DECISION Europe Joel CHOTARD" },
- { 1813, "VTEL Corporation" },
- { 1814, "Bloomberg, L.P." },
- { 1815, "Verint Systems, Inc (formerly Witness Systems, Inc)" },
- { 1816, "Rose-Hulman Institute of Technology" },
- { 1817, "Aether Technologies" },
- { 1818, "Infonet Software SolutionsDavid Hauck" },
- { 1819, "CSTI (Compagnie des Signaux / Technologies Informatiques)Mr Camille Breeus" },
- { 1820, "LEROY MERLINRIGAULT Alain" },
- { 1821, "Total Entertainment Network" },
- { 1822, "Open Port Technology" },
- { 1823, "Mikroelektronik Anwendungszentrum Hamburg GmbHZ" },
- { 1824, "International Management Consulting, Inc." },
- { 1825, "Fore Systems, Inc." },
- { 1826, "MTech Systems" },
- { 1827, "RxSoft Ltd.Timothy Madden" },
- { 1828, "Dept. Computer Studies, Loughborough University" },
- { 1829, "Beta80 S.p.A." },
- { 1830, "Galiso Incorporated" },
- { 1831, "S2 Systems, Inc." },
- { 1832, "Optivision, Inc." },
- { 1833, "Countrywide Home Loans" },
- { 1834, "OA Laboratory Co., Ltd." },
- { 1835, "SDX Business Systems Ltd" },
- { 1836, "West End Systems Corp." },
- { 1837, "DK Digital Media" },
- { 1838, "Westel" },
- { 1839, "Fujitsu Service Limited" },
- { 1840, "Inmarsat" },
- { 1841, "TIMS Technology Ltd" },
- { 1842, "CallWare Technologies" },
- { 1843, "NextLink, L.L.C." },
- { 1844, "TurnQuay Solutions Limited" },
- { 1845, "Accusort Systems Inc" },
- { 1846, "Deutscher Bundestag" },
- { 1847, "Joint Research Centre" },
- { 1848, "FaxSav" },
- { 1849, "Chevy Chase Applications Design" },
- { 1850, "Bank Brussel Lambert (BBL)" },
- { 1851, "OutBack Resource Group, Inc." },
- { 1852, "Screen Subtitling Systems Ltd" },
- { 1853, "Cambridge Parallel Processing Ltd" },
- { 1854, "Boston University" },
- { 1855, "News Digital Systems Ltd" },
- { 1856, "NuTek 2000, Inc." },
- { 1857, "Overland Mobile Communication AB" },
- { 1858, "Axon IT AB" },
- { 1859, "Gradient Medical Systems" },
- { 1860, "WaveSpan Corporation" },
- { 1861, "Net Research, Inc." },
- { 1862, "Browncroft Community Church" },
- { 1863, "Net2Net Corporation" },
- { 1864, "US Internet" },
- { 1865, "Absolute Time" },
- { 1866, "VPNet" },
- { 1867, "NTech" },
- { 1868, "Nippon Unisoft Corporation" },
- { 1869, "Optical Transmission Labs, Inc." },
- { 1870, "CyberCash, Inc." },
- { 1871, "NetSpeed, Inc." },
- { 1872, "Alteon Networks, Inc." },
- { 1873, "Internet Middleware Corporation" },
- { 1874, "ISOnova GmbH" },
- { 1875, "Amiga IOPS Project" },
- { 1876, "Softbank Services Group" },
- { 1877, "Sourcecom Corporation" },
- { 1878, "Telia Promotor AB" },
- { 1879, "HeliOss Communications, Inc." },
- { 1880, "Optical Access International, Inc." },
- { 1881, "MMC Networks, Inc." },
- { 1882, "Lanyon Ltd." },
- { 1883, "Rubico" },
- { 1884, "Quantum Telecom Solutions, Inc." },
- { 1885, "Archinet" },
- { 1886, "i-cubed Ltd." },
- { 1887, "Albis Technologies Ltd. (formerly 'Siemens Switzerland Ltd.')" },
- { 1888, "GigaLabs, Inc." },
- { 1889, "MET Matra-Ericsson" },
- { 1890, "Red Lion Controls (JBM Electronics)" },
- { 1891, "OPTIM Systems, Inc." },
- { 1892, "Software Brewery" },
- { 1893, "WaveLinQ" },
- { 1894, "Siemens ICN" },
- { 1895, "IEX Corporation" },
- { 1896, "TrueTime" },
- { 1897, "HT Communications Inc." },
- { 1898, "Avantcomp Oy" },
- { 1899, "InfoVista" },
- { 1900, "Openwave Systems, Inc." },
- { 1901, "Sea Wonders" },
- { 1902, "HeadStart Enterprise" },
- { 1903, "B-SMART Inc." },
- { 1904, "ISMA Ltd" },
- { 1905, "3DV Technology, Inc." },
- { 1906, "StarCom Technologies Inc." },
- { 1907, "L.L.Bean" },
- { 1908, "NetIcs Inc." },
- { 1909, "Infratec plus GmbH" },
- { 1910, "3edges" },
- { 1911, "GISE mbHVolkmar Brisse / Hans-Jurgen Laub" },
- { 1912, "lan & pc services" },
- { 1913, "RedPoint Software Corporation" },
- { 1914, "Atempo Inc" },
- { 1915, "I-95-CC" },
- { 1916, "Extreme Networks" },
- { 1917, "Village of Rockville Centre" },
- { 1918, "Swichtec Power Systems" },
- { 1919, "Deutscher Wetterdienst" },
- { 1920, "Bluebird Software" },
- { 1921, "Svaha Interactive Media, Inc." },
- { 1922, "Sully Solutions" },
- { 1923, "Blue Line" },
- { 1924, "Castleton Network Systems Corp Glen Tracey tracey&castleton.com" },
- { 1925, "Visual Edge Software Ltd." },
- { 1926, "NetGuard Technologies, Inc." },
- { 1927, "SoftSell, Inc." },
- { 1928, "MARNE SOFTWARE" },
- { 1929, "Cadia Networks, Inc." },
- { 1930, "Milton" },
- { 1931, "Del Mar Solutions, Inc." },
- { 1932, "KUMARAN SYSTEMS" },
- { 1933, "Equivalence" },
- { 1934, "Homewatch International, Inc." },
- { 1935, "John Rivers" },
- { 1936, "Remark Services, Inc." },
- { 1937, "Deloitte & Touche Consulting Group" },
- { 1938, "Flying Penguin Productions" },
- { 1939, "The Matrix" },
- { 1940, "Eastern Computers, Inc." },
- { 1941, "Princeton BioMedica Inc." },
- { 1942, "SanCom Technology, Inc." },
- { 1943, "National Computing Centre Ltd." },
- { 1944, "Aval Communications" },
- { 1945, "WORTEC SearchNet CO." },
- { 1946, "Dogwood Media" },
- { 1947, "Allied Domecq" },
- { 1948, "Telesoft Russia" },
- { 1949, "UTStarcom, Inc." },
- { 1950, "comunit" },
- { 1951, "Traffic Sofware Ltd" },
- { 1952, "Qualop Systems Corp" },
- { 1953, "Vinca Corporation" },
- { 1954, "AMTEC spa" },
- { 1955, "GRETACODER Data Systems AG" },
- { 1956, "KMSystems, Inc." },
- { 1957, "GEVA" },
- { 1958, "Red Creek Communications, Inc." },
- { 1959, "BORG Technology Inc." },
- { 1960, "Concord Electronics" },
- { 1961, "Richard Ricci DDS" },
- { 1962, "Link International Corp." },
- { 1963, "Intermec Technologies Corp." },
- { 1964, "OPTIMUM Data AG" },
- { 1965, "DMCNW" },
- { 1966, "Perle Systems Limited" },
- { 1967, "inktomi corporation" },
- { 1968, "TELE-TV Systems, L.P." },
- { 1969, "Fritz-Haber-Institut" },
- { 1970, "mediaone.net" },
- { 1971, "SeaChange International Peter H." },
- { 1972, "CASTON Corporation" },
- { 1973, "Local Net" },
- { 1974, "JapanNet" },
- { 1975, "NabiscoKen ChristChristK&nabisco.com" },
- { 1976, "micrologica GmbH" },
- { 1977, "Network Harmoni, Inc." },
- { 1978, "SITA ADS" },
- { 1979, "Global Maintech Corporation" },
- { 1980, "Tele2 AB" },
- { 1981, "EMC CLARiiON Advanced Storage Solutions" },
- { 1982, "ITS Corporation" },
- { 1983, "CleverSoft, Inc." },
- { 1984, "The Perseus Group, Inc." },
- { 1985, "Joe's WWW Pages" },
- { 1986, "Everything Internet Store" },
- { 1987, "Numara Software, Inc" },
- { 1988, "Lycoming County PA" },
- { 1989, "Statens Institutions styrelse SiS" },
- { 1990, "INware Solutions Inc." },
- { 1991, "Brocade Communication Systems, Inc. (formerly 'Foundry Networks, Inc.')" },
- { 1992, "Deutsche Bank" },
- { 1993, "Xyratex" },
- { 1994, "Bausch Datacom B.V." },
- { 1995, "Advanced Radio Telecom (ART)" },
- { 1996, "Copper Mountain Communications Inc." },
- { 1997, "PlaNet Software Inc." },
- { 1998, "Carltan Computer Corporation" },
- { 1999, "Littva Mitchell, Inc." },
- { 2000, "TIBCO Inc." },
- { 2001, "Oki Data Corporation" },
- { 2002, "GoTel" },
- { 2003, "Adobe Systems Incorporated" },
- { 2004, "Sentricity" },
- { 2005, "Aeroports De Paris" },
- { 2006, "ECONZ Ltd" },
- { 2007, "TELDAT, S.A." },
- { 2008, "Offset Info Service srl" },
- { 2009, "A. J. Boggs & Company" },
- { 2010, "Stale Odegaard AS" },
- { 2011, "HUAWEI Technology Co.,Ltd" },
- { 2012, "Schroff GmbH" },
- { 2013, "Rehabilitation Institute of Chicago Angie" },
- { 2014, "ADC Telecommunications, Inc." },
- { 2015, "SYSTOR AG" },
- { 2016, "GraIyMage, Inc." },
- { 2017, "Symicron Computer Communications Ltd." },
- { 2018, "Scandorama AB" },
- { 2019, "I-NET" },
- { 2020, "Xland, Ltd." },
- { 2021, "U.C. Davis, ECE Dept. Tom" },
- { 2022, "CANARY COMMUNICATIONS, Inc." },
- { 2023, "NetGain" },
- { 2024, "West Information Publishing Group" },
- { 2025, "Deutsche Bundesbank" },
- { 2026, "Broadxent, Inc" },
- { 2027, "Gauss Interprise AG" },
- { 2028, "Aldiscon" },
- { 2029, "Vivid Image" },
- { 2030, "AfriQ*Access, Inc." },
- { 2031, "Reliant Networks Corporation Steven" },
- { 2032, "Mavenir Systems (formerly 'airwide solutions')" },
- { 2033, "McKinney Lighting & Sound" },
- { 2034, "Whole Systems Design, Inc." },
- { 2035, "O'Reilly & Associates, Inc." },
- { 2036, "Quantum Corporation" },
- { 2037, "Ernst and Young LLP" },
- { 2038, "Teleware Oy" },
- { 2039, "Fiducia Informationszentrale AG Ian" },
- { 2040, "Kinetics, Inc." },
- { 2041, "EMCEE Broadcast Products" },
- { 2042, "Clariant Corporation" },
- { 2043, "IEEE 802.5" },
- { 2044, "Open Development Corporation" },
- { 2045, "RFG SystemsRamon Ferreris" },
- { 2046, "Aspect Telecommunications" },
- { 2047, "Leo & Associates" },
- { 2048, "SoftLinx, Inc." },
- { 2049, "Generale Bank" },
- { 2050, "Windward Technologies Inc." },
- { 2051, "NetSolve, Inc." },
- { 2052, "Xantel" },
- { 2053, "arago, Institut fuer komplexes Datenmanagement GmbH" },
- { 2054, "Kokusai Denshin Denwa Co., Ltd" },
- { 2055, "GILLAM-SATEL" },
- { 2056, "MOEBIUS SYSTEMS" },
- { 2057, "Financial Internet Technology" },
- { 2058, "MARC Systems" },
- { 2059, "Bova Gallery" },
- { 2060, "OSx Telecomunicacoes" },
- { 2061, "Telecom Solutions" },
- { 2062, "CyberIQ Systems" },
- { 2063, "Ardent Communications Corporation" },
- { 2064, "Aware, Inc." },
- { 2065, "Racal Radio Limited" },
- { 2066, "Control Resources Corporation" },
- { 2067, "Advanced Fibre Communications (AFC)" },
- { 2068, "Elproma Electronica B.V." },
- { 2069, "MTA SZTAKI" },
- { 2070, "Consensys Computers Inc" },
- { 2071, "Jade Digital Research Co." },
- { 2072, "Byte This Interactive Pty.Ltd. Mike" },
- { 2073, "Financial Network Technologies Inc." },
- { 2074, "BROKAT Informationssysteme GmbH" },
- { 2075, "MediaWise Networks" },
- { 2076, "Future Software" },
- { 2077, "Commit Information Systems" },
- { 2078, "Virtual Access Ltd" },
- { 2079, "JDS FITEL Inc." },
- { 2080, "IPM DATACOM" },
- { 2081, "StarBurst Communications Corporation Kevin" },
- { 2082, "Tollgrade Communications, Inc." },
- { 2083, "Orange Services US" },
- { 2084, "Sanken Electric Co., Ltd." },
- { 2085, "Isolation Systems Limited" },
- { 2086, "AVIDIA Systems, Inc." },
- { 2087, "Cidera-Mainstream Services" },
- { 2088, "Radstone Technology Plc" },
- { 2089, "Philips Business Communications" },
- { 2090, "FMS Services" },
- { 2091, "Supernova Communications" },
- { 2092, "Murphy & Murphy Real Estate" },
- { 2093, "Multi-Platform Information Systems" },
- { 2094, "Allegro Consultants, Inc." },
- { 2095, "AIAB" },
- { 2096, "Preview Multimedia Services" },
- { 2097, "Access Beyond" },
- { 2098, "SunBurst Technology, Inc." },
- { 2099, "sotas" },
- { 2100, "CyberSouls Eternal Life Systems Inc." },
- { 2101, "HANWHA CORP./TELECOM" },
- { 2102, "COMET TELECOMMUNICATIONS INC" },
- { 2103, "CARY SYSTEMS, Inc." },
- { 2104, "Peerless Systems Corp Frank" },
- { 2105, "Adicom Wireless, Inc" },
- { 2106, "High Technology Software Corp" },
- { 2107, "Lynk" },
- { 2108, "Robin's Limousine" },
- { 2109, "Secant Network Tech" },
- { 2110, "Orion Pictures Corporation" },
- { 2111, "Global Village Communication, Inc." },
- { 2112, "ioWave, Inc." },
- { 2113, "Signals and Semaphores" },
- { 2114, "Mayo Foundation" },
- { 2115, "KRONE AG" },
- { 2116, "Computer Networking Resources, Inc" },
- { 2117, "Telenetworks" },
- { 2118, "Staffordshire University" },
- { 2119, "Broadband Networks Inc." },
- { 2120, "Federal Aviation Administration" },
- { 2121, "Technical Communications Corporation" },
- { 2122, "REZO+" },
- { 2123, "GrafxLab, Inc." },
- { 2124, "Savant Corp" },
- { 2125, "COMTEC SYSTEMS CO.,LTD. DEOK-HYOENG" },
- { 2126, "Satcom Media" },
- { 2127, "UconX Corporation" },
- { 2128, "TPG Network" },
- { 2129, "CNJ Incorporated" },
- { 2130, "Greenbrier & Russel" },
- { 2131, "mainnet" },
- { 2132, "Comnet DatensystemeHolger Zimmermanhzimmermann&cnd.de" },
- { 2133, "Novadigm, Inc." },
- { 2134, "Alfatech, Inc." },
- { 2135, "Financial Sciences Corporation Gary" },
- { 2136, "Electronics For Imaging, Inc." },
- { 2137, "Casabyte" },
- { 2138, "AssureNet Pathways, Inc." },
- { 2139, "Alexander LAN, Inc." },
- { 2140, "Gill-Simpson" },
- { 2141, "MCNS, L.P." },
- { 2142, "Future Systems, Inc." },
- { 2143, "IMGIS" },
- { 2144, "Skywire Corporation" },
- { 2145, "Irdeto Access B. V." },
- { 2146, "Peasantworks" },
- { 2147, "Onion Peel Software" },
- { 2148, "PS Partnership" },
- { 2149, "IRdg, Inc." },
- { 2150, "SDS Ltd." },
- { 2151, "Promus Hotel Corporation Oscar Pearce" },
- { 2152, "Cavid Lawrence Center" },
- { 2153, "Insider Technologies Ltd Paul Hancock" },
- { 2154, "Berkeley Networks" },
- { 2155, "Infonautics Corporation" },
- { 2156, "Easy Software" },
- { 2157, "CESG" },
- { 2158, "SALIX Technologies, Inc." },
- { 2159, "Essential Communications" },
- { 2160, "University of Hawaii" },
- { 2161, "Foxtel Management Pty" },
- { 2162, "ZOHO Corporation (formerly 'Advent Network Management')" },
- { 2163, "Vayris, S.A." },
- { 2164, "Telecom Multimedia Systems, Inc." },
- { 2165, "Guardall Ltd." },
- { 2166, "WKK SYSTEMS, Inc." },
- { 2167, "Prominet Corporation" },
- { 2168, "LMC Lan Management Consulting GmbH" },
- { 2169, "Lewis Enterprise" },
- { 2170, "Teles AG" },
- { 2171, "PCSI (Phoenix Control) Wayne Edward" },
- { 2172, "Fourth Wave Designs, Inc." },
- { 2173, "MediaGate, Inc." },
- { 2174, "Interactive Online Services, Inc." },
- { 2175, "Mutek Transcom Ltd." },
- { 2176, "University of Dortmund, IRB" },
- { 2177, "Network Diagnostic Clinic" },
- { 2178, "TSI - Telecom Systems Ltd." },
- { 2179, "WireSpeed Comm. Corp." },
- { 2180, "Versanet Communications, Inc." },
- { 2181, "EUnet Communications Services BV" },
- { 2182, "pow communications" },
- { 2183, "AMCommunications Inc." },
- { 2184, "Open Architecture Systems Integration Solutions (OASIS),Inc." },
- { 2185, "NetPartner s.r.o." },
- { 2186, "Vina Technologies" },
- { 2187, sminmpec_unknown }, /* (Added by Wireshark) */
- { 2188, sminmpec_unknown }, /* (Added by Wireshark) */
- { 2189, "Deutsches Klimarechenzentrum GmbH" },
- { 2190, "ABSYSSClaude-Aime MOTONGANEmotongane&absyss.fr" },
- { 2191, "Quadrophonics, Inc." },
- { 2192, "Hypercore Technology Inc." },
- { 2193, "OBTK, Inc., dba Network Designs Corporation" },
- { 2194, "VOIS Corporation" },
- { 2195, "IXO S.A." },
- { 2196, "Macro4 Open Systems Ltd." },
- { 2197, "RSA Security" },
- { 2198, "NextWave Wireless Inc." },
- { 2199, "Pisces Consultancy" },
- { 2200, "TPS Call Sciences, Inc (TPS) Paul L." },
- { 2201, "ICONSULT" },
- { 2202, "Third Point Systems" },
- { 2203, "MAS Technology Ltd." },
- { 2204, "Advanced Logic Research, Inc.(ALR)" },
- { 2205, "Documentum, Inc." },
- { 2206, "Siemens Business Communication Systems, Inc." },
- { 2207, "Telmax Communications Corp." },
- { 2208, "Zypcom, Inc." },
- { 2209, "Remote Sense" },
- { 2210, "OOTek Corporation" },
- { 2211, "eSoft, Inc." },
- { 2212, "anydata limited" },
- { 2213, "Data Fellows Ltd." },
- { 2214, "Productions Medialog Inc." },
- { 2215, "Inovamerci, Lda" },
- { 2216, "OKITEC" },
- { 2217, "Vertex Networks Inc." },
- { 2218, "Pulse Communications" },
- { 2219, "CXA Communications Ltd." },
- { 2220, "IDD Information Service" },
- { 2221, "Atlas Computer Equipment, Inc." },
- { 2222, "Syntegra" },
- { 2223, "CCC Information Services" },
- { 2224, "W. Quinn Associates" },
- { 2225, "Broadcom Eireann Research Ltd." },
- { 2226, "Risk Management Services llc" },
- { 2227, "Watkins-Johnson Company" },
- { 2228, "Eric E. Westbrook" },
- { 2229, "Martinho-Davis Systems Inc." },
- { 2230, "XYPOINT Corporation" },
- { 2231, "Innovat Communications, Inc." },
- { 2232, "Charleswood & Co." },
- { 2233, "ID Software AS" },
- { 2234, "Telia AB" },
- { 2235, "Exploration Enterprises, Inc." },
- { 2236, "Daimler-Benz Aerospace AG" },
- { 2237, "Xara Networks Ltd." },
- { 2238, "The FreeBSD Project" },
- { 2239, "World Merchandise Exchange (WOMEX) Ltd." },
- { 2240, "lysis" },
- { 2241, "CFL Research" },
- { 2242, "NET-TEL Computer Systems Limited" },
- { 2243, "Sattel Communications" },
- { 2244, "Promatory Communications Inc." },
- { 2245, "Catalogic Software Inc. (formerly 'Syncsort, Inc.')" },
- { 2246, "LloydsTSB Group Plc" },
- { 2247, "IT Consultancy Engineering Management Group Ltd." },
- { 2248, "LITE-ON COMMUNICATIONS Corp." },
- { 2249, "The New Millennium" },
- { 2250, "Quatraco Yugoslavia" },
- { 2251, "BR Business Systems" },
- { 2252, "WheelGroup Corporation Jonathan" },
- { 2253, "Ultimate Technology, Inc." },
- { 2254, "Delta Electronics, Inc." },
- { 2255, "Waffle Productions" },
- { 2256, "Korea Internet" },
- { 2257, "Selex Communications Limited (formerly 'BAE SYSTEMS')" },
- { 2258, "THOMSON BROADCAST SYSTEMS" },
- { 2259, "Workflow Automation Company Ltd." },
- { 2260, "Associated RT, Inc." },
- { 2261, "DRS Codem Systems" },
- { 2262, "RIGHT TIME WATCH CENTER FELIX" },
- { 2263, "Advanced-Vision Technologies, Inc." },
- { 2264, "Applied Intelligence Group Dana" },
- { 2265, "Acorn Computers Ltd." },
- { 2266, "Tempest Consulting Inc." },
- { 2267, "Digital Sound Corporation" },
- { 2268, "Fastlan Solutions, Inc." },
- { 2269, "Ordinox Network, Inc." },
- { 2270, "Telinc Corporation" },
- { 2271, "DRS Consulting Group" },
- { 2272, "Rapid City Communication" },
- { 2273, "Invisible Fence Sales Company" },
- { 2274, "Troika Management Services" },
- { 2275, "VXtreme Inc." },
- { 2276, "CryptSoft Pty Ltd" },
- { 2277, "Brooktrout Technology" },
- { 2278, "GRASS mbH" },
- { 2279, "EPiCon Inc." },
- { 2280, "SAD Trasporto Locale S.p.a" },
- { 2281, "Giganet Ltd" },
- { 2282, "INCAA Informatica Italia srl" },
- { 2283, "Vermont Firmware Corporation" },
- { 2284, "Automated Concepts" },
- { 2285, "Flash Networks Ltd" },
- { 2286, "Oracom Inc." },
- { 2287, "Shell Services Company" },
- { 2288, "Black Pigs of Death" },
- { 2289, "N3ERZ" },
- { 2290, "Technology Rendezvous Inc." },
- { 2291, "ZapNet! Inc." },
- { 2292, "Premier Technologies" },
- { 2293, "Tennyson Technologies" },
- { 2294, "Dot Hill Systems" },
- { 2295, "DH Technology, Inc." },
- { 2296, "DAGAZ Technologies, Inc." },
- { 2297, "Ganymede Software Inc." },
- { 2298, "Tele-Communications Inc." },
- { 2299, "FreeGate Corportation" },
- { 2300, "MainControl Inc." },
- { 2301, "Luminate Software Corp." },
- { 2302, "K2Net" },
- { 2303, "Aurora Communciations Pty. Ltd." },
- { 2304, "LANscape Limited" },
- { 2305, "Gateway Technologies Inc." },
- { 2306, "Zergo Limited" },
- { 2307, "C4U Solutions" },
- { 2308, "BOLL Engineering AG" },
- { 2309, "Internet Mail Consortium" },
- { 2310, "College of Mathematics and Science - Univ. of Central Oklahoma" },
- { 2311, "Institute for Applied Supercomputing - CSUSB" },
- { 2312, "Red Hat Software" },
- { 2313, "Legal & General Assurance Society Ltd." },
- { 2314, "Fire Networks Inc." },
- { 2315, "icti" },
- { 2316, "Internet Communication Security" },
- { 2317, "TALX Corporation" },
- { 2318, "Repeater Technologies Inc." },
- { 2319, "Aumtech Inc." },
- { 2320, "EuroSInet" },
- { 2321, "ke Kommunikations-Elektronik" },
- { 2322, "Starvision Multimedia Corp." },
- { 2323, "Alcatel Telecom ASD" },
- { 2324, "AVAL DATA Coporation" },
- { 2325, "Pacific Northwest National Laboratory" },
- { 2326, "Tortoise Software Systems" },
- { 2327, "Verio, Inc." },
- { 2328, "ArrayComm, Inc." },
- { 2329, "DST Systems Inc." },
- { 2330, "Vision Service Plan" },
- { 2331, "Best Buy" },
- { 2332, "Shared Network Services (SNS)" },
- { 2333, "BBC" },
- { 2334, "Packeteer Inc." },
- { 2335, "Applied Digital Access" },
- { 2336, "HIS Technologies" },
- { 2337, "DNE Technologies, Inc." },
- { 2338, "Vertical Networks, Inc." },
- { 2339, "CSoft Ltd." },
- { 2340, "National Grocers" },
- { 2341, "Reliance Computer Corp." },
- { 2342, "AK-NORD EDV Vertriebsges mbH" },
- { 2343, "Financial Technologies International" },
- { 2344, "SpaceWorks, Inc." },
- { 2345, "Torrent Networking Technologies Corp." },
- { 2346, "CTI" },
- { 2347, "Datastream International Abbas Foroughi" },
- { 2348, "Killion Inc." },
- { 2349, "Mission Critical Software, Inc." },
- { 2350, "Data Research and Applications, Inc." },
- { 2351, "Resonate Inc." },
- { 2352, "Ericsson, Inc. (formerly 'RedBack Networks')" },
- { 2353, "Nexware Corporation" },
- { 2354, "ADC Wireless Systems" },
- { 2355, "ITIS" },
- { 2356, "LANCOM Systems" },
- { 2357, "PSIMED Corporation" },
- { 2358, "Transfer Data Test GmbH" },
- { 2359, "T.I.P. Group S.A." },
- { 2360, "Redlink" },
- { 2361, "Japan Information Engineering Co, Ltd." },
- { 2362, "Richter Systems Development, Inc." },
- { 2363, "Eurocontrol MAS UAC" },
- { 2364, "Konica Corporation" },
- { 2365, "Viacom" },
- { 2366, "XIOtech Corporation" },
- { 2367, "IMS Gesellschaft fuer Informations- und Managementsysteme mbH" },
- { 2368, "Softworks" },
- { 2369, "MobileWare Corporation" },
- { 2370, "Memco Software Ltd." },
- { 2371, "Advanced TechCom, Inc." },
- { 2372, "Bedford Associates, Inc." },
- { 2373, "CyberWizard, Inc." },
- { 2374, "SMART Technologies, Inc." },
- { 2375, "Concentric Network Corporation" },
- { 2376, "The SNMP WorkShop" },
- { 2377, "Reltec Corp" },
- { 2378, "Nera" },
- { 2379, "Nations Bank" },
- { 2380, "Integrated Design Techniques Limited" },
- { 2381, "OpenLink Software, Inc." },
- { 2382, "NetReality, Inc." },
- { 2383, "Imation Corp." },
- { 2384, "SIBIS Ltd." },
- { 2385, "SHARP Corporation" },
- { 2386, "Desktop Data, Inc." },
- { 2387, "Telecom Device K.K." },
- { 2388, "Captech Communication Inc." },
- { 2389, "Performance Telecom Corp." },
- { 2390, "Com'X" },
- { 2391, "Karim" },
- { 2392, "Systems Integration Group" },
- { 2393, "Witcom Innovative Radio Systems" },
- { 2394, "S.F. Software" },
- { 2395, "MARBEN Italia S.p.A." },
- { 2396, "ActivCard, Inc." },
- { 2397, "Cognos, Inc." },
- { 2398, "Eagle Traffic Control Systems W.L.(Bud)" },
- { 2399, "Netwave" },
- { 2400, "Hemet.net" },
- { 2401, "NBX Corporation" },
- { 2402, "Al-Bader Shipping & Gen. Cont. Co. Domnic Faia" },
- { 2403, "@Home Network" },
- { 2404, "Primeur" },
- { 2405, "ILTS Inc." },
- { 2406, "Computer Generation, Inc." },
- { 2407, "Mouton Noir Enterprises Inc." },
- { 2408, "Baystate Sound & Recording" },
- { 2409, "Metapath Corporation" },
- { 2410, "Tajeet Gourmet Food Manufacturing" },
- { 2411, "Telcel" },
- { 2412, "Intertrader Ltd" },
- { 2413, "Maxtronics" },
- { 2414, "Spiderplant" },
- { 2415, "Software.com, Inc." },
- { 2416, "Adherent Systems Ltd" },
- { 2417, "Korfmacher" },
- { 2418, "Svenska EDIT AB" },
- { 2419, "MLM5000" },
- { 2420, "INIT" },
- { 2421, "Teltone Corporation" },
- { 2422, "Faircross Computers" },
- { 2423, "Carycom (H.K.) LTD" },
- { 2424, "Dominio Publico Internet, S.L." },
- { 2425, "bkr - Network Systems" },
- { 2426, "Mariposa Technology, Inc." },
- { 2427, "Brocade Communications Systems, Inc. (formerly 'NuView Inc.')" },
- { 2428, "Uninett" },
- { 2429, "A.C.E." },
- { 2430, "Oy Comptel Ab" },
- { 2431, "mms Communication GmbH" },
- { 2432, "Sortova Consulting Group, Inc." },
- { 2433, "ENVOY Corporation" },
- { 2434, "Metron Technology Limited" },
- { 2435, "Brother Industries, Ltd." },
- { 2436, "NetCom Systems, Inc." },
- { 2437, "Kapsch AG." },
- { 2438, "Shomiti Systems" },
- { 2439, "Computerm Corporation" },
- { 2440, "Efficient IP" },
- { 2441, "CertiSoft Tecnologia Ltda." },
- { 2442, "EDI Enterprises, Inc." },
- { 2443, "CCII Systems (Pty) Ltd" },
- { 2444, "Connetix, Inc." },
- { 2445, "TUNIX Open System Consultants" },
- { 2446, "GNP Computers" },
- { 2447, "Intercope International" },
- { 2448, "NXT" },
- { 2449, "Pan Dacom Forcom Telekommunikationssysteme GmbH" },
- { 2450, "Auco, Inc." },
- { 2451, "Tecnotree (formerly 'Tecnomen')" },
- { 2452, "Helax AB" },
- { 2453, "Omtool Ltd." },
- { 2454, "G-connect" },
- { 2455, "Dynamic Mutual Funds" },
- { 2456, "Antec Network Technologies" },
- { 2457, "Premiere Promotions" },
- { 2458, "LANQuest" },
- { 2459, "Guardian Bank p. Zagreb" },
- { 2460, "ihlas net" },
- { 2461, "WAVTrace" },
- { 2462, "VIGGEN Corporation" },
- { 2463, "SAIF ALI CO., Ltd." },
- { 2464, "CARYNET Information Center" },
- { 2465, "Application Telematiques, Numeriques et Reseaux (ATNR)" },
- { 2466, "Channelmatic-LIMT, Inc." },
- { 2467, "ArrowPoint Communications Inc." },
- { 2468, "Ingrasys" },
- { 2469, "Netbuilding" },
- { 2470, "Personal & Confidential Klaus" },
- { 2471, "Comsys International B.V." },
- { 2472, "Advance Telecommunication Krisada Arjinpattara" },
- { 2473, "GateKey Solutions, Inc." },
- { 2474, "Avici Systems, Inc." },
- { 2475, "Sierra Technology, Inc.John Fischerjfischer&stisierra.com" },
- { 2476, "Encanto Networks Inc." },
- { 2477, "Mount Olive College" },
- { 2478, "FUJITSU ACCESS LIMITED" },
- { 2479, "EDS GmbH" },
- { 2480, "Jyra Research Inc." },
- { 2481, "Summit Communications" },
- { 2482, "Ministry of Transport, Public Works and Water Management" },
- { 2483, "WinNet MCS Inc." },
- { 2484, "ICG Communications" },
- { 2485, "CrossLink Internet Services" },
- { 2486, "Cygnus Computer Associates, Ltd." },
- { 2487, "Phoenix Technologies Ltd." },
- { 2488, "Internetclub" },
- { 2489, "CV. MITRA ADI PRANATA Ir. Fx Wahyu Hartono" },
- { 2490, "Vixel Corporation" },
- { 2491, "Atmosphere Networks Inc." },
- { 2492, "Montana Tel-Net" },
- { 2493, "JCP Computer Services Ltd." },
- { 2494, "Inter Clear Service Ltd." },
- { 2495, "Internet Systems Consortium, Inc." },
- { 2496, "LightSpeed International, Inc." },
- { 2497, "GammaGraphX, Inc." },
- { 2498, "iManage Inc." },
- { 2499, "Internet Security Systems" },
- { 2500, "Vienna Systems Corporation" },
- { 2501, "Yago Systems, Inc." },
- { 2502, "LunarWave Communications" },
- { 2503, "Bangkok Pattaya Hospital" },
- { 2504, "Roke Manor Research Limited Keith" },
- { 2505, "New Oak Communications, Inc." },
- { 2506, "Bug Free Development" },
- { 2507, "ARC Technologies Group, Inc." },
- { 2508, "Internet Dynamics, Inc." },
- { 2509, "Aviat Networks" },
- { 2510, "Bear Mountain Software" },
- { 2511, "AccessLAN Communications,Inc." },
- { 2512, "Crossroads Systems, Inc." },
- { 2513, "CR2A-DI" },
- { 2514, "Mantra Communications Inc." },
- { 2515, "DiscoverNet" },
- { 2516, "VocalTec Communications Ltd." },
- { 2517, "Riversoft Limited" },
- { 2518, "Phaos Technology Corp." },
- { 2519, "POWEREDCOM, Inc." },
- { 2520, "Internet Systems Inc." },
- { 2521, "ComConsult" },
- { 2522, "Osicom Technologies" },
- { 2523, "Hitron Technology Inc." },
- { 2524, "Rabenstein Enterprises" },
- { 2525, "AT Sistemas, C.A." },
- { 2526, "iPass Inc." },
- { 2527, "InterLinear Technology Inc" },
- { 2528, "World One Telecom Ltd" },
- { 2529, "Quadritek Systems, Inc." },
- { 2530, "Syseca" },
- { 2531, "NetSpeak Corporation" },
- { 2532, "OpNet Inc." },
- { 2533, "MRM Consulting" },
- { 2534, "TNSys-Trading Net System" },
- { 2535, "JCMT" },
- { 2536, "Endeavour Hills Computer Services" },
- { 2537, "Diversified Technology, Inc." },
- { 2538, "Lateral Management Limited" },
- { 2539, "Proxy Software Systems Ltd." },
- { 2540, "Combox Ltd." },
- { 2541, "Spectrix Corporation" },
- { 2542, "Electronics and Telecommunications Research Institute" },
- { 2543, "Arlotto Comnet, Inc." },
- { 2544, "ADVA AG Optical Networking" },
- { 2545, "NewTec GmbH Systementwicklung und Beratung Harald" },
- { 2546, "PVT a.s. - pvt.net" },
- { 2547, "Catholic University of Pelotas" },
- { 2548, "Cryptonym Corporation" },
- { 2549, "Aker Consultoria e Informatica Rodrigo Ormonde" },
- { 2550, "ELVIS-PLUS" },
- { 2551, "Telegyr Systems" },
- { 2552, "Netegrity, Inc." },
- { 2553, "Cardinal Network, New Zealand Ltd" },
- { 2554, "Micro Integrated Innnovations Paul" },
- { 2555, "JayaTek Sdn. Bhd." },
- { 2556, "Central Electronic Industry" },
- { 2557, "Transcend Access Systems, Inc." },
- { 2558, "Outreach Communications Corp." },
- { 2559, "BocaTel" },
- { 2560, "AT&T GNMC Amsterdam" },
- { 2561, "Teamphone.com Ltd," },
- { 2562, "SBB Software Beratung GmbH" },
- { 2563, "Comstat DataComm Corporation" },
- { 2564, "The Network Technology Group" },
- { 2565, "Avery Dennison" },
- { 2566, "ROHDE & SCHWARZ GmbH & Co.KG" },
- { 2567, "Datamedia SA" },
- { 2568, "Integrix, Inc." },
- { 2569, "Telenor Novit AS" },
- { 2570, "Prefered Communications" },
- { 2571, "Mu'Tah University" },
- { 2572, "Network TeleSystems, Inc." },
- { 2573, "Decision-Science Applications,Inc. Simeon Fitch" },
- { 2574, "Concentricity, LLC" },
- { 2575, "Artiza Networks Inc." },
- { 2576, "ComputerShare Systems Limited" },
- { 2577, "EDR Technologies" },
- { 2578, "AbirNet" },
- { 2579, "Trikota, Inc." },
- { 2580, "Diebold Company of Canada Limited Rajan Raman" },
- { 2581, "Precise Connectivity Solutions" },
- { 2582, "ANS Communications" },
- { 2583, "Hydro-Quebec TransEnergie" },
- { 2584, "RadioLAN, Inc." },
- { 2585, "Youth Opportunities Upheld, Inc." },
- { 2586, "Teracom AB" },
- { 2587, "Freemont Avenue Software, Inc." },
- { 2588, "Positron Fiber Systems" },
- { 2589, "Chuo Electronics, Co., Ltd." },
- { 2590, "Minolta Co., Ltd." },
- { 2591, "Radyne Corporation" },
- { 2592, "NSI Software" },
- { 2593, "Exstream PC" },
- { 2594, "Simulation Laboritories Inc." },
- { 2595, "WebTV Networks, Inc." },
- { 2596, "Credit Management Solutions, Inc." },
- { 2597, "Chisholm Technologies Inc." },
- { 2598, "WonderNet International Corp" },
- { 2599, "Percpetics Corporation" },
- { 2600, "Distributed Systems Logic, Inc." },
- { 2601, "US West !nterprise Networking Services" },
- { 2602, "Intrasoft Corporation" },
- { 2603, "Allot Communications" },
- { 2604, "Sophos Plc" },
- { 2605, "TaylorMade-Math" },
- { 2606, "Rittal-Werk Rudolf Loh GmbH & Co.KG" },
- { 2607, "LAN International, Inc." },
- { 2608, "Precise Software Solutions" },
- { 2609, "New Prime Inc." },
- { 2610, "DataHaven Project, Inc." },
- { 2611, "Interspeed" },
- { 2612, "MPI Tech a/s (formerly 'i-data international a-s')" },
- { 2613, "Accelerated Networks, Inc." },
- { 2614, "Forschungszentrum Karlsruhe GmbH" },
- { 2615, "ixMicro" },
- { 2616, "CAO Diffusion" },
- { 2617, "Computer Communications Consulting, Inc." },
- { 2618, "Tracewell Systems, Inc." },
- { 2619, "Advanced Internet Management, Inc." },
- { 2620, "Check Point Software Technologies Ltd" },
- { 2621, "Martin Zwernemann" },
- { 2622, "Amarex Technology, Inc." },
- { 2623, "ASUSTek Computer Inc." },
- { 2624, "Wave Wireless Networking" },
- { 2625, "FCI Telecommunications Corporation" },
- { 2626, "Entuity Limited (formerly 'Prosum Ltd')" },
- { 2627, "TCAM Systems (UK) Ltd" },
- { 2628, "Natural MicroSystems" },
- { 2629, "City of Wauwatosa" },
- { 2630, "The Esys Corporation" },
- { 2631, "Altvater Airdata Systems GmbH Peter Haaf" },
- { 2632, "PT Wiryamas Sinar Palapa" },
- { 2633, "Compucentre" },
- { 2634, "Western Telematic, Inc." },
- { 2635, "ADTX" },
- { 2636, "Juniper Networks, Inc." },
- { 2637, "Aptis Communications, Inc." },
- { 2638, "Bstpromark" },
- { 2639, "EdgePoint Networks, Inc." },
- { 2640, "AIMetrix Incorporated" },
- { 2641, "Arctunn Consulting" },
- { 2642, "Computel Electronica S.A.Jose" },
- { 2643, "FlowWise Networks Inc." },
- { 2644, "Synaptyx Corporation" },
- { 2645, "First Union National Bank" },
- { 2646, "Kommunikator GmbH" },
- { 2647, "C2S (Communication Systeme Service)" },
- { 2648, "Siligom" },
- { 2649, "Radcom Ltd." },
- { 2650, "Go Ahead Software, Inc." },
- { 2651, "Space Connection NV" },
- { 2652, "Merck-Medco Managed Care LLC" },
- { 2653, "City Com BV" },
- { 2654, "R&S BICK Mobilfunk GmbH Andreas" },
- { 2655, "Kepler Software, Ltd." },
- { 2656, "Banque Paribas" },
- { 2657, "Zitech Net" },
- { 2658, "Century Analysis Inc." },
- { 2659, "Talent Development GmbH Hans-Georg" },
- { 2660, "CopperCom Inc." },
- { 2661, "Yutaka Electric Mfg. Co. Ltd." },
- { 2662, "SBF-Bourse De Paris" },
- { 2663, "Economatica" },
- { 2664, "GVN Technologies" },
- { 2665, "Olsy UK" },
- { 2666, "Room 42 Software, LLC" },
- { 2667, "Cirilium" },
- { 2668, "Tavve Software Co." },
- { 2669, "Solari di Udine" },
- { 2670, "NetVenture, Inc." },
- { 2671, "Connected Systems Group" },
- { 2672, "Corporate Software & Technologies, INT, Inc." },
- { 2673, "Fibex Systems" },
- { 2674, "Claude Jardine Design" },
- { 2675, "Net Marketing, Inc." },
- { 2676, "IBP, Inc." },
- { 2677, "RD6 Inc." },
- { 2678, "MassMedia Communications Inc." },
- { 2679, "Nexans Suisse SA." },
- { 2680, "Peak Audio, Inc." },
- { 2681, "Sia Yiu" },
- { 2682, "DPS Inc." },
- { 2683, "Callisto Software" },
- { 2684, "ViaVideo Communications, Inc." },
- { 2685, "Sequel Technology Corporation" },
- { 2686, "Wi-LAN Inc." },
- { 2687, "Network System Technologies, Inc." },
- { 2688, "Center Technology" },
- { 2689, "Coby Roberts" },
- { 2690, "Netronix Inc." },
- { 2691, "Network Computer, Incorporated" },
- { 2692, "WebWeaving" },
- { 2693, "Institut Jozef Stefan" },
- { 2694, "Eldat Communication Ltd." },
- { 2695, "MetaCommunications. Inc." },
- { 2696, "Digital Video Broadcasting (DVB)" },
- { 2697, "Bayly Communications Inc." },
- { 2698, "Poznan Supercomputing and Networking Center - POZMAN" },
- { 2699, "Printer Working Group" },
- { 2700, "DIRECTV" },
- { 2701, "Argon Networks Inc." },
- { 2702, "WACOS Inc." },
- { 2703, "Object Zone AB" },
- { 2704, "ICCC A/S" },
- { 2705, "SECUDE IT Security GmbH" },
- { 2706, "Institute for Applied Information Processing and Communications,Graz University of Technology" },
- { 2707, "International Network Services" },
- { 2708, "JNR Systems" },
- { 2709, "Congreve Computing Ltd." },
- { 2710, "Northrop Grumman - Surveillance and Battle Management Systems" },
- { 2711, "Littlewoods Stores, Ltd." },
- { 2712, "ICE-TEL TLCA" },
- { 2713, "Mauswerks, Inc." },
- { 2714, "Dep. of Signal Theory and Communications - UPC" },
- { 2715, "Zapex Technologiesn Inc." },
- { 2716, "Glueck & Kanja Technology AG" },
- { 2717, "Alcatel Telspace" },
- { 2718, "Intercall" },
- { 2719, "Townsend Analytics Ltd." },
- { 2720, "NorCom Informationstechnologie und Unternehmensberatung GmbH" },
- { 2721, "News Internet Services" },
- { 2722, "Georgia Tech Research Institute" },
- { 2723, "Guerrilla Mail, Inc." },
- { 2724, "EasyStreet Online Services, Inc." },
- { 2725, "Art Technology Group, Inc." },
- { 2726, "Capital One Financial Corp." },
- { 2727, "SFA, Inc." },
- { 2728, "Packard Bell NEC, Inc." },
- { 2729, "Empire Net" },
- { 2730, "Ottosen" },
- { 2731, "Dialogdesign" },
- { 2732, "Innovative Data Technology" },
- { 2733, "Group 2000 Nederland b.v." },
- { 2734, "Digital Lightwave, Inc." },
- { 2735, "MIBS-R-US" },
- { 2736, "EtherWAN Systems, Inc." },
- { 2737, "Cordless Technology A/S" },
- { 2738, "Punjab Communications Ltd.(PunCom)" },
- { 2739, "Tanstaafl! Consulting" },
- { 2740, "Artevea" },
- { 2741, "Calirnet Systems, Inc." },
- { 2742, "Manage.com" },
- { 2743, "RFL Electronics, Inc." },
- { 2744, "Sarnoff Real Time Corporation" },
- { 2745, "LANCAST, Inc." },
- { 2746, "Martin Communications" },
- { 2747, "Dirig Software, Inc." },
- { 2748, "ICL Retail Systems Europe" },
- { 2749, "Aptia, Inc." },
- { 2750, "Vecima Networks Inc. (formerly 'WaveCom Electronics Inc.')" },
- { 2751, "Globalcast Communications Inc." },
- { 2752, "McComm International bv" },
- { 2753, "ARGO Data Resource Corporation Thomas" },
- { 2754, "Excel Switching Corporation" },
- { 2755, "Palomar Communications, Inc." },
- { 2756, "NetStart, Inc." },
- { 2757, "SmartCommerce Solutions" },
- { 2758, "Universal Micro Applications, Inc." },
- { 2759, "SNS Consultants" },
- { 2760, "Enhanced Messaging System, Inc." },
- { 2761, "Informatica S.p.A." },
- { 2762, "Netgame Ltd." },
- { 2763, "IntelliNet Technologies, Inc." },
- { 2764, "Acxiom Corporation" },
- { 2765, "Dafur GmbH" },
- { 2766, "Platform Computing Corporation" },
- { 2767, "Automotive Products plc" },
- { 2768, "RandD Computer Services Razvan" },
- { 2769, "Knuerr AG" },
- { 2770, "Eurotel Praha s.r.o." },
- { 2771, "Inlab Software GmbH" },
- { 2772, "Intersolve Technologies" },
- { 2773, "Redstone Communications, Inc." },
- { 2774, "Algorithmic Research Ltd." },
- { 2775, "AGT International, Inc." },
- { 2776, "Fourthtrack Systems" },
- { 2777, "Flextel S.p.a." },
- { 2778, "WarpSpeed Computers" },
- { 2779, "21C3" },
- { 2780, "Neo Networks Inc." },
- { 2781, "Technical University of Madrid (UPM)" },
- { 2782, "BOM Computer Services Ltd." },
- { 2783, "Control Systems International" },
- { 2784, "bbcom Broadband Communications GmbH & Co. KG" },
- { 2785, "Tecnopro SA" },
- { 2786, "Politecnico di Torino" },
- { 2787, "ING Group" },
- { 2788, "Wytec Incorporated Dave" },
- { 2789, "Mauro Enterprise" },
- { 2790, "RoadRunner" },
- { 2791, "Deterministic Networks, Inc." },
- { 2792, "Sprint PCS" },
- { 2793, "Interactive Intelligence" },
- { 2794, "JAYCOR" },
- { 2795, "Edify Corporation" },
- { 2796, "Fox IT Ltd" },
- { 2797, "University of Pennsylvania" },
- { 2798, "Metawave Communications Corp." },
- { 2799, "Enterprise Solutions Ltd" },
- { 2800, "CBL GmbH" },
- { 2801, "ADP Dealer Services" },
- { 2802, "EFKON" },
- { 2803, "SICAN GmbH" },
- { 2804, "KeyTrend Inc." },
- { 2805, "ACC TelEnterprises" },
- { 2806, "EBA" },
- { 2807, "Teleware Co., Ltd." },
- { 2808, "eFusion, Inc." },
- { 2809, "Participants Trust Company" },
- { 2810, "PeopleSoft, Inc." },
- { 2811, "Entrata Communication" },
- { 2812, "Musics.com" },
- { 2813, "First Telecom plc." },
- { 2814, "Telesnap GmbH" },
- { 2815, "Newpoint Technologies, Inc." },
- { 2816, "T&E" },
- { 2817, "Disney Regional Entertainment, Inc." },
- { 2818, "Ramp Networks, Inc." },
- { 2819, "Open Software Associates" },
- { 2820, "Procom Technology" },
- { 2821, "University of Notre Dame (Office of Information Technology)" },
- { 2822, "Arquitectura Animada" },
- { 2823, "Sumbha Holograms & Packaging Systems Ltd." },
- { 2824, "The A Consulting Team, Inc." },
- { 2825, "WorldGate Communications, Inc." },
- { 2826, "TOA Electronics Ltd." },
- { 2827, "Sytex Systems Corp." },
- { 2828, "Zell Distributors" },
- { 2829, "YRless Internet Corporation" },
- { 2830, "HALO Technologies" },
- { 2831, "Beijing Univ. of Posts & Telecom., Training Center" },
- { 2832, "Virtual Data Systems, Inc." },
- { 2833, "NetDox, Inc." },
- { 2834, "Expert Computer Service Jim Mac" },
- { 2835, "Dictaphone" },
- { 2836, "Unex Technology Corporation" },
- { 2837, "Global Mobility Systems, Inc." },
- { 2838, "TFM Associates" },
- { 2839, "Teleran Technologies, L.P. Carmen Randazzo" },
- { 2840, "Digital Telecommunications, Inc." },
- { 2841, "KB Internet Ltd." },
- { 2842, "Agri Datalog" },
- { 2843, "Braid Systems Limited" },
- { 2844, "Newsnet ITN" },
- { 2845, "JTCS" },
- { 2846, "KEYCORP Pty. Ltd." },
- { 2847, "GTE Internetworking" },
- { 2848, "Royalblue Technologies plc Trevor Goff" },
- { 2849, "U&R Consultores Argentina" },
- { 2850, "Tevycom Fapeco S.A." },
- { 2851, "Polaris Communications" },
- { 2852, "Competitive Automation, Inc." },
- { 2853, "IDEXX Laboratories, Inc." },
- { 2854, "Network Computing Technologies, Inc." },
- { 2855, "Axxcelera Broadband Wireless" },
- { 2856, "Cableware Electronics" },
- { 2857, "Network Power and Light" },
- { 2858, "Clarent Corporation" },
- { 2859, "Kingston - SCL" },
- { 2860, "netVest" },
- { 2861, "VSN systemen BV" },
- { 2862, "Northwest Consulting Services Randy" },
- { 2863, "Thomson Inc." },
- { 2864, "Digitel S/A Industria Eletronica" },
- { 2865, "Nortel Networks - Optical Metro" },
- { 2866, "Technical Insights" },
- { 2867, "NKF Electronics" },
- { 2868, "Glasshouse Business Networks B.V." },
- { 2869, "VSI Enterprises" },
- { 2870, "E-TECH, Inc." },
- { 2871, "UltraDNS" },
- { 2872, "Unisource Business Networks Nederland bv" },
- { 2873, "AGENTics" },
- { 2874, "OTC Telecom Inc." },
- { 2875, "G.U.I.Dev. International Inc." },
- { 2876, "Cothern Computer Systems" },
- { 2877, "Arbinet Communications Inc." },
- { 2878, "FaxForward Canada, Ltd." },
- { 2879, "Sonus Networks, Inc." },
- { 2880, "IPHighway Ltd." },
- { 2881, "Clarion" },
- { 2882, "Comtrol Corporation" },
- { 2883, "Coherent Communications Systems Inc" },
- { 2884, "ADS Networks" },
- { 2885, "Chicago-Soft Ltd." },
- { 2886, "Netbalance" },
- { 2887, "AS Proekspert" },
- { 2888, "Adfm Multimedia Internet" },
- { 2889, "Praxis International Inc." },
- { 2890, "Solectek Corporation" },
- { 2891, "NanoSpace, Inc." },
- { 2892, "KAPS, Inc." },
- { 2893, "Computer Associates, Italy" },
- { 2894, "Mainsail Networks, Inc." },
- { 2895, "EDS, SSMC-Tools Support and Development" },
- { 2896, "Breece Hill Technologies Inc." },
- { 2897, "AT&T Capital Corp Ernest" },
- { 2898, "HighGround Systems, Inc Thomas Bakerman" },
- { 2899, "Omnia Communications, Inc." },
- { 2900, "Mer Telemanagement Solutions" },
- { 2901, "Replicase, Inc." },
- { 2902, "Microlog Corporation" },
- { 2903, "Smartways Technology Limited" },
- { 2904, "Computer Services" },
- { 2905, "Trumpet Software International Pty Ltd" },
- { 2906, "Rsi Solutions Ltd." },
- { 2907, "C-Cor Electronics" },
- { 2908, "Castle Networks, Inc." },
- { 2909, "Nexabit Networks, LLC" },
- { 2910, "General Electric Company" },
- { 2911, "Objective Software Services, Inc." },
- { 2912, "Ameristar Technologies Corp." },
- { 2913, "Hycor Biomedical, Inc." },
- { 2914, "Fellesdata AS" },
- { 2915, "Network Engines, Inc." },
- { 2916, "Daimler-Benz AG" },
- { 2917, "Data Interface Systems Corp" },
- { 2918, "Symmetry Communications Systems, Inc." },
- { 2919, "Rambus Corp." },
- { 2920, "Will-Do Information Services" },
- { 2921, "Swiss Pharma Contract Ltd." },
- { 2922, "I-O Corporation" },
- { 2923, "Formula Consultants Inc." },
- { 2924, "Star TV (Satellite Television Asia Region Ltd)" },
- { 2925, "Cyclades Corporation" },
- { 2926, "Sonoma Systems, Inc." },
- { 2927, "Jacksonville Electric Authority" },
- { 2928, "Net Insight AB" },
- { 2929, "Quallaby" },
- { 2930, "ValiCert, Inc." },
- { 2931, "GADC Networks" },
- { 2932, "TERMA Elektronik AS" },
- { 2933, "Floware System Solutions Ltd." },
- { 2934, "Citicorp" },
- { 2935, "Quantum Corp. (formerly 'Pathlight Technology Inc.')" },
- { 2936, "Prominence Dot Com, Inc." },
- { 2937, "Deutsche Telekom AG" },
- { 2938, "Proginet Corporation" },
- { 2939, "InfoExpress, Inc." },
- { 2940, "Argent Software" },
- { 2941, "ReadyCom Inc." },
- { 2942, "COCOM A/S" },
- { 2943, "ObjTech Software" },
- { 2944, "Top Layer Networks, Inc." },
- { 2945, "TdSoft Communications Software Ltd." },
- { 2946, "SWITCH" },
- { 2947, "Best Power - A Division of General Signal Power Systems" },
- { 2948, "TeleSuite Corporation" },
- { 2949, "Global Quest Consaltance" },
- { 2950, "Ampersand, Inc." },
- { 2951, "Nentec" },
- { 2952, "T&E Soft" },
- { 2953, "Imedia" },
- { 2954, "Universitaet Bielefeld, Technische Fakultaet" },
- { 2955, "PSINet UK Ltd." },
- { 2956, "InfoLibria, Inc." },
- { 2957, "Ericsson Communications Ltd." },
- { 2958, "Secure Network Solutions Ltd.Brendan Simon" },
- { 2959, "Workstation Solutions, Inc." },
- { 2960, "National Landscape Assn. Inc." },
- { 2961, "DIALOGS Software GmbH" },
- { 2962, "Netwise AB" },
- { 2963, "Security Dynamics Technology, Inc." },
- { 2964, "Zeta Communications Ltd." },
- { 2965, "Fujikura Solutions Ltd. (formerly 'Syscom Ltd.')" },
- { 2966, "Digital ChoreoGraphics" },
- { 2967, "CableData Inc." },
- { 2968, "Allen Telecom Systems" },
- { 2969, "Charles Craft" },
- { 2970, "Sunstone Enterprises" },
- { 2971, "Corecess Inc." },
- { 2972, "Network Alchemy, Inc." },
- { 2973, "Integral Access, Inc." },
- { 2974, "IP Metrics Software, Inc." },
- { 2975, "Notarius T.S.I.N. Inc." },
- { 2976, "Sphairon Technologies GmbH (formerly 'Philips Multimedia Network Systems GmbH')" },
- { 2977, "Teubner and Associates, Inc." },
- { 2978, "ImageCom Ltd." },
- { 2979, "Waverider Communications Inc." },
- { 2980, "ENT - Empresa Nacional de Telecomunicacoes, S.A." },
- { 2981, "Duke Energy" },
- { 2982, "Deutsches Patentamt" },
- { 2983, "SEMA Group GmbH, TS-V" },
- { 2984, "Keycode Style Ltd." },
- { 2985, "Bay Systems Consulting, Inc." },
- { 2986, "Qiangjin Corp.Ltd." },
- { 2987, "IPivot" },
- { 2988, "Consultronics Development Ltd." },
- { 2989, "University of North London" },
- { 2990, "Illuminata, Inc." },
- { 2991, "Enterprise IT, Inc." },
- { 2992, "CyberTel, Inc.Jonathan Chu" },
- { 2993, "ConvergeNet Technologies, Inc." },
- { 2994, "Teligent" },
- { 2995, "AcuComm, Inc." },
- { 2996, "SpectraWorks Inc." },
- { 2997, "RedTitan" },
- { 2998, "Anderson Consulting" },
- { 2999, "American Family Insurance" },
- { 3000, "IDB Systems, a Division of WorldCom Inc." },
- { 3001, "BAILO" },
- { 3002, "ADAXIS Group" },
- { 3003, "Packet Engines Inc." },
- { 3004, "Softwire Corporation" },
- { 3005, "TDS (Telecoms Data Systems)" },
- { 3006, "HCI Technologies" },
- { 3007, "TOPCALL International" },
- { 3008, "LogMatrix Inc (formerly 'Open Service')" },
- { 3009, "SYNCLAYER Inc." },
- { 3010, "university of aizu" },
- { 3011, "VideoServer, Inc." },
- { 3012, "Space & Telecommunications Systems Pte. Ltd." },
- { 3013, "Bicol Infonet System,Inc." },
- { 3014, "MediaSoft Telecom" },
- { 3015, "Netpro Computing, Inc." },
- { 3016, "OzEmail Pty Ltd" },
- { 3017, "Arcxel Technologies, Inc." },
- { 3018, "EnterNet Corporation" },
- { 3019, "Jones Waldo Holbrook McDonough" },
- { 3020, "University Access" },
- { 3021, "Sendit AB" },
- { 3022, "Telecom Sciences Corporation Limited" },
- { 3023, "Quality Quorm, Inc." },
- { 3024, "Grapevine Systems Inc" },
- { 3025, "The Panda Project, Inc." },
- { 3026, "Mission Control Development" },
- { 3027, "IONA Technologies Ltd" },
- { 3028, "Dialogic Corporation" },
- { 3029, "Digital Data Security" },
- { 3030, "ISCNI" },
- { 3031, "dao Consulting, LLC" },
- { 3032, "Beaufort Memorial Hospital" },
- { 3033, "Informationstechnik Dr. Hansmeyer" },
- { 3034, "URMET SUD s.p.a." },
- { 3035, "Avesta Technologies Inc" },
- { 3036, "Hyundai Electronics America" },
- { 3037, "DMV Ltd" },
- { 3038, "Fax International, Inc." },
- { 3039, "MidAmerican Energy Company (MEC)" },
- { 3040, "Bellsouth.net" },
- { 3041, "Assured Access Technology, Inc." },
- { 3042, "Logicon - Eagle Technology" },
- { 3043, "Frequentis GmbH" },
- { 3044, "ISIS 2000" },
- { 3045, "james e. gray, atty" },
- { 3046, "Jamaica Cable T.V. & Internet Services" },
- { 3047, "Information Technology Consultants Pty. Ltd." },
- { 3048, "LinickGrp.com" },
- { 3049, "Yankee Know-How" },
- { 3050, "SeAH group" },
- { 3051, "Cinco Networks, Inc." },
- { 3052, "Asentria Corporation" },
- { 3053, "Genie Telecommunication Inc." },
- { 3054, "Ixia Communications" },
- { 3055, "Transmeta Corporation" },
- { 3056, "Systemsoft Corp." },
- { 3057, "Jaspal Miracles Ltd." },
- { 3058, "T-Systems" },
- { 3059, "Sisler Promotions, Inc." },
- { 3060, "ice-man refrigeration" },
- { 3061, "Listing Service Solutions, Inc." },
- { 3062, "Jovian Networks" },
- { 3063, "Elebra Com. Dados" },
- { 3064, "Safetran Systems" },
- { 3065, "Video Network Communications, Inc." },
- { 3066, "Phasecom Ltd." },
- { 3067, "Eurocontrol" },
- { 3068, "SilverStream Software Inc." },
- { 3069, "Cownet" },
- { 3070, "World Access, Inc." },
- { 3071, "Virtual Line L.L.P." },
- { 3072, "Integrated Concepts L.L.P." },
- { 3073, "Exabyte Corporation" },
- { 3074, "Interactive Media Corporation" },
- { 3075, "NetCore Systems, Inc." },
- { 3076, "Altiga Networks, Inc." },
- { 3077, "National Center for Supercomputing Applications" },
- { 3078, "EMASS Inc." },
- { 3079, "PRIMA Telematic" },
- { 3080, "BackWeb Technologies" },
- { 3081, "NTP Software" },
- { 3082, "PBS A/S" },
- { 3083, "W.Quinn Associates, Inc." },
- { 3084, "QUZA (Racal-Integralis)" },
- { 3085, "Cosine Communications" },
- { 3086, "PipeLinks Inc." },
- { 3087, "WaiLAN Communications, Inc." },
- { 3088, "Axent Technologies" },
- { 3089, "SPAWAR" },
- { 3090, "Airsys ATM S.A." },
- { 3091, "Whiter Morn Software, Inc." },
- { 3092, "ENTV" },
- { 3093, "CyberTAN Technology, Inc." },
- { 3094, "Frilot, Patridge, Kohnke & Clements, L.C." },
- { 3095, "FirstSense Software, Inc." },
- { 3096, "StarVox, Inc." },
- { 3097, "WatchGuard Technologies Inc." },
- { 3098, "MTI Technology Corporation" },
- { 3099, "Lumbrera" },
- { 3100, "CELOGIC" },
- { 3101, "Experian Information Solutions Inc." },
- { 3102, "Kansai Electric Co., Ltd." },
- { 3103, "Innet" },
- { 3104, "Thales Communications GmbH" },
- { 3105, "Vodafone Sweden" },
- { 3106, "LCI International, Inc." },
- { 3107, "City of Los Angeles" },
- { 3108, "G2 Networks" },
- { 3109, "TradeWeb LLC." },
- { 3110, "Rafael" },
- { 3111, "Crystal Group Inc." },
- { 3112, "C-bridge Internet Solutions" },
- { 3113, "Phase Forward" },
- { 3114, "WONOA" },
- { 3115, "Dialog" },
- { 3116, "NICE CTI Systems UK Ltd." },
- { 3117, "E*TRADE Group Inc." },
- { 3118, "Juno Online Services, Inc." },
- { 3119, "DnB ASA" },
- { 3120, "Cintel Technologies, Inc." },
- { 3121, "Tele1024 Denmark" },
- { 3122, "Interlink Network Group, Inc." },
- { 3123, "L. Richards' Enterprises, Inc." },
- { 3124, "Media Communications Eur AB" },
- { 3125, "Rocx Software Corp." },
- { 3126, "Ardax Systems, Inc." },
- { 3127, "Pluris, Inc." },
- { 3128, "OAZ Communications" },
- { 3129, "Advanced Switching Communications, Inc." },
- { 3130, "GreatLink Networks, Inc." },
- { 3131, "Aydin Telecom" },
- { 3132, "NetKit Inc." },
- { 3133, "IDP" },
- { 3134, "TTM Nederland" },
- { 3135, "Labouchere" },
- { 3136, "Comtrend Corporation" },
- { 3137, "Berbee Information Networks Corp." },
- { 3138, "Wireless Online, Inc." },
- { 3139, "LIFFE" },
- { 3140, "Celo Communications AB" },
- { 3141, "Mark IV Industries Ltd.(F-P Electronics Division)" },
- { 3142, "Leitch Technology International Incorporated" },
- { 3143, "Chalcroft International" },
- { 3144, "Clarity Wireless Inc." },
- { 3145, "C-C-C Technology Ltd" },
- { 3146, "FREQUENTIS Network Systems GmbH" },
- { 3147, "Daewoo Electronics" },
- { 3148, "France Caraibe Mobiles" },
- { 3149, "Winchester Systems Inc." },
- { 3150, "SWD" },
- { 3151, "Automotive Industry Action Group (AIAG)" },
- { 3152, "Orion Technologies Inc." },
- { 3153, "DirectoryNET, Inc." },
- { 3154, "Kisan Telecom Co., LTD" },
- { 3155, "Concord-Eracom" },
- { 3156, "Secant" },
- { 3157, "NetraCorp, LLC" },
- { 3158, "MASPRO DENKOH Corp." },
- { 3159, "Utimaco Safeware AG" },
- { 3160, "Financial Information System Center (FISC)" },
- { 3161, "Xybx Inc." },
- { 3162, "Relational Data Systems" },
- { 3163, "M&T Clear Solutions Inc." },
- { 3164, "ARBED S.A." },
- { 3165, "Cap Gemini Telecom" },
- { 3166, "Westek Technology Ltd John Tucker" },
- { 3167, "NICE Systems Ltd." },
- { 3168, "INC S.A." },
- { 3169, "Silis Sarl" },
- { 3170, "InterWorking Labs, Inc." },
- { 3171, "Ikon Systems, Inc." },
- { 3172, "GTE Intelligent Network Services" },
- { 3173, "Turnstone Systems, Inc." },
- { 3174, "Tasman Networks, Inc." },
- { 3175, "WebTrends Corporation" },
- { 3176, "Werner Training and Consulting, Inc." },
- { 3177, "IVC, Inc." },
- { 3178, "Blue Cross and Blue Shield of Florida" },
- { 3179, "Level8 Systems" },
- { 3180, "RESCOM A/S" },
- { 3181, "MICROSENS GmbH & Co. KG" },
- { 3182, "Unihold Technologies" },
- { 3183, "Wired for Management" },
- { 3184, "Raymond and Lae Engineering, Inc." },
- { 3185, "Parapsco Designs Ltd." },
- { 3186, "TouchNet Information Systems, Inc." },
- { 3187, "FUZZY! Informatik GmbH" },
- { 3188, "Sunny Comm. Inc." },
- { 3189, "DSD Computing" },
- { 3190, "Caja de Ahorros del Mediterraneo" },
- { 3191, "Dynetcom Guernsey Ltd." },
- { 3192, "Tachyon, Inc." },
- { 3193, "Silent Communications" },
- { 3194, "EFFNET AB" },
- { 3195, "AUDI AG" },
- { 3196, "Side by Side GmbH" },
- { 3197, "Vodacom South Africa" },
- { 3198, "Volamp LtdW.G. Saich+44(0) 1252 724055" },
- { 3199, "Shasta Networks" },
- { 3200, "Applied Resources, Inc." },
- { 3201, "LANCOME" },
- { 3202, "Spar Aerospace Limited" },
- { 3203, "GlaxoWellcome Inc." },
- { 3204, "A.T.I. System Co., Ltd." },
- { 3205, "EXODUS Communications Inc." },
- { 3206, "Assured Digital, Inc." },
- { 3207, "Web@venture" },
- { 3208, "Athens University of Economics and Business" },
- { 3209, "Dynarc AB" },
- { 3210, "VOLKSWAGEN AG" },
- { 3211, "Allgon AB" },
- { 3212, "Crestron Electronics, Inc." },
- { 3213, "TRANSICIEL" },
- { 3214, "SAN People (Pty) Ltd." },
- { 3215, "Network Instruments, LLC" },
- { 3216, "Texas Networking, Inc." },
- { 3217, "Pini Computer Trading" },
- { 3218, "XLN-t" },
- { 3219, "Silicomp" },
- { 3220, "Signet Systems Pty Ltd" },
- { 3221, "Ohkura Electric Co., Ltd." },
- { 3222, "New Elite Technologies, Inc." },
- { 3223, "TXCOM" },
- { 3224, "NetScreen Technologies, Inc." },
- { 3225, "Sycamore Networks" },
- { 3226, "France Connexion Ingenierie" },
- { 3227, "NetLeader, Inc." },
- { 3228, "Tekmar Sistemi s.r.l." },
- { 3229, "DSTC" },
- { 3230, "Runtop Inc." },
- { 3231, "L-3 Communications" },
- { 3232, "Eumetsat" },
- { 3233, "TongGong High New Technology Development Company" },
- { 3234, "Trifolium, Inc." },
- { 3235, "Zenon N.S.P." },
- { 3236, "ERCOM" },
- { 3237, "SDC" },
- { 3238, "Los Angeles Web" },
- { 3239, "Florence on Line s.r.l." },
- { 3240, "Escalate Networks" },
- { 3241, "TranNexus" },
- { 3242, "Brigham Young University" },
- { 3243, "ConNova Systems AB" },
- { 3244, "Voxtron Flanders NV" },
- { 3245, "Yomi Software Ltd." },
- { 3246, "Mirapoint, Inc." },
- { 3247, "Colorbus" },
- { 3248, "DPB S.A." },
- { 3249, "StarGuide Digital Networks, Inc." },
- { 3250, "Telinet Technologies, LLC. Donald" },
- { 3251, "Authentica Security Technologies, Inc." },
- { 3252, "Hologram Systems Ltd." },
- { 3253, "TranSystem, Inc." },
- { 3254, "R.R.C. Exports" },
- { 3255, "Lakeside Software, Inc." },
- { 3256, "Channel 100" },
- { 3257, "MAGMA, Inc." },
- { 3258, "LANSource Technologies Inc." },
- { 3259, "INCAA Datacom BV" },
- { 3260, "GlobeSet, Inc." },
- { 3261, "Martin Pestana" },
- { 3262, "Acuson Corporation" },
- { 3263, "Drake Automation Limited" },
- { 3264, "Kerr Vayne Systems Ltd." },
- { 3265, "KSquared Consulting" },
- { 3266, "HSBC Group" },
- { 3267, "IronBridge Networks, Inc." },
- { 3268, "Real Time Logic Inc." },
- { 3269, "TelServe" },
- { 3270, "UNIQUEST-Korea" },
- { 3271, "StockPower, Inc." },
- { 3272, "Yontem Computer & Electronics" },
- { 3273, "nwe GmbH" },
- { 3274, "The Information Systems Manager Inc." },
- { 3275, "Kosmos Image S.r.l." },
- { 3276, "Taihan Electric Wire Co., Ltd." },
- { 3277, "Telspec" },
- { 3278, "C-COM Corporation" },
- { 3279, "Adlex Corp." },
- { 3280, "CCI Europe" },
- { 3281, "SMS Enterprises" },
- { 3282, "Vicom Systems, Inc." },
- { 3283, "International Software Solutions" },
- { 3284, "OASIS Consortium" },
- { 3285, "NOVA Telecommunications, Inc." },
- { 3286, "Nera Satcom AS" },
- { 3287, "Proactive Networks, Inc." },
- { 3288, "Jacobs Rimell Limited" },
- { 3289, "Cryptomathic A/S" },
- { 3290, "AppliScope" },
- { 3291, "Simac Techniek NV" },
- { 3292, "Earthmen Technology" },
- { 3293, "Biffsters International" },
- { 3294, "Digitronic" },
- { 3295, "Internet Multifeed Co." },
- { 3296, "Argosy Research Inc." },
- { 3297, "NxNetworks" },
- { 3298, "MQSoftware, Inc." },
- { 3299, "Altair Data System" },
- { 3300, "Telsis Limited" },
- { 3301, "IMPACT" },
- { 3302, "SMI Computersysteme GmbH Nicole" },
- { 3303, "IDM, Ltd." },
- { 3304, "WinVista Corp." },
- { 3305, "Splitrock Services, Inc." },
- { 3306, "Vail Systems Incorporated" },
- { 3307, "SANE.net" },
- { 3308, "Ensemble Solutions, Inc." },
- { 3309, "Nomadix" },
- { 3310, "Jett International Inc." },
- { 3311, "Crocodial Communications Entwicklungsgesellschaft mbH" },
- { 3312, "Consulting Informatico de Cantabria S.L." },
- { 3313, "Broadcast Services" },
- { 3314, "Bergstresser Associates" },
- { 3315, "KingStar Computer Ltd." },
- { 3316, "Micro Logic Systems" },
- { 3317, "Port Community Rotterdam" },
- { 3318, "Computer & Competence GmbH" },
- { 3319, "GNOME project" },
- { 3320, "Shanghai Baud Data Communication Development Corp." },
- { 3321, "Teledata Communication Ltd." },
- { 3322, "Ipswitch, Inc." },
- { 3323, "Tadiran Microwave Networks" },
- { 3324, "Call Technologies, Inc." },
- { 3325, "Vocalis Ltd." },
- { 3326, "Bergen Data Consulting" },
- { 3327, "CA Technologies, Inc." },
- { 3328, "Indus River Networks, Inc." },
- { 3329, "NewCom Technologies, Inc." },
- { 3330, "PartnerGroup" },
- { 3331, "DeTeWe - Deutsche Telephonwerke Aktiengesellschaft & Co." },
- { 3332, "RCX System" },
- { 3333, "Auburn University" },
- { 3334, "Cap'Mediatel" },
- { 3335, "HAHT Software" },
- { 3336, "UTBF" },
- { 3337, "Chicago Police Department - Data Systems Division" },
- { 3338, "MORA Technological Services" },
- { 3339, "JHC" },
- { 3340, "OpenTV Inc." },
- { 3341, "SwitchSoft Systems, Inc." },
- { 3342, "MachOne Communications Inc." },
- { 3343, "Philips Digital Video Systems Harry" },
- { 3344, "Helsinki Televisio Oy" },
- { 3345, "Nemetschek AG" },
- { 3346, "Vocom" },
- { 3347, "Hitachi Kokusai Electric Inc." },
- { 3348, "Reliable Network Solutions" },
- { 3349, "Vogo Networks" },
- { 3350, "beusen" },
- { 3351, "Overland Data, Inc." },
- { 3352, "Go2 Technologies, Inc." },
- { 3353, "TransMedia Communications, Inc." },
- { 3354, "InnoMedia, Inc." },
- { 3355, "Orkit FI" },
- { 3356, "WebMaster, Incorporated" },
- { 3357, "Software & Management Associates, Inc." },
- { 3358, "Researcher" },
- { 3359, "Cygnus Global Consulting" },
- { 3360, "Columbine JDS Systems Inc." },
- { 3361, "Intraplex" },
- { 3362, "Selta S.p.A." },
- { 3363, "Southern New England Telecommunications" },
- { 3364, "Baltic Oil Ltd." },
- { 3365, "MailWizard Incorporated" },
- { 3366, "Da Vinci Systems cc" },
- { 3367, "NMS Research" },
- { 3368, "KimSungEun Co., Ltd." },
- { 3369, "Genicom Corporation" },
- { 3370, "Trango Software Corporation" },
- { 3371, "SungEun Systems" },
- { 3372, "COVE Sistemas, S.L." },
- { 3373, "SIAE Microelettronica S.p.A." },
- { 3374, "Cybertek Corp." },
- { 3375, "F5 Labs, Inc." },
- { 3376, "Valencia Systems" },
- { 3377, "HKC Communications, Inc." },
- { 3378, "Plant Equipment Inc." },
- { 3379, "HT Industrial Co." },
- { 3380, "Fuelling & Partner" },
- { 3381, "Atreve Software, Inc." },
- { 3382, "Venturi Wireless" },
- { 3383, "South East Water Limited" },
- { 3384, "WAM!NET" },
- { 3385, "University of Leicester" },
- { 3386, "21st Century Net" },
- { 3387, "Intellivoice, Inc" },
- { 3388, "Integral Partners" },
- { 3389, "Novotec Computers GmbH" },
- { 3390, "Marathon Technologies Corporation" },
- { 3391, "Software Technologies Group, Inc." },
- { 3392, "Quvintheumn Foundation" },
- { 3393, "SandS International" },
- { 3394, "NeTrue Communications" },
- { 3395, "Certicom Corp." },
- { 3396, "DICOS GmbH Kommunikationssysteme Stephan" },
- { 3397, "Border Blues Productions" },
- { 3398, "Fieldbus Foundation" },
- { 3399, "Olencom Electronics Ltd." },
- { 3400, "Alacrity Communications Inc." },
- { 3401, "McAfee Inc. (formerly 'Network Associates, Inc.')" },
- { 3402, "Magicom Integrated Solutions" },
- { 3403, "Marimba, Inc." },
- { 3404, "Adicom" },
- { 3405, "Expand Networks Inc." },
- { 3406, "EIS Corporation" },
- { 3407, "compu-DAWN, Inc." },
- { 3408, "Nylcare Health Plans" },
- { 3409, "Z-Tel Communications, Inc." },
- { 3410, "Land-5 Corporation" },
- { 3411, "J. Slivko's Web Design Consulting" },
- { 3412, "SanCastle Technologies Inc." },
- { 3413, "Radiotel" },
- { 3414, "VoiceStream Wireless, Inc." },
- { 3415, "Mobile Telephone Networks" },
- { 3416, "Neto Corporation" },
- { 3417, "CacheFlow Inc." },
- { 3418, "Interactive Channel Technologies, Inc." },
- { 3419, "DERA" },
- { 3420, "Rossiyskiy Kredit Bank" },
- { 3421, "Performance Reporting Services Ltd" },
- { 3422, "Network Aware, Inc." },
- { 3423, "Project 25" },
- { 3424, "Evident Software, Inc. (formerly 'Apogee Networks, Inc.')" },
- { 3425, "Amsdell Inc." },
- { 3426, "Tokyo Denshi Sekei K.K." },
- { 3427, "MicroJuris, Inc." },
- { 3428, "Computer Associates TCG Software" },
- { 3429, "GenNet Technology Co., Ltd." },
- { 3430, "Microtronix Datacom Ltd." },
- { 3431, "Western DataCom Co., Inc." },
- { 3432, "Tellium, Inc." },
- { 3433, "Goldencom Technologies, Inc." },
- { 3434, "Leightronix, Inc." },
- { 3435, "Porta Systems Ltd" },
- { 3436, "Brivida, Inc." },
- { 3437, "PitchonPe" },
- { 3438, "Missouri FreeNet" },
- { 3439, "Braintree Communications Pty Ltd" },
- { 3440, "Borealis Technology" },
- { 3441, "South Carolina State Ports Authority (SCSPA)" },
- { 3442, "Advantech Inc." },
- { 3443, "United Healthcare" },
- { 3444, "egnite Software GmbH" },
- { 3445, "Radiant Communications Corp." },
- { 3446, "Ridge Technologies Dave" },
- { 3447, "JGI, Inc." },
- { 3448, "Rivkin Science & Technology, Inc." },
- { 3449, "Fisher Berkeley Corp." },
- { 3450, "Ardence, Inc." },
- { 3451, "Vita Nuova Limited" },
- { 3452, "MDSI Mobile Data Solutions Inc." },
- { 3453, "AAE Systems, Inc." },
- { 3454, "ELVIS-PLUS" },
- { 3455, "Internet Freaks Luxembourg a.s.b.l.Department Technique" },
- { 3456, "Adtech, Inc." },
- { 3457, "Advanced Intelligent Networks Corp." },
- { 3458, "Transaction Network Services, Inc." },
- { 3459, "COM:ON Communication Systems GmbH" },
- { 3460, "Telecommunications Specialists Pte Ltd" },
- { 3461, "Inferentia SPA" },
- { 3462, "Makonin Consulting Corp." },
- { 3463, "Toucan Technology Ltd." },
- { 3464, "Gimlet Management Consultants Ltd" },
- { 3465, "Sanyo Denki Co., Ltd." },
- { 3466, "Optical Networks, Inc." },
- { 3467, "NORCOM Networks Corporation" },
- { 3468, "GTE Interactive" },
- { 3469, "Schumann Unternehmensberatung AG" },
- { 3470, "ATM R&D Center of BUPT" },
- { 3471, "Bear Stearns & Company, Inc." },
- { 3472, "Telamon, Inc." },
- { 3473, "Microgate Corporation" },
- { 3474, "Fujitu ICL Espana S.A." },
- { 3475, "Network Concepts" },
- { 3476, "Arepa Inc." },
- { 3477, "Dorado Software" },
- { 3478, "Spectra Logic" },
- { 3479, "ViewTouch, Inc." },
- { 3480, "VIEWS Net, Inc." },
- { 3481, "Himel Technology" },
- { 3482, "Ton & Lichttechnik" },
- { 3483, "Mariner Networks" },
- { 3484, "Alaska Textiles, Inc." },
- { 3485, "Alaska Cleaners, Inc." },
- { 3486, "Wellsprings Holdings, LLC" },
- { 3487, "Allure of Alaska" },
- { 3488, "SevenX" },
- { 3489, "Denali Sites, Inc." },
- { 3490, "United Systems Base" },
- { 3491, "CDConsultants Inc." },
- { 3492, "Comdisco, Inc." },
- { 3493, "Broadband Access Systems, Inc." },
- { 3494, "Convergent Networks, Inc." },
- { 3495, "National Laboratory for Applied Network Research" },
- { 3496, "Web-Resumes" },
- { 3497, "Virtual Vendor Inc." },
- { 3498, "BusinessBuilder Technologies Inc." },
- { 3499, "Cyber Server Park Inc." },
- { 3500, "COMSAT Laboratories" },
- { 3501, "Vodafone Value Added Services Ltd" },
- { 3502, "J & A Services" },
- { 3503, "Blue Lance, Inc." },
- { 3504, "Sandvik Coromant" },
- { 3505, "Virtual Virgin Islands, Inc." },
- { 3506, "PageTek" },
- { 3507, "e-Net, Inc." },
- { 3508, "NEST" },
- { 3509, "Capital Holdings Ltd" },
- { 3510, "TWO-WAY LAUNDRY" },
- { 3511, "SkyStream, Inc." },
- { 3512, "Portal Software, Inc." },
- { 3513, sminmpec_unknown }, /* (Added by Wireshark) */
- { 3514, "VStream Incorporated" },
- { 3515, "Joanneum Research GesmbH" },
- { 3516, "Cybernetica" },
- { 3517, "Tieto Technology A/S, Denmark" },
- { 3518, "Pressler Inc." },
- { 3519, "amplify.net, Inc." },
- { 3520, "TPS (La Television Par Satellite) Denis" },
- { 3521, "Atlas Technologies, Inc." },
- { 3522, "Biodata GmbH" },
- { 3523, "Netco GmbH" },
- { 3524, "Continium" },
- { 3525, "SilverBack Technologies" },
- { 3526, "ITC GmbH" },
- { 3527, "IntraSoft, Inc." },
- { 3528, "ESP, LLC" },
- { 3529, "AVT Corporation" },
- { 3530, "Research In Motion Ltd." },
- { 3531, "Orange DK" },
- { 3532, "Meisei System Service Company" },
- { 3533, "Acies Sistemas S/C Ltda." },
- { 3534, "CTAM Pty. Ltd." },
- { 3535, "Hutchison Avenue Software Corp." },
- { 3536, "Globus" },
- { 3537, "AirFiber, Inc." },
- { 3538, "Europe Connection Ltd" },
- { 3539, "Unassigned" },
- { 3540, "Conelly International, Inc." },
- { 3541, "Bindview Development Corp." },
- { 3542, "Galea Network Security" },
- { 3543, "Abilis gmbh" },
- { 3544, "Baycorp ID Services Ltd." },
- { 3545, "Maddox Broadcast Ltd." },
- { 3546, "Acute Communications Corporation" },
- { 3547, "Tollbridge Technologies" },
- { 3548, "Oresis Communications" },
- { 3549, "MLI Enterprises" },
- { 3550, "Allstor Software Limited" },
- { 3551, "Spring Tide Networks, Inc." },
- { 3552, "EES Technology Ltd." },
- { 3553, "CSP AG" },
- { 3554, "SAS Institue Inc" },
- { 3555, "NetLock Ltd." },
- { 3556, "GENO-RZ GmbH" },
- { 3557, "MS3.net" },
- { 3558, "BGS Systemplanung AG" },
- { 3559, "The Digital Schoolhouse" },
- { 3560, "Sphere Logic Corporation" },
- { 3561, "The Broadband Forum (formerly 'ADSL Forum')" },
- { 3562, "Selway Moore Limited" },
- { 3563, "National Network Data Services" },
- { 3564, "Ciphernet" },
- { 3565, "Grolier Interactive Europe On Line Groupe" },
- { 3566, "Midnight Technologies" },
- { 3567, "Scott Supply Service, Inc." },
- { 3568, "Service Co LLC" },
- { 3569, "Electronic Payment Services, Inc." },
- { 3570, "Tait Limited" },
- { 3571, "Gift-Trek Malaysia Sdn. Bhd." },
- { 3572, "HanA Systems, Inc." },
- { 3573, "South African Networking People (Pty) Ltd" },
- { 3574, "ORSYP SA" },
- { 3575, "RKB Onsite Computer Service" },
- { 3576, "MCI" },
- { 3577, "Himachal Futuristic Communications Limited" },
- { 3578, "PixStream Incorporated" },
- { 3579, "Hurley" },
- { 3580, "Bell Emergis" },
- { 3581, "Seagate Technology" },
- { 3582, "LSI Logic" },
- { 3583, "JetCell, Inc." },
- { 3584, "Pacific Fiberoptics, Inc." },
- { 3585, "Omnisec AG" },
- { 3586, "Diebold, Incorporated" },
- { 3587, "TIW Systems, Inc." },
- { 3588, "NovoGroup Oyj" },
- { 3589, "SoGot" },
- { 3590, "IA Information Systems AG" },
- { 3591, "R.W. Shore" },
- { 3592, "Draeger Medizintechnik GmbH" },
- { 3593, "Alcatel Sistemas de Informacion" },
- { 3594, "LJL Enterprises, Inc." },
- { 3595, "BC TEL Advanced Communications" },
- { 3596, "CMLTechnologies Inc." },
- { 3597, "WildThings" },
- { 3598, "Dixie Cake" },
- { 3599, "Type & Graphics Pty Limited" },
- { 3600, "Teltronics, Inc." },
- { 3601, "C.R. McGuffin Consulting Services" },
- { 3602, "International Datacasting Corporation" },
- { 3603, "Westpac Banking Corporation" },
- { 3604, "XYPI MEDIANET PVT. Ltd." },
- { 3605, "Nesser & Nesser Consulting" },
- { 3606, "Incognito Software Systems Inc." },
- { 3607, "Cerent Corporation" },
- { 3608, "The Tillerman Group" },
- { 3609, "Cequs Inc." },
- { 3610, "Ryan Net Works" },
- { 3611, "Foo Chicken, Ltd" },
- { 3612, "Marcel Enterprises" },
- { 3613, "Rubicon Technologies, Inc." },
- { 3614, "Altor plc" },
- { 3615, "SoftWell Performance AB" },
- { 3616, "United Resource Economic & Trading Center C.," },
- { 3617, "SurfControl plc" },
- { 3618, "Flying Crocodile, Inc" },
- { 3619, "ProxyMed, Inc." },
- { 3620, "Transact Systems, Inc." },
- { 3621, "Nuance Communications" },
- { 3622, "GEFM" },
- { 3623, "Systemintegrering AB" },
- { 3624, "Enator Communications AB" },
- { 3625, "iHighway.net, Inc." },
- { 3626, "Dipl.-Ing. (FH) Markus Drechsler" },
- { 3627, "Criptolab" },
- { 3628, "Tietokesko Ltd" },
- { 3629, "Atos Origin" },
- { 3630, "DeltaKabel Telecom cv" },
- { 3631, "Bridgewater Systems Corp." },
- { 3632, "MaxComm Technologies Inc." },
- { 3633, "iD2 Technologies AB" },
- { 3634, "Allied Riser Communications Inc." },
- { 3635, "Wavesat Telecom, Inc." },
- { 3636, "dpa Deutsche Presse-Agentur GmbH" },
- { 3637, "Power & Data Technology, Inc." },
- { 3638, "IntelliReach Corporation" },
- { 3639, "WM-data" },
- { 3640, "DataPath, Inc." },
- { 3641, "Netaphor Software, Inc." },
- { 3642, "CryptoConsult" },
- { 3643, "DIRTSA" },
- { 3644, "Carden Enterprise Ltd" },
- { 3645, "SONZ Ltd" },
- { 3646, "ASKEY Computer Corp." },
- { 3647, "RaidTec, Inc." },
- { 3648, "Harcourt Brace & Company" },
- { 3649, "Rollins Technology Inc." },
- { 3650, "NetOps Corp" },
- { 3651, "Know IT AB" },
- { 3652, "Pan Dacom Direkt GmbH (formerly 'Pan Dacom Networking AG')" },
- { 3653, "Cirque Networks, Inc." },
- { 3654, "NaviNet" },
- { 3655, "Germanischer Lloyd AG" },
- { 3656, "FORCE Computers GmbH" },
- { 3657, "Ericsson Wireless LAN Systems" },
- { 3658, "Dalian F.T.Z. TianYang Int'l Trade Co., Ltd." },
- { 3659, "Ethercity Designs and Hosting Solutions" },
- { 3660, "G3M Corporation" },
- { 3661, "Secure Data Access Inc." },
- { 3662, "QWES.com Incorporated" },
- { 3663, "Megaxess" },
- { 3664, "Polygon" },
- { 3665, "Netoids Inc." },
- { 3666, "Acriter Software B.V." },
- { 3667, "InteleNet Communications" },
- { 3668, "Control Module Inc.(CMI)" },
- { 3669, "Aveo Inc." },
- { 3670, "MD PREI" },
- { 3671, "Picazo Communication Inc." },
- { 3672, "Scottsdale Securities, Inc." },
- { 3673, "WebManage Technologies, Inc." },
- { 3674, "Infoclubindia" },
- { 3675, "Connor Plumbing & Heating" },
- { 3676, "Sentryl Software, Inc." },
- { 3677, "Engetron - Engenharia Eletronica Ind. e Com. Ltda." },
- { 3678, "Icaro" },
- { 3679, "Unity Health" },
- { 3680, "Parity Software Dev. Corp." },
- { 3681, "David D. Hartman, CPA" },
- { 3682, "ComGates Communications Ltd." },
- { 3683, "Honeywell Oy, Varkaus" },
- { 3684, "InterWorld Corp." },
- { 3685, "Sento Pty Ltd" },
- { 3686, "Wicks By Julie" },
- { 3687, "HSD - Hardware Software Development GmbH" },
- { 3688, "Morpho e-documents (formerly 'Sagem Orga GmbH')" },
- { 3689, "New Technology Development, Inc." },
- { 3690, "TIAA-CREF" },
- { 3691, "Team2it-CopyLeft S.r.l." },
- { 3692, "Intuit" },
- { 3693, "Hakusan Corporation" },
- { 3694, "Thyssen Informatik GmbH" },
- { 3695, "Chromatis Networks Inc." },
- { 3696, "MicroProdigy" },
- { 3697, "Quantum Corporation" },
- { 3698, "Saraide" },
- { 3699, "Network Technologies Inc" },
- { 3700, "Stellar One Corporation" },
- { 3701, "TurboNet Communications" },
- { 3702, "Printrak International Inc." },
- { 3703, "CyberFax Inc." },
- { 3704, "AMD" },
- { 3705, "ICET SpA" },
- { 3706, "ADiTel Telekommunikation Network GmbH" },
- { 3707, "ADiT Holding GmbH" },
- { 3708, "ADLER DATA Software GmbH" },
- { 3709, "Teracom Telematica Ltda." },
- { 3710, "LANmetrix Pty Ltd" },
- { 3711, "SINETICA" },
- { 3712, "GigaNet Incorporated" },
- { 3713, "Voxent Systems Ltd" },
- { 3714, "BellSouth Wireless Data, L.P." },
- { 3715, "Teleste Corporation" },
- { 3716, "Brand Communications Limited" },
- { 3717, "GeNUA mbH" },
- { 3718, "Philips Broadband Networks" },
- { 3719, "Exmicro" },
- { 3720, "Visiqn" },
- { 3721, "OTONET s.a.r.l." },
- { 3722, "Vulkan-Com Ltd." },
- { 3723, "Ankey" },
- { 3724, "Interactive Communications Systems" },
- { 3725, "AC&E Ltd" },
- { 3726, "enCommerce, Incorporated" },
- { 3727, "Western Multiplex" },
- { 3728, "REALM Information Technoligies, Inc." },
- { 3729, "Nokia (formerly 'Alcatel-Lucent')" },
- { 3730, "Westport Technologies" },
- { 3731, "The SABRE Group" },
- { 3732, "Calamp Wireless Networks Inc (formerly 'Dataradio Inc.')" },
- { 3733, "Datakom Austria DI Erich" },
- { 3734, "Security-7 Ltd." },
- { 3735, "Telesafe AS" },
- { 3736, "Goodfield Corp." },
- { 3737, "Pleiades Communications, Inc." },
- { 3738, "StreamSoft, Inc." },
- { 3739, "The Eighteenth Software Co.,Ltd." },
- { 3740, "Aquila Technologies Group, Inc" },
- { 3741, "Foliage Software Systems" },
- { 3742, "VIATechnologies,Inc" },
- { 3743, "P.D. Systems International Ltd" },
- { 3744, "DATEV eG" },
- { 3745, "ClustRa AS" },
- { 3746, "Swisscom AG" },
- { 3747, "AS Yegen" },
- { 3748, "Bank of America" },
- { 3749, "TeleHub Communication Corp" },
- { 3750, "Iscape Software" },
- { 3751, "Dragon Industries" },
- { 3752, "Thales Norway AS" },
- { 3753, "Aitek S.r.L." },
- { 3754, "Crag Technologies" },
- { 3755, "ATOP Technologies, Inc." },
- { 3756, "Julien Daniel" },
- { 3757, "PT. Usaha Mediantara Intranet" },
- { 3758, "Core Networks, Inc" },
- { 3759, "OMEGA Micro Systems" },
- { 3760, "Content Technologies Ltd" },
- { 3761, "HAGER-ELECTRONICS GmbH" },
- { 3762, "Kwangwoon University" },
- { 3763, "Veramark" },
- { 3764, "Quantum Corporation (formerly 'Advanced Digital Information Corporation')" },
- { 3765, "StrategicLink Consulting" },
- { 3766, "Hannibal Teknologies" },
- { 3767, "Pan-International Industrial Corp." },
- { 3768, "Department of Veterans Affairs" },
- { 3769, "Banyan Networks Pvt. Ltd." },
- { 3770, "MCK Communications" },
- { 3771, "ko6yd" },
- { 3772, "POS Resources Inc." },
- { 3773, "Siara Systems" },
- { 3774, "Wavelink" },
- { 3775, "AGFA Corporation" },
- { 3776, "Millenium Solutions" },
- { 3777, "HydraWEB Technologies" },
- { 3778, "CP Eletronica Industrial S/A" },
- { 3779, "Kingmax Technology Inc." },
- { 3780, "Level 3 Communications, Inc." },
- { 3781, "WXN, Inc." },
- { 3782, "University of North Texas" },
- { 3783, "EMR Corporation" },
- { 3784, "Speakerbus Ltd." },
- { 3785, "Cirrus Logic" },
- { 3786, "Highland Technology Group, Inc." },
- { 3787, "Russel Lane & Associates, Inc." },
- { 3788, "Talktyme Technologies Inc" },
- { 3789, "Wire Terminator (WT)" },
- { 3790, "Hamamatsu Photonics K.K. Kazuhiko" },
- { 3791, "TeleComp, Inc." },
- { 3792, "LOGEC Systems" },
- { 3793, "Lanier Worldwide, Inc." },
- { 3794, "Midas Communication Technologies Private Limited" },
- { 3795, "Enact Inc." },
- { 3796, "imt Information Management Technology AG" },
- { 3797, "BENQ Corporation" },
- { 3798, "Jinny Paging" },
- { 3799, "Live Networking Inc." },
- { 3800, "Unisource Italia S.p.A." },
- { 3801, "Agranat Systems, Inc." },
- { 3802, "Softamed" },
- { 3803, "Praxon" },
- { 3804, "Standard Chartered Bank (Treasury)" },
- { 3805, "Longhai Yongchuan Foods Co., Ltd." },
- { 3806, "Shiron Satellite Communications(1996) Ltd." },
- { 3807, "Wuhan Research Institute of Posts and Telecommunications" },
- { 3808, "Cyber Power System Inc." },
- { 3809, "Cyras Systems Inc" },
- { 3810, "NetLine" },
- { 3811, "SpectraSoft Inc." },
- { 3812, "Anda Networks, Inc." },
- { 3813, "Ellacoya Networks, Inc." },
- { 3814, "CallNet Communications, Inc." },
- { 3815, "Control Solutions, Inc." },
- { 3816, "Nominet UK" },
- { 3817, "Monfox, Inc." },
- { 3818, "MetraTech Corp." },
- { 3819, "OptiSystems Solutions Ltd." },
- { 3820, "Ziga Corporation" },
- { 3821, "Indian Valley Enterpriseses Inc." },
- { 3822, "Edimax Technology Co., Ltd." },
- { 3823, "Touchbase Communications" },
- { 3824, "Attune Networks" },
- { 3825, "Advanced Network & Services, Inc." },
- { 3826, "Nextpoint Networks, Inc." },
- { 3827, "Moscow Central Depository" },
- { 3828, "STG Inc." },
- { 3829, "Imaging Technologies Corporation" },
- { 3830, "Acision" },
- { 3831, "Oblix Inc." },
- { 3832, "Taylored Solutions" },
- { 3833, "Schneider Electric" },
- { 3834, "Novartis Pharma AG" },
- { 3835, "ALPS Electric" },
- { 3836, "Terese Brown Real Estate" },
- { 3837, "HBOC Imaging Solutions Group" },
- { 3838, "Gasper Corporation" },
- { 3839, "NeoWave Inc." },
- { 3840, "Globe Institute of Technology" },
- { 3841, "Flycast Communications Corp." },
- { 3842, "lkis" },
- { 3843, "Pyderion Contact Technologies Inc." },
- { 3844, "Graham Technology plc" },
- { 3845, "Citrix Systems Inc." },
- { 3846, "QMaster Software Solutions, Inc." },
- { 3847, "Ensemble Communications Incorporated" },
- { 3848, "Northchurch Communications, Inc." },
- { 3849, "Object Integration, Inc." },
- { 3850, "Xnet Communications GmbH" },
- { 3851, "Optika Inc." },
- { 3852, "Soft-Inter Technologies" },
- { 3853, "ViaGate Technologies" },
- { 3854, "KCP, Inc." },
- { 3855, "Elastic Networks" },
- { 3856, "Siebel Systems" },
- { 3857, "Sage Research Facility" },
- { 3858, "Capricon Engineers" },
- { 3859, "VXL Instruments Ltd" },
- { 3860, "First International Computer, Inc." },
- { 3861, "Fujitsu Network Communications, Inc." },
- { 3862, "Royal Bank of Scotland" },
- { 3863, "Canadian Marconi Company" },
- { 3864, "InTalk, Inc." },
- { 3865, "Thorne, West" },
- { 3866, "Global Net Center" },
- { 3867, "Presence Technology GmbH+Co.KGMichael" },
- { 3868, "Convergys Information Management Group" },
- { 3869, "IntelliLogic Networks, Inc." },
- { 3870, "Internet Business Emporium" },
- { 3871, "Ditech Corporation" },
- { 3872, "Miranda Technologies Inc." },
- { 3873, "QLogic" },
- { 3874, "InfoValue Computing, Inc." },
- { 3875, "Metro Computing Consultants, Inc." },
- { 3876, "ARINC Incorporated" },
- { 3877, "First American National Bank" },
- { 3878, "Real Software Company" },
- { 3879, "Taiwan Telecommunication Industry Co., Ltd." },
- { 3880, "Wireless Information Transfer Systems" },
- { 3881, "Telefonaktiebolaget LM Ericsson" },
- { 3882, "Pacom Systems Pty Ltd" },
- { 3883, "Next plc" },
- { 3884, "Phobos Corporation" },
- { 3885, "Lifeline Systems Inc." },
- { 3886, "MiMax Information" },
- { 3887, "Elder Enterprises" },
- { 3888, "Iapetus Software" },
- { 3889, "CE Infosys GmbH" },
- { 3890, "Across Wireless AB" },
- { 3891, "Chicago Board of Trade" },
- { 3892, "ATEB" },
- { 3893, "Parks Comunicacoes Digitais" },
- { 3894, "Pitney Bowes" },
- { 3895, "Advent Communications Ltd" },
- { 3896, "Automated Integrated Solutions, Inc." },
- { 3897, "Edison Technology Solutions" },
- { 3898, "Mitsubishi Telecommunications Network Division" },
- { 3899, "South China Morning Post Publishers Ltd" },
- { 3900, "Raster Solutions Pty. Ltd." },
- { 3901, "Managed Messaging, LLC" },
- { 3902, "Zhongxing Telecom Co.,ltd. (abbr. ZTE)" },
- { 3903, "Tornado Development, Inc." },
- { 3904, "Xlink Internet Service GmbH" },
- { 3905, "Telenordia Internet" },
- { 3906, "Data Communication Technology Research Institute" },
- { 3907, "California Independent System Operator" },
- { 3908, "GSP" },
- { 3909, "Nodes, Inc." },
- { 3910, "Railtrack PLC" },
- { 3911, "Glasner Consulting" },
- { 3912, "GWcom, Inc." },
- { 3913, "Array Telecom Corp." },
- { 3914, "TCOSoft, Inc." },
- { 3915, "Teknis Electronics" },
- { 3916, "Neo-Core, Inc." },
- { 3917, "V-Bits, Inc." },
- { 3918, "Watson Wyatt Worldwide" },
- { 3919, "Monterey Networks, Inc." },
- { 3920, "CSNet Consulting, Inc." },
- { 3921, "Aplion Networks, Inc." },
- { 3922, "Operational Research Consultants" },
- { 3923, "Intrak, Inc." },
- { 3924, "Policy Management Systems Corp." },
- { 3925, "Encompass Enterprise Management Consultants" },
- { 3926, "NewSouth Communications Corp." },
- { 3927, "WarpSpeed Communications" },
- { 3928, "Sandwich Wireless Communications, Inc." },
- { 3929, "NEITH Creative Beauty" },
- { 3930, "NTT Electronics Corporation" },
- { 3931, "EasyAccess" },
- { 3932, "Lara Technology, Inc." },
- { 3933, "NEXO" },
- { 3934, "Net-Wise Communications Ltd" },
- { 3935, "Centro Cantonale d'Informatica" },
- { 3936, "SINTECA" },
- { 3937, "EMS Technologies Canada Ltd." },
- { 3938, "Deccan Technologies, Inc.Vijay Burgula/Vik Jang" },
- { 3939, "Internet Devices, Inc." },
- { 3940, "Ninety.De" },
- { 3941, "Santak Electronics Co. Ltd." },
- { 3942, "Infinet LLC (formerly 'Aqua Project Group')" },
- { 3943, "Deva.net" },
- { 3944, "Data Solutions Group" },
- { 3945, "Sylantro Systems" },
- { 3946, "Conklin Corporation" },
- { 3947, "Inverse Network Technology" },
- { 3948, "MicroLegend Telecom Systems Inc." },
- { 3949, "Intrinsix Corporation" },
- { 3950, "TierTwo Systems" },
- { 3951, "Visionik A/S" },
- { 3952, "Caly Corporation" },
- { 3953, "Albert Ackermann GmbH + Co KG" },
- { 3954, "Mitra Imaging Inc." },
- { 3955, "Linksys" },
- { 3956, "Envox" },
- { 3957, "Globalarchitect" },
- { 3958, "Solution Associates" },
- { 3959, "InterCall Communications & Consulting" },
- { 3960, "Government Technology Solutions" },
- { 3961, "Corona Networks" },
- { 3962, "MGL Groupe AUBAY" },
- { 3963, "R.C. Wright & Associates" },
- { 3964, "Danet GmbH" },
- { 3965, "Spacebridge Networks Corporation" },
- { 3966, "Allianz Elementar Versicherungs-Aktiengesellschaften" },
- { 3967, "Bosch Sicherheitssysteme Engineering GmbH" },
- { 3968, "Webline Communications Corp." },
- { 3969, "RealNetworks, Inc." },
- { 3970, "FragRage Network" },
- { 3971, "IMECOM" },
- { 3972, "Apsion" },
- { 3973, "Aelita Software Group" },
- { 3974, "Custom Internetworking Inc." },
- { 3975, "Boston Communications Group, Inc." },
- { 3976, "LinkData Solutions (Pty) Limited" },
- { 3977, "Broadband Networks, Inc." },
- { 3978, "Ingenieurbuero fuer Telekommunikations- undSoftware-Systemloesungen" },
- { 3979, "AsGa Microeletronica S.A." },
- { 3980, "Home Account Network, Inc." },
- { 3981, "Troika Networks, Inc." },
- { 3982, "FaxNET Corporation" },
- { 3983, "Video Networks, Inc" },
- { 3984, "EBSCO Publishing" },
- { 3985, "Avery Computer Systems" },
- { 3986, "HighwayMaster" },
- { 3987, "Concept Webcd Services Pvt. Ltd." },
- { 3988, "Finecom Co., Ltd." },
- { 3989, "DigiComm Corporation" },
- { 3990, "Innovative Technology Software Systems Ltd" },
- { 3991, "Reticom" },
- { 3992, "Ohmega Electronic Products Ltd." },
- { 3993, "Perfect Order" },
- { 3994, "Virtual Resources Communications Inc." },
- { 3995, "VASCO Data Security International, Inc." },
- { 3996, "Open Systems AG" },
- { 3997, "ImproWare AG" },
- { 3998, "Cherus" },
- { 3999, "dydx" },
- { 4000, "Hi-net Research Group" },
- { 4001, "KADAK Products Ltd." },
- { 4002, "Banco del Buen Ayre" },
- { 4003, "George Mason University" },
- { 4004, "Aloha Networks Inc." },
- { 4005, "Tundo Corporation" },
- { 4006, "Tundo Communication and Telephony Ltd." },
- { 4007, "Cable & Wireless Communications plc" },
- { 4008, "Ardebil Pty Ltd" },
- { 4009, "Telephonics Corporation" },
- { 4010, "Dorsai Technology" },
- { 4011, "CNUT Archetype Ltd" },
- { 4012, "Selectica, Inc." },
- { 4013, "KPMG LLP ICE Telecom-SVO" },
- { 4014, "StarBurst Software" },
- { 4015, "Computer Configurations Holdings" },
- { 4016, "Iperia, Incorporated" },
- { 4017, "Logisistem Srl" },
- { 4018, "Security First Technologies, Inc." },
- { 4019, "APIS Software GmbH" },
- { 4020, "Coop Genossenschaft Switzerland" },
- { 4021, "Ensim Corporation" },
- { 4022, "AEC Ltd." },
- { 4023, "Imran" },
- { 4024, "Avantel S.A." },
- { 4025, "Lexitech, Inc." },
- { 4026, "Internet Access AG" },
- { 4027, "GTE Laboratories Incorporated" },
- { 4028, "Decision Networks" },
- { 4029, "NSI Communications Systems Inc." },
- { 4030, "Mitsubishi Electric Automation, Inc.- UPS division" },
- { 4031, "Orillion USA, Inc." },
- { 4032, "DataKinetics Ltd" },
- { 4033, "Signal Core" },
- { 4034, "IntraNet, Inc." },
- { 4035, "Ignitus Communications" },
- { 4036, "Enator Telub AB" },
- { 4037, "Presbyterian Church (USA)" },
- { 4038, "Softov Advanced Systems Ltd." },
- { 4039, "Mayan Networks Corporation" },
- { 4040, "MicroSignals Group" },
- { 4041, "Nomura International Plc" },
- { 4042, "DigiCommerce Ltd." },
- { 4043, "QNX Software Systems Ltd." },
- { 4044, "Eloquence Limited" },
- { 4045, "Thomson-CSF Communications" },
- { 4046, "SCORT" },
- { 4047, "Hunan Computer CO., Ltd." },
- { 4048, "Kinko's, Inc." },
- { 4049, "Opus Comunicacao de Dados" },
- { 4050, "Infuntainment Limited" },
- { 4051, "SowsEar Solution Design Group" },
- { 4052, "Vanguard Security Technologies Ltd Raviv Karnieli" },
- { 4053, "Switchcore" },
- { 4054, "Abatis Systems Corporation" },
- { 4055, "Nimbus Software AS" },
- { 4056, "StreamCORE" },
- { 4057, "ControlNet, Inc." },
- { 4058, "Generali IT-Solutions GmbH" },
- { 4059, "Broadlogic" },
- { 4060, "JFAX.COM" },
- { 4061, "Technology Control Services" },
- { 4062, "Astral Point Communications, Inc." },
- { 4063, "ASC Technologies AG (formerly 'ASC Telecom AG')" },
- { 4064, "Elma Oy Electronic Trading" },
- { 4065, "InfraServ GmbH & Co Gendorf KG" },
- { 4066, "Carioli Consulting Inc." },
- { 4067, "Fivemere Ltd." },
- { 4068, "Pathway Inc." },
- { 4069, "Ellison Software Consulting, Inc." },
- { 4070, "US West Internet Services" },
- { 4071, "PRAIM S.p.A." },
- { 4072, "Qeyton Systems AB" },
- { 4073, "TeleDiffusion de France" },
- { 4074, "Krutulis Enterprises" },
- { 4075, "Sedona Networks" },
- { 4076, "Novera Software, Inc." },
- { 4077, "The Limited, Inc." },
- { 4078, "Symon Communications" },
- { 4079, "24/7 Media, Inc." },
- { 4080, "Archangels Realty, Inc." },
- { 4081, "Zelea" },
- { 4082, "Timko Enterprises" },
- { 4083, "Spark New Zealand (formerly 'Telecom New Zealand')" },
- { 4084, "Trilogy Development Group" },
- { 4085, "D.I.B. Ges. fuer Standortbetreiberdienste mbH" },
- { 4086, "Ericsson Research Montreal (LMC)" },
- { 4087, "USWeb/CKS" },
- { 4088, "aku awekku & co." },
- { 4089, "SALUtel" },
- { 4090, "Consorte Tele AS" },
- { 4091, "Infitel Italia srl" },
- { 4092, "Computel Standby BV" },
- { 4093, "Merlot Communications, Inc." },
- { 4094, "Quality Tank & Construction Co. Inc." },
- { 4095, "Axent Technologies" },
- { 4096, "Thales e-Security" },
- { 4097, "Elan Text to Speech" },
- { 4098, "Signaal Communications" },
- { 4099, "Tristrata Inc." },
- { 4100, "Wavetek Wandel Goltermann" },
- { 4101, "John Hancock Financial Services" },
- { 4102, "SHYM Technology Inc." },
- { 4103, "CNN" },
- { 4104, "Redwood Technology B.V." },
- { 4105, "Stargus, Inc." },
- { 4106, "Astrophysikalisches Institut Potsdam" },
- { 4107, "Beijing Telecom Administration, China" },
- { 4108, "Serendip" },
- { 4109, "Durango Security Group" },
- { 4110, "Softstart Services Inc." },
- { 4111, "Westell (UK) Ltd" },
- { 4112, "Tunitas Group" },
- { 4113, "Tenor Networks, Inc." },
- { 4114, "T10.net" },
- { 4115, "Arris Interactive LLC" },
- { 4116, "InfoInterActive Inc." },
- { 4117, "Entertainment Systems Technology" },
- { 4118, "Tesla Liptovsky Hradok a.s." },
- { 4119, "Remote Management Systems Pty Ltd" },
- { 4120, "Sonik Technologies Corp." },
- { 4121, "Digital Chicago.net" },
- { 4122, "The University of Texas Health Science Center at Houston" },
- { 4123, "Hitachi America Ltd" },
- { 4124, "Unify Consulting Group, Inc." },
- { 4125, "Siemens AG ICP Kornelius" },
- { 4126, "LogMatrix Inc (formerly 'Open Service')" },
- { 4127, "Mercury Computer Systems, Inc." },
- { 4128, "ARM Ltd." },
- { 4129, "Mnaccari@consulting" },
- { 4130, "Microwave Data Systems" },
- { 4131, "Tridium" },
- { 4132, "Connecticut Hospital Association" },
- { 4133, "philipjeddycpas" },
- { 4134, "Philip J. Eddy & Partners Pty Ltd" },
- { 4135, "NiceTec GmbH" },
- { 4136, "UQAM | Universit\0303\0251 du Qu\0303\0251bec \0303\0240 Montr\0303\0251al" },
- { 4137, "GAURI Info-Comm.Inc." },
- { 4138, "Sychron Ltd" },
- { 4139, "WapIT Ltd." },
- { 4140, "Computer & Telephony Systems AB" },
- { 4141, "IMR Worldwide Pty Ltd" },
- { 4142, "FDS Networks Limited" },
- { 4143, "M&I Data Services Alexander" },
- { 4144, "PricewaterhouseCoopers-FP5" },
- { 4145, "Cristie Data Products Limited" },
- { 4146, "GlobalSign NV/SA" },
- { 4147, "Zuercher Kantonalbank" },
- { 4148, "DeWitt, Ross &Stevens, S.C." },
- { 4149, "Accrue Software, Inc." },
- { 4150, "Northwestern Mutual Life Insurance Company" },
- { 4151, "iMPath Networks Inc." },
- { 4152, "Two Way TV" },
- { 4153, "Simple Networks" },
- { 4154, "Versa Technology, Inc." },
- { 4155, "Cemoc Ltd" },
- { 4156, "New Access Communications, Inc." },
- { 4157, "BCE Emergis" },
- { 4158, "Milman Consulting" },
- { 4159, "Electronic Theatre Controls, Inc." },
- { 4160, "VIVE Synergies Inc." },
- { 4161, "Qtera Corporation" },
- { 4162, "Input Output Inc." },
- { 4163, "Quarry Technologies" },
- { 4164, sminmpec_unknown }, /* (Added by Wireshark) */
- { 4165, "SE Electronics" },
- { 4166, "The Mercy Foundation" },
- { 4167, "Markus Lauer IT Consulting" },
- { 4168, "Systems Management Specialists" },
- { 4169, "Syzygy Solutions" },
- { 4170, "University of Wisconsin-Milwaukee" },
- { 4171, "BOSUNG Data Communication Co." },
- { 4172, "Narae Information & Communication Enterprise" },
- { 4173, "VIERLING Communication S.A.S." },
- { 4174, "Critical Devices, Inc." },
- { 4175, "Tessler's Nifty Tools" },
- { 4176, "Newton Solutions" },
- { 4177, "Redding Enterprises" },
- { 4178, "Aspect Software" },
- { 4179, "Commercial Technologies Corp" },
- { 4180, "Talkstar.Com Inc." },
- { 4181, "Generic Telecom Ltd." },
- { 4182, "Leningrad Nuclear Power Plant" },
- { 4183, "Hammer Technologies" },
- { 4184, "SMS - Shared Medical Systems, Inc." },
- { 4185, "Boostworks" },
- { 4186, "AKA Consulting, Inc." },
- { 4187, "Storage Area Networks Ltd" },
- { 4188, "Realize Communications" },
- { 4189, "EGIS K.K." },
- { 4190, "ETRADE Securities" },
- { 4191, "SIGOS Systemintegration GmbH" },
- { 4192, "Tennessee Valley Authority" },
- { 4193, "VUT BRNO, faculty of EE and CS" },
- { 4194, "Leonia plc" },
- { 4195, "TeleSoft Inc." },
- { 4196, "Siemens AG Automation & Drives" },
- { 4197, "Cap Gemini Denmark A/S" },
- { 4198, "VPN Consortium" },
- { 4199, "Cellnet Technology, Inc." },
- { 4200, "Fast Search & Transfer" },
- { 4201, "Tonna Electronique" },
- { 4202, "Samwoo Telecommunications Co., Ltd." },
- { 4203, "The OpenLDAP Foundation" },
- { 4204, "Adtec Co., Ltd." },
- { 4205, "Durak Unlimited" },
- { 4206, "MITA Industrial Co., Ltd." },
- { 4207, "Daydream Promotions" },
- { 4208, "Tantivy Communications, Inc." },
- { 4209, "CDVS Inc." },
- { 4210, "Assumption University" },
- { 4211, "Corillian" },
- { 4212, "SPM - Systementwicklung und Projektmanagement GmbH" },
- { 4213, "Infrax Inc." },
- { 4214, "Sunquest Information Systems, Inc." },
- { 4215, "SilkRoad, Inc." },
- { 4216, "Triton Network Systems" },
- { 4217, "Opalis" },
- { 4218, "Gecko Software Limited" },
- { 4219, "regioconnect GmbH" },
- { 4220, "ARCANVS" },
- { 4221, "Soundscaipe" },
- { 4222, "OnDisplay Incorporated" },
- { 4223, "Milgo Solutions, Inc." },
- { 4224, "John H. Harland Company" },
- { 4225, "Peach Networks" },
- { 4226, "Composit Communications" },
- { 4227, "Sixtra Chile S.A." },
- { 4228, "DASCOM, Inc." },
- { 4229, "Westfair Foods Ltd." },
- { 4230, "Pirouette, Inc." },
- { 4231, "OB Telematics" },
- { 4232, "CTX Opto-Electronics Corp." },
- { 4233, "Dalian Daxian Network System Co.ltd" },
- { 4234, "Pragma Ltda." },
- { 4235, "CultureShock Multimedia" },
- { 4236, "Spectel Ltd." },
- { 4237, "Busby Software" },
- { 4238, "Media Station Inc." },
- { 4239, "Kommunedata A/S" },
- { 4240, "Vodafone Information Systems GmbH" },
- { 4241, "Peakstone Corporation" },
- { 4242, "The Clorox Company" },
- { 4243, "NPO Infoservice" },
- { 4244, "Cinnabar Networks Inc." },
- { 4245, "Posten SDS AS" },
- { 4246, "Comverse Network Systems (CNS)" },
- { 4247, "The University of Edinburgh" },
- { 4248, "Interconexion Electrica S.A." },
- { 4249, "NATEKS Ltd." },
- { 4250, "H.I.T. Industries Sales Ltd" },
- { 4251, "System Design Repair" },
- { 4252, "High Speed Access" },
- { 4253, "LuxN, Inc." },
- { 4254, "arvato systems GmbH" },
- { 4255, "Perfecto Technologies" },
- { 4256, "Kipling Information Technology AB" },
- { 4257, "Cyberstation, Inc." },
- { 4258, "Open4Rent" },
- { 4259, "FDP" },
- { 4260, "3rd Millennium Consulting" },
- { 4261, "Globol Solutions" },
- { 4262, "Jean=Claude Metal Craft" },
- { 4263, "Dr. Andreas Muller, Beratung und Entwicklung" },
- { 4264, "World Ramp, Inc." },
- { 4265, "Tachion Network Technologies Inc." },
- { 4266, "FernUniversitaet Hagen" },
- { 4267, "Transcend, Inc." },
- { 4268, "BancTec Computer and Network Services" },
- { 4269, "WorldPort Communications, Inc." },
- { 4270, "EDV-Beratung Blechschmidt" },
- { 4271, "Nevex Software Technologies Inc." },
- { 4272, "Exact Solutions, Inc." },
- { 4273, "LEROY AUTOMATIQUE INDUSTRIELLE" },
- { 4274, "Pangolin UK Ltd" },
- { 4275, "Duke University" },
- { 4276, "PCS Innovations Inc." },
- { 4277, "Telocity Communications, Inc." },
- { 4278, "Yahoo!" },
- { 4279, "Sirocco Systems" },
- { 4280, "ARtem GmbHMichael Marsanu/Catrinel Catrinescu" },
- { 4281, "Assumption" },
- { 4282, "KenCast Inc." },
- { 4283, "Dual-Zentrumn GmbH" },
- { 4284, "Norweb Internett Tjenester" },
- { 4285, "Ruslan CommunicationsDmitry Shibayev, Alexandr Gorbachev" },
- { 4286, "e-Security, Inc." },
- { 4287, "Philips Consumer Electronics" },
- { 4288, "Forge Research Pty Ltd" },
- { 4289, "VBrick Systems, Inc." },
- { 4290, "Logic Innovations, Inc." },
- { 4291, "Chordiant Software Inc." },
- { 4292, "Entera, Inc." },
- { 4293, "Bensons" },
- { 4294, "Salbu (Pty) Ltd" },
- { 4295, "Kalki Communication Technologies Pvt Ltd" },
- { 4296, "Cenfor S.L." },
- { 4297, "Finisar Corporation" },
- { 4298, "ETC (Excellence in Technology Consulting)" },
- { 4299, "Open Solution Providers" },
- { 4300, "Inmon Corp." },
- { 4301, "UniServe Consulting Limited" },
- { 4302, "Cybex Computer Products Corporation" },
- { 4303, "CamART" },
- { 4304, "CSIRO - Div. of Animal Health" },
- { 4305, "University of Maryland" },
- { 4306, "JMDEL Systems" },
- { 4307, "Office Connect, Inc." },
- { 4308, "Consejo Superior de Camaras" },
- { 4309, "IP Technologies" },
- { 4310, "Unique Computer Services, Inc." },
- { 4311, "Equinix" },
- { 4312, "VITA Systems, Inc." },
- { 4313, "Allayer Technologies" },
- { 4314, "Xilinx, Inc." },
- { 4315, "XACCT Technologies, Ltd." },
- { 4316, "Brandeis University" },
- { 4317, "Javelin Technology Corp." },
- { 4318, "Edixia" },
- { 4319, "Ennovate Networks, Inc" },
- { 4320, "Freshwater Software, Inc." },
- { 4321, "Riverbed Technologies" },
- { 4322, "Murata Machinery, Ltd." },
- { 4323, "Quantum Bridge" },
- { 4324, "SAEJIN T&M Co., Ltd." },
- { 4325, "Aperto Networks" },
- { 4326, "Crown International" },
- { 4327, "Trading WorldCom" },
- { 4328, "M.I. Systems, K.K." },
- { 4329, "Siemens AG" },
- { 4330, "PMC-Sierra Inc." },
- { 4331, "Aventail Corporation" },
- { 4332, "Institute of Systems & information Technologies/KYUSHU" },
- { 4333, "Insight Technology, Inc." },
- { 4334, "Ampersand Chantilly Communications" },
- { 4335, "TechWorld Incorporated" },
- { 4336, "Expertech Pty Ltd" },
- { 4337, "RadiSys Corp." },
- { 4338, "Case Corporation" },
- { 4339, "Rhode Island Economic Development Corporation" },
- { 4340, "Bacteriophage Lambda" },
- { 4341, "Spider Internet Services" },
- { 4342, "USHealth Real Estate" },
- { 4343, "Boundless Technologies" },
- { 4344, "Post-Industrial Training Institute" },
- { 4345, "Thomas & Betts" },
- { 4346, "Phoenix Contact GmbH & Co." },
- { 4347, "MessageWise Inc." },
- { 4348, "Domino Computers Nigeria Ltd" },
- { 4349, "LXCO Technologies AG" },
- { 4350, "Maxpert AG" },
- { 4351, "Network Systems Group" },
- { 4352, "Urgle" },
- { 4353, "Builders Network Ltd" },
- { 4354, "NetDragon Ltd" },
- { 4355, "RapidStream, Inc." },
- { 4356, "Inform GmbH & Co. KG" },
- { 4357, "Coteng" },
- { 4358, "Ziatech Corporation" },
- { 4359, "TelGen Corporation" },
- { 4360, "Tumbleweed Communications" },
- { 4361, "Amgen, Inc." },
- { 4362, "Nylorac Software, Inc." },
- { 4363, "University of Bristol Julius" },
- { 4364, "BV Solutions Group" },
- { 4365, "Myowngig" },
- { 4366, "Locus Corp." },
- { 4367, "Electronic Laboratory Services CC" },
- { 4368, "H.A.N.D. GmbH" },
- { 4369, "Brocade Communications Systems, Inc. (formerly 'McDATA,Inc')" },
- { 4370, "Tokyo DisneySea" },
- { 4371, "Digital United Inc." },
- { 4372, "Softlink s.r.o." },
- { 4373, "Rivere Corporation" },
- { 4374, "Motive Communications, Inc." },
- { 4375, "DT Research, Inc" },
- { 4376, "Nettech Systems, Inc." },
- { 4377, "X-Point Communications" },
- { 4378, sminmpec_unknown }, /* (Added by Wireshark) */
- { 4379, "Alien Internet Services" },
- { 4380, "Elipse Software" },
- { 4381, "Astracon Inc." },
- { 4382, "Aladdin Knowledge Systems Ltd." },
- { 4383, "Glassey.com" },
- { 4384, "Meridianus" },
- { 4385, "Stime.org WG" },
- { 4386, "TDC A/S" },
- { 4387, "Ubique Ltd." },
- { 4388, "Alcatel Altech Telecoms" },
- { 4389, "Sys-Dis" },
- { 4390, "Kemper Insurance" },
- { 4391, "Texas A&M University" },
- { 4392, "Northbrook Services, Inc." },
- { 4393, "Pentacom Ltd." },
- { 4394, "SoftFx" },
- { 4395, "Unified Technologies Sverige HB" },
- { 4396, "The Open Group" },
- { 4397, "OPT Technologies Limited" },
- { 4398, "B&L Associates, Inc." },
- { 4399, "Johnson Controls, Inc." },
- { 4400, "Cypress Corporation" },
- { 4401, "MoonVine" },
- { 4402, "NetPredict, Inc" },
- { 4403, "Visual Brain Ltd S.a.r.l." },
- { 4404, "Tekelec" },
- { 4405, "Ansid Inc." },
- { 4406, "Toyo Information Systems Co., Ltd." },
- { 4407, "Dracom Ltd." },
- { 4408, "EDSL" },
- { 4409, "Campus Pipeline, Inc." },
- { 4410, "Earth Star Group" },
- { 4411, "Swinburne.com" },
- { 4412, "Wrox Press" },
- { 4413, "Broadcom Corporation" },
- { 4414, "Scandinavian Softline Technology Oy" },
- { 4415, "Florida Department of Law Enforcement" },
- { 4416, "Starfire Experts Ltd" },
- { 4417, "Alidian Networks, Inc." },
- { 4418, "MegaSys Computer Technologies" },
- { 4419, "Sony Online Entertainment" },
- { 4420, "Westica Limited" },
- { 4421, "Santera Systems Inc." },
- { 4422, "GTE I.T." },
- { 4423, "Garnet Systems Co., Ltd." },
- { 4424, "Rapid Logic" },
- { 4425, "Meta Gymnastics, Inc." },
- { 4426, "Fujitsu Australia Software Technology Pty Ltd" },
- { 4427, "Pironet Intranet AG" },
- { 4428, "Supercomputing Systems AG" },
- { 4429, "MegaChips Corporation" },
- { 4430, "Silicon Automation Systems (India) Ltd" },
- { 4431, "Netia" },
- { 4432, "Apani Networks" },
- { 4433, "Strategic Financial Planning" },
- { 4434, "Bluestone Software Inc." },
- { 4435, "Suedtiroler Informatik AG" },
- { 4436, "Mission Critical" },
- { 4437, "Canadian Imperial Bank of Commerce" },
- { 4438, "G\0303\0266teborg Energi AB" },
- { 4439, "EnZane Enterprise" },
- { 4440, "Purdue University" },
- { 4441, "GE Capital Fleet Services" },
- { 4442, "KARA" },
- { 4443, "Ned Boddie & Assoc." },
- { 4444, "SAINCO" },
- { 4445, "INTER s.a.r.l." },
- { 4446, "Prairie Development, Inc." },
- { 4447, "Rochester Institute of Technology" },
- { 4448, "E-Lock Technologies, Inc." },
- { 4449, "SSH Communications Security, Inc." },
- { 4450, "iC-Consult" },
- { 4451, "MORION" },
- { 4452, "Telenor 4tel" },
- { 4453, "Infonet Services Corp." },
- { 4454, "Gottfried Web and Computer Consulting" },
- { 4455, "I-Bus Corporation" },
- { 4456, "AWI (formerly 'Qualimetrics')" },
- { 4457, "O ROCK ActiveWear (formerly 'Alpha & Omega Storehouse, LLC')" },
- { 4458, "Radwin Ltd." },
- { 4459, "Industree B.V." },
- { 4460, "FirstWorld Communications" },
- { 4461, "OpenNetwork Technologies" },
- { 4462, "SVM Microwaves, s.r.o." },
- { 4463, "TaoNet" },
- { 4464, "MPB Communications Inc." },
- { 4465, "ViewCast.com" },
- { 4466, "Harmonic Video Network (formerly 'Tadiran Scopus')" },
- { 4467, "FibroLan" },
- { 4468, "Telkoor-QPS" },
- { 4469, "Diversinet Corp." },
- { 4470, "TeleDream Inc." },
- { 4471, "Network Security Wizards" },
- { 4472, "MONTAGE IT Services Inc." },
- { 4473, "Opto 22" },
- { 4474, "PaxComm" },
- { 4475, "Rainbow Software Solutions, Inc." },
- { 4476, "Lightrealm" },
- { 4477, "Infocom Systems Services" },
- { 4478, "Alacritech" },
- { 4479, "SpectraPoint Wireless LLC" },
- { 4480, "FastForward Networks, Inc." },
- { 4481, "CIA Europe" },
- { 4482, "RWE AG" },
- { 4483, "IBI Co., Ltd." },
- { 4484, "Pacific Softworks, Inc." },
- { 4485, "Dataport Communications" },
- { 4486, "Verio Web Hosting" },
- { 4487, "Johnson & Johnson NCS" },
- { 4488, "MediaHouse Software Inc" },
- { 4489, "Sierra Networks, Inc." },
- { 4490, "POLYGON Consultants in Informatics Ltd." },
- { 4491, "Cable Television Laboratories, Inc." },
- { 4492, "SolutionSoft Systems, Inc." },
- { 4493, "UniRel Sistemi srl Mauro" },
- { 4494, "Novartis AG" },
- { 4495, "Taima Corp." },
- { 4496, "Siemens Canada Ltd." },
- { 4497, "Avail Networks, Inc." },
- { 4498, "NetQoS, Inc." },
- { 4499, "Safefunds.com" },
- { 4500, "Jordan Tech" },
- { 4501, "EforNet Corporation" },
- { 4502, "playbeing.org" },
- { 4503, "Corporate Information Technologies" },
- { 4504, "Seamless Kludge Internetworking Labs Ltd" },
- { 4505, "Caltex Australia Petroleum Pty Ltd" },
- { 4506, "Channels Measurement Services" },
- { 4507, "The Miami Herald" },
- { 4508, "Geeks Like Us" },
- { 4509, "Nakayo Telecommunications, Inc." },
- { 4510, "Dracom" },
- { 4511, "Concord-Eracom Computer Security GmbH" },
- { 4512, "Sofreavia" },
- { 4513, "Terawave Communications, Inc." },
- { 4514, "Bank America" },
- { 4515, "PacketLight Networks Ltd." },
- { 4516, "SIAS" },
- { 4517, "Helius, Inc." },
- { 4518, "KMZ Consulting Group, Inc." },
- { 4519, "VERO Electronics Ltd." },
- { 4520, "Joohong Information and Communications" },
- { 4521, "Global ADSI Soltuions, Inc." },
- { 4522, "Ontario Power Generation" },
- { 4523, "eXaLink Ltd." },
- { 4524, "StorageSoft, Inc." },
- { 4525, "Micron Technology, Inc." },
- { 4526, "Netgear" },
- { 4527, "zeitgeist y2k01 Ltd." },
- { 4528, "8x8 Incorporated" },
- { 4529, "Internet Service Dept, WorldTelecom Plc" },
- { 4530, "Tunbridge Wells Equitable Friendly Society Ltd" },
- { 4531, "ON Technology Corporation Robert Smokey Montgomery" },
- { 4532, "GVCTW Corporation" },
- { 4533, "Atcomm Corporation" },
- { 4534, "onebox.com" },
- { 4535, "Javelinx Corporation" },
- { 4536, "Digitech" },
- { 4537, "Planex Communications Inc." },
- { 4538, "Easybuy" },
- { 4539, "RemarQ Communities, Inc." },
- { 4540, "Intelect Network Technologies Inc." },
- { 4541, "OutReach Technologies, Inc." },
- { 4542, "Alerting Specifications Forum" },
- { 4543, "Digitellum, Inc." },
- { 4544, "Gjensidige Forsikring" },
- { 4545, "Atlantis Software Inc" },
- { 4546, "AST Engineering Services, Inc." },
- { 4547, "ATTO Technology, Inc." },
- { 4548, "QuickStart Consulting Inc." },
- { 4549, "WebGear, Inc." },
- { 4550, "The Japan Electrical Manufacturers' Association" },
- { 4551, "Empirix, Inc" },
- { 4552, "Wayport, Inc." },
- { 4553, "NextCom K.K." },
- { 4554, "Trisol Technologies" },
- { 4555, "Socomec Sicon Ups" },
- { 4556, "Scali" },
- { 4557, "Qwest" },
- { 4558, "Euromove s.r.o." },
- { 4559, "NVision" },
- { 4560, "Shebang Networking" },
- { 4561, "OpenDOF Project, Inc. (formerly 'Panasonic Electric Works Laboratory of America, Inc./SLC Lab')" },
- { 4562, "Centermark Engineering LC" },
- { 4563, "Syllogi, Inc." },
- { 4564, "Diverse Networks, Inc." },
- { 4565, sminmpec_unknown }, /* (Added by Wireshark) */
- { 4566, "Cedelbank" },
- { 4567, "Cedel Global Services" },
- { 4568, "Cedel International" },
- { 4569, "Ensigma Ltd" },
- { 4570, "NetEnterprise, Inc." },
- { 4571, "JMCS, Inc." },
- { 4572, "Daedalus Corporation" },
- { 4573, "SecureSoft Inc." },
- { 4574, "Compu-Alvarado" },
- { 4575, "MANi Network Co., Ltd." },
- { 4576, "Corporacion ZIGOR S.A." },
- { 4577, "Internet Research" },
- { 4578, "SSE Telecom" },
- { 4579, "Vest Internett" },
- { 4580, "Diversified Business Group" },
- { 4581, "Seeburger GmbH" },
- { 4582, "World Telecom plc" },
- { 4583, "NetStar" },
- { 4584, "Headhunters London Limited" },
- { 4585, "Eel Valley Internet" },
- { 4586, "Enterprise Consulting Group" },
- { 4587, "Diamond Multimedia Systems, Inc." },
- { 4588, "Critical Path, Inc." },
- { 4589, "DATAP Division of TCEnet Inc." },
- { 4590, "Zoom Telephonics, Inc." },
- { 4591, "SpaceCom Systems, Inc." },
- { 4592, "Frontier Communications" },
- { 4593, "SAET I.S. S.p.A." },
- { 4594, "Saritel S.p.A." },
- { 4595, "IS Production" },
- { 4596, "Videoframe Systems" },
- { 4597, "Fiberview Technologies Inc." },
- { 4598, "JCampus" },
- { 4599, "MIMSOFT" },
- { 4600, sminmpec_unknown }, /* (Added by Wireshark) */
- { 4601, "Cybertime Informatik GmbH" },
- { 4602, "BEA Systems" },
- { 4603, "TERS Ltd." },
- { 4604, "Beca Carter Hollings & Ferner Ltd Mike Beamish" },
- { 4605, "Toronto School of Business" },
- { 4606, "Information Security Agency Ltd." },
- { 4607, "Software Shelf Technologies" },
- { 4608, "Harco Technology Ltd" },
- { 4609, "Seamless Technologies, Inc." },
- { 4610, "Strategic Technologies" },
- { 4611, "Digital Wireless Corporation" },
- { 4612, "Baker Street Technologies Inc." },
- { 4613, "Sphere Communications Inc" },
- { 4614, "Luminous Networks, Inc" },
- { 4615, "I-O Data Device, Inc." },
- { 4616, "ComputerJobs.com" },
- { 4617, "MARCOMPUTER" },
- { 4618, "ARMILLAIRE TECHNOLOGIES" },
- { 4619, "e!reminder.com" },
- { 4620, "Progressive Systems, Inc." },
- { 4621, "NSTOP Technologies Inc." },
- { 4622, "Legian Consultancy & Network Services" },
- { 4623, "Lifix Systems Oy" },
- { 4624, "Training for Tomorrow" },
- { 4625, "Mazone Systems" },
- { 4626, "WestLB" },
- { 4627, "SAET IS s.r.l." },
- { 4628, "Xtra On-Line" },
- { 4629, "Veraz Networks Inc. (formerly 'ipVerse')" },
- { 4630, "FileTek, Inc." },
- { 4631, "homeloandotcom" },
- { 4632, "FreeMarkets" },
- { 4633, "CQOS, Inc." },
- { 4634, "VCON Telecommunications Ltd." },
- { 4635, "The VE Group" },
- { 4636, "Intrust Software" },
- { 4637, "RGE, Inc." },
- { 4638, "SGI Soluciones Globales Internet" },
- { 4639, "TETRAGONE S.A." },
- { 4640, "Eckerd College" },
- { 4641, "Tellabs Inc (ADP)" },
- { 4642, "Bel. Studio H. Sager" },
- { 4643, "nworks" },
- { 4644, "Wincom Technology Inc." },
- { 4645, "Data Ductus AB" },
- { 4646, "NetConvergence, Inc." },
- { 4647, "Internet Chess Club" },
- { 4648, "The Grateful Net" },
- { 4649, "CPlane, Inc." },
- { 4650, "Marc August International" },
- { 4651, "Aztec Radiomedia" },
- { 4652, "Technical University of Ilmenau" },
- { 4653, "Precise Software Technologies Inc." },
- { 4654, "OCLC Online Computer Library Center, Inc." },
- { 4655, "TeleCheck International Inc." },
- { 4656, "Banco de Galicia y Buenos Aires" },
- { 4657, "Goodall Secure Services" },
- { 4658, "Entertainment International, Inc." },
- { 4659, "Teco Image Systems Co., Ltd." },
- { 4660, "RCMS Ltd" },
- { 4661, "Spazio R&D" },
- { 4662, "Frank Matthiess" },
- { 4663, "decor metall GmbH + CO. KG" },
- { 4664, "Ark Research Corporation" },
- { 4665, "Performance Design Limited" },
- { 4666, "Itchigo Communications GmbH" },
- { 4667, "Telperion Network Systems" },
- { 4668, "Turning Point Technologies" },
- { 4669, "Muro Enterprises, Inc." },
- { 4670, "National Computational Science Alliance" },
- { 4671, "Advanced Telecom Systems, Inc." },
- { 4672, "US Healthcare PKI" },
- { 4673, "Wave Research N.V." },
- { 4674, "Crunch Technologies BV" },
- { 4675, "WK Audiosystems BV" },
- { 4676, "Healthaxis.com Inc." },
- { 4677, "Concert Technologies" },
- { 4678, "Information Developers Unlimited" },
- { 4679, "OPICOM" },
- { 4680, "Telecommunications Systems Group - UCL" },
- { 4681, "dvg Hannover Datenverarbeitungsgesellschaft mbH" },
- { 4682, "Linux-HA Project" },
- { 4683, "Trading Technologies International, Inc." },
- { 4684, "Ambit Microsystems Corporation" },
- { 4685, "TONTRU Information Industry Group Co. Ltd." },
- { 4686, "VegaStream" },
- { 4687, "Digitro Tecnologia Ltda" },
- { 4688, "Luimes Computer Consulting" },
- { 4689, "Urbis.Net Ltd" },
- { 4690, "MBC Europe, B.V." },
- { 4691, "VAW Aluminum Technologie GmbH" },
- { 4692, "Digital Technics, LP" },
- { 4693, "Maxtor Corp.," },
- { 4694, "Willamette University" },
- { 4695, "Extricity Software" },
- { 4696, "WEBB Studios" },
- { 4697, "ATLANTEL" },
- { 4698, "Connectivity Software Systems" },
- { 4699, "Burning Door" },
- { 4700, "InternetPirate.com" },
- { 4701, "Syskoplan GmbH" },
- { 4702, "SpeechWorks International, Inc." },
- { 4703, "Sanford C. Bernstein & Co. Inc." },
- { 4704, "Visual Media Technologies, Inc." },
- { 4705, "Gabriel Communications" },
- { 4706, "Zero7.com" },
- { 4707, "Aldea Internet, S.A. de C.V. Javier" },
- { 4708, "iMedium Inc" },
- { 4709, "Oxydian S.A." },
- { 4710, "Safelayer S.A." },
- { 4711, "Mail.com" },
- { 4712, "Entropic Ltd" },
- { 4713, "WhereNet, Inc." },
- { 4714, "Centerpoint Broadband Technologies" },
- { 4715, "Advice Netbusiness Ltda" },
- { 4716, "Arbortext" },
- { 4717, "Media Management Consulting" },
- { 4718, "MDL Information Systems" },
- { 4719, "Montagnaleader s.c.a.r.l." },
- { 4720, "Lunatech Research" },
- { 4721, "Cositel Inc." },
- { 4722, "Jacksonville University" },
- { 4723, "Mockingbird Networks" },
- { 4724, "TechnoSoft" },
- { 4725, "Bestnet Internet Inc" },
- { 4726, "Capital Computer Services, Inc." },
- { 4727, "Langtang JV Company" },
- { 4728, "NSI Technology" },
- { 4729, "Crannog Software" },
- { 4730, "epita" },
- { 4731, "Socketware, Inc." },
- { 4732, "CVF" },
- { 4733, "Middlesex University" },
- { 4734, "Zarak Systems Corporation" },
- { 4735, "SOMA Networks, Inc." },
- { 4736, "Appliant, Inc." },
- { 4737, "Crosswalk.com, Inc." },
- { 4738, "Shanghai E-way Computer Network Technology Ltd." },
- { 4739, "OLDE Discount Corporation" },
- { 4740, "VoteHere" },
- { 4741, "Amber Networks, Inc" },
- { 4742, "Operational Technologies Services, Inc." },
- { 4743, "NextNet" },
- { 4744, "Internalnetwork" },
- { 4745, "DigiSAFE Pte Ltd" },
- { 4746, "PT Inovacao" },
- { 4747, "Service Technique de la Navigation Aerienne" },
- { 4748, "DoBiT nv" },
- { 4749, "e-Plaza" },
- { 4750, "Lykon Consulting" },
- { 4751, "SARL K1" },
- { 4752, "Crescent Networks" },
- { 4753, "MontaVista Software, Inc." },
- { 4754, "Symas Corp." },
- { 4755, "Directory Works" },
- { 4756, "CTC Union Technologies Co., Ltd." },
- { 4757, "IBS" },
- { 4758, "AnIX Group Ltd" },
- { 4759, "Peco II, Inc." },
- { 4760, "Viditec, Inc." },
- { 4761, "NuDesign Technologies Inc." },
- { 4762, "GRIC Communication Inc" },
- { 4763, "Teddybear Computer Services" },
- { 4764, "Global Crossing" },
- { 4765, "Tomorrow Factory" },
- { 4766, "Hochschule Heilbronn" },
- { 4767, "TrafficMaster PLC" },
- { 4768, "E.ON SE (formerly 'E.ON AG')" },
- { 4769, "IBM Corporation" },
- { 4770, "Ol'e Communications, Inc." },
- { 4771, "Narus Inc" },
- { 4772, "CyberSource Corporation" },
- { 4773, "RealNames Corporation" },
- { 4774, "Netpliance.net" },
- { 4775, "Network ICE" },
- { 4776, "Knight Fisk Ltd" },
- { 4777, "Cuperus Consultants" },
- { 4778, "Biscom, Inc." },
- { 4779, "Bay Technical Associates" },
- { 4780, "VADEM" },
- { 4781, "E.piphany, Inc." },
- { 4782, "3Cube, Inc." },
- { 4783, "CrosStor Software" },
- { 4784, "March Networks" },
- { 4785, "Appian Communications, Inc." },
- { 4786, "Sierra PartnersStephen Ells" },
- { 4787, "Shanghai Holdfast Online Information" },
- { 4788, "D-Trust GmbH" },
- { 4789, "Telica, Inc." },
- { 4790, "SecureLogix Corporation" },
- { 4791, "Dresdner Bank AG" },
- { 4792, "Wavefront" },
- { 4793, "Levi, Ray & Shoup, Inc." },
- { 4794, "eCoin, Inc." },
- { 4795, "Unified Productions, Inc." },
- { 4796, "Joe Chapa" },
- { 4797, "City Group Inc." },
- { 4798, "Vigil Technologies Ltd." },
- { 4799, "Leaselogix, Inc." },
- { 4800, "Jensley Pty Ltd" },
- { 4801, "Compass Corporate Systems, Inc." },
- { 4802, "Systematic Software Engineering A/S" },
- { 4803, "POWWOW" },
- { 4804, "Castello Cities Internet Network" },
- { 4805, "INOVA Corporation" },
- { 4806, "Rosslea Associates LLC" },
- { 4807, "Control Z Corporation" },
- { 4808, "Net-star Technology Corporation" },
- { 4809, "BSW Telecoms" },
- { 4810, "Bloemenveiling Holland" },
- { 4811, "Network Flight Recorder, Inc." },
- { 4812, "shanghai radio communication equipment manufacture company(srcem)" },
- { 4813, "GlenEvin" },
- { 4814, "Alex Temex Multimedia S.A." },
- { 4815, "H.B. Fuller Company" },
- { 4816, "Pacific Gas & Electric Company" },
- { 4817, "Innovative Technologies & Consulting, Inc." },
- { 4818, "Sinclair Internetworking Services" },
- { 4819, "RMS Technology Integration, Inc." },
- { 4820, "Quicknet Technologies, Inc." },
- { 4821, "SN2AI" },
- { 4822, "Fial Computer Inc." },
- { 4823, "Shanghai HuaLong Information Technology Development Center" },
- { 4824, "DSL Communications" },
- { 4825, "Golden Screens Interactive Technologies, Inc." },
- { 4826, "The European Clearing House" },
- { 4827, "Interoute Telecommunications Inc" },
- { 4828, "Intelidata Technologies Corp." },
- { 4829, "A to Z Pest Control" },
- { 4830, "Gloabl Media Corp." },
- { 4831, "BANCHILE" },
- { 4832, "Network Phenomena, LLC." },
- { 4833, "SDNI Inc." },
- { 4834, "Factum Electronics AB" },
- { 4835, "OPNET Technologies Co., Ltd." },
- { 4836, "LHS Telekom GmbH & Co. KG" },
- { 4837, "trrrippleRRRdesigns" },
- { 4838, "New Image Company" },
- { 4839, "2Wire, Inc." },
- { 4840, "Bedet Information Technologies" },
- { 4841, "iFace.com" },
- { 4842, "SecureAgent" },
- { 4843, "Amazon.com Inc." },
- { 4844, "NeoPoint, Inc." },
- { 4845, "Miralink Corp" },
- { 4846, "Lucent INS" },
- { 4847, "Vikram Kulkarni" },
- { 4848, "Interphiz Ltd" },
- { 4849, "Dipl. Phys. Peer Stritzinger Peer" },
- { 4850, "Eddie George Limited" },
- { 4851, "KRONE Telecell GmbH" },
- { 4852, "CMA Small Systems AB" },
- { 4853, "Syndeo Corporation" },
- { 4854, "Mk1 Design" },
- { 4855, "AddPac Technology Co., Ltd." },
- { 4856, "Veraluz International Corporation" },
- { 4857, "Cisco's Etc." },
- { 4858, "Fortech" },
- { 4859, "GEMS" },
- { 4860, "boo.com Group LTD" },
- { 4861, "PowerCom Technologies Inc Katta Veeraiah" },
- { 4862, "Redwood Marketing" },
- { 4863, "Parion" },
- { 4864, "JOH-DATA A/S" },
- { 4865, "ERG Group" },
- { 4866, "Moseley Associate Inc." },
- { 4867, "Viet Marketing" },
- { 4868, "Nextra (Schweiz) AG" },
- { 4869, "SIT Europe" },
- { 4870, "Fritz Egger GmbH & Co" },
- { 4871, "DiscoveryCom" },
- { 4872, "Bouygues Telecom" },
- { 4873, "Seay Systems, Inc." },
- { 4874, "Juniper Networks/Unisphere" },
- { 4875, "DoubleClick Inc." },
- { 4876, "Eyestreet Software" },
- { 4877, "Salon Press" },
- { 4878, "Village Networks, Inc." },
- { 4879, "SecureMethods, Inc." },
- { 4880, "Standard & Poors Compustat" },
- { 4881, "Ruijie Networks Co., Ltd. (formerly 'Start Network Technology Co., Ltd.')" },
- { 4882, "Root, Inc." },
- { 4883, "Saatch & Saatchi" },
- { 4884, "Protek Ltd" },
- { 4885, "Photon Technology Co., Ltd." },
- { 4886, "Westwave Communications" },
- { 4887, "IQ Wireless GmbH" },
- { 4888, "Multidata GmbH" },
- { 4889, "Inflow" },
- { 4890, "Skinners Computer Center" },
- { 4891, "Network Address Solutions" },
- { 4892, "The Chinese University of Hong Kong" },
- { 4893, "ATSHAW Technologies" },
- { 4894, "Kleinwort Benson Ltd." },
- { 4895, "Woodwind Communications Systems Inc." },
- { 4896, "TeleSoft International, Inc." },
- { 4897, "DoBusinessOnline Services" },
- { 4898, "Time Inc." },
- { 4899, "Walker Systems Corporation" },
- { 4900, "Conexant Systems" },
- { 4901, "USAA" },
- { 4902, "Beijing Huaguang Electronics Co., Ltd." },
- { 4903, "GCC Technologies Inc." },
- { 4904, "SDF" },
- { 4905, "WebDialogs, Inc" },
- { 4906, "Edgix Corporation" },
- { 4907, "AppWorx Corporation" },
- { 4908, "ATS, Advanced Technology Solutions S.A." },
- { 4909, "Experts Exchange" },
- { 4910, "Ubizen" },
- { 4911, "pcOrder.com, Inc." },
- { 4912, "HolisticMeta, LLC (formerly 'One World Information System')" },
- { 4913, sminmpec_unknown }, /* (Added by Wireshark) */
- { 4914, "hole-in-the.net" },
- { 4915, "Sipher Internet Technology Ltd.+44 1494 765335" },
- { 4916, "Blacksound SA" },
- { 4917, "Sociedad Estatal de Loterias y Apuestas de Estado" },
- { 4918, "Taurusent Technologies" },
- { 4919, "Luminate Software Corporation" },
- { 4920, "Boston Globe" },
- { 4921, "Network Solutions" },
- { 4922, "Telcordia Technologies, Inc." },
- { 4923, "AudioCodes" },
- { 4924, "SAN Valley Systems, Inc." },
- { 4925, "Zuma Networks" },
- { 4926, "TouchTunes Digital Jukebox" },
- { 4927, "time4you GmbH" },
- { 4928, "Xrosstech, Inc." },
- { 4929, "LAN Crypto" },
- { 4930, "Concord Technologies" },
- { 4931, "Standard & Poor's Corp." },
- { 4932, "Foglight Software" },
- { 4933, "Shunra Software Ltd." },
- { 4934, "WebDialogs, Inc" },
- { 4935, "Mediatrix Telecom Inc." },
- { 4936, "First American Financial Corporation John" },
- { 4937, "Stormbreaker Network Services" },
- { 4938, "Daeyoung Electronic Ind.CO., Ltd." },
- { 4939, "Procter & Gamble" },
- { 4940, "Convergent Communications Services, Inc." },
- { 4941, "Echelon Corporation" },
- { 4942, "Liberty Press & Letter Service Joseph De Silvis" },
- { 4943, "Novell GmbH" },
- { 4944, "Future Networks, Inc." },
- { 4945, "Logicon, Inc." },
- { 4946, "Psychedelic Illuminations Magazine" },
- { 4947, "Grass Valley USA, LLC" },
- { 4948, "MIGROS" },
- { 4949, "Fortress Technologies" },
- { 4950, "Luxor Software Inc." },
- { 4951, "State Farm Insurance" },
- { 4952, "Thinking Objects GmbH" },
- { 4953, "Tecnet Teleinformatica Ltda." },
- { 4954, "Wrox Press Itd" },
- { 4955, "Asgard Technologies, Inc" },
- { 4956, "GRAPHICS FIVE" },
- { 4957, "CNet Computer Systeme Netzwerk GmbH" },
- { 4958, "TerraLink Technologies, LLC" },
- { 4959, "U Force, Inc." },
- { 4960, "Chromisys" },
- { 4961, "Ardent Technologies" },
- { 4962, "Artel Video Systems, Inc." },
- { 4963, "@manage" },
- { 4964, "W.B. Love Enterprises Inc." },
- { 4965, "Greenwich Mean Time" },
- { 4966, "AACom" },
- { 4967, "Starwood Hotels & Resorts" },
- { 4968, "Universtiy of North Texas (unofficial)" },
- { 4969, "Park Air Systems Ltd." },
- { 4970, "National Grid for Learning" },
- { 4971, "Anglers Club" },
- { 4972, "Los Alamos National LaboratoryGiri" },
- { 4973, "SetNet Corporation" },
- { 4974, "eATM" },
- { 4975, "INTERVU Inc." },
- { 4976, "AGENT++" },
- { 4977, "Tiesse S.p.A" },
- { 4978, "Direkcija RS za poslovno informacijsko sredisce" },
- { 4979, "Licer Solutions" },
- { 4980, "Oxymium" },
- { 4981, "RiverDelta Networks" },
- { 4982, "Persistence Software Inc." },
- { 4983, "InnoMediaLogic Inc." },
- { 4984, "Pinnacle Systems" },
- { 4985, "Vigilant Networks" },
- { 4986, "KB/Tel" },
- { 4987, "Simpler Networks Inc." },
- { 4988, "Ronningen Consulting" },
- { 4989, "Connect Austria GmbH" },
- { 4990, "TTI Telecom" },
- { 4991, "Stonebridge Technologies, Inc.S.E." },
- { 4992, "Thyssen Krupp Information Systems GmbHHaynes" },
- { 4993, "CTU Prague" },
- { 4994, "CUT-THROAT TRAVEL OUTLET" },
- { 4995, "Universtiy of California, Berkeley" },
- { 4996, "Forest Networks LLC" },
- { 4997, "Inetd.Com Consulting" },
- { 4998, "Cadant Inc." },
- { 4999, sminmpec_unknown }, /* (Added by Wireshark) */
- { 5000, "Personal Business" },
- { 5001, "LogicMedia" },
- { 5002, "RC Networks" },
- { 5003, "AudioCodes LTD" },
- { 5004, "Predictive Networks" },
- { 5005, "NCvision" },
- { 5006, "Vishwnet India" },
- { 5007, "Effective Computer Solutions, Inc." },
- { 5008, "drugstore.com" },
- { 5009, "Schiano" },
- { 5010, "Splash Technology, Inc." },
- { 5011, "Scaldis" },
- { 5012, "Lottomatica spa" },
- { 5013, "Maverick Internet Technology" },
- { 5014, "Viacast" },
- { 5015, "Verbind, Inc." },
- { 5016, "Oregon State University" },
- { 5017, "University of Akron" },
- { 5018, "Ameritrade Technology Group" },
- { 5019, "eBusiness Interactive" },
- { 5020, "sekwang eng. co." },
- { 5021, "Television Internacional S.A. de C.V." },
- { 5022, "Equipe Communications Corporation" },
- { 5023, "Bit by Bit Solutions, Inc." },
- { 5024, "3Domes, Inc." },
- { 5025, "OPUS 2 Revenue Technologies" },
- { 5026, "Aspiro AB" },
- { 5027, "Orebro Kommun" },
- { 5028, "Lightbridge" },
- { 5029, "Comma Soft AG" },
- { 5030, "University of Ulm" },
- { 5031, "Recovery" },
- { 5032, "Norscan Instruments Ltd" },
- { 5033, "eCharge Corporation" },
- { 5034, "LogicalSolutions.net" },
- { 5035, "Inter-National Research Institute" },
- { 5036, "Input Software" },
- { 5037, "Bri-link Technologies Inc." },
- { 5038, "T&S Software Associates Inc." },
- { 5039, "Xstreamis plc" },
- { 5040, "Wiesemann & Theis GmbH" },
- { 5041, "Menicx International Co. Ltd." },
- { 5042, "Broadwing Inc." },
- { 5043, "Micro Focus International Ltd" },
- { 5044, "Velocity Software Systems Ltd." },
- { 5045, "Bithop Systems, Inc." },
- { 5046, "CS SI" },
- { 5047, "Kimley-Horn and Associates" },
- { 5048, "Kudale Inc." },
- { 5049, "Equifax Inc." },
- { 5050, "Nordmark NorLan Consult" },
- { 5051, "Brix Networks" },
- { 5052, "Intermine Pty Ltd" },
- { 5053, "Agilent Technologies" },
- { 5054, "will" },
- { 5055, "Eolring" },
- { 5056, "Frank Lima" },
- { 5057, "Gifford Hesketh" },
- { 5058, "Avistar Systems" },
- { 5059, "Carmona Engineering Services" },
- { 5060, "Singapore Press Holdings Ltd" },
- { 5061, "Swisskey Ltd" },
- { 5062, "DFN Directory Services" },
- { 5063, "Telesta" },
- { 5064, "Deutsche Post AG" },
- { 5065, "PrivateExpress.com" },
- { 5066, "NetVision, Inc." },
- { 5067, "Open Society Fund - BH" },
- { 5068, "Jewsih Community of Bosnia and Herzegovina" },
- { 5069, "Call Connect" },
- { 5070, "Ganna Construction, Inc." },
- { 5071, "HIQ Networks" },
- { 5072, "Ditech Communications Corporation" },
- { 5073, "knOwhere, Inc." },
- { 5074, "Miva Corporation" },
- { 5075, "CNL CentralNet GmbH" },
- { 5076, "LongView International, Inc." },
- { 5077, "Clicknet Software" },
- { 5078, "Media Vision Computer Technologies" },
- { 5079, "Crosskeys Systems Corporation" },
- { 5080, "Power Systems" },
- { 5081, "Empowerment Group, Inc" },
- { 5082, "More Magic Software MMS Oy" },
- { 5083, "Daktronics" },
- { 5084, "SierraCom" },
- { 5085, "SmartMove" },
- { 5086, "ICS Advent" },
- { 5087, "Great Dragon Telecom(Group)" },
- { 5088, "Digital Burro, INC" },
- { 5089, "Clavister AB" },
- { 5090, "Carumba" },
- { 5091, "Norske Troll AS" },
- { 5092, "INFORMATIONSTECHNOLOGIE AUSTRIA GES. M.B.H." },
- { 5093, "SDF Enterprise" },
- { 5094, "The University of Tulsa" },
- { 5095, "Credit Suisse Group" },
- { 5096, "Computer Science and Engineering, CUHK" },
- { 5097, "Rock Marketing" },
- { 5098, "OPUSWAVE Networks, Inc." },
- { 5099, sminmpec_unknown }, /* (Added by Wireshark) */
- { 5100, "Tricast Multimedia" },
- { 5101, "Novalabs" },
- { 5102, "Integro A.C.S." },
- { 5103, "Foxcom Ltd." },
- { 5104, "SarangNet" },
- { 5105, "Datang Telecom Technology CO., LTD" },
- { 5106, "elephant project" },
- { 5107, "Pinkl Consulting Services" },
- { 5108, "Modius Inc." },
- { 5109, "CHINA GREAT DRAGON TELECOMMUNICATION(GROUP) CO., LTD" },
- { 5110, "Health Business Systems, Inc." },
- { 5111, "Medea Corporation" },
- { 5112, "Corvia Networks, Inc." },
- { 5113, "gridware" },
- { 5114, "Future fibre Technologies" },
- { 5115, "PowerCom Technology Co., Ltd." },
- { 5116, "IBM, NUMA-Q Division" },
- { 5117, "Kaelin Colclasure" },
- { 5118, "Dantel,Inc." },
- { 5119, "SYCOR AG" },
- { 5120, "EMF Home Inspection Inc." },
- { 5121, "League Scoring" },
- { 5122, "Everest eCommerce, Inc." },
- { 5123, "Lucent Tech. Taiwan Telco." },
- { 5124, "Phonetic Systems Ltd." },
- { 5125, "Celestica Power" },
- { 5126, "Symtrex Inc." },
- { 5127, "Western Digital Corporation" },
- { 5128, "Saitama University Far Laboratory" },
- { 5129, "Macquarie University" },
- { 5130, "Omron Canada Inc." },
- { 5131, "lotz.de" },
- { 5132, "Mammut Net" },
- { 5133, "Halfdome Systems, Inc." },
- { 5134, "IP Unity" },
- { 5135, "CyberSafe Corporation" },
- { 5136, "Gruner + Jahr AG & Co KG (formerly 'Electronic Media Service')" },
- { 5137, "DFC, Inc." },
- { 5138, "Easynet Group Plc" },
- { 5139, "ARESCOM, Inc." },
- { 5140, "Compudisk Systems Ltd." },
- { 5141, "Hart Edwards Corporation, Inc." },
- { 5142, "IVANS" },
- { 5143, "Cereva Networks Inc." },
- { 5144, sminmpec_unknown }, /* (Added by Wireshark) */
- { 5145, "ICT electronics SA" },
- { 5146, "Eclipsys Corporation" },
- { 5147, "MICEX" },
- { 5148, "cTc Computer Technik Czakay GmbH" },
- { 5149, "Managed Object Solutions, Inc." },
- { 5150, "Opsware" },
- { 5151, "NetGain, LLC" },
- { 5152, "Cable AML, Inc." },
- { 5153, "The University of Akron" },
- { 5154, "Incyte Genomics" },
- { 5155, "CS & S GH computer System Tech. Co., Ltd." },
- { 5156, "newproductshowroom.com" },
- { 5157, "The University of Queensland" },
- { 5158, "CompuTECH Services" },
- { 5159, "Ultra d.o.o." },
- { 5160, "DAIN Telecom Co., Ltd" },
- { 5161, "Morehead State University" },
- { 5162, "Societe Europeenne des Satellites" },
- { 5163, "Digital Marketplace, Inc." },
- { 5164, "Cygnet Technologies, Inc." },
- { 5165, "Sassafras Software Inc." },
- { 5166, "Mercom Systems, Inc." },
- { 5167, "Orchestream Ltd." },
- { 5168, "Levitte Programming" },
- { 5169, "NET CONSULTING S.R.L." },
- { 5170, "Aegis Data Systems, Inc." },
- { 5171, "WhizBang! Labs" },
- { 5172, "Protocom Development Systems" },
- { 5173, "Taqua Systems Inc." },
- { 5174, "PrivateExpress .com" },
- { 5175, "Lindsay Electronics" },
- { 5176, "2Win Information Systems, Inc." },
- { 5177, "Private Express Technologies Pte, Ltd." },
- { 5178, "Telephony Experts, Inc." },
- { 5179, "Arima Computer Corp." },
- { 5180, "The DocSpace Company Inc." },
- { 5181, "Firat Universites" },
- { 5182, "I Theta Corp." },
- { 5183, sminmpec_unknown }, /* (Added by Wireshark) */
- { 5184, "C&N Touristic AG" },
- { 5185, "Sungmi Telecom Electronics Co., Ltd." },
- { 5186, sminmpec_unknown }, /* (Added by Wireshark) */
- { 5187, "Bytware, Inc." },
- { 5188, "BITHOP SYSTEMS, Inc." },
- { 5189, "TELEFONICA I+D" },
- { 5190, "Organic" },
- { 5191, "DEKRA AG" },
- { 5192, "Gotham Networks" },
- { 5193, "Chemical Abstracts Service" },
- { 5194, "Okanagan Spring Brewery" },
- { 5195, "AdRem Software" },
- { 5196, "E-Tech, Inc." },
- { 5197, "Startup .com" },
- { 5198, "\"Universita`\" degli Studi di Roma \"Tor Vergata\"" },
- { 5199, "Odetics ITS" },
- { 5200, "EnFlex Corp." },
- { 5201, sminmpec_unknown }, /* (Added by Wireshark) */
- { 5202, "Aalto University (formerly 'Helsinki University of Technology')" },
- { 5203, "The Naqvi Group" },
- { 5204, "ClickNet Software Corporation" },
- { 5205, "Ruby Tech Corp." },
- { 5206, "Voltaire" },
- { 5207, "USA-NET CORPORATIONS" },
- { 5208, "UPMACS Communications Inc." },
- { 5209, "Profound Rational Organization(PRO), Internatioal" },
- { 5210, "Linkline/Freegates" },
- { 5211, "NCvision Ltd." },
- { 5212, "Placeware, Inc." },
- { 5213, "Greylink, Inc." },
- { 5214, "Athens Chamber" },
- { 5215, "United Connections" },
- { 5216, "Senior Informatica Ltda." },
- { 5217, "SOFHA GmbH" },
- { 5218, "Networks Experts, Inc." },
- { 5219, "BeVocal Inc." },
- { 5220, "World Telecom Labs" },
- { 5221, "Wireless Systems International" },
- { 5222, "Dantel Inc." },
- { 5223, "Korea Electronics Technology Institute" },
- { 5224, "Hitachi Data Systems (Europe) Ltd." },
- { 5225, "Universidad de Cantabria- ATC" },
- { 5226, "Harmonix Limited" },
- { 5227, "MELCO Inc." },
- { 5228, "Littlefeet Inc." },
- { 5229, "Big Fish Communications" },
- { 5230, "ComRoesGroup" },
- { 5231, "Oswego State University" },
- { 5232, "Counterpane Internet Security" },
- { 5233, "Mercury Interactive Corp." },
- { 5234, "Shenzhen SED Info. Tech. Corp." },
- { 5235, "Persistent Systems Private Limited" },
- { 5236, "Great Dragon Telecom(Group)" },
- { 5237, "Trustis Limited" },
- { 5238, "SOcieta GEnerale di Informatica (SOGEI SPA)" },
- { 5239, "FESTE" },
- { 5240, "RAND" },
- { 5241, "TECHMATH AG" },
- { 5242, "Envilogg AB" },
- { 5243, "ICIS, School of EEE,Nayang Technological University" },
- { 5244, "Casey's Baja Tours" },
- { 5245, "Quarterstone Communications Inc.(QCI)" },
- { 5246, "SS8 Networks Inc." },
- { 5247, "Zinnia Design" },
- { 5248, "Michael Brehm" },
- { 5249, "Warner-Lambert" },
- { 5250, "Center7" },
- { 5251, "Donald E. Bynum" },
- { 5252, "CIS Technology" },
- { 5253, "Aldebaran" },
- { 5254, "Datang Telecom Technology CO., LTD" },
- { 5255, "EuroPKI" },
- { 5256, "Freeonline .com. au Pty Ltd" },
- { 5257, "AXUS Microsystems Inc." },
- { 5258, "Zeta Technologies Co. Ltd" },
- { 5259, "MATRA SYSTEMES & INFORMATION" },
- { 5260, "Digital Engineering" },
- { 5261, "LUTHER DANIEL" },
- { 5262, "QWIKWIRE. NET" },
- { 5263, "CAIS INTERNET" },
- { 5264, "Varian Medical Systems" },
- { 5265, "TeleDanmark Erhverv, CTIUdvikling" },
- { 5266, "Johannes Gutenberg-Universitaet Mainz" },
- { 5267, "Hong Kong University of Science and Technology" },
- { 5268, "IKEA IT CENTER AB" },
- { 5269, "The Fantastic Corporation" },
- { 5270, "da6d Technologies" },
- { 5271, "Comverse Network Systems" },
- { 5272, "w-Trade Technologies" },
- { 5273, "Unistra Technologies" },
- { 5274, "UNIF/X" },
- { 5275, "Malibu Networks" },
- { 5276, "Hearme.com" },
- { 5277, "SarangNET" },
- { 5278, "Swisscom. AG" },
- { 5279, "2Support Directory Solutions" },
- { 5280, "Citi" },
- { 5281, "Graeffet Communications" },
- { 5282, "Connected Systems" },
- { 5283, "CheckFree Corporation" },
- { 5284, "Filanet Corporation" },
- { 5285, "Network Experts, Inc." },
- { 5286, "CALENCE, Inc." },
- { 5287, "Persistent Systems Private Limited" },
- { 5288, "A-Plus Networks, Inc." },
- { 5289, "VidyaWeb. com, Inc." },
- { 5290, "Guide" },
- { 5291, "Bloemenveiling Aalsmeer" },
- { 5292, "Pirus Networks" },
- { 5293, "HYOSUNG CORPORATION" },
- { 5294, "Infinity Trade Inc" },
- { 5295, "\"DigitalThink Inc.\"" },
- { 5296, "IPCell Technologies, Inc." },
- { 5297, "Baxworks, Inc." },
- { 5298, "xputer.com" },
- { 5299, "WorldCast Systems (formerly 'AUDEMAT\")" },
- { 5300, "Jetstream Communications" },
- { 5301, "PentaSafe, Inc." },
- { 5302, "Advanced Health Technologies" },
- { 5303, "IPmobile Inc." },
- { 5304, "Airslide Systems Inc." },
- { 5305, "IIT KANPUR" },
- { 5306, "XESystems, Inc." },
- { 5307, "Ciprico, Inc." },
- { 5308, "SiemensS.A.(Portugal)" },
- { 5309, "EdelWeb SA" },
- { 5310, "Depository Trust & Clearing Corporation" },
- { 5311, "F&F Inc." },
- { 5312, "DIGICERT SDN" },
- { 5313, "Revlis, Inc." },
- { 5314, "Baunwall A/S" },
- { 5315, "CCIT(Beijing Creative Century Information Technology)Co. Ltd." },
- { 5316, "Guide Unusual" },
- { 5317, "Adaptive Computer Development Corp." },
- { 5318, "Robert Bosch GmbH" },
- { 5319, "EarthWatch Inc." },
- { 5320, "Surety Technologies Inc." },
- { 5321, "Burrito.org" },
- { 5322, "PADL Software Pty Ltd" },
- { 5323, "Telrad" },
- { 5324, "Delta Networks Inc." },
- { 5325, "Cmgi" },
- { 5326, "LightChip, Inc." },
- { 5327, "KIM Computing" },
- { 5328, "North Communications Inc." },
- { 5329, "ShoreTel, Inc (formerly 'Shoreline Teleworks')" },
- { 5330, "Spacelink Systems" },
- { 5331, "OI ELECTRIC CO., Ltd." },
- { 5332, "Information Freeway" },
- { 5333, "Celera Genomics" },
- { 5334, "START" },
- { 5335, "Multifunction Products Association" },
- { 5336, "BlueKite.com" },
- { 5337, "Ciprico, Inc." },
- { 5338, "ELDEC Corporation" },
- { 5339, "VisioWave" },
- { 5340, "CITI, S.A. de C.V." },
- { 5341, "PC Network Design" },
- { 5342, "Sensormatic" },
- { 5343, "Lone Wolf ComputingGeorge" },
- { 5344, "Originative Solutions Ltd." },
- { 5345, "SUNGMI TELECOM ELECTRONICS CO., Ltd." },
- { 5346, "SSM Health Care" },
- { 5347, "GE Harris Aviation Information Solutions, LLC" },
- { 5348, "TimeSpace Radio AB" },
- { 5349, "Inalp Networks Inc." },
- { 5350, "Infotron System Corp" },
- { 5351, "ATM S.A." },
- { 5352, "Maelstrom" },
- { 5353, "EVS Broadcast Equipment" },
- { 5354, "Simplement Ltd" },
- { 5355, "Eland Technologies" },
- { 5356, "Object Oriented Pty Ltd." },
- { 5357, "Evans Computer Consulting" },
- { 5358, "enhanced Global Convergence Services (eGCS)" },
- { 5359, "InnoVentry" },
- { 5360, "Haedong" },
- { 5361, "Westbridge Design Ltd." },
- { 5362, "QASYS CORP" },
- { 5363, "R. Smith Engineering Co." },
- { 5364, "Certall Finland OY" },
- { 5365, "Neartek, Inc." },
- { 5366, "Charlotte's Web Networks Ltd." },
- { 5367, "Telena S.p.A." },
- { 5368, "CoreExpress" },
- { 5369, "APD Communications Limited" },
- { 5370, "BANCO ZARAGOZANO S.A." },
- { 5371, "NetSubject Canada, Inc." },
- { 5372, "myCFO, Inc." },
- { 5373, "Open Telecommunications Limited" },
- { 5374, "Dirigo Incorporated" },
- { 5375, "BAE SYSTEMS, Tactical Comms (Filton)" },
- { 5376, "Oleane" },
- { 5377, "TriNexus" },
- { 5378, "PrairieFyre Software Inc." },
- { 5379, "Colonial State Bank" },
- { 5380, "CDOT" },
- { 5381, "SuperNova" },
- { 5382, "IRIS Technologies, Inc." },
- { 5383, "iFleet Inc." },
- { 5384, "Tsuruki Promotions" },
- { 5385, "City-NET CZ, s.r.o." },
- { 5386, "M-S Technology Consultants" },
- { 5387, "HyperFeed" },
- { 5388, "Network Alchemy Ltd." },
- { 5389, "Inter-Tel" },
- { 5390, "OPNET Technologies Co., Ltd." },
- { 5391, "Tyco Submarine Systems Ltd." },
- { 5392, "\"Online Creations\", Inc." },
- { 5393, "Renault" },
- { 5394, "Gateway Inc." },
- { 5395, "Laurel Networks, Inc." },
- { 5396, "BigChalk.com" },
- { 5397, "Standard and Poor's Fund Services" },
- { 5398, "ElephantX" },
- { 5399, "Extremis" },
- { 5400, "Evercom systems International Inc." },
- { 5401, "Master Soft" },
- { 5402, "IDF" },
- { 5403, "Vircom" },
- { 5404, "eConvergence Pty Ltd." },
- { 5405, "Start Printer equipment co. Ltd." },
- { 5406, "Nick Conte, Inc." },
- { 5407, "NetSupport GmbH" },
- { 5408, "Intellitel Communications" },
- { 5409, "East West Consulting K.K." },
- { 5410, "Les Howard" },
- { 5411, "SignalSoft Corporation" },
- { 5412, "Zantaz.com, Inc." },
- { 5413, "PeopleWeb CommunicationsInc." },
- { 5414, "John & Associate" },
- { 5415, "Fujitsu Asia Pte Ltd" },
- { 5416, "Nesral" },
- { 5417, "ABSA Group Ltd." },
- { 5418, "Fortis, Inc." },
- { 5419, "Cambridge Broadband Ltd." },
- { 5420, "Spider Technologies" },
- { 5421, "Marietta Dodge Inc." },
- { 5422, "RHC Enterprises Inc." },
- { 5423, "McLeodUSA" },
- { 5424, "Columbia Diversified Services" },
- { 5425, "NetSpace Online Systems" },
- { 5426, "GadLine Ltd." },
- { 5427, "stroeder.com" },
- { 5428, "ENDFORCE, Inc." },
- { 5429, "Propack Data Soft- und Hardware Entwicklungs GmbH" },
- { 5430, "Masterguard GmbH" },
- { 5431, "LM Digital" },
- { 5432, "SightPath" },
- { 5433, "Netonomy" },
- { 5434, "Advanced Hi-Tech Corporation" },
- { 5435, "OvisLink Corp" },
- { 5436, "OPEN" },
- { 5437, "Pensar Corporation" },
- { 5438, "Utrecht School of Arts" },
- { 5439, "Parallel Ltd." },
- { 5440, "Primeon, Ltd." },
- { 5441, "The Timken Company" },
- { 5442, "New Zealand Post Limited" },
- { 5443, "Nekema.com" },
- { 5444, "Joe Minineri" },
- { 5445, "Metrostat Technologies, Inc." },
- { 5446, "Skygate Technology Ltd" },
- { 5447, "Aeolon Research" },
- { 5448, "Kykink Communications Corp" },
- { 5449, "OneNetPlus.com" },
- { 5450, "I-Link Inc." },
- { 5451, "SEGAINTERSETTLE AG" },
- { 5452, "Business Layers" },
- { 5453, "Intelis, Inc" },
- { 5454, "Trango Systems, Inc." },
- { 5455, "Artemis Management Systems" },
- { 5456, "FOCUS Online GmbH" },
- { 5457, "CastleNet Technology Inc." },
- { 5458, "Gupta" },
- { 5459, "SANtools, Inc" },
- { 5460, "BroadLink Communications, Inc." },
- { 5461, "KSI Inc" },
- { 5462, "Resume.Com" },
- { 5463, "Eduardo Fermin" },
- { 5464, "Manukau Institute of Technology" },
- { 5465, "eBusiness Technologies" },
- { 5466, "International Biometric Society, IBS" },
- { 5467, "TELEFONICA INVESTIGACION Y DESARROLLO" },
- { 5468, "Actelis Networks" },
- { 5469, "Codebase" },
- { 5470, "Transparity Limited" },
- { 5471, "Switzerland" },
- { 5472, "timeproof" },
- { 5473, "AlgaCom" },
- { 5474, "Ericsson Ahead Communications Systems GmbH" },
- { 5475, "Thysys Engineering" },
- { 5476, "Apex Inc." },
- { 5477, "Netattach, Inc" },
- { 5478, "Critical Path Berlin/LEM" },
- { 5479, "Pinnacle Data Systems Inc (PDSi)" },
- { 5480, "T. Sqware Incorporated" },
- { 5481, "Agencia de Certificion Electronica" },
- { 5482, "Murakami Electro-Communication Laboratories, Inc." },
- { 5483, "Netensity, Inc." },
- { 5484, "University of the Aegean" },
- { 5485, "The OPEN Group Ltd" },
- { 5486, "China Merchants Bank" },
- { 5487, "Multitrade Spa" },
- { 5488, "Temblast" },
- { 5489, "ALS International Ltd." },
- { 5490, "CommNav, Inc." },
- { 5491, "UPS Manufacturing" },
- { 5492, "Telephia" },
- { 5493, "Palm Computing" },
- { 5494, "Marathon Innovations, Inc." },
- { 5495, "Convergence Equipment Company" },
- { 5496, "GEMPLUS" },
- { 5497, "Trondent Development Corp." },
- { 5498, "Kardinia Software" },
- { 5499, "YhKim Co. Ltd." },
- { 5500, "Gemeentelijk Havenbedrijf Rotterdam" },
- { 5501, "NTT PC Communications, Inc." },
- { 5502, "Canon Aptex Inc." },
- { 5503, "Orinda Technology Group" },
- { 5504, "Zhone Technologies, Inc." },
- { 5505, "Metrostat Technologies, Inc." },
- { 5506, "Digital-X, Inc." },
- { 5507, "Tight Informatics" },
- { 5508, "SWOD Org." },
- { 5509, "B&E Construction Co. Dennis" },
- { 5510, "PrismTech" },
- { 5511, "syscall() Network Solutions GbR" },
- { 5512, "GMD FIRST" },
- { 5513, "iXL" },
- { 5514, "Timeline Technology Inc." },
- { 5515, "Directory Tools and Application Services, Inc." },
- { 5516, "SecureWorks, Inc." },
- { 5517, "Rapid5 Networks" },
- { 5518, "TDS Telecom" },
- { 5519, "LSITEC" },
- { 5520, "Alfred Wegener Institute for Polar and Marine Research" },
- { 5521, "St. John Health System" },
- { 5522, "Cybernet Corporation" },
- { 5523, "GRCP" },
- { 5524, "Emory University" },
- { 5525, "SSF" },
- { 5526, "Adero, Inc." },
- { 5527, "Context Systems Group" },
- { 5528, "NetBotz" },
- { 5529, "Neoforma.com" },
- { 5530, "Cescom Inc." },
- { 5531, "Mien Information Solutions" },
- { 5532, "Q-Telecell GmbH" },
- { 5533, "WideAwake Ltd" },
- { 5534, "Vogon AB" },
- { 5535, "3rd Generation Partnership Project 2 (3GPP2)" },
- { 5536, "Quintus Corporation" },
- { 5537, "Comdial Corporation" },
- { 5538, "Micron Tech. Information co. kr" },
- { 5539, "Cybertek Holdings" },
- { 5540, "RWTH Aachen University" },
- { 5541, "Paragea Communications, Inc" },
- { 5542, "eOn Communications Corporation" },
- { 5543, "INIEMP HOLDINGS CORPORATION S.L." },
- { 5544, "Thomson-CSF Systems Canada" },
- { 5545, "TANTAU Software Inc." },
- { 5546, "MailVision Inc." },
- { 5547, "BSQUARE Corporation" },
- { 5548, "Cobalt Networks" },
- { 5549, "TimesTen Performance Software" },
- { 5550, "Monggo, Inc." },
- { 5551, "Oscilloquartz, S.A." },
- { 5552, "Air Atlanta Icelandic" },
- { 5553, "Macromedia eBusiness Solutions" },
- { 5554, "SpotCast Communications" },
- { 5555, "Authentic8 pty Ltd" },
- { 5556, "Service Factory" },
- { 5557, "OneMain.com" },
- { 5558, "S-Link Corporation" },
- { 5559, "Vitria Technology, Inc." },
- { 5560, "The Color Registry" },
- { 5561, "2nd Wave, Inc." },
- { 5562, "Redknee Inc." },
- { 5563, "Ola Internet" },
- { 5564, "Omega Enterprise" },
- { 5565, "Syswave Co., Ltd" },
- { 5566, "VisionGlobal Network Corporation" },
- { 5567, "Riverstone Networks" },
- { 5568, "Southview Technologies, Inc." },
- { 5569, "Soluzioni Tecnologiche Bancarie s.r.l." },
- { 5570, "Sony Pictures Entertainment" },
- { 5571, "GetThere.Com" },
- { 5572, "HoTek TechnologyCo., Ltd." },
- { 5573, "Tong" },
- { 5574, "BankEngine Inc." },
- { 5575, "CertEngine Inc." },
- { 5576, "T.I.L.L. Photonics GmbHAnselm Kruis" },
- { 5577, "Persimmon Development" },
- { 5578, "New Mexico State University" },
- { 5579, "Mercata, Inc." },
- { 5580, "EXEJone" },
- { 5581, "Communications Networks of Africa (GH) Ltd (NETAFRICA)" },
- { 5582, "iTRUST Solutions AG" },
- { 5583, "MD Information Systems" },
- { 5584, "General Bandwidth" },
- { 5585, "Very Clever Software Ltd." },
- { 5586, "IPWireless Inc." },
- { 5587, "Flughafen Muenchen GmbH" },
- { 5588, "Thomcast Communication, Inc.Comwave Division (\"Comwave\")" },
- { 5589, "Synopsys, Inc." },
- { 5590, "Marimba Inc." },
- { 5591, "SCTE" },
- { 5592, "Wilson & Sanders, Inc." },
- { 5593, "Magnum Technologies Inc." },
- { 5594, "Koankeiso Co., Ltd." },
- { 5595, "Ingrian Systems, Inc" },
- { 5596, "Tandberg ASA" },
- { 5597, "Meinberg Funkuhren" },
- { 5598, "Submarine Warfare Systems Centre" },
- { 5599, "Comp Sci & Eng, 'De Montfort University'" },
- { 5600, "Clearstream Services" },
- { 5601, "Clearstream Banking" },
- { 5602, "T/R Systems, Inc." },
- { 5603, "Capital One Financial Services" },
- { 5604, "digit-safe" },
- { 5605, "William Data Systems Ltd." },
- { 5606, "Cerplus SAPierre" },
- { 5607, "Erwann ABALEA" },
- { 5608, "Red Planet Technologies" },
- { 5609, "Smartleaf, Inc." },
- { 5610, "Exbit TechnologyA/S" },
- { 5611, "vmunix.org" },
- { 5612, "Korea Data Communications" },
- { 5613, "tdressler.net (formerly 'SQLcompetence')" },
- { 5614, "SonyBPE" },
- { 5615, "Inherit S AB" },
- { 5616, "TEKOPS" },
- { 5617, "Trio Communications 2000 Pty. Ltd" },
- { 5618, "WareNet Inc." },
- { 5619, "Amaranth Networks Inc." },
- { 5620, "CFX Communications" },
- { 5621, "Heriot-Watt University" },
- { 5622, "DreGIS GmbH" },
- { 5623, "KPMG" },
- { 5624, "Enterasys Networks" },
- { 5625, "A. Gell, CxA" },
- { 5626, "Internet Barter Inc.aka Bartertrust.com" },
- { 5627, "Hitachi Process Computer Engineering, Inc." },
- { 5628, "X.O. Soft, Ltd" },
- { 5629, "Continuus Software Corporation" },
- { 5630, "ExiO Communications Inc." },
- { 5631, "Alliance Systems, Inc." },
- { 5632, "TelePassport Hellas S.A." },
- { 5633, "BASF Computer Services GmbH" },
- { 5634, "Universiteit van Amsterdam" },
- { 5635, "Dale W. Liu" },
- { 5636, "Dignos EDV GmbH" },
- { 5637, "IDN Technology Inc." },
- { 5638, "PK Electronics" },
- { 5639, "Dept. Of Biology Western KY University" },
- { 5640, "Lama Law Firm" },
- { 5641, "Anthem Inc." },
- { 5642, "MicroCast, Inc." },
- { 5643, "University of Arizona" },
- { 5644, "PassEdge" },
- { 5645, "BowStreet Software" },
- { 5646, "Onyx Networks" },
- { 5647, "Emperative, Inc." },
- { 5648, "L-3 Communications (PrimeWave Communications)" },
- { 5649, "Webswap Inc." },
- { 5650, "Merck & Co., Inc." },
- { 5651, "Maipu Electric Industrial Co., Ltd" },
- { 5652, "Kraig Sigman" },
- { 5653, "CSP" },
- { 5654, "Ando Electric Corporation" },
- { 5655, "P-Cube Ltd." },
- { 5656, "Monmouth University" },
- { 5657, "Universidad de La Coruna" },
- { 5658, "ISL, Institute of Shipping Economics and Logistics" },
- { 5659, "CoProSys Inc." },
- { 5660, "XI'AN DATANG TELEPHONE Corp." },
- { 5661, "T-Mobile" },
- { 5662, "Nordic Global Inc." },
- { 5663, "TecnoLogica Informatica" },
- { 5664, "Monastery of the Glorious Ascension, Inc." },
- { 5665, "Vertical One, Inc." },
- { 5666, "Servevcast" },
- { 5667, "Teldata Computer Industries, Inc." },
- { 5668, "Mycroft Inc." },
- { 5669, "Digital Island" },
- { 5670, "Redwood Technologies Ltd." },
- { 5671, "Horus IT GmbH" },
- { 5672, "CIENA Corporation (formerly 'ONI Systems Corp.')" },
- { 5673, "eConvergent, Inc." },
- { 5674, "Texcel Technology Plc." },
- { 5675, "Genosys Technology Management Inc." },
- { 5676, "DataFlow/Alaska, Inc." },
- { 5677, "Clunix, Inc." },
- { 5678, "Stalker Software, Inc" },
- { 5679, "EWE & EVE's Gourds & Things" },
- { 5680, "Windsor Group" },
- { 5681, "fruittm" },
- { 5682, "Synergon Ltd." },
- { 5683, sminmpec_unknown }, /* (Added by Wireshark) */
- { 5684, "Metro Optix, Inc." },
- { 5685, "DataLink SNMP Solution" },
- { 5686, "A H Computer Company" },
- { 5687, "Icon Laboratories, Inc." },
- { 5688, "StrataSource, Inc." },
- { 5689, "Net & Sys Co., Ltd" },
- { 5690, "Agri-Com Holdings" },
- { 5691, "SilverPlatter Information" },
- { 5692, "Kilfoil Information Technologies, Inc." },
- { 5693, "Accordion Networks" },
- { 5694, "Integrated Digital Solutions Limited" },
- { 5695, "bbq.com" },
- { 5696, "Walter Graphtek GmbH" },
- { 5697, "HanseNetTelefongesellschaft mbH" },
- { 5698, "Digitrans" },
- { 5699, "Cornerstone Solutions Corporation" },
- { 5700, "University of the West Indies" },
- { 5701, "Maple Networks, Inc." },
- { 5702, "Touch Technology International" },
- { 5703, "NVIDIA Corporation" },
- { 5704, "CITGO Petroleum Corporation" },
- { 5705, "DTA" },
- { 5706, "LGS Group Inc." },
- { 5707, "Fiberspace Unlimited, LLC" },
- { 5708, "CTS Network Services" },
- { 5709, "EDS/CFSM" },
- { 5710, "Wellknit" },
- { 5711, "ECCS, Inc." },
- { 5712, "System Integrators, Incorporated" },
- { 5713, "Niksun Inc." },
- { 5714, "Insh_Allah" },
- { 5715, "Enigma Enterprises" },
- { 5716, "WebSpectrum Software Pvt. Ltd." },
- { 5717, "UUcom" },
- { 5718, "Cellit, Inc." },
- { 5719, "PNC Financial Services Group" },
- { 5720, "iMimic Networking, Inc." },
- { 5721, "IntellOps" },
- { 5722, "OPNET Technologies, Inc (formerly 'Altaworks Corporation')" },
- { 5723, "SAMAC Software GmbH" },
- { 5724, "Cicero Communications, Inc." },
- { 5725, "Xel Communications" },
- { 5726, "Lyondell Chemical Company" },
- { 5727, "Smart Card Applications Pty Limited" },
- { 5728, "K Ring Technologies" },
- { 5729, "SQLI" },
- { 5730, "Simpson Professional Services" },
- { 5731, "DJM Enterprises" },
- { 5732, "One, Inc - Plano" },
- { 5733, "Dept.3,ISCAS(Institute of Software, the Chinese Academyof Sciences" },
- { 5734, "FABRICA NACIONAL DE MONEDA Y TIMBRE - REAL CASA DE LA MONEDA" },
- { 5735, "EBSnet Inc." },
- { 5736, "Power Conversion Products, LLC" },
- { 5737, "E-Commerce Enterprises, LLC" },
- { 5738, "Vovida Networks" },
- { 5739, "Xpeed, Inc." },
- { 5740, "Birionic Pvt Ltd" },
- { 5741, "a2zcom" },
- { 5742, "S.S.C. 'HENGELO'" },
- { 5743, "GT Group Telecom Services Corp." },
- { 5744, "TARSEC Inc." },
- { 5745, "Ericsson Nikola Tesla d.d." },
- { 5746, "Lanex Sp. z o.o." },
- { 5747, "Bluetail AB" },
- { 5748, "Applied Expert Systems" },
- { 5749, "TGS-NOPEC Geophysical Company" },
- { 5750, "General Mills" },
- { 5751, "Illumination Enterprises, Inc." },
- { 5752, "HyperSoft, Inc." },
- { 5753, "University of Maribor" },
- { 5754, "Clearstream International" },
- { 5755, "ITS (UK) Ltd." },
- { 5756, "Supertel , JSC" },
- { 5757, "Trilithic" },
- { 5758, "Stins Coman" },
- { 5759, "bridges.com" },
- { 5760, "Bell Atlantic Mobile" },
- { 5761, "Hannetware Inc." },
- { 5762, "Interland" },
- { 5763, "DB POWER ELECTRONICS (P) Ltd." },
- { 5764, "Jazzey GmbH" },
- { 5765, "aXess-pro networks GmbH" },
- { 5766, "IBM Global Services" },
- { 5767, "Quark, Inc." },
- { 5768, "Polish-Japanese Institute of Information Technology" },
- { 5769, "HealthMagic, Inc." },
- { 5770, "Medepass.com, Inc." },
- { 5771, "Cisco Systems, Inc." },
- { 5772, "C-it" },
- { 5773, "Equiinet Ltd." },
- { 5774, "Beijing Telecable Network System Ltd." },
- { 5775, "Advanced Technology Solutions International" },
- { 5776, "Express Scripts, Inc." },
- { 5777, sminmpec_unknown }, /* (Added by Wireshark) */
- { 5778, "Universidad Autonoma de Madrid" },
- { 5779, "Data-GUYS Inc." },
- { 5780, "PDA Verticals Corp." },
- { 5781, "Jordan Network Engineering" },
- { 5782, "University of Wisconsin System" },
- { 5783, "BROADPAC Communications" },
- { 5784, "Cogita Ltd" },
- { 5785, "Intershop Communications AG" },
- { 5786, "Mc Coy Marine Consultants" },
- { 5787, "Adventist Health" },
- { 5788, "Softdev Corp." },
- { 5789, "MobileQ.com Inc." },
- { 5790, "Shawn Starr" },
- { 5791, "Compu-Mentor, Inc." },
- { 5792, "Dean Gakis" },
- { 5793, "The Edge Consultants" },
- { 5794, "OBR CTM" },
- { 5795, "BPT TELBANK SA" },
- { 5796, "STC Informatik" },
- { 5797, "Western Power Distribution" },
- { 5798, "VIACCESS S.A." },
- { 5799, "Nyherji" },
- { 5800, "Cruise Controls Pvt. Ltd.- FRESNEL" },
- { 5801, "Second Opinion Software" },
- { 5802, "Electroline Equipment Inc." },
- { 5803, "2AB, Inc." },
- { 5804, "Lantern Communications" },
- { 5805, "Televideo, Inc." },
- { 5806, "SK Telecom" },
- { 5807, "Flora van Kesteren Tuinadviezen" },
- { 5808, "INRANGE Technologies Corporation" },
- { 5809, "Nieden-Nsm" },
- { 5810, "Global Crossing" },
- { 5811, "The GoldParrot Corporation" },
- { 5812, "Coriolis Networks" },
- { 5813, "The OpenNMS Group, Inc." },
- { 5814, "General Communications Inc." },
- { 5815, "Optima Tele.com, Inc." },
- { 5816, "Lockstep Systems" },
- { 5817, "High Precision Record Company Limited" },
- { 5818, "Cherry Cyber Net" },
- { 5819, "X.Net Ltda" },
- { 5820, "Flyforms" },
- { 5821, "Orangesoft, Inc." },
- { 5822, "Reynolds and Reynolds Pty Ltd" },
- { 5823, "nRose" },
- { 5824, "Nikkai Electronic, Inc." },
- { 5825, "Native Networks" },
- { 5826, "MIND CTI Ltd." },
- { 5827, "HERMES SoftLab" },
- { 5828, "SpaceNet Communication AB" },
- { 5829, "AMCC Switching Corp." },
- { 5830, "XcelleNet" },
- { 5831, "Cleondris GmbH" },
- { 5832, "Horgan.net" },
- { 5833, "Tailyn Communication Company" },
- { 5834, "Identikey ltd" },
- { 5835, "Newtec Cy" },
- { 5836, "TOYO COMMUNICATION EQUIPMENT CO., LTD" },
- { 5837, "Nedcor Limited" },
- { 5838, "Cabletime Ltd" },
- { 5839, "Bioplasma Andaluza S.L." },
- { 5840, "Aravox Technologies, Inc." },
- { 5841, "Netfish Technologies" },
- { 5842, "Cisco Systems" },
- { 5843, "FiberLogic Communications" },
- { 5844, "LG Space Engineering Corp" },
- { 5845, "Cyberus Online Inc." },
- { 5846, "NetCentrex" },
- { 5847, "Knowledge Design" },
- { 5848, "Rissa Solutions Corp." },
- { 5849, "Signal-COM" },
- { 5850, "H.S. Leader Srl" },
- { 5851, "eWindowShop.com" },
- { 5852, "Oscar Jacobsson" },
- { 5853, "Bell Technology" },
- { 5854, "Bell Network Solutions" },
- { 5855, "John Deere (dba Deere & Company)" },
- { 5856, "Vianet Technologies, Inc." },
- { 5857, "VirtualWorkout" },
- { 5858, "Cyclone Commerce, Inc." },
- { 5859, "EFA Software Services Ltd." },
- { 5860, "TeleNet Inc." },
- { 5861, "Mitsubishi Heavy Industries, Ltd" },
- { 5862, "CEYCO Internet Applications" },
- { 5863, "D'ALASKA CO." },
- { 5864, "REITC, LLC" },
- { 5865, "Parallel Networks" },
- { 5866, "London School of Economics Computer Security Research Centre" },
- { 5867, "San Joaquin Delta Community College District" },
- { 5868, "CRONOS Research Centre Sdn Bhd" },
- { 5869, "Deutsche Post eBusiness" },
- { 5870, "BioFone Inc." },
- { 5871, "HyperXS" },
- { 5872, "TDC Systems" },
- { 5873, "Software Dynamics Inc." },
- { 5874, "Tellabs MNG" },
- { 5875, "China Advanced Info-Optical Network (CAINONET)" },
- { 5876, "A2B s.r.o." },
- { 5877, "Ruhr-Universitaet Bochum" },
- { 5878, "NICE GmbH" },
- { 5879, "Unassigned" },
- { 5880, "Opteway" },
- { 5881, "ARZ Allgemeiness Rechenzentrum GmbH" },
- { 5882, "Inopoly Inc." },
- { 5883, "Zaffire, Inc." },
- { 5884, "University of Utah" },
- { 5885, "McGough Enterprises L.L.C." },
- { 5886, "NuSpeed Internet Systems" },
- { 5887, "Falconnect, Inc." },
- { 5888, "Agiliti, Inc." },
- { 5889, "Universidad Iberoamericana GC" },
- { 5890, "Lantop Systems LTD" },
- { 5891, "Autotote Systems, Inc." },
- { 5892, "Legacy Computer Services Limited" },
- { 5893, "PinPoint Corporation" },
- { 5894, "Dreamchal Inc." },
- { 5895, "At Fut AS" },
- { 5896, "csseEvens St. Hilaire" },
- { 5897, "BP Amoco PLC" },
- { 5898, "RITLABS S.R.L." },
- { 5899, "Microm Electronics" },
- { 5900, "Schrader-Bridgeport International" },
- { 5901, "Nominum Inc." },
- { 5902, "Maharajah Infosys" },
- { 5903, "Pace Micro Technology plc" },
- { 5904, "Walgreens" },
- { 5905, "StorageNetworks" },
- { 5906, "Travsys BV" },
- { 5907, "Lokasoft" },
- { 5908, "Otelnet, Inc." },
- { 5909, "Skybitz Inc." },
- { 5910, "Availant" },
- { 5911, "cbrook" },
- { 5912, "Yuasa Corporation" },
- { 5913, "Oliver Fehr" },
- { 5914, "Balsa Software" },
- { 5915, "Trilogic Systems" },
- { 5916, "i-Nebula.com" },
- { 5917, "Gigalink" },
- { 5918, "BBL" },
- { 5919, "Departamento de Informatica da Fac. Ciencias da Univ. Lisboa" },
- { 5920, "Zurich Financial Services Group" },
- { 5921, "Sema Group AB" },
- { 5922, "Real Time Monitors, Inc." },
- { 5923, "Internet2" },
- { 5924, "Xevo Corp." },
- { 5925, "Interactive People Unplugged AB" },
- { 5926, "interlink" },
- { 5927, "NexComm Systems, Inc." },
- { 5928, "Zydacron, Inc." },
- { 5929, "Amer.com" },
- { 5930, "ImagicTV Inc." },
- { 5931, "PRESIDEO, Inc." },
- { 5932, "OpenSystems.com, Inc." },
- { 5933, "Software Services" },
- { 5934, "University of Louisiana at Lafayette" },
- { 5935, "ACADEMIA Sinica Computing Centre" },
- { 5936, "Ahhaaa AB" },
- { 5937, "HypoVereinsbank" },
- { 5938, "Macfarlane TeleSystems Ltd." },
- { 5939, "HALCOM Informatika, d.o.o." },
- { 5940, "Red Lion Controls (JBM Electronics Co., Inc.)" },
- { 5941, "Cosmocom Inc." },
- { 5942, "ThoughtShare Communications" },
- { 5943, "MatchCraft, Inc." },
- { 5944, "nROSE" },
- { 5945, "AtBusiness Communications Oyj" },
- { 5946, "MULTITEL Inc." },
- { 5947, "WebForce LLC" },
- { 5948, "3NO Systems" },
- { 5949, "IBM, AIX Tools Team" },
- { 5950, "Imagineering Inc." },
- { 5951, "Netscaler" },
- { 5952, "Breakaway Solutions, Inc." },
- { 5953, "EleTel Inc." },
- { 5954, "Aaron Telecommunication Technology" },
- { 5955, "ASCONA" },
- { 5956, "Travelport (formerly 'Worldspan')" },
- { 5957, "Essematica S.r.l." },
- { 5958, "KCell" },
- { 5959, "Eastern Communications Co. Ltd." },
- { 5960, "CEFRIEL" },
- { 5961, "Powec AS" },
- { 5962, "David Clunie" },
- { 5963, "RadioScape Ltd." },
- { 5964, "Fenestrae B.V." },
- { 5965, "Cenosis" },
- { 5966, "Hummingbird Ltd." },
- { 5967, "Jane Ellen Shatz, Ph. D." },
- { 5968, "VAMS" },
- { 5969, "Lightspeed Systems" },
- { 5970, "CSIRO" },
- { 5971, "LEAD Technologies, Inc." },
- { 5972, "AirNet Communications Corporation" },
- { 5973, "Rainbow Technologies, Inc." },
- { 5974, "Telecom Technologies, Inc." },
- { 5975, "Telchemy" },
- { 5976, "Red Hill Networks" },
- { 5977, "University of Texas at Dallas (UTD)" },
- { 5978, "California State University Northridge" },
- { 5979, "CSCare Inc." },
- { 5980, "CSSoftware Inc." },
- { 5981, "media transfer AG" },
- { 5982, "Infor" },
- { 5983, "Descartes Systems Group Inc." },
- { 5984, "Cedere Corporation" },
- { 5985, "BioCor, L.L.C." },
- { 5986, "Vpacket Communications, Inc." },
- { 5987, "Pacific Broadband Communications" },
- { 5988, "esutel" },
- { 5989, "Go.com" },
- { 5990, "INFORMZASCHITA" },
- { 5991, "Ntown Communications, Inc." },
- { 5992, "ePower Solutions, Inc." },
- { 5993, "Terabeam Networks" },
- { 5994, "Arcom Control Systems" },
- { 5995, "Everypath Inc." },
- { 5996, "Communication Weaver Co., Ltd." },
- { 5997, "TeamTronic p.s.c.r.l." },
- { 5998, "CITI-DIC IT CO., LTD" },
- { 5999, "SCITEL Industrieberatungs-GmbH" },
- { 6000, "CES Computer Solutions Inc." },
- { 6001, "Memorial Sloan-Kettering Cancer Center" },
- { 6002, "Impresse Corporation" },
- { 6003, "Jasmine Networks, Inc." },
- { 6004, "SYSMATE Co., Ltd." },
- { 6005, "City of Sydney" },
- { 6006, "The Schleutker Sites" },
- { 6007, "Redux Communications Ltd." },
- { 6008, "Lynxus, Inc." },
- { 6009, "gcs Global Communication & Services GmbH" },
- { 6010, "SERVICECO" },
- { 6011, "Cinta Corporation" },
- { 6012, "PiNGPoNG.CoM" },
- { 6013, "Tieturi" },
- { 6014, "National Library of Medicine" },
- { 6015, "Chicago Board Options Exchange" },
- { 6016, "Technauts" },
- { 6017, "G2X Software" },
- { 6018, "Excel Medical Electronics Inc." },
- { 6019, "Simplified Telesys, Inc." },
- { 6020, "Lutris Technologies" },
- { 6021, "Arcadian Wireless" },
- { 6022, "DFKI GmbH" },
- { 6023, "Steele Raymond Solicitors" },
- { 6024, "Scannex Electronics Ltd." },
- { 6025, "Advanced Network Solutions S.p.A." },
- { 6026, "U.S. Army STRICOM" },
- { 6027, "Force10 Networks, Inc." },
- { 6028, "ODSI Coalition" },
- { 6029, "Exactis.com" },
- { 6030, "Fluke Electronics" },
- { 6031, "Computer Problem Solving" },
- { 6032, "Stainless Steel Networks" },
- { 6033, "e-talk Corporation" },
- { 6034, "BroadJump" },
- { 6035, "Sensis Corporation" },
- { 6036, "Bose Corporation" },
- { 6037, "Edge Networks Corp." },
- { 6038, "Netwhistle.com" },
- { 6039, "Resscom Computers and Communications" },
- { 6040, "University of Kalmar" },
- { 6041, "Kokua Communications" },
- { 6042, "Southeastern Aluminum Products, Inc." },
- { 6043, "AstroTerra Corporation" },
- { 6044, "Poyntz, Inc." },
- { 6045, "Synaptique Information & Technologie" },
- { 6046, "Near2 Communications, Inc." },
- { 6047, "Florida Teaching Profession - NEA" },
- { 6048, "Exyst" },
- { 6049, "Hitachi Information Systems, Ltd." },
- { 6050, "GAMATRONIC ELECTRONIC INDUSTRIES LTD" },
- { 6051, "Ameritrade" },
- { 6052, "Novasonics" },
- { 6053, "Eredyne Corporation" },
- { 6054, "Access360" },
- { 6055, "Lees Communication" },
- { 6056, "Rensselaer Polytechnic Institute" },
- { 6057, "AppNet" },
- { 6058, "Havas Interactive" },
- { 6059, "AdNovum Informatik AG" },
- { 6060, "ISP Systems Pty. Ltd." },
- { 6061, "Netuitive, Inc." },
- { 6062, "TEKELEC TEMEX" },
- { 6063, "Axent Technologies, Inc.(Utah)" },
- { 6064, "JK microsystems" },
- { 6065, "ZUniversity.com" },
- { 6066, "Occam Networks, Inc." },
- { 6067, "Adapcom, Inc." },
- { 6068, "kc. marching" },
- { 6069, "BlocWare, Inc." },
- { 6070, "AVIV INFOCOM CO.," },
- { 6071, "SIGMA Informatique" },
- { 6072, "Plan Software GmbH" },
- { 6073, "Business Global Systems" },
- { 6074, "Cenosis, Inc." },
- { 6075, "Siemens AG" },
- { 6076, "TrelliSoft, Inc." },
- { 6077, "Call-Net Technology Services Inc." },
- { 6078, "CyberIntelligent Technologies" },
- { 6079, "appoconnect.com" },
- { 6080, "BridgeWave Communications" },
- { 6081, "Nexsi" },
- { 6082, "AReS" },
- { 6083, "AATR" },
- { 6084, "PRISMedia Networks, Inc." },
- { 6085, "Hypergene AB" },
- { 6086, "New York Life Insurance Co." },
- { 6087, "Mentat Inc." },
- { 6088, "opNIX, Inc." },
- { 6089, "LastMile" },
- { 6090, "DespatchBox" },
- { 6091, "epki" },
- { 6092, "Agillion Corporation" },
- { 6093, "TESSAG AG" },
- { 6094, "Wapcom" },
- { 6095, "KHALED FAHMI" },
- { 6096, "Netsecure Software" },
- { 6097, "State of Michigan" },
- { 6098, "AvantGo" },
- { 6099, "INTELLIDEN, Incorporated" },
- { 6100, "Covalent Technologies, Inc." },
- { 6101, "Trend Micro Inc." },
- { 6102, "Integrated Research Ltd." },
- { 6103, "Al Rasheed" },
- { 6104, "Cosmobridge Co., Ltd." },
- { 6105, "Center Vlade za Informatiko" },
- { 6106, "Maharaja Infosys Limited" },
- { 6107, "IDN Telecom, Inc." },
- { 6108, "Insurance Auto Auctions" },
- { 6109, "ADIC" },
- { 6110, "Atrica" },
- { 6111, "Worldsport Networks Ltd." },
- { 6112, "XINETRON CO., LTD" },
- { 6113, "Datek Telecom S.A." },
- { 6114, "ProSyst Software AG" },
- { 6115, "Open Interactive Limited" },
- { 6116, "Medtegrity, Inc." },
- { 6117, "Fiber Network Engineering" },
- { 6118, "Quintiles" },
- { 6119, "IPWorks, Inc." },
- { 6120, "NXTV" },
- { 6121, "Excite@Home E-Business Services" },
- { 6122, "Mover S.p.A." },
- { 6123, "National Institute of Telecommunications" },
- { 6124, "Sane Solutions, LLC" },
- { 6125, "ACERFI-MICRONICSFrancois Regis K." },
- { 6126, "epicRealm" },
- { 6127, "LapLink.com" },
- { 6128, "Wireless Planet" },
- { 6129, "Bromax Communication Inc.," },
- { 6130, "CVI" },
- { 6131, "Starmedia Mobile" },
- { 6132, "LVL7 Systems, Inc." },
- { 6133, "Dead Fish Technologies" },
- { 6134, "Trioniq" },
- { 6135, "Chubu Telecommunications Co., Inc." },
- { 6136, "idealhost.com" },
- { 6137, "University of Canterbury" },
- { 6138, "Trasys" },
- { 6139, "Healthcare Specialists, Inc." },
- { 6140, "Enikia Incorporated" },
- { 6141, "World Wide Packets" },
- { 6142, "TF1" },
- { 6143, "Eventlogic" },
- { 6144, "SUNTECH Sp. zo.o" },
- { 6145, "Cendio Systems AB" },
- { 6146, "Whirlpool Corporation" },
- { 6147, "Alliegiance Telecom" },
- { 6148, "Cidera, Inc." },
- { 6149, "London School of Economics" },
- { 6150, "Open Networks Engineering Ltd." },
- { 6151, "Copyprint S.L." },
- { 6152, "Sendmail, Inc." },
- { 6153, "JOLT Ltd." },
- { 6154, "Soneris Engineering" },
- { 6155, "FIREBIT Ltd." },
- { 6156, "TTC TESLA TELEKOMUNIKACE, Ltd." },
- { 6157, "ICCRI BANCA FEDERALE EUROPEA SPA" },
- { 6158, "NAGUS" },
- { 6159, "University of Iowa" },
- { 6160, "Affinity Technology Group" },
- { 6161, "OnFiber Communications, Inc." },
- { 6162, "Solid Data Systems" },
- { 6163, "Inara Networks, Inc." },
- { 6164, "Kinva Network System Ltd." },
- { 6165, "Portwell Inc." },
- { 6166, "Interactive Enterprise" },
- { 6167, "SPHINX" },
- { 6168, "Banco do Brasil S/A" },
- { 6169, "Serendipity Simplex" },
- { 6170, "PartMiner, Inc." },
- { 6171, "Kidata AG" },
- { 6172, "Worldwide Entrepreneuric Enterprises, Inc." },
- { 6173, "Fisher & Paykel Industries Limited" },
- { 6174, "Fusionx" },
- { 6175, "Pines of Woodedge" },
- { 6176, "VIPCom" },
- { 6177, "Blitz Information Technologies Berhad" },
- { 6178, "NTT Advanced Technology Corporation" },
- { 6179, "R.M. EDIZIONI SRL" },
- { 6180, "CanDo.com" },
- { 6181, "Creative Logic Corporation" },
- { 6182, "Encore Electronics Inc." },
- { 6183, "Sharemedia" },
- { 6184, "Mitsui & Co., Ltd." },
- { 6185, "Ghent University" },
- { 6186, "Space CyberLink Inc." },
- { 6187, "Dartmouth-Hitchcock Medical Center" },
- { 6188, "University of Massachusetts Lowell" },
- { 6189, "Atos Information Technology GmbH - Trustcenter" },
- { 6190, "Network365 Ltd" },
- { 6191, "Plasmon, Inc." },
- { 6192, "Environmental Monitoring Solutions" },
- { 6193, "CPL Systems Ltd." },
- { 6194, "NetCalibrate Inc." },
- { 6195, "Advanced Communication Research" },
- { 6196, "Atlantec Enterprise Solutions GmbH" },
- { 6197, "Arcordia/JP Morgan Chase" },
- { 6198, "Eastern Nazarene College" },
- { 6199, "Nyherji hf" },
- { 6200, "DNPG" },
- { 6201, "Asenti, Inc." },
- { 6202, "Nimble, Inc." },
- { 6203, "Topspin Networks" },
- { 6204, "SIBS - Sociedade Interbancaria de Servicos, S.A." },
- { 6205, "LKC-Technology" },
- { 6206, "eCritical Inc." },
- { 6207, "The Polished Group SA" },
- { 6208, "Enterprise Internet Services Limited" },
- { 6209, "The Open University" },
- { 6210, "Mayah Communications GmbH" },
- { 6211, "Murex" },
- { 6212, "XM Satellite Radio, Inc." },
- { 6213, "Redline Networks, Inc." },
- { 6214, "SureFire Commerce Inc." },
- { 6215, "Streaming21, Inc." },
- { 6216, "Ci Technologies" },
- { 6217, "ngkindsoftltd" },
- { 6218, "SCAN COIN" },
- { 6219, "Iskra SYSEN d.d." },
- { 6220, "Cyber Internet Services" },
- { 6221, "BAE Systems, CNIR" },
- { 6222, "STSN, Inc." },
- { 6223, "CDS Technologies" },
- { 6224, "Roxy.com" },
- { 6225, "Broadcast Towers" },
- { 6226, "BARIELD'S INTERNET PROVIDER SERVICE" },
- { 6227, "Resolve Engineering Pty Ltd" },
- { 6228, "Engineering Center for Information Security,Chinese Acadamy of Sciences" },
- { 6229, "Tango/04 Computing Group" },
- { 6230, "SITE Skunkworks" },
- { 6231, "Fiduciary Automation" },
- { 6232, "Corinex Global Corp." },
- { 6233, "UUNET EMEA" },
- { 6234, "Paul Abrahams, Sc.D." },
- { 6235, "nawilson.com" },
- { 6236, "Crayfish Co.,Ltd." },
- { 6237, "NetAge Solutions GmbH Netzwerkl\0303\0266sungen" },
- { 6238, "Queen Mary, University of London" },
- { 6239, "TechnoTrend AG" },
- { 6240, "Bryttan, Ltd." },
- { 6241, "Calvin College" },
- { 6242, "Possm Technologies" },
- { 6243, "Weber Enterprise" },
- { 6244, "PDR/SAGN Publishing" },
- { 6245, "CiRCLEX Limited" },
- { 6246, "Mythological Solutions" },
- { 6247, "Comtech EFData Corporation" },
- { 6248, "Atecs Dematic" },
- { 6249, "HCL Technologies Ltd" },
- { 6250, "PepsiCo Business Solutions Group (PBSG)" },
- { 6251, "Atoga Systems, Inc." },
- { 6252, "SrvLoc.Org" },
- { 6253, "ipSEAL, Inc" },
- { 6254, "TimeVision Inc." },
- { 6255, "Commerce Onc, Inc." },
- { 6256, "Southwest Communications Institute" },
- { 6257, "Disappearing, Inc." },
- { 6258, "Iwatsu Electric Co., Ltd." },
- { 6259, "Sohonet Limited" },
- { 6260, sminmpec_unknown }, /* (Added by Wireshark) */
- { 6261, "MAKU Informationstechnik GmbH" },
- { 6262, "IMC Communications" },
- { 6263, "Avstar Systems, LLC" },
- { 6264, "OpenNetwork Technologies" },
- { 6265, "gocek.com" },
- { 6266, "Everest eCommerce Inc." },
- { 6267, "MUSHTAQ SONS" },
- { 6268, "Evistel" },
- { 6269, "DiGiMATiON" },
- { 6270, "iAsiaWorks" },
- { 6271, "N.S.C." },
- { 6272, "KPNQwest Finland" },
- { 6273, "Weir Consulting Ltd" },
- { 6274, "Drael Computer Corporation" },
- { 6275, "HOB GmbH & Co. KG - HOB Germany" },
- { 6276, "Mahindra British Telecom Limited" },
- { 6277, "Federaci\0303\0263n de Organizaciones Privadas de Desarrollo - FOPRIDEH" },
- { 6278, "Invision.com, Inc" },
- { 6279, "Visible Markets, Inc." },
- { 6280, "Coreon, Inc." },
- { 6281, "Jingle Cats Music" },
- { 6282, "SDC Communications Ltd" },
- { 6283, "City-Net Technology Inc." },
- { 6284, "Wireless Networks, Inc." },
- { 6285, "Crossport Systems" },
- { 6286, "One Tech Telecom Co.,Ltd." },
- { 6287, "Nextenso" },
- { 6288, "Euskaltel S.A." },
- { 6289, "Adapcom Inc." },
- { 6290, "LightSand Communications, Inc." },
- { 6291, "Bates College" },
- { 6292, "Leadership Technologies, Inc." },
- { 6293, "Kasenna, Inc." },
- { 6294, "Active Telco" },
- { 6295, "Wilhoyt Industries" },
- { 6296, "DASAN Co.,LTD." },
- { 6297, "Enel.it" },
- { 6298, "MP3.com" },
- { 6299, "SUNY Cortland" },
- { 6300, "Karl Miller" },
- { 6301, "Packet Dynamics Ltd" },
- { 6302, "Emerson Energy Systems" },
- { 6303, "Cityspace Ltd" },
- { 6304, "fogcity" },
- { 6305, "Flextronics International" },
- { 6306, "Dartware, LLC" },
- { 6307, "Ipanema Technologies" },
- { 6308, "cholul" },
- { 6309, "Dan Nielsen Consulting" },
- { 6310, "KaanBaan Technologies" },
- { 6311, "Gomez Advisors, Inc." },
- { 6312, "Pelican Security, Inc." },
- { 6313, "InnovaCom, Inc." },
- { 6314, "VillaMontage Systems" },
- { 6315, "Comiss\0303\0243o para Coordena\0303\0247\0303\0243o do Projeto SIVAM" },
- { 6316, "Bill Fenner" },
- { 6317, "Netfox" },
- { 6318, "lesswire AG" },
- { 6319, "Caldera Systems, Inc." },
- { 6320, "simonstl.com" },
- { 6321, "Calix Networks" },
- { 6322, "Entone Technologies Ltd." },
- { 6323, "NewCross Technologies, Inc" },
- { 6324, "CoolAlerts, Inc." },
- { 6325, "Harmonix Corporation" },
- { 6326, "LongBoard, Inc." },
- { 6327, "Drews TC" },
- { 6328, "WizWise Technology" },
- { 6329, "Internet Business Factory" },
- { 6330, "Microdot Computing Services" },
- { 6331, "Optimation New Zealand Limited" },
- { 6332, "Four Seasons Produce, Inc." },
- { 6333, "Accord Networks Ltd." },
- { 6334, "beTRUSTed" },
- { 6335, "Adroit Controls" },
- { 6336, "Digital Fountain" },
- { 6337, "Crytaliz, Inc." },
- { 6338, "Sportshuddle.Com" },
- { 6339, "Digital China (Shanghai) Networks Ltd." },
- { 6340, "Otto Kind" },
- { 6341, "Harvard University" },
- { 6342, "Hyperchip, Inc." },
- { 6343, "YMCA England" },
- { 6344, "Hunter Technology Inc." },
- { 6345, "Compuprint S.P.A" },
- { 6346, "DIMAT, S.A." },
- { 6347, "Sierra Monitor Corporation" },
- { 6348, "Liquid Digital Information Systems" },
- { 6349, "Treeblossom Technologies" },
- { 6350, "Blue Cross Blue Shield of Michigan" },
- { 6351, "Shawn Systems, Inc." },
- { 6352, "Ciena Corporation (formerly 'Catena Networks')" },
- { 6353, "Avisto SA" },
- { 6354, "Telways Communication Co.,Ltd." },
- { 6355, "Sipher Internet Tachnology" },
- { 6356, "Innovative Software AG" },
- { 6357, "B2 Systems, Inc." },
- { 6358, "Unimark, Inc." },
- { 6359, "Cyveillance Inc." },
- { 6360, "LiveVault Corporation" },
- { 6361, "Siemens Building Technologies Ltd" },
- { 6362, "Baumann Technologie" },
- { 6363, "CyberSolutions GmbH" },
- { 6364, "Andr\0303\0251a Informatique" },
- { 6365, "Novamedia Sistemas S.L." },
- { 6366, "KOREA LINK" },
- { 6367, "Linkabit - A Titan Systems Company" },
- { 6368, "Schmid Telecom AG" },
- { 6369, "Lexi-Comp, Inc." },
- { 6370, "First USA Bank" },
- { 6371, "Minerva Networks Inc" },
- { 6372, "Kresa Ranch" },
- { 6373, "4DL Inc." },
- { 6374, "CECI" },
- { 6375, "CHINA ENGINEERING CONSULTANTS,INC." },
- { 6376, "PDVSA" },
- { 6377, "OpenPages, Inc." },
- { 6378, "Lanit" },
- { 6379, "Servgate Technologies Canada Inc." },
- { 6380, "Isdnet" },
- { 6381, "burst.com" },
- { 6382, "SAGA Software, Incorporated" },
- { 6383, "OC" },
- { 6384, "V&S Multimedia S.A." },
- { 6385, "Pfizer" },
- { 6386, "Saturn Technologies" },
- { 6387, "Big Band Networks, Ltd" },
- { 6388, "TeleRelay" },
- { 6389, "COM DEV International" },
- { 6390, "DBCORP Information Systems Inc." },
- { 6391, "Xtremesoft Inc." },
- { 6392, "Chiaro Networks Ltd." },
- { 6393, "Haliplex Pty Ltd" },
- { 6394, "Skelton Consulting GmbH" },
- { 6395, "ProSaldo Software B.V." },
- { 6396, "Absolute Website Solutions" },
- { 6397, "Nayna Networks, Inc." },
- { 6398, "Lindner & Pelc Consult GmbH" },
- { 6399, "Intelligent Maintenance Systems Ltd (formerly 'Edrich Integration')" },
- { 6400, "Millenux GmbH" },
- { 6401, "JTI OF GEORGIA" },
- { 6402, "OPTEL Ges. f\0303\0274r Lasertechnik und Elektronik mbH" },
- { 6403, "Universidad Blas Pascal" },
- { 6404, "ECRESO (formerly 'Ecreso RFTS Broadcast')" },
- { 6405, "Activ Australia" },
- { 6406, "Neomar" },
- { 6407, "bit-Services GmbH" },
- { 6408, "Mikom GmbH" },
- { 6409, "Mondial Assistance Limited" },
- { 6410, "Zoneworx, Inc." },
- { 6411, "Overland Storage, Inc. (formerly 'Quantum Corp - Snap Division')" },
- { 6412, "HiddenMind Technology" },
- { 6413, "I.S. Associates, Inc." },
- { 6414, "Embry-Riddle University" },
- { 6415, "Caspian Networks, Inc." },
- { 6416, "SolutionZ Pty Ltd (Australia)" },
- { 6417, "Victorian Automobile Chamber of Commerce" },
- { 6418, "The Templar Corporation" },
- { 6419, "Pro-bel Ltd" },
- { 6420, "IN-MX" },
- { 6421, "H M Customs & Excise" },
- { 6422, "BT" },
- { 6423, "ObjectSpace, Inc." },
- { 6424, "Viawest Internet Services" },
- { 6425, "Branch Systems" },
- { 6426, "e-Appliance Corporation" },
- { 6427, "Locus Dialogue" },
- { 6428, "T-Online International AG" },
- { 6429, "ALTO" },
- { 6430, "Ericsson Consulting GmbH" },
- { 6431, "BroadSoft, Inc." },
- { 6432, "Orblynx, Inc." },
- { 6433, "Excel.Net, Inc." },
- { 6434, "WebMD" },
- { 6435, "Holistix, Inc." },
- { 6436, "Wapme Systems AG" },
- { 6437, "Kathrein Werke K.G." },
- { 6438, "MKNET ADVIES" },
- { 6439, "NexTReT s.l." },
- { 6440, "TradeCast, Ltd." },
- { 6441, "i2 Technologies, Inc." },
- { 6442, "TWCT dba Daughters and Dad" },
- { 6443, "Out of our minds." },
- { 6444, "Gearhead Group" },
- { 6445, "Sportsplanet2000" },
- { 6446, "Gaton Technologies LTD" },
- { 6447, "Synaxia Networks" },
- { 6448, "DigiVision Tech." },
- { 6449, "Comodo CA Ltd" },
- { 6450, "Idsec Limited" },
- { 6451, "Mystical Creations" },
- { 6452, "Advanced Network Solutions, Inc" },
- { 6453, "CORE COMMUNICATIONS CO., Ltd." },
- { 6454, "Postel Services" },
- { 6455, "Technology Thesaurus Corp." },
- { 6456, "NETdefence Co. Limited" },
- { 6457, "Eureka Soft" },
- { 6458, "GPr Sistemas Ltda" },
- { 6459, "Linfield College" },
- { 6460, "uclick" },
- { 6461, "Center for Internet Research" },
- { 6462, "freiheit.com" },
- { 6463, "VocalData, Inc" },
- { 6464, "Stevens Institute of Technology OIT" },
- { 6465, "Cacheon, Inc." },
- { 6466, "The Devil You Say" },
- { 6467, "Land Of Linking" },
- { 6468, "Patent Off" },
- { 6469, "Karma Kahn" },
- { 6470, "We're no dummies" },
- { 6471, "Con Temporaries" },
- { 6472, "Antiballistic" },
- { 6473, "Halls Of Ivy" },
- { 6474, "Wiffenpoof" },
- { 6475, "Home Is The Hunter" },
- { 6476, "The Craft of Elves" },
- { 6477, "I Was Misinformed" },
- { 6478, "Shot To Shingles" },
- { 6479, "Right-hand Twist" },
- { 6480, "Solomon Tech. Corp." },
- { 6481, "MAGISTRAL, Ltd." },
- { 6482, "ICSynergy" },
- { 6483, "Captus Networks" },
- { 6484, "Campus Crusade for Christ, Inc." },
- { 6485, "Spatial Technologies" },
- { 6486, "Alcatel-Lucent Enterprise (previous was 'Alcatel')" },
- { 6487, "YouSync" },
- { 6488, "TalentStorm Enterprises" },
- { 6489, "Siemens Cerberus" },
- { 6490, "DeTeMobil Deutsche Telekom MobilNet GmbH" },
- { 6491, "Cytek Media Systems, Inc." },
- { 6492, "Phyve" },
- { 6493, "COMTRUST" },
- { 6494, "Kraft und Partner GmbH" },
- { 6495, "SeeDragon Software" },
- { 6496, "Cottons Car Superstore" },
- { 6497, "NetEye Solutions" },
- { 6498, "Maintenance One" },
- { 6499, "ekit.com Pty Ltd" },
- { 6500, "VA Linux Systems" },
- { 6501, "Macro 4" },
- { 6502, "refat" },
- { 6503, "NETGEM" },
- { 6504, "Navini Networks" },
- { 6505, "TARGUSinfo" },
- { 6506, "LiveWire Communications, Inc." },
- { 6507, "OptiMight Communications Inc." },
- { 6508, "Shanghai DigiVision Technology Co.,Ltd" },
- { 6509, "Antrim Studios and Software Cellar" },
- { 6510, "Pioneer Corporation" },
- { 6511, "TelCom Technology" },
- { 6512, "FamTek Professional Services, Inc." },
- { 6513, "Whale Communications" },
- { 6514, "Innovative Systems, L.L.C." },
- { 6515, "Zvolve Systems, Inc." },
- { 6516, "Comprehensive Test Ban Treaty Organization" },
- { 6517, "FlowServer" },
- { 6518, "Systems Solutions of the Southern Tier, Inc." },
- { 6519, "Sabre Inc./ Sabre BTS" },
- { 6520, "Dot Hill Systems" },
- { 6521, "ChainLink Technologies" },
- { 6522, "cv cryptovision GmbH" },
- { 6523, "Bilboko Trading" },
- { 6524, "Greenbytes GmbH" },
- { 6525, "Jasmine Networks, Inc." },
- { 6526, "Windward Consulting Group" },
- { 6527, "Alcatel-Lucent (formerly 'Panthera Networks, Inc.')" },
- { 6528, "Source One" },
- { 6529, "Bundesamt f\0303\0274r Sicherheit in der Informationstechnik" },
- { 6530, "2N spol. s r.o." },
- { 6531, "TeamWork Consulting" },
- { 6532, "Niobrara R&D Corp." },
- { 6533, "FaceTime Communications" },
- { 6534, "hp" },
- { 6535, "TECORE, Inc." },
- { 6536, "NetForensics.com" },
- { 6537, "Brown University" },
- { 6538, "Winford Engineering" },
- { 6539, "EdgeOn Systems, Inc." },
- { 6540, "Alamo Personal Computers, Inc." },
- { 6541, "Transindigo, Inc" },
- { 6542, "Slamdunk Networks" },
- { 6543, "AmBell" },
- { 6544, "Fivesight Technologies" },
- { 6545, "THINK iT" },
- { 6546, "ITOCHU Techno-Solutions Corporation" },
- { 6547, "Network Management Solutions, Inc." },
- { 6548, "Wavelength Digital Limited" },
- { 6549, "Axxcelera Broadband Wireless" },
- { 6550, "weblicon technologies AG" },
- { 6551, "Hotline Communications Ltd." },
- { 6552, "Virbus AG" },
- { 6553, "GHAKO FISHERIES COMPANY LIMITED" },
- { 6554, "Optima Technologies, Inc." },
- { 6555, "DataFoundry.net, Inc." },
- { 6556, "Sigma Networks" },
- { 6557, "dotRocket, Inc" },
- { 6558, "Security Technologies Inc." },
- { 6559, "Usha Communications Technology" },
- { 6560, "TelEnergy H. GmbH" },
- { 6561, "P.S.K. AG" },
- { 6562, "Nexland Inc." },
- { 6563, "TimeBridge Technologies" },
- { 6564, "Gradient Solutions" },
- { 6565, "Johns Hopkins Institutions" },
- { 6566, "Metropolitan Life Insurance" },
- { 6567, "Klimke Industry Consulting" },
- { 6568, "Promptu Systems Corporation (formerly 'AgileTV')" },
- { 6569, "INVENTEC CORPORATION" },
- { 6570, "ACOMZ NETWORKS Corp." },
- { 6571, "Fusion In Tech co.,Ltd." },
- { 6572, "NETLINKS CO.,LTD." },
- { 6573, "PerVigil, Inc." },
- { 6574, "Synology Inc." },
- { 6575, "Marriott International, Inc." },
- { 6576, "Privada, Inc." },
- { 6577, "Indura Corporation" },
- { 6578, "RedWave Networks" },
- { 6579, "Maru Networks, Inc." },
- { 6580, "OSS Systems" },
- { 6581, "Ex\0303\0251rcito Brasileiro" },
- { 6582, "Sigma Services S\0303\0251n\0303\0251gal" },
- { 6583, "Barone, Budge and Dominick" },
- { 6584, "Bundesrechenzentrum GmbH" },
- { 6585, "W-Phone Inc." },
- { 6586, "GeoworksAdam" },
- { 6587, "Airvana Inc." },
- { 6588, "tietoenator" },
- { 6589, "IFA Me\0303\0237-, Regel- und Elektrotechnik GmbH & Co." },
- { 6590, "Keipher Solutions" },
- { 6591, "Haansoft Inc." },
- { 6592, "Darin Vision Co" },
- { 6593, "neoConsulting, LLC" },
- { 6594, "Shijin & Co" },
- { 6595, "SA Mart.com" },
- { 6596, "Julie Julie" },
- { 6597, "MessageHero, Inc." },
- { 6598, "Cybertron Network Solutions" },
- { 6599, "Silver Bow Co.Ltd" },
- { 6600, "International Charities Dep. of Taihe Travel Agency,China" },
- { 6601, "IP Dynamics Inc." },
- { 6602, "Sunrise Telecom Inc." },
- { 6603, "Vitesse Semiconductors" },
- { 6604, "Tosky Management Consulting Co.ltd" },
- { 6605, "Euroclear Operations Centre" },
- { 6606, "Platypus Technology" },
- { 6607, "Radiant Networks Plc" },
- { 6608, "circuLAB" },
- { 6609, "Western New England College" },
- { 6610, "Aditya Systems" },
- { 6611, "SIGMA SERVICES SENEGAL" },
- { 6612, "Juniper Financial Corp." },
- { 6613, "Millimetrix Broadband NetworksLtd." },
- { 6614, "Telecom Technologies Inc." },
- { 6615, "Clairvoyant Software" },
- { 6616, "Lexica, LLC" },
- { 6617, "MicroStrategy" },
- { 6618, "Quintum Technologies, Inc." },
- { 6619, sminmpec_unknown }, /* (Added by Wireshark) */
- { 6620, "Global Telemann System Inc." },
- { 6621, "Department of Foreign Affairs and Trade (Australia)" },
- { 6622, "secondomillennio" },
- { 6623, "servizi2000" },
- { 6624, "Sauro Prosperi" },
- { 6625, "PVT, a.s." },
- { 6626, "Tekotelecom S.p.A." },
- { 6627, "Telematica International B.V." },
- { 6628, "Juaben" },
- { 6629, "ulticom" },
- { 6630, "Accuris Ltd" },
- { 6631, "Bowling Green State University" },
- { 6632, "DST Controls" },
- { 6633, "Personal Genie, Inc." },
- { 6634, "UUNET" },
- { 6635, "Cenus Technologies, Inc." },
- { 6636, "Indiana District - LCMS" },
- { 6637, "Rainbow Computer Warehouse" },
- { 6638, "3Ware Inc" },
- { 6639, "hhl" },
- { 6640, "GMV Network, LLC" },
- { 6641, "Netco Systems Inc." },
- { 6642, "scommtech" },
- { 6643, "IPR Systems Pty Ltd" },
- { 6644, "OzAuthors Pty Ltd" },
- { 6645, "gForce Systems" },
- { 6646, "Chevron" },
- { 6647, "Planet" },
- { 6648, "Intramon Ltd" },
- { 6649, "NewGrid Technology Inc." },
- { 6650, "The Distribution Systems Research Institute" },
- { 6651, "FIREBONE" },
- { 6652, "ID-Karta" },
- { 6653, "Tyan Computer Corporation" },
- { 6654, "Chic Technology Corp." },
- { 6655, "Agenetics Inc" },
- { 6656, "Cauris" },
- { 6657, "Courion Corporation" },
- { 6658, "Koshy's Computer Academy, Edathua" },
- { 6659, "Alisa" },
- { 6660, "keraladotcom" },
- { 6661, "Spike Broadband Systems, Inc." },
- { 6662, "S.E.S.A. AG" },
- { 6663, "Janeva Interactive" },
- { 6664, "Precidia Technologies" },
- { 6665, "Atreus Systems Corp." },
- { 6666, "innovaphone GmbH" },
- { 6667, "mediumrareJulian" },
- { 6668, "To Be Or Not" },
- { 6669, "Videotron ltee" },
- { 6670, "Intelligent Instrumentation" },
- { 6671, "Versonix" },
- { 6672, "Proscend Communications Inc.," },
- { 6673, "Align Systems Pty Ltd" },
- { 6674, "Mercator" },
- { 6675, "News Interactive" },
- { 6676, "Science Dynamics Corporation" },
- { 6677, "ONELINE AG" },
- { 6678, "Hyperknowledge (Europe)" },
- { 6679, "Surgient Networks, Inc." },
- { 6680, "SOUTHPAW" },
- { 6681, "Altea Communications Inc." },
- { 6682, "CommsHouse Ltd" },
- { 6683, "AlphaTrust Corporation" },
- { 6684, "eOriginal Inc." },
- { 6685, "INOVA Diagnostics, Inc." },
- { 6686, "VeCommerce (NZ) Ltd." },
- { 6687, "pAsia Inc." },
- { 6688, "National Center for Software Technology,Ministry of InformationTechnology,Government of India" },
- { 6689, "Zolera Systems, Inc" },
- { 6690, "OmniCluster Technologies, Inc." },
- { 6691, "UTEL" },
- { 6692, "Telenisus Corporation" },
- { 6693, "NetCertainty" },
- { 6694, "P.G.P. s.a." },
- { 6695, "SAMS, Inc." },
- { 6696, "Niagara Mohawk Power Corporation" },
- { 6697, "DOTCOM" },
- { 6698, "Micronet srl" },
- { 6699, "Vulcan Networks" },
- { 6700, "FinGO" },
- { 6701, "Creativ Network Technologies" },
- { 6702, "Entrust CygnaCom" },
- { 6703, "Cognitronics Corporation" },
- { 6704, "Vancouver Language Institute Ltd." },
- { 6705, "Zygox, Inc." },
- { 6706, "NOAA/PMEL/EPIC" },
- { 6707, "Rolf Buurke" },
- { 6708, "Handuru Telecom" },
- { 6709, "Scarlet Telecom BV" },
- { 6710, "South Birmingham College" },
- { 6711, "Connect One" },
- { 6712, "VOXTRONIC Technology" },
- { 6713, "EIZO" },
- { 6714, "Banco Santander Central Hispano" },
- { 6715, "HTT Consulting" },
- { 6716, "AMS Systems" },
- { 6717, "GiantLoop Network, Inc." },
- { 6718, "Exfo Fiber Optic Test Equipment" },
- { 6719, "TransComm Technology System, Inc" },
- { 6720, "PT. Hariff DTE" },
- { 6721, "Lodbroker Pty Ltd" },
- { 6722, "comMATCH Ltd." },
- { 6723, "Internet Names UK" },
- { 6724, "Cap Gemini Telecom France IPNS" },
- { 6725, "Data Interchange Plc" },
- { 6726, "CellPoint Systems" },
- { 6727, "WINIT s.a." },
- { 6728, "Interlink Networks, Inc." },
- { 6729, "Dolby Laboratories, Inc." },
- { 6730, "Nextel Partners Inc." },
- { 6731, "WIT Soundview" },
- { 6732, "Intercim Inc." },
- { 6733, "CMD Technology" },
- { 6734, "WEGO, Inc" },
- { 6735, "Tenebrous" },
- { 6736, "Jinny Software Ltd" },
- { 6737, "New Era of Networks, Inc" },
- { 6738, "Riversman" },
- { 6739, "Spring Yellow" },
- { 6740, "Cal Poly State University" },
- { 6741, "Nulli Secundus Inc" },
- { 6742, "priceline.com Incorporated" },
- { 6743, "Sophicomm" },
- { 6744, "Dantron" },
- { 6745, "LASAT Networks A/S" },
- { 6746, "Aftek Infosys Ltd." },
- { 6747, "TeraBurst Networks" },
- { 6748, "Up4grab. Inc" },
- { 6749, "Bosung Hi-Net Co., Ltd" },
- { 6750, "Gascom" },
- { 6751, "Dolphin Interconnect Solutions AS" },
- { 6752, "Axtronics Inc." },
- { 6753, "SysControl AG" },
- { 6754, "EzGov" },
- { 6755, "Rush Presbyterian St. Lukes Medical Center" },
- { 6756, "Unixguy.org" },
- { 6757, "Grid" },
- { 6758, "SimplySay Inc." },
- { 6759, "Allcharge" },
- { 6760, "Virginia Tech" },
- { 6761, "Axonn Wireless Solutions" },
- { 6762, "Cambridge Positioning Systems Limit" },
- { 6763, "Metakernel Network Laboratories" },
- { 6764, "Imagine Solutions" },
- { 6765, "ML Hightower, Inc." },
- { 6766, "CPNI" },
- { 6767, "RLX Technologies, Inc." },
- { 6768, "Pixelmetrix Corporation Pte" },
- { 6769, "Dynamic Imaging Corporation" },
- { 6770, "OpenCon Communication Systems" },
- { 6771, "CyberPath Inc." },
- { 6772, "eBSure Inc." },
- { 6773, "Engineering International Corporation" },
- { 6774, "University of Virginia" },
- { 6775, "Cablevision" },
- { 6776, "bmypc" },
- { 6777, "TriGem InfoComm" },
- { 6778, "AboCom Systems, Inc." },
- { 6779, "CHL NETHERLANDS B.V." },
- { 6780, "Linux Communications AS" },
- { 6781, "Vast" },
- { 6782, "Ciena (formerly 'Akara Inc.')" },
- { 6783, "Tidepoint" },
- { 6784, "JP Systems" },
- { 6785, "Delta Electronics Inc." },
- { 6786, "Dreamworks SKG" },
- { 6787, "NetConnect" },
- { 6788, "Whitebird" },
- { 6789, "OCTOGON Software Development GmbH" },
- { 6790, "Finjan Software" },
- { 6791, "EXE Technologies, Inc." },
- { 6792, "Active+ Software" },
- { 6793, "UTIasi" },
- { 6794, "Adhesive Software Incorporated" },
- { 6795, "Pocono Pet Sitters" },
- { 6796, "TekVision Communications" },
- { 6797, "ConfigureSoft, Inc." },
- { 6798, "MaxLinear Hispania S.L.U." },
- { 6799, "GlueCode, Inc." },
- { 6800, "Express Rail Link sdn Bhd" },
- { 6801, "Gamma Technologies" },
- { 6802, "M Design Communications" },
- { 6803, "BCI (Basic Commerce and Industries, Inc.)" },
- { 6804, "Weinschel Corp" },
- { 6805, "PSA WORLD NET Inc." },
- { 6806, "The Pennsylvania State University" },
- { 6807, "Eotvos Lorand University" },
- { 6808, "Buyers Laboratory Inc." },
- { 6809, "Ontika Computersystems" },
- { 6810, "MUXCOM Inc." },
- { 6811, "Nameflow" },
- { 6812, "Yoda Communications, Inc." },
- { 6813, "Olympia College" },
- { 6814, "ItchyFeet Networks" },
- { 6815, "CyberSpacia Pty Ltd" },
- { 6816, "b4" },
- { 6817, "Metanate Ltd" },
- { 6818, "Tripwire, Inc." },
- { 6819, "Musicfans, Inc." },
- { 6820, "Menta Software" },
- { 6821, "TELECOM Lille1 (formerly 'ENIC')" },
- { 6822, "University of Cambridge, Card Office" },
- { 6823, "Distributed Object Technologies, Inc." },
- { 6824, "List & Niemann" },
- { 6825, "iCue Systems, Inc." },
- { 6826, "Dark Matter Network Technologies, Inc." },
- { 6827, "Evertz Microsystems Ltd" },
- { 6828, "Caviness Software" },
- { 6829, "RAMiX Inc." },
- { 6830, "onehottmin Inc." },
- { 6831, "DSS Digital Security Service GmbH" },
- { 6832, "VCHEQ.com Pte Ltd" },
- { 6833, "Scarptor Network ABThomas Berghemmer or Martin Moreythomas.berghemmer&scarptor.se" },
- { 6834, "sbuck networks" },
- { 6835, "chello broadband austria" },
- { 6836, "Felleskj\0303\0270pet Agri BA" },
- { 6837, "Solcom" },
- { 6838, "i.g.c." },
- { 6839, "Accelight Networks" },
- { 6840, "Deutsches Elektronen-Synchrotron" },
- { 6841, "VYX" },
- { 6842, "Telect, Inc." },
- { 6843, "Global Solution" },
- { 6844, "SAT Consulting ApS" },
- { 6845, "Micro Energetics Corp." },
- { 6846, "Paulosoft" },
- { 6847, "Teleias, Inc" },
- { 6848, "Crossbeam Systems, Inc." },
- { 6849, "Reddo Networks AB" },
- { 6850, "MCCT Inc." },
- { 6851, "XOR Inc." },
- { 6852, "University of Colorado at Boulder" },
- { 6853, "Television Systems Ltd" },
- { 6854, "R\0303\0251gie Des Transports De Marseille" },
- { 6855, "WNF Consulting, Inc." },
- { 6856, "LiquidLight" },
- { 6857, "DigitalConvergence" },
- { 6858, "Fantasma Networks" },
- { 6859, "Actzero Inc" },
- { 6860, "\0303\0224\0303\0270\0303\0220\0303\0233\0303\0216\0303\0204" },
- { 6861, "Druma Inc" },
- { 6862, "Wapinspain.com" },
- { 6863, "ZyTrax Communications, Inc." },
- { 6864, "Harmania Multimedia Inc" },
- { 6865, "Elron Telesoft" },
- { 6866, "Lyonnaise Communication" },
- { 6867, "IPOptical, Inc." },
- { 6868, "Georgetown University" },
- { 6869, "Steve Burton" },
- { 6870, "Core Software Technology" },
- { 6871, "CERT Coordination Center" },
- { 6872, "Help/Systems, Inc." },
- { 6873, "bholdcompany" },
- { 6874, "Woodwind Communications Systems, Inc" },
- { 6875, "NewEarth Swedenborgian BBS" },
- { 6876, "VMware Inc." },
- { 6877, "Evergreen Internet" },
- { 6878, "Black Box Corp." },
- { 6879, "digiMine.com" },
- { 6880, sminmpec_unknown }, /* (Added by Wireshark) */
- { 6881, "Kal" },
- { 6882, "Micro Electronics Inc" },
- { 6883, "Linux NetworX, Inc." },
- { 6884, "boco" },
- { 6885, "Intelligent Telecommunications Inc." },
- { 6886, "KPN" },
- { 6887, "IT-Conference" },
- { 6888, "Millenium Installer" },
- { 6889, "Avaya Communication" },
- { 6890, "Shell Services International" },
- { 6891, "Acepta.com" },
- { 6892, "Cnation" },
- { 6893, "TurboLinux, Inc." },
- { 6894, "DataDirect Networks" },
- { 6895, "Ereo, Inc." },
- { 6896, "Mahi Networks" },
- { 6897, "JDV" },
- { 6898, "Verance Corporation" },
- { 6899, "Nanyang Technological University" },
- { 6900, "Baltic Institute of Economics and Finance" },
- { 6901, "AETA.COM" },
- { 6902, "Plisch Gmbh & Co KG" },
- { 6903, "Visoft (Pty) Ltd" },
- { 6904, "IBM, Infrastructure Support Group" },
- { 6905, "Brocade Communication Systems, Inc. (formerly 'Rhapsody Networks Inc.')" },
- { 6906, "Asiana Communications" },
- { 6907, "Broad Telecom, S.A. (Btesa)" },
- { 6908, "Movaz Networks" },
- { 6909, "Network Security Technologies, Inc." },
- { 6910, "Inquent Technologies" },
- { 6911, "AUCS Communications Services" },
- { 6912, "Morgan Stanley Dean Witter Online" },
- { 6913, "Bona Technology" },
- { 6914, "Timing Solutions Corporation" },
- { 6915, "Computable Functions Limited" },
- { 6916, "Norbert Klasen" },
- { 6917, "Alternative Advice" },
- { 6918, "Belle Systems A/S" },
- { 6919, "Cubenet s.r.l" },
- { 6920, "Think & Do Software, Inc." },
- { 6921, "Morrison Industries" },
- { 6922, "Amino Communications Ltd" },
- { 6923, "Shutterfly" },
- { 6924, "Capital Internet, LLC" },
- { 6925, "IT Communications, Kennedy Space Center (KSC)" },
- { 6926, "Optical Access Inc." },
- { 6927, "MAIL.COM" },
- { 6928, "Mobility Next Generation" },
- { 6929, "The Root Group" },
- { 6930, "Lycee Leonard de Vinci" },
- { 6931, "Interessengemeinschaft Software-Engineering" },
- { 6932, "Internet Content Register" },
- { 6933, "Reputy" },
- { 6934, "Corporation One of America, Inc." },
- { 6935, "Arachne" },
- { 6936, "VICORSOFT CORPORATION" },
- { 6937, "NetReliance, Inc." },
- { 6938, "Enigma Inc." },
- { 6939, "Hemp.org" },
- { 6940, "Tufts University" },
- { 6941, "proflash cross-media AG" },
- { 6942, "James Cook University" },
- { 6943, "R-Alpha Ltd." },
- { 6944, "REDSYS (formerly 'SERMEPA')" },
- { 6945, "LAKE Communications" },
- { 6946, "Fouche Enterprises, LLC." },
- { 6947, "Central Bank of Russia, Arkhangelsk" },
- { 6948, "Tumsan Oy" },
- { 6949, "Nextra BW CSP GmbH" },
- { 6950, "Aztec" },
- { 6951, "Freeler BV." },
- { 6952, "iBiomatics LLC" },
- { 6953, "Air2Net AB" },
- { 6954, "Sema Group" },
- { 6955, "ComSol Kommunikationssysteme GmbH" },
- { 6956, "eTopware Labs" },
- { 6957, "Rapi10.net" },
- { 6958, "Kent State University" },
- { 6959, "bluestreak" },
- { 6960, "FELIX DANZIGER INTERNATIONAL KUNSTHANDEL" },
- { 6961, "tele.ring Telekom Service Gmbh" },
- { 6962, "The University of Sydney" },
- { 6963, "Andrews IT Engineering Ltd" },
- { 6964, "Soft Teleware Inc." },
- { 6965, "RSBX" },
- { 6966, "The Bright Oceans Corporation" },
- { 6967, "Digismart" },
- { 6968, "Systek AS" },
- { 6969, "Copernicus Global Billing Services" },
- { 6970, "VCON Ltd." },
- { 6971, "Ferimex IT spol. s r.o." },
- { 6972, "Canbox" },
- { 6973, "Savatech Inc." },
- { 6974, "EarthLink Inc." },
- { 6975, "WaterCove Networks, Inc." },
- { 6976, "HowStuffWorks.com, Inc" },
- { 6977, "Resilience Corporation" },
- { 6978, "JBruce.net" },
- { 6979, "KereniX" },
- { 6980, "MRC Project" },
- { 6981, "interQ, Inc." },
- { 6982, "Erba Holding" },
- { 6983, "Sofaware Technologies" },
- { 6984, "Fovea, Inc." },
- { 6985, "Jumpy Cat Systems, Inc. (formerly 'Prism Software, Inc.')" },
- { 6986, "Kiodex, Inc." },
- { 6987, "WRonline GbR" },
- { 6988, "University of Northern British Columbia" },
- { 6989, "Extel Communications Pty Ltd" },
- { 6990, "Redfern Broadband Networks" },
- { 6991, "N-Space Pty Ltd" },
- { 6992, "KnowNow, Inc" },
- { 6993, "VirtualNet" },
- { 6994, "The Midgard Project (Open Source)" },
- { 6995, "c-base e.V." },
- { 6996, "WhatEverNet Computing" },
- { 6997, "Yale University" },
- { 6998, "Channelogics Incorporated" },
- { 6999, "University of Indianapolis" },
- { 7000, "NET-volution srl" },
- { 7001, "Big Net, Inc." },
- { 7002, "Sebastian Crespo" },
- { 7003, "CISCO-MASBU" },
- { 7004, "Metodo Srl" },
- { 7005, "Kagoor Networks" },
- { 7006, "eyeo.com" },
- { 7007, "Guangzhou Thinker Communications Technology Co., Ltd.\"" },
- { 7008, "Discordian Alliance For Teaching" },
- { 7009, "Chemtex Engineering of India Ltd" },
- { 7010, "Oranje Consulting, Inc." },
- { 7011, "Prism Microsystems, Inc." },
- { 7012, "Edisontel S.p.A." },
- { 7013, "ByteSphere LLC" },
- { 7014, "Adexa Inc." },
- { 7015, "Vignette Corporation" },
- { 7016, "Seneca Networks" },
- { 7017, "Adari TeleComp Inc" },
- { 7018, "PT Multimedia" },
- { 7019, "Polaris Networks, Inc." },
- { 7020, "Saecos Corporation" },
- { 7021, "SysNet S.n.c." },
- { 7022, "MRZ AG" },
- { 7023, "The Direct Connection Ltd" },
- { 7024, "VHB Technologies, Inc." },
- { 7025, "Double D Investments" },
- { 7026, "Sonera SmartTrust" },
- { 7027, "Onix Microsystems Inc" },
- { 7028, "Alloptic, Inc." },
- { 7029, "CUBIweb, LLC" },
- { 7030, "Ethernet, Solucoes Informaticas, lda" },
- { 7031, "McAfee, Inc. (formerly 'Securify, Inc.')" },
- { 7032, "Chartered Semiconductor Manufacturing" },
- { 7033, "Mat\0303\0255as Software Group" },
- { 7034, "inyourwake" },
- { 7035, "VTT Electronics" },
- { 7036, "MBDyn" },
- { 7037, "Ubris" },
- { 7038, "Tron Network Solutions" },
- { 7039, "bison GmbH" },
- { 7040, "DataLinx Inc" },
- { 7041, "Integra" },
- { 7042, "Permanent Vacations" },
- { 7043, "Apt Computer Systems Limited" },
- { 7044, "Primal" },
- { 7045, "TBA Communications" },
- { 7046, "Tom's NET" },
- { 7047, "Flux Productions" },
- { 7048, "Pico Communications, Inc." },
- { 7049, "DataNet Development Group, Inc." },
- { 7050, "Kazan State University" },
- { 7051, "Epicom S.A." },
- { 7052, "Dipl.-Ing. Markus Leist" },
- { 7053, "Videon CableSystems Alberta Inc." },
- { 7054, "Mazu Networks, Inc." },
- { 7055, "Cox Communications, Inc." },
- { 7056, "Senterprise Inc." },
- { 7057, "SuSE Linux AG" },
- { 7058, "BB4 Technologies Inc" },
- { 7059, "Complete Business Solutions - Global Health" },
- { 7060, "Naikel Software" },
- { 7061, "Automated Logic Corporation" },
- { 7062, "Oasis Telecommunications, Inc." },
- { 7063, "Australian Defence Force Academy" },
- { 7064, "UTStarcom (China) Co., Ltd Shenzhen Branch" },
- { 7065, "Shimin Denshi Jouhou Mou" },
- { 7066, "Dr. Srinivas" },
- { 7067, "TELCO TECH GmbH" },
- { 7068, "CryptoPRO" },
- { 7069, "SFI Open Source Services" },
- { 7070, "Narad Networks" },
- { 7071, "Tele-Info-System" },
- { 7072, "Ehrhart Jewelers" },
- { 7073, "r00tkit.com" },
- { 7074, "TheMagicProgrammer" },
- { 7075, "Lothar Maronn" },
- { 7076, "Australian Online Solutions" },
- { 7077, "Desarrollos Digitales" },
- { 7078, "True North Communications" },
- { 7079, "Megisto Systems, Inc." },
- { 7080, "xeli.net" },
- { 7081, "Maaslandse Unix & Linux Laboratorium (MULL)" },
- { 7082, "DAIDEN CO., Ltd." },
- { 7083, "Applied Generics Ltd" },
- { 7084, "Friends Provident" },
- { 7085, "Cybercomm BV" },
- { 7086, "GTONG Shenzhen Ltd." },
- { 7087, "KMC Technologies (formerly 'Selis Networks Inc.')" },
- { 7088, "Network Systems" },
- { 7089, "Centrum Arbeidsverhoudingen" },
- { 7090, "El Bit Salvaje" },
- { 7091, "CREN" },
- { 7092, "ScienceXchange" },
- { 7093, "Ericsson - Geobility" },
- { 7094, "Wachovia Trust" },
- { 7095, "Pert" },
- { 7096, "JSEIC" },
- { 7097, "LeatherXchange, S.A." },
- { 7098, "Edison Mission Energy" },
- { 7099, "Ripeco Ltd" },
- { 7100, "Killik & Co." },
- { 7101, "CO3i" },
- { 7102, "IDEALX" },
- { 7103, "SaltFire, Inc" },
- { 7104, "Supervertical Sistemas" },
- { 7105, "CANTV" },
- { 7106, "Teleport Corp" },
- { 7107, "Geocast Network Systems" },
- { 7108, "Urscheler Software" },
- { 7109, "City University of Hongkong" },
- { 7110, "Kaashyap Radiant System ltd" },
- { 7111, "Sunamerican Communication Technology Inc." },
- { 7112, "U.S. Department of Commerce" },
- { 7113, "YottaYotta" },
- { 7114, "Universidad de Navarra" },
- { 7115, "book2eat.com limited" },
- { 7116, "TechTrade International Management AB" },
- { 7117, "Invertix, Inc" },
- { 7118, "NetContinuum, Inc" },
- { 7119, "OPNET Technologies, Inc. (formerly 'Network Physics, Inc.')" },
- { 7120, "Sentry Telecom Systems Inc." },
- { 7121, "Comunicaciones Netglobalis" },
- { 7122, "Lusars.net" },
- { 7123, "nSOF Parallel Software Ltd." },
- { 7124, "Stand-by" },
- { 7125, "Digital Creations" },
- { 7126, "Positron Public Safety Systems Inc." },
- { 7127, "Nadeem Hasan" },
- { 7128, "Worcester Polytechnic Institute" },
- { 7129, "Lancaster University" },
- { 7130, "KiddiePot.com" },
- { 7131, "Orient Telecom" },
- { 7132, "ELANsat TECHNOLOGIES Inc." },
- { 7133, "Corenix System Inc." },
- { 7134, "Prosolve" },
- { 7135, "Comit\0303\0251 R\0303\0251seau des Universit\0303\0251s" },
- { 7136, "SysNet" },
- { 7137, "Tunisie Telecom" },
- { 7138, "Allaire Corporation" },
- { 7139, "EchoStar Data Networks" },
- { 7140, "INPG, Institut National Polytechnique de Grenoble" },
- { 7141, "Freesoft" },
- { 7142, "Pingtel Corp." },
- { 7143, "Entrust Technologies, Inc." },
- { 7144, "FaceTime Communications, Inc." },
- { 7145, "eve.com" },
- { 7146, "Zeus Technology Ltd" },
- { 7147, "Imperial Technology, Inc." },
- { 7148, "Unitree Software" },
- { 7149, "Arcot Systems, Inc." },
- { 7150, "INITECH, Co.,Ltd." },
- { 7151, "r pdeshpande" },
- { 7152, "CAPE Technologies Ltd.," },
- { 7153, "Foertsch EDV Beratung" },
- { 7154, "Intelligent Platform Management Interface forum" },
- { 7155, "neohaven.net" },
- { 7156, "Princeton Networks" },
- { 7157, "SC Dart IMPEX SRL" },
- { 7158, "1 Global City.com, Inc." },
- { 7159, "Allianz AG" },
- { 7160, "Granada Learning" },
- { 7161, "Network Solutions, Inc." },
- { 7162, "Delancey Management and Consulting" },
- { 7163, "Fiorano Software, Inc." },
- { 7164, "SchiZo Information Network" },
- { 7165, "SAMBA Team" },
- { 7166, "Peters Securities Co, L.P." },
- { 7167, "WinterTek, LLC" },
- { 7168, "Eurosoft Sas" },
- { 7169, "Engage, Inc." },
- { 7170, "Centell Telecommunication Company" },
- { 7171, "Europesave S.A." },
- { 7172, "SPARKnet S.A." },
- { 7173, "Jiangsu University of Science and Technology" },
- { 7174, "Tonic Software, Inc." },
- { 7175, "TSP Lab(Telecommunication and Signal Processing Lab.) Peter" },
- { 7176, "orangefood.com" },
- { 7177, "IPITEK" },
- { 7178, "SANJOSEDEOCOA.COM.DO" },
- { 7179, "ARIO Data Networks" },
- { 7180, "Talarian Corporation" },
- { 7181, "Trendium, Inc." },
- { 7182, "ypass.net" },
- { 7183, "Springfield Public Schools" },
- { 7184, sminmpec_unknown }, /* (Added by Wireshark) */
- { 7185, "Latitude Communications" },
- { 7186, "BayPackets Inc" },
- { 7187, "Netsystems, Inc." },
- { 7188, "Curtin University of Technology" },
- { 7189, "EMS-Global" },
- { 7190, "Legato Systems India" },
- { 7191, "Gebrueder Weiss GmbH" },
- { 7192, "ID-PRO Aktiengesellschaft" },
- { 7193, "Bourse Connect" },
- { 7194, "Stevens Gagnon Services Info-Techniques" },
- { 7195, "Iquilibrium, Inc." },
- { 7196, "Imagine Software" },
- { 7197, "Intertech" },
- { 7198, "CeLight" },
- { 7199, "2Bridge Software" },
- { 7200, "Forebrick International" },
- { 7201, "Druker Consulting" },
- { 7202, "Seastem" },
- { 7203, "Technology Builders, Inc." },
- { 7204, "PerformanceIT, Inc." },
- { 7205, "CoreTech Consulting Group, Inc." },
- { 7206, "Real Media, Inc" },
- { 7207, "DENON DENTAL" },
- { 7208, "AFCON Software and Electronics Ltd." },
- { 7209, "Societe Bryarde de Travaux Publics" },
- { 7210, "WorkSpot Inc" },
- { 7211, "Raiffeisen Schweiz" },
- { 7212, "Raiffeisen Schweiz" },
- { 7213, "Datria Systems" },
- { 7214, "Virginia-Meryland Regional College of Veterinary Medicine" },
- { 7215, "ABN AMRO" },
- { 7216, "Institut National de la Recherche Agronomique" },
- { 7217, "The University of Memphis" },
- { 7218, "HBESoftware Inc." },
- { 7219, "Firedrop Inc" },
- { 7220, "Shanghai Optical Networking Technology Co. Ltd." },
- { 7221, "Handlink Technologies Inc." },
- { 7222, "TIScover" },
- { 7223, "ofehr.net" },
- { 7224, "Netarchitects SA" },
- { 7225, "Spacechecker nv" },
- { 7226, "Micro F/X" },
- { 7227, "Centre Informatique National de l'Enseignement Superieur" },
- { 7228, "The Web Foundry Limited" },
- { 7229, "Vogeler Enterprise Architectures" },
- { 7230, "Eastern Michigan University" },
- { 7231, "MidStream Technologies" },
- { 7232, "VR1 Entertainment" },
- { 7233, "SierraCities.com" },
- { 7234, "KORE" },
- { 7235, "eRadlink" },
- { 7236, "SIMM-Comm" },
- { 7237, "Aaronsen Group, Ltd." },
- { 7238, "OM Technology" },
- { 7239, "LEGRAND" },
- { 7240, "Princeton Networks Inc" },
- { 7241, "Inter.net" },
- { 7242, "QwicNet, Inc." },
- { 7243, "ZIVO Wellington" },
- { 7244, "Quanta Computer Inc." },
- { 7245, "Northern Districts In-Line Hockey Club" },
- { 7246, "Project X Consulting Ltd" },
- { 7247, "Nexsan Technologies, Ltd." },
- { 7248, "HyperTrust" },
- { 7249, "Manage-IT" },
- { 7250, "Viewgraphics" },
- { 7251, "SPC solutions s.r.o." },
- { 7252, "Institut Mondor de M\0303\0251decine Mol\0303\0251culaire" },
- { 7253, "StreamCache" },
- { 7254, "Intronix Corporation" },
- { 7255, "PointOne Telecommunications, Inc." },
- { 7256, "Geyser Networks, Inc." },
- { 7257, "Mar-Net Ltd." },
- { 7258, "Centre national de Documentation Pedagogique" },
- { 7259, "OULLIM Information Technology, Inc." },
- { 7260, "Opthos Inc." },
- { 7261, "InfoSpace" },
- { 7262, "DragonWave" },
- { 7263, "Litt Productions Ltd." },
- { 7264, sminmpec_unknown }, /* (Added by Wireshark) */
- { 7265, "Interactive Portal, Inc." },
- { 7266, "Softfront" },
- { 7267, "BroadLink Technologies, Inc." },
- { 7268, "Axiavoice Software" },
- { 7269, "University of Klagenfurt" },
- { 7270, "Supanet Limited" },
- { 7271, "TuxWarp" },
- { 7272, "RedSiren Technologies Inc." },
- { 7273, "When Pigs Fly Club" },
- { 7274, "CITY OF WILLCOX" },
- { 7275, "Amsterdamse Hogeschool voor de Kunsten" },
- { 7276, "Parabon Computation, Inc." },
- { 7277, "PolyServe,Inc." },
- { 7278, "Digital Archway" },
- { 7279, "Zembu Labs" },
- { 7280, "Vodafone Network Pty Ltd Australia" },
- { 7281, "Socix Business Internet Software Co., Ltd" },
- { 7282, "Superchannel ApS" },
- { 7283, "Defence Science & Technology Agency" },
- { 7284, "Asita Technologies" },
- { 7285, "Hutchison Ports UK Limited" },
- { 7286, "betanet" },
- { 7287, "Premier Programming Ltd" },
- { 7288, "ActiveSky Inc." },
- { 7289, "Visual Analysis AG" },
- { 7290, "Samjung Data Service LTD.,CO." },
- { 7291, "LUTEUS SARL (formerly 'Lecointe Ludovic')" },
- { 7292, "Krone Multimedia Ges.m.b.H Co KG" },
- { 7293, "POWERCOM CO., Ltd." },
- { 7294, "Soci\0303\0251t\0303\0251 G\0303\0251n\0303\0251rale de T\0303\0251l\0303\0251informatique" },
- { 7295, "plan b. solutions GmbH" },
- { 7296, "eFORCE, Inc.- New York" },
- { 7297, "Adventist Care Centers" },
- { 7298, "Yuma Educational Consortium" },
- { 7299, "Valence Semiconductor, Inc." },
- { 7300, "Bangladesh Consultants Ltd." },
- { 7301, "Kinzebach" },
- { 7302, "Medsys" },
- { 7303, "Byg Informatique" },
- { 7304, "WWW. DEPARTMENTSTORE" },
- { 7305, "esurvey" },
- { 7306, "Boku, Inc." },
- { 7307, "PonyExpress.net" },
- { 7308, "Zaantek, LLC" },
- { 7309, "Argus Technologies" },
- { 7310, "EnStor" },
- { 7311, "T-Systems Enterprise Services GmbH" },
- { 7312, "BARCO Control Rooms" },
- { 7313, "1stWAVE" },
- { 7314, "CodeWeavers, Inc" },
- { 7315, "CAB Software" },
- { 7316, "Bridge Solutions AG" },
- { 7317, "Mobile Reach Technologies, Inc." },
- { 7318, "Sinia Corporation" },
- { 7319, "Universite de Toulon et du Var" },
- { 7320, "Ivron Systems Ltd" },
- { 7321, "connext" },
- { 7322, "Tiburon Networks, Inc" },
- { 7323, "Voicecom" },
- { 7324, "Chambre Syndicale des Banques Populaires" },
- { 7325, "Redeye Telecommunications" },
- { 7326, "MCI" },
- { 7327, "WaveSmith Networks" },
- { 7328, "MatrixOne, Inc." },
- { 7329, "Virtual Learn Inc" },
- { 7330, "Bundesanstalt fuer Wasserbau" },
- { 7331, "DDS Projects BV" },
- { 7332, "DiviTech A/S" },
- { 7333, "E-Cottage Industries" },
- { 7334, "The San Joaquin Valley Science Collective" },
- { 7335, "eXperts-MD" },
- { 7336, "6WIND" },
- { 7337, "Lipro AG" },
- { 7338, "Paramhamsa Tech" },
- { 7339, "GeneralSearch.com" },
- { 7340, "Northwestern University" },
- { 7341, "University of Alabama at Birmingham" },
- { 7342, "Omnitron Systems Technology" },
- { 7343, "BroadConnex Networks, Inc." },
- { 7344, "Jedai Broadband Networks" },
- { 7345, "Learnsoft Corporation" },
- { 7346, "Uni-C" },
- { 7347, "Point Reyes Networks, Inc." },
- { 7348, "Torren Software Company" },
- { 7349, "Hangzhou Torren Software Company" },
- { 7350, "Belkamneft" },
- { 7351, "TeleDanmark Development" },
- { 7352, "Gilat Satellite Networks" },
- { 7353, "Datel Defence Limited" },
- { 7354, "Vesper S.A." },
- { 7355, "Hass Asscoiates" },
- { 7356, "Gateway to the Web" },
- { 7357, "scroner.com" },
- { 7358, "POV Corp." },
- { 7359, "SteelEye Technology" },
- { 7360, "Telecom Personal" },
- { 7361, "Certificado Digital S.A." },
- { 7362, "Department Land, Air and Water Resources,University of California,Davis" },
- { 7363, "Prominence Networks Inc." },
- { 7364, "IMS Health" },
- { 7365, "Easily Ltd" },
- { 7366, "MarketTouch" },
- { 7367, "DrayTek Corporation" },
- { 7368, "FalconStor, Inc." },
- { 7369, "Suncom Communications" },
- { 7370, "Cbeyond Communications" },
- { 7371, "INSERM" },
- { 7372, "Cratos Networks, Inc" },
- { 7373, "Narad Networks Inc." },
- { 7374, "C&D Micro Solutions" },
- { 7375, "iSOFT Plc" },
- { 7376, "Magenta Sites" },
- { 7377, "Ubiquity Software Corporation" },
- { 7378, "FireSummit" },
- { 7379, "Soliton Technologies CO.," },
- { 7380, "Shore Corporation" },
- { 7381, "OWL-Online GmbH & Co. KG" },
- { 7382, "JustIT Sdn. Bhd." },
- { 7383, "LIBERTECH" },
- { 7384, "CryptoTech" },
- { 7385, "Celox Networks Inc." },
- { 7386, "Cake Farm" },
- { 7387, "Canon Information Systems Research Australia" },
- { 7388, "Lune Networks" },
- { 7389, "VDSL Systems Oy" },
- { 7390, "Grisoft" },
- { 7391, "Institut National des Telecommunications (INT)" },
- { 7392, "Telispark" },
- { 7393, "Oasys Telecom, Inc." },
- { 7394, "CosmoCom, Inc." },
- { 7395, "Beeline Networks, Inc." },
- { 7396, "OLYMPO controls Ltd." },
- { 7397, "OnePage, inc" },
- { 7398, "Corporation 124" },
- { 7399, "Data Systems West" },
- { 7400, "EHI-INSM" },
- { 7401, "EkotaCentral" },
- { 7402, "Vigor Soft Private Limited" },
- { 7403, "Biomed Translations Ltd." },
- { 7404, "D.J. Williams Editorial Ltd.David" },
- { 7405, "IPS d.o.o." },
- { 7406, "EFS : Etablisssement Francais du Sang" },
- { 7407, "Observatoire de Besancon" },
- { 7408, "Kunskapstv i Sverige AB" },
- { 7409, "Jan Niehusmann" },
- { 7410, "Telekurs Financial" },
- { 7411, "Finix" },
- { 7412, "Angstrom Microsystems" },
- { 7413, "Computer Service Depot" },
- { 7414, "Muffett & Co" },
- { 7415, "Berlin-Brandenburgische Akademie der Wissenschaften" },
- { 7416, "Software Advanced Technology Lab" },
- { 7417, "Cornell University" },
- { 7418, "Procket Networks" },
- { 7419, "Dai hoc su pham ky thuat" },
- { 7420, "Taylor Company" },
- { 7421, "Milcom Systems Corporation" },
- { 7422, "Currenex" },
- { 7423, "MedPlus, Inc." },
- { 7424, "Infosec Technologies Co., Ltd." },
- { 7425, "Company of the Far Countries, Ltd." },
- { 7426, "NeST Information Technologies" },
- { 7427, "Yokogawa Electric Corporation" },
- { 7428, "PowerDsine" },
- { 7429, "BroadWeb Corporation" },
- { 7430, "mediascape communications AG" },
- { 7431, "Altiva Solutions" },
- { 7432, "Excentis" },
- { 7433, "SITTI spa" },
- { 7434, "Planetasia Ltd" },
- { 7435, "T.K COMPANY" },
- { 7436, "Oxir Internet Solutions" },
- { 7437, "Siemens ICN Italy" },
- { 7438, "SAFE. Inc" },
- { 7439, "AppStream, Inc." },
- { 7440, "Omnitech Computer Corp" },
- { 7441, "CipherTrust, Inc." },
- { 7442, "Idaho National Engineering and Environmental Laboratory" },
- { 7443, "EVEREX COMMUNICATION" },
- { 7444, "Imagine Networks" },
- { 7445, "Javelina Software" },
- { 7446, "Institute of Leadership and Management" },
- { 7447, "Signal Technology INC" },
- { 7448, "Advanced Training & Consulting Services, Inc." },
- { 7449, "WHAM COMPUTER" },
- { 7450, "Framfab" },
- { 7451, "nSYS Technologies Co., Ltd" },
- { 7452, "Guangzhou Gaoke Communication Equipment Co., Ltd" },
- { 7453, "Turtlefoot International" },
- { 7454, "OKsystem Ltd." },
- { 7455, "dev/consulting GmbH" },
- { 7456, "Virtual Net" },
- { 7457, "ZAO EMAX" },
- { 7458, "Clemens Benden" },
- { 7459, "memIQ" },
- { 7460, "XS4ALL Internet B.V." },
- { 7461, "Page One AG" },
- { 7462, "Nordnorsk helsenett" },
- { 7463, "white.cell,inc" },
- { 7464, "ECMWF (European Centre for Medium-Range Weather Forecast)" },
- { 7465, "WISI" },
- { 7466, "CLI GmbH" },
- { 7467, "TTi Systems" },
- { 7468, "Mixbaal" },
- { 7469, "VoiceGenie Technologies" },
- { 7470, "Princeton Financial Systems" },
- { 7471, "Discreet Communications Group" },
- { 7472, "MShow.com" },
- { 7473, "easyplanet Corp." },
- { 7474, "Inabled Online" },
- { 7475, "Shanghai Bell Company Ltd." },
- { 7476, "Departamento General de Irrigacion" },
- { 7477, "Unk SA - Argentina" },
- { 7478, "NetCraft Sdn Bhd" },
- { 7479, "Triad Development Group NA, LLC" },
- { 7480, "@MySpend.Com" },
- { 7481, "Talon" },
- { 7482, "Widax Corporation" },
- { 7483, "Alcatel-Lucent (formerly 'Tropic Networks')" },
- { 7484, "Teleias Inc." },
- { 7485, "SPS, Inc." },
- { 7486, "Embassy Systems, Ltda." },
- { 7487, "MEISolutions.com, Inc." },
- { 7488, "Infinitec Networks" },
- { 7489, "e-HealthSign" },
- { 7490, "TotalWisdom Inc." },
- { 7491, "gnumonks.org" },
- { 7492, "Kommunikationsnetz Franken e.V." },
- { 7493, "ldap-abook" },
- { 7494, "Rovor Technologies" },
- { 7495, "Advanced Web Solutions, Inc" },
- { 7496, "JB-Holding b.v." },
- { 7497, "Magnolia Broadband" },
- { 7498, "Gorski.net" },
- { 7499, "Pacific Century CyberWorks - Hongkong Telecom" },
- { 7500, "IICS" },
- { 7501, "BKtel communications GmbH (Systems)" },
- { 7502, "African Medical Imaging" },
- { 7503, "Henkels and McCoy" },
- { 7504, "AerSoft Ltd" },
- { 7505, "Calista Ltd." },
- { 7506, "Scoreline Technologies" },
- { 7507, "WayneWare" },
- { 7508, "Fuji Electric Co.,Ltd." },
- { 7509, "Storability, Inc." },
- { 7510, "Luxxon Corporation" },
- { 7511, "wdt" },
- { 7512, "NetEnS Corporation" },
- { 7513, "Elimpex - Medizintechnik GesmbH." },
- { 7514, "St Helens And Knowsley Hospitals NHS Trust" },
- { 7515, "P. Lancier" },
- { 7516, "Andy Stubbs" },
- { 7517, "Acxsys Corporation" },
- { 7518, "Chicago Mercantile Exchange" },
- { 7519, "RateIntegration, Inc." },
- { 7520, "Harris Corporation (formerly 'M/A-COM Private Radio Systems, Inc.')" },
- { 7521, "Logicalis Australia Pty Ltd (formerly 'NetStar Networks')" },
- { 7522, "Brains Corp" },
- { 7523, "AccessNet" },
- { 7524, "RapidSolution Software GmbH" },
- { 7525, "eCal Corporation" },
- { 7526, "snom technology AG" },
- { 7527, "Quest Software" },
- { 7528, "Metabox Inc" },
- { 7529, "Netarx, Inc." },
- { 7530, "OptXCon Inc." },
- { 7531, "RapidWAN" },
- { 7532, "Munat, Inc." },
- { 7533, "HONDA ELECTRON CO.,LTD" },
- { 7534, "Universita' degli Studi di Genova" },
- { 7535, "CapCLEAR Limited" },
- { 7536, "H+H Zentrum f. Rechnerkommunikation GmbH" },
- { 7537, "e2 Communications" },
- { 7538, "Veriprise Wireless Company" },
- { 7539, "QUACK.COM" },
- { 7540, "ISPsoft" },
- { 7541, "iBuilding.com" },
- { 7542, "Mount Allison University" },
- { 7543, "VisionShop" },
- { 7544, "Wirelink Co., Ltd." },
- { 7545, "QoSBA Systems Co., Ltd." },
- { 7546, "AXXESSIT ASA" },
- { 7547, "CSIC/RedIRIS" },
- { 7548, "Netcentric Systems Ltd." },
- { 7549, "DataCenterDirect.com, Inc." },
- { 7550, "Delta Data Software" },
- { 7551, "Enatel" },
- { 7552, "Infra Valley" },
- { 7553, "Tampere University of Technology" },
- { 7554, "Zlooper Media Perkasa" },
- { 7555, "Institution Saint-Joseph" },
- { 7556, "Movilogic S.A." },
- { 7557, "Echomine" },
- { 7558, "National Air Traffic Services Ltd" },
- { 7559, "Egenera, Inc" },
- { 7560, "Daisy Group" },
- { 7561, "Askoo SA" },
- { 7562, "ICPSR (Inter-university Consortium for Political & Social Research)" },
- { 7563, "OneSpot, Inc." },
- { 7564, "Clickarrray Networks, Inc." },
- { 7565, "USGS South Florida Information Access Project" },
- { 7566, "CodeStream Technologies Corporation" },
- { 7567, "Portera Systems" },
- { 7568, "Ircam" },
- { 7569, "Convedia Corporation" },
- { 7570, "Brience, Inc." },
- { 7571, "SAF tehnika" },
- { 7572, "Quest Software" },
- { 7573, "NBC Internet" },
- { 7574, "Torque Systems, Inc" },
- { 7575, "Maharashtra Institute of Technology, Pune" },
- { 7576, "GEA IT Services GmbH" },
- { 7577, "University Of Strathclyde" },
- { 7578, "Energis Deutschland" },
- { 7579, "University of Freiburg" },
- { 7580, "AnIX Group Limited" },
- { 7581, "Advent Networks, Inc." },
- { 7582, "E-Z Data, Inc." },
- { 7583, "The Eleven" },
- { 7584, "Intertrust Technologies Corporation" },
- { 7585, "Genius Software Ltda" },
- { 7586, "Parametric Technology Corporation" },
- { 7587, "World Digitel Corporation" },
- { 7588, "WIS COMMUNICATION CO. LTD" },
- { 7589, "MemlinkEyal" },
- { 7590, "bodachina" },
- { 7591, "Divisa Inform\0303\0241tica y Telecomunicaciones S.A." },
- { 7592, "Swedish Institute of Space Physics" },
- { 7593, "University of Cambridge, Clinical and Biomedical Computing Unit" },
- { 7594, "Citadel LLC (formerly 'Citadel Investment Group')" },
- { 7595, "RATIO Entwicklungen GmbH" },
- { 7596, "Trellis Photonics" },
- { 7597, "NOVA LJUBLJANSKA BANKA" },
- { 7598, "KTSI" },
- { 7599, "Rebel.com, Inc." },
- { 7600, "eazel" },
- { 7601, "Trinity College" },
- { 7602, "Covers.de" },
- { 7603, "Kingfisher ICT-Services" },
- { 7604, "MSE-iT" },
- { 7605, "e-point S.A" },
- { 7606, "The University of Alabama in Huntsville" },
- { 7607, "AppGate, Inc." },
- { 7608, "Celion Networks, Inc." },
- { 7609, "SpinState" },
- { 7610, "Something 4 Ltd" },
- { 7611, "Federal Reserve System" },
- { 7612, "Digi-Data Corp" },
- { 7613, "Panther Software, Inc." },
- { 7614, "Isovia" },
- { 7615, "Universitat de Girona" },
- { 7616, "STMICROELECTRONICS" },
- { 7617, "Stendahls.net AB" },
- { 7618, "Adomo, Inc." },
- { 7619, "Amon Technologies" },
- { 7620, "France Teaser" },
- { 7621, "DISH Network L.L.C. (formerly 'EchoStar Corporation')" },
- { 7622, "Mesa Systems International" },
- { 7623, "DXO Telecom Co., Ltd." },
- { 7624, "akal systems" },
- { 7625, "ComCon GmbH" },
- { 7626, "University of Osnabrueck" },
- { 7627, "TeleBroad Networks" },
- { 7628, "Reed-Matthews, Inc." },
- { 7629, "4unet" },
- { 7630, "Tioga Technologies" },
- { 7631, "INTERFACE CONCEPT" },
- { 7632, "GNS" },
- { 7633, "City University" },
- { 7634, "Bungee Communications" },
- { 7635, "THOMSON multimedia R&D France" },
- { 7636, "Laponia Veiculos" },
- { 7637, "JPM Consulting" },
- { 7638, "Carrier1" },
- { 7639, "Netverk S.A." },
- { 7640, "Quantum Corp." },
- { 7641, "Astronomical Society of Edinburgh" },
- { 7642, "SpiderTech Software Pvt. Ltd" },
- { 7643, "National Chung Cheng University" },
- { 7644, "EK Gro\0303\0237einkauf eG" },
- { 7645, "NetXL" },
- { 7646, "Exemus Ltd" },
- { 7647, "Oregan Networks Ltd" },
- { 7648, "Nationwide Mutual Insurance Company" },
- { 7649, "EverFile, Inc." },
- { 7650, "Leibniz-Rechenzentrum" },
- { 7651, "UniSecurity" },
- { 7652, "DataCore Software Corporation" },
- { 7653, "Dashbit Incorporated" },
- { 7654, "SnoNet" },
- { 7655, "Sean Kelly, Independent Consultant" },
- { 7656, "Bertrandt AG" },
- { 7657, "DISAT SISTEMAS TELECOMUNICACI\0303\0223N" },
- { 7658, "Webonomics GmbH" },
- { 7659, "UESTC" },
- { 7660, "Okiok Data" },
- { 7661, "HumanScan GmbH" },
- { 7662, "SOGETEK" },
- { 7663, "Taral Networks Inc." },
- { 7664, "mezzoNET Easy Technologie S.L." },
- { 7665, "INTRIA-HP Corp" },
- { 7666, "Provenco Group Ltd" },
- { 7667, "Banque Nationale du Canada" },
- { 7668, "Praeter Technologies, Inc." },
- { 7669, "Network Photonics, Inc." },
- { 7670, "Viator Incorporated" },
- { 7671, "Invertix Corporation" },
- { 7672, "Fujitsu NNC Ltd./ PBN" },
- { 7673, "Fusion Communications Corp." },
- { 7674, "Northern Principle Limited" },
- { 7675, "SPAR Handels AG" },
- { 7676, "Strawberry Software Limited" },
- { 7677, "Lynx Photonic Networks Inc." },
- { 7678, "XYRIUS" },
- { 7679, "WiNag.com" },
- { 7680, "Corrigent Systems Inc." },
- { 7681, "Trakonic" },
- { 7682, "nCipher PLC" },
- { 7683, "Air Liquide Electronics" },
- { 7684, "NexTone Communications" },
- { 7685, "KPMG Consulting, LLC" },
- { 7686, "P\0303\0252ches et Oc\0303\0251ans Canada - Garde c\0303\0264ti\0303\0250re" },
- { 7687, "UFSC/LabSEC" },
- { 7688, "Social Change Online" },
- { 7689, "rasimusi" },
- { 7690, "ThruPoint, Inc." },
- { 7691, "Warp Solutions, Inc." },
- { 7692, "The Stoddard Group, Inc." },
- { 7693, "International Life Sciences Institute (ILSI)" },
- { 7694, "Summit Technologies" },
- { 7695, "Media Cloud, Inc." },
- { 7696, "Bach Systems, Inc." },
- { 7697, "Athabasca University" },
- { 7698, "Context Media, Inc." },
- { 7699, "Syncwave Networks, Inc." },
- { 7700, "Endeavors Technology, Inc." },
- { 7701, "GemStone Systems Inc." },
- { 7702, "Keicho,Ltd." },
- { 7703, "Ecrio Inc." },
- { 7704, "Der Polizeipraesident in Berlin" },
- { 7705, "Centre For Wireless Communications" },
- { 7706, "JonCol.com" },
- { 7707, "Proactive Technology Ltd." },
- { 7708, "WydeBand" },
- { 7709, "Aristotle University of Thessaloniki" },
- { 7710, "Agrilis (pty) Ltd" },
- { 7711, "GNKC" },
- { 7712, "SECARTIS AG" },
- { 7713, "Tomorrow Technologies Marcus" },
- { 7714, "EVIDIAN" },
- { 7715, "EYE Communications AG" },
- { 7716, "ART S.p.A." },
- { 7717, "Flying J Inc." },
- { 7718, "INA" },
- { 7719, "Avilinks" },
- { 7720, "W.I. Simonson Inc." },
- { 7721, "caatoosee schweiz ag" },
- { 7722, "net-linx-ps-sii" },
- { 7723, "Benham.net" },
- { 7724, "Unassigned" },
- { 7725, "Hark Tower Systems" },
- { 7726, "Pointgain Corporation" },
- { 7727, "CIN-NIC" },
- { 7728, "3R Inc." },
- { 7729, "Telson" },
- { 7730, "Voxpath Networks" },
- { 7731, "HomeStore.com" },
- { 7732, "philiplo" },
- { 7733, "Pulsar Technologies, Inc." },
- { 7734, "ProQuent Systems Corporation" },
- { 7735, "Airbiquity Inc" },
- { 7736, "Jarna" },
- { 7737, "Internet Photonics Inc." },
- { 7738, "Encendra Communications" },
- { 7739, "DigEncP" },
- { 7740, "NetMonger Communications Christopher" },
- { 7741, "SNMP Technologies" },
- { 7742, "Aptira Pty Ltd (formerly 'Antithesys Pty Ltd')" },
- { 7743, "Salomon Smith Barney, Autralia" },
- { 7744, "SPE Systemhaus GmbH" },
- { 7745, "AETHRA" },
- { 7746, "Watershed Consultants Ltd" },
- { 7747, "Federation" },
- { 7748, "GlobeCom Interactive" },
- { 7749, "HICOM GmbH" },
- { 7750, "Helicon Networks" },
- { 7751, "mDiversity, Inc." },
- { 7752, "Bravara Communications, Inc." },
- { 7753, "ZELPOS" },
- { 7754, "Infosquare Corp." },
- { 7755, "Disney Technology Solutions and Services" },
- { 7756, "Netarena Communications" },
- { 7757, "Tonbu Inc" },
- { 7758, "E-BUSINESSNETWORK.COM" },
- { 7759, "EENADU.COM" },
- { 7760, "ANYSCAPE.COM" },
- { 7761, "POINTGO.COM" },
- { 7762, "EBIZXML.COM" },
- { 7763, "POINTGAIN.NET" },
- { 7764, "EBUSINESSXCHANGE.COM" },
- { 7765, "SYSDYNAMICS.COM" },
- { 7766, "BUSINESSACROSS.COM" },
- { 7767, "EBUSINESSOPENWORLD.COM" },
- { 7768, "E-BUSINESSOPENWORLD.COM" },
- { 7769, "E-BUSINESSOPENWORLD.NET" },
- { 7770, "EBUSINESSOPENWORLD.NET" },
- { 7771, "EBUSINESSACROSS.COM" },
- { 7772, "EBIZDYNAMICS.COM" },
- { 7773, "E-BUSINESSDYNAMICS.COM" },
- { 7774, "EBUSINESSX.COM" },
- { 7775, "E-DYNAMICS.COM" },
- { 7776, "E-DYNAMICS.NET" },
- { 7777, "E-DYNAMICS.ORG" },
- { 7778, "Excess Trade Zone, Inc." },
- { 7779, "InfoBlox Inc." },
- { 7780, "Mirametric" },
- { 7781, "Conservatoire National des Arts et Metiers" },
- { 7782, "Greek School Network" },
- { 7783, "Riello S.p.A." },
- { 7784, "Lattis Enterprise Management Ltd" },
- { 7785, "Rivne Communication Technologies Ltd." },
- { 7786, "IBCnet Ltd." },
- { 7787, "frontsite AG" },
- { 7788, "Liebregts" },
- { 7789, "LPM Online" },
- { 7790, "LISIT - Lombardia Integrata Servizi Infotelematici per ilTerritorio" },
- { 7791, "Conseil General de la Loire" },
- { 7792, "incshopkorea" },
- { 7793, "HMS" },
- { 7794, "Infinity Tel-Data Inc" },
- { 7795, "Custom Software Solutions" },
- { 7796, "BowdenGS Technoloiges, LLC" },
- { 7797, "Aculeus, Inc." },
- { 7798, "Toko Electric Co., Ltd." },
- { 7799, "The PacificRoot" },
- { 7800, "Premier Network Co., Ltd" },
- { 7801, "Radionet Oy" },
- { 7802, "110 Limited" },
- { 7803, "Terra Networks Brasil S/A" },
- { 7804, "elcan Corp." },
- { 7805, "NetNation Communications Inc." },
- { 7806, "Techsar" },
- { 7807, "Stoneware, Inc." },
- { 7808, "Rearden Steel Technologies, Inc." },
- { 7809, "Phil Pearl (formerly 'Finch Computer Services')" },
- { 7810, "Seek Systems" },
- { 7811, "40 Street Records" },
- { 7812, "Pfadi Limmattal" },
- { 7813, "Cogetec HSI" },
- { 7814, "Infinity Tel-Data Inc." },
- { 7815, "Gilmore House Associates Ltd" },
- { 7816, "Wissenschaftladen Dortmund e.V." },
- { 7817, "Chiphead Consulting, Inc." },
- { 7818, "Rohit Communications Pte. Ltd." },
- { 7819, "Opensource Consult" },
- { 7820, "Configate Inc." },
- { 7821, "University of Silesia" },
- { 7822, "Athena Security" },
- { 7823, "Clickaction" },
- { 7824, "LG Electronics Inc." },
- { 7825, "Cognizant Technology Solutions" },
- { 7826, "KPNQwest Austria GmbH." },
- { 7827, "Sofadex-Puratos" },
- { 7828, "Commsbloke.com" },
- { 7829, "Axon Digital Design B.V." },
- { 7830, "Service Info-Techno Inc." },
- { 7831, "Dataflex Design Communications Limited" },
- { 7832, "ICSA Labs" },
- { 7833, "daveb.net" },
- { 7834, "Wissenschaftsladen Dortmund e.V." },
- { 7835, "Hope Tranportation" },
- { 7836, "Nuark Co., Ltd." },
- { 7837, "Sumtel Communications, Inc." },
- { 7838, "UTOMI AG" },
- { 7839, "Telia UK Limited" },
- { 7840, "Zelax" },
- { 7841, "Skynet Ltd." },
- { 7842, "Universit\0303\0251 Paris 12 - Val de Marne" },
- { 7843, "Callera Ltd" },
- { 7844, "KGB Entertainment" },
- { 7845, "Cipher" },
- { 7846, "ETRALI" },
- { 7847, "The Evangelical Lutheran Good Samaritan Society" },
- { 7848, "S\0303\0244chsische Staatskanzlei" },
- { 7849, "CommeceOne Auction Services" },
- { 7850, "Penford Corporation" },
- { 7851, "Software Munitions" },
- { 7852, "CyberElves" },
- { 7853, "Teknoids" },
- { 7854, "nazit" },
- { 7855, "ISI-CNR" },
- { 7856, "REALTRONIC" },
- { 7857, "XenoSite" },
- { 7858, "Outcome Technology Associates, Inc." },
- { 7859, "NetMount" },
- { 7860, "Datatone Ltd" },
- { 7861, "U4EA Technologies Ltd." },
- { 7862, "Herrns PC" },
- { 7863, "FreeW3, Inc." },
- { 7864, "Megadot Pty Ltd" },
- { 7865, "Litnet NOC" },
- { 7866, "Corinthian Engineering Pty Ltd" },
- { 7867, "Mailvision" },
- { 7868, "Universite de Sherbrooke" },
- { 7869, "Byzantium Solutions Ltd" },
- { 7870, "Polska Platforma Internetowa" },
- { 7871, "NICsys GbR" },
- { 7872, "Arrista Technologies" },
- { 7873, "Info-Onscreen Software Systems Pty. Ltd." },
- { 7874, "Highland Injection Molding Inc." },
- { 7875, "Shibaura Institute of Technology , Science Information Center" },
- { 7876, "Statens vegvesen" },
- { 7877, "Basefarm AS" },
- { 7878, "The University of the South Pacific" },
- { 7879, "T-TeleSec" },
- { 7880, "Peco II Inc." },
- { 7881, "Cognitas Technologies, Inc." },
- { 7882, "City of Prescott IT Department" },
- { 7883, "amirk.com" },
- { 7884, "Francis W. Parker School" },
- { 7885, "Arek Dreyer" },
- { 7886, "K Application" },
- { 7887, "nCUBE, Corp." },
- { 7888, "Iamba Technologies Ltd." },
- { 7889, "Lingnan University" },
- { 7890, "Arrow Electronics, Inc." },
- { 7891, "Confederation of Norwegian Business and Industry" },
- { 7892, "Lannert.de" },
- { 7893, "Yacom Internet Factory S.A" },
- { 7894, "VanCo.net s.r.o." },
- { 7895, "Amethon Solutions" },
- { 7896, "Rietumu Banka" },
- { 7897, "Knowledge Base BV" },
- { 7898, "Openet Telecom Ltd." },
- { 7899, "Cap Gemini, portugal" },
- { 7900, "Neuberger & Hughes GmbH" },
- { 7901, "Capiro" },
- { 7902, "alberta wellnet" },
- { 7903, "EcoProg Ltd." },
- { 7904, "Greenwich Capital Markets" },
- { 7905, "National Training Institute, Inc." },
- { 7906, "Brainworkers Srl" },
- { 7907, "Alliance Race Car Builders" },
- { 7908, "TelSoft Solutions, Inc" },
- { 7909, "American Communication Technologies International, Inc." },
- { 7910, "CSTS, Inc." },
- { 7911, "Dreamintek Co.,Ltd" },
- { 7912, "Staffware PLC" },
- { 7913, "Space Hellas S.A." },
- { 7914, "qmail-ldap project" },
- { 7915, "Cetevo AB" },
- { 7916, "PAGE" },
- { 7917, "Area de Ciencias de la Computaci\0303\0263n e Inteligencia Artificial" },
- { 7918, "Electrosonic Ltd" },
- { 7919, "Spyn Inc." },
- { 7920, "National Education Association of the United States" },
- { 7921, "AethyrNet Soluitions" },
- { 7922, "Spiro Kommunikation" },
- { 7923, "OrgaNet GmbH" },
- { 7924, "Bundesamt fuer Sicherheit in der Informationstechnik" },
- { 7925, "SPECS GmbH Surface Analysis and Computer Technology" },
- { 7926, "University of Antwerp" },
- { 7927, "Splendid Internet GmbH" },
- { 7928, "Wysdom Inc." },
- { 7929, "HBOS plc" },
- { 7930, "Telecom Argentina" },
- { 7931, "SMCC" },
- { 7932, "AmeriNet, Incorporated" },
- { 7933, "Promise Technology Inc." },
- { 7934, "Shanghai JiaoTong University" },
- { 7935, "IVT" },
- { 7936, "YANGJAE MICRO" },
- { 7937, "inPACT technologies" },
- { 7938, "IEE" },
- { 7939, "Liscon GmbH" },
- { 7940, "Celeritas" },
- { 7941, "Tecnica 6000 S.L." },
- { 7942, "Xtempus" },
- { 7943, "Home Wireless Networks, Inc." },
- { 7944, "PennyLan" },
- { 7945, "UMB Bank, n.a." },
- { 7946, "FlashPoint Technology, Inc." },
- { 7947, "MSP Technolgies" },
- { 7948, "DASIR ENTERPRISES" },
- { 7949, "Broadcloud Communications, Inc." },
- { 7950, "Overture Networks" },
- { 7951, "CNCTC" },
- { 7952, "Too Corporation" },
- { 7953, "Majitek" },
- { 7954, "Siemens Business Services AS" },
- { 7955, "Alfaskop AB" },
- { 7956, "Initio IT-l\0303\0270sninger AS" },
- { 7957, "Lares Technology" },
- { 7958, "Efficient Channel Coding, Inc." },
- { 7959, "Gabriel Roman" },
- { 7960, "FreeRein" },
- { 7961, "Harry L. Styron, Attorney at Law" },
- { 7962, "Not Another Corporation, Inc." },
- { 7963, "Tebie" },
- { 7964, "Master Comunicacao e Marketing Ltda. Cass" },
- { 7965, "Ingenieurbuero Tartsch" },
- { 7966, "SPY internetworking" },
- { 7967, "serveroperator.com (formerly 'Tekbabble')" },
- { 7968, "Spearhead Technologies Ltd." },
- { 7969, "BeComm" },
- { 7970, "Athelon Corporation" },
- { 7971, "T\0303\0270lveguten Lars Bahner" },
- { 7972, "XingTang Communication Technology Co.,Ltd." },
- { 7973, "TELEFONICA DE ESPA\0303\0221A" },
- { 7974, "TURBOMECA" },
- { 7975, "Ark e-Management Ltd." },
- { 7976, "Brotsman & Dreger, Inc." },
- { 7977, "VidSoft GmbH" },
- { 7978, "France Telecom Hosting" },
- { 7979, "Storigen Systems" },
- { 7980, "Sistemas y Aplicaciones de Telecomunicaciones S.A.Jose Luis" },
- { 7981, "Interbind" },
- { 7982, "The Simon Shapiro Foundation" },
- { 7983, "HPEB (Health technology Planning & Evaluation Board)" },
- { 7984, "Ticket Master/CitySearch Corp." },
- { 7985, "University of Catania" },
- { 7986, "ip.access" },
- { 7987, "Universite de Pau et des Pays de l'Adour" },
- { 7988, "Universit\0303\0251 Nancy 2" },
- { 7989, "IMAG" },
- { 7990, "EOI Technologies, Inc." },
- { 7991, "eLaw.com Inc" },
- { 7992, "PRFD" },
- { 7993, "Factorit S.p.A" },
- { 7994, "Continuous Computing Corp." },
- { 7995, "Snell & Wilcox Ltd" },
- { 7996, "Electric Power Research Institute(EPRI)" },
- { 7997, "Ball Corporation" },
- { 7998, "MailFriday" },
- { 7999, "TP Internet" },
- { 8000, "Ipace Inc." },
- { 8001, "Qitek" },
- { 8002, "Metamerge AS" },
- { 8003, "Swisscom IP-Plus" },
- { 8004, "MID GmbH" },
- { 8005, "Physics Department, Queen Mary, University of London" },
- { 8006, "EINSTEINet GmbH" },
- { 8007, "threllis GmbH" },
- { 8008, "Pactolus Communication Software, Inc." },
- { 8009, "iSecuritas" },
- { 8010, "ExaNet" },
- { 8011, "McKee Foods Corporation" },
- { 8012, "Hyperdrive Sistemas Ltda" },
- { 8013, "Nextlevel.com Internet Productions Inc." },
- { 8014, "Stonefly Networks, Inc." },
- { 8015, "Airocon" },
- { 8016, "Ravensbourne College of Design & Communication" },
- { 8017, "Primus Canada" },
- { 8018, "Hogeschool van Arnhem en Nijmegen" },
- { 8019, "The Stellar Ice Company" },
- { 8020, "Ecole Normale Sup\0303\0251rieure de Lyon" },
- { 8021, "G. A. Enterprises" },
- { 8022, "Senets Broadband, Inc." },
- { 8023, "InfoCruiser Inc." },
- { 8024, "QuoVadis Limited" },
- { 8025, "Friendlyworks" },
- { 8026, "Rockbrook Systems Group" },
- { 8027, "binHOST.com, Inc." },
- { 8028, "cast" },
- { 8029, "DCTC" },
- { 8030, "Prakash Cotton Mills Ltd." },
- { 8031, "University Library of Kassel, Germany" },
- { 8032, "Agenda d.o.o." },
- { 8033, "Almende" },
- { 8034, "Rohill Technologies B.V." },
- { 8035, "RY Enterprises" },
- { 8036, "USA.NET" },
- { 8037, "COLOMAR Group, Inc" },
- { 8038, "HomeBase Work Solutions" },
- { 8039, "silly-ants" },
- { 8040, "Thunder Systems, Inc." },
- { 8041, "Hostway Corporation" },
- { 8042, "eCELL Technologies, Inc." },
- { 8043, "ProActiveMonitoring, Inc." },
- { 8044, "M.J. DuChene & Associates" },
- { 8045, "Glen Lewis" },
- { 8046, "Utah Java User Group" },
- { 8047, "OSEDU" },
- { 8048, "Avatar Internet Services" },
- { 8049, "NetAccess, Inc." },
- { 8050, "RISS-Telecom" },
- { 8051, "Michael McCafferty" },
- { 8052, "TesserNet Systems Inc." },
- { 8053, "Islington ave." },
- { 8054, "The Scan Shop Pty. Ltd." },
- { 8055, "Optilink Technologies Company Limited" },
- { 8056, "SHENYANG NEU-ALPINE SOFTWARE CO.,LTD." },
- { 8057, "CESNET" },
- { 8058, "MessageVine" },
- { 8059, "Net To Net Technologies" },
- { 8060, "Armstrong Atlantic State University" },
- { 8061, "Multipoint Communications Ltd" },
- { 8062, "ColorMax Interactive" },
- { 8063, "M@innet Communication Ltd." },
- { 8064, "Global Technology Solutions" },
- { 8065, "Uni-Ter Underwriting Management Corporation" },
- { 8066, "WatchMark Corporation" },
- { 8067, "MCI" },
- { 8068, "Buffalo Rock Company" },
- { 8069, "Rozz Enterprises" },
- { 8070, "ZeroHype Technologies, Inc." },
- { 8071, "Sandstorm Enterprises, Inc." },
- { 8072, "net-snmp" },
- { 8073, "Lumos Technologies Inc" },
- { 8074, "Box Solutions Corporation" },
- { 8075, "Lateral Concepts and Designs" },
- { 8076, "Siemens PSE Austria" },
- { 8077, "ChamberSign France" },
- { 8078, "INU Consultancy" },
- { 8079, "ensoport.com" },
- { 8080, "Fastweb S.p.A." },
- { 8081, "Magnum Solutions Ltd" },
- { 8082, "SEPATON, Inc." },
- { 8083, "Packet Design" },
- { 8084, "tangali.eu.org" },
- { 8085, "IronStream Inc" },
- { 8086, "NUASIS Corporation" },
- { 8087, "TierNext" },
- { 8088, "DCSI" },
- { 8089, "Covad Communications" },
- { 8090, "Enterprise Computing Services" },
- { 8091, "IP Soft, Inc." },
- { 8092, "Elgo Maribor d.o.o." },
- { 8093, "Aliroo Ltd." },
- { 8094, "DreamArts Corp." },
- { 8095, "INELCOM Ingenier\0303\0255a Electr\0303\0263nica Comercial S.A" },
- { 8096, "The Voice Technology Forum" },
- { 8097, "Servicom 2000, S. L." },
- { 8098, "Morat Games Ltd" },
- { 8099, "Alex Wilson Coldstream Ltd" },
- { 8100, "Softricity, Inc." },
- { 8101, "Zambeel, Inc." },
- { 8102, "Mark Morgan Enterprises" },
- { 8103, "Winstechnet Co.,Ltd" },
- { 8104, "Sun Microsystems Professional Services" },
- { 8105, "Appilog" },
- { 8106, "LUXMATE Controls GmbH" },
- { 8107, "Kabira" },
- { 8108, "VHI" },
- { 8109, "Price Express" },
- { 8110, "Message Central plc." },
- { 8111, "Pacific Trade & Technology" },
- { 8112, "Green Shield Canada" },
- { 8113, "Bellanet International Secretariat" },
- { 8114, "Naval Operational Logisitics Support Center" },
- { 8115, "Birch Telecom" },
- { 8116, "Danware Data A/S" },
- { 8117, "NAFEM (North American Association of Food Equipment Manufacturers)" },
- { 8118, "Capitol Systems Corporation" },
- { 8119, "Mission Valley Regional Occupational Program David" },
- { 8120, "Transvirtual Technologies, Inc." },
- { 8121, "Ridgeway Systems & Software Ltd." },
- { 8122, "KB Impuls Service GmbH" },
- { 8123, "Kompetenznetz Maligne Lymphome" },
- { 8124, "Carrefour" },
- { 8125, "Internet Services" },
- { 8126, "My Docs Online, Inc" },
- { 8127, "Effinity Labs" },
- { 8128, "Boco" },
- { 8129, "JadeBird HuaGuang Ltd Co." },
- { 8130, "Heimann Biometric Systems GmbH" },
- { 8131, "Glory Telecom. Co.,Ltd." },
- { 8132, "Nasik Welding Products Pvt.Ltd" },
- { 8133, "FSSC-London" },
- { 8134, "Insitel" },
- { 8135, "Andong National University" },
- { 8136, "Centrul de Pregatire in Informatica" },
- { 8137, "Palisade Systems" },
- { 8138, "De Roeck Software Engineering BVBA" },
- { 8139, "Aaxion Software Corporation" },
- { 8140, "C2 Technologies, Inc." },
- { 8141, "Kashpureff Boling Laboratories, Inc." },
- { 8142, "HCA The Healthcare Company" },
- { 8143, "ICTV" },
- { 8144, "Fiberxon (China) Corp., Ltd" },
- { 8145, "University of Salzburg" },
- { 8146, "Snakegully" },
- { 8147, "Mercury Telecommunications" },
- { 8148, "Niragongo Technologies Ltd." },
- { 8149, "Generalitat Valenciana" },
- { 8150, "SECARON AG" },
- { 8151, "Worldweb.net" },
- { 8152, "Visto Corporation" },
- { 8153, "jGuild Internation ltd" },
- { 8154, "Riser Management Systems" },
- { 8155, "Transcept, Inc." },
- { 8156, "AgencyWorks" },
- { 8157, "SynCom Network, Inc." },
- { 8158, "MSP-LUB" },
- { 8159, "SHIN SATELLITE PUBLIC COMPANY LIMITED. Pho" },
- { 8160, "Digital Platform Support Services" },
- { 8161, "Star Home GMBH" },
- { 8162, "DEXIA" },
- { 8163, "Double D Electronics Ltd" },
- { 8164, "Starent Networks" },
- { 8165, "boutemy.com" },
- { 8166, "Viag Interkom" },
- { 8167, "Transversal" },
- { 8168, "Nectar.com" },
- { 8169, "Carroll Lutheran Village" },
- { 8170, "Monitor Group" },
- { 8171, "Oni Solutions" },
- { 8172, "Johns Hopkins University, MSEL-LCS" },
- { 8173, "INDRA Sistemas" },
- { 8174, "Netburner" },
- { 8175, "Carrier9 Networks" },
- { 8176, "AstroDesign,Inc." },
- { 8177, "HCL Communications" },
- { 8178, "Just Innovative Software GmbH" },
- { 8179, "Communications Laboratories Telekommunikations Dienstleistungs-Ges.m.b.H." },
- { 8180, "Spirea" },
- { 8181, "Commarco GmbH (formerly 'Scholz & Friends Dresden GmbH')" },
- { 8182, "The Boston Bit Co" },
- { 8183, "NetSource America Inc." },
- { 8184, "Inspira S.L." },
- { 8185, "Online Creation, Inc." },
- { 8186, "California Institute of Technology" },
- { 8187, "Sharinga Networks Inc." },
- { 8188, "AXA Technology Services Switzerland AG (formerly 'Winterthur Versicherungen')" },
- { 8189, "Gerichhausen, Adomeit & Terstappen GmbH" },
- { 8190, "3M Deutschland GmbH (formerly 'Quante')" },
- { 8191, "glutam.at" },
- { 8192, "Symbiont Networks, Inc." },
- { 8193, "Telemetry Technologies" },
- { 8194, "Targetnet.com Inc." },
- { 8195, "Effinity Net, LC" },
- { 8196, "Teldar Corporation" },
- { 8197, "LearningSoft Corp." },
- { 8198, "eBuilt, Inc." },
- { 8199, "Instituto Tecnol\0303\0263gico Aut\0303\0263nomo de M\0303\0251xico" },
- { 8200, "UNNATI COMPUTERS" },
- { 8201, "XCelaron Pty Ltd" },
- { 8202, "Toro Assicurazioni S.p.A." },
- { 8203, "LPG Innovations" },
- { 8204, "Cymtec Systems, Inc." },
- { 8205, "Unassigned" },
- { 8206, "Centro Regional de Investigaciones Basicas y Aplicadas de Bahia-Blanca" },
- { 8207, "Integratus, Inc." },
- { 8208, "Best Western International" },
- { 8209, "Informio" },
- { 8210, "Centegy" },
- { 8211, "ShenZhen TCL Communication Technology Co.,Ltd." },
- { 8212, "Harbour Networks Co." },
- { 8213, "Faculty of Medicine, University of Sydney" },
- { 8214, "Atomica" },
- { 8215, "Authentified" },
- { 8216, "Cyzen Tech.,Co.LTD" },
- { 8217, "SLAonline.com Ltd" },
- { 8218, "EC - Erdoelchemie GmbH" },
- { 8219, "Ecomda" },
- { 8220, "TCL Holdings Co., Ltd." },
- { 8221, "BAE SYSTEMS, Integrated Defense Solutions" },
- { 8222, "Matthew White" },
- { 8223, "Atlas Commerce" },
- { 8224, "LeasedMinds" },
- { 8225, "Open Connect AG" },
- { 8226, "GigaNews.com, Inc." },
- { 8227, "CyberObject Corp" },
- { 8228, "Jalan Network Services, Inc." },
- { 8229, "Phil Systems" },
- { 8230, "RING! ROSA Products Bv" },
- { 8231, "Lineo" },
- { 8232, "Fachhochschule Giessen-Friedberg" },
- { 8233, "iBasis, Inc." },
- { 8234, "ECET International" },
- { 8235, "CENIT AG Systemhaus" },
- { 8236, "White Horse Interactive" },
- { 8237, "NCC GmbH" },
- { 8238, "Lutheran Brotherhood" },
- { 8239, "Peribit Networks" },
- { 8240, "Path 1" },
- { 8241, "Securant Technologies" },
- { 8242, "Security Portal, Inc" },
- { 8243, "iPass, Inc." },
- { 8244, "Brocade Communications Systems, Inc. (formerly 'McDATA Corp.')" },
- { 8245, "Vsovt Ltd." },
- { 8246, "Cistron Internet Services" },
- { 8247, "University of Rostock" },
- { 8248, "Turin Networks Inc" },
- { 8249, "Verein f\0303\0274r Computergenealogie e.V." },
- { 8250, "Shire.Net LLC" },
- { 8251, "IIGA Co.,Ltd." },
- { 8252, "Digital Strategies, Inc." },
- { 8253, "AWOLart.com" },
- { 8254, "Aleph-Null, Inc." },
- { 8255, "Tejas Networks" },
- { 8256, "Solution - The Computer People eK" },
- { 8257, "Southern Ural State University" },
- { 8258, "kuk-Systemprogrammierung" },
- { 8259, "Banco de Sabadell, S.A." },
- { 8260, "Intrexa Corp" },
- { 8261, "MediaCast" },
- { 8262, "Wavion" },
- { 8263, "Jamby BV" },
- { 8264, "Recreativos Franco, S.A." },
- { 8265, "Entrada Networks, Inc." },
- { 8266, "Intelnet S.A." },
- { 8267, "Arula Systems" },
- { 8268, "Mark Tippetts" },
- { 8269, "CJSC Malva" },
- { 8270, "MJL Technology" },
- { 8271, "Fachhochschule Vorarlberg" },
- { 8272, "Nameplanet Ltd." },
- { 8273, "Standard Communications" },
- { 8274, "Interadnet" },
- { 8275, "INSA Toulouse" },
- { 8276, "Mpathix" },
- { 8277, "PSC-ITSolutions.NET" },
- { 8278, "St. Elisabeth GmbH" },
- { 8279, "f3pu5.net" },
- { 8280, "Fiver LightCom Co., Ltd." },
- { 8281, "Movelife" },
- { 8282, "BAE Systems Defence Pty Ltd (formerly 'Tenix Defence Systems - Systems Adelaide')" },
- { 8283, "TSMT - Magic Touch Ltd" },
- { 8284, "ACTL" },
- { 8285, "FlexLight" },
- { 8286, "Incirco" },
- { 8287, "Klinikum der Johannes Gutenberg-Universit\0303\0244t Mainz" },
- { 8288, "Jung von Matt Werbeagentur GmbH" },
- { 8289, "Universita' degli Studi di Napoli \"Federico II\"" },
- { 8290, "Certus Technology, Inc." },
- { 8291, "DigiStamp, Inc." },
- { 8292, "Mt. Holyoke College" },
- { 8293, "Bang Networks, Inc." },
- { 8294, "infoman" },
- { 8295, "BWA" },
- { 8296, "Dialogos3 s.r.l." },
- { 8297, "IrisOnLine.com BV" },
- { 8298, "v/h Nictoglobe" },
- { 8299, "secunet Security Networks AG" },
- { 8300, "State of Wisconsin - Security and Directory Services" },
- { 8301, "Technische Universitaet Darmstadt" },
- { 8302, "EdeNET Communications, Inc." },
- { 8303, "Gelco Information Network" },
- { 8304, "Atomic Blue Bear" },
- { 8305, "OARnet" },
- { 8306, "Go Local Consulting, Inc." },
- { 8307, "tecnetdev" },
- { 8308, "GTran Inc." },
- { 8309, "Virtela Communications" },
- { 8310, "Trak Systems" },
- { 8311, "Police Information Technology Organization" },
- { 8312, "OskolNET JSC" },
- { 8313, "JARDiX AG" },
- { 8314, "AVL Emission Test Systems GmbH (formerly 'PEUS Systems GmbH')" },
- { 8315, "Minacom Labs Inc." },
- { 8316, "Staffwell" },
- { 8317, "FiberCycle Networks" },
- { 8318, "Twisted Pair Solutions, Inc." },
- { 8319, "Blue Wave Systems" },
- { 8320, "Vonova Corporation" },
- { 8321, "Entidad Acreditadora Ley 19.799 - Gobierno de Chile" },
- { 8322, "Education Networks of America" },
- { 8323, "Gemteq Software" },
- { 8324, "The University of Western Australia" },
- { 8325, "Wanadoo Spain" },
- { 8326, "Unreal Technology spol. s r.o." },
- { 8327, "IUFM Reims" },
- { 8328, "GyD Iberica" },
- { 8329, "iPromoGroup Ltd." },
- { 8330, "Omnexus N.V., Amsterdam, W\0303\0244denswil Branch" },
- { 8331, "Matti Valtuustoon" },
- { 8332, "universit\0303\0251 d'Evry Val d'Essonne" },
- { 8333, "GROW.co,.Ltd" },
- { 8334, "dynamicsoft Inc." },
- { 8335, "Universit\0303\0251 des Sciences Sociales de Toulouse" },
- { 8336, "Superior Consultant Holdings Corporation" },
- { 8337, "Hybricon Corp." },
- { 8338, "Phonetics, Inc." },
- { 8339, "Young & Laramore" },
- { 8340, "Image Computing Incorporated" },
- { 8341, "Utility Data Systems, Inc." },
- { 8342, "NTRU Cryptosystems" },
- { 8343, "NEXTRA Czech Republic s.r.o." },
- { 8344, "Apparate Networks" },
- { 8345, "Health Net, Inc." },
- { 8346, "Universit\0303\0251 de Limoges - S.C.I. - Laine Jean" },
- { 8347, "TechnoCage, Inc" },
- { 8348, "Data Avenue, Inc." },
- { 8349, "ConnectScape, Inc." },
- { 8350, "T-Systems Hungary Kft." },
- { 8351, "I-Land Internet Services" },
- { 8352, "Pronym S.A.R.L." },
- { 8353, "Excelsior Systems Limited" },
- { 8354, "GIB" },
- { 8355, "sarfata's net" },
- { 8356, "Visual Revolutions" },
- { 8357, "Mangosoft Corporation" },
- { 8358, "TELOS Technology Inc." },
- { 8359, "IP blue" },
- { 8360, "Mirant Corporation" },
- { 8361, "Portail des IUFM" },
- { 8362, "mSAFE" },
- { 8363, "Store-O-Matic, Inc." },
- { 8364, "Lichen Hosting" },
- { 8365, "Advanced Information Management Solutions Pty Ltd" },
- { 8366, "Fiberlink Communications Corp" },
- { 8367, "NationNet.Com" },
- { 8368, "ServerWerks Inc" },
- { 8369, "NTIkorea" },
- { 8370, "NextSet" },
- { 8371, "AGENDA" },
- { 8372, "University of Sussex" },
- { 8373, "SEAL Systems AG & Co. KG" },
- { 8374, "DVZ Datenverarbeitungszentrum Mecklenburg-Vorpommern" },
- { 8375, "Outercurve Technologies" },
- { 8376, "Universit\0303\0251 de Bourgogne" },
- { 8377, "ReefEdge, Inc." },
- { 8378, "Texas Memory Systems" },
- { 8379, "BroadRiver Communications" },
- { 8380, "Mentum Group" },
- { 8381, "Certainty Solutions, Inc." },
- { 8382, "C&C Engineering, Inc." },
- { 8383, "SigmaSoft, Inc." },
- { 8384, "eBay, Inc." },
- { 8385, "ENSAM CER de Metz" },
- { 8386, "LION bioscience AG" },
- { 8387, "Globe Internet s.r.o." },
- { 8388, "Techniker Krankenkasse" },
- { 8389, "Ergon Informatik" },
- { 8390, "Mettler Toledo" },
- { 8391, "Bicman Netologies" },
- { 8392, "XMission" },
- { 8393, "GIMAS mbH" },
- { 8394, "Privador AS" },
- { 8395, "Tulane University" },
- { 8396, "virtual earth Gesellschaft f\0303\0274r Wissens re/pr\0303\0244 sentation mbH" },
- { 8397, "Vecerina" },
- { 8398, "University of West Florida" },
- { 8399, "iVEA Technologies" },
- { 8400, "Evercom Systems, Inc." },
- { 8401, "FoxTravel" },
- { 8402, "ePlus, Inc." },
- { 8403, "ARA Network Technologies, Co, Ltd." },
- { 8404, "Akamba Corporation" },
- { 8405, "Tohono Consulting" },
- { 8406, "Morningstar Systems, Inc." },
- { 8407, "MyBau.Com" },
- { 8408, "InterComponentWare AG" },
- { 8409, "ztevision" },
- { 8410, "Landis & Gyr Communications SAS" },
- { 8411, "e-Qual" },
- { 8412, "Satyam Computer Services ltd" },
- { 8413, "GlobalNaps" },
- { 8414, "Cedacri S.p.A." },
- { 8415, "CyberElan LLC" },
- { 8416, "Shaw Cablesystems, G.P." },
- { 8417, "StorageApps, Inc." },
- { 8418, "listless ennui" },
- { 8419, "Rockwell Collins" },
- { 8420, "Digi-Sign Certification Services Limited" },
- { 8421, "VODTEL COMMUNICATIONS Inc." },
- { 8422, "Libritas, Inc" },
- { 8423, "twisd AG" },
- { 8424, "ICUBE SRL" },
- { 8425, "AP Engines, Inc." },
- { 8426, "Watlow" },
- { 8427, "Worldgate Networks Private Limited" },
- { 8428, "Turtle Entertainment GmbH" },
- { 8429, "2NETFX (Media Now, Inc.DBA 2NETFX)" },
- { 8430, "TranSwitch Corporation" },
- { 8431, "Broadcasting Interest Enterprise, Inc.Christopher" },
- { 8432, "TeraGlobal Communications" },
- { 8433, "3e Technologies International Inc." },
- { 8434, "Fox Chase Cancer Center" },
- { 8435, "HyperEdge Inc." },
- { 8436, "Requisite Technology" },
- { 8437, "Bolder Internet Group, Inc." },
- { 8438, "ReFlex Communications, Inc." },
- { 8439, "CADRE Design" },
- { 8440, "Tsuda College" },
- { 8441, "ShangHai WaiGaoQiao Free Trade Zone network development Co.,Ltd" },
- { 8442, "Sendtek Corporation" },
- { 8443, "Telisma" },
- { 8444, "IIE (Institut d'Informatique d'Entreprise)" },
- { 8445, "Bilstone Ltd" },
- { 8446, "Barclaycard" },
- { 8447, "Riverglade Consultants Ltd" },
- { 8448, "Avantis GmbH" },
- { 8449, "ePUREDATA Inc." },
- { 8450, "Cetacean Networks" },
- { 8451, "Petri Laitinen" },
- { 8452, "Guernsey.Net Ltd." },
- { 8453, "npw.net" },
- { 8454, "Donald E Reynolds" },
- { 8455, "Old Donkey Enterprises" },
- { 8456, "OPTIBASE" },
- { 8457, "Deepend Prague" },
- { 8458, "ZOOM Networks Inc." },
- { 8459, "Shandong WeiFang Beida JadeBird Inc." },
- { 8460, "University of Illinois at Chicago" },
- { 8461, "UFO Solutions Limited" },
- { 8462, "Sonic.Net, Inc." },
- { 8463, "PEM Electronics" },
- { 8464, "University of Wollongong IEEE Student Branch" },
- { 8465, "LodeSoft Corp." },
- { 8466, "RAWK Systems, Inc." },
- { 8467, "La Page Trad" },
- { 8468, "American Medical Association" },
- { 8469, "Domestic WANs" },
- { 8470, "Learning Machines, Inc." },
- { 8471, "Universidad Del Bio-Bio" },
- { 8472, "Lynk a division of BOS Ltd" },
- { 8473, "University of Massachusetts Amherst" },
- { 8474, "Saltec Powerlink" },
- { 8475, "Veilex" },
- { 8476, "Kyuden Infocom Company, Inc." },
- { 8477, "CyberTron Software GmbH" },
- { 8478, "TongTech CO., Ltd," },
- { 8479, "now.com" },
- { 8480, "Fairleigh Dickinson University" },
- { 8481, "HiGHKU" },
- { 8482, "Colorado State University" },
- { 8483, "Trenza, Corp" },
- { 8484, "Allegheny Energy" },
- { 8485, "Virtual Software, S.L." },
- { 8486, "City-Net Tech. Inc." },
- { 8487, "MightyView, Inc." },
- { 8488, "University of Alabama" },
- { 8489, "Pico Technology Ltd" },
- { 8490, "Direct Commerce" },
- { 8491, "drzyzgula.org" },
- { 8492, "Iscanet Internet Services" },
- { 8493, "Web Office China" },
- { 8494, "MOSAIC SOFTWARE AG" },
- { 8495, "MILESYS" },
- { 8496, "Facilitair bedrijf, Hogeschool van Utrecht" },
- { 8497, "Deluxe Video Services Ltd" },
- { 8498, "Akumiitti Ltd" },
- { 8499, "Eduserv" },
- { 8500, "Dr. Nagler & Cie. Consult GmbH" },
- { 8501, "ANTEL - Operations" },
- { 8502, "Internet Park, Inc." },
- { 8503, "Unicess Networks" },
- { 8504, "Sparzo Enterprises" },
- { 8505, "SKYTEC AG" },
- { 8506, "Ximian, Inc." },
- { 8507, "CyberTrails, LLC" },
- { 8508, "Final Piece" },
- { 8509, "ViNAWARA Co.,Ltd." },
- { 8510, "Yunbj Co.,Ltd." },
- { 8511, "ThoughtWorks, Inc." },
- { 8512, "Capgemini Telecom Media & Networks Sweden AB" },
- { 8513, "Katelco" },
- { 8514, "Sonocomp GmbH" },
- { 8515, "Deonet Co., Ltd." },
- { 8516, "Proxion Org" },
- { 8517, "APL/Software" },
- { 8518, "JGiovatto" },
- { 8519, "Trevalon, Inc." },
- { 8520, "Winterlink Inc" },
- { 8521, "Bytemobile, Inc." },
- { 8522, "Machinebuilt Software, Inc." },
- { 8523, "Petrasoft Inc" },
- { 8524, "Cybercafe" },
- { 8525, "Paula's Home Creations" },
- { 8526, "Consiglio Nazionale del Notariato" },
- { 8527, "Harvard MIT Data Center" },
- { 8528, "HeyAnita Inc." },
- { 8529, "Salira Optical Network Systems, Inc." },
- { 8530, "MomsDesk Commerce Corporation" },
- { 8531, "SyncWorks" },
- { 8532, "NANYA Technology Corp." },
- { 8533, "Snapshield" },
- { 8534, "HiHat Enterprise Solutions" },
- { 8535, "Nekhem Technologies" },
- { 8536, "Datachorus" },
- { 8537, "Turbo NetWorks Co., Ltd." },
- { 8538, "Saxonia Systems AG" },
- { 8539, "Institute \"Norilskproject\"" },
- { 8540, "LCPC" },
- { 8541, "Interactive Media S.r.l." },
- { 8542, "Sandial Systems, Inc." },
- { 8543, "Global TeleLink Services, Inc." },
- { 8544, "SmallBuddha.org" },
- { 8545, "HTL Steyr" },
- { 8546, "Coleebris" },
- { 8547, "Mississippi State University" },
- { 8548, "South Suburban College" },
- { 8549, "Cylant Technology" },
- { 8550, "Hatteras Networks" },
- { 8551, "Yotta Networks, Inc" },
- { 8552, "TechTracker.com" },
- { 8553, "Subtheory" },
- { 8554, "Departement Elektrotechnik, ETH Zuerich" },
- { 8555, "Digitalwave, Inc" },
- { 8556, "Bank MENATEP SPb, Samara" },
- { 8557, "Globaloop Ltd." },
- { 8558, "Gimnazija Bezigrad Ljubljana" },
- { 8559, "Coconut" },
- { 8560, "Cleverlance s.r.o." },
- { 8561, "Hotsip" },
- { 8562, "Platinet Communications" },
- { 8563, "SSE" },
- { 8564, "CTI2" },
- { 8565, "Medical Research Laboratories" },
- { 8566, "Lasse Hiller\0303\0270e Petersen" },
- { 8567, "Active Power, Inc." },
- { 8568, "VirtualTek Corporation" },
- { 8569, "iXON" },
- { 8570, "Enonic" },
- { 8571, "ConnectSuite" },
- { 8572, "TDS Informationstechnologie AG" },
- { 8573, "S4i" },
- { 8574, "SEAS LLC" },
- { 8575, "ManageIT Company" },
- { 8576, "Flowstone, Inc." },
- { 8577, "Axiowave Networks" },
- { 8578, "People.Com, Inc," },
- { 8579, "Operadora Protel, SA de CV" },
- { 8580, "Tellme Networks, Inc." },
- { 8581, "Oy Comsel System Ab Kristian" },
- { 8582, "Netgene Tech. Inc." },
- { 8583, "Kabelfoon BV" },
- { 8584, "Sorbonne" },
- { 8585, "MEDAV Digitale Signalverarbeitung GmbH" },
- { 8586, "MODCOMP GmbH" },
- { 8587, "WiredMinds Informationssysteme GmbH" },
- { 8588, "Munich Re Insurance AG" },
- { 8589, "Framesoft AG Software Applications" },
- { 8590, "Okena, Inc." },
- { 8591, "ManSoft" },
- { 8592, "CGI" },
- { 8593, "WebTone Technologies" },
- { 8594, "Telia eTelia A/S" },
- { 8595, "HITRON Technology, Inc." },
- { 8596, "NEUSOFT CO.,LTD" },
- { 8597, "Access Solutions International Corporation" },
- { 8598, "Digital Diagnostic Imaging" },
- { 8599, "Velankani Information Systems Ltd." },
- { 8600, "Linux Generation B.V." },
- { 8601, "BellSouth Customer Technologies" },
- { 8602, "Qarana Solutions" },
- { 8603, "Flarion Technologies" },
- { 8604, "Leapfrog Technologies LLC" },
- { 8605, "Wireless Knowledge" },
- { 8606, "Vancouver School District # 37" },
- { 8607, "Portland Internetworks" },
- { 8608, "Cini Systems" },
- { 8609, "Newsradar Deutschland" },
- { 8610, "Snmp Everywhere" },
- { 8611, "VSoft" },
- { 8612, "Toe Technology Company Limited" },
- { 8613, "HealthNetwork Systems" },
- { 8614, "Roxen Internet Software" },
- { 8615, "BioWare Corp." },
- { 8616, "Witt Family" },
- { 8617, "ATYF" },
- { 8618, "iProperty.com" },
- { 8619, "David Hopwood Network Security" },
- { 8620, "AKO" },
- { 8621, "Excido Pty Ltd" },
- { 8622, "Satyam Infoway Limited" },
- { 8623, "RadioMobil a.s." },
- { 8624, "Denis Neuhart Computing" },
- { 8625, "The Lifetime Healthcare Companies" },
- { 8626, "Club Internet" },
- { 8627, "Ailis" },
- { 8628, "Arkoon Network Security" },
- { 8629, "Fireclick" },
- { 8630, "MPI tech" },
- { 8631, "MeshNetworks, Inc." },
- { 8632, "Winphoria Networks" },
- { 8633, "Atmos Energy Corporation" },
- { 8634, "The ZaneRay Group, Inc." },
- { 8635, "Rob Semenoff Enterprises" },
- { 8636, "Planet Pratt" },
- { 8637, "Amphus, Inc." },
- { 8638, "RouteScience Technologies, Inc." },
- { 8639, "Polytrust AB" },
- { 8640, "Santam Limited" },
- { 8641, "7441.com" },
- { 8642, "EnderUNIX" },
- { 8643, "The Math Forum" },
- { 8644, "Anoto" },
- { 8645, "InfiniSwitch Corporation" },
- { 8646, "Scottish Qualifications Authority" },
- { 8647, "Winbox.com" },
- { 8648, "Renaissance Technologies Corp." },
- { 8649, "Pinnacle Technology, Inc." },
- { 8650, "Apriva, Inc." },
- { 8651, "Heart Institute (InCor), University of S\0303\0243o Paulo Medical School" },
- { 8652, "Uppsala University" },
- { 8653, "unassigned" },
- { 8654, "INTRINsec" },
- { 8655, "Apcentric Limited" },
- { 8656, "DCM Online Limited" },
- { 8657, "Hochschulrechenzentrum, Fachhochschule fuer Wirtschaft und Technik(FHTW) Berlin" },
- { 8658, "Empresa Nacional de Certificacion Electronica" },
- { 8659, "Asia e-publications Ltd." },
- { 8660, "Telaid" },
- { 8661, "University of Utah College of Engineering CADE Lab" },
- { 8662, "University of Louisville" },
- { 8663, "Bermuda Triangle Services Ltd" },
- { 8664, "Akeena, Inc." },
- { 8665, "Bruce Technical Services" },
- { 8666, "FirstPeer" },
- { 8667, "Textme.org Ltd" },
- { 8668, "Eli Lilly and Company" },
- { 8669, "Teracom Telecomunica\0303\0247\0303\0265es Ltda" },
- { 8670, "Polyester Media" },
- { 8671, "ETI" },
- { 8672, "Farmers Insurance" },
- { 8673, "Borderware Technologies Inc." },
- { 8674, "Java Secure" },
- { 8675, "Autodesk, Inc." },
- { 8676, "Transparent" },
- { 8677, "ISDN-Net, Inc." },
- { 8678, "Intrusion.com" },
- { 8679, "Atlas Copco Airpower" },
- { 8680, "Open Roads Consulting Inc." },
- { 8681, "Free Speech Media LLC" },
- { 8682, "UltraSecure.com" },
- { 8683, "Integrity Systems Ltd." },
- { 8684, "frd.net" },
- { 8685, "Habeebee" },
- { 8686, "Personal Evaluation" },
- { 8687, "Milestone R/D Labs" },
- { 8688, "Shepherd-Express" },
- { 8689, "Miller Simon McGinn and Clark" },
- { 8690, "IPAGEON Co.Ltd" },
- { 8691, "Moxa Technologies Co., Ltd." },
- { 8692, "Network Programs" },
- { 8693, "A-xell Wireless AB (formerly 'Avitec AB')" },
- { 8694, "University of Wolverhampton" },
- { 8695, "Mission Data" },
- { 8696, "myCustoms" },
- { 8697, "Raiffeisen Informatik GmbH" },
- { 8698, "Viasat, Inc." },
- { 8699, "iWay Software" },
- { 8700, "World Savings" },
- { 8701, "Intelligent Information Systems" },
- { 8702, "Noncyclic Networks" },
- { 8703, "Voyus Canada Inc." },
- { 8704, "Sakhalinsvyaz JSC" },
- { 8705, "Israel Local Authorities Data Processing Center LTD" },
- { 8706, "Unassigned" },
- { 8707, "SpiderNet Services Ltd" },
- { 8708, "Lumentis AB" },
- { 8709, "Landesamt f\0303\0274r Besoldung und Versorgung NRW" },
- { 8710, "Envoy Networks" },
- { 8711, "THALES Broadcast & Multimedia" },
- { 8712, "LANcope, Inc." },
- { 8713, "Abako Media Oy" },
- { 8714, "iNOC, Inc." },
- { 8715, "Health Sciences Centre" },
- { 8716, "Triveni Digital, Inc." },
- { 8717, "David Mistretta" },
- { 8718, "Gwent Consultancy" },
- { 8719, "Raviant Networks, Inc." },
- { 8720, "Zack Systems, Inc." },
- { 8721, "Ingram Technology Limited" },
- { 8722, "etoolbelt.net" },
- { 8723, "Integrated Data Pty Ltd" },
- { 8724, "Human Technology" },
- { 8725, "Canberra Institute of Technology" },
- { 8726, "Incisive Designs" },
- { 8727, "Torry Harris Business Solutions Thirunavukarasu" },
- { 8728, "Computer Network Information Center, Chinese Academy of Sciences" },
- { 8729, "LETEK Communications, Inc." },
- { 8730, "Serck Controls Ltd." },
- { 8731, "Pantor Engineering AB" },
- { 8732, "Tokyo Institute of Technology" },
- { 8733, "Ambient Computing, Inc." },
- { 8734, "Matthias Wimmer" },
- { 8735, "Quark Inc." },
- { 8736, "MetaVector Technologies" },
- { 8737, "SecureNet GmbH - Intranet & Internet Solutions" },
- { 8738, "Pirelli Informatica S.p.A." },
- { 8739, "KAPTECH" },
- { 8740, "KOM Networks" },
- { 8741, "SonicWALL, Inc." },
- { 8742, "Alphion" },
- { 8743, "RadioFrame Networks" },
- { 8744, "Colubris Networks Inc." },
- { 8745, "Inform\0303\0241tica para todos, SA de CV" },
- { 8746, "Queensland University of Technology" },
- { 8747, "Libelle AG" },
- { 8748, "LOQUENDO SpA" },
- { 8749, "TELCOM ITALIA LAB" },
- { 8750, "Bucknell University" },
- { 8751, "Geodesic Systems" },
- { 8752, "Kernel" },
- { 8753, "Dataflow Alaska, Inc." },
- { 8754, "XouL" },
- { 8755, "Hebrew University Computation Center" },
- { 8756, "Celltick" },
- { 8757, "Feather Mobile Systems" },
- { 8758, "Walnut Concepts" },
- { 8759, "LG Innotek Co., Ltd." },
- { 8760, "NEITech" },
- { 8761, "Zavod za varnostne tehnologije informacijske druzbe in elektronsko" },
- { 8762, "SI-CA" },
- { 8763, "eIQnetworks" },
- { 8764, "KB Electronics Ltd" },
- { 8765, "Telesoft Technologies Ltd" },
- { 8766, "Elsag S.p.A." },
- { 8767, "Bayour.COM" },
- { 8768, "Nevion (formerly 'Network Electronics')" },
- { 8769, "TeraOptic Networks, Inc." },
- { 8770, "The Emerginggroup Group" },
- { 8771, "ARCANVS, Inc." },
- { 8772, "e-Manufacturing Networks Inc." },
- { 8773, "CHINA TEXTILE NETWORK CO.,LTD." },
- { 8774, "Universal Scientific Industrial Co., Ltd." },
- { 8775, "BeST (Business Execution-Solutions & Technology) Dave" },
- { 8776, "Zman Tikshuv" },
- { 8777, "aQute" },
- { 8778, "SYAC" },
- { 8779, "Telespazio" },
- { 8780, "ip-connect GmbH" },
- { 8781, "ChamberSign" },
- { 8782, "Keutel" },
- { 8783, "akella.org" },
- { 8784, "BroadQuay Consultancy Ltd." },
- { 8785, "Guay Internet" },
- { 8786, "SecureOps Inc." },
- { 8787, "Ivrnet Inc." },
- { 8788, "CyberGate Internet Services" },
- { 8789, "PreNet Corporation" },
- { 8790, "Prisa Networks" },
- { 8791, "ivv GmbH" },
- { 8792, "Axes India Ltd" },
- { 8793, "Realize IT GmbH" },
- { 8794, "eYak Inc." },
- { 8795, "Inteliguard" },
- { 8796, "Gestion del Conocimiento S.A. Miquel" },
- { 8797, "Mannesmann Arcor AG & Co" },
- { 8798, "IT-Management & Solution GmbH" },
- { 8799, "cypherOptics" },
- { 8800, "YH Consulting" },
- { 8801, "SenaReider" },
- { 8802, "Yehti, Inc." },
- { 8803, "Thuridion" },
- { 8804, "Kirana Networks" },
- { 8805, "Kessler-Huron Computer Systems" },
- { 8806, "Gluon Networks" },
- { 8807, "Finestra Software" },
- { 8808, "Xi'an Xinli Network System Technology Co.,Ltd" },
- { 8809, "Tomorrow Software" },
- { 8810, "Artigas Computer" },
- { 8811, "Prompt2U" },
- { 8812, "ITBS OnLine" },
- { 8813, "Skyline Communications" },
- { 8814, "Funcom NV" },
- { 8815, "Collectively Sharper" },
- { 8816, "getyourcar AG" },
- { 8817, "Websemantix" },
- { 8818, "SandCherry Networks, Inc." },
- { 8819, "Raytion" },
- { 8820, "sysTime-solutions AG" },
- { 8821, "Phi Kappa Theta Fraternity - Gamma Tau Chapter" },
- { 8822, "Linuxcare, Inc." },
- { 8823, "I.NET S.p.A." },
- { 8824, "Wizzy" },
- { 8825, "DNX Communications" },
- { 8826, "ComNet Software Specialists,Inc" },
- { 8827, "Nu-kote International" },
- { 8828, "General Dynamics - Mission Systems" },
- { 8829, "Axell Wireless Limited (formerly 'Aerial Facilities Limited')" },
- { 8830, "Xyphius Solutions Inc." },
- { 8831, "Agora Systems Ltd" },
- { 8832, "Ecominds Ltd" },
- { 8833, "ISPMan" },
- { 8834, "Cognet Corp." },
- { 8835, "Wizard Productions" },
- { 8836, "AUUG Incorporated" },
- { 8837, "AscenVision" },
- { 8838, "ACS Internet, Inc." },
- { 8839, "Microtest" },
- { 8840, "MBridge Systems Inc." },
- { 8841, "InterCom International Communications Ltd." },
- { 8842, "Clockwork Web" },
- { 8843, "INACCESS NETWORKS SA" },
- { 8844, "Diveo Broadband Networks" },
- { 8845, "Enablence USA FTTX Networks Inc (formerly 'wave7optics')" },
- { 8846, "Caramail" },
- { 8847, "Pivotech Systems, Inc" },
- { 8848, "Rootroute Research" },
- { 8849, "LPMD.ORG" },
- { 8850, "Cyradis Technology Group Inc." },
- { 8851, "Ultra Enterprises" },
- { 8852, "AARNet Pty Ltd" },
- { 8853, "A-Trust" },
- { 8854, "INTENS IT" },
- { 8855, "Intelsis Sistemas Inteligentes S.A. Cesar" },
- { 8856, "IdecNet SA" },
- { 8857, "Nauticus Networks Inc." },
- { 8858, "destef.com Software" },
- { 8859, "Private Business Inc." },
- { 8860, "Holcim Group Support Ltd." },
- { 8861, "Secorvo Security Consulting GmbH" },
- { 8862, "AppWired, Inc." },
- { 8863, "Etiers International Inc" },
- { 8864, "Dystopium.com" },
- { 8865, "FAST Search and Transfer" },
- { 8866, "GeoTEC Internet" },
- { 8867, "StoreAge Networking Technologies" },
- { 8868, "Velos, Inc." },
- { 8869, "Coscend Corporation" },
- { 8870, "KINS(Knowlege and Information Net for Sharing) Lab." },
- { 8871, "Porthole Interactive Technologies" },
- { 8872, "Saintjo" },
- { 8873, "JAL INFORMATION TECHNOLOGY CO.,LTD." },
- { 8874, "Utt Technologies" },
- { 8875, "Columbitech AB" },
- { 8876, "willeke.com" },
- { 8877, "Suntail" },
- { 8878, "Firmenich SA" },
- { 8879, "Zetac Limited" },
- { 8880, "IDENTEC Solutions AG" },
- { 8881, "Trust Italia S.p.a." },
- { 8882, "Empower Interactive Group Limited" },
- { 8883, "Moonlight Systems" },
- { 8884, "Versant Corporation" },
- { 8885, "Internet Security One Ltd." },
- { 8886, "Beijing Raisecom Scientific & Technology Development Co., Ltd." },
- { 8887, "VASoft (Pty) Ltd." },
- { 8888, "WEBGSM" },
- { 8889, "virtual solution AG" },
- { 8890, "Broadcast Technology Limited" },
- { 8891, "sforce.org" },
- { 8892, "Chaman Productions" },
- { 8893, "Mobilitec" },
- { 8894, "Rivermen AB" },
- { 8895, "Information Systems Consulting (Insyc)" },
- { 8896, "Sistematica" },
- { 8897, "Alltel Information Services" },
- { 8898, "Weavers Network Consulting" },
- { 8899, "The McGraw-Hill Companies" },
- { 8900, "Intellitactics" },
- { 8901, "Monkeybagel Hardware Solutions" },
- { 8902, "GeoTEC Internet" },
- { 8903, "NetNearU CorporateTAM" },
- { 8904, "Cooper Industries" },
- { 8905, "HuntCorp Enterprises" },
- { 8906, "Solnet Pty Ltd" },
- { 8907, "GE CompuNet Computer AG & Co. oHG" },
- { 8908, "Belgacom NV of public Law" },
- { 8909, "DICA Technologies AG" },
- { 8910, "Meitner - Solu\0303\0247\0303\0265es Internet e Sistemas de Informa\0303\0247\0303\0243o, Lda" },
- { 8911, "Appelsiini Finland Oy" },
- { 8912, "Alice's Registry, Inc." },
- { 8913, "Federal Linux Systems" },
- { 8914, "Galderma Laboratories L.P." },
- { 8915, "Ralf Bensmann" },
- { 8916, "Infogate Online" },
- { 8917, "Strelitzia Be" },
- { 8918, "J-PHONE EAST CO.,LTD." },
- { 8919, "Huysmans en Kuypers Automatiseringsburo" },
- { 8920, "Bamboo MediaCasting" },
- { 8921, "Nice Work Textile Corp.Ltd" },
- { 8922, "RESI Informatica S.r.l." },
- { 8923, "Keyware" },
- { 8924, "Inforad - Com. Serv Ltda." },
- { 8925, "Transora" },
- { 8926, "VIP Switch Inc." },
- { 8927, "Paceline Systems Corporation" },
- { 8928, "Asta Networks" },
- { 8929, "Dominion Electronics Pty Ltd" },
- { 8930, "Pelago Networks" },
- { 8931, "Cordell, Inc" },
- { 8932, "WaterWare Internet Services, Inc." },
- { 8933, "Wokup" },
- { 8934, "b-process" },
- { 8935, "Wisdom Assen BV" },
- { 8936, "WebToGrid" },
- { 8937, "Thirdspace Living Ltd" },
- { 8938, "Cyberell Oy" },
- { 8939, "Frontec netSolution AB" },
- { 8940, "SAVVIS Communications" },
- { 8941, "JC Enterprises" },
- { 8942, "AMX Corp" },
- { 8943, "Analog Design Autoamtion Inc." },
- { 8944, "Obfuscated Networking" },
- { 8945, "In-Q-Tel Inc." },
- { 8946, "ThinAirApps" },
- { 8947, "Viacore, Inc." },
- { 8948, "A S Promotions LTD" },
- { 8949, "OuterSpace Consultants" },
- { 8950, "webBASIS, Inc." },
- { 8951, "Platys Communications" },
- { 8952, "JSC Belsvyaz" },
- { 8953, "MightySun LLC" },
- { 8954, "VTEX Typesetting Services" },
- { 8955, "GORGY TIMING" },
- { 8956, "ZICOM Electronic Security Systems Ltd." },
- { 8957, "Railinfrabeheer BV" },
- { 8958, "James A. Mahlen & Associates" },
- { 8959, "IER Incorporated" },
- { 8960, "Coree Networks Inc." },
- { 8961, "Paradigm Secure Communications" },
- { 8962, "IntruVert Networks, Inc." },
- { 8963, "Advanced Web Communication, division of Xecom, Incorporated" },
- { 8964, "Bezirksregierung Duesseldorf" },
- { 8965, "Dff Internet & Medien" },
- { 8966, "PurOptix" },
- { 8967, "NASA JSC" },
- { 8968, "Juha Saarinen IT Writer" },
- { 8969, "Rio Tinto" },
- { 8970, "Argogroup Interactive Ltd" },
- { 8971, "Speed to Market Engines" },
- { 8972, "IP Powerhouse Ltd." },
- { 8973, "Grupo Eurociber S.A." },
- { 8974, "Universitaet Marburg" },
- { 8975, "Soluzione Script GmbH" },
- { 8976, "Airia, Inc." },
- { 8977, "Synamics Inc." },
- { 8978, "Sears Holdings Corp" },
- { 8979, "The Real Asset Company Limited" },
- { 8980, "Collective Technologies" },
- { 8981, "Joeunsecurity" },
- { 8982, "Ipertrade s.r.l." },
- { 8983, "Bivio Networks" },
- { 8984, "C J SPAANS" },
- { 8985, "The Synaptic Group, Inc." },
- { 8986, "Arcotect Limited" },
- { 8987, "State Infocommunication Foundation of Estonia" },
- { 8988, "Pingworks" },
- { 8989, "Naino Corporation" },
- { 8990, "Redpill Linpro AS (formerly 'Linpro AS')" },
- { 8991, "MARPOSS S.p.A." },
- { 8992, "Unisoft Consultants" },
- { 8993, "Asera Inc." },
- { 8994, "Avantas Networks" },
- { 8995, "Lo-Wang.org" },
- { 8996, "TransactPlus, Inc." },
- { 8997, "ProArp Inc." },
- { 8998, "Cottay" },
- { 8999, "TVS eTechnology Limited" },
- { 9000, "Personal Path Systems, Inc." },
- { 9001, "Goltier Media Group (Sitepak)" },
- { 9002, "LXPRO.COM" },
- { 9003, "slimjones." },
- { 9004, "SuSE Linux Venezuela, C.A." },
- { 9005, "Video Networks Limited" },
- { 9006, "Apache Consulting Ltd." },
- { 9007, "FineGround Networks" },
- { 9008, "Digital Route" },
- { 9009, "Agni Systems Limited" },
- { 9010, "Liebenzell Mission" },
- { 9011, "Laminar Software, Inc." },
- { 9012, "MailVision Ltd." },
- { 9013, "SpiritSoft Inc" },
- { 9014, "Belenos, Inc." },
- { 9015, "World Streaming Network, Inc." },
- { 9016, "FreeRein Corporation" },
- { 9017, "Cogent Systems, Inc." },
- { 9018, "CQR Data Ltd." },
- { 9019, "Cap Gemini Telecom Media & Networks Deutschland GmbH" },
- { 9020, "Computer Adaptive Technologies, Inc." },
- { 9021, "WideOpenWest LLC" },
- { 9022, "TrueSAN Networks" },
- { 9023, "Netsanity Inc." },
- { 9024, "Telia Internet, Inc." },
- { 9025, "NetCologne" },
- { 9026, "adisoft systems GmbH & Co. KG" },
- { 9027, "SoftNerd" },
- { 9028, "Lendx" },
- { 9029, "BSD Users Group Italia" },
- { 9030, "iVMG Incorporated" },
- { 9031, "Nexter Information Technology" },
- { 9032, "IVSTel" },
- { 9033, "Elion Enterprises Ltd" },
- { 9034, "Jabber.com" },
- { 9035, "Carlisle FoodService Products" },
- { 9036, "Jim Dutton" },
- { 9037, "Everyday Office Inc." },
- { 9038, "Well Diagnostics" },
- { 9039, "Chengdu Ideal Telecom Technology,Inc." },
- { 9040, "Chengdu Ideal Information Industry Co,Ltd." },
- { 9041, "Cambridge University Engineering Department" },
- { 9042, "Teinos" },
- { 9043, "Execulink" },
- { 9044, "NEC Eluminant Technologies, Inc." },
- { 9045, "eNetSecure, Inc" },
- { 9046, "Amecisco" },
- { 9047, "Blue Cross Blue Shield of Florida" },
- { 9048, "Open System Consultants" },
- { 9049, "Integrity Online" },
- { 9050, "Telenor Link AS" },
- { 9051, "Faculdade de Ci\0303\0252ncias e Tecnologia da Universidade Nova de Lisboa" },
- { 9052, "Sunbay Software AG" },
- { 9053, "Tovaris IP LC" },
- { 9054, "Tokheim" },
- { 9055, "9Rivers.com" },
- { 9056, "TelStrat International, Ltd." },
- { 9057, "Millennium Communication Network" },
- { 9058, "Jamcracker" },
- { 9059, "Vectrad Networks Corporation" },
- { 9060, "RuleSpace, Inc." },
- { 9061, "Deutscher Go-Bund" },
- { 9062, "SRS Microsystems" },
- { 9063, "iHive Technology Pte Ltd" },
- { 9064, "ATM ComputerSysteme GmbH" },
- { 9065, "Nettasking Technology (Singapore) Pte Ltd." },
- { 9066, "Global Security Technologies, Inc." },
- { 9067, "Cambia Networks" },
- { 9068, "Delphi Associates, Ltd." },
- { 9069, "Phillip's Technical Services" },
- { 9070, "Symmetricom" },
- { 9071, "Spirian Technologies, Inc." },
- { 9072, "AckleyNet" },
- { 9073, "Sunnyvale Community Players" },
- { 9074, "John M. Sutherland, Inc.Insurance" },
- { 9075, "Novex Solutions" },
- { 9076, "Tokyo Metallic Commuynications Corp." },
- { 9077, "Dekart" },
- { 9078, "Be Connected Ltd" },
- { 9079, "The Sanjyot Bharathan Design Association" },
- { 9080, "Babel Com Australia" },
- { 9081, "eachnet" },
- { 9082, "eXtremail" },
- { 9083, "eteamconsulting.com" },
- { 9084, "Keynote Systems, Inc." },
- { 9085, "Optical Switch Corporation" },
- { 9086, "US Robotics" },
- { 9087, "Brightmail, Inc." },
- { 9088, "Oso Grande Technologies, Inc." },
- { 9089, "New Mexico Technet, Inc." },
- { 9090, "Datagrove" },
- { 9091, "MICRO-STAR INT'L CO., Ltd." },
- { 9092, "Veenstra Graphic Solutions" },
- { 9093, "Innovate I.T. Logistics BV" },
- { 9094, "Amber Archer Consulting Co., Inc." },
- { 9095, "NIPPON MITSUBISHI OIL CORPORATION" },
- { 9096, "Zentrum f\0303\0274r Produkt Entwicklung, ETH Z\0303\0274rich" },
- { 9097, "CDFtel" },
- { 9098, "DW Systems" },
- { 9099, "Central Systems International, Inc." },
- { 9100, "Mstel" },
- { 9101, "Optum Computing Solutions, Inc." },
- { 9102, "Telecash Kommunikations-Service GmbH" },
- { 9103, "Yu-Shei Real Estate Co." },
- { 9104, "Chu-Shen Co. Ltd" },
- { 9105, "MIST" },
- { 9106, "ELIOS Informatique" },
- { 9107, "Ferguson Enterprises, Inc." },
- { 9108, "Random Walk Computing, Inc." },
- { 9109, "infogear" },
- { 9110, "Net Asia Angeles CIty" },
- { 9111, "Newway Tech. Inc." },
- { 9112, "Palamedes GmbH" },
- { 9113, "Wiral Ltd" },
- { 9114, "YLine Web Access Services" },
- { 9115, "Archon Technologies, Inc." },
- { 9116, "Ubicom, Inc" },
- { 9117, "LeWiz Communications Inc." },
- { 9118, "1Ci GmbH" },
- { 9119, "Advanced Rotorcraft Technology, Inc." },
- { 9120, "Narada Networks Inc." },
- { 9121, "Eduquip Limited" },
- { 9122, "UPCtv Interactive" },
- { 9123, "Universit\0303\0251 Pierre Mend\0303\0250s France" },
- { 9124, "Intellitactics Inc." },
- { 9125, "Inspiration Technology Pty Ltd" },
- { 9126, "Aetian Networks" },
- { 9127, "ADVANCED PERIPHERALS TECH. Inc." },
- { 9128, "Centre de traduction des organes de l'Union europ\0303\0251enne" },
- { 9129, "Linkvest SA" },
- { 9130, "Hemisphere Technologies" },
- { 9131, "Roland Felnhofer" },
- { 9132, "Hutchison OPTEL Telecom Technology CO.,Ltd" },
- { 9133, "Microraab Electronics" },
- { 9134, "Telenet NV" },
- { 9135, "Heyde AG" },
- { 9136, "ISDN Communications Ltd" },
- { 9137, "Anatel Communications" },
- { 9138, "AnteFacto" },
- { 9139, "Petroleum Business Institute" },
- { 9140, "Media General, Inc." },
- { 9141, "Riptech" },
- { 9142, "Infopaq International A/S" },
- { 9143, "Edmunds.com" },
- { 9144, "Trader Electronic Media" },
- { 9145, "AccessPt. Inc." },
- { 9146, "Reporter-Times, Inc." },
- { 9147, "TeaLeaf Technology, Inc." },
- { 9148, "Acme Packet" },
- { 9149, "LOCUS Corporation" },
- { 9150, "Metromedia Fiber Network" },
- { 9151, "Wiral Ltd." },
- { 9152, "Dit Company Limited" },
- { 9153, "Sodielec Telecom" },
- { 9154, "Figment Technologies Inc." },
- { 9155, "BlueNetworkX" },
- { 9156, "eGurkha Pvt Ltd." },
- { 9157, "CoreComm" },
- { 9158, "The Internet Group" },
- { 9159, "SHad0ws.net" },
- { 9160, "DGT Sp. z o.o." },
- { 9161, "Universidad del Pais Vasco" },
- { 9162, "P\0303\0244dagogische Hochschule Freiburg" },
- { 9163, "GNU Radius Project" },
- { 9164, "Xware AB" },
- { 9165, "Cabinet Remouit" },
- { 9166, "Universidad Galileo" },
- { 9167, "ANXeBusiness Corp" },
- { 9168, "Transaccess" },
- { 9169, "Novis Telecom, SA" },
- { 9170, "Exaecon Inc." },
- { 9171, "NetTone" },
- { 9172, "HVC Technologies" },
- { 9173, "Kohl's" },
- { 9174, "A2V ict" },
- { 9175, "Stream Theory, Inc" },
- { 9176, "Open-IT" },
- { 9177, "ThinkFree.Com, Inc" },
- { 9178, "DaeSung Corp." },
- { 9179, "INTESABCI SISTEMI E SERVIZI" },
- { 9180, "Maranti Networks, Inc" },
- { 9181, "Air Technology Systems" },
- { 9182, "FileFish, Inc." },
- { 9183, "Samba TNG" },
- { 9184, "Alterbox" },
- { 9185, "MS Integration Services Inc." },
- { 9186, "Logipolis Pte Ltd" },
- { 9187, "Eastman Chemical Company" },
- { 9188, "Force Computers" },
- { 9189, "Promedico Gmbh" },
- { 9190, "Katanoo Technologies" },
- { 9191, "Burgiesoft" },
- { 9192, "Pirkan Tietokone Oy" },
- { 9193, "CIRPACK" },
- { 9194, "AustLII" },
- { 9195, "AutocontControl Systems, spol. s r. o." },
- { 9196, "Algotronics" },
- { 9197, "Lyndon State College" },
- { 9198, "Teletron Ltd." },
- { 9199, "Daum Datentechnik" },
- { 9200, "Obermeier Software" },
- { 9201, "Fasturn Inc." },
- { 9202, "EnsureLink" },
- { 9203, "SeguriDATA Privada, S.A. de C.V." },
- { 9204, "Aurora Networks, Inc." },
- { 9205, "Moj. Net d.o.o." },
- { 9206, "DigitalSpark" },
- { 9207, "segNET Technology, Inc." },
- { 9208, "Hamilcar Development" },
- { 9209, "Peace Technology, Inc." },
- { 9210, "Merlin I.T. Services Ltd" },
- { 9211, "Rabobank ICT" },
- { 9212, "Wavium AB" },
- { 9213, "NetSeal Technologies" },
- { 9214, "Kemuri Systems" },
- { 9215, "ERIDAN Informatique" },
- { 9216, "Universidade de \0303\0211vora, Departamento de Inform\0303\0241tica" },
- { 9217, "BIOBASE Biological Databases/ Biologische Datenbanken GmbH" },
- { 9218, "Skysoft Portugal" },
- { 9219, "Juliao.com" },
- { 9220, "OPENJCC" },
- { 9221, "Shaw Communications" },
- { 9222, "Phillips Petroleum Company" },
- { 9223, "Roskilde University" },
- { 9224, "Lawrence University" },
- { 9225, "FJA" },
- { 9226, "Microtest" },
- { 9227, "Entrisphere, Inc." },
- { 9228, "Globetech" },
- { 9229, "Totilities" },
- { 9230, "#B4mad Research Lab Organization" },
- { 9231, "Adir Technologies" },
- { 9232, "Norwegian Mapping Authority" },
- { 9233, "IER SA" },
- { 9234, "Snowshore Networks Inc" },
- { 9235, "FCB Direct Montreal" },
- { 9236, "Fundtech Corporation" },
- { 9237, "Newisys" },
- { 9238, "Imagine Broadband Limited" },
- { 9239, "JonesKnowledge.com" },
- { 9240, "International MRI Accreditation Resources, LLC" },
- { 9241, "uni-X Software AG" },
- { 9242, "Instituto de Matem\0303\0241tica e Estat\0303\0255stica da Universidade de S\0303\0243o Paulo" },
- { 9243, "Air'Prod" },
- { 9244, "PureCarbon, Inc." },
- { 9245, "Neuromics, Inc." },
- { 9246, "Automated Handling Systems, Inc." },
- { 9247, "Federal-Mogul Corporation" },
- { 9248, "Paktronix Systems LLC" },
- { 9249, "Musambi Corporation" },
- { 9250, "Strix Systems" },
- { 9251, "TR Associates" },
- { 9252, "H\0303\0264tel-Dieu De Saint-J\0303\0251r\0303\0264me" },
- { 9253, "Buildscape, LLC" },
- { 9254, "Pajunas Interactive, Inc." },
- { 9255, "Vicinity Corporation" },
- { 9256, "LightPointe Communications" },
- { 9257, "Volera" },
- { 9258, "XMLStrategies.net" },
- { 9259, "SYSPOL Co., Ltd." },
- { 9260, "ADTEC Corporation" },
- { 9261, "Delphi Automotive Systems Investment (China) Holding Co.,Ltd" },
- { 9262, "EAST.NET Co. Ltd." },
- { 9263, "Cybernetics Technology Co., Ltd." },
- { 9264, "Caerdroia" },
- { 9265, "TDISIE" },
- { 9266, "Parsoft Systems Pvt. Ltd." },
- { 9267, "in-systemeGmbH" },
- { 9268, "Ruhrverband" },
- { 9269, "MediaBroadcast GmbH" },
- { 9270, "Callsys Ltd." },
- { 9271, "Siemens NGNI" },
- { 9272, "Elektrobit Ltd." },
- { 9273, "Neuro Telecom" },
- { 9274, "access:Seven Communications GmbH" },
- { 9275, "GENESYS" },
- { 9276, "Sema Spain NEG" },
- { 9277, "LOGICO Smart Card Solutions AG" },
- { 9278, "econia.com" },
- { 9279, "Arqana Technologies Inc." },
- { 9280, "AccessLine Communications Corporation" },
- { 9281, "Standard Insurance Company" },
- { 9282, "NOCpulse" },
- { 9283, "Costa Rica Institute of Technology" },
- { 9284, "Western Illinois University" },
- { 9285, "InternetCDS" },
- { 9286, "Maximum Throughput Inc." },
- { 9287, "Zeus Communications" },
- { 9288, "HostPro" },
- { 9289, "Unirez, Inc." },
- { 9290, "Firinn.org" },
- { 9291, "Rainfinity" },
- { 9292, "Webley System" },
- { 9293, "Staturn Computer" },
- { 9294, "W4y do Brasil Ltda" },
- { 9295, "Workers Compensation Fund" },
- { 9296, "Xlight Photonics Ltd" },
- { 9297, "Ayeca Inc." },
- { 9298, "University of Compi\0303\0250gne" },
- { 9299, "Hellas On Line" },
- { 9300, "Hypostasis" },
- { 9301, "Spider Software" },
- { 9302, "ESI s.r.l." },
- { 9303, "Waystream AB (formerly 'PacketFront Network Products AB')" },
- { 9304, "Connection Technology Systems" },
- { 9305, "Western Michigan University" },
- { 9306, "Octave Communications" },
- { 9307, "RCL Enterprises" },
- { 9308, "Oasis Technology Ltd." },
- { 9309, "Urzad Miasta Pabianic" },
- { 9310, "ABITAB S.A." },
- { 9311, "DI Trute" },
- { 9312, "Truth Consulting & Technology" },
- { 9313, "DaKoMa" },
- { 9314, "Curtis Family" },
- { 9315, "CARTEL SECURITE" },
- { 9316, "NetVoyager" },
- { 9317, "Tech2Work, Inc." },
- { 9318, "DEBEKA Versicherung" },
- { 9319, "NetAktiv" },
- { 9320, "Nanning Telecom" },
- { 9321, "Screenpeaks Ltd." },
- { 9322, "NetTech S.A." },
- { 9323, "PC Away" },
- { 9324, "Division fo Cancer Studies, Birmingham UK" },
- { 9325, "University of California, Riverside" },
- { 9326, "Lewis and Clark College" },
- { 9327, "Hygeia Corporation" },
- { 9328, "National Institutes of Health (NIH)" },
- { 9329, "Crusoe Communications, Inc." },
- { 9330, "Selesta S.p.A." },
- { 9331, "MaXware International AS" },
- { 9332, "Applied SNMP" },
- { 9333, "Lincom Wireless" },
- { 9334, "IPDR.org" },
- { 9335, "PowerSoft" },
- { 9336, "Publix Super Markets, Inc." },
- { 9337, "Minter Corp." },
- { 9338, "Petersen Ventures LLC" },
- { 9339, "Left Coast Systems Corp." },
- { 9340, "Network Infinity" },
- { 9341, "Cyberfuse Technologies, LLC" },
- { 9342, "Penguin Computing" },
- { 9343, "Comcel S.A." },
- { 9344, "Powerwave Technologies Inc." },
- { 9345, "infinetivity, Inc." },
- { 9346, "iGeek, Inc." },
- { 9347, "Avaz Networks" },
- { 9348, "Golden Telecom Ukraine" },
- { 9349, "WizLAN Ltd." },
- { 9350, "Netmagic Solutions Pvt. Ltd." },
- { 9351, "FORTHnet S.A." },
- { 9352, "Conundrum Communications" },
- { 9353, "Universite de Metz" },
- { 9354, "Grey Interactive France" },
- { 9355, "Krivorozhskiy Hlebokombinat N1" },
- { 9356, "nPassage, Inc." },
- { 9357, "IT-Beratung Schaffert" },
- { 9358, "Wicom Communications Ltd" },
- { 9359, "Symeko Datasystems bv" },
- { 9360, "Green Light Inc." },
- { 9361, "Oc\0303\0251 Software Laboratories Namur" },
- { 9362, "ENSEIRB" },
- { 9363, "Spelio" },
- { 9364, "InterPark Incorporated" },
- { 9365, "Mindsurf Networks Inc." },
- { 9366, "Cifra" },
- { 9367, "FASTSIGNS International, Inc" },
- { 9368, "Storage Xstreams" },
- { 9369, "Micah J. Schehl" },
- { 9370, "Space Telescope Science Institute" },
- { 9371, "Okolona Christian Church" },
- { 9372, "Ikadega, Inc." },
- { 9373, "Clear Ink" },
- { 9374, "Hermaion.org" },
- { 9375, "Basler Kantonalbank" },
- { 9376, "CVS / PharmacyRussell" },
- { 9377, "Voyager Computer Corporation" },
- { 9378, "Ilex Systems" },
- { 9379, "Eumitcom Technology Inc." },
- { 9380, "Octogon Gesellschaft f\0303\0274r Computer-Dienstleistungen mbH" },
- { 9381, "Walter Biering GmbH - Mediahaus und Grafischer Betrieb" },
- { 9382, "WORAH.NET" },
- { 9383, "Angeles Design Systems" },
- { 9384, "D2K, Inc." },
- { 9385, "Jason Wood" },
- { 9386, "Clayton College & State University" },
- { 9387, "Compania Mea" },
- { 9388, "AsiaInfo" },
- { 9389, "Magical Fruit" },
- { 9390, "W.T. Services, Inc." },
- { 9391, "Audientia" },
- { 9392, "Cannon Hill Anglican College" },
- { 9393, "Intecs Information Ltd." },
- { 9394, "Visana Services AG" },
- { 9395, "UEC Technologies" },
- { 9396, "Walt Disney International" },
- { 9397, "Vartech Solutions Inc." },
- { 9398, "Tokyo Metallic Communications Corp" },
- { 9399, "CONSUL Risk ManagementDirk Wisse, Koos Lodewijkx" },
- { 9400, "Fachhochschule Konstanz" },
- { 9401, "AML Wireless Systems" },
- { 9402, "dCrypt Ltd" },
- { 9403, "Allinstant" },
- { 9404, "Dewpoint Inc." },
- { 9405, "Kingland Systems Corporation" },
- { 9406, "Synchrologic" },
- { 9407, "Broadata Communications Inc." },
- { 9408, "Chester Enterprises" },
- { 9409, "ClickServices" },
- { 9410, "Axe Online Pty. Limited" },
- { 9411, "Hitwise Pty Ltd" },
- { 9412, "Contela" },
- { 9413, "Operax AB" },
- { 9414, "Digital Globe, Inc." },
- { 9415, "Archimed" },
- { 9416, "Unassigned" },
- { 9417, "egg:|" },
- { 9418, "Ivistar AG" },
- { 9419, "Siemens SiNiA" },
- { 9420, "Baltimore Technologies" },
- { 9421, "Vodafone D2" },
- { 9422, "Atanion GmbH" },
- { 9423, "Msa-Infor Sistemas e Automacao" },
- { 9424, "A&C Automacao e Controle" },
- { 9425, "Rotterdam School of Management" },
- { 9426, "Adigida Solutions" },
- { 9427, "Categoric Software" },
- { 9428, "Orgenic Software" },
- { 9429, "Mariinsky Theatre" },
- { 9430, "Progress Telecom" },
- { 9431, "Push, Inc." },
- { 9432, "Vingage Corporation" },
- { 9433, "Vaticor Inc." },
- { 9434, "Telergy Network Services" },
- { 9435, "Boletin Oficial del Estado" },
- { 9436, "Crysberg A/S" },
- { 9437, "Lancer Insurance Company" },
- { 9438, "YellowShirt Inc." },
- { 9439, "Green Point Pty Ltd" },
- { 9440, "eko system Inc." },
- { 9441, "Wall Street Systems, Inc." },
- { 9442, "Atheros communications, Inc." },
- { 9443, "Virage, Inc." },
- { 9444, "FireMon" },
- { 9445, "TJB" },
- { 9446, "Indiana University" },
- { 9447, "Red Fern Software" },
- { 9448, "Zyfer" },
- { 9449, "Florida State University" },
- { 9450, "Zyoptics Inc." },
- { 9451, "digeo" },
- { 9452, "NetLabs SRL" },
- { 9453, "Barnardos New Zealand" },
- { 9454, "future gate software GmbH" },
- { 9455, "Intelliclaim, Inc." },
- { 9456, "Allegro Networks" },
- { 9457, "Broadband Storage, Inc." },
- { 9458, "TCSI, Inc" },
- { 9459, "NileSOFT Ltd." },
- { 9460, "Salta Monte Solutions, Inc." },
- { 9461, "y2FUN.com" },
- { 9462, "MMLAB KTU" },
- { 9463, "Geyer und Weinig GmbH" },
- { 9464, "SIEL S.p.A." },
- { 9465, "Oldenburgische Landesbank AG" },
- { 9466, "CILEA" },
- { 9467, "iBanx B.V." },
- { 9468, "Universite de la Mediterranee (Aix Marseille 2)" },
- { 9469, "Starlab nv/sa" },
- { 9470, "Alfa.con Team S.p.A." },
- { 9471, "PortWise AB" },
- { 9472, "Jeje.org" },
- { 9473, "SafeStone Technologies PLC" },
- { 9474, "SIRT" },
- { 9475, "365 Corporation" },
- { 9476, "ESRF" },
- { 9477, "Market Central, Inc." },
- { 9478, "MyLuckyWorld" },
- { 9479, "WebCollage" },
- { 9480, "Notus Key Limited" },
- { 9481, "Backer Software Research" },
- { 9482, "ENS-Lyon" },
- { 9483, "PSI AG" },
- { 9484, "ision france" },
- { 9485, "FUTUROCOM" },
- { 9486, "Powwow Germany GmbH" },
- { 9487, "saardata GmbH" },
- { 9488, "Circuit City Stores" },
- { 9489, "SAXA, Inc. (formerly 'Taiko Electric Works, LTD')" },
- { 9490, "Scorecon International" },
- { 9491, "VECTAN" },
- { 9492, "The Cobalt Group" },
- { 9493, "iOpen Technologies Ltd." },
- { 9494, "IFILM" },
- { 9495, "etee2k.net" },
- { 9496, "AT&T Enhanced Network Services" },
- { 9497, "IDini Corporation" },
- { 9498, "Telekommunikation Mittleres Ruhrgebiet GmbH" },
- { 9499, "Exacube System Inc." },
- { 9500, "Byte Alliance" },
- { 9501, "SVA-INTRUSION.COM Co. LTD" },
- { 9502, "Ross Technology Group, Inc." },
- { 9503, "Telemovil El Salvador" },
- { 9504, "tops.net GmbH & Co Online Publishing Services KG" },
- { 9505, "bone labs GmbH" },
- { 9506, "Real Solutions Ltd." },
- { 9507, "Wharton Electronics" },
- { 9508, "MobileSpear Inc." },
- { 9509, "Enkash Payment Network" },
- { 9510, "KONSYS" },
- { 9511, "Vulkan Technic GmbH" },
- { 9512, "Online Consulting, Ltd." },
- { 9513, "Exacomm Systems" },
- { 9514, "Konica Business Technologies, Inc." },
- { 9515, "Sugar Creek Packing Co." },
- { 9516, "Digital World Services" },
- { 9517, "Sanrise Inc" },
- { 9518, "Pratt & Whitney" },
- { 9519, "Soward Network Solutions" },
- { 9520, "Phase2 Software Corp" },
- { 9521, "PED Computers" },
- { 9522, "Personeta" },
- { 9523, "ST E15" },
- { 9524, "Andiamo Systems, Inc" },
- { 9525, "BBC Monitoring" },
- { 9526, "Shawmut Design & Construction" },
- { 9527, "Inkras Networks Corporation" },
- { 9528, "Iyago" },
- { 9529, "Global Relay Inc." },
- { 9530, "CQUR . COM" },
- { 9531, "Integra Telecom" },
- { 9532, "Group 1 Software" },
- { 9533, "TrueDisk" },
- { 9534, "Handrew" },
- { 9535, "Zurita Solutions" },
- { 9536, "Massey University" },
- { 9537, "Navox Corporation" },
- { 9538, "StorageWay Inc." },
- { 9539, "STSN" },
- { 9540, "Altentia" },
- { 9541, "Lokaal Netwerk Gravenstraat" },
- { 9542, "College of Engineering and Computer Science" },
- { 9543, "Schwoo, Inc." },
- { 9544, "Electrical and Computer Engineering Dept., UBC" },
- { 9545, "State Street Corp." },
- { 9546, "Dominet Systems" },
- { 9547, "foo Corporation" },
- { 9548, "Datachron Inc." },
- { 9549, "Southern Network Services, Inc." },
- { 9550, "vox2vox Communications, Inc." },
- { 9551, "Kompu-Art Studiu Komputerowe" },
- { 9552, "Financial IQ Pty Ltd" },
- { 9553, "Automaton Ltd" },
- { 9554, "Clear River Technologies, LLC" },
- { 9555, "AsiaInfo Technologies(China), Inc." },
- { 9556, "Great Wall Broadbank Network Service Co.Lt" },
- { 9557, "Synso Inc." },
- { 9558, "Kent Ridge Digital Labs" },
- { 9559, "National Security Research Institute" },
- { 9560, "SECUI" },
- { 9561, "Netia Telekom S.A." },
- { 9562, "Magnum Imperium Limited" },
- { 9563, "Suffolk College" },
- { 9564, "mediaWays GmbH Internet-Services" },
- { 9565, "Xerox Mobile Solutions" },
- { 9566, "HBO-CE" },
- { 9567, "Skilldeal AG" },
- { 9568, "DataGrid" },
- { 9569, "MGF Logistique" },
- { 9570, "University of Leoben/Austria" },
- { 9571, "Erskine Systems Ltd" },
- { 9572, "AlienThing.com" },
- { 9573, "MB-NET" },
- { 9574, "NCIC Clinical Trials" },
- { 9575, "Grupo de Programa\0303\0247\0303\0243o na Web(WPG)" },
- { 9576, "Cr\0303\0251dit Mutuel de Bretagne" },
- { 9577, "Xtelligent IT Consulting GmbH" },
- { 9578, "Mission Critical Linux, Inc." },
- { 9579, "Followap" },
- { 9580, "New Hemisphere Computer Services" },
- { 9581, "Quad One Technologies Pvt. Ltd." },
- { 9582, "CCS Communications Pty. Ltd." },
- { 9583, "BBC Technology Supply Ltd" },
- { 9584, "Lucent Technologies NADP" },
- { 9585, "National Enhance Technology Corp." },
- { 9586, "Debian" },
- { 9587, "Global Trust Authority" },
- { 9588, "IT Insourcing" },
- { 9589, "Currenex, Inc." },
- { 9590, "The MathWorks Inc." },
- { 9591, "Thinking Cat Enterprises" },
- { 9592, "Luke Crawford Enterprises" },
- { 9593, "SysNet Inform\0303\0241tica Ltda" },
- { 9594, "Tape Products Company" },
- { 9595, "Zephion Networks" },
- { 9596, "PimpCode" },
- { 9597, "Blue Silicon" },
- { 9598, "MBNA America" },
- { 9599, "LDAPGURU.COM LLC" },
- { 9600, "Williams Technology Consulting Services" },
- { 9601, "Keewaytinook Okimakanak" },
- { 9602, "Zoftech Inc." },
- { 9603, "AF Enterprises" },
- { 9604, "afuu" },
- { 9605, "Xyterra Computing Inc" },
- { 9606, "Linvision B.V." },
- { 9607, "MSTC" },
- { 9608, "ntelsOh" },
- { 9609, "Impaster Co. Ltd" },
- { 9610, "Milosch.net" },
- { 9611, "Infosim" },
- { 9612, "Kobe Steel, Ltd." },
- { 9613, "nlsde" },
- { 9614, "GoCruiseDirect.com" },
- { 9615, "Danfoss A/S" },
- { 9616, "Kreatel Communications AB" },
- { 9617, "GSX Groupware Solutions" },
- { 9618, "Utrechtse Werkbedrijven" },
- { 9619, "Nextra Austria" },
- { 9620, "National Land Survey of Finland" },
- { 9621, "MOLO AFRIKA SPEECH TECHNOLOGIES" },
- { 9622, "QuesCom" },
- { 9623, "Copenhagen Airports" },
- { 9624, "Radianz" },
- { 9625, "Utesch" },
- { 9626, "Alessandro Triglia" },
- { 9627, "S J Shipinski Services" },
- { 9628, "Groupe CASINO" },
- { 9629, "Mastermind Technologies" },
- { 9630, "e-moveum" },
- { 9631, "eSniff, Inc." },
- { 9632, "Individual" },
- { 9633, "SED Systems" },
- { 9634, "API Networks, Inc" },
- { 9635, "Tropico Sistemas e Telecomunica=E7=F5es SA" },
- { 9636, "netFORMAT GmbH" },
- { 9637, "Alliance & Leicester PLC" },
- { 9638, "AlphaGraphics, Inc." },
- { 9639, "Appium AB" },
- { 9640, "Astrolink International LLC" },
- { 9641, "Azusa Pacific University" },
- { 9642, "Bibop Research, int. S.p.A. Gianugo" },
- { 9643, "CEULP/ULBRA" },
- { 9644, "Cornwall Internet Limited" },
- { 9645, "courtade.net" },
- { 9646, "Cybectec" },
- { 9647, "EWIP" },
- { 9648, "GeekBone Co. LTD" },
- { 9649, "Hochschule Bremen" },
- { 9650, "Infoclan" },
- { 9651, "Kele" },
- { 9652, "LNS SA" },
- { 9653, "Mosotech Limited" },
- { 9654, "NIC France" },
- { 9655, "Optidev AB" },
- { 9656, "Routit BV" },
- { 9657, "S://Scape Communications Inc." },
- { 9658, "Solers" },
- { 9659, "Synapsys Ltd" },
- { 9660, "Telecel Comunica\0303\0247\0303\0265es pessoais S.A" },
- { 9661, "Teletron INC" },
- { 9662, "TUEV-AT-TRUST Center GmbH" },
- { 9663, "UNIVERSITE LUMIERE LYON2" },
- { 9664, "Widgital" },
- { 9665, "ZyGATE Communications Inc." },
- { 9666, "Alcatel Optronics" },
- { 9667, "Austar United" },
- { 9668, "Talent Network Security Technology Co., Ltd." },
- { 9669, "University of London" },
- { 9670, "BROADi" },
- { 9671, "Time Warner" },
- { 9672, "Apropos Technology, Inc." },
- { 9673, "Denison University" },
- { 9674, "Fingerhut" },
- { 9675, "Grupo Financiero Uno" },
- { 9676, "hottis.de" },
- { 9677, "Hydriads" },
- { 9678, "K.U. Leuven" },
- { 9679, "mBalance" },
- { 9680, "SelectMetrics, Inc." },
- { 9681, "Mortgage Systems International" },
- { 9682, "Novadeck" },
- { 9683, "Plattsburgh State University" },
- { 9684, "PoweriseNet" },
- { 9685, "Ranch Networks, Inc." },
- { 9686, "Ruby Networks, Inc." },
- { 9687, "SAProperty.com" },
- { 9688, "Tahoe Networks, Inc." },
- { 9689, "TBD Networks" },
- { 9690, "Terralab" },
- { 9691, "Children's Hospital Colorado (formerly 'The Children's Hospital of Denver')" },
- { 9692, "Tool Object" },
- { 9693, "UND School of Medicine and Health Sciences" },
- { 9694, "Arbor Networks" },
- { 9695, "Encotone Ltd." },
- { 9696, "Uffizio India Software Consultants Pvt. Ltd." },
- { 9697, "Accelance" },
- { 9698, "AIA Australia" },
- { 9699, "Axis Consulting" },
- { 9700, "Boehringer-Ingelheim GmbH" },
- { 9701, "Commerce NTI" },
- { 9702, "Comtech Belgium" },
- { 9703, "Datafoundation Inc.Valerii" },
- { 9704, "Diversified Resourceful Solutions Inc." },
- { 9705, "ecos gmbh" },
- { 9706, "HackersLab" },
- { 9707, "Institut National Polytechnique de Lorraine" },
- { 9708, "Jack Morton Worldwide" },
- { 9709, "Micro Connect Pty Ltd" },
- { 9710, "Monzoon Networks AG" },
- { 9711, "Novedia" },
- { 9712, "obzen Inc." },
- { 9713, "Opera Software AS" },
- { 9714, "Ruhrsoft" },
- { 9715, "Sigma AB" },
- { 9716, "State of North Dakota" },
- { 9717, "Teleca AB" },
- { 9718, "TransACT Communications" },
- { 9719, "Tronicplanet Online Datendienst GmbH" },
- { 9720, "Tryx" },
- { 9721, "VWR International" },
- { 9722, "Workhorse Computing" },
- { 9723, "Coradiant" },
- { 9724, "Datacast Inc." },
- { 9725, "INFOservice" },
- { 9726, "Nitroba" },
- { 9727, "Tryllian" },
- { 9728, "WWF Wort + Ton GmbH e-media" },
- { 9729, "EVERelite, Co., Ltd." },
- { 9730, "Solutus Pty Limited" },
- { 9731, "5down" },
- { 9732, "Adrenaline Ingenierie Multimedia" },
- { 9733, "Aral Systems GmbH" },
- { 9734, "Astrum Software Corporation" },
- { 9735, "Coredump Ky" },
- { 9736, "Dublin City University" },
- { 9737, "Fourtheye" },
- { 9738, "Gedoplan GmbH" },
- { 9739, "Hobnobbers.net" },
- { 9740, "iBEAM Broadcasting Corporation" },
- { 9741, "Keiren" },
- { 9742, "DESCOM CONSULTING, S.L." },
- { 9743, "NCHICA" },
- { 9744, "peoplecall.com" },
- { 9745, "Radix Controls Inc." },
- { 9746, "RFNet Technologies Pte Ltd" },
- { 9747, "RoamingTest Ltd" },
- { 9748, "ROW Software and Web Design" },
- { 9749, "SpectraLink Corporation" },
- { 9750, "The Pillars" },
- { 9751, "Trevilon Corp." },
- { 9752, "University of Missouri" },
- { 9753, "Vernier Networks, Inc." },
- { 9754, "Vertis DSG Chicago" },
- { 9755, "Webasto Informationssysteme GmbH" },
- { 9756, "woerd Erdmenger & Wolter GbR" },
- { 9757, "Aral Aktiengesellschaft & Co. KG" },
- { 9758, "Metadigm Ltd" },
- { 9759, "Aplicaciones y Consultoria, S.A. de C.V." },
- { 9760, "Cellcast" },
- { 9761, "Corporate Express" },
- { 9762, "Datacom Systems Inc." },
- { 9763, "Eonite, Inc." },
- { 9764, "Forschungszentrum Rossendorf e.V." },
- { 9765, "ILRYUNG TELESYS" },
- { 9766, "Joseph S Dovgan DDS MS" },
- { 9767, "Lectron CO., LTD" },
- { 9768, "Lynchburg College" },
- { 9769, "Nuance Communications" },
- { 9770, "OpenOffice.org" },
- { 9771, "PAION Co. Ltd.," },
- { 9772, "pentasecurity" },
- { 9773, "SpunHead Industries" },
- { 9774, "Streets Online Ltd." },
- { 9775, "TNT Software, Inc." },
- { 9776, "Wireless Network Services" },
- { 9777, "Arelnet Ltd." },
- { 9778, "AxONLink" },
- { 9779, "Empire State College" },
- { 9780, "Entreprise des Postes et Telecommunications" },
- { 9781, "Jerntorget Sverige AB" },
- { 9782, "JM Family Enterprises, Inc." },
- { 9783, "Vayusphere, Inc." },
- { 9784, "icoserve information technologies" },
- { 9785, "Praxis Technical Group, Inc." },
- { 9786, "A.I.S. AngewandteInformations-Systeme GmbH" },
- { 9787, "ActiveState Corp." },
- { 9788, "Advisor Technologies Limited" },
- { 9789, "Astaro AG" },
- { 9790, "Australia On Line" },
- { 9791, "Centre de Telecomunicacions i Tecnologies de la Informacio" },
- { 9792, "Clayhill KG" },
- { 9793, "CloudShield Technologies, Inc." },
- { 9794, "CYTBeN" },
- { 9795, "EBS Dealing Resources, Inc" },
- { 9796, "ENX Association (formerly 'European Network Exchange')" },
- { 9797, "EVER Sp. z o.o." },
- { 9798, "Griff-IT Ltd." },
- { 9799, "Holos Software, Inc." },
- { 9800, "iNIT-8" },
- { 9801, "ISIS Frontier Communications" },
- { 9802, "IUFM de Rouen" },
- { 9803, "L-3 Communication Systems - East" },
- { 9804, "Lefthand Networks" },
- { 9805, "Neveda City School District" },
- { 9806, "PRIDE Industries" },
- { 9807, "Prism Holding Limited" },
- { 9808, "Rocklea Spinning Mills Pty Ltd" },
- { 9809, "Root, Int." },
- { 9810, "Sagent" },
- { 9811, "Secure Appliance Systems" },
- { 9812, "SolNet" },
- { 9813, "TAB Queensland Limited" },
- { 9814, "Telia IT-Service AB" },
- { 9815, "VSpace, Inc." },
- { 9816, "WANWALL" },
- { 9817, "WaveNET International (Pvt) Ltd." },
- { 9818, "Xwave GmbH" },
- { 9819, "yLez Technologies Pte Ltd" },
- { 9820, "ZOX-IT" },
- { 9821, "Zoznam s.r.o." },
- { 9822, "Accella Technologies Co., Ltd" },
- { 9823, "Diageo" },
- { 9824, "GenTek" },
- { 9825, "Geospiza Inc." },
- { 9826, "ImagiCode Studios" },
- { 9827, "Neocles" },
- { 9828, "pgamAPD" },
- { 9829, "SAIT Ltd" },
- { 9830, "Thunderbird, the American Graduate School of International Management" },
- { 9831, "Vivre Inc" },
- { 9832, "solobird" },
- { 9833, "Legend Holdings Ltd." },
- { 9834, "Agencja Uslug InformatycznychARTCOMP" },
- { 9835, "Alien Network" },
- { 9836, "AOK Bayern" },
- { 9837, "Ball State University" },
- { 9838, "Broadview Networks, Inc." },
- { 9839, "CAREL" },
- { 9840, "carreregroup" },
- { 9841, "Christian Dusek EDV-Dienstleistungen" },
- { 9842, "ET Networks" },
- { 9843, "Kai Industries" },
- { 9844, "Kansas State University" },
- { 9845, "LANBIRD Technology Co., Ltd." },
- { 9846, "LIP - Laborat\0303\0263rio de Instrumenta\0303\0247\0303\0243o e F\0303\0255sica Experimental de Part\0303\0255culas" },
- { 9847, "Listen.com" },
- { 9848, "Lou Johnson" },
- { 9849, "M-Web Indonesia" },
- { 9850, "NextGig" },
- { 9851, "NTT SOFT" },
- { 9852, "Odigo Inc" },
- { 9853, "Payment Technologies" },
- { 9854, "Red Box Recorders Limited" },
- { 9855, "Shawsoft GmbH" },
- { 9856, "UCLA Communications Technology Services" },
- { 9857, "Unicom an e-security company" },
- { 9858, "University of Maryland, Baltimore County" },
- { 9859, "University of Medicine and Dentistry of New Jersey" },
- { 9860, "Vizional Technologies, Inc." },
- { 9861, "Webdesign Internet Service GmbH" },
- { 9862, "Claredi Corporation" },
- { 9863, "DataRojahn A/S" },
- { 9864, "J Walter Thomposon Company" },
- { 9865, "Karmanos Cancer Institute" },
- { 9866, "Outokumpu Oyj" },
- { 9867, "Third Rail Americas" },
- { 9868, "Millinet Co., Ltd" },
- { 9869, "Network Laboratory of Nankai University" },
- { 9870, "graviton, Inc." },
- { 9871, "Findlater Wine Merchants" },
- { 9872, "GEZ" },
- { 9873, "Viterra AG" },
- { 9874, "\0303\0205bo Akademi University" },
- { 9875, "AVAILABLE SUPPLY Inc." },
- { 9876, "B2I Toulouse" },
- { 9877, "California State University, East Bay" },
- { 9878, "CareGroup HealthCare System" },
- { 9879, "Cox Communications, Las Vegas" },
- { 9880, "Data Junction Corporation" },
- { 9881, "Eita Technologies, Inc." },
- { 9882, "Flash Technology" },
- { 9883, "Free Trade Online" },
- { 9884, "Frost-EDV" },
- { 9885, "Green Packet, Inc." },
- { 9886, "Incendiary Networks" },
- { 9887, "Kristina Internet Business Solutions" },
- { 9888, "Linux Terminal Server Project (LTSP)" },
- { 9889, "Winpresa Building Automation Technologies GmbH" },
- { 9890, "Media General Inc" },
- { 9891, "Mensatec" },
- { 9892, "Oregon Graduate Institute of Science and Technology" },
- { 9893, "Paranormal Sweden" },
- { 9894, "Polestar Corp." },
- { 9895, "Project49 AG" },
- { 9896, "R&R Associ\0303\0251s" },
- { 9897, "Seranoa Networks" },
- { 9898, "Shindengen Electric Mfg. Co., Ltd." },
- { 9899, "Stinnes AG" },
- { 9900, "Telekom Applied Business Sdn. Bhd." },
- { 9901, "The College of William and Mary" },
- { 9902, "The University of Chicago" },
- { 9903, "TI SQUARE Technology" },
- { 9904, "University of Nebraska" },
- { 9905, "Volubill" },
- { 9906, "Xtera Communications Inc." },
- { 9907, "Akkaya Consulting GmbH" },
- { 9908, "HiTRUST.COM (HK) Incorporated Limited" },
- { 9909, "Pacific Technology Services" },
- { 9910, "Absolute Software Corp." },
- { 9911, "Bantu, Inc." },
- { 9912, "Baraga Telephone Company" },
- { 9913, "Cerebra Intergrated Technologies Ltd." },
- { 9914, "Charter Communications" },
- { 9915, "Commtouch Software Ltd" },
- { 9916, "Datek Online Holdings Corp." },
- { 9917, "Delos Payment Systems" },
- { 9918, "National Oceanic and Atmospheric Administration (NOAA)" },
- { 9919, "earth9.com Pte Ltd" },
- { 9920, "ENETCO GmbH" },
- { 9921, "ERGO Versicherungsgruppe AG" },
- { 9922, "eSign Australia Limited" },
- { 9923, "European Southern Observatory" },
- { 9924, "Excite UK Ltd" },
- { 9925, "Finest Webs" },
- { 9926, "Genie Network Resource Management" },
- { 9927, "Icehouse Net Services" },
- { 9928, "Inetrify" },
- { 9929, "Integral Concepts, Inc." },
- { 9930, "InterNexus Plc" },
- { 9931, "Inti" },
- { 9932, "IPFilter" },
- { 9933, "JAARS, Inc" },
- { 9934, "JANUS Research Group" },
- { 9935, "Louisiana Tech University" },
- { 9936, "massconfusion.com" },
- { 9937, "MaXXan Systems, Inc." },
- { 9938, "Mercury Corporation" },
- { 9939, "merNet Security" },
- { 9940, "Nine Tiles Networks Ltd" },
- { 9941, "Objective Reality Computer LLC" },
- { 9942, "Optimation Software Engineering" },
- { 9943, "Prometheon, Inc." },
- { 9944, "SIAS Ltd" },
- { 9945, "Siemens Business Services AB" },
- { 9946, "SoftSol India Limitedn" },
- { 9947, "Swales Aerospace, Inc." },
- { 9948, "Telekurier GesmbH & Co KG" },
- { 9949, "Ubiquitous Corp." },
- { 9950, "Visionary Communications Inc." },
- { 9951, "Wireless M2M, LLC" },
- { 9952, "WuhanTIT" },
- { 9953, "Bertelsmann Gamechannel" },
- { 9954, "craigbuchek.com" },
- { 9955, "Crisp Hughes Evans L.L.P." },
- { 9956, "NDS Surgical Imaging (formerly 'Planar Systems, Inc.')" },
- { 9957, "Dynamic Equilibrium Pty Ltd" },
- { 9958, "Formula/400" },
- { 9959, "NODS" },
- { 9960, "nuisys.com" },
- { 9961, "FundsXpress Financial Network" },
- { 9962, "VirCIO, LLP" },
- { 9963, "Advanced Computer Technologies (ACT) Inc." },
- { 9964, "50km Inc." },
- { 9965, "Amministrazione Provinciale di Grosseto" },
- { 9966, "Beijing Huahuan Electronics Ltd." },
- { 9967, "Bluesocket, Inc." },
- { 9968, "British Antarctic Survey" },
- { 9969, "Condat AG" },
- { 9970, "Custodix NV" },
- { 9971, "CyberTel, Inc." },
- { 9972, "Emulive Imaging Corporation Inc." },
- { 9973, "Flexsys (UK) Ltd" },
- { 9974, "Internet Transaction Services, Inc.(iTrans)" },
- { 9975, "J.W. Jensen, Inc." },
- { 9976, "Flexsys Inc" },
- { 9977, "jobpilot AG" },
- { 9978, "Linuxkorea, Inc." },
- { 9979, "Mabuse.De" },
- { 9980, "M-Web South Africa" },
- { 9981, "NeT&Trade GmbH" },
- { 9982, "netEngine" },
- { 9983, "Netstech, Inc." },
- { 9984, "Osmosislatina" },
- { 9985, "RIC" },
- { 9986, "Sencore" },
- { 9987, "Signet" },
- { 9988, "Smart Technology Enablers, Inc." },
- { 9989, "Stochastix" },
- { 9990, "Stonebranch, Incorporated" },
- { 9991, "synchrone" },
- { 9992, "Terion" },
- { 9993, "Terumo Medical Corporation" },
- { 9994, "The Linux Box Corporation" },
- { 9995, "ThinkEngine Networks, Inc." },
- { 9996, "Villanova University" },
- { 9997, "Virtual e-learning group (VEG)" },
- { 9998, "Wynd Communications" },
- { 9999, "Zerna, Koepper & Partner" },
- { 10000, "MapInfo Corporation" },
- { 10001, "blio Corporation" },
- { 10002, "Frogfoot Networks" },
- { 10003, "IP ONE Inc." },
- { 10004, "johnchildress.com" },
- { 10005, "Pure NetworX GmbH" },
- { 10006, "SANTON" },
- { 10007, "RF Innovations Pty Ltd" },
- { 10008, "Groupe ESIEE Paris" },
- { 10009, "KrystalBox Technologies, Inc." },
- { 10010, "Network Storage Solutions, Inc." },
- { 10011, "Advanced Simulation Technology Inc" },
- { 10012, "Alternium SA" },
- { 10013, "caledo GmbH" },
- { 10014, "CERIAS" },
- { 10015, "Certification Centre Ltd" },
- { 10016, "Computer & Communications Innovations" },
- { 10017, "CREWAVE Co., Ltd." },
- { 10018, "Double Precision, Inc." },
- { 10019, "Fen Systems Ltd." },
- { 10020, "Globe" },
- { 10021, "Good Technology, Inc." },
- { 10022, "Iconnect" },
- { 10023, "IMA L.t.d." },
- { 10024, "Integrated Technology Express, Inc" },
- { 10025, "Interland, Inc." },
- { 10026, "Interloci,Inc." },
- { 10027, "Internet Data Systems S.A." },
- { 10028, "level 42 networks" },
- { 10029, "Men & Mice" },
- { 10030, "Mudiaga Obada" },
- { 10031, "NIIEFA CTC CYCLONE" },
- { 10032, "ONEMEDIA Inc." },
- { 10033, "OpenSOS S/B" },
- { 10034, "OSIX AB" },
- { 10035, "SAY Technologies, Inc." },
- { 10036, "Times N Systems" },
- { 10037, "Ultimate People Company Ltd" },
- { 10038, "University of Texas Health Science Center at San Antonio" },
- { 10039, "Videotek, Inc." },
- { 10040, "Yonsei University" },
- { 10041, "ZONE. PL s.c." },
- { 10042, "comma Flex" },
- { 10043, "eTime Capital, Inc." },
- { 10044, "FRB-Par" },
- { 10045, "NetFormFive Informationstechnologie GmbH" },
- { 10046, "Protek, S.C." },
- { 10047, "Servocomp Ltd." },
- { 10048, "VXL eTech (P) Limited" },
- { 10049, "WebRelay, Inc." },
- { 10050, "Dana Corporation" },
- { 10051, "Eftia OSS Solutions Inc" },
- { 10052, "Electronic Commerce Link, Inc." },
- { 10053, "keys" },
- { 10054, "NetValue S.A." },
- { 10055, "Roaring Penguin Software Inc." },
- { 10056, "AppDancer Networks" },
- { 10057, "EMTE Sistemas" },
- { 10058, "HAURI Inc." },
- { 10059, "SANRAD" },
- { 10060, "SELTA Telematica" },
- { 10061, "Pacific Info Tech Corp." },
- { 10062, "Comsquared Systems, Inc." },
- { 10063, "Aaron Grosky & Associates Inc" },
- { 10064, "ASH" },
- { 10065, "Ironoak Software" },
- { 10066, "Digital Multimedia Technologies" },
- { 10067, "DVTEL Inc." },
- { 10068, "E-OfficeServices Ltd." },
- { 10069, "Epsilon AB" },
- { 10070, "Flashwave Ltd" },
- { 10071, "GINKO AG" },
- { 10072, "GW Technologies Co., Ltd." },
- { 10073, "HanseNet Telekommunikation GmbH" },
- { 10074, "Ikimbo" },
- { 10075, "Infodyne Corporation" },
- { 10076, "Institutions of the European Union" },
- { 10077, "MbyN Inc." },
- { 10078, "Medienprojektverein Steiermark" },
- { 10079, "Metrosource, Inc." },
- { 10080, "Microcell I5 Inc." },
- { 10081, "NrjCorporation" },
- { 10082, "Oculus Technologies Corporation" },
- { 10083, "Panda Vista" },
- { 10084, "Priority Telecom N.V. Roger" },
- { 10085, "Prove IT" },
- { 10086, "Segue Software, Inc." },
- { 10087, "SilentOne Limited" },
- { 10088, "Techno Valley Co." },
- { 10089, "Tek Tools, Inc." },
- { 10090, "The ClueNet Project" },
- { 10091, "Transfar" },
- { 10092, "Unassigned" },
- { 10093, "unamite GmbH" },
- { 10094, "University of Novi Sad" },
- { 10095, "Wickander & Associates" },
- { 10096, "Baxter Healthcare Corporation" },
- { 10097, "ECI-IP Inc." },
- { 10098, "Gonicus GmbH" },
- { 10099, "humanIT" },
- { 10100, "onDevice Corporation" },
- { 10101, "Mirai Espana, S.L." },
- { 10102, "Alt-N Technologies" },
- { 10103, "Lewis Curtis Consulting" },
- { 10104, "eBOA" },
- { 10105, "Lawson Software" },
- { 10106, "Albal\0303\0241 Ingenieros, S.A" },
- { 10107, "1stCom Technologies Corp." },
- { 10108, "7 Global Ltd" },
- { 10109, "Active Telecom" },
- { 10110, "Agile Storage, Inc." },
- { 10111, "Get Connected" },
- { 10112, "APLcomp Oy" },
- { 10113, "ApplianceWare Inc." },
- { 10114, "Artesia Technologies" },
- { 10115, "ARTFUL" },
- { 10116, "Auga ApS" },
- { 10117, "Axerra Networks, Inc." },
- { 10118, "BenefitsXML, Inc." },
- { 10119, "BigBangwidth" },
- { 10120, "BRTech" },
- { 10121, "CLEAR Communications Ltd" },
- { 10122, "Creatia Corporation" },
- { 10123, "Crimco Consulting" },
- { 10124, "CUST - Universit\0303\0251 Blaise Pascal (Clermont II)" },
- { 10125, "cyberPIXIE, Inc." },
- { 10126, "DAASI International GmbH" },
- { 10127, "Desana Systems Incorporated" },
- { 10128, "DISA" },
- { 10129, "DiscoverNet, Inc." },
- { 10130, "Ecole Centrale de Lyon" },
- { 10131, "EINK" },
- { 10132, "EM Solutions Pty Ltd" },
- { 10133, "FedEx" },
- { 10134, "FerraraLUG" },
- { 10135, "Front Porch Inc." },
- { 10136, "godot communication technologies gmbh" },
- { 10137, "GTMP Foundation" },
- { 10138, "i2pi" },
- { 10139, "i3sp" },
- { 10140, "INCO Systems, Inc." },
- { 10141, "Infinisys Pty Ltd" },
- { 10142, "Interdimensions" },
- { 10143, "Introut Consulting" },
- { 10144, "iORMYX" },
- { 10145, "Just In Time Consulting" },
- { 10146, "Kern Automatiseringsdiensten BV" },
- { 10147, "Lancaster-Lebanon Intermediate Unit 13" },
- { 10148, "Lightel Systems Corporation" },
- { 10149, "LineOne" },
- { 10150, "Logic One Incorporated" },
- { 10151, "Multimedia University" },
- { 10152, "Muspellsheim" },
- { 10153, "Net2Phone" },
- { 10154, "NetPlay, Inc." },
- { 10155, "Northern Parklife Inc" },
- { 10156, "Novoforum" },
- { 10157, "Onnet Technologies Co." },
- { 10158, "PanAmSat" },
- { 10159, "Panasas Inc." },
- { 10160, "Penn State Outreach Information Systems" },
- { 10161, "PictureIQ" },
- { 10162, "poland.com SA" },
- { 10163, "Remedy Corporation" },
- { 10164, "Roads and Traffic Authority (RTA)" },
- { 10165, "Robert Williams Consulting" },
- { 10166, "Secure Software Services ltd" },
- { 10167, "Siemens Communications Limited" },
- { 10168, "Space Biomedical Center" },
- { 10169, "Suayan Design" },
- { 10170, "Telemig Celular S.A." },
- { 10171, "Telsey" },
- { 10172, "Territory Business Solutions Pty. Ltd." },
- { 10173, "Texil" },
- { 10174, "The Chubb Group of Insurance Companies" },
- { 10175, "Traffion Technologies" },
- { 10176, "Univention" },
- { 10177, "University of Northern Iowa" },
- { 10178, "Western Kentucky University" },
- { 10179, "Wireless Solutions" },
- { 10180, "Am-utils Organization" },
- { 10181, "Cardinal Health Inc." },
- { 10182, "futureLAB AG" },
- { 10183, "Master Quality snc" },
- { 10184, "QCOM TV, Inc." },
- { 10185, "SMP" },
- { 10186, "Weinbrenner Media Consult" },
- { 10187, "Teleview" },
- { 10188, "Piolink, Inc" },
- { 10189, "Congruency, Inc." },
- { 10190, "AEGMIS GmbH" },
- { 10191, "DivergeNet, Inc." },
- { 10192, "E.ON Energie AG" },
- { 10193, "erkle" },
- { 10194, "is:energy" },
- { 10195, "SH Soft" },
- { 10196, "www.thinkingmachines.com" },
- { 10197, "Vovtel Networks, Inc." },
- { 10198, "Carroll-Net, Inc." },
- { 10199, "projecthome limited" },
- { 10200, "i-mail-box project" },
- { 10201, "Eftel" },
- { 10202, "GFT Solutions" },
- { 10203, "Winter AG" },
- { 10204, "Shanghai SCOP Photonics Technology Co. ltd" },
- { 10205, "Apama" },
- { 10206, "ePIK'us Software" },
- { 10207, "Hilgraeve Inc." },
- { 10208, "Valnet Sado S.A." },
- { 10209, "Andes Networks, Inc." },
- { 10210, "AXS-One" },
- { 10211, "BENAU A/S" },
- { 10212, "Cutler & Company" },
- { 10213, "Meriton Networks" },
- { 10214, "ENIGMA SOI SP. Z O.O." },
- { 10215, "FORWARD Technical Co.Ltd" },
- { 10216, "Frantic Films" },
- { 10217, "HotDiary Inc" },
- { 10218, "Hsufarm" },
- { 10219, "I.D.E.A.L. Technology Corporation" },
- { 10220, "IFW Dresden" },
- { 10221, "IMPACT TECHNOLOGIES" },
- { 10222, "InfiniCon Systems" },
- { 10223, "Leo A Daly Company" },
- { 10224, "Lufthansa Systems Infratec GmbH" },
- { 10225, "Marrakech Ltd." },
- { 10226, "MyDN" },
- { 10227, "Neesus Datacom" },
- { 10228, "Net & Publication Consultance GmbH" },
- { 10229, "Netgate s.c." },
- { 10230, "Oriole Corporation" },
- { 10231, "Proficient Networks, Inc." },
- { 10232, "Signiant Corporation" },
- { 10233, "Silicon Goblin Technologies" },
- { 10234, "Snort.org" },
- { 10235, "Startrack Communications (Australia)Pty Ltd" },
- { 10236, "Studio komputerowe AWA" },
- { 10237, "Sullins, Inc." },
- { 10238, "Technische Universitaet Berlin (TU-Berlin)" },
- { 10239, "Tess SA" },
- { 10240, "TransNational Computer Technology" },
- { 10241, "TRPG Association" },
- { 10242, "University of Brighton" },
- { 10243, "Uplogix.com" },
- { 10244, "VALIDATA" },
- { 10245, "Valiosys SA" },
- { 10246, "Virtual Education Space" },
- { 10247, "CollegeUnits.com, Inc." },
- { 10248, "E.Central, Inc" },
- { 10249, "CINtel Intelligent Telecom System Co.,Ltd." },
- { 10250, "NegativeTwenty" },
- { 10251, "Warlock" },
- { 10252, "Diagnostic Laboratory Services, Inc." },
- { 10253, "Napster, Inc." },
- { 10254, "Texuna Technologies Moscow" },
- { 10255, "Infoquenz IT-Dienstleistungen GmbH" },
- { 10256, "ScioByte GmbH" },
- { 10257, "Hadithi Inc" },
- { 10258, "Aracnet Internet Services" },
- { 10259, "Avtec Systems, Inc." },
- { 10260, "BeamReach Networks" },
- { 10261, "Cedar Point Communications" },
- { 10262, "CNC Systems, Inc." },
- { 10263, "Custom Linux Solutions" },
- { 10264, "DATA & INFORMATION TECHNOLOGY LTD" },
- { 10265, "Deltathree, Inc" },
- { 10266, "DIZ Rheinland-Pfalz" },
- { 10267, "Electro Optic Systems" },
- { 10268, "Enterprise Commerce" },
- { 10269, "ePropose" },
- { 10270, "ES-Netze" },
- { 10271, "Forgent" },
- { 10272, "Future Instrument AB" },
- { 10273, "Giant Step Productions LLC" },
- { 10274, "HEXAFLUX-SMS" },
- { 10275, "Master a Distancia" },
- { 10276, "MSI Network Services, Ltd." },
- { 10277, "Multnomah Education Service District" },
- { 10278, "NetAcquire Corporation" },
- { 10279, "Object Valley (Asia Pacific) Limited" },
- { 10280, "Quixotech Systems" },
- { 10281, "SELECT Technology" },
- { 10282, "SpeedKom GmbH" },
- { 10283, "TABCORP" },
- { 10284, "Thomas Jefferson University" },
- { 10285, "Trenitalia S.p.A." },
- { 10286, "Trintech Inc." },
- { 10287, "University At Albany" },
- { 10288, "Vox Mobili" },
- { 10289, "Yukyung Telecom Co., Ltd." },
- { 10290, "Internet Business Constellation S.A." },
- { 10291, "j-m-f.demon.co.uk" },
- { 10292, "Laissez Faire City" },
- { 10293, "LINKAGE SYSTEM INTEGERATION CO.,LTD" },
- { 10294, "DATA SERVICE SRL" },
- { 10295, "iSOLUTION" },
- { 10296, "ITI Ltd." },
- { 10297, "Advantech Co., Ltd." },
- { 10298, "Arbeitsgemeinschaft fuer total abgehobene Technologie" },
- { 10299, "Avantia, Inc" },
- { 10300, "Avantron Technologies Inc." },
- { 10301, "Bluesocket Ltd" },
- { 10302, "Galaxy Systems, Incorporated" },
- { 10303, "ist isdn support technik GmbH" },
- { 10304, "LGT Financial Services" },
- { 10305, "Magnifix Sdn Bhd" },
- { 10306, "MSO Technologies" },
- { 10307, "Optical Solutions Inc" },
- { 10308, "OSGi" },
- { 10309, "SOHO Skyway" },
- { 10310, "tang-IT Consulting GmbH" },
- { 10311, "Kerio Technologies" },
- { 10312, "Translogic Systems, Inc." },
- { 10313, "Autinform GmbH" },
- { 10314, "Provenir" },
- { 10315, "Prima e.V." },
- { 10316, "Rafael Ltd." },
- { 10317, "Nanum Technology" },
- { 10318, "SaskTel International Ltd." },
- { 10319, "Semantics AG" },
- { 10320, "Amherst College" },
- { 10321, "AUNet" },
- { 10322, "Centre For Advanced Technology" },
- { 10323, "Convergence Network Research Ltd." },
- { 10324, "CrabusLDAP" },
- { 10325, "EarthConnect Corporation" },
- { 10326, "Ecole Nationale Superieure des Mines de Paris" },
- { 10327, "FiberCity Networks" },
- { 10328, "Globeflow SA" },
- { 10329, "Integra Micro Systems (P) Ltd." },
- { 10330, "KaVaDo Inc." },
- { 10331, "Lightning Data Networks" },
- { 10332, "MaxHosting GBR" },
- { 10333, "MetaNet" },
- { 10334, "Mischief Networking" },
- { 10335, "RLM Systems Pty. Ltd." },
- { 10336, "Summit Tech Communications" },
- { 10337, "Valis LTD" },
- { 10338, "Locale Systems" },
- { 10339, "StarRemote Wireless, Inc." },
- { 10340, "Indiana State University" },
- { 10341, "Klinik Loewenstein gGmbH" },
- { 10342, "Miami University" },
- { 10343, "NetExcell" },
- { 10344, "Netregistry Pty Ltd" },
- { 10345, "Newport Networks Limitd" },
- { 10346, "OmegaBand, Inc." },
- { 10347, "Plustream, Inc." },
- { 10348, "SOFTPRO GmbH & Co. KG" },
- { 10349, "Sysgem AG" },
- { 10350, "System Software Solutions" },
- { 10351, "Oblivion" },
- { 10352, "Retevisi\0303\0263n M\0303\0263vil, S.A." },
- { 10353, "InnoCom" },
- { 10354, "Brewster Academy" },
- { 10355, "ITAction" },
- { 10356, "Target Revocable E-Mail Corporation" },
- { 10357, "Roy S. Rapoport" },
- { 10358, "Accelio Corporation" },
- { 10359, "Adtel Software" },
- { 10360, "AgesMUD Technology, Co., Ltd." },
- { 10361, "Bharat Heavy Electricals Limited" },
- { 10362, "BluWare, Inc" },
- { 10363, "Catbird Networks" },
- { 10364, "Central Manchester City Learning Center" },
- { 10365, "Davox Corp." },
- { 10366, "Dialpad Communications" },
- { 10367, "donnie21" },
- { 10368, "Fujitsu Technology Solutions GmbH (formerly 'Fujitsu Siemens Computers')" },
- { 10369, "Fujitsu Prime Software Technologies Ltd." },
- { 10370, "Impulsesoft" },
- { 10371, "Inabyte Inc." },
- { 10372, "Intelligent Appliance Lab" },
- { 10373, "Le Reseau" },
- { 10374, "Lifeline Systems Inc" },
- { 10375, "Makina Corpus" },
- { 10376, "NETFRONT" },
- { 10377, "OnMobile System Inc" },
- { 10378, "PacketVideo" },
- { 10379, "Princeton Solutions Group" },
- { 10380, "TeleSys Software, Inc." },
- { 10381, "TrendPoint Systems" },
- { 10382, "UCNET" },
- { 10383, "Universite de Liege" },
- { 10384, "Virginia Commonwealth University" },
- { 10385, "Westronic Systems, Inc." },
- { 10386, "YoungWoo Telecom Co., LTD" },
- { 10387, "Dongah Elecomm" },
- { 10388, "Supportcomm Teleinformatica SA" },
- { 10389, "Intabo" },
- { 10390, "DELTA, Danish Electronics, Light & Acoustics" },
- { 10391, "Bharat Sanchar Nigam Limited" },
- { 10392, "Abeona Networks" },
- { 10393, "APEH" },
- { 10394, "Banamex, S.A." },
- { 10395, "Belo Corporation" },
- { 10396, "California State University, Office of the Chancellor" },
- { 10397, "CK Software GmbH (formerly 'CKSOFT, Christian Kratzer Software Entwicklung und Vertrieb')" },
- { 10398, "Covasoft, Inc." },
- { 10399, "Datakey" },
- { 10400, "Electric Lightwave, Inc." },
- { 10401, "Ideo Concepts Co. Ltd." },
- { 10402, "interdev" },
- { 10403, "Istituto Nazionale di Fisica Nucleare" },
- { 10404, "LivingLogic AG" },
- { 10405, "Mental Health Cooperative, Inc." },
- { 10406, "Neural Audio, Inc." },
- { 10407, "North Coast Software" },
- { 10408, "Percula Consulting GmbH" },
- { 10409, "Tellurian Pty Ltd" },
- { 10410, "The Falcon's Nest" },
- { 10411, "University of North Carolina at Chapel Hill" },
- { 10412, "aTelo, Inc." },
- { 10413, "System Innovations, Inc." },
- { 10414, "Brauerei C. & A. Veltins GmbH & Co." },
- { 10415, "3GPP" },
- { 10416, "ABC Virtual Communications" },
- { 10417, "Amerion, LLC" },
- { 10418, "Avocent Corporation" },
- { 10419, "Bactol Technical Limited" },
- { 10420, "Bayerisches Landeskriminalamt Abt. IuK" },
- { 10421, "C-CURE cvba" },
- { 10422, "China PTIC Information Industry Corporation" },
- { 10423, "CityXpress Corp." },
- { 10424, "Cricket Communications" },
- { 10425, "Electricity Generating Authority of Thailand" },
- { 10426, "Elex NV" },
- { 10427, "Embrace Networks" },
- { 10428, "Furukawa Electric LatAm S.A (formerly 'Furukawa Industrial S.A. - Curitiba')" },
- { 10429, "Gelwarg.Net" },
- { 10430, "globalremote.com AG" },
- { 10431, "Ingenieurbuero Kittelberger GmbH" },
- { 10432, "Mott Community College" },
- { 10433, "MuTek Solution Inc." },
- { 10434, "NIKHEF" },
- { 10435, "Omnitel" },
- { 10436, "Oxford university" },
- { 10437, "Peppercon AG" },
- { 10438, "Portima SC" },
- { 10439, "Power Measurement Ltd" },
- { 10440, "Rose I.T. Solutions" },
- { 10441, "Silas Technologies, Inc." },
- { 10442, "Spider Networks" },
- { 10443, "Three Pillars" },
- { 10444, "tichen.net" },
- { 10445, "Trillium Photonics" },
- { 10446, "Trinity Expert Systems plc" },
- { 10447, "University of Mississippi" },
- { 10448, "University of Puget Sound" },
- { 10449, "Xceedium, Inc." },
- { 10450, "Altamar Networks" },
- { 10451, "Boston Market Corporation" },
- { 10452, "Egton Medical Information Systems Ltd" },
- { 10453, "IL JIN TELECOM ELEC.CO., Ltd." },
- { 10454, "Optical Crossing Inc" },
- { 10455, "Paradigm" },
- { 10456, "PLANET Technology Corp." },
- { 10457, "DB Informatik Dienste GmbH" },
- { 10458, "2000-X Technologies, Inc." },
- { 10459, "Hexin Software" },
- { 10460, "HiSolutions AG" },
- { 10461, "Tixo Consulting" },
- { 10462, "Atek Ltd." },
- { 10463, "DEVK Versicherungen" },
- { 10464, "elata plc" },
- { 10465, "Flypaper" },
- { 10466, "Holim Technology" },
- { 10467, "Ingenieurb\0303\0274ro J\0303\0266rg Geistmann" },
- { 10468, "IRTNOG.ORG" },
- { 10469, "Lidcam Technology Pty Ltd" },
- { 10470, "Media Brokers International" },
- { 10471, "OpenFortress" },
- { 10472, "Recourse Technologies, Inc." },
- { 10473, "SEB AB" },
- { 10474, "Servlets.Net Corporation" },
- { 10475, "Slovak University of Agriculture" },
- { 10476, "Summit Media Partners, LLC" },
- { 10477, "Telephony@Work Inc." },
- { 10478, "Transeonic Systems, Inc." },
- { 10479, "Web Services, Inc." },
- { 10480, "Wily Technology" },
- { 10481, "AlJISR Information Services" },
- { 10482, "Nortel" },
- { 10483, "Winalysis Software" },
- { 10484, "TF1 sa" },
- { 10485, "About Web Services" },
- { 10486, "Aspelle Ltd" },
- { 10487, "Business Information Publications" },
- { 10488, "Chelsio Communications" },
- { 10489, "Design Combus Ltd" },
- { 10490, "GNF" },
- { 10491, "Hampshire College" },
- { 10492, "HST High Soft Tech GmbH" },
- { 10493, "Innovance Networks Inc." },
- { 10494, "InphoMatch Inc." },
- { 10495, "Interlink, Inc" },
- { 10496, "Link Simulation & Training" },
- { 10497, "Maly's of California" },
- { 10498, "michaeljcrawford.com" },
- { 10499, "Ministerium des Innern Sachsen-Anhalt" },
- { 10500, "Music Choice" },
- { 10501, "Netman Company" },
- { 10502, "North Dakota University System" },
- { 10503, "Power Innovations International" },
- { 10504, "Printronix, Inc." },
- { 10505, "Quorus Medical Systems" },
- { 10506, "RadioShack Corporation" },
- { 10507, "Reciproca" },
- { 10508, "Res Mod Man" },
- { 10509, "Rightvision" },
- { 10510, "ScreamingMedia" },
- { 10511, "SimpleDevices, Inc." },
- { 10512, "Spectrum Image" },
- { 10513, "Steltor" },
- { 10514, "StrongAuth, Inc." },
- { 10515, "Terry Nazon Inc" },
- { 10516, "T-Nova GmbH, Deutsche Telekom" },
- { 10517, "Toronto POlice Service" },
- { 10518, "TrunkNet" },
- { 10519, "Tsinghua Unisplendour Co., ltd" },
- { 10520, "Tyco Electronics Power Systems" },
- { 10521, "VoicePlanet, Inc." },
- { 10522, "Voigt & Haeffner GmbH" },
- { 10523, "Wanadoo Data" },
- { 10524, "Widevine Technologies" },
- { 10525, "Evangelisch Lutherische Kirche Bayern" },
- { 10526, "Facultad de Ingenieria" },
- { 10527, "METRObility Optical Systems, Inc." },
- { 10528, "Solid Information Technology Corp" },
- { 10529, "Gemtek Systems Holding BV" },
- { 10530, "NordicEdge" },
- { 10531, "C.T.Com" },
- { 10532, "RifeTech Inc." },
- { 10533, "SEITENBAU online agentur GbmH" },
- { 10534, "SECOM Co., Ltd." },
- { 10535, "London Internet Exchange" },
- { 10536, "Simon's Rock College of Bard" },
- { 10537, "AB Trav och Galopp" },
- { 10538, "Abstrakt Design" },
- { 10539, "AlwaysOn Ltd" },
- { 10540, "AXL Software" },
- { 10541, "Caymasa El Sendero, SA" },
- { 10542, "ChongQing GRC Telecom Co., Ltd" },
- { 10543, "DeJarnette Research Systems, Inc." },
- { 10544, "Factual Data" },
- { 10545, "gentics net.solutions" },
- { 10546, "Inturio Property Rights Holdings Limited" },
- { 10547, "Matrix Applied Computing Ltd" },
- { 10548, "Netzwert AG" },
- { 10549, "NewVation" },
- { 10550, "n-tv GmbH & Co. KG" },
- { 10551, "parergy" },
- { 10552, "Passlogix Inc." },
- { 10553, "Q-Networks" },
- { 10554, "Qwest Wireless, L.L.C" },
- { 10555, "Ramcar Group of Companies" },
- { 10556, "recomp GmbH Netzwerke & Systemberatung" },
- { 10557, "Sherwood International Limited" },
- { 10558, "Silogix" },
- { 10559, "Softeck" },
- { 10560, "South Florida Water Management District" },
- { 10561, "Star Valley Solutions Inc." },
- { 10562, "Werkleitz Gesellschaft e.V." },
- { 10563, "Portland Public Schools" },
- { 10564, "T.I.A. Scandinavia" },
- { 10565, "Universite de Savoie" },
- { 10566, "Universiti Pendidikan Sultan Idris" },
- { 10567, "eyou.net Corp." },
- { 10568, "China Sunbo Corp." },
- { 10569, "Coker Net" },
- { 10570, "Manly Man Club" },
- { 10571, "Merck KGaA" },
- { 10572, "100world.com AG" },
- { 10573, "Aitech Space Systems Inc." },
- { 10574, "Carbon Based Pty Ltd." },
- { 10575, "Cumulus IT AS" },
- { 10576, "Cygsoft Limited" },
- { 10577, "Eilat On-Line Ltd." },
- { 10578, "Electric Insurance Company" },
- { 10579, "Eswoosh" },
- { 10580, "Handspring, Inc" },
- { 10581, "Icomera" },
- { 10582, "Linear Systems Ltd." },
- { 10583, "Netizen S.A." },
- { 10584, "Hopcount Limited" },
- { 10585, "Paris-alesia" },
- { 10586, "PennWell Corp" },
- { 10587, "PharmaPartners B.V." },
- { 10588, "Pixelboxx GmbH" },
- { 10589, "Rocketrader.com" },
- { 10590, "Sage Information Consultants , Inc." },
- { 10591, "Salix Training Limited" },
- { 10592, "SolutionInc" },
- { 10593, "SYBCOM GmbH" },
- { 10594, "Transynergy" },
- { 10595, "Tyrell Software Corporation" },
- { 10596, "Vignon Informatique France" },
- { 10597, "Alliance Capital" },
- { 10598, "Applied System Design" },
- { 10599, "Department of Families" },
- { 10600, "Innovative Computing Laboratory" },
- { 10601, "Jataayu Software Pvt Ltd." },
- { 10602, "JIERA" },
- { 10603, "Kafre" },
- { 10604, "Zarlink Semiconductor" },
- { 10605, "Infodesk S. A." },
- { 10606, "IntraCom Australia Pty Ltd" },
- { 10607, "ACG Solutions, LLC" },
- { 10608, "alpha-lab" },
- { 10609, "Applied Science Fiction" },
- { 10610, "Aubergiste Inc." },
- { 10611, "BLU SPA" },
- { 10612, "Centralny Osrodek Informatyki Gornictwa S.A." },
- { 10613, "Envivio" },
- { 10614, "Equity Technology Group, Inc." },
- { 10615, "GartonWorks, Inc." },
- { 10616, "GeDInfo s.c.r.l." },
- { 10617, "INFO Consulting GmbH" },
- { 10618, "InfoStream ASP" },
- { 10619, "innuworks" },
- { 10620, "iSoftel Ltd" },
- { 10621, "bvba Med. Kab. dr. Sebrechts E." },
- { 10622, "Karma Designs" },
- { 10623, "KnowledgeCube" },
- { 10624, "Richard Lucassen Electronics" },
- { 10625, "Maincube Inc." },
- { 10626, "Mulvey Family" },
- { 10627, "N-SOFT" },
- { 10628, "Project 49 AG" },
- { 10629, "Questus Group, Inc." },
- { 10630, "Scintec AG" },
- { 10631, "SeRIQA Networks" },
- { 10632, "Telecomet International" },
- { 10633, "TICOM, Inc." },
- { 10634, "Trio Networks" },
- { 10635, "Tucows Inc." },
- { 10636, "University of Applied Sciences Cologne" },
- { 10637, "Vanderbilt University Medical Center" },
- { 10638, "Venation" },
- { 10639, "Unassigned" },
- { 10640, "West Interactive Corporation" },
- { 10641, "White Eagle Informatics" },
- { 10642, "Zebra Technologies Corporation" },
- { 10643, "NC Soft" },
- { 10644, "Interactive Software Design" },
- { 10645, "Pandanus Ltd" },
- { 10646, "ADI Computer Solutions" },
- { 10647, "Advanced Science & Technology Institute" },
- { 10648, "BlazeNet Ltd." },
- { 10649, "DST Innovis" },
- { 10650, "Easter-eggs" },
- { 10651, "ENAC" },
- { 10652, "Ezitrust Limited" },
- { 10653, "Fotre & Associates" },
- { 10654, "Future Space, S.A." },
- { 10655, "Global Office Software Pty Ltd" },
- { 10656, "Hardy and Associates" },
- { 10657, "InfoCyclone Ltd." },
- { 10658, "IP Services" },
- { 10659, "ISR Global Telecom, Inc." },
- { 10660, "KeyTrend Technology (S) Pte Ltd" },
- { 10661, "MainBrain" },
- { 10662, "Mid-Hudson Communications" },
- { 10663, "MQS" },
- { 10664, "Netropolis" },
- { 10665, "Ocyrus" },
- { 10666, "Organization of Residence Students" },
- { 10667, "Proxima Technology Pty Ltd" },
- { 10668, "riodata GmbH" },
- { 10669, "San Miguel Industrial S.A." },
- { 10670, "Solutions E.T.C. GmbH" },
- { 10671, "studio Alpha" },
- { 10672, "Swarthmore College" },
- { 10673, "TELEM GmbH" },
- { 10674, "TOP-keskus" },
- { 10675, "UNESCO" },
- { 10676, "UniData Communication Systems, Inc" },
- { 10677, "University of Debrecen" },
- { 10678, "WorldWideWatson" },
- { 10679, "Zzyzx Technologies Inc." },
- { 10680, "CAPCom AG" },
- { 10681, "KASYS Incorporated" },
- { 10682, "UDcast" },
- { 10683, "Heaman System co.,ltd." },
- { 10684, "Terabolic" },
- { 10685, "Object Tools Limited" },
- { 10686, "Thruport Technologies" },
- { 10687, "Townsend Communications, Inc." },
- { 10688, "Unassigned" },
- { 10689, "Ahaza Systems" },
- { 10690, "Celltrex LTD" },
- { 10691, "Chataigner" },
- { 10692, "freenet.de AG" },
- { 10693, "iTopia Inc." },
- { 10694, "Measurable Solutions, Inc." },
- { 10695, "NIXC, Inc." },
- { 10696, "Nuxeo" },
- { 10697, "Optio Software, Inc." },
- { 10698, "Sanit\0303\0244tsbetrieb Meran" },
- { 10699, "SpellCaster Telecommunications Inc." },
- { 10700, "Bulldog Technologies" },
- { 10701, "Telefonica DataCorp, S.A." },
- { 10702, "Solvare" },
- { 10703, "ATnet" },
- { 10704, "Barracuda Networks AG (formerly 'phion Information Technologies')" },
- { 10705, "VOGT electronic AG" },
- { 10706, "Accelerated Encryption Processing Ltd" },
- { 10707, "Adhersis" },
- { 10708, "Advanced System Architectures Ltd" },
- { 10709, "ATUX" },
- { 10710, "Avanade Inc" },
- { 10711, "BAWI" },
- { 10712, "Belkamneft" },
- { 10713, "Chevin Ltd" },
- { 10714, "Dimension Data" },
- { 10715, "ForwardPath" },
- { 10716, "Freedomland ITN SpA" },
- { 10717, "Genie Telecom" },
- { 10718, "Harris Wilder Pty Ltd" },
- { 10719, "Atos Origin Nederland B.V. (aonl)" },
- { 10720, "LIMSI" },
- { 10721, "Britestream Networks, Inc." },
- { 10722, "Marque d'Or" },
- { 10723, "Mercury PS" },
- { 10724, "Morpheus Net" },
- { 10725, "Pacific Internet Ltd" },
- { 10726, "Quantiva, Inc" },
- { 10727, "Red Cientifica Peruana" },
- { 10728, "Redline Communications Inc." },
- { 10729, "Red-M Communications Ltd" },
- { 10730, "SEE Telecom" },
- { 10731, "Silicon Energy" },
- { 10732, "Symbidia Limited" },
- { 10733, "The Mercury File System" },
- { 10734, "TippingPoint Technologies" },
- { 10735, "Unicorn Holding a.s." },
- { 10736, "University of Denver" },
- { 10737, "Web Simulation" },
- { 10738, "Comuniq Inc." },
- { 10739, "DELPHIC Medical Systems" },
- { 10740, "Neodev" },
- { 10741, "Vertical Inversion Systems, Inc." },
- { 10742, "Nozema N.V." },
- { 10743, "Riksf\0303\0266rs\0303\0244kringsverket (RFV)" },
- { 10744, "Kvarnb\0303\0244cken Konsult AB" },
- { 10745, "CSO Lanifex GmbH" },
- { 10746, "Rechenzentrum der Bundesfinanzverwaltung Frankfurt am Main" },
- { 10747, "Rowan University" },
- { 10748, "Software Factory GmbH" },
- { 10749, "/dev/secure Pty Ltd" },
- { 10750, "3G-Scene Plc" },
- { 10751, "3Plex" },
- { 10752, "Artiman Oy" },
- { 10753, "Billing for Enterprises" },
- { 10754, "CAS Tecnologia S/A" },
- { 10755, "ChipData, Inc." },
- { 10756, "Chongho Information & Communications co., LTD" },
- { 10757, "Diogenes, Inc." },
- { 10758, "Elyzium Limited" },
- { 10759, "Energos asa" },
- { 10760, "Gravity Hill Technologies, Inc." },
- { 10761, "Greenheck Fan" },
- { 10762, "Horizon Web Graphics" },
- { 10763, "HanSung Teliann, Inc" },
- { 10764, "Infotrek" },
- { 10765, "INZEN Co., Ltd." },
- { 10766, "ISG Systems AB" },
- { 10767, "James Madison University" },
- { 10768, "L'Envol Limited" },
- { 10769, "ITDZ Berlin" },
- { 10770, "Make-Ing.com.ar" },
- { 10771, "Morrison Academy" },
- { 10772, "novalis media" },
- { 10773, "Pacific Northwest Networks, Inc." },
- { 10774, "Perforations Ltd" },
- { 10775, "PERI Formwork Systems, Inc." },
- { 10776, "Reactive Network Solutions Inc" },
- { 10777, "Revicon Srl" },
- { 10778, "RTCL Lab, University of Michigan" },
- { 10779, "Sparkassenversicherung Wiesbaden" },
- { 10780, "SWAN, s.r.o." },
- { 10781, "Schneider Electric Buildings AB (previous was 'TAC AB')" },
- { 10782, "TAZZ Networks" },
- { 10783, "The Church of Jesus Christ of Latter-Day Saints" },
- { 10784, "Time & Frequency Solutions Ltd" },
- { 10785, "Transtech Networks" },
- { 10786, "UNSW Physics APT" },
- { 10787, "Verity, Inc." },
- { 10788, "Volt Information Sciences" },
- { 10789, "WebAgents GmbH" },
- { 10790, "Websilicon" },
- { 10791, "WestOne" },
- { 10792, "Xeline Co., Ltd." },
- { 10793, "YourASP Pty Ltd" },
- { 10794, "ZTR Control System" },
- { 10795, "Bizz Technologies SAS" },
- { 10796, "C.R.F. Consulting Ltd" },
- { 10797, "Commercial Data Systems" },
- { 10798, "Commtel" },
- { 10799, "Jungo Software Technologies Ltd." },
- { 10800, "Kinor" },
- { 10801, "Rapid 7, Inc." },
- { 10802, "RBG" },
- { 10803, "Staudinger Wels" },
- { 10804, "Union Bank of California" },
- { 10805, "Wedgetail Communications" },
- { 10806, "Xebeo Communications, Inc." },
- { 10807, "Centrale Financien Instellingen" },
- { 10808, "China Greatwall Computer Shenzhen Co., LTD" },
- { 10809, "Disha Technologies" },
- { 10810, "Nobelmann" },
- { 10811, "XiaMen Good First Optics Electricity Integration CO.,LTD" },
- { 10812, "InfoTeCs" },
- { 10813, "Centre National de la Recherche Scientifique" },
- { 10814, "UNIFIED Technologies, Inc." },
- { 10815, "CyberTrader, Inc." },
- { 10816, "Datang Radio Communication Branch" },
- { 10817, "Heraeus Holding GmbH" },
- { 10818, ".windh AB" },
- { 10819, "[IIX-NAP] MAHATEL, PT" },
- { 10820, "LM Sistemas" },
- { 10821, "Absolight" },
- { 10822, "ADTEC" },
- { 10823, "Advanced Research & Technology Ltd" },
- { 10824, "AGAVA Software Ltd." },
- { 10825, "Alectta" },
- { 10826, "Alice-Salomon-Fachhochschule f\0303\0274r Sozialarbeit und Sozialp\0303\0244dagogik Berlin" },
- { 10827, "ALVE Technology Corporation" },
- { 10828, "American Data Technology, Inc." },
- { 10829, "Andover Controls Corporation" },
- { 10830, "APCON, Inc." },
- { 10831, "At Oliver.com" },
- { 10832, "B2C2, Inc." },
- { 10833, "binarycore networks" },
- { 10834, "CargoBay" },
- { 10835, "cartoonviolence.net" },
- { 10836, "Command-e Technology Co., Ltd." },
- { 10837, "CompHealth" },
- { 10838, "Contec C.V." },
- { 10839, "DISTRIBUTEL" },
- { 10840, "Dragon Computer Consultants Inc." },
- { 10841, "Ejasent Inc." },
- { 10842, "EnBW Systeme Infrastruktur Support GmbH" },
- { 10843, "Ferret" },
- { 10844, "Fidelia, Inc." },
- { 10845, "grandmas, inc" },
- { 10846, "Impact Technologies, Inc." },
- { 10847, "Insystek Inc." },
- { 10848, "IPfonix, Inc." },
- { 10849, "Ithiriel Software" },
- { 10850, "KEFTA Inc." },
- { 10851, "Knowledge Intelligence AG" },
- { 10852, "Kuulalaakeri Oy" },
- { 10853, "LTC Sp z o.o." },
- { 10854, "Lviv National Polytechnical University" },
- { 10855, "Mascon Communication Technologies" },
- { 10856, "Menlo Park Technologies" },
- { 10857, "Mindframe Software & Services Pvt. Ltd." },
- { 10858, "Mycon Networks" },
- { 10859, "myinternet Ltd" },
- { 10860, "Naumann EDV" },
- { 10861, "Niels Bohr Institute" },
- { 10862, "NOAH Industries, Inc." },
- { 10863, "Odyssey Technologies Limited" },
- { 10864, "Pacific University" },
- { 10865, "Pete Wilson, consulting software engineer" },
- { 10866, "Philip M Lembo" },
- { 10867, "playdead networks" },
- { 10868, "PremiTech A/S" },
- { 10869, "Datalogic Mobile, Inc." },
- { 10870, "Safewww r&d Ltd" },
- { 10871, "Shanghai Teraband Phtonics Co., Ltd." },
- { 10872, "SkyFlow Inc" },
- { 10873, "Soros Foundation Kazakhstan" },
- { 10874, "Spectrum Astro Inc" },
- { 10875, "SSH Communications Security Corp." },
- { 10876, "Super Micro Computer Inc." },
- { 10877, "System Services Sp. z o. o." },
- { 10878, "Techlink Desenvolvimentos Tecnologicos Ltda" },
- { 10879, "Tenebras, LLC" },
- { 10880, "Togabi Technologies, Inc." },
- { 10881, "Uffizio Software Consultants Pvt. Ltd." },
- { 10882, "Universit\0303\0251 Paris 5" },
- { 10883, "Unassigned" },
- { 10884, "Vinzant, Inc." },
- { 10885, "Virtual Monet Technologies" },
- { 10886, "Westland Helicopters Ltd" },
- { 10887, "WizCom Ltd" },
- { 10888, "Xelus Inc" },
- { 10889, "AL Digital Ltd." },
- { 10890, "CommWorks" },
- { 10891, "Dave's Network Services" },
- { 10892, "Doctors.net.uk" },
- { 10893, "Iomedex Corporation" },
- { 10894, "Novra Technologies Inc." },
- { 10895, "Raonet Systems Inc." },
- { 10896, "The Career and Education Network, Inc." },
- { 10897, "RECOMBINANTWEB" },
- { 10898, "OOZOOD" },
- { 10899, "Consors Discount-Broker AG" },
- { 10900, "Serco" },
- { 10901, "Spinnaker Networks, Inc." },
- { 10902, "3IC Inc." },
- { 10903, "Activate" },
- { 10904, "Alpine-Mayreder BauGmbH" },
- { 10905, "Arsenal Digital Solutions" },
- { 10906, "A-SK Computers" },
- { 10907, "Ateb Limited" },
- { 10908, "Bigsur Communications" },
- { 10909, "BroadTel Communications" },
- { 10910, "Chateau Systems, Inc" },
- { 10911, "Appello, a.s." },
- { 10912, "Cincom Systems, Inc." },
- { 10913, "Client Software International" },
- { 10914, "COLT Telecommunications" },
- { 10915, "ConAgra Foods, Inc." },
- { 10916, "Cyneta Networks" },
- { 10917, "Datamax Coporation" },
- { 10918, "Datamission" },
- { 10919, "dbap GmbH" },
- { 10920, "Dir Solutions bv" },
- { 10921, "Drumgrange Limited" },
- { 10922, "ELSIS" },
- { 10923, "Ericsson AB - Packet Core Networks" },
- { 10924, "ESTOS GmbH" },
- { 10925, "Firmseek" },
- { 10926, "Food Brokers Limited" },
- { 10927, "Fullsix" },
- { 10928, "Fybubblan.com Consulting" },
- { 10929, "GCD Printlayout" },
- { 10930, "Georg-August Univeristy Goettingen (Internet-AG)" },
- { 10931, "GIGA STREAM - UMTS Technologies GmbH" },
- { 10932, "Gunadarma University" },
- { 10933, "H.A. Technical Solutions" },
- { 10934, "Hamsch" },
- { 10935, "Horizon Digital Enterprise, Inc." },
- { 10936, "Ijichi Research" },
- { 10937, "INFALSYS" },
- { 10938, "International Messaging Associates Corporation" },
- { 10939, "internet news" },
- { 10940, "JD Thomlinson, Ltd." },
- { 10941, "Kandalaya" },
- { 10942, "LifeLine Networks bv" },
- { 10943, "Linagora" },
- { 10944, "Maikis - EDV Dienstleistungen" },
- { 10945, "Midway Games West, Inc." },
- { 10946, "Mouselink Ltd" },
- { 10947, "Multi-Druck GmbH" },
- { 10948, "MynaNET" },
- { 10949, "Netflix.com" },
- { 10950, "Netrake Corporation" },
- { 10951, "NetUSE AG" },
- { 10952, "NetZero Inc." },
- { 10953, "Nightlife.se" },
- { 10954, "nikolici.com" },
- { 10955, "Wescan Limited" },
- { 10956, "Noviforum, Ltd." },
- { 10957, "noze" },
- { 10958, "OLICORP Technologies" },
- { 10959, "Politechnika Warszawska" },
- { 10960, "Qualicontrol" },
- { 10961, "Ricciardi Technologies, Inc" },
- { 10962, "Rutgers, the State University of New Jersey" },
- { 10963, "SENA Systems" },
- { 10964, "SMT Data A/S" },
- { 10965, "SolidStreaming, Inc." },
- { 10966, "Sollie codeWorks" },
- { 10967, "Surftool Systems" },
- { 10968, "Systematic Software Engineering A/S" },
- { 10969, "Thales Communications" },
- { 10970, "Threshold Networks" },
- { 10971, "VPN Dynamics, Inc." },
- { 10972, "WIT-Software" },
- { 10973, "XMS" },
- { 10974, "Youngstown State University" },
- { 10975, "Zion Software, LLC" },
- { 10976, "Zoomtown.com" },
- { 10977, "Grid-Ireland" },
- { 10978, "Kumamoto Industrial Research Institute" },
- { 10979, "Capitel Group" },
- { 10980, "IQStor Networks" },
- { 10981, "RouterD Networks Limited" },
- { 10982, "UBS Warburg" },
- { 10983, "BTG, Inc." },
- { 10984, "bvba Woodstone" },
- { 10985, "Jive Software" },
- { 10986, "Beijing Polytechnic University" },
- { 10987, "Eircell 2000" },
- { 10988, "SoloMio Corporation" },
- { 10989, "Alibre Incorporated" },
- { 10990, "Astrum Consulting" },
- { 10991, "Axis Integrated" },
- { 10992, "Babel Professional Services srl" },
- { 10993, "BabelTech A/S" },
- { 10994, "BISS GmbH" },
- { 10995, "Blue Mug" },
- { 10996, "CCSS (Europe) Ltd" },
- { 10997, "Connection Software" },
- { 10998, "Conversant Systems, LLC" },
- { 10999, "COS AG / Austria" },
- { 11000, "Creative Networking Solutions" },
- { 11001, "Dreyer Consulting" },
- { 11002, "Du Maurier Ltd" },
- { 11003, "e^deltacom" },
- { 11004, "EarthTrax, Inc." },
- { 11005, "E-Certify" },
- { 11006, "FlashNet Computers Ltd" },
- { 11007, "FMV, Swedish Defence Materiel Administration" },
- { 11008, "Fujiwara Soft Office, Co., Ltd." },
- { 11009, "Hadmut Danisch" },
- { 11010, "Harrison Family Organization" },
- { 11011, "HiWAAY Information Services" },
- { 11012, "ImagineAsia, Inc." },
- { 11013, "LEC Information Systems" },
- { 11014, "Liberty University" },
- { 11015, "Lokomo Systems AB" },
- { 11016, "ManageStar.com, Inc." },
- { 11017, "MARA Systems AB" },
- { 11018, "Massillon Cable Communications" },
- { 11019, "MENTA" },
- { 11020, "MVP Systems, Inc." },
- { 11021, "N2 Broadband, Inc." },
- { 11022, "Omnisci Software, Inc." },
- { 11023, "Oxford University Computing Services" },
- { 11024, "P&S DataCom Corporation" },
- { 11025, "Pagoo" },
- { 11026, "Perfectway Corporation" },
- { 11027, "Physics Department, University of Kassel" },
- { 11028, "Reliable Networks, Inc." },
- { 11029, "Reziprozitaet Consulting" },
- { 11030, "RouteFree Inc" },
- { 11031, "SATEC SA" },
- { 11032, "Semandex Networks, Inc." },
- { 11033, "SentitO Networks" },
- { 11034, "Sentor Monitoring Systems Pty Ltd" },
- { 11035, "Sheer Genius Software" },
- { 11036, "Softax" },
- { 11037, "Stratyc L.L.C." },
- { 11038, "TECO SOFT Espa\0303\0261a, S.A." },
- { 11039, "Tivo, Inc." },
- { 11040, "Tool Banking Solutions" },
- { 11041, "UFSM" },
- { 11042, "ViaCLIX, Inc." },
- { 11043, "VIDA Software S.L." },
- { 11044, "Vodafone, Egypt" },
- { 11045, "Windborne Productions, Inc." },
- { 11046, "Zero Computing S.r.l." },
- { 11047, "AK-Industrieinformatik GmbH" },
- { 11048, "billiton internetservices" },
- { 11049, "CP Corporate Planning AG" },
- { 11050, "IDX Systems Corporations" },
- { 11051, "Point Systems" },
- { 11052, "Achmea Holding N.V." },
- { 11053, "Direct Internet, Inc." },
- { 11054, "Roman Seidl" },
- { 11055, "InnoAce CO., Ltd." },
- { 11056, "Allmycrap.com" },
- { 11057, "Eyefinity, Inc" },
- { 11058, "Hitachi Information & Telecommunication Engineering, Ltd." },
- { 11059, "IMPRESS SOFTWARE AG" },
- { 11060, "Intervoice-Brite" },
- { 11061, "Longitude, Inc." },
- { 11062, "Nurnberg Scientific" },
- { 11063, "PingMagic Limited" },
- { 11064, "RHB Securities" },
- { 11065, "Telcoware" },
- { 11066, "Teniad Technologies" },
- { 11067, "University of Belgrade" },
- { 11068, "Webscreen Technology Ltd." },
- { 11069, "Yandex" },
- { 11070, "uReach Technologies, Inc." },
- { 11071, "Motus Technologies" },
- { 11072, "IOTEC AB" },
- { 11073, "7th-Angel" },
- { 11074, "ALTER" },
- { 11075, "Antarix e Applications Limited" },
- { 11076, "Banesto S.A." },
- { 11077, "C.net d.o.o." },
- { 11078, "Centralworks LLC" },
- { 11079, "EIT Ltd" },
- { 11080, "Airwide Solutions (formerly 'First Hop')" },
- { 11081, "Hydrogen Line, Inc." },
- { 11082, "Illinois Central College" },
- { 11083, "Intersix Technologies S.A." },
- { 11084, "ITDevices, Inc." },
- { 11085, "Manojam" },
- { 11086, "MindTree Consulting Pvt Ltd" },
- { 11087, "Netforest Inc." },
- { 11088, "Netus Technologies Co., Ltd." },
- { 11089, "Preferred Systems" },
- { 11090, "Propero Limited" },
- { 11091, "Raze Technologies" },
- { 11092, "St. Boniface General Hospital" },
- { 11093, "Telamon Systems" },
- { 11094, "xpedite systems inc" },
- { 11095, "Loea Communications" },
- { 11096, "BlueArc, part of Hitachi Data Systems" },
- { 11097, "HEXAL AG" },
- { 11098, "ComTelco (North America), Inc." },
- { 11099, "Dickerson Enginering" },
- { 11100, "Linux NetworX" },
- { 11101, "NRI SecureTechnologies, Ltd." },
- { 11102, "OSA Technologies Inc." },
- { 11103, "Opus International Consultants Ltd" },
- { 11104, "Passback IT Consultancy" },
- { 11105, "Pivot Consulting Ltd" },
- { 11106, "Scene7, Inc" },
- { 11107, "Ucentric Systems" },
- { 11108, "WaveMarket, Inc." },
- { 11109, "XDV - Verein f\0303\0274r experimentelle Datenverarbeitung" },
- { 11110, "Arkivio" },
- { 11111, "Bell Ontario Service Assurance" },
- { 11112, "Stephen Gould Paper co" },
- { 11113, "BJC HealthCare" },
- { 11114, "Citrus communications GmbH" },
- { 11115, "George Fox University" },
- { 11116, "Marco Hentschel" },
- { 11117, "Vereniging Open DomeinZenon" },
- { 11118, "Alpha1 Communications" },
- { 11119, "123india.com" },
- { 11120, "Advanced Software Resources, Inc." },
- { 11121, "C3 Ltd" },
- { 11122, "Cencosud S.A." },
- { 11123, "Colruyt Group" },
- { 11124, "Contenture Ltd" },
- { 11125, "Domani Software Services" },
- { 11126, "ESCP-EAP" },
- { 11127, "Fst s.r.l." },
- { 11128, "Gadbois Consulting" },
- { 11129, "Google, Inc." },
- { 11130, "H\0303\0274lsmann Services e.K." },
- { 11131, "INSIDERS Information Management GmbH" },
- { 11132, "Integral Solutions Corporation" },
- { 11133, "Jemmac Software Limited" },
- { 11134, "Lentronics" },
- { 11135, "Marian Eichhloz" },
- { 11136, "Meitetsu System Dev Co.Ltd" },
- { 11137, "Metaparadigm Pte Ltd" },
- { 11138, "mFormation Technologies Inc." },
- { 11139, "NeoWiz Corporation" },
- { 11140, "Network Center, Shanghai Jiaotong University" },
- { 11141, "Omneon Video Networks" },
- { 11142, "O\0303\0226 Online" },
- { 11143, "PCSNC" },
- { 11144, "RadPharm" },
- { 11145, "Siemens Financial Services GmbH" },
- { 11146, "Siemens Informations Systems Limited" },
- { 11147, "SVTO Hewlett-Packard" },
- { 11148, "Swan Systems" },
- { 11149, "TI, d.o.o." },
- { 11150, "Roamware Inc. (formerly 'Unwiredsoft')" },
- { 11151, "Urschel Laboratories Incorporated" },
- { 11152, "Vocalcom" },
- { 11153, "WebWear" },
- { 11154, "WireX Communications, Inc." },
- { 11155, "WVS-groep" },
- { 11156, "CDMEDIC" },
- { 11157, "MultiTech Solutions Inc." },
- { 11158, "Panservice" },
- { 11159, "PC Dialogs Inc." },
- { 11160, "TDK Corporation" },
- { 11161, "Wistron Corporation" },
- { 11162, "Advanced Campus Services" },
- { 11163, "HAL Computer Systems Ltd" },
- { 11164, "PBH Planungsbuero Hammer" },
- { 11165, "Acer Mobile Networks Inc." },
- { 11166, "ALLEWA GmbH" },
- { 11167, "Azurtec, Inc." },
- { 11168, "Banca del Gottardo" },
- { 11169, "Beacon Bioscience, Inc." },
- { 11170, "Commsology" },
- { 11171, "CRoL" },
- { 11172, "Die Informatik-Werkstatt GmbH" },
- { 11173, "Directory Solutions" },
- { 11174, "DX Antenna Co., Ltd." },
- { 11175, "Epic Group plc" },
- { 11176, "Objective Pathology Services Limited (formerly 'Extelligence')" },
- { 11177, "Grapevine Interactive (Pty) Ltd" },
- { 11178, "Guardian Controls International" },
- { 11179, "hereUare Communications, Inc." },
- { 11180, "Invisible Hand Networks" },
- { 11181, "Jan Schmidt DV-Beratung" },
- { 11182, "Kretz Industries" },
- { 11183, "Mitac International Corp." },
- { 11184, "Naray Information & Communication Enterprise" },
- { 11185, "POSSIO AB" },
- { 11186, "Rattan Information" },
- { 11187, "SNV Netherlands Development Organisation" },
- { 11188, "Universitat Rovira i Virgili" },
- { 11189, "University of Applied Sciences Schmalkalden" },
- { 11190, "Viox Services Inc." },
- { 11191, "Xiam" },
- { 11192, "Xiph.org Foundation" },
- { 11193, "Salica Ltd" },
- { 11194, "Wireless Maingate" },
- { 11195, "VECTOR sp. z o.o." },
- { 11196, "Marcant Internet Services GmbH" },
- { 11197, "A l Jazeera Satellite Channel" },
- { 11198, "Atrid Systemes" },
- { 11199, "Auspice, Inc." },
- { 11200, "BellSouth" },
- { 11201, "Benefit Systems, Inc" },
- { 11202, "Blue Sky Studios" },
- { 11203, "Cybermation Inc." },
- { 11204, "Entercept Security Technologies" },
- { 11205, "Environmental Systems Research Institute (ESRI)" },
- { 11206, "EPLS Enterprise Computing Pte Ltd" },
- { 11207, "Falk eSolutions AG" },
- { 11208, "Global Media Systems" },
- { 11209, "Gold Wire Technology" },
- { 11210, "Iain Stevenson" },
- { 11211, "MobiTV Inc. (formerly 'Idetic Incorporated')" },
- { 11212, "IDM" },
- { 11213, "Information Services Extended Inc." },
- { 11214, "Meridis Corporation" },
- { 11215, "Navitaire, Inc." },
- { 11216, "Neoware Systems" },
- { 11217, "Oceanet Technology" },
- { 11218, "Oculan Corp" },
- { 11219, "OpVista" },
- { 11220, "Pirelli Cavi e Sistemi S.p.A." },
- { 11221, "PROCON GmbH" },
- { 11222, "Rochester General Hospital" },
- { 11223, "RWT Telefony Polskie S.A." },
- { 11224, "SAEBEX (Pty) Ltd" },
- { 11225, "SCMB" },
- { 11226, "Skandinaviska Magasin1 AB" },
- { 11227, "StartCorp" },
- { 11228, "SystemBase Co,.Ltd." },
- { 11229, "Systemware" },
- { 11230, "Voice Access Technologies" },
- { 11231, "Wincom Systems, Inc." },
- { 11232, "Apocalypse Computing Services" },
- { 11233, "Harald Gliebe" },
- { 11234, "Hotcircles" },
- { 11235, "WhichMall.com" },
- { 11236, "Mosakin International Corporation" },
- { 11237, "ITEK spf" },
- { 11238, "APS Systeme" },
- { 11239, "Bennett, Coleman & Co. Ltd." },
- { 11240, "Caixa d'Estalvis i Pensions de Barcelona" },
- { 11241, "Carmel Secondary School" },
- { 11242, "Custom Electronics" },
- { 11243, "DCWG" },
- { 11244, "NET Control" },
- { 11245, "E2open" },
- { 11246, "GHZ Inc." },
- { 11247, "GlaxoSmithKline" },
- { 11248, "Greenwich Technology Partners, Inc." },
- { 11249, "i-DNS.net International Inc" },
- { 11250, "Indiana Purdue University Ft. Wayne" },
- { 11251, "Intrado Inc." },
- { 11252, "iTouch Labs" },
- { 11253, "J.P. Stephenson Co." },
- { 11254, "Jydsk Consulting" },
- { 11255, "LocatioNet Systems LTD" },
- { 11256, "Stormshield (formerly 'NETASQ')" },
- { 11257, "Net-ES" },
- { 11258, "Nogui AB" },
- { 11259, "Sepulveda Systems" },
- { 11260, "Single Source oy" },
- { 11261, "Tschaeche Services" },
- { 11262, "Wire Card AG" },
- { 11263, "WRnetworks" },
- { 11264, "MobileArts AB" },
- { 11265, "SET Software, Inc." },
- { 11266, "JiangSu Fujitsu Telecommunications Technology CO.,LTD." },
- { 11267, "DISSC - Presidencia del Gobierno" },
- { 11268, "Aastra" },
- { 11269, "Aculab plc" },
- { 11270, "Adelphia Business Solutions" },
- { 11271, "Aria Technology Pte Ltd" },
- { 11272, "Birdstep Technology" },
- { 11273, "BJB Software, Inc." },
- { 11274, "Centric Telecom Ltd" },
- { 11275, "ChangingWorlds" },
- { 11276, "Commil Ltd" },
- { 11277, "convergence integrated media gmbh" },
- { 11278, "CS Engineering b.v." },
- { 11279, "Datalab Technologia S.A." },
- { 11280, "Digimob Ltd" },
- { 11281, "digital bus" },
- { 11282, "DKSIN" },
- { 11283, "Dobsonics Laboratories" },
- { 11284, "ESW - EXTEL SYSTEMS WEDEL" },
- { 11285, "FlipDog.com" },
- { 11286, "H1" },
- { 11287, "High-Availability.com" },
- { 11288, "iCreate Software, Inc." },
- { 11289, "imagine LAN Inc." },
- { 11290, "Information Services Plc." },
- { 11291, "IONA Technologies" },
- { 11292, "La Factor\0303\0255a de Comunicaciones Aplicadas,S.L." },
- { 11293, "LocaNet" },
- { 11294, "Mobinor AS" },
- { 11295, "Cybercity" },
- { 11296, "Neon Software, Inc." },
- { 11297, "NetNet, Inc" },
- { 11298, "NLweb.com" },
- { 11299, "On Time Systems" },
- { 11300, "Passageways Travel" },
- { 11301, "Pearson Education" },
- { 11302, "Perimeter Technology" },
- { 11303, "PhotoniXnet Corporation" },
- { 11304, "PrinterOn Corporation" },
- { 11305, "Research Institute for Particle and Nuclear Physics, Department of Biophysics" },
- { 11306, "Robarts Research Institute" },
- { 11307, "Solarwinds.net" },
- { 11308, "SWAPCOM" },
- { 11309, "TallGrass Communications, Inc." },
- { 11310, "Technique Consultants Pty Ltd" },
- { 11311, "Tubitak - UEKAE" },
- { 11312, "Universit\0303\0240 di Salerno - D.I.A." },
- { 11313, "University of Calgary" },
- { 11314, "University of Kansas" },
- { 11315, "USAconnect" },
- { 11316, "ware solutions" },
- { 11317, "Wieland Electric GmbH" },
- { 11318, "Xerox Research" },
- { 11319, "Alcatel (Alcatel Bell Space)" },
- { 11320, "Communal CC GmbH" },
- { 11321, "ECI IP Inc." },
- { 11322, "Integrated Support Systems, Inc." },
- { 11323, "Manpower, Inc." },
- { 11324, "netsols.de" },
- { 11325, "OpenDesign, Inc." },
- { 11326, "Blue Scooter, Inc." },
- { 11327, "Xi'an Jiaotong University Jump network Technology Co.,Ltd" },
- { 11328, "Rana" },
- { 11329, "LLNL-NIF" },
- { 11330, "Inpronetwork corporation" },
- { 11331, "BetaSoft, Wojciech Kruk" },
- { 11332, "Broadstorm Telecommunications, Inc." },
- { 11333, "Media Data Systems Pte Ltd" },
- { 11334, "OLES polymedia AG" },
- { 11335, "Quris, Inc." },
- { 11336, "R-Squared Technologies" },
- { 11337, "Software Workhouse of Hite Lee" },
- { 11338, "Success Information System Co., Ltd." },
- { 11339, "Danam Communications Inc." },
- { 11340, "DREGIS Dresdner Global IT-Services Gesellschaft mbH" },
- { 11341, "NoWalls" },
- { 11342, "Finnet Networks Ltd." },
- { 11343, "Terra, Sol 3" },
- { 11344, "The FreeRADIUS Server Project" },
- { 11345, "[microstage] Ingenieurbuero Raphael Dierkes" },
- { 11346, "Provinzial Versicherung" },
- { 11347, "Academ Consulting Services" },
- { 11348, "Airbus" },
- { 11349, "at rete ag" },
- { 11350, "Bondcar.com" },
- { 11351, "Bouwens" },
- { 11352, "Cognigen Corporation" },
- { 11353, "Das Buero am Draht GmbH" },
- { 11354, "Data Design Systems Incorporated" },
- { 11355, "DataVault" },
- { 11356, "DTV - Technical Knowledge Center of Denmark" },
- { 11357, "edeal Schroeder Maihoefer GbR" },
- { 11358, "Elcommtech Corp." },
- { 11359, "EML Ltd" },
- { 11360, "Excenon" },
- { 11361, "FASTER CZ" },
- { 11362, "FCS Partners" },
- { 11363, "Federation of Norwegian Agricultural Cooperatives" },
- { 11364, "Gaeasoft Corp." },
- { 11365, "Orange Slovakia" },
- { 11366, "Goanna Graphics" },
- { 11367, "Helix GmbH" },
- { 11368, "IAVista, Inc." },
- { 11369, "LenovoEMC Ltd (formerly 'Iomega')" },
- { 11370, "ITT CO., Ltd." },
- { 11371, "jung myung telecom. co., Ltd." },
- { 11372, "Meret Optical Communications" },
- { 11373, "NetVision Sp. z o.o." },
- { 11374, "OKO Bank Group" },
- { 11375, "Pacific Geoscience Center" },
- { 11376, "Pedestal Software" },
- { 11377, "Product Technology Partners Ltd" },
- { 11378, "Quartz Electronics Ltd." },
- { 11379, "Radiant Rt." },
- { 11380, "Retek Inc" },
- { 11381, "Rogers Communications Inc" },
- { 11382, "RR Enterprises" },
- { 11383, "SaudiNet" },
- { 11384, "SevenLayer Services" },
- { 11385, "Spanlink Communications" },
- { 11386, "Studer" },
- { 11387, "T4 Consulting Group" },
- { 11388, "Tarantola Labs" },
- { 11389, "TECFA (Technologie de Formation et Apprentissage)" },
- { 11390, "Texas Department of Housing and Community Affairs" },
- { 11391, "The Texas GigaPOP" },
- { 11392, "Tools4ever bv" },
- { 11393, "Tymlabs Management Inc" },
- { 11394, "UD Technology" },
- { 11395, "Vancouver Public Library" },
- { 11396, "Webex China" },
- { 11397, "Xpedio AB" },
- { 11398, "Pyx Engineering AG" },
- { 11399, "Washington State University Vancouver" },
- { 11400, "Dept. of Information and Communications Technology, HK Institute ofVocational Education (Tsing Yi)" },
- { 11401, "CONCATEL, S.L." },
- { 11402, "MRO Software Inc." },
- { 11403, "Corente, Inc." },
- { 11404, "Seanet Corporation" },
- { 11405, "shanghaionline Inc." },
- { 11406, "SANDY Group" },
- { 11407, "obsceneskills.com" },
- { 11408, "Fiberhome Telecommunication Technologies Co.,LTD" },
- { 11409, "adequate systems GmbH" },
- { 11410, "Advanced Communication Devices Corp." },
- { 11411, "AOL Australia" },
- { 11412, "BKtel communications GmbH" },
- { 11413, "Cape Clear Software Ltd." },
- { 11414, "Carnation Technology Ltd." },
- { 11415, "CLCsoft" },
- { 11416, "Allgera Corp. (formerly 'Coalsere Inc.')" },
- { 11417, "Cynops GmbH" },
- { 11418, "DFN-CERT Services GmbH" },
- { 11419, "FOTEL Corp." },
- { 11420, "GHS Data Management" },
- { 11421, "Industrial Networking Solution" },
- { 11422, "Larmouth T&PDS Ltd" },
- { 11423, "Lucid Vision, Inc." },
- { 11424, "MITSUBISHI GAS CHEMICAL COMPANY, Inc." },
- { 11425, "MobileWebSurf" },
- { 11426, "Netfusions s.r.l." },
- { 11427, "Particle Physics Group" },
- { 11428, "Redes de Computadoras" },
- { 11429, "Schumacher" },
- { 11430, "Simtek Corporation" },
- { 11431, "Southern Polytechnic State University" },
- { 11432, "TOWER Group Network" },
- { 11433, "University of West Bohemia" },
- { 11434, "Utah Scientific, Inc." },
- { 11435, "WebEx Communications, Inc." },
- { 11436, "XML Global Technologies, Inc." },
- { 11437, "Xymbol" },
- { 11438, "Canadian Center for Remote Sensing (GeoAccess Division)" },
- { 11439, "CCLRC" },
- { 11440, "Sapros" },
- { 11441, "Goshen College" },
- { 11442, "InsertAds Inc." },
- { 11443, "Morder Devices" },
- { 11444, "Frederick Engineering" },
- { 11445, "ANOREG-BR" },
- { 11446, "Adduce Networks" },
- { 11447, "XiLogic, L.L.C." },
- { 11448, "ITology Co., Ltd" },
- { 11449, "Tethernet, Inc." },
- { 11450, "xitec.de" },
- { 11451, "SINBON ELECTRONIC CO., LTD" },
- { 11452, "Allegient Systems" },
- { 11453, "Altadis" },
- { 11454, "Avencis SA" },
- { 11455, "Aviation Management Technologies GmbH" },
- { 11456, "CalvaEDI S.A." },
- { 11457, "Cimcor, Inc." },
- { 11458, "Computing Services Department, University of Liverpool" },
- { 11459, "Data Track Technology PLC" },
- { 11460, "datafront" },
- { 11461, "Deloitte & Touche" },
- { 11462, "DroneDAP" },
- { 11463, "EC-Founder" },
- { 11464, "Electronic Arts" },
- { 11465, "Envoy Technologies" },
- { 11466, "e-Pollination Enterprise, Inc." },
- { 11467, "IntermediaSP" },
- { 11468, "Jackson County School District 6" },
- { 11469, "Kokong" },
- { 11470, "LX networking" },
- { 11471, "mineit software ltd" },
- { 11472, "MoeTi Corp." },
- { 11473, "Nordic Messaging Technologies AB" },
- { 11474, "NTT DATA COPORATION" },
- { 11475, "Pro-Active" },
- { 11476, "Quest Controls, Inc." },
- { 11477, "Rasvia Systems Incorporation" },
- { 11478, "Scorpion Controls Inc" },
- { 11479, "Selso" },
- { 11480, "SunnyInd Corp" },
- { 11481, "TEIMA Audiotex" },
- { 11482, "Universal Traffic Management Society of Japan(UTMS)" },
- { 11483, "University of Illinois at Urbana-Champaign" },
- { 11484, "viastore systems GmbH" },
- { 11485, "Vida Network Technologies, Inc." },
- { 11486, "Vizzavi NL" },
- { 11487, "VoxSurf Ltd." },
- { 11488, "AB Computers" },
- { 11489, "Alacritus" },
- { 11490, "BetweenMarkets, Inc." },
- { 11491, "University of Jyvaskyla" },
- { 11492, "Micro Research Laboratory, Inc." },
- { 11493, "Obourg Origny Informatique" },
- { 11494, "Nebulon Pty. Ltd." },
- { 11495, "cubic.ch" },
- { 11496, "foo.cz" },
- { 11497, "Gamerz.NET Enterprises" },
- { 11498, "HCCnet B.V." },
- { 11499, "Hollmann Consulting Services" },
- { 11500, "Infrant Technology Inc." },
- { 11501, "IngmarNet" },
- { 11502, "ITU-T ASN.1 Project" },
- { 11503, "METRAWARE" },
- { 11504, "NDSL, Inc." },
- { 11505, "Network-1 Security Solutions, Inc." },
- { 11506, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11507, "ProBusiness" },
- { 11508, "School of Banking and Management in Cracow" },
- { 11509, "Schweizer Electronic AG" },
- { 11510, "Service Intelligence" },
- { 11511, "Southern Illinois University School of Medicine" },
- { 11512, "St. Joseph's College" },
- { 11513, "Strele Informatik" },
- { 11514, "Chris Abernethy" },
- { 11515, "SUB1 S.A." },
- { 11516, "The Academy of Sciences of the Czech Republic" },
- { 11517, "Trivadis AG" },
- { 11518, "T-Soft Ltd." },
- { 11519, "VET" },
- { 11520, "Visilinx, Inc." },
- { 11521, "Broadcast Music Incorporated" },
- { 11522, "LINXTEK" },
- { 11523, "Fujitsu Laboratories of America, Inc." },
- { 11524, "Ch5 Finland Oy" },
- { 11525, "brain://on AG" },
- { 11526, "GIRO LTD" },
- { 11527, "Bromax Communications, Inc." },
- { 11528, "DVBern AG" },
- { 11529, "KOGA ELECTRONICS CO." },
- { 11530, "3G - NetWorks" },
- { 11531, "aha-systems" },
- { 11532, "Bond University" },
- { 11533, "Chiba Industries" },
- { 11534, "coaXmedia" },
- { 11535, "COGITIS" },
- { 11536, "Cyber-Ark" },
- { 11537, "Direcci\0303\0263n General de la Polic\0303\0255a" },
- { 11538, "Elata Ltd." },
- { 11539, "Essent Kabelcom" },
- { 11540, "ETIT" },
- { 11541, "Fugu Angst Productions" },
- { 11542, "GuangZhou GaoKe Communication Equipment Co., Ltd." },
- { 11543, "Internet Northwest" },
- { 11544, "Kunsthochschule Fuer Medien" },
- { 11545, "Kurtev Intergalactic" },
- { 11546, "METRAWARE" },
- { 11547, "Mpower Communications Corporation" },
- { 11548, "NABLA2 s.r.l." },
- { 11549, "NETOUS TECHNOLOGIES Ltd." },
- { 11550, "NETPIA SYSTEMS Co.,LTD" },
- { 11551, "Orca Orcinus, Inc." },
- { 11552, "page87" },
- { 11553, "Planet Technologies NV" },
- { 11554, "Pomcor" },
- { 11555, "Rider University" },
- { 11556, "Robert Burrell Donkin" },
- { 11557, "S&CI" },
- { 11558, "SOFICE" },
- { 11559, "SoftGame International Pty. Ltd." },
- { 11560, "Tantia Technologies Inc." },
- { 11561, "Topcon Positioning Systems, Inc." },
- { 11562, "VE2UG" },
- { 11563, "Ahnlab, Inc" },
- { 11564, "CiteItWrite" },
- { 11565, "Instituto Nacional de Estat\0303\0255stica - PORTUGAL" },
- { 11566, "Prologue Software" },
- { 11567, "DeltaLoyd Deutschland" },
- { 11568, "bmbwk" },
- { 11569, "handy.de Vertriebs GmbH" },
- { 11570, "Mages Touch" },
- { 11571, "NTI Studio's" },
- { 11572, "Rasvia Systems, Inc." },
- { 11573, "rockus.at" },
- { 11574, "Seven-Winds" },
- { 11575, "Solution Design Laboratory" },
- { 11576, "Sunnycal Inc." },
- { 11577, "Global System Services" },
- { 11578, "AirZip, Inc." },
- { 11579, "Amadeus Data Processing GmbH" },
- { 11580, "Amdocs" },
- { 11581, "bylinux.net" },
- { 11582, "C&I Technologies" },
- { 11583, "Cayenta, Inc." },
- { 11584, "CLASS AG" },
- { 11585, "ColoradoBiz.net" },
- { 11586, "DLR e.V." },
- { 11587, "epictet AG" },
- { 11588, "ERA a.s." },
- { 11589, "Exsior Data & Information Tech. Inc." },
- { 11590, "Fortech Ltd." },
- { 11591, "Free Software Foundation" },
- { 11592, "HANGZHOUSUNYARD INFORMATION ENGINEERING CO.,LTD" },
- { 11593, "IMISE" },
- { 11594, "LDCOM Networks" },
- { 11595, "Lightmaze AG" },
- { 11596, "Mediakabel" },
- { 11597, "MFB-Multa spol. s r.o." },
- { 11598, "MGIC - Mortgage Guaranty Insurance Corp" },
- { 11599, "mille21" },
- { 11600, "Neogration Inc." },
- { 11601, "Netaxs Internet Services" },
- { 11602, "New York State Office of the State Comptroller" },
- { 11603, "Nexxient Communications" },
- { 11604, "NorduGrid" },
- { 11605, "Optical Wireless Link Inc." },
- { 11606, "Pacific Broadbank Networks" },
- { 11607, "Plumtree Software" },
- { 11608, "Pracom Pty Ltd" },
- { 11609, "PUSANWEB Ltd" },
- { 11610, "Sandvine Incorporated" },
- { 11611, "Secretaria da Fazenda do Estado de Sp" },
- { 11612, "STT s.r.l." },
- { 11613, "Vortex Ltd" },
- { 11614, "vrwg" },
- { 11615, "Webaronet Technology" },
- { 11616, "WebPerform Group Ltd" },
- { 11617, "Cablevision Systems Holdings" },
- { 11618, "SOLTECH CO., Ltd." },
- { 11619, "PTC Solutions Ltd" },
- { 11620, "PACE Anti-Piracy" },
- { 11621, "Agrotecnica Arpa scrl" },
- { 11622, "3PARData" },
- { 11623, "Aegis Software" },
- { 11624, "Bit-Lab PTY LTD" },
- { 11625, "Black Bear Software, LLC" },
- { 11626, "Combol GmbH" },
- { 11627, "David Pitts" },
- { 11628, "EDIPORT Telecommunication Ltd." },
- { 11629, "Educational Service Unit #2" },
- { 11630, "eircomnet" },
- { 11631, "EnablingTrust LLC" },
- { 11632, "e-Sec Tecnologia em Seguranca de Dados LTDA" },
- { 11633, "Europop AG" },
- { 11634, "Exempla" },
- { 11635, "Fiorano Software Inc." },
- { 11636, "Focal Point Software, Inc." },
- { 11637, "Generatio GmbH" },
- { 11638, "Grapes Network Services" },
- { 11639, "Intersys Uruguay Ltda" },
- { 11640, "Miritek, Inc." },
- { 11641, "NETOVA" },
- { 11642, "Nextra Ensure (UK)" },
- { 11643, "One Stop Consulting, Inc." },
- { 11644, "Orbism Consulting" },
- { 11645, "Pentalog Inet" },
- { 11646, "PentaMedia Co., Ltd." },
- { 11647, "Planetasia Ltd.," },
- { 11648, "RemoteSite Technologies Inc." },
- { 11649, "Ross Stores, Inc." },
- { 11650, "Schnedermann Software-Consulting GmbH" },
- { 11651, "SideSpace" },
- { 11652, "Sonoma State University" },
- { 11653, "Stack Computer Solutions" },
- { 11654, "Strott Network Solutions" },
- { 11655, "SY.O. srl" },
- { 11656, "Synapse Systems AB" },
- { 11657, "Taiwan Telecommunication Network Services Co., Ltd." },
- { 11658, "Universite Blaise PASCAL" },
- { 11659, "Virtual Security Research" },
- { 11660, "VMS Limited" },
- { 11661, "Wahoo International Enterprise Co., Ltd." },
- { 11662, "Marcel Ruff" },
- { 11663, "+X Alta\0303\0257r Toulouse" },
- { 11664, "base2" },
- { 11665, "dacom" },
- { 11666, "Institute of Communications Engineering - University of Hanover" },
- { 11667, "New York State Education Department" },
- { 11668, "WRLucas" },
- { 11669, "Milhouse Technologies USA" },
- { 11670, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11671, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11672, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11673, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11674, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11675, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11676, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11677, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11678, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11679, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11680, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11681, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11682, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11683, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11684, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11685, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11686, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11687, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11688, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11689, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11690, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11691, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11692, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11693, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11694, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11695, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11696, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11697, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11698, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11699, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11700, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11701, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11702, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11703, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11704, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11705, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11706, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11707, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11708, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11709, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11710, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11711, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11712, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11713, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11714, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11715, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11716, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11717, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11718, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11719, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11720, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11721, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11722, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11723, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11724, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11725, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11726, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11727, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11728, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11729, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11730, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11731, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11732, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11733, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11734, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11735, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11736, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11737, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11738, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11739, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11740, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11741, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11742, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11743, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11744, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11745, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11746, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11747, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11748, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11749, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11750, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11751, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11752, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11753, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11754, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11755, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11756, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11757, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11758, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11759, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11760, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11761, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11762, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11763, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11764, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11765, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11766, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11767, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11768, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11769, sminmpec_unknown }, /* (Added by Wireshark) */
- { 11770, "China Sanjiang Space Group" },
- { 11771, "81 Broad Street" },
- { 11772, "Adrock Software" },
- { 11773, "AGMODEL, NARC, JAPAN" },
- { 11774, "ASYK S.A." },
- { 11775, "Atchik" },
- { 11776, "AviBit data processing GmbH" },
- { 11777, "Ayman LLC." },
- { 11778, "BlueBridge Technologies AG" },
- { 11779, "Casedev Active Oy" },
- { 11780, "CBIM" },
- { 11781, "celtro" },
- { 11782, "Charles Industries, LTD" },
- { 11783, "Canon Software Information Systems Inc." },
- { 11784, "Credant Technologies" },
- { 11785, "Critical Integration Ltd" },
- { 11786, "Daisy Software" },
- { 11787, "Datagate d.o.o." },
- { 11788, "fluxx.com e-commerce GmbH" },
- { 11789, "ForeScout Technologies, Inc." },
- { 11790, "GateWay Community College" },
- { 11791, "Giesecke and Devrient" },
- { 11792, "Grant County PUD" },
- { 11793, "IBM Slovakia (test)" },
- { 11794, "Incentive Technologies, Inc." },
- { 11795, "Infoglobe" },
- { 11796, "InnoviData GmbH" },
- { 11797, "Kaboom Enterprises" },
- { 11798, "Lateral Sands Pty Ltd" },
- { 11799, "Latis Networks, Inc" },
- { 11800, "Logosoft" },
- { 11801, "MPSV" },
- { 11802, "Northwest Airlines, Inc." },
- { 11803, "Ohlone Community College" },
- { 11804, "PCS" },
- { 11805, "Plexus" },
- { 11806, "Antonveneta ABN AMRO Bank" },
- { 11807, "SamuelBalle.com" },
- { 11808, "Sifry Consulting" },
- { 11809, "Skobeltsyn Institute of Nuclesr Physics, Moscow State University" },
- { 11810, "Solesys SA" },
- { 11811, "Spaces, Inc." },
- { 11812, "TDC Internet A/S" },
- { 11813, "TMT Ltd." },
- { 11814, "University of Nantes" },
- { 11815, "Yellow Online Inc." },
- { 11816, "yuantong technology" },
- { 11817, "Zentrum Informatikdienste, Universitaet Zuerich" },
- { 11818, "Z-Star Microelectronics Corporation" },
- { 11819, "ZX Factory" },
- { 11820, "Fonterra Co-operative Group" },
- { 11821, "Jet Infosystems" },
- { 11822, "SPSU Selinux-LDAP Team" },
- { 11823, "WSMicroSystems Inc." },
- { 11824, "Computer & Technologies International Ltd" },
- { 11825, "Daji Workshop" },
- { 11826, "Sistemas Tecnicos de Ense\0303\0261anza Consultores" },
- { 11827, "ACUMEN ADVANCED TECHNOLOGIES Inc." },
- { 11828, "Coast Mountains School District" },
- { 11829, "Corvil Networks" },
- { 11830, "F'Arty Crafts Pty Ltd" },
- { 11831, "Interactive Transaction Services, Inc." },
- { 11832, "Joerg Preuss" },
- { 11833, "nCircle Network Security" },
- { 11834, "PLIVA d.d" },
- { 11835, "StreamServe, Inc." },
- { 11836, "Swiss National Bank" },
- { 11837, "Telenor Mobile Communications" },
- { 11838, "Vistaar" },
- { 11839, "WebWayOne Ltd" },
- { 11840, "YR CONSEIL" },
- { 11841, "Aaltonen & Vuorela" },
- { 11842, "Anchora" },
- { 11843, "Argus Systems Group, Inc" },
- { 11844, "Beijing Super Channel Network Limited" },
- { 11845, "Blueair Networks" },
- { 11846, "CITAP" },
- { 11847, "Himnebaugh Consulting, Inc." },
- { 11848, "INLINE Corporation" },
- { 11849, "Janus Technologies" },
- { 11850, "Native Names Corporation" },
- { 11851, "NetEconomist" },
- { 11852, "New Productivity Initiative Inc" },
- { 11853, "Public Service Company of New Mexico" },
- { 11854, "Healthvision (formerly 'Quovadx, Inc.')" },
- { 11855, "Retirement By Design" },
- { 11856, "TNT Logistics North America" },
- { 11857, "Transmode Systems AB" },
- { 11858, "UANGEL" },
- { 11859, "WorldChain Inc." },
- { 11860, "wossname.org.uk" },
- { 11861, "Codenet" },
- { 11862, "Columbia University in the City of New York" },
- { 11863, "TP-Link Technology Co.,Ltd" },
- { 11864, "B\0303\0266ke and Walterfang Electronic Systems Ltd" },
- { 11865, "Explo-IT Research" },
- { 11866, "GDTTI" },
- { 11867, "Loop Treinamento em Inform" },
- { 11868, "Placenet" },
- { 11869, "Roman Zielinski Metod och systemutveckling" },
- { 11870, "Sandhills Community College" },
- { 11871, "SpaceNet AG" },
- { 11872, "Systemy Mikroprocesorowe" },
- { 11873, "Yolke Corporation" },
- { 11874, "Scopus Tecnologia S. A." },
- { 11875, "Biomet Merck BV" },
- { 11876, "Siteseers Inc." },
- { 11877, "3UP Systems" },
- { 11878, "Achilles Guard, Inc d.b.a Critical Watch" },
- { 11879, "Castel et Fromaget" },
- { 11880, "Custom Business Link, Inc." },
- { 11881, "FiberSpans Corporation" },
- { 11882, "geschke internet consulting" },
- { 11883, "Ignite Communications" },
- { 11884, "Indeed - Visual Concepts GmbH" },
- { 11885, "MMC Technology" },
- { 11886, "Nextcard, Inc." },
- { 11887, "PSS Systems Inc" },
- { 11888, "Teamlog External" },
- { 11889, "The Answer Group, L.L.C." },
- { 11890, "The Nog Network" },
- { 11891, "Unified Communications Pte Ltd" },
- { 11892, "Vodafone Global Platform & Internet Services" },
- { 11893, "The Pep Boys - Manny, Moe & Jack" },
- { 11894, "Integrity Solutions, Inc" },
- { 11895, "Globalnet" },
- { 11896, "3G Lab" },
- { 11897, "Acantho" },
- { 11898, "Agere Systems, Inc." },
- { 11899, "Bitfone Corporation" },
- { 11900, "BlueSoft" },
- { 11901, "Bonndata GmbH" },
- { 11902, "Cartel Communication Systems Inc" },
- { 11903, "Case Western Reserve University" },
- { 11904, "CirqueDigital, LLC" },
- { 11905, "Icom Inc" },
- { 11906, "IF DRAUDIMAS" },
- { 11907, "ImaginaryRealities" },
- { 11908, "Instituto Cubano de Radio y Television" },
- { 11909, "Log On America, Inc." },
- { 11910, "Michael Roettig Consulting" },
- { 11911, "Unassigned" },
- { 11912, "NetMotion Wireless Inc." },
- { 11913, "netsys.com" },
- { 11914, "National Information Infrastructure Development Institute" },
- { 11915, "Oldring & Associates, Inc." },
- { 11916, "Pablix" },
- { 11917, "PAR3 Communications" },
- { 11918, "PRAJA inc" },
- { 11919, "QCOM, Inc." },
- { 11920, "quantumBEAM Ltd." },
- { 11921, "Ruprecht & Partner OEG" },
- { 11922, "SD Inc." },
- { 11923, "Spectrum Control, Inc." },
- { 11924, "Techsystem Technologies" },
- { 11925, "The IQ Group, Inc." },
- { 11926, "The United World Colleges (international)" },
- { 11927, "Tytrast Systems Inc." },
- { 11928, "Indievisible" },
- { 11929, "Veridicom" },
- { 11930, "Vseobecn\0303\0241 \0303\0272verov\0303\0241 banka, a.s." },
- { 11931, "Staten Island University Hospital" },
- { 11932, "The Wolf Group" },
- { 11933, "University of Alberta" },
- { 11934, "Stadtsparkasse K\0303\0266ln" },
- { 11935, "Josuya Technology Corporation" },
- { 11936, "Amadeus NMC Holding, Inc." },
- { 11937, "ArcSight, Inc." },
- { 11938, "Cominet" },
- { 11939, "Electronic Direct, Inc." },
- { 11940, "Medical Coding and Compliance Solutions, L.L.C." },
- { 11941, "Mssu" },
- { 11942, "Muhen Software" },
- { 11943, "Net Partnets Sp. z o.o." },
- { 11944, "Paulmichl NetWork's" },
- { 11945, "q-station.net" },
- { 11946, "Quanta Network Systems Inc." },
- { 11947, "Stowarzyszenie FREEZE NET ASK" },
- { 11948, "Syracuse University" },
- { 11949, "Ukrsotsbank" },
- { 11950, "VivoCom Inc." },
- { 11951, "VTechnologies S\0303\0240rl" },
- { 11952, "Zeta Broadband Inc" },
- { 11953, "ZUMtOBEL AG" },
- { 11954, "Elegant solutions consulting Inc." },
- { 11955, "BeiJing NetPower TECHNOLOGIES Inc." },
- { 11956, "Mobigen Co., Ltd." },
- { 11957, "ITC" },
- { 11958, "Premonitia, Inc" },
- { 11959, "Coyote Rock" },
- { 11960, "Downlode Media" },
- { 11961, "LARC-USP" },
- { 11962, "Nevala" },
- { 11963, "Propel" },
- { 11964, "Technical Chamber of Greece" },
- { 11965, "Thomas Monitor Systems" },
- { 11966, "Alstom Power Sweden AB" },
- { 11967, "MLP AG" },
- { 11968, "SymLABS" },
- { 11969, "Systech Retail Systems Inc." },
- { 11970, "Watch4Net Solutions" },
- { 11971, "Peter-Service Ltd." },
- { 11972, "TAIS, Inc." },
- { 11973, "North Central Collge" },
- { 11974, "Uffizio Internet Services GmbH" },
- { 11975, "ALPHA SYSTEMS" },
- { 11976, "AT&T Labs Intelligent Network Analysis" },
- { 11977, "Backwoods Communications, LLC" },
- { 11978, "Boxcar Media" },
- { 11979, "BrainStorm Business Resources, Inc." },
- { 11980, "Bravenet Web Services, Inc" },
- { 11981, "CAC Ltd" },
- { 11982, "chiz.net" },
- { 11983, "CollectiveBid Systems Inc." },
- { 11984, "Content Management AG" },
- { 11985, "Conysis S.A." },
- { 11986, "CreekPath Systems" },
- { 11987, "Dakos data & communication co., Ltd." },
- { 11988, "diCarta Inc." },
- { 11989, "DME Corporation" },
- { 11990, "gadgeteer.org" },
- { 11991, "Greenpeace" },
- { 11992, "HeliXense Pte Ltd" },
- { 11993, "Hilbert Computing, Inc." },
- { 11994, "Hubert Krause" },
- { 11995, "Hybrid Solutions, Inc." },
- { 11996, "IBSN" },
- { 11997, "iKnowTheAnswer.com" },
- { 11998, "JSC Desarrollos y Aplicaciones" },
- { 11999, "KFKI Systems" },
- { 12000, "Ki Consulting & Solutions AB" },
- { 12001, "Lakefield Telecom, Inc." },
- { 12002, "Lemur Networks, Inc." },
- { 12003, "luna8 Ltd." },
- { 12004, "MCK Advance Technologies" },
- { 12005, "MediaGS, Ltd." },
- { 12006, "N.C.H. spa Network Computer House" },
- { 12007, "NAMS" },
- { 12008, "Pacher" },
- { 12009, "Regenstrief Institute for Health Care" },
- { 12010, "Schnackelchen" },
- { 12011, "SEAGULL" },
- { 12012, "Seoul National University of Technology" },
- { 12013, "Softworks Group Inc." },
- { 12014, "Studio of Arts And Sciences" },
- { 12015, "TGA Technologies, Inc." },
- { 12016, "Universite de Cergy-Pontoise" },
- { 12017, "VeratNET" },
- { 12018, "Vivanet Inc." },
- { 12019, "waterford.org" },
- { 12020, "Webware Technologies Pvt. Ltd." },
- { 12021, "Wesley WorldWide Solutions, Inc" },
- { 12022, "BRECIS Communications" },
- { 12023, "Unassigned" },
- { 12024, "Miraesys Co., Ltd" },
- { 12025, "C-EISA" },
- { 12026, "Proactive Java Consultancy LLP" },
- { 12027, "AccelaNET" },
- { 12028, "AirWave Wireless, Inc." },
- { 12029, "Altawave Inc." },
- { 12030, "ANAM Wireless Internet Solutions" },
- { 12031, "BitStream Logic, Inc" },
- { 12032, "Booz Allen Hamilton" },
- { 12033, "Checkmate Management" },
- { 12034, "Czech Certification Authority s.r.o." },
- { 12035, "EBJ Consulting" },
- { 12036, "\0303\0211cole normale sup\0303\0251rieure - Paris" },
- { 12037, "Euronet Worldwide, Inc." },
- { 12038, "everyhost.com" },
- { 12039, "Exalead S.A." },
- { 12040, "gull house" },
- { 12041, "HTL Braunau" },
- { 12042, "Infosys Corporation" },
- { 12043, "Jasmap Inc." },
- { 12044, "Lakesoft Consulting & ISP" },
- { 12045, "Medfusion, Inc" },
- { 12046, "Metro Information Concepts as" },
- { 12047, "Meylan Consulting" },
- { 12048, "Millennium Microwave Corporation" },
- { 12049, "NetPlanetEarth" },
- { 12050, "Ohman IT Consult" },
- { 12051, "Onix Electronic Systems, LLC" },
- { 12052, "RCN Telecom" },
- { 12053, "Skjaerlund Software" },
- { 12054, "Special Applied Intelligence Corporation" },
- { 12055, "SUDAC" },
- { 12056, "Tadiran Communications" },
- { 12057, "TE Data" },
- { 12058, "The YAK Corporation" },
- { 12059, "Digital Appliance Corp." },
- { 12060, "TruePosition, Inc." },
- { 12061, "University of Western Ontario" },
- { 12062, "User Interface Technologies Ltd." },
- { 12063, "VeriCell, Inc." },
- { 12064, "Zurich Scudder Investments, Inc" },
- { 12065, "APATON" },
- { 12066, "Daedalus Networks" },
- { 12067, "Pajo Networks" },
- { 12068, "Wroc\0302\0263aw Centre of Networking and Supercomputing" },
- { 12069, "Corpex Internet GmbH" },
- { 12070, "WARCO" },
- { 12071, "@Home Japan Co., Ltd." },
- { 12072, "Acrowave Systems Co., Ltd" },
- { 12073, "Aer Novo" },
- { 12074, "Alison Associates" },
- { 12075, "beckhaus consulting" },
- { 12076, "Bonware" },
- { 12077, "Broadmind Research Corporation" },
- { 12078, "Circle24 Technologies" },
- { 12079, "dotmaudot" },
- { 12080, "e-peopleserve" },
- { 12081, "Estic & Partners bv" },
- { 12082, "European Computer Telecoms AG" },
- { 12083, "Getronics Solutions Italia S.p.A." },
- { 12084, "HighDeal" },
- { 12085, "KR Consulting" },
- { 12086, "MKAPIUM" },
- { 12087, "netdirectory.org" },
- { 12088, "Newdreamnet Co. Ltd." },
- { 12089, "o3sis Infomation Technology AG" },
- { 12090, "RCS (formerly 'Prophet Systems')" },
- { 12091, "Real FS Inc." },
- { 12092, "Rotech Healthcare Inc." },
- { 12093, "Severoceska energetika, a.s." },
- { 12094, "Sup\0303\0251lec Campus de Metz" },
- { 12095, "Telenor Satellite Broadcasting" },
- { 12096, "Telic Communications, Inc." },
- { 12097, "UZA - Universitair Ziekenhuis Antwerpen" },
- { 12098, "VooDoo X Solutions" },
- { 12099, "Woollen Services" },
- { 12100, "XecureNexus" },
- { 12101, "YCOM SA" },
- { 12102, "Airport Authority Hong Kong" },
- { 12103, "4Tier Software" },
- { 12104, "Asis Ltd." },
- { 12105, "BISC" },
- { 12106, "BIPOP-CARIRE spa" },
- { 12107, "Caw Networks" },
- { 12108, "Concordant" },
- { 12109, "IT Service Omikron GmbH" },
- { 12110, "Lifeway Christian resources" },
- { 12111, "Mark Schnur Consulting" },
- { 12112, "NORSYS" },
- { 12113, "Zox, Inc." },
- { 12114, "noris network AG" },
- { 12115, "Philips MP4Net" },
- { 12116, "Advanced Reality" },
- { 12117, "Atmel Nantes" },
- { 12118, "Centrata Inc." },
- { 12119, "City of Mesquite Texas" },
- { 12120, "Defense Supply center Richmond (DSCR)" },
- { 12121, "Fastnet Communications" },
- { 12122, "Henny Penny Corp." },
- { 12123, "iProcess Solutions" },
- { 12124, "Isilon Ststems" },
- { 12125, "Mediavirtuel" },
- { 12126, "Mirafor Associates Oy" },
- { 12127, "Rambold" },
- { 12128, "RoDoGu Consulting" },
- { 12129, "Safeweb Ltda" },
- { 12130, "SciQuest, Inc" },
- { 12131, "Siegfried Holding AG" },
- { 12132, "Simutronics Corporation" },
- { 12133, "Talking Blocks, Inc." },
- { 12134, "Tradetrans Inc" },
- { 12135, "Unique Broadbank Systems" },
- { 12136, "Universidad Nacional de San Luis" },
- { 12137, "Universite de Paris-Sorbonne Paris IV" },
- { 12138, "Laborat\0303\0263rio de Sistemas Distribu\0303\0255dos /CEFET-PR" },
- { 12139, "Iowa Outdoors" },
- { 12140, "ALCOMA, Ltd" },
- { 12141, "Aloes" },
- { 12142, "bob corbett networks" },
- { 12143, "Chrono-Logic" },
- { 12144, "Consumer Contact" },
- { 12145, "Core Integrated Tecnologies, Ltd." },
- { 12146, "SFT-Service (formerly 'Dialog.SFT-Service')" },
- { 12147, "Die Weltregierung" },
- { 12148, "ELTEK Energy AS" },
- { 12149, "Enalur S.A." },
- { 12150, "Finmatica S.p.A." },
- { 12151, "Fyrplus AB" },
- { 12152, "Guru Labs, L.C." },
- { 12153, "HPCinteractive" },
- { 12154, "IKEA IT AB" },
- { 12155, "Innovay Inc." },
- { 12156, "JOINT-STOCK COMPANY\"STC CONTACT\"" },
- { 12157, "KC Micro Specialists, Inc." },
- { 12158, "Mikros Kosmos" },
- { 12159, "M-TEC N.V." },
- { 12160, "NetCommplete Pty Lyd" },
- { 12161, "New World Telephone Ltd" },
- { 12162, "Orsus Solutions" },
- { 12163, "Quebeber.com" },
- { 12164, "Ringling School of Art and Design" },
- { 12165, "SANTIN E ASSOCIATI SRL" },
- { 12166, "ScanPlus GmbH" },
- { 12167, "Sequitur Systems" },
- { 12168, "server2000 internet technology gmbh" },
- { 12169, "SHENZHEN MODERN COMPUTER MANUFACTER Co.,Ltd" },
- { 12170, "SZCOM Broadband Network Technology Co.,Ltd" },
- { 12171, "Tony Bibbs" },
- { 12172, "Transparent Systems" },
- { 12173, "UNICC" },
- { 12174, "Consolidated Freightways" },
- { 12175, "Frontier Internet, Inc." },
- { 12176, "Canon IT Solutions Inc. (formerly 'Sumitomo Metal System Solutions Co.,Ltd')" },
- { 12177, "Henkel AG & Co. KGaA" },
- { 12178, "3va.net" },
- { 12179, "Alacris Inc." },
- { 12180, "ALI Technologies Inc" },
- { 12181, "Allegheny Energy Global Markets" },
- { 12182, "Astrium (UK)" },
- { 12183, "Baldwin Hackett & Meeks, Inc." },
- { 12184, "Bamsco" },
- { 12185, "Ben Nederland BV" },
- { 12186, "Compagnon AG" },
- { 12187, "Direct Solutions" },
- { 12188, "GBase Communications" },
- { 12189, "Holoplex Technologies, Inc." },
- { 12190, "in medias res" },
- { 12191, "Ins-sure Services Limited" },
- { 12192, "Iron Hill Technology" },
- { 12193, "Leapstone Systems, Inc" },
- { 12194, "MSS Communications Design GmbH" },
- { 12195, "Noicom S.p.A." },
- { 12196, "one4net GmbH" },
- { 12197, "ProvisionSoft" },
- { 12198, "RINET" },
- { 12199, "SAGE SRL" },
- { 12200, "Seneca Groep B.V." },
- { 12201, "University Health Network" },
- { 12202, "UP3I" },
- { 12203, "VTT Information Technology" },
- { 12204, "DevonIT" },
- { 12205, "Allianz Ireland PLC" },
- { 12206, "QinetiQ Ltd" },
- { 12207, "Acme Solutions" },
- { 12208, "actina AG" },
- { 12209, "ASTOR-PROMOCJA Poland" },
- { 12210, "Bauer Verlagsgruppe" },
- { 12211, "Biogem" },
- { 12212, "BlueHaven Services Ltd" },
- { 12213, "CAMIS Inc." },
- { 12214, "Covenant Retirement Communities" },
- { 12215, "CUETS" },
- { 12216, "DGT-LAB" },
- { 12217, "Ecole Polytechnique de Montreal" },
- { 12218, "Gl\0303\0274ckert, Machelett & Partner" },
- { 12219, "Hamilton and Sullivan, Ltd." },
- { 12220, "Institute of Environment and Development" },
- { 12221, "ITWM" },
- { 12222, "Kawatetsu Systems, Inc." },
- { 12223, "Kinetics Fluid Systems" },
- { 12224, "Knightnet" },
- { 12225, "Korea Embedded Linux Laboratory" },
- { 12226, "Max-Planck-Institut fuer Festkoerperforschung" },
- { 12227, "Naumen" },
- { 12228, "Niedermayer Systems" },
- { 12229, "Nirvana Research" },
- { 12230, "odahoda.de" },
- { 12231, "OpenAdvice IT Services GmbH" },
- { 12232, "Order N Ltd." },
- { 12233, "OZ Communications, Inc." },
- { 12234, "ProGuy.dk" },
- { 12235, "Roanoke College" },
- { 12236, "Sena Technologies, Inc." },
- { 12237, "SILOGIX" },
- { 12238, "Spumoni" },
- { 12239, "Symsoft AB" },
- { 12240, "System Solutions" },
- { 12241, "Szkola Glowna Handlowa" },
- { 12242, "teamnet GmbH" },
- { 12243, "Vislink PLC" },
- { 12244, "Celestica Corporation" },
- { 12245, "Elvin" },
- { 12246, "Scottish Qualifications Authority" },
- { 12247, "IDP" },
- { 12248, "Availix SA" },
- { 12249, "Escola Universitaria Polit\0303\0250cnica de Manresa" },
- { 12250, "Alosys SpA" },
- { 12251, "Avalon Net Ltd" },
- { 12252, "BAKU Construction office" },
- { 12253, "CN Solutions, LLC" },
- { 12254, "Compubahn, Inc" },
- { 12255, "Connecticut Telephone" },
- { 12256, "Covere" },
- { 12257, "Escosoft Technologies" },
- { 12258, "European Technology Consultants" },
- { 12259, "Forum des Images" },
- { 12260, "Global Telecom, Inc." },
- { 12261, "GlobalCenter" },
- { 12262, "Gnosys S.A.R.L" },
- { 12263, "HDFCBANK" },
- { 12264, "Imagine-IT" },
- { 12265, "Indraweb" },
- { 12266, "ircd" },
- { 12267, "Johns Hopkins Applied Physics Laboratory" },
- { 12268, "Liberty Communication Services, Inc." },
- { 12269, "Maybaum" },
- { 12270, "Novar" },
- { 12271, "Pruthvi Soft" },
- { 12272, "Sacred Bytes" },
- { 12273, "State of Minnesota" },
- { 12274, "Universite Joseph Fourier - Grenoble 1" },
- { 12275, "University of Southampton" },
- { 12276, "F5 Networks Inc" },
- { 12277, "VarySys Technologies GmbH & Co. KG" },
- { 12278, "VTX Technologie" },
- { 12279, "Warp Link GmbH" },
- { 12280, "Western Institute of technology at Taranaki" },
- { 12281, "Yumemi, Inc." },
- { 12282, "Crew Co.,Ltd" },
- { 12283, "PLANET internet commerce GmbH" },
- { 12284, "IMAX NETWORKS (SHENZHEN) Ltd." },
- { 12285, "Acclamation Systems, Inc" },
- { 12286, "Issaqua" },
- { 12287, "Globecomm Systems, Inc." },
- { 12288, "Andern Research Labs" },
- { 12289, "Beeweeb Srl" },
- { 12290, "Celestica International Inc." },
- { 12291, "Cellular Specialties, Inc." },
- { 12292, "cindercat" },
- { 12293, "Digital Insight" },
- { 12294, "Emblaze Systems" },
- { 12295, "ERCIST" },
- { 12296, "IDDEX Corp" },
- { 12297, "Independent Storage Corporation" },
- { 12298, "kinge & Co limited" },
- { 12299, "KTG, Inc." },
- { 12300, "Mennonite.net" },
- { 12301, "Mountain Visions P/L" },
- { 12302, "netikos spa" },
- { 12303, "New Bridges" },
- { 12304, "Next Advisors" },
- { 12305, "PetraSync Inc." },
- { 12306, "PreWorkX (Pty) Ltd." },
- { 12307, "Red Wagon Solutions Incorporated" },
- { 12308, "SecLab" },
- { 12309, "self-indulgence.org" },
- { 12310, "Simple Access Inc." },
- { 12311, "Strategic Service Alliance" },
- { 12312, "Taika Technologies, Ltd" },
- { 12313, "Tattersalls" },
- { 12314, "Universidade Federal de Campina Grande" },
- { 12315, "WorldWithoutWire.com" },
- { 12316, "Chuo Electroplaters' Cooperative Asscosiation" },
- { 12317, "GL-Trade" },
- { 12318, "Loomis Chaffee School" },
- { 12319, "HEIWAKOGYO" },
- { 12320, "Aspen Systems, Inc." },
- { 12321, "Bure Equity" },
- { 12322, "Delta Information & Communication" },
- { 12323, "Department of Computer Science, Indiana University" },
- { 12324, "Deutsche Lebens-Rettungs-Gesellschaft e.V." },
- { 12325, "Fraunhofer FOKUS" },
- { 12326, "Hermes Precisa Australia" },
- { 12327, "kjsanders professional consulting engineers" },
- { 12328, "LawsIT Pty Ltd" },
- { 12329, "Panasonic OWL" },
- { 12330, "plan42 gmbh" },
- { 12331, "Presto Pty Ltd" },
- { 12332, "Primus Telecommunications Group, Inc." },
- { 12333, "TE / TM-tiimi" },
- { 12334, "universal communication platform gmbh" },
- { 12335, "University of York" },
- { 12336, "BuyWays" },
- { 12337, "Broad band network center of Tsinghua University" },
- { 12338, "Netcore Network Technology" },
- { 12339, "Empowered Networks" },
- { 12340, "Net Facilities Group" },
- { 12341, "NOVOMODO Inc." },
- { 12342, "Pivia, Inc." },
- { 12343, "SK Access Devices" },
- { 12344, "Teros" },
- { 12345, "VWB Group" },
- { 12346, "Hagero" },
- { 12347, "Amalgamated Systems, LLC" },
- { 12348, "American Radio Relay League" },
- { 12349, "AT Consultancy" },
- { 12350, "ATMEL Hellas, S.A.n" },
- { 12351, "Barking Cow" },
- { 12352, "Central Data Services" },
- { 12353, "Clariden Bank" },
- { 12354, "Colbourn Associates Ltd" },
- { 12355, "CTI PET Systems, Inc" },
- { 12356, "Fortinet, Inc." },
- { 12357, "Generic Media, Inc." },
- { 12358, "Imagemedical" },
- { 12359, "Indigo Tango Ltd." },
- { 12360, "Instituto Espa\0303\0261ol de Inform\0303\0241tica y Derecho" },
- { 12361, "KGEx.com Co., Ltd" },
- { 12362, "Lombard Odier & Cie" },
- { 12363, "net-labs Systemhaus GmbH" },
- { 12364, "Newbreak LLC" },
- { 12365, "NTT COMWARE CORPORATION" },
- { 12366, "Pharmacia Corporation" },
- { 12367, "QUICK Corp." },
- { 12368, "Raesemann Enterprises, Inc." },
- { 12369, "R\0303\0266hrs Stahl- und Metallbau GmbH & Co.KG" },
- { 12370, "SARD Communications Ltd." },
- { 12371, "Scrutiny, Inc." },
- { 12372, "TeraCloud Corporation" },
- { 12373, "Tetrapod Communications, Inc." },
- { 12374, "Texas State Credit Company" },
- { 12375, "Universal Access, Inc." },
- { 12376, "University of Technology Dresden, Department of Computer Science" },
- { 12377, "Vivendi Telecom Hungary" },
- { 12378, "WellThot Inc." },
- { 12379, "Wingra Technologies" },
- { 12380, "WiWo Support" },
- { 12381, "Worldcom Asia Pacific" },
- { 12382, "UNIHUB GLOBAL NETWORK" },
- { 12383, "Chrysalis-ITS" },
- { 12384, "Commissariat a l'Energie Atomique" },
- { 12385, "Common Voices" },
- { 12386, "InteQ Corporation" },
- { 12387, "IPDirections" },
- { 12388, "JustThe.net LLC" },
- { 12389, "MacsDesign Studio" },
- { 12390, "Microcell Telecommunications Inc." },
- { 12391, "Universiteit Utrecht" },
- { 12392, "Welcat Inc." },
- { 12393, "Active Hotels" },
- { 12394, "Alvarion Ltd." },
- { 12395, "Centro de Informatica da Universidade de Coimbra" },
- { 12396, "Cintech Solutions" },
- { 12397, "Gesellschaft fuer Raumbildsysteme mbH" },
- { 12398, "E. O. Ospedali Galliera" },
- { 12399, "FIX Express Corp." },
- { 12400, "Gatea Ltd." },
- { 12401, "Germinus Solutions" },
- { 12402, "IDLSPM" },
- { 12403, "Imedia Semiconductor Corp." },
- { 12404, "Indianguide.com" },
- { 12405, "Matrics Inc." },
- { 12406, "Medinet IDG S.A." },
- { 12407, "NiceShipping Technology Corporation" },
- { 12408, "Noordelijke Hogeschool Leeuwarden" },
- { 12409, "Objectivity, Inc." },
- { 12410, "OPS" },
- { 12411, "Plasmedia" },
- { 12412, "Portbridge Internet" },
- { 12413, "Radio Frequency Systems" },
- { 12414, "SCRYPTO Systems" },
- { 12415, "SinnerSchrader AG" },
- { 12416, "Summit Place Ales" },
- { 12417, "Tata Infotech Limited" },
- { 12418, "THALES" },
- { 12419, "YAMAHA CORPORATION" },
- { 12420, "Yokogawa Blue Star india Ltd" },
- { 12421, "JWAY GROUP, Inc." },
- { 12422, "The Co-operators" },
- { 12423, "Concord Telephone Company" },
- { 12424, "Congregation of the Sacred Hearts" },
- { 12425, "ConLingual" },
- { 12426, "E-Control Systems" },
- { 12427, "Equinox Engineering Ltd." },
- { 12428, "Genie Information Co." },
- { 12429, "Interact, Inc.Software Systems" },
- { 12430, "I-Silver" },
- { 12431, "iXus Technologiedienstleistungen GmbH" },
- { 12432, "Jippi Group Oyj" },
- { 12433, "John Sheahan & co." },
- { 12434, "Knox College" },
- { 12435, "M2 Systems Corporation" },
- { 12436, "Navosha, Inc." },
- { 12437, "Next Level Design, Inc." },
- { 12438, "Paradigm.One Pty Ltd" },
- { 12439, "Ritzlmayr Consulting" },
- { 12440, "Securenet Ltd" },
- { 12441, "SELECTED HOSTING" },
- { 12442, "TechGemini Inc" },
- { 12443, "www.TrafficShaper.com" },
- { 12444, "Mangolution, Inc." },
- { 12445, "Teradyne" },
- { 12446, "UNPHU" },
- { 12447, "yc consultant" },
- { 12448, "7TH VISION BILLING COMPANY" },
- { 12449, "Audiofon Chat & Play GmbH" },
- { 12450, "Australian Department of Employment and Workplace Relations" },
- { 12451, "Communication Concept GmbH" },
- { 12452, "IntraConnect GmbH" },
- { 12453, "Alaska Power & Telephone" },
- { 12454, "Aria Solutions Inc" },
- { 12455, "CaCo" },
- { 12456, "CertiSur S.A." },
- { 12457, "Chunghwa Telecom Laboratories" },
- { 12458, "GranIT Solutions, LLC" },
- { 12459, "Global Name Registry Limited" },
- { 12460, "ISG Consultoria e Informatica" },
- { 12461, "Jamm" },
- { 12462, "Linuxfabrik GmbH" },
- { 12463, "Mendosus" },
- { 12464, "MicroDowell SpA" },
- { 12465, "MyKitchenTable.net" },
- { 12466, "Netfective Technology" },
- { 12467, "OneSecure, Inc." },
- { 12468, "Pixion Inc" },
- { 12469, "QAC - Quality Assurance Consult Ltda" },
- { 12470, "Rechberger" },
- { 12471, "Rocket Software, Inc" },
- { 12472, "ScapeVision AG" },
- { 12473, "UNILANG" },
- { 12474, "WAC" },
- { 12475, "Webmotion Inc." },
- { 12476, "Carmody Consulting, Inc." },
- { 12477, "Christian Michelsen Research AS" },
- { 12478, "Maryland Department of Transportation" },
- { 12479, "OpenDNS Corp" },
- { 12480, "Allied Worldwide" },
- { 12481, "Altrick" },
- { 12482, "Departmento T\0303\0251cnico" },
- { 12483, "Ebel" },
- { 12484, "Binary Solutions" },
- { 12485, "WUMAG GmbH Werk Ebersbach" },
- { 12486, "Access Grid" },
- { 12487, "Adam Communication Systems International" },
- { 12488, "Ankor Systems" },
- { 12489, "Arizona Mail Order Co., Inc" },
- { 12490, "B.Eckstein Systems" },
- { 12491, "BondDesk" },
- { 12492, "Cameron Net" },
- { 12493, "eList eXpress LLC" },
- { 12494, "enigmatec GmbH" },
- { 12495, "Eskata Systems, Inc." },
- { 12496, "goSBC" },
- { 12497, "Holborn Colleg" },
- { 12498, "Infofiend" },
- { 12499, "IPB" },
- { 12500, "ISRO Satellite Centre" },
- { 12501, "KeysoftEnterllect" },
- { 12502, "METZEMIX" },
- { 12503, "MYUGLYFACE COMPUTING" },
- { 12504, "Onlight" },
- { 12505, "Photonic Bridges Inc." },
- { 12506, "Pinpoint Networks, Inc." },
- { 12507, "PROFIS SA" },
- { 12508, "Scardine & Lopes Ltda" },
- { 12509, "SecureONE" },
- { 12510, "Slackworks" },
- { 12511, "Telesudeste Celular" },
- { 12512, "University of Utah College of Mines & Earth Sciences" },
- { 12513, "XiteMedia I.S. V.O.F." },
- { 12514, "Abbott Laboratories" },
- { 12515, "ORGA Kartensysteme GmbH" },
- { 12516, "ARL HomeCommunications Sdn Bhd" },
- { 12517, "MAN Nutzfahrzeuge AG" },
- { 12518, "University of Mainz" },
- { 12519, "Activa3" },
- { 12520, "ASYRES" },
- { 12521, "Avacue Ltd" },
- { 12522, "California State University, San Bernardino" },
- { 12523, "Credit Union Central of Manitoba" },
- { 12524, "D.I.B." },
- { 12525, "Echostar Solutions" },
- { 12526, "Groupe Eyrolles" },
- { 12527, "HOPF Elektronik GmbH" },
- { 12528, "PureSight Ltd" },
- { 12529, "IDG Communications Ltd" },
- { 12530, "Informatikdienste, ETH Zuerich" },
- { 12531, "James K. Fegan Consulting" },
- { 12532, "Neoteris, Inc." },
- { 12533, "NOX CO.,LTD" },
- { 12534, "NZPhone S/A" },
- { 12535, "Schmidt & Co. (HK) Ltd." },
- { 12536, "SIMSAM Consulting Limited" },
- { 12537, "Spider Eye Studios" },
- { 12538, "Telkom" },
- { 12539, "The Palantir Corporation" },
- { 12540, "T-Systems International" },
- { 12541, "Universidad de Carabobo" },
- { 12542, "UNIZETO Sp. z o.o." },
- { 12543, "Virgil BV" },
- { 12544, "AEGON Nederland N.V." },
- { 12545, "is Industrial Services AG" },
- { 12546, "VerySmartPeople Inc" },
- { 12547, "Principle Inc." },
- { 12548, "HSH Nordbank AG" },
- { 12549, "Air Navigation Services (ANS) of the Czech Republic" },
- { 12550, "Association for Multidiscipline Education in the Health Sciences" },
- { 12551, "CE+T" },
- { 12552, "Corporation of Balcultha" },
- { 12553, "Dispuut Meteoor" },
- { 12554, "Ecclesias.net" },
- { 12555, "Eduro Technologies, Inc." },
- { 12556, "EmSol LLC" },
- { 12557, "GuruMeditations.org" },
- { 12558, "icoserve information technologies GmbH." },
- { 12559, "INRIA" },
- { 12560, "InterEpoch Technology, Inc." },
- { 12561, "Khonraad Systems Engineering BV" },
- { 12562, "Marcom Department Shanghai Mitac Research Co. Ltd." },
- { 12563, "megatel GmbH" },
- { 12564, "Natverket" },
- { 12565, "Navaho Networks Inc" },
- { 12566, "NIKoil Investment Banking Group (joint stock bank)" },
- { 12567, "One5 Corporation" },
- { 12568, "Ranger Computers" },
- { 12569, "Rigel Corporation" },
- { 12570, "S.I.C.E. s.r.l." },
- { 12571, "Symnetics Holdings" },
- { 12572, "TCD Enterprise, Inc." },
- { 12573, "Telonor Business Solutions" },
- { 12574, "TMH The Marilyn House srl" },
- { 12575, "UIC" },
- { 12576, "Unidirect" },
- { 12577, "Unique Interactive" },
- { 12578, "Viola Systems" },
- { 12579, "ZIGZAG Internet Service Provider" },
- { 12580, "ZIRION NETWORKS, Inc." },
- { 12581, "Naruhodo Solutions" },
- { 12582, "Primerica Financial Services" },
- { 12583, "University of California, Irvine Information and Computer Science Department" },
- { 12584, "Butler" },
- { 12585, "Alstom Holdings" },
- { 12586, "Manono Software, Inc. (formerly 'ApiaTech Information Technologies, Inc.')" },
- { 12587, "430am" },
- { 12588, "Blueice Research AB" },
- { 12589, "Celestial Software LLC" },
- { 12590, "Changi International Airport Services Pte Ltd" },
- { 12591, "Corus group plc." },
- { 12592, "Dycec" },
- { 12593, "EKL Solutions LLC" },
- { 12594, "Elma Ingenierie Informatique" },
- { 12595, "EMS Enterprise Messaging Solutions GmbH" },
- { 12596, "JOUVE S.A." },
- { 12597, "Lightwave Communications" },
- { 12598, "Net Vista" },
- { 12599, "Ordyn Electronic Systems Private Limited" },
- { 12600, "Peramon Technology Ltd" },
- { 12601, "Reed College" },
- { 12602, "RooNetworks Inc." },
- { 12603, "ShadowSupport, Inc." },
- { 12604, "Spatial Wireless" },
- { 12605, "SHOM" },
- { 12606, "MBB Gelma GmbH" },
- { 12607, "Advance Fiber Optics Inc" },
- { 12608, "Ahapala" },
- { 12609, "Ascella Technologies" },
- { 12610, "Aspen Business Logic Computing" },
- { 12611, "Atlantique Software" },
- { 12612, "Barco BCI" },
- { 12613, "BroadJump" },
- { 12614, "CiRBA Inc." },
- { 12615, "Craig F. Donlan" },
- { 12616, "DataCorp" },
- { 12617, "Espedair Systems" },
- { 12618, "EZHi Technologies, Inc." },
- { 12619, "UFRGS" },
- { 12620, "Future System Consulting Corp." },
- { 12621, "GE Medical System Information Technologies SW GmbH & Co.KG" },
- { 12622, "Devicescape Software, Inc." },
- { 12623, "IRCI S.A." },
- { 12624, "Kennesaw State University" },
- { 12625, "LabBook, Inc" },
- { 12626, "Ministry of Education, Singapore" },
- { 12627, "Morgan Stanley S.V.S.A" },
- { 12628, "Movielink" },
- { 12629, "MSE" },
- { 12630, "m-solutions Ltd." },
- { 12631, "Nets AG" },
- { 12632, "Objekt Management" },
- { 12633, "Oceanbay Internet Services" },
- { 12634, "PICMG" },
- { 12635, "Redsonic, Inc." },
- { 12636, "Scripps College" },
- { 12637, "Shazam Entertainments ltd" },
- { 12638, "Siennax" },
- { 12639, "Supercable" },
- { 12640, "The Houston-Harris County Immunization Registry" },
- { 12641, "TRIBUNAL REGIONAL DO TRABALHO da 10\0302\0252 REGI\0303\0203O" },
- { 12642, "University of Southern Mississippi" },
- { 12643, "UTI Systems S.A." },
- { 12644, "VISAA" },
- { 12645, "Vodafone Information Technology and Technology Management" },
- { 12646, "WideBand Corporation" },
- { 12647, "Lulea University of Technology" },
- { 12648, "Systek Information Technology Ltd." },
- { 12649, "Utfors AB" },
- { 12650, "Administrative Management Group, Inc." },
- { 12651, "Alaska Department of Labor" },
- { 12652, "Aminor" },
- { 12653, "Armitel" },
- { 12654, "ATH system" },
- { 12655, "exceet Secure Solutions GmbH (formerly 'AuthentiDate International AG')" },
- { 12656, "Avest Plc." },
- { 12657, "Birm\0303\0251 Consulting" },
- { 12658, "Blue Star Sustainable Technologies Inc." },
- { 12659, "Brazier & Welch" },
- { 12660, "CacheWare, Inc." },
- { 12661, "Caroline Chisholm Catholic College" },
- { 12662, "CHM Inc." },
- { 12663, "DocFi" },
- { 12664, "DotCall" },
- { 12665, "Enfotec, Inc." },
- { 12666, "Etagon" },
- { 12667, "ETERE" },
- { 12668, "Garuda Networks" },
- { 12669, "Hanenkamp.com" },
- { 12670, "Indigo Development Corp." },
- { 12671, "Institut fuer System-Management" },
- { 12672, "isMobile AB" },
- { 12673, "iTelco Communications, Inc." },
- { 12674, "Kaon Interactive Inc" },
- { 12675, "Linux Unlimited, LLC" },
- { 12676, "Logical" },
- { 12677, "Mackeeg, Inc." },
- { 12678, "Nankai University Chuangyuan Information Technologies Co., Ltd." },
- { 12679, "NextFuture" },
- { 12680, "Objective Dynamics Ltd" },
- { 12681, "Parker Abex NWL" },
- { 12682, "PC Info Solutions" },
- { 12683, "PreCache Inc." },
- { 12684, "Quantum Solutions" },
- { 12685, "SCS Engineers" },
- { 12686, "SDS GmbH" },
- { 12687, "SiliconLogic Ltd." },
- { 12688, "Sohu.com Inc" },
- { 12689, "SUPERONLINE INTERNATIONAL ONLINE INFORMATION AND COMMUNICATION SERVICES Inc." },
- { 12690, "Technology Leaders, LLC" },
- { 12691, "Terilogy Co., Ltd." },
- { 12692, "Think4You IT Services GmbH" },
- { 12693, "Ti.KOM Tirol Kommunikation" },
- { 12694, "UNIVERSIT\0303\0211 DE MARNE-LA-VALL\0303\0211E" },
- { 12695, "VS Vision Systems" },
- { 12696, "Xavier College" },
- { 12697, "YoungHome.Com, Inc" },
- { 12698, "AFRANET Co. Ltd,." },
- { 12699, "Moy Corporation" },
- { 12700, "UNC Health Care" },
- { 12701, "Tuxnology" },
- { 12702, "724 Solutions Inc" },
- { 12703, "Acelet" },
- { 12704, "ALLTEL Corporation" },
- { 12705, "BAX Global" },
- { 12706, "BYTERAGE, INC" },
- { 12707, "Connect Systems Inc" },
- { 12708, "CyberLancet Corporation" },
- { 12709, "Davies, Inc." },
- { 12710, "Dedicated Hosting Services" },
- { 12711, "Experian Limited" },
- { 12712, "Four Corners Telecommunications Corp" },
- { 12713, "HighSpeed Surfing" },
- { 12714, "Ikosaeder" },
- { 12715, "Indian Institute of Technology, Bombay" },
- { 12716, "Infologigruppen Norr AB" },
- { 12717, "InterSAN, Inc" },
- { 12718, "Rheinische Friedrich -Wilhelms-Universitaet Bonn" },
- { 12719, "Open Software Services, LLC" },
- { 12720, "Reliant Resources" },
- { 12721, "Rendition Networks Incorporated" },
- { 12722, "Rite Aid Corporation" },
- { 12723, "Seisint Inc." },
- { 12724, "Sensinova AB" },
- { 12725, "Santa Clara County" },
- { 12726, "Sudoeste Servi\0303\0247os de Telem\0303\0241tica Ltda" },
- { 12727, "Supervise Network" },
- { 12728, "SYSWILL" },
- { 12729, "Be Think, Solve, Execute GmbH (formerly 'targit GmbH')" },
- { 12730, "TECSys Development, LP" },
- { 12731, "UTI Systems S.A." },
- { 12732, "VoIP Group Inc." },
- { 12733, "WildPackets, Inc." },
- { 12734, "Northrop Grumman Information Systems" },
- { 12735, "VFSPIH" },
- { 12736, "Elo & Mahout & Co" },
- { 12737, "Algenib Software, Inc." },
- { 12738, "BMW of North America" },
- { 12739, "dgstar co., Ltd." },
- { 12740, "EqualLogic" },
- { 12741, "ErgoIntegration AS" },
- { 12742, "HomeConcept" },
- { 12743, "Integrated Service Lab" },
- { 12744, "Nakisa Inc." },
- { 12745, "Nordisk Spr\0303\0245kteknologi AS" },
- { 12746, "Spinoza Technology Inc." },
- { 12747, "Teamsoft Inc." },
- { 12748, "Telenor ASA" },
- { 12749, "UTA Telekom AG" },
- { 12750, "xi'an huahai medical info-tech co.,ltd." },
- { 12751, "e-chiceros" },
- { 12752, "Acta Technology, Inc." },
- { 12753, "Biomedical Informatics Laboratory" },
- { 12754, "bTurtle" },
- { 12755, "Cup 2000 spa" },
- { 12756, "Delta Networks, Inc." },
- { 12757, "eCubeNet.com" },
- { 12758, "ExPet Technologies, Inc." },
- { 12759, "Garban Intercapital" },
- { 12760, "h00.org" },
- { 12761, "Hipbone, Inc." },
- { 12762, "iMpacct Technology Corp." },
- { 12763, "ISK Systems Ltd" },
- { 12764, "MEDIAOCEAN" },
- { 12765, "Mintera Corp." },
- { 12766, "Mobixell Networks Inc." },
- { 12767, "National Computer Helpdesk" },
- { 12768, "NaviSite Inc" },
- { 12769, "netvigator.com" },
- { 12770, "Nyttab Ab / SurfNet" },
- { 12771, "Palfrader" },
- { 12772, "PZU Zycie SA" },
- { 12773, "Resource Center" },
- { 12774, "Sengent, Inc." },
- { 12775, "Shiron Satellite Communications Ltd." },
- { 12776, "The Box IT" },
- { 12777, "TNG - the net generation GmbH" },
- { 12778, "TranTech, Inc." },
- { 12779, "University of Vermont" },
- { 12780, "VOLKTEK Corporation" },
- { 12781, "Progeny Linux Systems" },
- { 12782, "Rost+Oberndoerfer Consulting GbR" },
- { 12783, "University of Maine System" },
- { 12784, "Teamware Group AB" },
- { 12785, "Amacis Ltd" },
- { 12786, "Automatos, Inc." },
- { 12787, "AxxessAnywhere" },
- { 12788, "BladeLogic Inc" },
- { 12789, "Centre for Integrated Computer Systems Research" },
- { 12790, "CESKY TELECOM a.s. - Imaginet o.z." },
- { 12791, "Data & Control Systems Ltd" },
- { 12792, "Embarcadero Technologies, Inc." },
- { 12793, "EUREM GmbH" },
- { 12794, "Frank" },
- { 12795, "HCC Hobbynet" },
- { 12796, "I/O Software" },
- { 12797, "Interactive Payer Network" },
- { 12798, "Internet Kayttajat Ikuisesti - IKI ry" },
- { 12799, "IPv6 Research and Development" },
- { 12800, "iqdoq" },
- { 12801, "Linuxmagic" },
- { 12802, "Mathcom Solutions Inc" },
- { 12803, "Multitask Consultoria Ltda" },
- { 12804, "National Library of Australia" },
- { 12805, "Notnet Webhosting" },
- { 12806, "Peter Stamfest" },
- { 12807, "Rabbit Semiconductor" },
- { 12808, "S2IO Technologies Corp." },
- { 12809, "San Diego Unified School District" },
- { 12810, "Saratov State University" },
- { 12811, "SatService GmbH" },
- { 12812, "Trustwave Holdings, Inc." },
- { 12813, "Speedwise Technologies" },
- { 12814, "Staatliche Studienakademie Leipzig" },
- { 12815, "Terraspring, Inc." },
- { 12816, "Universit\0303\0244t Trier" },
- { 12817, "Z-World Incorporated" },
- { 12818, "The Key Centre for Human Factors and Applied Cognitive Psychology" },
- { 12819, "Banque Generale du Luxembourg" },
- { 12820, "Electrum Information Technology Co.Ltd" },
- { 12821, "e-Pie Entertainment & Technology Corporation(Beijing)" },
- { 12822, "icu" },
- { 12823, "AMIT, Inc." },
- { 12824, "AndTeK GmbH" },
- { 12825, "ATC Information Services" },
- { 12826, "AXL Performance Solutions Ltd" },
- { 12827, "Barco, Inc." },
- { 12828, "Blue Heron Biotechnology Inc" },
- { 12829, "Brady Motor Sports" },
- { 12830, "Central Florida Main" },
- { 12831, "Codemark" },
- { 12832, "COUNCIL OF EUROPE" },
- { 12833, "Covansys" },
- { 12834, "CPE" },
- { 12835, "Digitrust - Certificadora Notarial SA" },
- { 12836, "E-Advies" },
- { 12837, "Polytech'Lille" },
- { 12838, "Exis Srl" },
- { 12839, "German Gutierrez" },
- { 12840, "Griffin Plaza Partners, LLC" },
- { 12841, "Interactive TKO Inc." },
- { 12842, "Mediso Ltd." },
- { 12843, "MIPTelecom" },
- { 12844, "Northern Michigan University" },
- { 12845, "Oak Lawn School District 229" },
- { 12846, "ObjectCode" },
- { 12847, "Orincon Corporation" },
- { 12848, "Saddleback College" },
- { 12849, "SKYRIX Software AG" },
- { 12850, "Smart Tech Consulting" },
- { 12851, "Syncope Communication Systems GmbH" },
- { 12852, "SYSPAK" },
- { 12853, "Technical Toys Limited" },
- { 12854, "tellion" },
- { 12855, "Vastweb Technology Ltd." },
- { 12856, "Verge Networks" },
- { 12857, "Williams College" },
- { 12858, "eNetrex Inc." },
- { 12859, "HIGHWAY.RU" },
- { 12860, "Zaryba Ltd" },
- { 12861, "Bayerische Beamten Versicherungen" },
- { 12862, "NEEF LAPPCOM GmbH" },
- { 12863, "AirLink Technology, Inc." },
- { 12864, "INCOGEN, Inc" },
- { 12865, "Amin Group" },
- { 12866, "CardEngine Inc." },
- { 12867, "Cedar Point Communications" },
- { 12868, "CET Technologies Pte Ltd" },
- { 12869, "Codent Networks" },
- { 12870, "Danlab Electronics A/S" },
- { 12871, "die netzwerker GmbH" },
- { 12872, "DTE Energy" },
- { 12873, "E.C.C. sa" },
- { 12874, "EFM networks Inc." },
- { 12875, "ExperShare" },
- { 12876, "Fokker Space" },
- { 12877, "FORTIS" },
- { 12878, "Griffin Network Consulting" },
- { 12879, "IDNT Integrated Digital Network Technologies" },
- { 12880, "kiwi interaktive medien gmbh" },
- { 12881, "KnowGeeks" },
- { 12882, "LGC Wireless" },
- { 12883, "Martinsson informationssystem" },
- { 12884, "Moody Bible Institute" },
- { 12885, "MyArtic Communities" },
- { 12886, "National Technical Systems" },
- { 12887, "Netplex AB" },
- { 12888, "Prokom Bilgisayar ve Danismanlik Hizmetleri San. ve Tic. Ltd.Sti." },
- { 12889, "PTC" },
- { 12890, "Shorty" },
- { 12891, "Syndicat Interhospitalier Limousin" },
- { 12892, "University of Patras" },
- { 12893, "VisioWave S.A." },
- { 12894, "Wmode Inc" },
- { 12895, "Xsetup" },
- { 12896, "Xtria Healthcare" },
- { 12897, "ZiLOG Inc." },
- { 12898, "Sinter Consulting" },
- { 12899, "Visogent Technologies" },
- { 12900, "ITEC" },
- { 12901, "Institute of Software,Chinese Academy of Sciences" },
- { 12902, "Advanced Network Technology Laboratories Pte Ltd" },
- { 12903, "Bayshore Networks, Inc." },
- { 12904, "EVault, Inc." },
- { 12905, "Indian Institute of Technology Guwahati" },
- { 12906, "japc" },
- { 12907, "Kansai Broadband Planning Corp." },
- { 12908, "Litech Systems Design" },
- { 12909, "Machine Vision Products, Inc." },
- { 12910, "Next Element" },
- { 12911, "Oce NV" },
- { 12912, "PeerPro" },
- { 12913, "Procera Networks, Inc." },
- { 12914, "Production Robots Engineering Ltd" },
- { 12915, "Radio Free Europe/Radio Liberty, Inc." },
- { 12916, "Rockland Community College" },
- { 12917, "Saber e Lazer, SA" },
- { 12918, "TDI- Transistor Devices, Inc" },
- { 12919, "XAVi Technologies Corporation" },
- { 12920, "Xteam Software Co, ltd" },
- { 12921, "Yeaman Associates" },
- { 12922, "Your Voice S.p.A." },
- { 12923, "Kigyo Zanmai Corp." },
- { 12924, "Klon/Jawor Association" },
- { 12925, "3PAR Data" },
- { 12926, "Anheuser-Busch" },
- { 12927, "Axiom (Cambridge) Ltd" },
- { 12928, "Clarus Systems" },
- { 12929, "Cliff Berg" },
- { 12930, "CVS Travelhost International Pty Ltd" },
- { 12931, "Dreefs GmbH Schaltger\0303\0244te & Systeme" },
- { 12932, "FESD GmbH" },
- { 12933, "Global Orchestra" },
- { 12934, "Hunkeler AG" },
- { 12935, "i3 micro technology ab" },
- { 12936, "InCert Software Corporation" },
- { 12937, "Infradig Systems" },
- { 12938, "Innovative Technology Solutions, Inc." },
- { 12939, "Modus (Scotland) Ltd" },
- { 12940, "Pedestal Networks" },
- { 12941, "Press-Data" },
- { 12942, "SANSHA ELECTRIC MFG.CO.,LTD" },
- { 12943, "Sengena" },
- { 12944, "Sockeye Networks, Inc." },
- { 12945, "SoftProject GmbH" },
- { 12946, "State Services Commission" },
- { 12947, "SyntheSys Secure Technologies Inc." },
- { 12948, "Syred data systems" },
- { 12949, "T-Online France" },
- { 12950, "Venngo Inc." },
- { 12951, "VerizonWireless" },
- { 12952, "warpFactor Inc." },
- { 12953, "Xandros Corporation" },
- { 12954, "WM-data SDC a/s" },
- { 12955, "Metarete s.r.l." },
- { 12956, "Aarhus Universitet" },
- { 12957, "BLUE MARS GmbH" },
- { 12958, "Questerra" },
- { 12959, "am professional services" },
- { 12960, "Andelina Corporation" },
- { 12961, "Andrew Hewett Consulting" },
- { 12962, "Decru, Inc." },
- { 12963, "DIMONsoft" },
- { 12964, "ftlight.net" },
- { 12965, "New Media Data Marketing, Inc." },
- { 12966, "Next Generation Systems, Inc." },
- { 12967, "Petrobras - Petroleo Brasileiro S.A." },
- { 12968, "Menno Pieters (formerly 'Stelvio')" },
- { 12969, "The Rockefeller University" },
- { 12970, "Urban Development Co." },
- { 12971, "bigdom.com" },
- { 12972, "Callion Electronics Co., Ltd." },
- { 12973, "Wuhan Public Information Co.Ltd." },
- { 12974, "barrigon.com" },
- { 12975, "brainaid" },
- { 12976, "coWlan" },
- { 12977, "Level II Inc." },
- { 12978, "Michael Fromme EDV-Beratung" },
- { 12979, "Optimacy Corporation" },
- { 12980, "Person co., Ltd." },
- { 12981, "Rotterdam CS" },
- { 12982, "Synergy International Ltd" },
- { 12983, "TBS INTERNET" },
- { 12984, "Terraplay Systems AB" },
- { 12985, "University of St Andrews" },
- { 12986, "Verlagsgruppe Straubinger Tagblatt / Landshuter Zeitung" },
- { 12987, "Vineyard.NET, Inc." },
- { 12988, "Vistorm Limited" },
- { 12989, "XIP" },
- { 12990, "Star Communication Network Technology Co., Ltd." },
- { 12991, "California College of Arts & Crafts" },
- { 12992, "T&A SYSTEME GmbH" },
- { 12993, "weitlandt. Communication" },
- { 12994, "Abisoft Ltd." },
- { 12995, "Accet Network Inc" },
- { 12996, "adconsys AG" },
- { 12997, "Advanced Biometrics, Inc." },
- { 12998, "Agile Software" },
- { 12999, "Altiris" },
- { 13000, "Anglia Polytechnic University" },
- { 13001, "Anuvio Technologies" },
- { 13002, "Augsburg College" },
- { 13003, "Banca I.M.I." },
- { 13004, "beamNet" },
- { 13005, "Bitrage, Inc." },
- { 13006, "CAE-Technik Schmitt" },
- { 13007, "California Regional Intranet, Inc." },
- { 13008, "CanPrint Communications Pty. Ltd." },
- { 13009, "Coma" },
- { 13010, "Computer Business Sciences Ltd." },
- { 13011, "Consejo General del Notariado" },
- { 13012, "Cramer Systems Limited" },
- { 13013, "Denisowski Consulting" },
- { 13014, "Dreamcode Software Inc." },
- { 13015, "Eastern Electronics Co., Ltd" },
- { 13016, "eMagic.com" },
- { 13017, "e-Solutionist Inc." },
- { 13018, "ETH Zurich, Department of Computer Science" },
- { 13019, "ETSI" },
- { 13020, "Florida International University" },
- { 13021, "Halifax Cetelem Credit Ltd" },
- { 13022, "handhelds.org" },
- { 13023, "Hub2b" },
- { 13024, "Imagistics International Inc." },
- { 13025, "Inferno Labs" },
- { 13026, "IT Intergroup ApS" },
- { 13027, "IXOS Software AG" },
- { 13028, "Kuokoa Networks, Inc." },
- { 13029, "Managed Service Partners International" },
- { 13030, "Monitor724 Services Limited" },
- { 13031, "neix,Inc. (formerly 'Digital Technologies Corporation')" },
- { 13032, "Reach Technologies" },
- { 13033, "shockunit productions" },
- { 13034, "SoftNet Systems, Inc." },
- { 13035, "Sonangol" },
- { 13036, "Stradient, Inc." },
- { 13037, "Subnetworx Corporation" },
- { 13038, "TELE Greenland Inc." },
- { 13039, "Tennessee Technological University" },
- { 13040, "The Horde Project" },
- { 13041, "Think Dynamics" },
- { 13042, "Trust Company of America" },
- { 13043, "University of Wisconsin - River Falls" },
- { 13044, "Unternehmensberatung Rahn" },
- { 13045, "Uptime Devices, Inc." },
- { 13046, "VisionShare Inc" },
- { 13047, "Welliver Enterprises" },
- { 13048, "Xorba, Inc." },
- { 13049, "Yacc Labs Ltd." },
- { 13050, "Ydilo Advanced Voice Solutions S.A." },
- { 13051, "MetaSolv Software, Inc." },
- { 13052, "Telefonbau Arthur Schwabe GmbH & Co KG" },
- { 13053, "TIS System Service Inc." },
- { 13054, "Ram Corp" },
- { 13055, "ShangHai JingLun Technologies CO.,LTD." },
- { 13056, "Tai Ping Life Insurance Co, Ltd." },
- { 13057, "Hays DSIA France" },
- { 13058, "National Hockey League" },
- { 13059, "Ahold Supermercados" },
- { 13060, "Airpath Wireless, Inc." },
- { 13061, "AlphaC srl" },
- { 13062, "Ascom" },
- { 13063, "Cambian" },
- { 13064, "Claymountain Solutions Oy" },
- { 13065, "Colomsat S.A." },
- { 13066, "Connaught Air Services" },
- { 13067, "CSH" },
- { 13068, "CzajSOFT" },
- { 13069, "Diveo do Brasil Telecom. LTDA" },
- { 13070, "Drutt Corporation" },
- { 13071, "ESDS" },
- { 13072, "Gallery IP Telephony Ltd." },
- { 13073, "gate5 AG" },
- { 13074, "Labyrinth Connections" },
- { 13075, "My Linux ISP" },
- { 13076, "MyCompany" },
- { 13077, "NetWolves Technologies Corporation" },
- { 13078, "NSSoft, Inc" },
- { 13079, "Persay LTD" },
- { 13080, "Persona Inc." },
- { 13081, "Pretax Systems Oy ltd" },
- { 13082, "Shanghai Sunrise Electronic Technology Co. Ltd." },
- { 13083, "Signal Technology Corporation" },
- { 13084, "Sonae Distribui\0303\0247\0303\0243o Brasil S.A." },
- { 13085, "StreamSec" },
- { 13086, "Yamagata Prefectural Government" },
- { 13087, "Vaelit Group." },
- { 13088, "Adquira Espa\0303\0261a" },
- { 13089, "Aristotle University of Thessaloniki, Department of Physics" },
- { 13090, "Artifact Entertainment" },
- { 13091, "Bethel College and Seminary" },
- { 13092, "Cellcloud Technologies Pvt Ltd" },
- { 13093, "College of Education" },
- { 13094, "Contego Solutions LLC" },
- { 13095, "Dalhousie University" },
- { 13096, "Dan of Steel" },
- { 13097, "Dascom Technology Co.Ltd" },
- { 13098, "dpa AFX Wirtschaftsnachrichten GmbH" },
- { 13099, "Drybridge Consulting" },
- { 13100, "fun communications GmbH" },
- { 13101, "GETEDES" },
- { 13102, "Hauni Maschinenbau AG" },
- { 13103, "Ilevo AB" },
- { 13104, "Infraservices Corporation" },
- { 13105, "Ingenium Technology Srl" },
- { 13106, "JLF Network" },
- { 13107, "JMatica Srl" },
- { 13108, "Linuxlab" },
- { 13109, "Liontech Co., Ltd." },
- { 13110, "Manageable Inc." },
- { 13111, "mcgu.net Consulting" },
- { 13112, "MDS Proteomics Inc." },
- { 13113, "MindTribe" },
- { 13114, "Nextra Investment Management SGR S.p.A." },
- { 13115, "Open Connections" },
- { 13116, "P & J Systems Support Station" },
- { 13117, "Plat'Home Co.,Ltd." },
- { 13118, "PointDx, Inc." },
- { 13119, "RAmEx Ars Medica, Inc." },
- { 13120, "RASilient Systems, Inc." },
- { 13121, "Signatron Technology Corporation" },
- { 13122, "Software Research Associates, Inc." },
- { 13123, "Starbak Communications Inc." },
- { 13124, "Terra Marketing" },
- { 13125, "TEYTEL, S.A." },
- { 13126, "themountain" },
- { 13127, "Thomas Jefferson University Hospital" },
- { 13128, "Universe Software" },
- { 13129, "UPMC" },
- { 13130, "Video Products Group" },
- { 13131, "de Passievruchten" },
- { 13132, "Softing Europe S.A." },
- { 13133, "Michelin" },
- { 13134, "Founder Broadband Network Technology Co.,Ltd" },
- { 13135, "SJTeK" },
- { 13136, "AlexS.DE Private Network" },
- { 13137, "Biocare sarl" },
- { 13138, "Boiled Frog Trading Co-operative" },
- { 13139, "caribNav Holdings, LLC" },
- { 13140, "Cluster File Systems, Inc." },
- { 13141, "FDK CO.LTD" },
- { 13142, "I M Consultancy Pty Ltd" },
- { 13143, "I&SI S.p.A." },
- { 13144, "Jakob Hatteland Computer AS" },
- { 13145, "Klik Systems Inc." },
- { 13146, "Klomp" },
- { 13147, "Leadfly Technologies Co., Ltd." },
- { 13148, "LeanLogistics" },
- { 13149, "Lee Printing, Inc." },
- { 13150, "m&m consulting intl" },
- { 13151, "MB Consultants" },
- { 13152, "Octalis S.A." },
- { 13153, "RFSAW" },
- { 13154, "RPost, Inc." },
- { 13155, "Shimanek" },
- { 13156, "SwitchPoint Networks, Inc" },
- { 13157, "Tsinghua Unisplendour Bitway Networking Technology Co.,Ltd." },
- { 13158, "Universitaet Muenster" },
- { 13159, "ZF Friedrichshafen AG" },
- { 13160, "Cerca.com S.r.l." },
- { 13161, "Quattro Software Limited" },
- { 13162, "Software Quality Engineering" },
- { 13163, "Ministry of Justice, Finland" },
- { 13164, "CyberSuperStore, Inc." },
- { 13165, "9105 - 1938 Qu\0303\0251bec Inc." },
- { 13166, "Acamar Systems" },
- { 13167, "Oeko.neT Mueller & Brandt" },
- { 13168, "Aries e-Publishing" },
- { 13169, "UNIPOWER, LLC. - IPS (formerly 'C&D Technologies, Inc.')" },
- { 13170, "caresys GmbH" },
- { 13171, "Cilys" },
- { 13172, "Dark Side of the Moon Software" },
- { 13173, "DILAX Intelcom GmbH" },
- { 13174, "Eglin Air Force Base" },
- { 13175, "Eurofer" },
- { 13176, "European Bank for Reconstruction and Development" },
- { 13177, "Firmaprofesional, SA" },
- { 13178, "Fremont Computer Corporation" },
- { 13179, "Internet Information Group" },
- { 13180, "JR Software" },
- { 13181, "Junot Systems Inc." },
- { 13182, "kapsch TrafficCom AG" },
- { 13183, "Kevab Thebasestationcompany" },
- { 13184, "Lanscape Netzwerkdienste GmbH" },
- { 13185, "Laqtib, Inc." },
- { 13186, "Light Computing Services Ltd" },
- { 13187, "MDlink GmbH" },
- { 13188, "Miami University Libraries" },
- { 13189, "MITAKE" },
- { 13190, "Northrop/Grumman- INRI division,NTCSS Support System" },
- { 13191, "OneAccess" },
- { 13192, "PCLinX snc" },
- { 13193, "Portelco (Asia) Limited" },
- { 13194, "PORTSITE GmbH" },
- { 13195, "Proditec" },
- { 13196, "SBS GmbH & Co OHG CWS 41" },
- { 13197, "Security Crossing" },
- { 13198, "Signtrust" },
- { 13199, "SiMind Inc" },
- { 13200, "BPK Penabur" },
- { 13201, "TJH Internet SP" },
- { 13202, "United States Advanced Network, Inc." },
- { 13203, "University of Pretoria" },
- { 13204, "VIA NET.WORKS Deutschland GmbH" },
- { 13205, "WebSwimmer LLC" },
- { 13206, "BSM Consulting" },
- { 13207, "NTNU" },
- { 13208, "ARGSOFT" },
- { 13209, "Aptilo Networks AB" },
- { 13210, "Armstrong Group of Companies" },
- { 13211, "AT4.NET INTERNET Y COMUNICACION" },
- { 13212, "bTrade, Inc." },
- { 13213, "Centre Tecnologic de Manresa" },
- { 13214, "Comunitel Global S.A." },
- { 13215, "Cougaar" },
- { 13216, "Digital Age Design" },
- { 13217, "FH Furtwangen" },
- { 13218, "Flowring Technology" },
- { 13219, "Gliwickie Stowarzyszenie Internaut\0303\0263w" },
- { 13220, "Interconnected Generation" },
- { 13221, "Kubota Systems Inc." },
- { 13222, "Millicom Peru" },
- { 13223, "mwain Corp" },
- { 13224, "Net Integration Technologies" },
- { 13225, "Network Services Group, LLC" },
- { 13226, "Network Technology Solutions" },
- { 13227, "Officescape" },
- { 13228, "Redline Telecommunications SA (pty) Ltd" },
- { 13229, "Samad Pty Ltd" },
- { 13230, "San Diego Supercomputer Center" },
- { 13231, "SchlumbergerSema Japan" },
- { 13232, "SpottedOwlRecipes.com" },
- { 13233, "Vimia GmbH" },
- { 13234, "TELPRO Ltd." },
- { 13235, "Teralink Communications" },
- { 13236, "The Brick Warehouse Corporation" },
- { 13237, "US Process, Inc" },
- { 13238, "Vienna University of Economics and Business Administration" },
- { 13239, "Vodatel" },
- { 13240, "VoIP Pty Ltd" },
- { 13241, "Wieland Gmeiner" },
- { 13242, "InfoCrypt" },
- { 13243, "Chip PC" },
- { 13244, "Duniya Technologies, Inc." },
- { 13245, "HST" },
- { 13246, "Alliente, Inc." },
- { 13247, "City of Naantali" },
- { 13248, "General Electric Power Management" },
- { 13249, "ICEM Technologies GmbH" },
- { 13250, "INECO" },
- { 13251, "Ingenix" },
- { 13252, "Kodansha Ltd." },
- { 13253, "ky-on" },
- { 13254, "London Stock Exchange" },
- { 13255, "net mobile AG" },
- { 13256, "Rabid Badgers" },
- { 13257, "Registradores de la Propiedad y Mercantil de Espa\0303\0261a" },
- { 13258, "Secretaria de Educaci\0303\0263n del Distrito (Bogota D.C Colombia)" },
- { 13259, "solution-x Software GmbH" },
- { 13260, "Study Area Training Center" },
- { 13261, "T-Systems ITS GmbH - DMS/PP" },
- { 13262, "ZbW - Zentrum fuer berufliche Weiterbildung" },
- { 13263, "Professional Systems Integration" },
- { 13264, "Atmel Germany GmbH" },
- { 13265, "Atofina" },
- { 13266, "C2 Creation" },
- { 13267, "Urban Traffic Management and Control (UTMC) (formerly 'City of York Council')" },
- { 13268, "Clark Hill PLC" },
- { 13269, "Complete Network Solutions, Inc." },
- { 13270, "Computing Center of Northeastern Univ." },
- { 13271, "Current Technologies" },
- { 13272, "DaniloMassa" },
- { 13273, "Design IT Solutions Ltd" },
- { 13274, "Digital Media Lab Corporation" },
- { 13275, "Golden Square Post Production" },
- { 13276, "gsta" },
- { 13277, "IEEE 802.11" },
- { 13278, "iNabling Technologies" },
- { 13279, "Intergate Browser Systems, Inc." },
- { 13280, "Internet Express, Inc." },
- { 13281, "IPSYN" },
- { 13282, "Kaparel Corporation" },
- { 13283, "Laitilan Puhelinosuuskunta" },
- { 13284, "London Stock Exchange" },
- { 13285, "LYCOS FRANCE" },
- { 13286, "MDM I&C" },
- { 13287, "Membrain Technologies" },
- { 13288, "MIS@MHIT" },
- { 13289, "Neoscale Systems" },
- { 13290, "nextSource, Inc." },
- { 13291, "Ogangi Corporation" },
- { 13292, "feel3 UG (haftungsbeschraenkt) (formerly 'oneShell Internet Services GmbH')" },
- { 13293, "OTTO International (Hong Kong) Ltd." },
- { 13294, "ph03n1x.net - Development" },
- { 13295, "Portugalmail" },
- { 13296, "SOFTINTEGRO" },
- { 13297, "Soliton Associates Limited" },
- { 13298, "SYNER S.A." },
- { 13299, "Syntlogo GmbH" },
- { 13300, "Syr\0303\0251n Software AB" },
- { 13301, "Teksouth Corporation" },
- { 13302, "The Advantage Media Group" },
- { 13303, "The Gillette Company" },
- { 13304, "T-Systems Solutions for Research GmbH" },
- { 13305, "BFH Berne University of Applied Sciences (formerly 'Berne University of Applied Sciences')" },
- { 13306, "University of Montana" },
- { 13307, "V.R.A.M. Rt." },
- { 13308, "V\0303\0241rosmajori Gimn\0303\0241zium" },
- { 13309, "Visanti A/S" },
- { 13310, "wwwolf" },
- { 13311, "Joys Online, Inc" },
- { 13312, "Factor-TS Ltd." },
- { 13313, "Analog Devices, Inc" },
- { 13314, "Blank" },
- { 13315, "BlueCat Networks" },
- { 13316, "Byteworks" },
- { 13317, "Celite Systems Inc." },
- { 13318, "Clarity AG" },
- { 13319, "Dipartimento di Biochimica e Biotecnologie Mediche" },
- { 13320, "Griffin Development" },
- { 13321, "Incard spa" },
- { 13322, "Peel Teaching Assistants Association" },
- { 13323, "SoftLogic Solutions" },
- { 13324, "Web-Addr LLC" },
- { 13325, "Associated Press" },
- { 13326, "Bermai" },
- { 13327, "htds" },
- { 13328, "Apoapsis Ltd" },
- { 13329, "Area51" },
- { 13330, "Ceyoniq Incorporated" },
- { 13331, "CICAIA - Universita` di Modena e Reggio Emilia" },
- { 13332, "Credit Union Central Alberta Limited" },
- { 13333, "ClearSky Technologies, Inc. (formerly 'Data On Air')" },
- { 13334, "Hewett Inc." },
- { 13335, "Internet Information Services" },
- { 13336, "IronHide Corp" },
- { 13337, "Kochan und Partner" },
- { 13338, "Krocus Communications Oy" },
- { 13339, "Lange Software GmbH" },
- { 13340, "Lee Bradshaw" },
- { 13341, "Live Systems Integration" },
- { 13342, "Unassigned" },
- { 13343, "Networking Laboratory of DMIS, BUTE" },
- { 13344, "Ningbo Success Information Industry CO.,LTD." },
- { 13345, "Pacificorp" },
- { 13346, "Pace France (formerly 'Philips CE STB')" },
- { 13347, "Qbranch" },
- { 13348, "Randall Kunkee" },
- { 13349, "RMP & Associates" },
- { 13350, "SDN Online, Inc." },
- { 13351, "Shanghai Mining Computer Software Co., Ltd." },
- { 13352, "SNS Solutions" },
- { 13353, "Sonofon" },
- { 13354, "SpaceTime Co., Ltd." },
- { 13355, "Stodge.org" },
- { 13356, "Summit Imaging, Inc." },
- { 13357, "SunGard Bi-Tech" },
- { 13358, "Tim O Callaghan" },
- { 13359, "TM Ryder Insurance Agency, Inc." },
- { 13360, "Trinity Convergence" },
- { 13361, "Universit\0303\0251 Fran\0303\0247ois Rabelais" },
- { 13362, "University of Applied Sciences Stralsund" },
- { 13363, "University of Southern California" },
- { 13364, "ViaBridge" },
- { 13365, "ViewBridge Technologies, Inc" },
- { 13366, "W*H Interactive Ltd" },
- { 13367, "Whale Queens Org" },
- { 13368, "Zand Elektronic" },
- { 13369, "Zeta Associates Incorporated" },
- { 13370, "7+ Computer Networks Ltd." },
- { 13371, "Qualityware Inform\0303\0241tica Ltda." },
- { 13372, "UGC" },
- { 13373, "Apt Minds, LLC" },
- { 13374, "Axitus" },
- { 13375, "Brainzsquare Inc." },
- { 13376, "Carambole" },
- { 13377, "Conceptis Technologies Inc" },
- { 13378, "Concretio India Private Limited" },
- { 13379, "Crysec GmbH" },
- { 13380, "DOTSTAR Technology" },
- { 13381, "DRP Data" },
- { 13382, "INTEC International GmbH" },
- { 13383, "iNTELEGO" },
- { 13384, "Letins Corporation" },
- { 13385, "Mount Saint Mary College" },
- { 13386, "Nagar" },
- { 13387, "NeuroStar Solutions" },
- { 13388, "Ticoon Technology Inc." },
- { 13389, "Wraith Computer Systems" },
- { 13390, "AV Automotive Group" },
- { 13391, "Callaway Golf" },
- { 13392, "Cavena Image Products AB" },
- { 13393, "Cite-SI" },
- { 13394, "Colligo Networks" },
- { 13395, "CommerceQuest, Inc." },
- { 13396, "DANVILLE ASSOCIATES" },
- { 13397, "DemandTec Inc." },
- { 13398, "SicherByte GmbH Dr. Ralf Schwedler" },
- { 13399, "Dune Semiconductor" },
- { 13400, "Emerson Network Power Co.,Ltd." },
- { 13401, "ETE Software" },
- { 13402, "Exent Technologies Ltd." },
- { 13403, "Foton-2000 Kft." },
- { 13404, "fSONA Communications" },
- { 13405, "Inside Products" },
- { 13406, "Institute of Medical and Veterinary Science" },
- { 13407, "Link2it Corp." },
- { 13408, "Macrobyte Resources" },
- { 13409, "Mega System Technologies, Inc." },
- { 13410, "National Public Radio" },
- { 13411, "ms Neumann-Elektronik GmbH" },
- { 13412, "Ophios GmbH" },
- { 13413, "Olabisi.com" },
- { 13414, "Pairlink" },
- { 13415, "Schlag&rahm GmbH" },
- { 13416, "SecurityMatrix, Inc." },
- { 13417, "silicon broadcasts, Inc." },
- { 13418, "SKKU Information and comunication lab" },
- { 13419, "SRS SAKURA Internet Inc." },
- { 13420, "Surgitec Pte Ltd" },
- { 13421, "Tango Telecom Limited" },
- { 13422, "Uniscope" },
- { 13423, "universite de valenciennesJean-Luc Petit, Jean-Guy Avelin" },
- { 13424, "UPC Netherlands" },
- { 13425, "Virtual Space Research" },
- { 13426, "WZab Software" },
- { 13427, "Artesyn Embedded Technologies (formerly 'Emerson Network Power ')" },
- { 13428, "JAPAN STORAGE BATTERY CO., Ltd." },
- { 13429, "Queen Elizabeth School Old Students' Association" },
- { 13430, "Shanghai Online Bussiness Co.,Ltd." },
- { 13431, "A2E Ltd" },
- { 13432, "CampusEdge Apartments" },
- { 13433, "CodeZombie.com" },
- { 13434, "DYSER S.R.L." },
- { 13435, "General Magic, Inc." },
- { 13436, "iControls, Inc." },
- { 13437, "libits" },
- { 13438, "Logic Eastern(I) Pvt Ltd" },
- { 13439, "Melle Service GmbH" },
- { 13440, "Network Telephone" },
- { 13441, "Norfolk Southern Corp" },
- { 13442, "OpenVES" },
- { 13443, "OZIS" },
- { 13444, "Robert Bird and Partners" },
- { 13445, "Silicon Cocoon Pty.Ltd." },
- { 13446, "Singapore Cable Vision Limited" },
- { 13447, "The Training Mann" },
- { 13448, "Transat Technologies, Inc." },
- { 13449, "trusdata.com" },
- { 13450, "TT&S Tecnologia e Sistemas Ltda." },
- { 13451, "Network Information Center, univ.of buaa" },
- { 13452, "My Lan Guys" },
- { 13453, "Lanmix Technology Co." },
- { 13454, "Hays Supply Chain" },
- { 13455, "Deutsche Rentenversicherung Rechenzentrum Leipzig" },
- { 13456, "A.E.T. Europe B.V." },
- { 13457, "ARM Holdings plc" },
- { 13458, "ATMedia GmbH" },
- { 13459, "CAIS" },
- { 13460, "COMELIS" },
- { 13461, "eBsuccess Solutions Inc." },
- { 13462, "estei" },
- { 13463, "Fort Wayne Community Schools" },
- { 13464, "GCOM Technologies Co.,Ltd. (formerly 'GREENNET TECHNOLOGY CO.,LTD.')" },
- { 13465, "Ingate Systems AB" },
- { 13466, "Jabber, Inc." },
- { 13467, "Medasys" },
- { 13468, "Montclair State University" },
- { 13469, "netLibrary, Inc." },
- { 13470, "SecureGUARD GmbH (formerly 'Otto Security & Software Technologie GmbH')" },
- { 13471, "PowerWAN, Inc" },
- { 13472, "RTS Realtimes Systems (Deutschland) AG" },
- { 13473, "SafeWeb, Inc." },
- { 13474, "Sierra Systems Group Inc." },
- { 13475, "SnapTrack, Inc." },
- { 13476, "Telemant Corp." },
- { 13477, "Shanghai HAORUN Technologies Ltd." },
- { 13478, "Clear2Talk Ltd" },
- { 13479, "dstl" },
- { 13480, "Anyware Technology, Inc." },
- { 13481, "Appload Nordic AB" },
- { 13482, "ATL Telecom" },
- { 13483, "Aviri" },
- { 13484, "Choice One Communications" },
- { 13485, "Comindico" },
- { 13486, "Princeton University" },
- { 13487, "CorVu Corporation" },
- { 13488, "DNCP, LLC" },
- { 13489, "Eastern Goldfields Senior High School" },
- { 13490, "Eplication" },
- { 13491, "EuroMACC Ltd." },
- { 13492, "First Data Merchant Services" },
- { 13493, "Global Science & Technology, Inc." },
- { 13494, "Illinois Mathematics and Science Academy" },
- { 13495, "INAT GmbH" },
- { 13496, "Institute of Informatics, Slovak Academy of Sciences" },
- { 13497, "IT3 Consultants" },
- { 13498, "KKE, Inc" },
- { 13499, "Metoda S.p.A." },
- { 13500, "MPL AG" },
- { 13501, "Nexstar Financial Corporation" },
- { 13502, "OneSquared" },
- { 13503, "Orchestria Limited" },
- { 13504, "Polkomtel S.A." },
- { 13505, "PROCOS AG" },
- { 13506, "Psionic Software, Inc." },
- { 13507, "Radcom Software Romania" },
- { 13508, "SIGDCI" },
- { 13509, "SKY Computers" },
- { 13510, "Somoma County Water Agency" },
- { 13511, "SpaceIP" },
- { 13512, "TeamWarrior Ltd" },
- { 13513, "The Technology Partner" },
- { 13514, "Unassigned" },
- { 13515, "Unitech Networks .Ltd" },
- { 13516, "Viloke Oy" },
- { 13517, "Xi'an Jiaotong University" },
- { 13518, "ABN AMRO NL/CCC" },
- { 13519, "Amsoft Systems India Inc" },
- { 13520, "BizWebApps" },
- { 13521, "Sysnight" },
- { 13522, "Account Synchronization Project" },
- { 13523, "Australian Industry Group" },
- { 13524, "Barham House Publishing, Inc." },
- { 13525, "Blarg! Online Services, Inc." },
- { 13526, "Clickmarks Inc." },
- { 13527, "Digitasaru" },
- { 13528, "DLESE" },
- { 13529, "DreamLAN Network Consulting Ltd." },
- { 13530, "Fahnestock & Co." },
- { 13531, "Tryo Communication Systems S.A. (formerly 'Mier Comunicaciones, S.A.')" },
- { 13532, "Pennant Systems" },
- { 13533, "Petr Zahradnik Computer Laboratory" },
- { 13534, "Proteus Mobile, Inc" },
- { 13535, "IonPipe. Inc." },
- { 13536, "Serome Technology, Inc." },
- { 13537, "Shine Global" },
- { 13538, "VideoBureau, Inc." },
- { 13539, "Voorhout Data Connection BV" },
- { 13540, "Shenzhen Keybridge Communications Co.,Ltd." },
- { 13541, "DBV-Winterthur Versicherungen" },
- { 13542, "Datapac s.r.o." },
- { 13543, "100 Percent IT Ltd" },
- { 13544, "Acopia Networks, Inc." },
- { 13545, "Adverb Software" },
- { 13546, "Alta A/S" },
- { 13547, "Axiom Systems Limited" },
- { 13548, "BakBone Software Inc" },
- { 13549, "Banque de France" },
- { 13550, "Celstream Technologies" },
- { 13551, "Cofunds LTD" },
- { 13552, "CQG, Inc" },
- { 13553, "Cyber Space Systems, Inc." },
- { 13554, "DTN SpeedNet Services, LLC" },
- { 13555, "Enterprise Business Solutions" },
- { 13556, "Filtronic plc" },
- { 13557, "FLOORgraphics, Inc." },
- { 13558, "Gary Reynolds" },
- { 13559, "Global Technology Associates, Inc." },
- { 13560, "Grant County PUD #2" },
- { 13561, "Griffith University" },
- { 13562, "Information Sciences Institute, USC" },
- { 13563, "Integrated Software Technologies Inc." },
- { 13564, "Logistik World GmbH" },
- { 13565, "Lucent Technologies India Ltd" },
- { 13566, "Neolytica" },
- { 13567, "UBIqube Solutions" },
- { 13568, "Neustar, Inc." },
- { 13569, "OIZ" },
- { 13570, "Security Integration, Inc." },
- { 13571, "TESIS SYSware GmbH" },
- { 13572, "TJEdwards" },
- { 13573, "Tran Empire Industries" },
- { 13574, "TVG Technologies Ltd." },
- { 13575, "University of Windsor" },
- { 13576, "WAGO Kontakttechnik GmbH" },
- { 13577, "Youjin" },
- { 13578, "apogee solutions" },
- { 13579, "LMN Associates" },
- { 13580, "Europ Assistance France" },
- { 13581, "TAMAGAWA UNIV." },
- { 13582, "Nordija A/S" },
- { 13583, "UCBIRL" },
- { 13584, "Schering AG" },
- { 13585, "Mangalore Refinery And Petrochemicals Limited" },
- { 13586, "Woodside Networks, Inc." },
- { 13587, "Universite de Franche-Comte" },
- { 13588, "Acegi Technology Pty Limited" },
- { 13589, "Air Traffic Control & Business Systems GmbH" },
- { 13590, "Americredit Corp" },
- { 13591, "BE Intelligent Systems" },
- { 13592, "Blunk Microsystems" },
- { 13593, "CommerceFlow, Inc." },
- { 13594, "Company Watch Limited" },
- { 13595, "EMKA electronic AG" },
- { 13596, "Fachhochschule Bingen" },
- { 13597, "FEIS, University of Hertfordshire" },
- { 13598, "General Dynamics Canada" },
- { 13599, "Golden Triangle Online" },
- { 13600, "greenmokey.net" },
- { 13601, "Hwa Chong Junior College" },
- { 13602, "IS4-O" },
- { 13603, "KPNQwest Czechia s.r.o." },
- { 13604, "Liberate Technologies" },
- { 13605, "Maverick workgroup" },
- { 13606, "Nicomaque" },
- { 13607, "Unassigned" },
- { 13608, "OpenHandHome Inc" },
- { 13609, "Palladium Consulting Inc." },
- { 13610, "Q Solutions" },
- { 13611, "RBC Data" },
- { 13612, "Schlund + Partner AG" },
- { 13613, "StrataVerio" },
- { 13614, "Tartu K\0303\0265rgem Kunstikool" },
- { 13615, "TH" },
- { 13616, "THALES SYSTEM INTEGRATION GmbH" },
- { 13617, "Those Interactive Guys" },
- { 13618, "Transim Technology Corp." },
- { 13619, "UnderCoverWear Collection" },
- { 13620, "University of Wisconsin - Eau Claire" },
- { 13621, "Wind Telecom" },
- { 13622, "Yaina" },
- { 13623, "point it GmbH" },
- { 13624, "EASTCOM-BUPT INFORMATION TECHNOLOGY CO.,LTD." },
- { 13625, "pohlcity.de" },
- { 13626, "Rastel" },
- { 13627, "Netfor, Inc." },
- { 13628, "SerCon GmbH" },
- { 13629, "A.G.Tech Network Service" },
- { 13630, "AFX News Ltd" },
- { 13631, "Arax Communications" },
- { 13632, "ATOMiX DESiGN" },
- { 13633, "AVA Afzar Co." },
- { 13634, "B&B Computersysteme GbR" },
- { 13635, "BSWS" },
- { 13636, "Corestreet, Ltd." },
- { 13637, "Cresent Software Products (PVT) Ltd." },
- { 13638, "Expert Systems IVR (Asia) Co., Ltd." },
- { 13639, "FibroTEC" },
- { 13640, "Jon Wood" },
- { 13641, "Kremlin Computing Limited" },
- { 13642, "LITAS, s.r.o." },
- { 13643, "MIMOS Berhad" },
- { 13644, "Netgate" },
- { 13645, "OKB MEI" },
- { 13646, "Oninit Ltd" },
- { 13647, "Ostsee-Zeitung GmbH & Co. KG" },
- { 13648, "Pointred Technologies, Inc" },
- { 13649, "Polizei Rheinland-Pfalz" },
- { 13650, "Relativity" },
- { 13651, "RexKramer" },
- { 13652, sminmpec_unknown }, /* (Added by Wireshark) */
- { 13653, "Seoul Mobile Telecom, Inc." },
- { 13654, "SHENZHEN XIFENG NETWORK TECHNOLOGIES CO.,LTD" },
- { 13655, "SpaceMonster Gaming Network" },
- { 13656, "SUNNYbell Technology" },
- { 13657, "Tango SA" },
- { 13658, "Teddy's Network" },
- { 13659, "The Worley Companies" },
- { 13660, "U.S. Army CECOM" },
- { 13661, "The University of Manchester (formerly 'UMIST')" },
- { 13662, "Universidad de Palermo" },
- { 13663, "VRGroup.com" },
- { 13664, "VSS KB, a.s." },
- { 13665, "Webs-are.us" },
- { 13666, "Wolf Hill, s.r.o." },
- { 13667, "Wozzle Internet Solutions" },
- { 13668, "Yes Technology" },
- { 13669, "Cubic Transportation Systems, Inc." },
- { 13670, "San Diego Data Processing Corporation" },
- { 13671, "TechTV" },
- { 13672, "General Dynamics - Decision Systems/Secure Products" },
- { 13673, "Internet Cz\0303\0252stochowa" },
- { 13674, "PESA Switching Systems, Inc." },
- { 13675, "bandwave internet" },
- { 13676, "French Data Network" },
- { 13677, "Kb/TEL Telecomunicaciones SA de CV" },
- { 13678, "acter AG" },
- { 13679, "AltiGen Communications Inc." },
- { 13680, "Aviva Solutions Inc." },
- { 13681, "CHILDLOCK solutions" },
- { 13682, "Ecole des Mines de Nantes" },
- { 13683, "EFTechnologies, Inc." },
- { 13684, "ELPROMA Elektronika" },
- { 13685, "Faculty of Mathematics and Computer Science, Nicholas Copernicus University of Torun" },
- { 13686, "go win" },
- { 13687, "Humboldt-Universitaet zu Berlin" },
- { 13688, "Icequake Networks" },
- { 13689, "In Town Consulting LLC" },
- { 13690, "Madras Computer Vertriebsges.m.b.H." },
- { 13691, "Maison d'en France" },
- { 13692, "mediface" },
- { 13693, "Mirage Networks, Inc" },
- { 13694, "Nervus Systems Ltd" },
- { 13695, "Neurosphere Consulting" },
- { 13696, "Ohio Wesleyan University" },
- { 13697, "Paul Dlug" },
- { 13698, "RunCircle Ltd" },
- { 13699, "Sarvega Inc." },
- { 13700, "Scale Eight" },
- { 13701, "Sonic Software" },
- { 13702, "Store Media Engineering" },
- { 13703, "SunDataCom pvt.Ltd.," },
- { 13704, "TNO" },
- { 13705, "Universitas Indonesia" },
- { 13706, "Volvo Event Management" },
- { 13707, "wasiliana solutions" },
- { 13708, "AIC NETWORK" },
- { 13709, "The Bank of New York" },
- { 13710, "LVM Versicherungen" },
- { 13711, "Primus Telecommunications Australia Pty Ltd" },
- { 13712, "ARINC (Aeronautical Radio, Inc.) Roy L. Courtney" },
- { 13713, "Gateweaver" },
- { 13714, "Reea" },
- { 13715, "Alescere" },
- { 13716, "Caja Madrid" },
- { 13717, "Carreker Corporation" },
- { 13718, "CCITRIAD" },
- { 13719, "CEGETEL SI" },
- { 13720, "CoreMedia AG" },
- { 13721, "Corning Cable Systems" },
- { 13722, "deot.net" },
- { 13723, "Division of BITL" },
- { 13724, "Erasmus University Rotterdam" },
- { 13725, "EuroNetics" },
- { 13726, "FH Bonn-Rhein-Sieg" },
- { 13727, "Funda\0303\0247\0303\0243o CPqD - Centro de Pesquisa e Desenvolvimento em Telecomunica\0303\0247\0303\0265es" },
- { 13728, "Fundaci\0303\0263> Aplicaci\0303\0263" },
- { 13729, "Funktional Solutions Group" },
- { 13730, "Geobot, Inc" },
- { 13731, "Huth Engineering Inc" },
- { 13732, "iDirect" },
- { 13733, "IMServ Europe Ltd" },
- { 13734, "Institut fuer Theorie der Elektrotechnik, Universitaet Stuttgart" },
- { 13735, "Integra5 Ltd." },
- { 13736, "Manufacture des Montres Rolex SA" },
- { 13737, "Mark Wilcox & Associates" },
- { 13738, "MindMatics AG" },
- { 13739, "Pacesetter Electronics" },
- { 13740, "Popwire Technology AB" },
- { 13741, "Proinos, INC" },
- { 13742, "Raritan Computer, Inc." },
- { 13743, "SGTE-IES" },
- { 13744, "SkyTel, Inc." },
- { 13745, "Plixer International, Inc. (formerly 'Somix Technologies, INC')" },
- { 13746, "UNIversity of Detroit Mercy" },
- { 13747, "Virtual Health Networks, Inc." },
- { 13748, "Wizzbit" },
- { 13749, "Madison Consulting Inc." },
- { 13750, "Juergen Weber Unternehmensberatung" },
- { 13751, "AGY Therapeutics Incorporated" },
- { 13752, "Amarna Software Productions" },
- { 13753, "Ascent Computing Group Inc" },
- { 13754, "Banco Zaragozano" },
- { 13755, "Carleton College" },
- { 13756, "C-LOG International" },
- { 13757, "COXnet" },
- { 13758, "cr-team.de" },
- { 13759, "Examen, Inc" },
- { 13760, "Fourth House Security Inc" },
- { 13761, "Glencore International AG" },
- { 13762, "Innovery" },
- { 13763, "Johannes Passing Softwareentwicklung" },
- { 13764, "Khodayss Systems Limited" },
- { 13765, "Life Time Fitness, Inc." },
- { 13766, "LOEWE Opta GmbH" },
- { 13767, "Metalogue Communications" },
- { 13768, "Movaris" },
- { 13769, "mozilla.org" },
- { 13770, "MTA Solutions" },
- { 13771, "Navic Systems, Inc., d/b/a Navic Networks, Inc." },
- { 13772, "NPULSE Software, Inc." },
- { 13773, "NTELOS Inc." },
- { 13774, "Onetta, Inc." },
- { 13775, "Pomona College" },
- { 13776, "Potlatch Corporation" },
- { 13777, "Rakuten Inc." },
- { 13778, "Sociedade Diginet, LdaJacques" },
- { 13779, "SUMIX Corporation" },
- { 13780, "ubernul projekt" },
- { 13781, "Universite d'AUVERGNE" },
- { 13782, "University of Dortmund, Department of Mathematics" },
- { 13783, "Viking Society of SA" },
- { 13784, "WhidbeyNet" },
- { 13785, "YH" },
- { 13786, "ZP system" },
- { 13787, "PageMail Inc." },
- { 13788, "Dev-Labs Ltd." },
- { 13789, "Innovations GmbH" },
- { 13790, "U-King Communications Corp." },
- { 13791, "Associa\0303\0247\0303\0243o dos Estudantes" },
- { 13792, "Active Telecom" },
- { 13793, "Acumen Sciences, LLC." },
- { 13794, "Beijing Educational Information Network" },
- { 13795, "Blue Edge Bulgaria" },
- { 13796, "Caliari Research S.p.A. Nicola" },
- { 13797, "CIRAD" },
- { 13798, "Globenet" },
- { 13799, "Internet 78" },
- { 13800, "IS Services" },
- { 13801, "IUFM des Pays de la Loire" },
- { 13802, "Mundee Internet Services" },
- { 13803, "Navajo Law Enforcement Training Academy" },
- { 13804, "Pontifical College Josephinum" },
- { 13805, "Southland Christian Church" },
- { 13806, "SysOpen Plc" },
- { 13807, "Tpack" },
- { 13808, "ubernul projekt" },
- { 13809, "Universit\0303\0251 Jean Monnet Saint Etienne" },
- { 13810, "University of Alaska" },
- { 13811, "Israel Discount Bank" },
- { 13812, "SmartPrice SA" },
- { 13813, "Evalesco Systems ApS" },
- { 13814, "alfa Media Partner GmbH" },
- { 13815, "Angel Iglesias, S.A." },
- { 13816, "AppSense Technologies" },
- { 13817, "Ausw\0303\0244rtiges Amt" },
- { 13818, "BHI" },
- { 13819, "BTI Communications Co." },
- { 13820, "CESKY TELECOM, a.s." },
- { 13821, "CNI/Prairienet" },
- { 13822, "Command Software Systems, Inc" },
- { 13823, "Comtarsia IT Services" },
- { 13824, "Consus Ltd" },
- { 13825, "Crisp Hughes Evans LLP" },
- { 13826, "Dept of Veterans Affairs" },
- { 13827, "EndRun Technologies LLC" },
- { 13828, "ETM International / Austria" },
- { 13829, "Flecha de Lima Associados" },
- { 13830, "GED-SOFTWARE" },
- { 13831, "Geo-Marine, Inc." },
- { 13832, "The Go Daddy Group, Inc." },
- { 13833, "Gobierno de Canarias" },
- { 13834, "iMach, Ltd." },
- { 13835, "inet-logistics GmbH" },
- { 13836, "Information and Logistics Consultancy" },
- { 13837, "IntroTec" },
- { 13838, "KadeL Data Servis s.r.o." },
- { 13839, "MarkitServFX (formerly 'Logicscope Realisations Ltd')" },
- { 13840, "Media Driver, LLC" },
- { 13841, "MetiLinx" },
- { 13842, "Moser-Baer AG" },
- { 13843, "Ned Davis Research Group" },
- { 13844, "North East Worcestershire College" },
- { 13845, "Ohio Northern University" },
- { 13846, "PatientKeeper, Inc." },
- { 13847, "Pearco Services" },
- { 13848, "rnix.com" },
- { 13849, "Sepro Telecom" },
- { 13850, "Static" },
- { 13851, "Swisscom IT SErvices AG" },
- { 13852, "TopoLogica" },
- { 13853, "Tularik" },
- { 13854, "Universitaet Mannheim, Rechenzentrum" },
- { 13855, "Universitaet Oldenburg" },
- { 13856, "University of Michigan Health System" },
- { 13857, "Ursys Pty Ltd" },
- { 13858, "Eltek Valere Inc. (formerly 'Valere Power Inc')" },
- { 13859, "Voxpilot" },
- { 13860, "WASKO" },
- { 13861, "Wolf IT Concepts" },
- { 13862, "XTec, Incorporated" },
- { 13863, "Airwolf Systems, Inc." },
- { 13864, "MAMINOS, Inc." },
- { 13865, "Universit\0303\0251 Charles de Gaulle - Lille 3" },
- { 13866, "ACE TIMING" },
- { 13867, "Adfinis SyGroup AG" },
- { 13868, "Bahrain Credit" },
- { 13869, "Blum Capital Partners, LP" },
- { 13870, "Corporate Oxygen" },
- { 13871, "Falcon Software NV" },
- { 13872, "Federal University of Sao Paulo" },
- { 13873, "FMC" },
- { 13874, "goepp.net" },
- { 13875, "Interact" },
- { 13876, "Ionic Productions LLC" },
- { 13877, "Kanda Tsushin Kogyo Co., Ltd." },
- { 13878, "Kariboo Technologies SA" },
- { 13879, "Natural Soft S.A." },
- { 13880, "ADS Networks Pvt. Ltd" },
- { 13881, "neobee.net" },
- { 13882, "Netilla Networks" },
- { 13883, "New Morning Windows" },
- { 13884, "Pepco AS" },
- { 13885, "Polycom, Inc." },
- { 13886, "Prosodic Communications Inc." },
- { 13887, "Red Roby Software, Inc." },
- { 13888, "South Texas Lighthouse for the Blind" },
- { 13889, "Spriral Designs Inc." },
- { 13890, "Teltier Technologies Inc." },
- { 13891, "The Advantage Group" },
- { 13892, "University of New Hampshire" },
- { 13893, "International Truck and Engine Corporation" },
- { 13894, "LGNsys" },
- { 13895, "LaGrange School District 102" },
- { 13896, "Atos Origin CMS / TSP" },
- { 13897, "Advanced Technologies Lab" },
- { 13898, "Alexander Horsch und Thomas Balbach IT Solutions" },
- { 13899, "Anka Systems, Inc" },
- { 13900, "Blue Gargoyle Consulting, LLC" },
- { 13901, "Broadwave Inc." },
- { 13902, "Business Internet Trends" },
- { 13903, "CAMH PET Centre" },
- { 13904, "Caymas Systems" },
- { 13905, "Cemagref" },
- { 13906, "Chantry Networks Inc." },
- { 13907, "Compera" },
- { 13908, "Croatian Physical Society, Student Section" },
- { 13909, "CTTC - Centre Tecnol\0303\0262gic de Telecomunicacions de Catalunya" },
- { 13910, "Das B\0303\0274ro am Draht" },
- { 13911, "Epsilon d.o.o." },
- { 13912, "Everest Connections" },
- { 13913, "EVoto Team" },
- { 13914, "FreakySoft" },
- { 13915, "Harry R\0303\0274ter Software Solutions" },
- { 13916, "Heimat di Andrea Rota" },
- { 13917, "Hostcentric" },
- { 13918, "Inkasbank" },
- { 13919, "Instinct Internet Solutions" },
- { 13920, "Magic Hosting" },
- { 13921, "NEBS" },
- { 13922, "nologin" },
- { 13923, "Peter Verhas" },
- { 13924, "Powell's Bookstores" },
- { 13925, "Real Time Productions" },
- { 13926, "Road Tech Compter Systems Ltd" },
- { 13927, "SCCNET SOHO Consulting" },
- { 13928, "TC Communications" },
- { 13929, "Teragen Pty Ltd" },
- { 13930, "The Aquarius Network" },
- { 13931, "uberLAN Technologies" },
- { 13932, "Vogon.Net" },
- { 13933, "Alstom Transport" },
- { 13934, "Micchi" },
- { 13935, "100comm" },
- { 13936, "AEGIS Mortgage Corp" },
- { 13937, "Art Global Limited" },
- { 13938, "Ashton Raggatt McDougall" },
- { 13939, "automatX" },
- { 13940, "COE Ltd" },
- { 13941, "Communicator Inc." },
- { 13942, "Candera Inc" },
- { 13943, "Datanet" },
- { 13944, "Denali SA" },
- { 13945, "Deutsche Forschungsgemeinschaft" },
- { 13946, "Educational Systems Ltd" },
- { 13947, "EEMA" },
- { 13948, "Exostar LLC" },
- { 13949, "FRANK-EDV-SERVICE Gesellschaft m.b.H." },
- { 13950, "Galileo, Inc." },
- { 13951, "Gentek Marketing Inc." },
- { 13952, "GLOBAL SUN TECHNOLOGY" },
- { 13953, "HelioGraph Limited" },
- { 13954, "IT Guardian Ltd" },
- { 13955, "JPConsulting" },
- { 13956, "KATCH Network Inc" },
- { 13957, "Liquidsite, Inc." },
- { 13958, "M.N. Ramos Ferreira, Electricidade e Mec\0303\0242nica, Lda" },
- { 13959, "MLA Power Systems" },
- { 13960, "NESTAR" },
- { 13961, "NLIP - Dutch ISP Association" },
- { 13962, "QoS Labs" },
- { 13963, "R.V.R. Elettronica SpA" },
- { 13964, "SWCS Chan Pak Sha School" },
- { 13965, "tpgpost" },
- { 13966, "University of Bath" },
- { 13967, "Vaporware" },
- { 13968, "Verlag Fur Neue Medien" },
- { 13969, "VOXSIS Inform\0303\0241tica" },
- { 13970, "Aerostrong Science & Technology Co., Ltd." },
- { 13971, "ChinaBizone Infomation Technology Co., Ltd." },
- { 13972, "Varga Limited" },
- { 13973, "investir publications" },
- { 13974, "Epigenomics AG" },
- { 13975, "Naval Global Directory Service" },
- { 13976, "Interaktivna Consulting" },
- { 13977, "SHAYNE ENTERPRISES" },
- { 13978, "GuardedNet, Inc." },
- { 13979, "Mintact Software Inc (formerly 'CompuCS Inc.')" },
- { 13980, "Platinum Web Pages" },
- { 13981, "INGCHEM" },
- { 13982, "FibreSpeed Ltd." },
- { 13983, "WWR Development, Inc." },
- { 13984, "Cybrick Information Systems" },
- { 13985, "TAE KWANG INDUSTRIAL CO., Ltd." },
- { 13986, "Larry Drummond,Consulting Engineer" },
- { 13987, "C. Plath GmbH" },
- { 13988, "tele-akademie der Fachhochschule Furtwangen" },
- { 13989, "Markus Heiden SAP / EC Consulting" },
- { 13990, "Coloma Community Schools" },
- { 13991, "Accellence Technologies GmbH" },
- { 13992, "M-Net Sys" },
- { 13993, "ITWorx" },
- { 13994, "STN ATLAS Elektronik GmbH" },
- { 13995, "Amperion, Incorporated" },
- { 13996, "kbox" },
- { 13997, "Invisible Industries" },
- { 13998, "Conceptual MindWorks, Inc." },
- { 13999, "ItsNotA.com" },
- { 14000, "Michail Kamprianis" },
- { 14001, "DRS Technologies Canada Ltd. (formerly 'DRS Flight Safety and Communications')" },
- { 14002, "University of Wisconsin - Whitewater" },
- { 14003, "Saint Mary's College" },
- { 14004, "Gap Inc." },
- { 14005, "Kelly" },
- { 14006, "Thomas Melzer Softwareentwicklung" },
- { 14007, "IMPACT Science & Technology, Inc." },
- { 14008, "KT" },
- { 14009, "onSynergy Solutions" },
- { 14010, "Cirrus Real Time Processing" },
- { 14011, "Cyber-Project" },
- { 14012, "net-safe Co., Ltd." },
- { 14013, "Tata Consultancy Services" },
- { 14014, "TP EmiTel Sp. z o.o." },
- { 14015, "Unet Ltd." },
- { 14016, "HG-France" },
- { 14017, "Fachhochschule Technikum Wien" },
- { 14018, "Bryan Bellamy" },
- { 14019, "Betronic Design BV" },
- { 14020, "Zencod" },
- { 14021, "Shapers" },
- { 14022, "Arachne (Poland)" },
- { 14023, "KCOM Service Provider Network (formerly 'Mistral Internet Group')" },
- { 14024, "fiscus GmbH" },
- { 14025, "Landesversicherungsanstalt" },
- { 14026, "Slapd.Net" },
- { 14027, "RiverNorth Systems, Inc." },
- { 14028, "Real Time Engineering" },
- { 14029, "Netzwerk-Lehmann" },
- { 14030, "Smartology vof" },
- { 14031, "STATO MAGGIORE DIFESA - COMANDO C4" },
- { 14032, "SUNY Geneseo" },
- { 14033, "Samart Info Media Co.,Ltd." },
- { 14034, "OU Artaxis" },
- { 14035, "CyberStar" },
- { 14036, "LineCom Ltd" },
- { 14037, "DasW:Lab" },
- { 14038, "Karns Technology" },
- { 14039, "Gagliano & Cia" },
- { 14040, "Branda Tech." },
- { 14041, "Railway Information Systems Co.,Ltd" },
- { 14042, "Freudenberg Haushaltsprodukte KF" },
- { 14043, "Sociedad Andaluza para el Desarrollo de la Sociedad de laInformacion, S.A.U." },
- { 14044, "Kernfysisch Versneller Instituut" },
- { 14045, "iServe (Pty) Ltd." },
- { 14046, "Statens Bostadsfinansierings AB" },
- { 14047, "ISET" },
- { 14048, "Lyse Energi" },
- { 14049, "ProactiveThought Technologies Ltd.Inc." },
- { 14050, "Desert Academy at Sante Fe" },
- { 14051, "NetMaster Digital Security" },
- { 14052, "Profluent systems Australia" },
- { 14053, "Prosum Solutions, LLC" },
- { 14054, "Fibercom" },
- { 14055, "IP Mobile Net, Inc." },
- { 14056, "CEGELEC" },
- { 14057, "Longhill High School" },
- { 14058, "Excogita S.r.l." },
- { 14059, "Oberoesterreichische Versicherung AG" },
- { 14060, "ENS GmbH" },
- { 14061, "Conectiva S.A." },
- { 14062, "Escritorio Juridico Alcala Rhode & Asociados" },
- { 14063, "SeaFire Networks Inc." },
- { 14064, "UC Berkeley Residential Computing" },
- { 14065, "Shanghai FOCI Fiber Optic Communication Equipments Inc." },
- { 14066, "pit.at" },
- { 14067, "allied networks GmbH" },
- { 14068, "Thueringer Netkom GmbH (formerly 'TEAG Netkom GmbH')" },
- { 14069, "Syngenio AG" },
- { 14070, "C3T" },
- { 14071, "Bohr- und Rohrtechnik GmbH" },
- { 14072, "Mistral Software Private Ltd." },
- { 14073, "SMART Technology" },
- { 14074, "Shorcan Brokers Ltd." },
- { 14075, "Rational Software Corporation" },
- { 14076, "Marsh Inc." },
- { 14077, "Esial" },
- { 14078, "ANECT a. s." },
- { 14079, "Active Tools" },
- { 14080, "Brivo Systems, Inc." },
- { 14081, "Armstrong World Industries" },
- { 14082, "uplink coherent solutions" },
- { 14083, "Thomas Enterprises" },
- { 14084, "Cochran Consulting, Inc." },
- { 14085, "ADVFN.com PLC" },
- { 14086, "ESHA Research" },
- { 14087, "Zultys Technologies" },
- { 14088, "Navis LLc" },
- { 14089, "City of Ontario, Oregon" },
- { 14090, "Powerview Systems" },
- { 14091, "Hawker College" },
- { 14092, "University of Rhode Island" },
- { 14093, "Medibase Technologies Co., Ltd." },
- { 14094, "Snow B.V." },
- { 14095, "TechDirection" },
- { 14096, "Forlink Software Corporation Inc." },
- { 14097, "ITW-Informationstechnik GmbH" },
- { 14098, "Hotelequip Ltd." },
- { 14099, "Butchwax Software" },
- { 14100, "WLAN Alliance AB" },
- { 14101, "D.A.Tsenov EA" },
- { 14102, "dacore Datenbanksysteme AG" },
- { 14103, "ICE Systems" },
- { 14104, "tetronik GmbH AEN" },
- { 14105, "Business interactif" },
- { 14106, "Syndicat Interhospitalier de Bretagne" },
- { 14107, "WIENSTROM" },
- { 14108, "Odense Kommune" },
- { 14109, "Jaguar Cars Limited" },
- { 14110, "ORIMOS" },
- { 14111, "Oxspring Network Solutions Ltd." },
- { 14112, "hzw design" },
- { 14113, "MagneTek" },
- { 14114, "Aepona England" },
- { 14115, "Platespin" },
- { 14116, "Telecore, Inc." },
- { 14117, "aostar" },
- { 14118, "Hanover College" },
- { 14119, "Netlife AG" },
- { 14120, "Letifer.org" },
- { 14121, "Stone-IT" },
- { 14122, "Wireless Broadband Alliance Ltd (formerly 'Wi-Fi Alliance')" },
- { 14123, "Expertcity Inc." },
- { 14124, "UK/CA/JN Joint Astronomy Centre" },
- { 14125, "SENAO INTERNATIONAL CO., Ltd." },
- { 14126, "New World PCS Limited" },
- { 14127, "OneChannel" },
- { 14128, "Programming Arts, Inc." },
- { 14129, "Sevan Networks, Inc." },
- { 14130, "Bifco" },
- { 14131, "Ifoundry Systems" },
- { 14132, "CS Systemes d'Information" },
- { 14133, "Buergernetz Weihenstephan e.V." },
- { 14134, "University of Szeged" },
- { 14135, "SysDM" },
- { 14136, "PONTON GmbH" },
- { 14137, "Karis" },
- { 14138, "TGM" },
- { 14139, "City of Nottingham Council" },
- { 14140, "Fachhochschule Lippe und Hoexter" },
- { 14141, "ERECA" },
- { 14142, "ALPWARE" },
- { 14143, "FimOSSchober & Hartl OEG" },
- { 14144, "Malkom S.J." },
- { 14145, "Society for Humanity and International Trancendentalism" },
- { 14146, "Blackbox Consulting Corporation" },
- { 14147, "Fermi National Accelerator Laboratory" },
- { 14148, "Officina di idee" },
- { 14149, "Waddell & Reed Services" },
- { 14150, "Transaction Auditing Group" },
- { 14151, "Splentec Ltd." },
- { 14152, "Dyncorp Systems and Solutions" },
- { 14153, "Sigma SaA" },
- { 14154, "NTKO Network Co., Ltd." },
- { 14155, "TIL TECHNOLOGIES" },
- { 14156, "University of Reading" },
- { 14157, "FHLBank Topeka" },
- { 14158, "Consultoria y estrategia electr\0303\0263nica para internet, S.L.(TestaNet)" },
- { 14159, "Fluent Inc." },
- { 14160, "Tribune Interactive" },
- { 14161, "EPCNet GmbH" },
- { 14162, "IT Solution GmbH" },
- { 14163, "SAGA D.C. GmbH" },
- { 14164, "SANavigator, Inc." },
- { 14165, "iReady" },
- { 14166, "Saviso Consulting Ltd." },
- { 14167, "Seattle University" },
- { 14168, "Owl River Company" },
- { 14169, "INFORMEDIA" },
- { 14170, "Australian Research Centre for Medical Engineering" },
- { 14171, "Memorial University of Newfoundland" },
- { 14172, "Boca Software, Inc." },
- { 14173, "ETRI" },
- { 14174, "Softforum Co., Ltd." },
- { 14175, "Hospital La Fe" },
- { 14176, "Katholieke Hogeschool Leuven" },
- { 14177, "implementa GmbH" },
- { 14178, "JNI Corporation" },
- { 14179, "Airespace, Inc (formerly 'Black Storm Networks')" },
- { 14180, "DS Consulting" },
- { 14181, "Cygnus Technologies" },
- { 14182, "GlobalLocate" },
- { 14183, "Arezzo Telecomunicazioni Srl" },
- { 14184, "Getabigger Network" },
- { 14185, "CYBER SERVICE" },
- { 14186, "Gallant Technologies, Inc." },
- { 14187, "China Netcom Corporation Ltd." },
- { 14188, "Thomas K. Williams, Ltd." },
- { 14189, "probusiness AG" },
- { 14190, "Western Outdoor Interactive" },
- { 14191, "MNOFBB" },
- { 14192, "Granite Technologies" },
- { 14193, "Strabon" },
- { 14194, "Ministry of Social Development" },
- { 14195, "Now Software" },
- { 14196, "California State University, Monterey Bay" },
- { 14197, "SISNEMA Informatica Ltda." },
- { 14198, "PANNAWAY Technologies Incorporated" },
- { 14199, "Accelrys Inc." },
- { 14200, "HCL Comnet Ltd." },
- { 14201, "Daxworld" },
- { 14202, "Dottech International Inc.Ltd." },
- { 14203, "AQL" },
- { 14204, "Reksoft Ltd." },
- { 14205, "MAI Insurance Brokers Ltd." },
- { 14206, "Informatie Beheer Groep" },
- { 14207, "Leroy Somer" },
- { 14208, "OpenWide" },
- { 14209, "Accellent" },
- { 14210, "The Storyteller's Place" },
- { 14211, "Tiffany and Company" },
- { 14212, "Universitaet Muenchen" },
- { 14213, "Scitech it solutions GmbH" },
- { 14214, "Tyco Services" },
- { 14215, "Interactive Visuals, Inc." },
- { 14216, "Sendfar Technology Co., Ltd." },
- { 14217, "Wuestenrot Datenservice GmbH" },
- { 14218, "Facultes Universitaires Notre-Dame de la Paix" },
- { 14219, "Hapag-Lloyd Container Linie AG" },
- { 14220, "Akaflieg Munchen e.V." },
- { 14221, "Prodigy Labs" },
- { 14222, "Electric Reliability Council of Texas, Inc." },
- { 14223, "Sourcefire, Inc." },
- { 14224, "Software Machine" },
- { 14225, "SPL / ACT Wireless" },
- { 14226, "Vizafone" },
- { 14227, "Tampere Polytechnic" },
- { 14228, "Flanders Electric" },
- { 14229, "University of Arkansas-Fayetteville" },
- { 14230, "Engine GmbH & Co. KG" },
- { 14231, "The Shmoo Group" },
- { 14232, "Exelon Corporation" },
- { 14233, "Sonag Company" },
- { 14234, "Isotomic Technologies" },
- { 14235, "SpinCircuit Inc." },
- { 14236, "Banco de la Republica" },
- { 14237, "Sarawak Information Systems Sdn. Bhd." },
- { 14238, "Dilithium Networks" },
- { 14239, "SPRITEInc." },
- { 14240, "Top Global Technology Ltd" },
- { 14241, "Mentorgen, LLC" },
- { 14242, "AOSA Telekom GmbH & Co." },
- { 14243, "RTS Real Time Computersoftware Ges.mbH." },
- { 14244, "Bjerkeset Consulting" },
- { 14245, "The Caudium Group" },
- { 14246, "Natural Convergence" },
- { 14247, "signaflex Inc." },
- { 14248, "Gemini Security Solutions, Inc." },
- { 14249, "Vienne Informatique" },
- { 14250, "Conseil General de la Vienne" },
- { 14251, "Stellar Craft Inc." },
- { 14252, "Prime Solutions Ltd." },
- { 14253, "GridXpert" },
- { 14254, "enhansiv" },
- { 14255, "brvenik.com" },
- { 14256, "Arlys S. A." },
- { 14257, "Link Margin, Inc." },
- { 14258, "Northern Trust Company" },
- { 14259, "Groupe ECE Paris" },
- { 14260, "Linux Systemberatung" },
- { 14261, "Bank Leumi LeIsrael Ltd." },
- { 14262, "Dipl. Ing. Felix Beer" },
- { 14263, "Sven Meinhardt EDV-Service" },
- { 14264, "OutPost Sentinel" },
- { 14265, "itouch" },
- { 14266, "Bulletproff Networks" },
- { 14267, "WrjTec" },
- { 14268, "Projekt Avalon" },
- { 14269, "Beijing Vanlink Communication Co. P.R.China Yu" },
- { 14270, "Technology Hackworks, Inc." },
- { 14271, "Iliad" },
- { 14272, "AWO Kreisverband Essen e.V." },
- { 14273, "IFEN" },
- { 14274, "BDILukasz Tylski" },
- { 14275, "Deutsche Bundeswehr" },
- { 14276, "Osystem AB" },
- { 14277, "tylerfam.net" },
- { 14278, "DINX GmbH" },
- { 14279, "NetHere Internet Services, Inc." },
- { 14280, "All Optical Networks, Inc." },
- { 14281, "RCAT.net" },
- { 14282, "Vertrian" },
- { 14283, "Webraska" },
- { 14284, "Technische Universitat Chemnitz" },
- { 14285, "Cegetel SI" },
- { 14286, "nVISIA" },
- { 14287, "Aegis:Net" },
- { 14288, "Lucterra Informatica Ltda" },
- { 14289, "A3 Design" },
- { 14290, "Infocorp Computer Solutions, Inc." },
- { 14291, "Stefan Lefnaer" },
- { 14292, "The Document Academy" },
- { 14293, "Aditel nv" },
- { 14294, "Collax GmbH" },
- { 14295, "DOP Systems Ltd." },
- { 14296, "Confmon Corp" },
- { 14297, "One.Tel.UK" },
- { 14298, "Control Products, Inc." },
- { 14299, "SiteSuite Australasia" },
- { 14300, "Cyber Switching Inc." },
- { 14301, "Pro Medicus Ltd." },
- { 14302, "papiNet.org" },
- { 14303, "Nextgen, Inc." },
- { 14304, "ScenPro Inc." },
- { 14305, "Kora Institute of Science and Technology Information (KISTI)" },
- { 14306, "FOCI Fiber Optic Communications, Inc." },
- { 14307, "Kawamura Electric Inc." },
- { 14308, "REP" },
- { 14309, "Technische Universitaet Clausthal, Rechenzentrum" },
- { 14310, "Adjoin Solutions, Inc." },
- { 14311, "Technion Communications Corporation" },
- { 14312, "Skypath Networks, Inc." },
- { 14313, "Proceda Tecnologia e Informatica SA" },
- { 14314, "Imaginet" },
- { 14315, "UBServices" },
- { 14316, "Shanghai Huateng Software System Co., Ltd." },
- { 14317, "Ratwater" },
- { 14318, "Alstom T&D P&D" },
- { 14319, "DDD Design GmbH" },
- { 14320, "Credit Lyonnais DSTI/DSAT/PLANET" },
- { 14321, "Techelp Ky" },
- { 14322, "Arnold Design & Informatica Ltda." },
- { 14323, "Dennis IT" },
- { 14324, "The Written Word, Inc." },
- { 14325, "PuceBaboon" },
- { 14326, "Sirius Satellite Radio" },
- { 14327, "VA Linux Systems Japan K.K." },
- { 14328, "JAG Productions, Inc." },
- { 14329, "TimeCertain, LLC" },
- { 14330, "Shanghai Ewaytek Co., Ltd." },
- { 14331, "Beijing Topsec Network Security Technology Co., Ltd." },
- { 14332, "DeadSquid Communications" },
- { 14333, "Phonologies (India) Pvt. Ltd." },
- { 14334, "Milton Keynes Council" },
- { 14335, "Econnect" },
- { 14336, "The Chesapeake Computer Group, Incorporated" },
- { 14337, "Superintendencia de Servicios de Salud" },
- { 14338, "ImpSat S.A.-Colombia" },
- { 14339, "Hioptel" },
- { 14340, "LinuxTek, Inc." },
- { 14341, "Ministry of Pacific Island Affairs" },
- { 14342, "Netway Networks Pty. Ltd." },
- { 14343, "Osprey Network Technologies, Inc." },
- { 14344, "Electronic Commerce Technologies" },
- { 14345, "ETG" },
- { 14346, "Erich Jaeger GmbH" },
- { 14347, "RealNet Kft." },
- { 14348, "Swist Group Technologies (Pty.) Ltd." },
- { 14349, "Dyband Corporation" },
- { 14350, "Storbit" },
- { 14351, "Applied Engineering, Inc." },
- { 14352, "Penn State University" },
- { 14353, "Alessandro Bertela" },
- { 14354, "Menlo Park Presbyterian Church" },
- { 14355, "Chapman University" },
- { 14356, "Bank of Bermuda" },
- { 14357, "WORLDPAC" },
- { 14358, "SnapGear Pty Ltd" },
- { 14359, "Abacus" },
- { 14360, "Routrek Networks, Inc." },
- { 14361, "Foresearch" },
- { 14362, "Telekom Slovenije d.d." },
- { 14363, "Blue Oak Wireless (Pty) Ltd." },
- { 14364, "CLG" },
- { 14365, "IgH Essen GmbH" },
- { 14366, "Energy Research Foundation" },
- { 14367, "Ironic Design, Inc." },
- { 14368, "PUBLIC.AT Internet" },
- { 14369, "TSI" },
- { 14370, "GeoTrust Inc." },
- { 14371, "IOTAC" },
- { 14372, "Universidad Simon Bolivar" },
- { 14373, "MystroTV" },
- { 14374, "International Software Solutions" },
- { 14375, "Wireless Services Corp." },
- { 14376, "Applied Signal Technology, Inc." },
- { 14377, "CORE SECURITY TECHNOLOGIES" },
- { 14378, "lmjn.com" },
- { 14379, "VarioSecure Networks, Inc." },
- { 14380, "KT ICOM" },
- { 14381, "TeleCIS, Inc." },
- { 14382, "Superlong IT Ltd." },
- { 14383, "Openexpertise Pty. Ltd." },
- { 14384, "Romsym Data" },
- { 14385, "RTE Software" },
- { 14386, "soLNet, s.r.o" },
- { 14387, "Absolute Systems (PTY) Ltd" },
- { 14388, "Toll Collect" },
- { 14389, "Spider Internet Technologies, Inc." },
- { 14390, "QRS Healthcare Solutions" },
- { 14391, "Ace Suares" },
- { 14392, "SI-Solucoes de Informatica" },
- { 14393, "PRODASAL Companhia de Processamento de Dados de Salvador" },
- { 14394, "New Mass Media, Inc." },
- { 14395, "University of Oregon" },
- { 14396, "c4net" },
- { 14397, "ICSS" },
- { 14398, "Behavioral Informatics Inc." },
- { 14399, "NEC Platforms, Ltd." },
- { 14400, "VentureTechs Corp." },
- { 14401, "Joint Stock Company Volgatelecom, Penza region" },
- { 14402, "University of Geneva" },
- { 14403, "Gymnasium Hermann-Boese-Str." },
- { 14404, "Spediant Systems Ltd." },
- { 14405, "Charon Systems Inc." },
- { 14406, "United Land Services, Inc." },
- { 14407, "Xidus.Net" },
- { 14408, "nDosa Technologies, Inc." },
- { 14409, "DCANet" },
- { 14410, "TSSX" },
- { 14411, "Beijing QXCOMM Technology CO., Ltd." },
- { 14412, "European Transaction Bank AG" },
- { 14413, "Comfone AG" },
- { 14414, "Regio Ltd." },
- { 14415, "e-mobilizer" },
- { 14416, "ntl" },
- { 14417, "Continentale Krankenversicherung A.G." },
- { 14418, "Centro de Tecnologia da Informa\0303\0247\0303\0243o \"Luiz de Queiroz\"" },
- { 14419, "EMIGRATUS Communications Inc." },
- { 14420, "ltinetworks.com" },
- { 14421, "Mocana Corporation" },
- { 14422, "Tazmen Technologies" },
- { 14423, "Rondosoft, Inc." },
- { 14424, "humatix" },
- { 14425, "Telkonet Inc." },
- { 14426, "Enterprise Innovations Corporation" },
- { 14427, "NACT Telecommunications Inc." },
- { 14428, "Welstand" },
- { 14429, "McLuckie and Associates" },
- { 14430, "PoliVec Inc." },
- { 14431, "Universitas Kristen Krida Wacana" },
- { 14432, "Reserved" },
- { 14433, "China Financial Certification Authority" },
- { 14434, "Network Systems and Technologies" },
- { 14435, "Vrije Universiteit Amsterdam" },
- { 14436, "Quiconnect.com" },
- { 14437, "baltz.org" },
- { 14438, "PolarLake" },
- { 14439, "Hit Internet Technologies S.p.A" },
- { 14440, "Longship Scout Group" },
- { 14441, "Miller Zell" },
- { 14442, "XYBASE (Malaysia) Sdn Bhd" },
- { 14443, "July Systems" },
- { 14444, "Redback IT Pty Ltd" },
- { 14445, "Elecs Industry Co., Ltd." },
- { 14446, "INDEO GmbH" },
- { 14447, "Spektra Group Ltd" },
- { 14448, "Iatrogenix.com" },
- { 14449, "HitNet e.V." },
- { 14450, "Twicom" },
- { 14451, "Industrial Computing Ltd" },
- { 14452, "Everyone.net" },
- { 14453, "ISIS Networks" },
- { 14454, "Tel-Aviv University" },
- { 14455, "IntercontinentalExchange" },
- { 14456, "Lemuria Asesores Informaticos C.A." },
- { 14457, "Lorex Industries, Inc." },
- { 14458, "ILIENT" },
- { 14459, "Hennessy Digital" },
- { 14460, "B Digital" },
- { 14461, "Keyware Solutions Inc." },
- { 14462, "Psgue Corporation" },
- { 14463, "Tour2000 co., LTD" },
- { 14464, "ValueCommerce" },
- { 14465, "NOC Grove" },
- { 14466, "Heinrich-Heine-Universitaet Duesseldorf" },
- { 14467, "STIME" },
- { 14468, "Marconi Integrated Systems" },
- { 14469, "Cyclone Computer Consultants Ltd" },
- { 14470, "Plahl Karl Consult" },
- { 14471, "Wasabi Systems" },
- { 14472, "VIA NET.WORKS Services AG" },
- { 14473, "Queen's University" },
- { 14474, "NextAxiom Technology, Inc." },
- { 14475, "Ralph DeHart" },
- { 14476, "Network Executive Software, Inc." },
- { 14477, "RELIX" },
- { 14478, "University of Melbourne" },
- { 14479, "Korea National Defence University" },
- { 14480, "norisbank AG" },
- { 14481, "KOBIL Systems GmbH" },
- { 14482, "System 5" },
- { 14483, "UNIC Internet Consulting" },
- { 14484, "Digital V6 Corp." },
- { 14485, "Sanmina-SCI Inc" },
- { 14486, "Marlboro College" },
- { 14487, "Erkkila Consulting" },
- { 14488, "Darkmist" },
- { 14489, "mcgrew.net Inc." },
- { 14490, "Ariadne Internet Services, Inc." },
- { 14491, "Standard School District" },
- { 14492, "Dialogue Technology Corporation" },
- { 14493, "Aurigo Software Technologies" },
- { 14494, "ASPedi GmbH" },
- { 14495, "Hans Lie" },
- { 14496, "SwedishAmerican Health System Corporation" },
- { 14497, "Gist Communications, Inc." },
- { 14498, "Style Networks, Inc." },
- { 14499, "e-Bank" },
- { 14500, "Warsaw University" },
- { 14501, "Blue Coat Systems" },
- { 14502, "Sam Asher Computing Services, Inc." },
- { 14503, "Asylum Visual Effects" },
- { 14504, "Packet Signal Corporation" },
- { 14505, "Spiral Designs Inc." },
- { 14506, "Ministerul Apararii Nationale" },
- { 14507, "Russian American Glass Company - RASKO Ltd" },
- { 14508, "Teknovus" },
- { 14509, "Mercateo AG" },
- { 14510, "Astra Datentechnik GmbH" },
- { 14511, "London Metropolitan University" },
- { 14512, "Aspivia (Pty) Ltd." },
- { 14513, "Webflex" },
- { 14514, "DAVE s.r.l." },
- { 14515, "GenoGRID" },
- { 14516, "Sanoma Budapest Publishing Ltd." },
- { 14517, "Tactel AB" },
- { 14518, "Pihana Pacific, Inc." },
- { 14519, "Washington University" },
- { 14520, "Wolfram Research Inc." },
- { 14521, "H K Moore Limited" },
- { 14522, "GVI Medical Devices" },
- { 14523, "hermit.org" },
- { 14524, "Pharos Systems" },
- { 14525, "Trapeze Networks, Inc" },
- { 14526, "Safenet Informatica Ltda" },
- { 14527, "iWiring" },
- { 14528, "Newlands College" },
- { 14529, "FHPWireless" },
- { 14530, "Robert Baptista" },
- { 14531, "Blackwell Consulting Services" },
- { 14532, "The Asylum" },
- { 14533, "Apoteket AB" },
- { 14534, "SCHIFFKO GmbH" },
- { 14535, "Europoint Networking" },
- { 14536, "Inceritus" },
- { 14537, "TMP Consultoria de Informatica S/C Ltda" },
- { 14538, "Beijing SinceTimes Communication Co., Ltd." },
- { 14539, "realprogrammers.com" },
- { 14540, "Leszek Pisarek" },
- { 14541, "DeanO" },
- { 14542, "Verizon ESG" },
- { 14543, "N30D" },
- { 14544, "Shanghai Posts&Telecommunications Equipment CO., Ltd." },
- { 14545, "ICT, Academy of Science, CHINA" },
- { 14546, "NTO \"IRE-POLUS\"" },
- { 14547, "Neue Zurcher Zeitung" },
- { 14548, "Autovalley" },
- { 14549, "Awanim" },
- { 14550, "Metaware S.p.A" },
- { 14551, "GSI mbH" },
- { 14552, "Rison Craft" },
- { 14553, "DaimlerChrysler Corp." },
- { 14554, "VU MIF" },
- { 14555, "CMGCC" },
- { 14556, "Graven Software" },
- { 14557, "Infowave Software Inc." },
- { 14558, "SunGard BSR, Inc." },
- { 14559, "Mondru AB" },
- { 14560, "TSCNet, Inc." },
- { 14561, "Vocent Solutions" },
- { 14562, "e-Project Solutions Pte Ltd" },
- { 14563, "National Information and Communication Technology Australia" },
- { 14564, "elbers.com" },
- { 14565, "Z-Force, Inc." },
- { 14566, "BMF" },
- { 14567, "Coventry University Enterprises Ltd" },
- { 14568, "Weiser" },
- { 14569, "Heidelberger Druckmaschinen AG" },
- { 14570, "Majentis Technologies Inc." },
- { 14571, "Atomz Corporation" },
- { 14572, "EDIWISE" },
- { 14573, "Abest Research Corp." },
- { 14574, "Cellicium SA" },
- { 14575, "Attention Software, Inc." },
- { 14576, "Total Network" },
- { 14577, "ForestExpress, LLC" },
- { 14578, "Geac Library Solutions" },
- { 14579, "Q Linux Solutions, Inc." },
- { 14580, "The Manticore Group" },
- { 14581, "ManaSoft" },
- { 14582, "LUZ Engenharia Financeira" },
- { 14583, "TruTeq Wireless" },
- { 14584, "Celestix Networks" },
- { 14585, "Compass Internet" },
- { 14586, "Tmax soft" },
- { 14587, "Technological Centre \"Tushino\" CB RF" },
- { 14588, "Neosymmetria" },
- { 14589, "Sicap Ltd" },
- { 14590, "Passave Inc." },
- { 14591, "ncc network consulting GmbH" },
- { 14592, "iOrange - Internet Software and Service GmbH" },
- { 14593, "Dyode" },
- { 14594, "Rudolf Bahr" },
- { 14595, "BillReilly" },
- { 14596, "Martin Wismans GmbH" },
- { 14597, "DolphinSearch, Inc." },
- { 14598, "USDS" },
- { 14599, "Corman" },
- { 14600, "CryptAll Limited" },
- { 14601, "Baazee.com" },
- { 14602, "Interval Media" },
- { 14603, "Cyberport.de GmbH" },
- { 14604, "Commvault Systems" },
- { 14605, "Wesleyan University" },
- { 14606, "Hewlett-Ward Inc." },
- { 14607, "Futuro Technologies Inc" },
- { 14608, "Transfinity Corp" },
- { 14609, "Todito.com S.A. de C.V." },
- { 14610, "Solutions First" },
- { 14611, "Web-Alm GmbH" },
- { 14612, "Link\0303\0266ping University" },
- { 14613, "Ecora" },
- { 14614, "AvantCom Corporation" },
- { 14615, "Vivato Inc." },
- { 14616, "University of Arkansas at Little Rock" },
- { 14617, "Dise\0303\0261os Electronicos" },
- { 14618, "Mennen Medical" },
- { 14619, "Quadrox Inc." },
- { 14620, "Saint-Gobain" },
- { 14621, "Wendy's International" },
- { 14622, "VTLS Inc" },
- { 14623, "Riverstyx Internet" },
- { 14624, "vergerus" },
- { 14625, "Servecomm" },
- { 14626, "Reuters" },
- { 14627, "Idt Corp" },
- { 14628, "ResEl" },
- { 14629, "SourceTech AB" },
- { 14630, "Binary Systems Inc" },
- { 14631, "American Institute of Physics" },
- { 14632, "Via Internaathional" },
- { 14633, "Nuberry Ltd" },
- { 14634, "Itool Systems" },
- { 14635, "daviesco" },
- { 14636, "Ontain Corporation" },
- { 14637, "Solectron" },
- { 14638, "Concurrent Reality Pty Ltd" },
- { 14639, "HXTP" },
- { 14640, "Wurley Solutions" },
- { 14641, "Raymond James Financial" },
- { 14642, "104.com" },
- { 14643, "Future Beacon, Inc." },
- { 14644, "HiFlyCom Corp." },
- { 14645, "W-ibeda High Tech. Develop. Co. Ltd." },
- { 14646, "buptNKL" },
- { 14647, "Rossberry Consulting" },
- { 14648, "SurfNShop E-Commerce Inc." },
- { 14649, "holleyism.com" },
- { 14650, "Lead Up Software" },
- { 14651, "T-Systems International GmbH SL NWS" },
- { 14652, "University of St. Thomas" },
- { 14653, "Metaways Infosystems GmbH" },
- { 14654, "MUZO, a.s." },
- { 14655, "Gatespace" },
- { 14656, "4IT S.A." },
- { 14657, "Universita' degli Studi di Parma" },
- { 14658, "Dieter Kluenter System Beratung" },
- { 14659, "Vividlink Detlef Ingendorf" },
- { 14660, "Fachhochschule Wiesbaden" },
- { 14661, "KAV-EMB" },
- { 14662, "Bid-Owl Bildung im Dialog Ostwestfalen-Lippe" },
- { 14663, "IXIF Limited" },
- { 14664, "Init Systems" },
- { 14665, "Comlab Telecommunications inc" },
- { 14666, "McLeod Lake Indian Band" },
- { 14667, "NextiraOne LLC" },
- { 14668, "ViaSat, Inc., Acceleration Research and Technology (formerly 'Intelligent Compression Technologies')" },
- { 14669, "Systemhaus x-Team" },
- { 14670, "MTX Networks Inc." },
- { 14671, "GenFour Communications, LLC" },
- { 14672, "Datamaxx Applied Technologies Inc" },
- { 14673, "Prefeitura Municipal de Alegrete" },
- { 14674, "InfoQuality Consultoria em Inform\0303\0241tica" },
- { 14675, "Centell Kingdom Technologies Corporation Shanghai Branch" },
- { 14676, "Obsidian Systems" },
- { 14677, "geekhosting" },
- { 14678, "BFW Informationssysteme GmbH" },
- { 14679, "Hansard International Ltd" },
- { 14680, "Bright Grey" },
- { 14681, "Tixoronet Vertriebsgesellschaft mbH" },
- { 14682, "Asopos de Vliet" },
- { 14683, "Centell Kingdom Technologies Corporation Shanghai" },
- { 14684, "System Management Network" },
- { 14685, "DataPower Technology, Inc." },
- { 14686, "Megasoft Limited" },
- { 14687, "Halion Systems" },
- { 14688, "Systems Experience" },
- { 14689, "Urbancode Software Development, Inc." },
- { 14690, "Greymoose" },
- { 14691, "Fingerlos" },
- { 14692, "Integrators AG" },
- { 14693, "CISL Systems Ltd." },
- { 14694, "bmd wireless AG" },
- { 14695, "Herrmannsdoerfer Software Entwicklung" },
- { 14696, "Absolut OK" },
- { 14697, "RRDtool" },
- { 14698, "CSRI \"Elektropribor\"" },
- { 14699, "Hagen Software Inc." },
- { 14700, "frontiertech" },
- { 14701, "Persist Technologies" },
- { 14702, "Neusoft Digital Medical System CO., LTD." },
- { 14703, "MIYAKAWA ELECTRIC WORKS LTD." },
- { 14704, "PingoS e.V." },
- { 14705, "Province of British Columbia" },
- { 14706, "sFlow.org" },
- { 14707, "Tatara Systems, Inc." },
- { 14708, "Graceland University" },
- { 14709, "Reactivity, Inc." },
- { 14710, "Taua Biomatica" },
- { 14711, "Vaka Technology Limited" },
- { 14712, "Sascha Growe" },
- { 14713, "Blacksburg Electronic Village" },
- { 14714, "Questra Corporation" },
- { 14715, "ManyStreams Inc." },
- { 14716, "British Columbia Institute of Technology" },
- { 14717, "sunHosting company" },
- { 14718, "BKit Gruppen AB" },
- { 14719, "Harmony Gold Operations" },
- { 14720, "HD-info" },
- { 14721, "Techem AG" },
- { 14722, "Peter Shillan" },
- { 14723, "canal systems GmbH" },
- { 14724, "Business Objects" },
- { 14725, "SaM Solutions" },
- { 14726, "Server Side S.A" },
- { 14727, "Henrik Edlund" },
- { 14728, "Pronet sp. j." },
- { 14729, "Innerwall" },
- { 14730, "Telecom Italia Lab" },
- { 14731, "Christian Kuelker" },
- { 14732, "Nodots Development, Inc." },
- { 14733, "YASKAWA INFORMATION SYSTEMS Corporation" },
- { 14734, "FLOW Communications" },
- { 14735, "ESOO" },
- { 14736, "ghip systems GmbH" },
- { 14737, "Global Grid Forum" },
- { 14738, "Henderson & Co" },
- { 14739, "rleague.com" },
- { 14740, "TechAngle Inc." },
- { 14741, "Catalyst International, Inc." },
- { 14742, "Digital Multitools Inc." },
- { 14743, "Wachovia Bank" },
- { 14744, "TeleNova Research and Development Centre" },
- { 14745, "Pumpkin Networks" },
- { 14746, "Interstorm, Inc." },
- { 14747, "Vision Internet Services" },
- { 14748, "Computer Support Systems Pty. Ltd." },
- { 14749, "University of Rochester" },
- { 14750, "Aware Servers, Inc." },
- { 14751, "SkyWare Communications Limited" },
- { 14752, "Proware Technology Corp." },
- { 14753, "ppyworld" },
- { 14754, "Koch Mikrosysteme AG" },
- { 14755, "LYNX Technik AG" },
- { 14756, "ProgTec GmbH" },
- { 14757, "Groiss Informatics GmbH" },
- { 14758, "BPS Co. Ltd." },
- { 14759, "Adesium R\0303\0251seaux et Services" },
- { 14760, "Wincor Nixdorf International GmbH" },
- { 14761, "Ubisecure Solutions" },
- { 14762, "intarsys consulting GmbH" },
- { 14763, "Video-Net Systems" },
- { 14764, "MisrNet, S.A.E." },
- { 14765, "Grafix Profesional S.R.L." },
- { 14766, "AVICONSULT" },
- { 14767, "BWXT-PANTEX" },
- { 14768, "AGMarine, Inc." },
- { 14769, "Sybari Software, Inc." },
- { 14770, "Teleport Consulting and Systemmangement" },
- { 14771, "Computer Sciences Corporation" },
- { 14772, "Neptune Project" },
- { 14773, "Engitech Ltd." },
- { 14774, "GNU Internet" },
- { 14775, "Peak Internet" },
- { 14776, "Mystic Coders" },
- { 14777, "izenpe s.a." },
- { 14778, "GEV - Ecole des Mines" },
- { 14779, "e2 Technology Inc." },
- { 14780, "KAEVEE" },
- { 14781, "ThoughtPort Authority of Chicacgo" },
- { 14782, "Cole Innovations, Inc." },
- { 14783, "Asociacion para la Promocion del Arte a traves de Internet" },
- { 14784, "AltaTrust" },
- { 14785, "Five4321" },
- { 14786, "Open Network Solutions Ltd" },
- { 14787, "ZYM Linux" },
- { 14788, "William D. Petitt" },
- { 14789, "Principal Financial Group" },
- { 14790, "Statsbiblioteket" },
- { 14791, "Nakua Technologies" },
- { 14792, "Data Conseil" },
- { 14793, "System-Entwicklung Dietrich Schulten" },
- { 14794, "Banco Herrero" },
- { 14795, "Intellocity" },
- { 14796, "AUCOS elektronische Geraete GmbH" },
- { 14797, "DynaStar Communications" },
- { 14798, "NETdelivery Corporation" },
- { 14799, "StarNET Services" },
- { 14800, "Legra Systems" },
- { 14801, "tangro software components gmbh" },
- { 14802, "Inder.Net" },
- { 14803, "Schubert Informationssysteme" },
- { 14804, "Innotrac Diagnostics Oy" },
- { 14805, "AFP7" },
- { 14806, "Tadiran Electronic Systems" },
- { 14807, "FrIc-Net" },
- { 14808, "The Sage Colleges" },
- { 14809, "Datasul MED S.A." },
- { 14810, "Advanced Digital Broadcast Ltd." },
- { 14811, "Xilith LLC" },
- { 14812, "Cedars-Sinai Health Systems" },
- { 14813, "Fujitsu Transaction Solutions Inc." },
- { 14814, "CaroTechnology BV" },
- { 14815, "Datasul S.A." },
- { 14816, "Thomas Polnik" },
- { 14817, "4RF Communications Ltd." },
- { 14818, "Voice Mobility, Inc." },
- { 14819, "University of Cyprus" },
- { 14820, "net outremer caledonie" },
- { 14821, "Stibo" },
- { 14822, "FaJo.de" },
- { 14823, "Aruba Networks Inc" },
- { 14824, "Centaur Technology Inc" },
- { 14825, "Aldata Solutions S.A." },
- { 14826, "Adage Networks" },
- { 14827, sminmpec_unknown }, /* (Added by Wireshark) */
- { 14828, "Sonorys Technology GmbH" },
- { 14829, "Centra Software" },
- { 14830, "UPtime Systeml\0303\0266sungen" },
- { 14831, "voetter.at" },
- { 14832, "ESO Consortium" },
- { 14833, "Portal Solutions Technology, Inc." },
- { 14834, "Konsec GmbH (formerly 'mediales GmbH')" },
- { 14835, "INFOTEC" },
- { 14836, "VARTA Microbattery GmbH" },
- { 14837, "Trenchant Consulting, LLC" },
- { 14838, "National Management & Organization SA" },
- { 14839, "Newtech-BT Ltd" },
- { 14840, "Smartwave SA" },
- { 14841, "LEA (Laboratoire Europeen ADSL)" },
- { 14842, "LANergy" },
- { 14843, "Satnet SARL" },
- { 14844, "Upfront Systems" },
- { 14845, "Engineering Ingegneria Informatica S.p.A." },
- { 14846, "Padtec Optical Components and Systems" },
- { 14847, "Order of Preachers" },
- { 14848, "better networks" },
- { 14849, "Corporate Computer Services, Inc." },
- { 14850, "Arc Solutions Limited" },
- { 14851, sminmpec_unknown }, /* (Added by Wireshark) */
- { 14852, "Kinpo Electronics, Inc." },
- { 14853, "CipherQuest Ltd." },
- { 14854, "Beijing Hisense Digi_Tech Co.,Ltd." },
- { 14855, "CERAMISTA Recom Serviex" },
- { 14856, "Trinitel Corporation" },
- { 14857, "XCAT Co.,Ltd." },
- { 14858, "Azundris Consulting" },
- { 14859, "Lawo AG" },
- { 14860, "GWS mbH" },
- { 14861, "Britannia Building Society" },
- { 14862, "Ministerio de Administraciones P\0303\0272blicas" },
- { 14863, "ATMAVA Ltd" },
- { 14864, "TNCE" },
- { 14865, "Interplex Telecom" },
- { 14866, "Cottonwood Technology Group, Inc." },
- { 14867, "Halcyon Software Limited" },
- { 14868, "MAV INFORMATIKA Ltd." },
- { 14869, "Saudi Telecom" },
- { 14870, "AVAYA" },
- { 14871, "Inter-Land.Net" },
- { 14872, "AVK-AdherSIS Inc." },
- { 14873, "Broadband services" },
- { 14874, "Rockstorm Technology AB" },
- { 14875, "Leadglobe" },
- { 14876, "Open Text Corporation" },
- { 14877, "Plexus Technology Ltd." },
- { 14878, "vcrDev" },
- { 14879, "woko" },
- { 14880, "Systemhaus Kalkhoff" },
- { 14881, "QunaTech" },
- { 14882, "smartBridges" },
- { 14883, "antek networks INC." },
- { 14884, "Exelmon Technologies" },
- { 14885, "JSC RPE \"Polygon\"" },
- { 14886, "AIR Co., Ltd." },
- { 14887, "Nomura Research Institute, Ltd." },
- { 14888, "Das Werk" },
- { 14889, "openforum.us" },
- { 14890, "Team-Konzept Informationstechnologien GmbH & Co KG" },
- { 14891, "Lawseal" },
- { 14892, "Netsynt S.p.A." },
- { 14893, "NOXA" },
- { 14894, "Teatica" },
- { 14895, "Propel Software Corporation" },
- { 14896, "Attingo" },
- { 14897, "York Consulting" },
- { 14898, "Access Communications" },
- { 14899, "Town of Suffield" },
- { 14900, "Integrated Concepts International" },
- { 14901, "Vodafone Libertel NV" },
- { 14902, "DATAmark" },
- { 14903, "Digirose Technology Co., Ltd." },
- { 14904, "TwTec" },
- { 14905, "DEVAU Lemppenau GmbH" },
- { 14906, "NVISION, INC." },
- { 14907, "NOC-CCE-USP" },
- { 14908, "Upcast Inc" },
- { 14909, "Igenda Software" },
- { 14910, "IP Solutions, Inc." },
- { 14911, "RFP Depot, LLC." },
- { 14912, "Smiths Aerospace" },
- { 14913, "Retriever Communications" },
- { 14914, "Vexus Consulting Group" },
- { 14915, "ASPire Technologies(Shenzhen) Ltd" },
- { 14916, "Utah Interactive, Inc." },
- { 14917, "SimpleTech" },
- { 14918, "Algar Telecom Leste" },
- { 14919, "Singlestep Technologies" },
- { 14920, "Mineco" },
- { 14921, "CTW Computer" },
- { 14922, "Realnode Ltd" },
- { 14923, "Abilene Christian University" },
- { 14924, "The NewSof Group, Inc." },
- { 14925, "Wavecentral, L.L.C." },
- { 14926, "atraia.com" },
- { 14927, "DISC, Universidad Cat\0303\0263lica del Norte" },
- { 14928, "Unipulse" },
- { 14929, "Onscom Co., Ltd." },
- { 14930, "Solar Telecom. Technology Inc." },
- { 14931, "Victoria University of Technology" },
- { 14932, "GuangZhou TopTeam Software Technology Co., Ltd." },
- { 14933, "Chung Yuan Christian University" },
- { 14934, "Vodafone IT (Turkey)" },
- { 14935, "FS Walker Hughes Limited" },
- { 14936, "Eurotux Inform\0303\0241tica, SA" },
- { 14937, "Itech" },
- { 14938, "Exacom, Inc." },
- { 14939, "StyleeB LLC" },
- { 14940, "BlueCross and BlueShield of North Carolina" },
- { 14941, "Inflection Systems" },
- { 14942, "Avvio Networks" },
- { 14943, "INNOVATION Data Processing" },
- { 14944, "Primal Technologies" },
- { 14945, "JBX Designs Inc" },
- { 14946, "Gothenburg University" },
- { 14947, "Kyrgyz-Russian Slavic University" },
- { 14948, "Hungarian Foreign Trade Bank" },
- { 14949, "North Building Technologies Ltd." },
- { 14950, "Servicios Digitales de Certificacion, S.L." },
- { 14951, "EFACEC SISTEMAS DE ELECTR\0303\0223NICA, S.A." },
- { 14952, "Eyeheight Ltd." },
- { 14953, "Serio Ltd" },
- { 14954, "Cingular Wireless" },
- { 14955, "CANAM" },
- { 14956, "NetGate SL" },
- { 14957, "Nissan North America" },
- { 14958, "PSC technology GmbH" },
- { 14959, "CBR Yaz\0303\0275l\0303\0275m dan\0303\0275\0303\0276manl\0303\0275k A.\0303\0236" },
- { 14960, "Undernet" },
- { 14961, "Millennium Technology Limited" },
- { 14962, "Ingosstrakh Ltd." },
- { 14963, "Telemetry & Communications Systems, Inc." },
- { 14964, "Cogenit" },
- { 14965, "Wideinfo Corporation" },
- { 14966, "Linos Photonics GmbH & Co KG" },
- { 14967, "horsfall.org" },
- { 14968, "WYNIWYG" },
- { 14969, "Columbia Ultimate" },
- { 14970, "CAM Internet" },
- { 14971, "dlh services" },
- { 14972, "Jeb" },
- { 14973, "Deeming.net" },
- { 14974, "Data Telecom O\0303\0234" },
- { 14975, "BRy Tecnologia S.A." },
- { 14976, "softmillennium" },
- { 14977, "Wuerth Elektronik" },
- { 14978, "Commerzbank AG" },
- { 14979, "Core Tec Communications, LLC" },
- { 14980, "Guidant Corporation" },
- { 14981, "Cogent Logic Corporation" },
- { 14982, "iKu Systemhaus AG" },
- { 14983, "Woaf Tech Ltd" },
- { 14984, "PoCo" },
- { 14985, "Hsi Hu Serion High School" },
- { 14986, "Nextreaming Corporation" },
- { 14987, "E3Networks,LTD" },
- { 14988, "MikroTik" },
- { 14989, "Cinesite Europe Ltd" },
- { 14990, "inm magic" },
- { 14991, "RESA Airport Data Systems" },
- { 14992, "Stagira" },
- { 14993, "IGD" },
- { 14994, "MITEQ, Inc." },
- { 14995, "Netinary" },
- { 14996, "Stille Design" },
- { 14997, "SOHOware, Inc." },
- { 14998, "Transportation Security Administration" },
- { 14999, "Codesic" },
- { 15000, "Kontron Canada Inc" },
- { 15001, "Seward Designs, Inc." },
- { 15002, "Intentional Software Corporation" },
- { 15003, "IPonWEB Ltd" },
- { 15004, "RuggedCom Inc." },
- { 15005, "Fiba Software srl" },
- { 15006, "P.W.P.T. Wasko sp. z o.o." },
- { 15007, "Metro Ethernet Forum" },
- { 15008, "Tilaria Inc." },
- { 15009, "Gplicity" },
- { 15010, "LogiTEL Ltd" },
- { 15011, "Revivio Incorporated" },
- { 15012, "Bernard Madoff Investment Securities" },
- { 15013, "Quantec, LLC" },
- { 15014, "8004 Limited" },
- { 15015, "Integrated Modular Systems, Inc." },
- { 15016, "Nettiportti OY" },
- { 15017, "Johns Hopkins Singapore" },
- { 15018, "DayDay Software LTD." },
- { 15019, "Bazy i Systemy Bankowe Sp. z o.o." },
- { 15020, "Productos Profesionales de Telecomunicacion" },
- { 15021, "mobidot" },
- { 15022, "Golden Gate University" },
- { 15023, "tremium" },
- { 15024, "Tougas.NET" },
- { 15025, "Studentersamfundet i Trondhjem" },
- { 15026, "centre hospitalier de roanne" },
- { 15027, "SecCommerce Technologies AG" },
- { 15028, "James Collings" },
- { 15029, "Jareva Technologies, Inc" },
- { 15030, "Guangzhou RCOM Communication Co., Ltd" },
- { 15031, "University of Melbourne, Computer Science/Grid Computing" },
- { 15032, "INQGEN Technology Co., Ltd." },
- { 15033, "Realtime Embedded AB" },
- { 15034, "KSolutions S.p.A." },
- { 15035, "Partner Voxtream" },
- { 15036, "Logical" },
- { 15037, "Shands Healthcare and Teaching Clinics, Inc." },
- { 15038, "Charles Stark Draper Laboratory, Inc" },
- { 15039, "Armedia" },
- { 15040, "Global Aeon Pty.Ltd." },
- { 15041, "Poznan University of Technology" },
- { 15042, "vsecure" },
- { 15043, "Jeng-Ye Tech. Enterprise Co.,LTD." },
- { 15044, "Transatel" },
- { 15045, "MoneyAM Ltd" },
- { 15046, "ClickFox, LLC" },
- { 15047, "Java Software Foundry" },
- { 15048, "Startek Engineering, Inc." },
- { 15049, "Seattle Central Community College" },
- { 15050, "Waycom International" },
- { 15051, "Finkle Enterprises" },
- { 15052, "Gemini Technologies Inc." },
- { 15053, "MeriTek Systems, Inc." },
- { 15054, "PASS-K" },
- { 15055, "Ikegami Tsushinki Co., Ltd." },
- { 15056, "anthonyhan.org" },
- { 15057, "MORAVIAPRESS a.s." },
- { 15058, "CEISEC" },
- { 15059, "Baptiste Malguy" },
- { 15060, "Zentic" },
- { 15061, "ServuS A.S" },
- { 15062, "Million Corporation" },
- { 15063, "eko systems inc" },
- { 15064, "MANY sa" },
- { 15065, "Mantas, Inc." },
- { 15066, "James Richardson Enterprises" },
- { 15067, "SMTMS" },
- { 15068, "Beijing CAPE Computer Software Engineering Corp." },
- { 15069, "Elasto Centro" },
- { 15070, "YESComm" },
- { 15071, "Frontier Solution Co., Ltd." },
- { 15072, "HSB Bank AB" },
- { 15073, "Synad Technologies Ltd." },
- { 15074, "Thus Plc." },
- { 15075, "Icom" },
- { 15076, "Fresenius AG" },
- { 15077, "Thermeon Corporation" },
- { 15078, "Sysnet Telematica srl" },
- { 15079, "Remark! Internet Limited" },
- { 15080, "XAIDAT" },
- { 15081, "Screwage, Inc." },
- { 15082, "Carey International, Inc." },
- { 15083, "RentPayment.com" },
- { 15084, "Mobile Radius USA, Inc." },
- { 15085, "AFPA DSIS" },
- { 15086, "Omega-Trin Ltd." },
- { 15087, "projekt13" },
- { 15088, "AdvizeX Technologies LLC" },
- { 15089, "Scientific Systems Company, Inc." },
- { 15090, "teamix GmbH" },
- { 15091, "Boyd Consulting Services, LLC" },
- { 15092, "Perfcap Corpoation" },
- { 15093, "Novartis International AG" },
- { 15094, "Linetec Gmbh" },
- { 15095, "TDC Services A/S" },
- { 15096, "Ag\0303\0250ncia Catalana de Certificaci\0303\0263" },
- { 15097, "SevenSpace" },
- { 15098, "Smithsonian Institution" },
- { 15099, "Loma Linda University" },
- { 15100, "Grupo de Arquitectura y Concurrencia (GAC)" },
- { 15101, "Volt Delta Resources Inc." },
- { 15102, "US LEC" },
- { 15103, "EIVD" },
- { 15104, "ModLink Networks" },
- { 15105, "503 Integrated Systems" },
- { 15106, "Wificom Technologies Ltd" },
- { 15107, "Siraya Inc." },
- { 15108, "Macao Post eSignTrust Certification Authority" },
- { 15109, "Psytechnics" },
- { 15110, "Savantis Systems, Inc." },
- { 15111, "Dennis Eriksson" },
- { 15112, "Whack Productions" },
- { 15113, "MagTek" },
- { 15114, "Stabilizer AB" },
- { 15115, "Obvius LLc" },
- { 15116, "Liberty IT Solutions" },
- { 15117, "Protection One Inc." },
- { 15118, "Westar Energy" },
- { 15119, "Fidelity National Information Solutions" },
- { 15120, "CRCnet Wireless Network" },
- { 15121, "Mentata Systems" },
- { 15122, "Interface Web Hosting" },
- { 15123, "Fachhochschule Oldenburg/Ostfriesland/Wilhelmshaven" },
- { 15124, "Rodan Systems S.A." },
- { 15125, "Vectura" },
- { 15126, sminmpec_unknown }, /* (Added by Wireshark) */
- { 15127, "CUNY/CIS" },
- { 15128, "Vergata EDV-Beratung" },
- { 15129, "E-CARD Ltd." },
- { 15130, "Gens Software Ltd." },
- { 15131, "EDGEACCESS" },
- { 15132, "Six Continents Hotels" },
- { 15133, "Illinois Institute of Technology" },
- { 15134, "Christian Boesch" },
- { 15135, "omatis" },
- { 15136, "Sukumar Patel" },
- { 15137, "ENOVIA" },
- { 15138, "Sim Freaks" },
- { 15139, "LandTime, Inc" },
- { 15140, "YoYoWeb" },
- { 15141, "Infotropic AB" },
- { 15142, "comunicando societ\0303\0240 per azioni" },
- { 15143, "Synergy Business Solutions, Inc." },
- { 15144, "Binary Wave Technologies Inc." },
- { 15145, "iReasoning Networks" },
- { 15146, "M444 Systems, Inc." },
- { 15147, "Hrvatske Autoceste d.o.o (HAC)" },
- { 15148, "Witteveen+Bos" },
- { 15149, "xantury.com" },
- { 15150, "EXOSEC" },
- { 15151, "Spyderworks Ltd" },
- { 15152, "Scholl Engineering" },
- { 15153, "DMSfactory GmbH" },
- { 15154, "ActiVia Networks" },
- { 15155, "IPSQUARE Inc." },
- { 15156, "Accusys" },
- { 15157, "dL_s" },
- { 15158, "SCA" },
- { 15159, "ultraDyne" },
- { 15160, "Interactive Northwest, Inc." },
- { 15161, "Idealab" },
- { 15162, "Movilok Interactividad Movil S.L." },
- { 15163, "NetKingCall Co., LTD." },
- { 15164, "Open Point Networks" },
- { 15165, "NT-SYSTEMS" },
- { 15166, "Brian Bunnell" },
- { 15167, "Chapcom" },
- { 15168, "Vossloh Information Technologies Karlsfeld GmbH" },
- { 15169, "IIZUKA Software Technologies" },
- { 15170, "Crinis Networks" },
- { 15171, "Landmark Graphics Corporation" },
- { 15172, "Supcik.net" },
- { 15173, "Hammerhead Systems" },
- { 15174, "Safescrypt Limited" },
- { 15175, "Lonny Software" },
- { 15176, "Advanced Info Service PLC." },
- { 15177, "ADMtek Incorporated" },
- { 15178, "Axtion Systems Corporation" },
- { 15179, "Seance Software Inc." },
- { 15180, "City of Bloomington, IN" },
- { 15181, "IneoQuest Technologies Inc." },
- { 15182, "ads-tec GmbH" },
- { 15183, "objectlab, llc" },
- { 15184, "ITXC" },
- { 15185, "Phantasia Broadcast Ltd." },
- { 15186, "SolumSTAR" },
- { 15187, "NYS Department of Civil Service" },
- { 15188, "Gemfor s.r.o." },
- { 15189, "objectlab, llc" },
- { 15190, "incNETWORKS, Inc." },
- { 15191, "Voice Print International, Inc." },
- { 15192, "Evergreen Assurance, Inc." },
- { 15193, "Tacit Networks" },
- { 15194, "Alan Flett" },
- { 15195, "privat" },
- { 15196, "Liqwid Networks" },
- { 15197, "HOW CO.,LTD" },
- { 15198, "FNET Co., Ltd" },
- { 15199, "Infologic Nederland B.V." },
- { 15200, "Flexibix Inc." },
- { 15201, "UpSync Software India Private ltd." },
- { 15202, "Oe-Consult Software GmbH" },
- { 15203, "TDC Mobile A/S" },
- { 15204, "Mobilethink A/S" },
- { 15205, "Nordsan Technology Co., Ltd." },
- { 15206, "Visualpix SA" },
- { 15207, "Modul 1" },
- { 15208, "Ombre et Pixel" },
- { 15209, "Precision Therapy International" },
- { 15210, "Shinkuro Inc." },
- { 15211, "North Country Internet Access" },
- { 15212, "ITAU" },
- { 15213, "ITAUSA" },
- { 15214, "Global Network Operations Ltd." },
- { 15215, "Agilejava.com" },
- { 15216, "White Rabbit" },
- { 15217, "AltaVista" },
- { 15218, "KSC Commercial Internet Co.,Ltd." },
- { 15219, "SEVOI Co. Ltd" },
- { 15220, "n.v. QWENTES s.a." },
- { 15221, "Lorus Inc." },
- { 15222, "Rastar Digital Marketing" },
- { 15223, "Andago" },
- { 15224, "OZTECH" },
- { 15225, "NightStar Corporation" },
- { 15226, "Etronics" },
- { 15227, "Venus Info Tech Inc." },
- { 15228, "Damm Cellular Systems A/S" },
- { 15229, "T-Systems Schweiz AG" },
- { 15230, "SecurIT BV" },
- { 15231, "schulz engineering" },
- { 15232, "COM.BOX Fotofinder GmbH" },
- { 15233, "Regenative Inc." },
- { 15234, "SoftSwitching Technologies" },
- { 15235, "Xpoint Technologies, Inc." },
- { 15236, "R & K Global Business Services, Inc." },
- { 15237, "Intellinger Software Corporation" },
- { 15238, "Collins Enterprises LLC." },
- { 15239, "Applico Security, Inc." },
- { 15240, "AHB Internet Solutions" },
- { 15241, "nimel" },
- { 15242, "ToolCASE LLC" },
- { 15243, "gav-lv" },
- { 15244, "Essential Systems, Inc." },
- { 15245, "INFNIS" },
- { 15246, "EDV Beratung & Netzwerktechnik Dipl.-Ing. Matthias Kahle" },
- { 15247, "Rocksoft Limited" },
- { 15248, "Quantel Ltd" },
- { 15249, "x-cellent technologies GmbH" },
- { 15250, "Morse Group Ltd" },
- { 15251, "Deutsche Telekom T-Com" },
- { 15252, "SB&C, Ltd." },
- { 15253, "Ceyba" },
- { 15254, "Kaseya Sweden AB (formerly 'Intellipool AB')" },
- { 15255, "Reliable Controls Corporation" },
- { 15256, "United Nations" },
- { 15257, "City Computing Limited" },
- { 15258, "Exers Technologies, Inc." },
- { 15259, "Saarl\0303\0244ndischer Rundfunk" },
- { 15260, "Universit\0303\0251 Cahtolique de l'Ouest" },
- { 15261, "UniCon Software GmbH" },
- { 15262, "Data Display Limited." },
- { 15263, "DLRG Landesverband Rheinland-Pfalz" },
- { 15264, "Anonymizer Inc." },
- { 15265, "Telelogic AB" },
- { 15266, "Omnibus Systems Ltd" },
- { 15267, "Damage Prevention Systems" },
- { 15268, "Oy NetItBe Ltd" },
- { 15269, "Craniac Entertainment" },
- { 15270, "Printcafe Software, Inc." },
- { 15271, "Oberfinanzdirektion Koblenz" },
- { 15272, "MaaTec" },
- { 15273, "The Paloma Group, Inc." },
- { 15274, "Paul Scherrer Institut" },
- { 15275, "AAE Systems" },
- { 15276, "BearASP" },
- { 15277, "SoftTree Technologies, Inc." },
- { 15278, "Oblicore Inc." },
- { 15279, "WFI" },
- { 15280, "Relapixity, LLC" },
- { 15281, "ZeOmega Infotect" },
- { 15282, "GCom" },
- { 15283, "Mikroliitti Oy" },
- { 15284, "POSTA SLOVENIJE" },
- { 15285, "iSolv Technologies cc" },
- { 15286, "ADPM" },
- { 15287, "Joachim Bauch (formerly 'FOB Team')" },
- { 15288, "REGISTER.IT S.p.a." },
- { 15289, "Advanced Broadband Communications Center (CCABA-UPC)" },
- { 15290, "Ordway Center for the Performing Arts" },
- { 15291, "Mach Technology, Inc." },
- { 15292, "American City Business Journals" },
- { 15293, "Coderanger inc." },
- { 15294, "EP Imaging Concepts, Inc." },
- { 15295, "Metrima" },
- { 15296, "Plum Financial Service Pty Ltd" },
- { 15297, "Sonera Solutions Oy" },
- { 15298, "Volkswagen Bank GmbH" },
- { 15299, "Elcoteq Network Corporation" },
- { 15300, "Wireless Independent Provider AB" },
- { 15301, "KFKI RMKI SzHK" },
- { 15302, "GalaxE.Solutions, Inc" },
- { 15303, "accelerate IT services" },
- { 15304, "TakeIT" },
- { 15305, "MBUF" },
- { 15306, "Mount Royal College" },
- { 15307, "Esphion Ltd" },
- { 15308, "Peace Software" },
- { 15309, "e-Dynasty Limited" },
- { 15310, "Exodus Communicaitons" },
- { 15311, "misTrust Certification Authority" },
- { 15312, "Jozef Stefan Institute" },
- { 15313, "REDLINK Mediendienste GmbH" },
- { 15314, "IT+ A/S" },
- { 15315, "Internet Business News" },
- { 15316, "Hub Hill Software" },
- { 15317, "Wells Fargo" },
- { 15318, "Edu4 France S.A." },
- { 15319, "SkyPilot Network, Inc." },
- { 15320, "Custom7" },
- { 15321, "Transcor, Inc" },
- { 15322, "Echopass Corporation" },
- { 15323, "INP-net" },
- { 15324, "Walter E. Helmke Library" },
- { 15325, "STVA" },
- { 15326, "Mobicus Oy" },
- { 15327, "Halden Dataservice AS" },
- { 15328, "Svanberg Consulting" },
- { 15329, "Dalian University of Technology" },
- { 15330, "KLEEGROUP" },
- { 15331, "Indagon Oy" },
- { 15332, "Logica UK Ltd" },
- { 15333, "Global Communication Technologies,Inc." },
- { 15334, "MWVCAA" },
- { 15335, "ITXC" },
- { 15336, "Telemet America, Inc" },
- { 15337, "Photronics, Inc." },
- { 15338, "PalmSource, Inc" },
- { 15339, "ilse media groep b.v." },
- { 15340, "George Furniture" },
- { 15341, "Wuhan Yangtze Communications Industry Group Co.,Ltd.,China." },
- { 15342, "Vitalect Technologies India Pvt. Ltd." },
- { 15343, "FUNDACION INASMET" },
- { 15344, "Yomi PLC." },
- { 15345, "Dansk R\0303\0270de Kors" },
- { 15346, "Viking Systems" },
- { 15347, "IGH Ingenieurgesellschaft H\0303\0266pfner mbH" },
- { 15348, "Precision Interop, LLC" },
- { 15349, "Andreas Bartsch IT Solutions" },
- { 15350, "Jatosoft LLC" },
- { 15351, "ForeverLiving.com" },
- { 15352, "University of Arkansas at Fort Smith" },
- { 15353, "Integrated Digital Solutions Inc." },
- { 15354, "Number 1 Customer, LLC" },
- { 15355, "Integan" },
- { 15356, "BartNET" },
- { 15357, "Diversified Systems Resources, LTD" },
- { 15358, "Cygnetron, Inc." },
- { 15359, "Multidas Technologies, Inc." },
- { 15360, "CENTRE DE SANTE MENTALE" },
- { 15361, "RPA Research Co., Ltd." },
- { 15362, "Digital on net Co., Ltd." },
- { 15363, "Hotel Interski ****" },
- { 15364, "Sibsnet Technologies" },
- { 15365, "INFOSTEP" },
- { 15366, "Dunhuang Academy" },
- { 15367, "ZlanTec" },
- { 15368, "UnixAG Siegen" },
- { 15369, "Cititech Australia" },
- { 15370, "GIGA-BYTE TECHNOLOGY CO., LTD" },
- { 15371, "Horry Telephone Cooperative" },
- { 15372, "Max-Planck-Institute for evolutionary Anthropology" },
- { 15373, "NASK" },
- { 15374, "Enfo Oy" },
- { 15375, "HSB Systemhaus GmbH" },
- { 15376, "De Nayer" },
- { 15377, "ChiliMoon Foundation" },
- { 15378, "CSI Piemonte" },
- { 15379, "Allocity" },
- { 15380, "AlterPoint, Inc." },
- { 15381, "Wilkes University" },
- { 15382, "Bit Hosting" },
- { 15383, "BlueJavelin, Inc." },
- { 15384, "NCARP.COM" },
- { 15385, "Genasys II Spain" },
- { 15386, "Ibis Tecnologia e Informacao" },
- { 15387, "Industri Telekomunikasi Indonesia (INTI)" },
- { 15388, "MagiNet Company, Ltd." },
- { 15389, "Bestway Telecom" },
- { 15390, "Silu co." },
- { 15391, "iei" },
- { 15392, "OLVIKO" },
- { 15393, "AvestaPolarit AB" },
- { 15394, "P.T Sigma Cipta Caraka" },
- { 15395, "CrossML" },
- { 15396, "Alfa & Ariss b.v." },
- { 15397, "Netintact AB" },
- { 15398, "IC3S AG" },
- { 15399, "Universite de Poitiers" },
- { 15400, "Post Consult International" },
- { 15401, "EUnet EDV und Internet Dienstleistungs AG" },
- { 15402, "Proximity Corp" },
- { 15403, "T-Systems CDS GmbH" },
- { 15404, "PenTeleData Inc" },
- { 15405, "Comunicaciones NetPeople C.A." },
- { 15406, "Axiom Integration, Inc." },
- { 15407, "Ambicom, Inc." },
- { 15408, "TrueContext Inc." },
- { 15409, "Customized Database Systems" },
- { 15410, "Seaway Networks" },
- { 15411, "Lasipalatsin Mediakeskus Oy" },
- { 15412, "Cotagesoft Inc." },
- { 15413, "Oden Oden Wireless Networks Technology (Shanghai) Ltd" },
- { 15414, "BillHusler.com" },
- { 15415, "Openet Information Technology (Shenzhen) Co.,Ltd" },
- { 15416, "Saft Power Systems" },
- { 15417, "IMA - Informatica de Municipios Associados" },
- { 15418, "Forum Systems Inc." },
- { 15419, "Forest Siding Supply" },
- { 15420, "Lightsurf Technologies" },
- { 15421, "Chiemgau Gymnasium Traunstein" },
- { 15422, "ARTIFintelligence, LLC" },
- { 15423, "NetSpace - Solu\0303\0247\0303\0265es Inform\0303\0241ticas" },
- { 15424, "Storeimage Programs Inc." },
- { 15425, "ImageStream Internet Solutions" },
- { 15426, "Korea Internet Data Center" },
- { 15427, "Hwa-jin Seo" },
- { 15428, "Cybertec Pty Ltd" },
- { 15429, "Future Computing Solutions India Pvt. Ltd." },
- { 15430, "JIN Information Systems" },
- { 15431, "Xion IT Systems AG" },
- { 15432, "Cybcon Industries" },
- { 15433, "Landespolizei Mecklenburg- Vorpommern" },
- { 15434, "Chebucto Community Net" },
- { 15435, "worldnet21" },
- { 15436, "OsiTools" },
- { 15437, "SSO" },
- { 15438, "RTL Television" },
- { 15439, "PASS Technologie" },
- { 15440, "ZPH Litex" },
- { 15441, "Karell" },
- { 15442, "Orchestel Systems" },
- { 15443, "JP Sync" },
- { 15444, "Saffron Solutions, Inc" },
- { 15445, "SBS" },
- { 15446, "CyberPower Systems, Inc." },
- { 15447, "SEM Ltd" },
- { 15448, "DAMOVO Ceska Republika" },
- { 15449, "Foursys, Inc." },
- { 15450, "Innominate Security Technologies AG" },
- { 15451, "Realitatea TV" },
- { 15452, "Geovariances" },
- { 15453, "ABZ Nederland" },
- { 15454, "Arbor AudioCommunications" },
- { 15455, "Unassigned" },
- { 15456, "La cocina" },
- { 15457, "Ackernet" },
- { 15458, "Mark McKenzie" },
- { 15459, "M-Systems" },
- { 15460, "Orchestel Systems" },
- { 15461, "Corybant" },
- { 15462, "Rupprecht & Patashnick Co., Inc." },
- { 15463, "Huron Superior Catholic District School Board" },
- { 15464, "Muskoka.com" },
- { 15465, "University of Toronto" },
- { 15466, "Peacefulhaven" },
- { 15467, "Digibel" },
- { 15468, "Siege.org" },
- { 15469, "Internet Connection" },
- { 15470, "Digital System Resources" },
- { 15471, "Nucleo de Pesquisa em Redes e Sistemas Abertos" },
- { 15472, "SOA Software, Inc." },
- { 15473, "Spring Worth Inc." },
- { 15474, "Lighthouse Software Group" },
- { 15475, "Zhongguang Telecommunications" },
- { 15476, "Fareastone telecommunication Corp." },
- { 15477, "Bank for foreign trade" },
- { 15478, "H\0303\0266ft & Wessel AG" },
- { 15479, "dudley.org" },
- { 15480, "Trillion Digital Communications" },
- { 15481, "Capital Channel Information Co. Ltd." },
- { 15482, "Tian En" },
- { 15483, "O.C.A. S.A." },
- { 15484, "Lux Technologies" },
- { 15485, "University of Otago" },
- { 15486, "keyon" },
- { 15487, "Daisy Technologies Inc." },
- { 15488, "Pure Matrix, Inc." },
- { 15489, "Home SE AB" },
- { 15490, "Prasanna Technologies" },
- { 15491, "Protegrity Inc." },
- { 15492, "Sichuan Changhong Electric Group Co,Ltd." },
- { 15493, "Goll Enterprises" },
- { 15494, "Helium LLC" },
- { 15495, "eHouse" },
- { 15496, "LaScoala" },
- { 15497, "IronPort Systems, Inc." },
- { 15498, "TESI S.p.A" },
- { 15499, "The King's University College" },
- { 15500, "eWings Technologies, Inc." },
- { 15501, "M&C Laboratory Inc." },
- { 15502, "Animezone" },
- { 15503, "University of Berne" },
- { 15504, "Minist\0303\0250re de l'\0303\0251quipement, des transports, du logement, du tourisme et de la mer" },
- { 15505, "Echoworx Corporation" },
- { 15506, "Akiratech Limited" },
- { 15507, "TierOne OSS Technologies, Inc." },
- { 15508, "PacketIQ Corp." },
- { 15509, "direto.org.br" },
- { 15510, "Rhetorical Systems, Ltd." },
- { 15511, "Groupe ERMEWA S.A." },
- { 15512, "COMAX INC." },
- { 15513, "Gendac" },
- { 15514, "Financijska agencija" },
- { 15515, "DGET" },
- { 15516, "SoftWorks Australia Pty Ltd" },
- { 15517, "Entri ltd" },
- { 15518, "Vocalocity, Inc." },
- { 15519, "Results Computing Corporation" },
- { 15520, "actiSwitch, Inc." },
- { 15521, "signalkontor GmbH" },
- { 15522, "Whitman College" },
- { 15523, "Equine.com" },
- { 15524, "Access Point Inc" },
- { 15525, "Braum's Ice Cream" },
- { 15526, "Mixmobile" },
- { 15527, "ANIENIB" },
- { 15528, "Naviair" },
- { 15529, "Universidad del Valle" },
- { 15530, "Integrated Technology S.C." },
- { 15531, "VPNChina Tech-Development Corp." },
- { 15532, "hollomey consultants gmbh" },
- { 15533, "Mobile Tornado" },
- { 15534, "Linup Front GmbH" },
- { 15535, "Vereniging Milieudefensie" },
- { 15536, "PTM.com" },
- { 15537, "EMK Design" },
- { 15538, "ASIGRA Inc." },
- { 15539, "Media 4 Sp. z o.o." },
- { 15540, "AM Corporation" },
- { 15541, "RH Ministarstvo gospodarstva" },
- { 15542, "EMK Design" },
- { 15543, "Illinois Power Company" },
- { 15544, "American Mensa, Ltd." },
- { 15545, "Probix" },
- { 15546, "eleven.am" },
- { 15547, "Onaras AG" },
- { 15548, "Pillar Data Systems" },
- { 15549, "XCache Technologies, Inc." },
- { 15550, "La Sierra University" },
- { 15551, "Object Engineering GmbH" },
- { 15552, "Statmon Technologies Corp." },
- { 15553, "SnarlSNMP Dynamic Web Application Monitor Developers Group" },
- { 15554, "Democratic National Committee" },
- { 15555, "Gold Coast City Council" },
- { 15556, "Chuq Yang" },
- { 15557, "Inflection Technologies" },
- { 15558, "Institute of Chemical Process Fundamentals" },
- { 15559, "Orionet" },
- { 15560, "Yanfa" },
- { 15561, "Coleman Family Camps" },
- { 15562, "mbrace.org" },
- { 15563, "Adtron" },
- { 15564, "Aselia Technologies, Inc." },
- { 15565, "Great Plains Mall.net" },
- { 15566, "Experian Japan Co., Ltd (formerly 'A-Care Systems, Inc.')" },
- { 15567, "Neople Ltd." },
- { 15568, "Center for Development of Information Technology - CDIT" },
- { 15569, "Krasnoyarsk ICC subdivision of MCC, JSC \"Russian Railways\"" },
- { 15570, "Bayerische Landesbank" },
- { 15571, "Schuler Electronics" },
- { 15572, "Tcom&dtvro" },
- { 15573, "Apertio Ltd" },
- { 15574, "E-milio Internet Services, S.L." },
- { 15575, "Chimes, Inc." },
- { 15576, "Pompoen B.V" },
- { 15577, "AirPrism" },
- { 15578, "DeepRoot Linux" },
- { 15579, "Saeson Telecom co., ltd" },
- { 15580, "VNIINS" },
- { 15581, "Telemed Communications Services GmbH" },
- { 15582, "Xtradyne Technologies AG" },
- { 15583, "EUREG" },
- { 15584, "de Werknaam" },
- { 15585, "Northern Light Technology" },
- { 15586, "Response Mechanics, Inc." },
- { 15587, "Humboldt State University" },
- { 15588, "WetWebMedia" },
- { 15589, "IntiGate Inc." },
- { 15590, "Catboy Technologies" },
- { 15591, "Alex Shepard" },
- { 15592, "Viking Telecom" },
- { 15593, "Kore Systems GmbH" },
- { 15594, "Causeway Technologies" },
- { 15595, "MEAG MUNICH ERGO AssetManagement GmbH" },
- { 15596, "SONORK S.R.L." },
- { 15597, "Avamar" },
- { 15598, "Compro Technologies, Inc." },
- { 15599, "Groom Lake Laboratories" },
- { 15600, "Xeta Technologies" },
- { 15601, "Velocity Software" },
- { 15602, "lottasophie.de" },
- { 15603, "Sunhillo Corporation" },
- { 15604, "Kuopio Telephone PLC" },
- { 15605, "Gray Laboratories, Inc." },
- { 15606, "TopPioneer Technologies Limited" },
- { 15607, "Encentuate, Inc." },
- { 15608, "Anders & Rodewyk" },
- { 15609, "Iskon Internet d.d." },
- { 15610, "Herbert Retail Ltd." },
- { 15611, "MIC Electronics Limited" },
- { 15612, "SoftWare Services" },
- { 15613, "gen-i limited" },
- { 15614, "Rick Bauman Consulting" },
- { 15615, "kma, inc." },
- { 15616, "Dullroar Enterprises" },
- { 15617, "newlimits" },
- { 15618, "Adrenalize, Inc." },
- { 15619, "Delean Vision" },
- { 15620, "Ceiva Logic" },
- { 15621, "ZP Technologies" },
- { 15622, "APTARE" },
- { 15623, "Bachblue Pty Ltd t/a AFOYI" },
- { 15624, "Skopeo LLC" },
- { 15625, "Excedent Technologies" },
- { 15626, "Campus Crusade Asia Ltd" },
- { 15627, "Spezifikum" },
- { 15628, "LAMARC GmbH" },
- { 15629, "IQSoft Rt" },
- { 15630, "InfoGuard HB" },
- { 15631, "Vivista Limited" },
- { 15632, "prime factory Gmbh & Co KG" },
- { 15633, "Tonisoft" },
- { 15634, "d3.net internet - technologien gmbh" },
- { 15635, "China PKI" },
- { 15636, "Althea Technical" },
- { 15637, "Spinlock Network LLC" },
- { 15638, "commissaire.net" },
- { 15639, "e-solutions, lda" },
- { 15640, "Clear Technology, Inc." },
- { 15641, "Masobit SRL" },
- { 15642, "Transplace, Inc." },
- { 15643, "Hallway Software Design Corp." },
- { 15644, "Brenda Bell" },
- { 15645, "pixell daten & design GmbH" },
- { 15646, "Pjusarafelag Islands" },
- { 15647, "thesysadmin" },
- { 15648, "Atlantis Services" },
- { 15649, "VOSGAMES" },
- { 15650, "Citrenesys Corporation" },
- { 15651, "Seventh Moon Co., Ltd." },
- { 15652, "SHE Informationssysteme AG" },
- { 15653, "Intesys" },
- { 15654, "Max Momentum" },
- { 15655, "SITADELLE" },
- { 15656, "Computer Park Ltd" },
- { 15657, "Macrocall" },
- { 15658, "Fillmore Labs" },
- { 15659, "Alaska Airlines" },
- { 15660, "TLM Software" },
- { 15661, "0x2.net" },
- { 15662, "fumph.com" },
- { 15663, "Aswan Co. Ltd." },
- { 15664, "Aractel Networks Ltd" },
- { 15665, "Eastern Communication Technology Development CO.LTD" },
- { 15666, "orgatech Ulrich Tiemann GmbH" },
- { 15667, "Lechner-Rau Haustechnik" },
- { 15668, "ZHONGFANG Information Co.,Ltd" },
- { 15669, "Lifecycle Software" },
- { 15670, "The Internet Marketing Center" },
- { 15671, "Wardega Consulting" },
- { 15672, "Javno preduzece \"Posta Srbije\" (formerly 'Javno preduzece PTT saobracaja \"Srbija\"')" },
- { 15673, "Codeangels Solutions" },
- { 15674, "Valente CC" },
- { 15675, "StoneDonut, LLC" },
- { 15676, "baede" },
- { 15677, "Thomson-Thomson" },
- { 15678, "Software Projects Pty Ltd" },
- { 15679, "Cape Com Inc" },
- { 15680, "Digirati" },
- { 15681, "ROSCO Associates Technology Staffing Ltd." },
- { 15682, "pkiclue.com, Inc." },
- { 15683, "Acrosonic Corporation" },
- { 15684, "Macro Technology" },
- { 15685, "agala.net" },
- { 15686, "Mei Communication Co." },
- { 15687, "Magic Software Enterprises Ltd." },
- { 15688, "Practical Labs" },
- { 15689, "Heinz Family Germany" },
- { 15690, "LIISP" },
- { 15691, "NetPower Solutions" },
- { 15692, "Minnigerode" },
- { 15693, "IonIdea" },
- { 15694, "Silicom" },
- { 15695, "A. Pomerantz & Company" },
- { 15696, "Bayer AG" },
- { 15697, "Cellon Inc" },
- { 15698, "NLoci" },
- { 15699, "Renesys Corporation" },
- { 15700, "Henrici IT-Consulting" },
- { 15701, "Schmut" },
- { 15702, "Computer Image Technology" },
- { 15703, "Software Diversified Services" },
- { 15704, "Cyan Worlds, Inc." },
- { 15705, "Multitalents" },
- { 15706, "IGLOO SECURITY, Inc." },
- { 15707, "silve.net" },
- { 15708, "Beijing Westman Automation Ltd. Co." },
- { 15709, "CBOSS" },
- { 15710, "Megasoft" },
- { 15711, "Euro DB" },
- { 15712, "Taringold Ltd." },
- { 15713, "Drinsama GmbH" },
- { 15714, "Lenel Systems International, Inc." },
- { 15715, "Blue Tree Systems" },
- { 15716, "gogo6 (formerly 'Hexago')" },
- { 15717, "Cegetel Net" },
- { 15718, "Loyalty Management Group Canada, Inc." },
- { 15719, "Mass College of Liberal Arts" },
- { 15720, "binaryMedia" },
- { 15721, "7COMm" },
- { 15722, "Concare" },
- { 15723, "Holoscenes.com" },
- { 15724, "VisionBank Corp." },
- { 15725, "ZyFLEX Technologies, Inc." },
- { 15726, "Klug GmbH integrierte Systeme" },
- { 15727, "hofen.org" },
- { 15728, "Sentry Information and Alert Systems Corp" },
- { 15729, "SyTrust GmbH" },
- { 15730, "Lulu Enterprises, Inc." },
- { 15731, "EasyPax Inc." },
- { 15732, "ZIV Aplicaciones y Tecnolog\0303\0255a S.A. (formerly 'uSysCom')" },
- { 15733, "Washington State University" },
- { 15734, "AION Systems" },
- { 15735, "Secure Technology Hawaii" },
- { 15736, "Emergepoint" },
- { 15737, "Zozoa Inc" },
- { 15738, "Business Network Communications" },
- { 15739, "Ruzz Technology Pty Ltd" },
- { 15740, "Digital Vision Technology Ltd" },
- { 15741, "Softerra, LLC" },
- { 15742, "DiskSites Ltd." },
- { 15743, "VTL (UK) Ltd" },
- { 15744, "NetRatings, Inc." },
- { 15745, "Schoren NMS Solutions" },
- { 15746, "ZONER software, s.r.o." },
- { 15747, "Locus Portal Corporation" },
- { 15748, "NetGhost Communications" },
- { 15749, "Ingersoll-Rand Co Inc" },
- { 15750, "University of Troms\0303\0270" },
- { 15751, "TRC Fiord, JSC" },
- { 15752, "slamb.org" },
- { 15753, "APPServer" },
- { 15754, "Vancouver Community Network" },
- { 15755, "PIVoD Technologies" },
- { 15756, "Wistron NeWeb Corporation" },
- { 15757, "MITSUBISHI ELECTRIC INFORMATION TECHNOLOGY CORPORATION(MDIT)" },
- { 15758, "suntek beijingyanjiuyuan" },
- { 15759, "Greener Pastures Innovations" },
- { 15760, "NMSWorks Software Limited" },
- { 15761, "ATS Elektronik GmbH" },
- { 15762, "Khety" },
- { 15763, "Lagan" },
- { 15764, "REPSOL YPF, S.A." },
- { 15765, "JX Solutions Ltd." },
- { 15766, "Matrix Mailing, LLC" },
- { 15767, "Triblen" },
- { 15768, "Ericsson Inc. (formerly 'BelAir Networks')" },
- { 15769, "Argecy Computer Corporation" },
- { 15770, "Zeera Networks, Inc." },
- { 15771, "JF Possibilities" },
- { 15772, "Fachhochschule Landshut" },
- { 15773, "e-BS, a.s." },
- { 15774, "DesigNET, INC." },
- { 15775, "HEIDENHAIN" },
- { 15776, "Advanced Data Integration" },
- { 15777, "Openin" },
- { 15778, "DaxNetwork" },
- { 15779, "Novel TongFang" },
- { 15780, "Kiloutou" },
- { 15781, "TRANSFLOW Informationslogistik GmbH" },
- { 15782, "VIA MAT MANAGEMENT AG" },
- { 15783, "HRsmart, Inc" },
- { 15784, "ELB Consulting" },
- { 15785, "Montrusco Bolton Investments Inc." },
- { 15786, "NetLedger, Inc." },
- { 15787, "DGN Service GmbH" },
- { 15788, "The Elders of the Universe" },
- { 15789, "Infineon Technologies AG" },
- { 15790, "Wideray Corporation" },
- { 15791, "La Canada Wireless Association" },
- { 15792, "Interlink Group Incorporated" },
- { 15793, "Pittig Software & Internet Services" },
- { 15794, "DeGeorge Family" },
- { 15795, "Vandelay Internet Services, Inc." },
- { 15796, "ImageONE Co., Ltd." },
- { 15797, "Infosys Technologies Limited" },
- { 15798, "Rato International Communication Co" },
- { 15799, "Cesky Mobil a.s." },
- { 15800, "JN Data A/S" },
- { 15801, "Huitsing Embedded Systems" },
- { 15802, "Farlep" },
- { 15803, "mercatis information systems gmbh" },
- { 15804, "DLR SISTEC" },
- { 15805, "Sweetheart Cup Company, Inc." },
- { 15806, "ConnecTalk Inc." },
- { 15807, "DGN Service GmbH" },
- { 15808, "DGN Service GmbH" },
- { 15809, "WNET ISP" },
- { 15810, "Bank Severnaya Kazna OAO" },
- { 15811, "Digital Control, LLC" },
- { 15812, "Radical Corporation" },
- { 15813, "AIS.PL" },
- { 15814, "Applied Concepts" },
- { 15815, "NetQA" },
- { 15816, "Infra 911, Inc." },
- { 15817, "Falcon System Consulting, Inc." },
- { 15818, "Stadt Braunschweig" },
- { 15819, "Cryptolog International" },
- { 15820, "CASTOR Informatique" },
- { 15821, "FreeBSD-CN Project" },
- { 15822, "I-ST.net GmbH" },
- { 15823, "LinuxWithin.com" },
- { 15824, "InaSoft" },
- { 15825, "ClearMetrix, Inc." },
- { 15826, "Cryptek, Incorporated" },
- { 15827, "Crocker Communications, Inc." },
- { 15828, "H3G Italia S.p.A. - Enterprise C.A." },
- { 15829, "DIGITAL PRODUCTION SARL" },
- { 15830, "Robinlea" },
- { 15831, "DENSO IT LABORATORY, INC." },
- { 15832, "BT Ignite solutions" },
- { 15833, "SIGEC" },
- { 15834, "Tigard-Tualatin School District" },
- { 15835, "M&S Systems" },
- { 15836, "Marcor Associates, Ltd." },
- { 15837, "Investment Technology Group" },
- { 15838, "AKA" },
- { 15839, "The E.W. Scripps Company" },
- { 15840, "GEIDAX" },
- { 15841, "Daniel Ritter" },
- { 15842, "Blasberg-Computer-Systeme GmbH" },
- { 15843, "Massenbach" },
- { 15844, "SELEX Communications S.p.A." },
- { 15845, "DixPER Systems" },
- { 15846, "IP Fabrics" },
- { 15847, "Harvard Law School" },
- { 15848, "Sensorsoft Corporation" },
- { 15849, "Evans Companies" },
- { 15850, "ReShape" },
- { 15851, "Computerized Medical Systems" },
- { 15852, "Legion Interactive" },
- { 15853, "Computer Center, Hitotsubashi university" },
- { 15854, "RIPE NCC" },
- { 15855, "Lule\0303\0245 Segels\0303\0244llskap" },
- { 15856, "Open Power Network, R.Sch\0303\0244r" },
- { 15857, "Administracion del Principado de Asturias" },
- { 15858, "all-in-green.com GmbH" },
- { 15859, "City of Tampere" },
- { 15860, "ParTec" },
- { 15861, "KiNETiK GmbH" },
- { 15862, "BankService Plc." },
- { 15863, "Innovative Navigation" },
- { 15864, "Unicity Pty. Ltd." },
- { 15865, "cab Produkttechnik GmbH & Co KG" },
- { 15866, "Joe Rhodes Consulting LLC" },
- { 15867, "IXI Mobile (R&D) Ltd." },
- { 15868, "Cybris Network Information Systems" },
- { 15869, "Tijd Beursmedia" },
- { 15870, "Egon Technologies" },
- { 15871, "Omnilux" },
- { 15872, "IT Merge Inc." },
- { 15873, "Guardian Life Insurance Inc" },
- { 15874, "MDS Proteomics A/S" },
- { 15875, "M-PLIFY S.A." },
- { 15876, "Microprogram Information LD. CO." },
- { 15877, "API Technologies, LLC" },
- { 15878, "AZTECH SYSTEMS LTD" },
- { 15879, "WaveIP Ltd." },
- { 15880, "MONEYLINE BANKING SYSTEMS" },
- { 15881, "Thomas Fahle" },
- { 15882, "smart ip" },
- { 15883, "Getronics France" },
- { 15884, "Noble Turkey Software" },
- { 15885, "ESAG Energieversorgung Sachsen Ost AG" },
- { 15886, "Manhattan Associates" },
- { 15887, "Cosini Networks, Inc" },
- { 15888, "TAI S.r.l." },
- { 15889, "Q-Free ASA" },
- { 15890, "Prairie Grove Telephone Co." },
- { 15891, "Panda Restaurant Group, Inc." },
- { 15892, "Openmodes Technology Group Inc." },
- { 15893, "Emerson Climate Technologies Retail Solutions, Inc. (formerly 'Computer Process Controls')" },
- { 15894, "AstroStage Inc." },
- { 15895, "4Linux" },
- { 15896, "Southern Federal University (formerly 'Rostov State University, Computer Center')" },
- { 15897, "Guangzhou GaoU S & T Development Co. Ltd." },
- { 15898, "Polizei Brandenburg" },
- { 15899, "inubit" },
- { 15900, "OpenWeb" },
- { 15901, "Valsimmon Technology Group" },
- { 15902, "MEN@NET" },
- { 15903, "Seebek Ingenier\0303\0255a S.R.L." },
- { 15904, "Peter Eckel, System and Network Management" },
- { 15905, "Defero Systems AB" },
- { 15906, "WLAN AG" },
- { 15907, "Canyon Networks" },
- { 15908, "Business Technology Associates, Inc." },
- { 15909, "MRX Solutions" },
- { 15910, "AutoTrader.com" },
- { 15911, "he chuan" },
- { 15912, "BlueCom AS" },
- { 15913, "Networking Support Services" },
- { 15914, "Netreo Incorporated" },
- { 15915, "High Tower Software" },
- { 15916, "LANDesk Software" },
- { 15917, "Expedient Communications" },
- { 15918, "the MORROW group" },
- { 15919, "Hitachi Storage Software Incorporated" },
- { 15920, "Switch Management" },
- { 15921, "MobileAccess" },
- { 15922, "YISHANG INNOVATION TECHNOLOGY CO.,LTD" },
- { 15923, "ICS GmbH" },
- { 15924, "Kuwait Linux Company" },
- { 15925, "Cadence Design Systems" },
- { 15926, "Cartier Partners Financial Group Inc." },
- { 15927, "Point Loma Nazarene University" },
- { 15928, "SNB" },
- { 15929, "Cambodia Samart Communication" },
- { 15930, "Lucasfilm Ltd." },
- { 15931, "Center for International Rehabilitation" },
- { 15932, "Wuertele" },
- { 15933, "Cyanea Systems Corp." },
- { 15934, "Multip Kft." },
- { 15935, "Centerplex" },
- { 15936, "Koreadotcom" },
- { 15937, "Svyazinform of Republic Mordovia Joint Stock Company" },
- { 15938, "JOINT-STOCK COMPANY IMPORT-EXPORT BANK \"IMPEXBANK\" , Moscow" },
- { 15939, "Coral Telecom Ltd" },
- { 15940, "Factoria de iniciativas internet fi2, s.a" },
- { 15941, "Galena Park ISD" },
- { 15942, "Cabildo de Gran Canaria" },
- { 15943, "CONEXUS Credit Union" },
- { 15944, "Agence de la Francophonie" },
- { 15945, "Ascertia" },
- { 15946, "Calypso Networks" },
- { 15947, "New Jersey Institute of Technology" },
- { 15948, "TREVSPLACE.COM" },
- { 15949, "F\0303\0241brica de Id\0303\0251ias" },
- { 15950, "4am Media, Inc." },
- { 15951, "Axent Global" },
- { 15952, "Advanced Computer Resources" },
- { 15953, "Aaron Spangler" },
- { 15954, "Filesure Pte Ltd" },
- { 15955, "OmniComp Technology Services" },
- { 15956, "InCore Technology Ltd" },
- { 15957, "Muonics, Inc." },
- { 15958, "TREVSPLACE.COM" },
- { 15959, "Sue's Sound cc" },
- { 15960, "eAirports" },
- { 15961, "Cocking and Co. Ltd." },
- { 15962, "ASML" },
- { 15963, "INFORMA COLOMBIA" },
- { 15964, "Instituto Nacional de Astrof\0303\0255sica, Optica y Electr\0303\0263nica" },
- { 15965, "Public Resources Management Group, Inc." },
- { 15966, "Visa, International." },
- { 15967, "NCast Corporation" },
- { 15968, "Emico Vero" },
- { 15969, "Vindigo, Inc." },
- { 15970, "Aspen Networks Inc" },
- { 15971, "Advanced Biometric Controls, LLC" },
- { 15972, "Disaster Kleenup International, Inc" },
- { 15973, "JCorporate Ltd" },
- { 15974, "Skywave Corporation" },
- { 15975, "MEIKYO ELECTRIC CO.,LTD." },
- { 15976, "Adacom S.A." },
- { 15977, "ComPol II" },
- { 15978, "IT=it" },
- { 15979, "Tomsoft" },
- { 15980, "TrackWell Software hf" },
- { 15981, "Anillo Networks, Inc." },
- { 15982, "Hubbub IT Services" },
- { 15983, "Meru Networks" },
- { 15984, "Authenex, Inc." },
- { 15985, "The University of Lethbridge" },
- { 15986, "Binara, Inc." },
- { 15987, "Topoz Pty Ltd" },
- { 15988, "Cymes GmbH" },
- { 15989, "Torsten Schneider" },
- { 15990, "x9 (formerly 'MikroBitti')" },
- { 15991, "Raso" },
- { 15992, "Tracerdigital, LLC" },
- { 15993, "Net-Scale Technologies, Inc." },
- { 15994, "XCOM Comunicacao Segura" },
- { 15995, "it consultant Henning Follmann" },
- { 15996, "RNP Rede Nacional de Ensino e Pesquisa" },
- { 15997, "Wave Systems Corp." },
- { 15998, "University of Glamorgan" },
- { 15999, "CPS Technology Group" },
- { 16000, "Syrea s.r.l." },
- { 16001, "Ministry of Finance, Czech Republic" },
- { 16002, "Glyphix" },
- { 16003, "Zschimmer GmbH" },
- { 16004, "Intrusec, Inc." },
- { 16005, "Durham University" },
- { 16006, "CodeFab Inc" },
- { 16007, "Native Instruments" },
- { 16008, "Consolidated Communications Inc" },
- { 16009, "TelemaxX Telekommunikation GmbH" },
- { 16010, "Kapsch BusinessCom AG" },
- { 16011, "State of Utah DAS/ITS" },
- { 16012, "MEMSCAP" },
- { 16013, "byteCentric" },
- { 16014, "Applied Materials Inc." },
- { 16015, "Primary Objective, LLC" },
- { 16016, "Simmey Limited" },
- { 16017, "CEW Co Ltd" },
- { 16018, "punker.org" },
- { 16019, "Reitek" },
- { 16020, "Wasadata System AB" },
- { 16021, "cassava Enterprises" },
- { 16022, "Minicom Advanced Systems Ltd." },
- { 16023, "inetadmin" },
- { 16024, "Netzwert Aktiengesellschaft" },
- { 16025, "CIBLIS Engenharia S/C" },
- { 16026, "SoftAplic S/C Ltda." },
- { 16027, "Shah-USA" },
- { 16028, "XAOS Systems" },
- { 16029, "Westleader International Inc." },
- { 16030, "Hongkong Post" },
- { 16031, "Atmark Techno, Inc." },
- { 16032, "Uraltransbank" },
- { 16033, "Telemic Oy" },
- { 16034, "Opus Hadsel" },
- { 16035, "Icom Mobile" },
- { 16036, "InfoCentre Ltd." },
- { 16037, "em|Motion GmbH" },
- { 16038, "ORAYLIS GmbH" },
- { 16039, "Automated Systems Engineering, Inc." },
- { 16040, "dataparty.net" },
- { 16041, "Hogeschool Brabant" },
- { 16042, "JMP SYSTEMS" },
- { 16043, "Viasec, s.r.o." },
- { 16044, "todo Gesellschaft fuer Informationstechnik mbH" },
- { 16045, "Ocaco Finland Oy" },
- { 16046, "DSD S.A." },
- { 16047, "IT Practice" },
- { 16048, "BOFRIIS" },
- { 16049, "Flamenco Networks, Inc." },
- { 16050, "Krupczak Org" },
- { 16051, "CORETEAM AB" },
- { 16052, "Chris Rauschuber" },
- { 16053, "Burger King Corporation" },
- { 16054, "Resource Data Management Ltd" },
- { 16055, "Blandsite" },
- { 16056, "okazaki city office" },
- { 16057, "EventGnosis, Inc." },
- { 16058, "GENKEY" },
- { 16059, "Tsinghua TongFang Software Co. Ltd." },
- { 16060, "Lighthouse Information Systems, Inc." },
- { 16061, "Adhersis North America" },
- { 16062, "ZINCNetworks" },
- { 16063, "DC Technologies" },
- { 16064, "Perspectix AG" },
- { 16065, "softArk Solutions" },
- { 16066, "NEC Telenetworx,Ltd" },
- { 16067, "BarcoIntelligentDisplays" },
- { 16068, "Repeatit AB" },
- { 16069, "MINEFI/SP" },
- { 16070, "Bundesamt f\0303\0274r Finanzen" },
- { 16071, "Pictet & Cie, Banquiers" },
- { 16072, "Linkeo.com" },
- { 16073, "Edith Cowan University" },
- { 16074, "VBL Karlsruhe" },
- { 16075, "Uninet, S.A." },
- { 16076, "Dominion Diagnostics" },
- { 16077, "Witbe" },
- { 16078, "Mouvement R\0303\0251publicain et Citoyen" },
- { 16079, "bitMaster" },
- { 16080, "Software Logistics, LLC" },
- { 16081, "KTALAND" },
- { 16082, "Bechtel Corporation" },
- { 16083, "MaineBase" },
- { 16084, "House of Noise" },
- { 16085, "Telexpertise de Mexico S.A. de C.V." },
- { 16086, "MITSUMI ELECTRIC CO.,LTD" },
- { 16087, "Zayed University" },
- { 16088, "Groats Laboratories" },
- { 16089, "eXwavecom Co.,Ltd." },
- { 16090, "Estweb Ltd." },
- { 16091, "ECR" },
- { 16092, "AirWalk Communications, Inc." },
- { 16093, "AW Software" },
- { 16094, "Stacken" },
- { 16095, "Fluency Voice Technology Ltd." },
- { 16096, "RCS-TECHNOLOGY" },
- { 16097, "voice robots GmbH" },
- { 16098, "SCA Graphic Sundsvall AB" },
- { 16099, "Pinion Group, LLC" },
- { 16100, "Iron Mountain" },
- { 16101, "Cadero, Inc." },
- { 16102, "Miharu Communications Inc." },
- { 16103, "Nilgiri Networks" },
- { 16104, "KeyCOM Information Technology CO.,Ltd" },
- { 16105, "Standard Information Data Centre of Ministry of Education P.R.C" },
- { 16106, "ICCS" },
- { 16107, "Enea Data AB" },
- { 16108, "Garderos Software Innovations GmbH" },
- { 16109, "Pfannenberg" },
- { 16110, "InfoCentre Ltd." },
- { 16111, "Beaumont Hospital" },
- { 16112, "Valentine KOUTCHERBAEV" },
- { 16113, "Network Dweebs Corporation" },
- { 16114, "Qualstar Corporation" },
- { 16115, "CyberSarge, Inc." },
- { 16116, "Enforcer Group, Inc." },
- { 16117, "Rev D Networks" },
- { 16118, "3gfp" },
- { 16119, "Catalog.com" },
- { 16120, "SIMCON" },
- { 16121, "Caliber Technoloigies & Consultancy" },
- { 16122, "Netguild" },
- { 16123, "University of Florence" },
- { 16124, "X32 Pty Ltd" },
- { 16125, "NET SPACE" },
- { 16126, "Parliament of Finland" },
- { 16127, "Fathom Technology KFT" },
- { 16128, "A LAWRENCE RIEDEL" },
- { 16129, "LightHouse Training and Consulting srl" },
- { 16130, "NEC Australia P/L" },
- { 16131, "Humax Co., Ltd." },
- { 16132, "Pham Kim Binh Nguyen" },
- { 16133, "Artur Sabik" },
- { 16134, "CIRTI de Nantes" },
- { 16135, "Coherent Light" },
- { 16136, "FT Interactive Data" },
- { 16137, "Dr. Huggle & Partner GmbH" },
- { 16138, "E*Trade Financial Inc." },
- { 16139, "Compellent Technologies" },
- { 16140, "MozApps.org" },
- { 16141, "A-NeT Internet Services bv" },
- { 16142, "Network Technology and Engineering Institute of Xi'an Jiaotong University" },
- { 16143, "Gina & Jonathan Oberg" },
- { 16144, "KERBEROS" },
- { 16145, "DResearch Digital Media Systems GmbH" },
- { 16146, "United Bulgarian Bank" },
- { 16147, "intY Ltd" },
- { 16148, "JavaRealm Software Development Team" },
- { 16149, "Del Mar Analytical" },
- { 16150, "White Wolf Camarilla" },
- { 16151, "Pima Community College" },
- { 16152, "The Cincinnati Insurance Companies" },
- { 16153, "Snert" },
- { 16154, "Network Resource Technologies Corp" },
- { 16155, "HalcyonFlame" },
- { 16156, "Feral Nerds Enterprises" },
- { 16157, "RDI" },
- { 16158, "CiTR Pty Ltd" },
- { 16159, "UQ Business School" },
- { 16160, "Sphere Systems" },
- { 16161, "CSC - Scientific Computing Ltd" },
- { 16162, "RM-System Holding, a.s." },
- { 16163, "Elettronika S.r.l." },
- { 16164, "zylk" },
- { 16165, "Crescendo Networks" },
- { 16166, "University of Sheffield" },
- { 16167, "Repsol Quimica" },
- { 16168, "MediSync Midwest Limited" },
- { 16169, "Teleredes" },
- { 16170, "totaleasy" },
- { 16171, "Zucchetti.com srl" },
- { 16172, "Danger Incorporated" },
- { 16173, "Arizona Western College" },
- { 16174, "Sensatronics LLC" },
- { 16175, "TRIADE Beratungsgesellschaft f\0303\0274r Informationstechnologie mbH" },
- { 16176, "Zephra Corp." },
- { 16177, "Westermo Teleindustri AB" },
- { 16178, "WellPoint Health Networks" },
- { 16179, "WAN Norway" },
- { 16180, "Blue Data Networks Ltd" },
- { 16181, "E3Switch LLC" },
- { 16182, "Whitesmiths Australia Pty Ltd" },
- { 16183, "Hanaro Telecom" },
- { 16184, "PT. Indorama Synthetics Tbk" },
- { 16185, "NM Systems Co.,Ltd." },
- { 16186, "Peter Schneider EDV" },
- { 16187, "Aedilis UAB" },
- { 16188, "Materials Science and Technology Dept. - Univ. of Crete GREECE" },
- { 16189, "Assured Communications Group Limited" },
- { 16190, "Colegio Oficial de Arquitectos de Madrid" },
- { 16191, "NightFire Software, Inc." },
- { 16192, "BCN Associates, Inc." },
- { 16193, "Eagle Mountain International Church Inc." },
- { 16194, "Rancho Morado" },
- { 16195, "Thomson Corp Switzerland AG" },
- { 16196, "Washington Mutual" },
- { 16197, "Scoobtec" },
- { 16198, "Investment Company Institute" },
- { 16199, "openForce Information Technology GesmbH" },
- { 16200, "Casero Inc." },
- { 16201, "TI Telecomunicazioni & Informatica" },
- { 16202, "Oakland University" },
- { 16203, "Sysdata Kft." },
- { 16204, "Westinghouse Electric Company" },
- { 16205, "T-Systems GCF MSY" },
- { 16206, "Mobile TeleSystems Limited libility company" },
- { 16207, "Splicecom Ltd" },
- { 16208, "Universidade Lusiada" },
- { 16209, "Collaborative Network Technologies Inc." },
- { 16210, "Delta Piktori Oy" },
- { 16211, "Certified Security Solutions" },
- { 16212, "wang" },
- { 16213, "CEN/ISSS XFS Workshop" },
- { 16214, "Pehkonen Family" },
- { 16215, "Elbit Systems Ltd." },
- { 16216, "Trinity CC Consulting, Inc." },
- { 16217, "KDDI Media Will Corporation" },
- { 16218, "Talkline GmbH" },
- { 16219, "DB Telematik GmbH" },
- { 16220, "LANDMAT" },
- { 16221, "Strodl" },
- { 16222, "DONOBi, Inc." },
- { 16223, "Global Messaging Solutions, Inc." },
- { 16224, "HTBLuVA Wiener Neustadt" },
- { 16225, "PaeTec Communications" },
- { 16226, "Public Service Enterprise Group" },
- { 16227, "VitalStream, Inc." },
- { 16228, "AuriQ Systems, Inc." },
- { 16229, "NU Informationssysteme GmbH" },
- { 16230, "eCornell" },
- { 16231, "Introspect Consulting, Inc." },
- { 16232, "netMANj Project" },
- { 16233, "Tukcedo Services" },
- { 16234, "Dogico" },
- { 16235, "insignia financial group, inc." },
- { 16236, "Andrew Maldonado Consulting" },
- { 16237, "Mantis Technology LLC" },
- { 16238, "TheCartCompany.com" },
- { 16239, "Corbett Systems Development, Inc." },
- { 16240, "skinoske tech" },
- { 16241, "butlerNetworks AS" },
- { 16242, "Thames Valley University" },
- { 16243, "AVS Consulting" },
- { 16244, "Ecole des Mines d'Al\0303\0250s" },
- { 16245, "Humanor" },
- { 16246, "Hertz Comunicaciones" },
- { 16247, "eServGlobal" },
- { 16248, "litus.at" },
- { 16249, "Italtel S.p.A." },
- { 16250, "NetPrecept Ltd." },
- { 16251, "Bonuso Industries" },
- { 16252, "M\0303\0244t\0303\0244sahon suku" },
- { 16253, "M\0303\0244t\0303\0244sahon suku" },
- { 16254, "Holmen Paper AB" },
- { 16255, "Action Engine Corp." },
- { 16256, "Develtech" },
- { 16257, "The Hong Kong Polytechnic University" },
- { 16258, "FeelingK" },
- { 16259, "KOWA COMPANY,LTD. RESEARCH CENTER FOR ADVANCED TECHNOLOGY" },
- { 16260, "The FreeBSD China Community" },
- { 16261, "Kopint-Datorg Rt." },
- { 16262, "Repsol Petroleo" },
- { 16263, "swisswebgroup gmbh" },
- { 16264, "Itheon" },
- { 16265, "Open Methods" },
- { 16266, "The Optym Group" },
- { 16267, "American Network Communications, Inc" },
- { 16268, "US Linux Networks, LLC" },
- { 16269, "iomart ltd" },
- { 16270, "GravityRock.com" },
- { 16271, "New South Wales Fire Brigades" },
- { 16272, "Legend (Beijing) Limited" },
- { 16273, "Nexge technology p ltd" },
- { 16274, "TELMAT Industrie" },
- { 16275, "University of Kuopio" },
- { 16276, "Communications Regulation Commission" },
- { 16277, "Mobile Internet Limited" },
- { 16278, "sLAB Informationssysteme" },
- { 16279, "St. Francis Borgia RHS" },
- { 16280, "OLTPCorp" },
- { 16281, "SYSLOG Gmbh" },
- { 16282, "H5 Technologies" },
- { 16283, "OM" },
- { 16284, "QuadFore Corporation" },
- { 16285, "ibpsearch" },
- { 16286, "Hungarocom Ltd" },
- { 16287, "Swiss Federal Institute of Technology" },
- { 16288, "EDV-Beratung" },
- { 16289, "Mediva Inc." },
- { 16290, "SIAT" },
- { 16291, "Meeting Maker, Inc." },
- { 16292, "Susurro" },
- { 16293, "BRVL Technology Ltd." },
- { 16294, "Applied Instruments Inc" },
- { 16295, "Ormond college" },
- { 16296, "Vindicia" },
- { 16297, "Semnode" },
- { 16298, "hanbang-soft technology co.,Ltd" },
- { 16299, "corega K.K." },
- { 16300, "Penguin Infotech Pvt. Ltd. (formerly 'Penguin India Linux Solutions Pvt. Ltd.')" },
- { 16301, "Silesian University in Opava" },
- { 16302, "intrae" },
- { 16303, "Sans Serif" },
- { 16304, "EADS" },
- { 16305, "KIBS AD Skopje" },
- { 16306, "Repsol Distribucion" },
- { 16307, "StreamScale" },
- { 16308, "RHOEN-KLINIKUM AG" },
- { 16309, "NTT Software Corporation" },
- { 16310, "Marketline Rt." },
- { 16311, "Alatec, S.A." },
- { 16312, "Register.com" },
- { 16313, "Valemount Networks Corp" },
- { 16314, "Bureautique Services Developpement" },
- { 16315, "X|support" },
- { 16316, "HSBC Bank North America" },
- { 16317, "Quebecor World North America" },
- { 16318, "empuron" },
- { 16319, "ViaVis Mobile Solutions Inc." },
- { 16320, "The Brain Room Ltd" },
- { 16321, "ZOOM INTERNATIONAL s.r.o." },
- { 16322, "Leading Edge Telemetry, LLC" },
- { 16323, "Trax Holdings" },
- { 16324, "Itelsys" },
- { 16325, "NESCO CO., LTD." },
- { 16326, "iyaburo.com" },
- { 16327, "Mark Chesney" },
- { 16328, "NARI Corp. (Nanjing Automation Research Institute)" },
- { 16329, "AdiSyS Oy" },
- { 16330, "Reutech Radar System" },
- { 16331, "cosmocode GmbH" },
- { 16332, "Longshine Technologie Europe GmbH" },
- { 16333, "bitmine AB" },
- { 16334, "Northrop Grumman" },
- { 16335, "Seoul Electric Power System co.,ltd" },
- { 16336, "Alatec, S.A." },
- { 16337, "Canadian National Railway Company" },
- { 16338, "IPOne" },
- { 16339, "GlobeOp Financial Services, LLC" },
- { 16340, "White Rock Networks" },
- { 16341, "Biomedical Informatics Research Network (BIRN)" },
- { 16342, "Menta Group" },
- { 16343, "UTTC United Tri-Tech Corporation" },
- { 16344, "Perfigo" },
- { 16345, "The Anvil Organisation Ltd." },
- { 16346, "Farabi Technology" },
- { 16347, "IPCAST" },
- { 16348, "Shanghai Transfiber Science&Technology Co.,Ltd." },
- { 16349, "ComGear" },
- { 16350, "TOT Corporation Public Company Limited" },
- { 16351, "Caixa Bank S. A." },
- { 16352, "Newman College of HE" },
- { 16353, "Howaldtswerke - Deutsche Werft AG" },
- { 16354, "Gruppennest" },
- { 16355, "MIDRAY GmbH" },
- { 16356, "Transfer Limited" },
- { 16357, "Hain Celestial Group" },
- { 16358, "United Carrier Networks" },
- { 16359, "Miller Samuel, Inc." },
- { 16360, "Contralor\0303\0255a General de la Rep\0303\0272blica" },
- { 16361, "Progressive Linux Consultants LLC" },
- { 16362, "Waters Network Systems" },
- { 16363, "SCHOLZ & VOLKMER Intermediales Design, GmbH" },
- { 16364, "SMARTDATA" },
- { 16365, "Dion Global Solutions GmbH (formerly 'Swissrisk Financial Systems GmbH')" },
- { 16366, "INFORMA DEL PERU, INFORMACION ECONOMICA SA" },
- { 16367, "saarstahl" },
- { 16368, "Sysapex Communications Inc." },
- { 16369, "Clark University" },
- { 16370, "DASS Consulting Group Inc." },
- { 16371, "tygrysek.com" },
- { 16372, "T-Mobile Czech Republic a.s." },
- { 16373, "Federal Public service Transport & Mobility" },
- { 16374, "NV Multikabel" },
- { 16375, "University Of Athens" },
- { 16376, "ACOSS" },
- { 16377, "IMCTech" },
- { 16378, "Sarian Systems Limited" },
- { 16379, "River Cities Reader" },
- { 16380, "NEXVU Technologies" },
- { 16381, "Verifiber, LLC" },
- { 16382, "InterBox Internet" },
- { 16383, "HP GSE Security" },
- { 16384, "California State Polytechnic University, Pomona" },
- { 16385, "Hudli" },
- { 16386, "Daxiongmao" },
- { 16387, "OEone Corporation" },
- { 16388, "J\0303\0266rg Eichhorn" },
- { 16389, "Pegasus EDV-Betreuungs-GmbH" },
- { 16390, "VineSys Technology" },
- { 16391, "RouteOne" },
- { 16392, "Cortland Communications" },
- { 16393, "Sean Champ Enterprises" },
- { 16394, "Pentair Technical Products (formerly 'Pigeon Point Systems')" },
- { 16395, "William R Sowerbutts" },
- { 16396, "justinknash.com" },
- { 16397, "U.S. Army ALTESS" },
- { 16398, "Metallect Corp." },
- { 16399, "Greyhavens" },
- { 16400, "Singapore Telecommunication Limited" },
- { 16401, "Hewlett-Packard Slovakia" },
- { 16402, "Teleformix, LLC" },
- { 16403, "Brobus International, Inc." },
- { 16404, "NeuralWorx" },
- { 16405, "CPEG.Net" },
- { 16406, "ADWIN" },
- { 16407, "Lanux Limited" },
- { 16408, "Leo Consulting" },
- { 16409, "Futuri Ltd" },
- { 16410, "NEC COMPUTERS INTERNATIONAL B.V." },
- { 16411, "Indicia Nederland bv" },
- { 16412, "Home Health Corporation of America" },
- { 16413, "rahbany.com" },
- { 16414, "itsanaddiction.org" },
- { 16415, "B.Bradenahl & H.Eggers" },
- { 16416, "REAL DATA S.C." },
- { 16417, "TMC HealthCare" },
- { 16418, "ULYSSIS" },
- { 16419, "PINBOARD" },
- { 16420, "SRA International" },
- { 16421, "Christian Albrechts Universitaet" },
- { 16422, "MUMPK limited partnership" },
- { 16423, "ABACUS Research AG" },
- { 16424, "Alanta" },
- { 16425, "City Utilities of Springfield MO" },
- { 16426, "Lawrence Technological University" },
- { 16427, "Internet Access Facilities BV" },
- { 16428, "Dial Assurance, Inc." },
- { 16429, "Lindorff Holding AS" },
- { 16430, "Mutiny Limited" },
- { 16431, "Engineering.MO S.p.A. (formerly 'T-Systems Italia S.p.A.')" },
- { 16432, "PKI Innovations Inc." },
- { 16433, "Moorehead Communications" },
- { 16434, "Jenzabar, Inc" },
- { 16435, "Clearswift Corporation" },
- { 16436, "Bookham Inc." },
- { 16437, "Bart" },
- { 16438, "Kansas Information Consortium" },
- { 16439, "PNX Pty Ltd" },
- { 16440, "netINS, Inc." },
- { 16441, "ENST" },
- { 16442, "ProActive A/S" },
- { 16443, "P&O Nedlloyd Limited" },
- { 16444, "UPTI" },
- { 16445, "Kineto Wireless" },
- { 16446, "Adlink" },
- { 16447, "epix Internet Services" },
- { 16448, "Neogate Co., Ltd" },
- { 16449, "Charcoal Generation Limited" },
- { 16450, "IT-Concepts GmbH" },
- { 16451, "SMC Pneumatics (N.Z.) Limited" },
- { 16452, "Infocomp Pty Ltd" },
- { 16453, "Beijing Municipal Local Taxation Bureau" },
- { 16454, "AXWAY" },
- { 16455, "DFS Deutsche Flugsicherung GmbH" },
- { 16456, "GPL Eletro Eletronica S/A" },
- { 16457, "Opera Logic, Inc." },
- { 16458, "Gemini Mobile Technologies, Inc." },
- { 16459, "Epygi Technologies Ltd." },
- { 16460, "Convertronic GmbH" },
- { 16461, "Eurofluxo-Suporte a Novas Tecnologias, Lda." },
- { 16462, "JAVCO Consulting" },
- { 16463, "Metavante Corporation" },
- { 16464, "Pangolin Software Industries Ltd" },
- { 16465, "State College Area School District" },
- { 16466, "Sonartech Atlas Pty Ltd" },
- { 16467, "Gigaworks" },
- { 16468, "Deriva GmbH" },
- { 16469, "Coastal Wave Internet" },
- { 16470, "KEBA AG" },
- { 16471, "SCAN ASSOCIATES SDN BHD" },
- { 16472, "QMedit" },
- { 16473, "Terranet Ltd." },
- { 16474, "mencial" },
- { 16475, "Hays IMS" },
- { 16476, "awsys gmbh" },
- { 16477, "SYSLINE S.p.A." },
- { 16478, "eiwei Training & Consulting" },
- { 16479, "P4 Tecnologia Ltda." },
- { 16480, "Ministry of Transportation of Ontario" },
- { 16481, "JOutfitters LLC" },
- { 16482, "Old Dominion University" },
- { 16483, "Pure Networks" },
- { 16484, "Gavin Newman" },
- { 16485, "Advanced Multifake Systems" },
- { 16486, "Dauphin MultiMedia" },
- { 16487, "THALES NL" },
- { 16488, "Electralink Ltd" },
- { 16489, "The Hanover Company" },
- { 16490, "Sentryware" },
- { 16491, "INMETRICS LTDA - EPP" },
- { 16492, "Scitor Corporation" },
- { 16493, "AutoCell Laboratories, Inc." },
- { 16494, "MassMutual" },
- { 16495, "iafrica.com" },
- { 16496, "ACU-RITE COMPANIES INC." },
- { 16497, "Repsol Exploracion" },
- { 16498, "MEDIUM SOFT a.s." },
- { 16499, "Graburn Technology" },
- { 16500, "S.W.A.C. GmbH" },
- { 16501, "S&H Greenpoints" },
- { 16502, "LGB PhOeNiX" },
- { 16503, "Prairie Fire Internet Technologies" },
- { 16504, "SindhSoft" },
- { 16505, "TeamStaff Inc" },
- { 16506, "NeXtorage, Inc." },
- { 16507, "Evanz Enterprises" },
- { 16508, "Progel srl" },
- { 16509, "Association des Medecins de Saint-Hilaire" },
- { 16510, "The Pepsi Bottling Group" },
- { 16511, "Sentor Managed Security Services AB" },
- { 16512, "Medienzentrum Osnabrueck" },
- { 16513, "Monaco Interactive" },
- { 16514, "UUNET SA" },
- { 16515, "GRNET S.A." },
- { 16516, "elipsan" },
- { 16517, "Partners HealthCare System Inc." },
- { 16518, "New Particles Corporation" },
- { 16519, "Microdasys Inc." },
- { 16520, "pg-cs" },
- { 16521, "Pronto Networks" },
- { 16522, "Telefonica Publicidad e Informacion S.A." },
- { 16523, "Eric Yeo" },
- { 16524, "Morty Abzug" },
- { 16525, "Unicorn" },
- { 16526, "KYA group" },
- { 16527, "Internet Pictures Corporation" },
- { 16528, "Leadtek Research Inc." },
- { 16529, "HCL Infosystems Limited" },
- { 16530, "Exalt Technologies" },
- { 16531, "brico d\0303\0251pot" },
- { 16532, "Sparda-Datenverarbeitung eG" },
- { 16533, "Consejo General de la Abogacia Espa\0303\0261ola" },
- { 16534, "Mycom International" },
- { 16535, "BitBand Technologies Ltd." },
- { 16536, "Tiscali UK" },
- { 16537, "Wireless Data Services" },
- { 16538, "Progressive Electrical Services, Inc." },
- { 16539, "Graber Enterprises, Inc." },
- { 16540, "E.D.S. Pubblica Amministrazione S.p.A." },
- { 16541, "Wapiti Regional Library" },
- { 16542, "Harley Systems" },
- { 16543, "Standard Bank of South Africa" },
- { 16544, "LEASFINANZ AG" },
- { 16545, "Cardservice International" },
- { 16546, "BBHK" },
- { 16547, "Alixen" },
- { 16548, "Fachschaft Elektrotechnik und Informationstechnik" },
- { 16549, "Giddens Industries Inc" },
- { 16550, "Masters of Branding" },
- { 16551, "ComQuest Tecnologia" },
- { 16552, "Clear Communications Corporation" },
- { 16553, "MediaWorlds" },
- { 16554, "MDS Reprocessing" },
- { 16555, "Vassar College" },
- { 16556, "www.schenkman.com" },
- { 16557, "IRT Electronics Pty Ltd" },
- { 16558, "Jiangsu Yitong High-tech Co.,Ltd." },
- { 16559, "ALOC Bonnier A/S" },
- { 16560, "Dr. T\0303\0266pper Datentechnik" },
- { 16561, "Sandar TeleCast AS" },
- { 16562, "DePaul University" },
- { 16563, "InterSystems" },
- { 16564, "EVERSTREAM, INC." },
- { 16565, "Pine Digital Security" },
- { 16566, "R.T. Shin and Associates" },
- { 16567, "University of Belize" },
- { 16568, "FUKKEN CO.,LTD." },
- { 16569, "RealVision Inc." },
- { 16570, "linux-at-work.de" },
- { 16571, "Hungarian Telekom Plc. (formerly 'Westel Mobile Telecommunications Company Ltd.')" },
- { 16572, "Centro Tecnico per la Rete Unitaria della Pubblica Amministrazione" },
- { 16573, "ICP Europe PLC" },
- { 16574, "Ontario Systems" },
- { 16575, "Oops Org" },
- { 16576, "Novso" },
- { 16577, "Virtual Targets Center" },
- { 16578, "geos" },
- { 16579, "meurisse" },
- { 16580, "Swiftel Communications" },
- { 16581, "SIIG" },
- { 16582, "BOC ONCOLOGY CENTER" },
- { 16583, "NET6a" },
- { 16584, "EVPU a.s." },
- { 16585, "ISOLUTION S.C." },
- { 16586, "Pallas Athena B.V." },
- { 16587, "Global Locate, Inc" },
- { 16588, "SSI Micro, Ltd." },
- { 16589, "CNMP Networks, Inc." },
- { 16590, "Scytl Online World Security SA" },
- { 16591, "Avtec, Inc." },
- { 16592, "Laboratory Automation Inc." },
- { 16593, "STIXO" },
- { 16594, "EmbTek" },
- { 16595, "RE-Design" },
- { 16596, "TrendDiscovery Corporation" },
- { 16597, "Landala N\0303\0244t AB" },
- { 16598, "Ton- und Studiotechnik GmbH" },
- { 16599, "VasSol, Inc." },
- { 16600, "Marketing Resources, Inc." },
- { 16601, "Intrex" },
- { 16602, "IT-Vision AG" },
- { 16603, "AirMagnet, Inc." },
- { 16604, "The OpenSSL group" },
- { 16605, "Radiance BBS" },
- { 16606, "DELFI" },
- { 16607, "Distra Pty Ltd" },
- { 16608, "Tottori SANYO Electric Co.,Ltd." },
- { 16609, "Phalanyx" },
- { 16610, "Telemedia Software Corp." },
- { 16611, "QNET" },
- { 16612, "Zenon GmbH" },
- { 16613, "Cross" },
- { 16614, "Genome Sequencing Center" },
- { 16615, "Entrada Software, Inc." },
- { 16616, "DiscipleMakers, Inc." },
- { 16617, "Merlin Aviation Systems Ltd." },
- { 16618, "SAITC" },
- { 16619, "Bandspeed, Inc." },
- { 16620, "Bugalux Denmark A/S" },
- { 16621, "Computer Care, Inc." },
- { 16622, "IntelligentAgents" },
- { 16623, "Mobile Broadcasting Corporation" },
- { 16624, "Planetactive GmbH" },
- { 16625, "Ocado Limited" },
- { 16626, "Norkom Technologies Ltd." },
- { 16627, "Chang Industry, Inc." },
- { 16628, "pdxcolo.net" },
- { 16629, "Certeon Inc" },
- { 16630, "IntellAgent GmbH" },
- { 16631, "Bermuda Holding" },
- { 16632, "Seton Hall University" },
- { 16633, "Danamis Associates" },
- { 16634, "VoxAge Teleinformatica Ltda" },
- { 16635, "S-FRiENdS" },
- { 16636, "KTROAD, Ltd." },
- { 16637, "SANYCOM Technology Co.,Ltd" },
- { 16638, "AVL List GmbH" },
- { 16639, "SoftSolutions!" },
- { 16640, "X.net 2000 GmbH" },
- { 16641, "International Solar Energy Society" },
- { 16642, "The Amulet Group" },
- { 16643, "EXAGO" },
- { 16644, "Xtensive" },
- { 16645, "San Joaquin Valley College, Inc." },
- { 16646, "R. F. Systems, Inc." },
- { 16647, "Regal CineMedia" },
- { 16648, "Centos Prime" },
- { 16649, "Softel Systems Pty Ltd" },
- { 16650, "JSC Dalcombank" },
- { 16651, "Gift of the Givers Foundation" },
- { 16652, "ThunderGeek" },
- { 16653, "Eltron" },
- { 16654, "Electralink Ltd" },
- { 16655, "Lunar Gravity Networks" },
- { 16656, "m3production" },
- { 16657, "ING Direct" },
- { 16658, "ITA Software" },
- { 16659, "Computer Science House" },
- { 16660, "DMX Technologies" },
- { 16661, "TACteam GmbH" },
- { 16662, "CFS Global Services" },
- { 16663, "Westec Holding Company Ltd" },
- { 16664, "ACI Europe Ltd" },
- { 16665, "Estonian Business School Group" },
- { 16666, "PEC Products" },
- { 16667, "Freax Sistemas" },
- { 16668, "PCI Technologies Inc" },
- { 16669, "Freeland Haynes Limited" },
- { 16670, "Action Technologies, Inc" },
- { 16671, "American Physical Society" },
- { 16672, "AirFlow Networks" },
- { 16673, "Chris Mitchell" },
- { 16674, "Voyage Data, Inc." },
- { 16675, "Chace Community School" },
- { 16676, "Servibanca- Grupo BCP" },
- { 16677, "Centre of Medical Technology" },
- { 16678, "inX Services" },
- { 16679, "Sta Track Enterprise Limited" },
- { 16680, "Axia SuperNet Ltd" },
- { 16681, "Valid Solutions" },
- { 16682, "Xtrac Ltd" },
- { 16683, "IIT GmbH" },
- { 16684, "European Humanities University" },
- { 16685, "Optinel Systems" },
- { 16686, "Protego Networks, Inc." },
- { 16687, "Cyantel" },
- { 16688, "InfraSec Sweden AB" },
- { 16689, "Retalix" },
- { 16690, "Small Electric Motors Ltd" },
- { 16691, "Tekron Communication Systems Inc." },
- { 16692, "Optimal Technologies" },
- { 16693, "LongReach Telecommunications Pty Ltd" },
- { 16694, "Purple Sun" },
- { 16695, "CYGNUS MICROSYSTEMS PRIVATE LIMITED" },
- { 16696, "Decisiv Inc." },
- { 16697, "The Free Software Initiative of Japan" },
- { 16698, "SCS Entriprise Systems" },
- { 16699, "GYL" },
- { 16700, "Southwest Airlines Co." },
- { 16701, "Carlson Hospitality Worldwide" },
- { 16702, "Naval Research Laboratory" },
- { 16703, "University of Westminster" },
- { 16704, "Yaga, Inc." },
- { 16705, "Loyola Marymount University" },
- { 16706, "NavinMail Services (India) pvt ltd" },
- { 16707, "Exelixis Deutschland GmbH" },
- { 16708, "Wuhan Wearnes Technology CO,.Ltd(China)" },
- { 16709, "same" },
- { 16710, "Screaming Genius Meta Labs" },
- { 16711, "basis0.net" },
- { 16712, "ILB" },
- { 16713, "FH-Rosenheim" },
- { 16714, "Gossamer Group, LLC" },
- { 16715, "TRLabs Regina" },
- { 16716, "Unisyn Software, LLC" },
- { 16717, "University of Victoria" },
- { 16718, "GMV S.A." },
- { 16719, "SAS IRIS Technologies" },
- { 16720, "OSS Service" },
- { 16721, "Chronos Technology Ltd" },
- { 16722, "Methics Oy" },
- { 16723, "LawBase Technologies" },
- { 16724, "Fitzgerald Associates" },
- { 16725, "Itech Inc." },
- { 16726, "Dowslake Microsystems Corporation" },
- { 16727, "THALES AVIONICS" },
- { 16728, "Wolcott Systems Group, LLC" },
- { 16729, "Midling and Associates" },
- { 16730, "Higher Ground Networks LLC" },
- { 16731, "Industrial Medium" },
- { 16732, "Guardent, Inc." },
- { 16733, "ActiveLife Ltd." },
- { 16734, "Orbital Data Corporation" },
- { 16735, "TechnoCom Corporation" },
- { 16736, "JavaLi Ltd." },
- { 16737, "NeoTool Development, LLC" },
- { 16738, "InterVideo Inc." },
- { 16739, "CompanyName" },
- { 16740, "3C Limited" },
- { 16741, "Alexander M\0303\0274ller Informatik" },
- { 16742, "topteam Services GmbH" },
- { 16743, "Hessische Zentrale fuer Datenverarbeitung" },
- { 16744, "BLANKOM" },
- { 16745, "Alfa-Bank OJSC" },
- { 16746, "springtimesoft LTD (formerly 'norbu09.org')" },
- { 16747, "InterCommIT b.v." },
- { 16748, "Studentska Unie CVUT" },
- { 16749, "Extensible Systems Ltd." },
- { 16750, "Gee Broadcast Systems Ltd" },
- { 16751, "INSA, S.A." },
- { 16752, "4G Consulting Ltd." },
- { 16753, "dbNet Pty Ltd" },
- { 16754, "MERLIN, spol. s r.o." },
- { 16755, "DanuSys, Ltd." },
- { 16756, "Juasun.net" },
- { 16757, "IT SOFTWARE" },
- { 16758, "Lakeridge Health Corporation" },
- { 16759, "Central Missouri State University" },
- { 16760, "Internet Direct Inc." },
- { 16761, "New Mexico Tech" },
- { 16762, "Olson Technology, Inc." },
- { 16763, "EZ Web-Tech, Inc." },
- { 16764, "IDD Works Inc." },
- { 16765, "Schmitz-IT" },
- { 16766, "SV Systems" },
- { 16767, "Wonderline Rt." },
- { 16768, "Marine Interface Inc" },
- { 16769, "SV Systems" },
- { 16770, "Dave Dodge" },
- { 16771, "7seas Solutions Ltd." },
- { 16772, "University of California, Santa Barbara" },
- { 16773, "Sourwood Research" },
- { 16774, "4U S.r.l." },
- { 16775, "GIP-MDS" },
- { 16776, "mmit of ECNU" },
- { 16777, "Oxance" },
- { 16778, "Uniteam Init" },
- { 16779, "More-Secure B.V." },
- { 16780, "Pathway Computing, Inc" },
- { 16781, "WASP Systems Inc." },
- { 16782, "ClickCadence, LLC." },
- { 16783, "Abacus Technical Services" },
- { 16784, "Olson Technology, Inc." },
- { 16785, "Medizinische Universit\0303\0244t Wien" },
- { 16786, "Eosys srl" },
- { 16787, "T-Systems Nova International GmbH" },
- { 16788, "Information Technology Center (KYTP), Aristotle Univ. of Thessaloniki GREECE" },
- { 16789, "Berklee College of Music" },
- { 16790, "Myrio Corporation" },
- { 16791, "BRASCON" },
- { 16792, "Zapata Engineering, P.A." },
- { 16793, "University of New England" },
- { 16794, "Savant Technologies Private Ltd" },
- { 16795, "MRO - TEK LIMITED" },
- { 16796, "Institute of High Energy Physics ,Beijing,China" },
- { 16797, "InfoThuis Nieuwe Media BV" },
- { 16798, "Digital Technical Ltd., National Libaray of China" },
- { 16799, "XL Global Services Ltd." },
- { 16800, "IDYLIC" },
- { 16801, "Open Pricer" },
- { 16802, "i2Q Ltd" },
- { 16803, "Tetra Pak Information Management AB" },
- { 16804, "netcadabra" },
- { 16805, "Validus Medical Systems, Inc" },
- { 16806, "Dot New Media Ltd" },
- { 16807, "Millennium Digital Media" },
- { 16808, "hambrecht.org" },
- { 16809, "Payless Shoesource, Inc" },
- { 16810, "Along Software Developer WorkShop" },
- { 16811, "BlueTie, Inc." },
- { 16812, "UnixIron" },
- { 16813, "Micronet Communications,INC." },
- { 16814, "Quinsy B.V." },
- { 16815, "GlidePath BV" },
- { 16816, "Computer Plus GmbH" },
- { 16817, "De La Rue International Ltd" },
- { 16818, "United Media Company GmbH" },
- { 16819, "Priocom Corp." },
- { 16820, "SOC" },
- { 16821, "Institute for Advanced Study" },
- { 16822, "Scott L. H. Yuan" },
- { 16823, "Abeling-IT-Design" },
- { 16824, "OTAGAKI" },
- { 16825, "Network Technology" },
- { 16826, "Innomedia Technologies Private Limited" },
- { 16827, "Secure Systems Ltd." },
- { 16828, "IntelSoft Ltd." },
- { 16829, "DuckCorp" },
- { 16830, "Fidelity Information Services" },
- { 16831, "benhall.ca" },
- { 16832, "Auchan" },
- { 16833, "Logicworks Inc." },
- { 16834, "Hospital Billing Collection Service, Ltd. (HBCS)" },
- { 16835, "Dahle Consulting" },
- { 16836, "M2Studio Ltd." },
- { 16837, "Washington County" },
- { 16838, "Omron Corporation" },
- { 16839, "Rodion Software" },
- { 16840, "Shanghai E-Rom Communication Technology Co.,Ltd" },
- { 16841, "Ifeelnet" },
- { 16842, "In Phase Consulting" },
- { 16843, "BarcoVision" },
- { 16844, "CreaCare GmbH" },
- { 16845, "Electricit\0303\0251 de France - Gaz de France" },
- { 16846, "MPEC Wroclaw S.A." },
- { 16847, "Sakura Network Japan" },
- { 16848, "Independent Consulting Solutions Ltd." },
- { 16849, "BeyondData.net ITS" },
- { 16850, "13 Colonies Software" },
- { 16851, "rheingold Institut f\0303\0274r qualitative Markt- und Medienanalysen Gesellschaft b\0303\0274rgerlichen Rechts" },
- { 16852, "Telinfos" },
- { 16853, "barracuda digitale agentur GmbH" },
- { 16854, "STI Healthcare, Inc." },
- { 16855, "Metromorph Softworks Ruhri/List GbR" },
- { 16856, "Bradford Software Inc." },
- { 16857, "3 Bean" },
- { 16858, "Tall Maple Systems, Inc." },
- { 16859, "Multimedia Games, Inc." },
- { 16860, "Thomas Endo" },
- { 16861, "Wefi.Net IT Consulting" },
- { 16862, "ICONZ Ltd" },
- { 16863, "JSR.COM" },
- { 16864, "{M:U} Consulting" },
- { 16865, "ZIM Technologies International Inc." },
- { 16866, "Software North, Inc." },
- { 16867, "TIBCO Software, Inc. DSPG (formerly 'DataSynapse, Inc.')" },
- { 16868, "Conseil Internet & Logiciels Libres, J\0303\0251r\0303\0264me Alet" },
- { 16869, "ROMmon Ltd" },
- { 16870, "Banco do Estado do Rio Grande do Sul,S.A." },
- { 16871, "Tchibo Frisch-R\0303\0266st-Kaffee GmbH" },
- { 16872, "Collaborative Commerce Engines" },
- { 16873, "future gate group" },
- { 16874, "HiTRUST Incorporated" },
- { 16875, "Computer Plus GmbH" },
- { 16876, "KungFoo Coders" },
- { 16877, "All Media Banking BV" },
- { 16878, "Oldham Metropolitan Borough Council" },
- { 16879, "SCA Transforest AB" },
- { 16880, "zehome.com" },
- { 16881, "emni GmbH" },
- { 16882, "OpenEAI Software Foundation" },
- { 16883, "GKB Technology Co., Ltd" },
- { 16884, "(IPL) Instituto Polit\0303\0251cnico de Lisboa" },
- { 16885, "Nortel Networks" },
- { 16886, "Revelstone Technology" },
- { 16887, "IPLocks Inc." },
- { 16888, "Neutelligent.com" },
- { 16889, "MYIT.BIZ, Inc." },
- { 16890, "Technisys" },
- { 16891, "Meta GmbH" },
- { 16892, "Signalisation Ver-Mac, Inc." },
- { 16893, "Enterprise Rent-A-Car" },
- { 16894, "Cotelligent, Inc" },
- { 16895, "J.P. Evans, Inc." },
- { 16896, "SUNGARD Front Office Solutions" },
- { 16897, "sdata - C. Splittgerber Datentechnik" },
- { 16898, "Venture Industry International Corp." },
- { 16899, "Corvigo, Inc." },
- { 16900, "a metareal material" },
- { 16901, "Mojo Networks, Inc. (formerly 'Wibhu Technologies Pvt. Ltd.')" },
- { 16902, "APPLETZ CO., LTD." },
- { 16903, "TeleCats BV" },
- { 16904, "Aylesford Newsprint Limited" },
- { 16905, "Ginger Alliance Ltd." },
- { 16906, "Enertron LLC" },
- { 16907, "Truman State University" },
- { 16908, "Binary Ape" },
- { 16909, "Newberg Public Schools" },
- { 16910, "chinaunionpay" },
- { 16911, "General Wireless Scandinavia AB" },
- { 16912, "Bundesanstalt Statistik Oesterreich" },
- { 16913, "Open Network Solutions, Inc" },
- { 16914, "nuit.ca" },
- { 16915, "The Hal Lewis Group, Inc." },
- { 16916, "ma-planete" },
- { 16917, "Seecago" },
- { 16918, "AEIIE - ARISE" },
- { 16919, "Augsburger Computer Forum e.V." },
- { 16920, "ARTE G.E.I.E" },
- { 16921, "HWACOM SYSTEMS INC." },
- { 16922, "ville d'Echirolles" },
- { 16923, "RTV Slovenija, Javni zavod" },
- { 16924, "British Sky Broadcasting Ltd" },
- { 16925, "IGA-PEGASE" },
- { 16926, "Systemberatung Axel Dunkel GmbH" },
- { 16927, "MLB Associates" },
- { 16928, "Mark South West" },
- { 16929, "University of California, Merced" },
- { 16930, "CAM Security and Connections B.V." },
- { 16931, "Sandwell Technologies, Inc." },
- { 16932, "DICOM Group" },
- { 16933, "ALC Computertechnik GmbH" },
- { 16934, "Marian Bracinik" },
- { 16935, "Espoo-Vantaa Institute of Technology" },
- { 16936, "Databay AG" },
- { 16937, "e-Wriedt" },
- { 16938, "Sensational AG" },
- { 16939, "Addix Internet Services GmbH" },
- { 16940, "CryptoGram SA" },
- { 16941, "Oakley, Inc." },
- { 16942, "TRX" },
- { 16943, "Overture Networks, Inc. (formerly 'Ceterus Networks')" },
- { 16944, "Seven Blades" },
- { 16945, "Grupo de Usuarios de Linux de Canarias" },
- { 16946, "Litchfield Communications, Inc." },
- { 16947, "Program Line" },
- { 16948, "RHODITECH" },
- { 16949, "Mobifon S.A." },
- { 16950, "AOM Active Online Marketing GmbH" },
- { 16951, "COGEMA LA HAGUE" },
- { 16952, "Eisodus Networks Pvt. Ltd" },
- { 16953, "TECCO Software Entwicklung AG" },
- { 16954, "Software Poetry, Inc." },
- { 16955, "modulus-systems GmbH & Co. KG" },
- { 16956, "InboxCop, Inc." },
- { 16957, "FioNet Internet Services" },
- { 16958, "Instituto Tecnol\0303\0263gico y de Energ\0303\0255as Renovables, S.A." },
- { 16959, "Cipher Security Services, Inc." },
- { 16960, "Darron Nesbitt" },
- { 16961, "Vaisala" },
- { 16962, "Seven Levels Consultants AB" },
- { 16963, "Intuwave Ltd." },
- { 16964, "nonap" },
- { 16965, "AUNA TLC" },
- { 16966, "Kiff Analytical, LLC" },
- { 16967, "University Texas Medical Branch Galveston" },
- { 16968, "Magnifire" },
- { 16969, "eyebits studios" },
- { 16970, "Coublis Ltd" },
- { 16971, "Lemche Net" },
- { 16972, "DSL Terminal Remote Management Alliance" },
- { 16973, "CITS Group Inc." },
- { 16974, "WORLDMINGO" },
- { 16975, "Horst Thiele - Maschinenbau - Hydraulische Geraete GmbH" },
- { 16976, "S.I.D.E. Resources & Development" },
- { 16977, "Zwi1zek Bankow Polskich" },
- { 16978, "Medical Insight A/S" },
- { 16979, "M2 Ingenierie et Conseil SARL" },
- { 16980, "Jacob & Sundstrom, Inc." },
- { 16981, "ITG Inc." },
- { 16982, "Masaryk University" },
- { 16983, "CINECA" },
- { 16984, "Exacore Consolidated Systems" },
- { 16985, "Global Technology Co.,Ltd." },
- { 16986, "FACTOR SPE" },
- { 16987, "Esker SA" },
- { 16988, "The Manufacturers Life Insurance Company" },
- { 16989, "KiSP, Inc." },
- { 16990, "Print Inc." },
- { 16991, "Starsoft" },
- { 16992, "The Halifax Herald Limited" },
- { 16993, "Norsec" },
- { 16994, "Key Circle" },
- { 16995, "elego Software Solutions GmbH" },
- { 16996, "Aboriginal Sports and Recreation Association of BC" },
- { 16997, "Innovative Consultants, LLC" },
- { 16998, "Intoto Inc." },
- { 16999, "Cortinovis S.A." },
- { 17000, "Centre de Telecomunicacions i TI de la Generalitat de Catalunya" },
- { 17001, "Act Technology Co.,Ltd." },
- { 17002, "Copsey Communications Projects" },
- { 17003, "University Of Dundee" },
- { 17004, "Israel InterUniversity Computation Center" },
- { 17005, "Mangrove Systems, Inc." },
- { 17006, "Spherion" },
- { 17007, "Cool IT" },
- { 17008, "Clever Age SARL" },
- { 17009, "imove" },
- { 17010, "hopecom optic communication Ltd." },
- { 17011, "Metadata Systems, Inc." },
- { 17012, "eCareme Technologies, Inc." },
- { 17013, "Guaranty Technology Corp." },
- { 17014, "Izumi Cyber Networks Inc." },
- { 17015, "manage.it GmbH & Co. KG" },
- { 17016, "Info Jure Knowledge Ltd." },
- { 17017, "CyberTech de Colombia Ltd." },
- { 17018, "Silikone.com" },
- { 17019, "Heinrich Berndes Haushaltstechnik GmbH&Co. KG" },
- { 17020, "IRSN" },
- { 17021, "University of Central Florida" },
- { 17022, "Avista Labs Inc." },
- { 17023, "Apptera" },
- { 17024, "Jackson Local School District" },
- { 17025, "Rether Networks Inc." },
- { 17026, "dotNSF, Inc." },
- { 17027, "YAAO" },
- { 17028, "MarketXS.com BV" },
- { 17029, "baumer it-services (formerly '0mode')" },
- { 17030, "Velveo" },
- { 17031, "Cluster Labs GmbH" },
- { 17032, "City of Helsinki" },
- { 17033, "Medical University of South Carolina" },
- { 17034, "NHN Corp." },
- { 17035, "Cerberian Inc" },
- { 17036, "Alisys Software S.L." },
- { 17037, "Brannstroms Elektronik AB" },
- { 17038, "Federal State Unitary Enterprise \"Production Company 'Start'\"" },
- { 17039, "Vontu, Inc" },
- { 17040, "Integrits Corporation" },
- { 17041, "TeleDomani, Inc." },
- { 17042, "Consultores Globales Online S.L." },
- { 17043, "PC-Repair Aalestrup" },
- { 17044, "Red Fig Ltd" },
- { 17045, "Network Technologies Group" },
- { 17046, "ErrorNet" },
- { 17047, "Eurofresh.inc" },
- { 17048, "Ashland Inc." },
- { 17049, "Eurospider Information Technology A.G." },
- { 17050, "MediaSonic" },
- { 17051, "Last Minute Network Limited" },
- { 17052, "A Plus Marketing" },
- { 17053, "www.slavel.ru" },
- { 17054, "Severoceska plynarenska, a.s." },
- { 17055, "MoshJahan Ltd" },
- { 17056, "Fusion Network Services Corp." },
- { 17057, "Victor-Sierra" },
- { 17058, "National Radio Astronomy Observatory" },
- { 17059, "Cookingwise" },
- { 17060, "zetein.net" },
- { 17061, "Shanghai 4U Network Tech.Co.,Ltd." },
- { 17062, "ArielServices" },
- { 17063, "Lightship Telecom, LLC" },
- { 17064, "CSX Technologies" },
- { 17065, "Zions Bancorporation" },
- { 17066, "Collaboratech, Inc." },
- { 17067, "Padimax Limited" },
- { 17068, "Jcast Networks Corp." },
- { 17069, "Leucotron Equipamentos Ltda." },
- { 17070, "Hi De Ho" },
- { 17071, "Prime Electronics & Satellitics Inc." },
- { 17072, "Transgate" },
- { 17073, "Universitaetsklinikum Freiburg" },
- { 17074, "Senatsverwaltung fuer Gesundheit, Soziales und Verbraucherschutz Berlin" },
- { 17075, "Edwin L. Cox School of Business" },
- { 17076, "EXCELLENCE High Tech - Georgia LTD." },
- { 17077, "Girit Projects Inc." },
- { 17078, "Innovation Software Group, LLC" },
- { 17079, "AppIQ, Inc." },
- { 17080, "BeTrained, Baumgartner KEG" },
- { 17081, "M.F. van Loon" },
- { 17082, "Oregon University System" },
- { 17083, "COMPART MEDICAL SYSTEMS" },
- { 17084, "HON HAI PRECISION IND. CO., LTD." },
- { 17085, "Beijing BU Telecom Tech co.,Ltd" },
- { 17086, "BIK Aschpurwis + Behrens GmbH" },
- { 17087, "GrECo International AG" },
- { 17088, "sichuan wisesoft Ltd." },
- { 17089, "Universit\0303\0244t Paderborn, Zentrum IT-Dienste" },
- { 17090, "Packetizer, Inc." },
- { 17091, "Ciphire Labs" },
- { 17092, "MediaRing Limited" },
- { 17093, "Ellemedia Technologies Ltd." },
- { 17094, "Blueslice Networks Inc." },
- { 17095, "Microchip Technology Inc." },
- { 17096, "Invesco Institutional, Fixed Income Group" },
- { 17097, "Weltek Technologies Co., Ltd." },
- { 17098, "Innomenta GmbH & Co. KG" },
- { 17099, "TellusTech Ltd." },
- { 17100, "Fabasoft R&D Software GmbH & Co KG" },
- { 17101, "InternetNu" },
- { 17102, "Bororos" },
- { 17103, "Biznet Information Systems and Consultancy" },
- { 17104, "1-800 Communications, Inc." },
- { 17105, "Insignia Solutions" },
- { 17106, "GlobNIX" },
- { 17107, "The Konopka Corporation" },
- { 17108, "Vinci Systems, Inc." },
- { 17109, "Chotaro Co." },
- { 17110, "Institut de Recherche pour le D\0303\0251veloppement (IRD)" },
- { 17111, "JMSE" },
- { 17112, "Axstone Co., Ltd." },
- { 17113, "EvoNet Computer Network Evolution GmbH" },
- { 17114, "Keyrus S.A." },
- { 17115, "D-APP-X Corporation" },
- { 17116, "GMA COMMUNICATION MANUFACTURING & MARKETING 1991 LTD." },
- { 17117, "Advantage Sales & Marketing" },
- { 17118, "Byram Healthcare Centers, Inc." },
- { 17119, "OctetString, Inc" },
- { 17120, "Team Cool Networks" },
- { 17121, "Geronimo Group Inc." },
- { 17122, "Apogent Technologies Inc." },
- { 17123, "Tavata Software Corporation" },
- { 17124, "Psycat Group" },
- { 17125, "Eze Castle Integration, Inc." },
- { 17126, "Nova Engineering, Inc." },
- { 17127, "Kilowatt Networking, Inc." },
- { 17128, "mg2.org" },
- { 17129, "Zaclick Co.,Ltd" },
- { 17130, "antiquity books" },
- { 17131, "Rectifier Technologies Pacific Pty Ltd" },
- { 17132, "Shanghai Dare Opto-electronic Communication Co.,Ltd" },
- { 17133, "ILWOO DATA & TECHNOLOGY Co.,LTD" },
- { 17134, "Good Health Network, Inc" },
- { 17135, "Raaijmakers" },
- { 17136, "PLG AG" },
- { 17137, "GradSoft Ltd." },
- { 17138, "INHOLLAND Universities" },
- { 17139, "Internet Gold" },
- { 17140, "Versatel Nederland B.V." },
- { 17141, "Incenti S.A." },
- { 17142, "Static Bytes" },
- { 17143, "Georg-Hewegh-Oberschule" },
- { 17144, "State University of New York at Stony Brook" },
- { 17145, "Rusch Consultancy B.V." },
- { 17146, "UVHC" },
- { 17147, "Eastern Illinois University" },
- { 17148, "iBurst Forum" },
- { 17149, "Lodestar Technology Ltd" },
- { 17150, "simatika" },
- { 17151, "COGNICA Ltd" },
- { 17152, "creamen" },
- { 17153, "University of Connecticut" },
- { 17154, "Kittredge Archery Co. Inc." },
- { 17155, "VoiceAge Corporation" },
- { 17156, "Zone Labs, Inc" },
- { 17157, "Chengdu Runwang Tchnology Co. LTD" },
- { 17158, "Laurasia Computing" },
- { 17159, "Henri Maire SA" },
- { 17160, "Lund University Hospital" },
- { 17161, "Covisint LLC" },
- { 17162, "Airversal Technology Inc" },
- { 17163, "Riverbed Technology, Inc." },
- { 17164, "Callcast, Inc." },
- { 17165, "Advantest R&D Center, Inc." },
- { 17166, "Louisiana State University and A&M College" },
- { 17167, "Daotec Ltd." },
- { 17168, "Century 21 Mike Bowman, Inc." },
- { 17169, "Diablotin" },
- { 17170, "Universit\0303\0251 Henri Poincar\0303\0251 - Nancy 1 -" },
- { 17171, "Qindel" },
- { 17172, "Melco International Development Ltd." },
- { 17173, "Squeeky Clean" },
- { 17174, "Iridium Systems (Hangzhou) Limited" },
- { 17175, "shanghai letel communications Co., Ltd" },
- { 17176, "Perm State Pedagogical University" },
- { 17177, "TIS Inc." },
- { 17178, "VERA Autonoom Provinciebedrijf" },
- { 17179, "Diaz" },
- { 17180, "Altibase" },
- { 17181, "Dantek Computer Systems, Inc." },
- { 17182, "CCC Data Oy" },
- { 17183, "Yang Mei Technology Co., LTD." },
- { 17184, "ProLAN" },
- { 17185, "Richemont Group" },
- { 17186, "MEDIA LINKS Co.,LTD." },
- { 17187, "Onaro Inc." },
- { 17188, "GigaClue" },
- { 17189, "Ingrafted Software Inc." },
- { 17190, "Fulcrum Microsystems, Inc." },
- { 17191, "Universidad de La Laguna" },
- { 17192, "Emprisa Networks" },
- { 17193, "dbc Digital Broadcast Consulting GmbH" },
- { 17194, "Whoopy Engineering Ltd." },
- { 17195, "Securesoft Systems, Inc." },
- { 17196, "CacheLogic Ltd." },
- { 17197, "Relicore, Inc." },
- { 17198, "martinskafte.dk" },
- { 17199, "Ministry of Fisheries - NZ" },
- { 17200, "Optus Internet Engineering" },
- { 17201, "Digital Item" },
- { 17202, "NEC informatec systems,ltd." },
- { 17203, "Pekarek Handelsges.m.b.H" },
- { 17204, "IIM CORPORATION" },
- { 17205, "ARPENT ENTERPRISES" },
- { 17206, "Open Stock Company \0302\0253Oskol Electrometallurgical Kombinat\0302\0273" },
- { 17207, "Cloverleaf Communications Inc." },
- { 17208, "Fa Nea Sj\0303\0266holm" },
- { 17209, "Strategic Systems Consultants Ltd." },
- { 17210, "GZS Gesellschaft fuer Zahlungssysteme mbH" },
- { 17211, "Potronics sp. z o.o." },
- { 17212, "AWETA b.v." },
- { 17213, "DAY-S.COM" },
- { 17214, "Network Designers Ltd." },
- { 17215, "Institute of Linguistic Studies" },
- { 17216, "Triplanet Partners LLC" },
- { 17217, "University of Richmond" },
- { 17218, "Union Internationale des Chemins de Fer" },
- { 17219, "NsTEL Inc." },
- { 17220, "eBenX, Inc." },
- { 17221, "CHBE UBC" },
- { 17222, "Sierhuis Digitale Diensten" },
- { 17223, "Cena Salvatore" },
- { 17224, "Newbury Networks" },
- { 17225, "ispi of Lincoln, Inc" },
- { 17226, "BC5 Technologies Inc." },
- { 17227, "DMP Initiatives" },
- { 17228, "Kommando" },
- { 17229, "Miracle Group, Ltd." },
- { 17230, "UniqMinds Ltd." },
- { 17231, "Otto UK" },
- { 17232, "PANNOCOM Ltd." },
- { 17233, "ICODEX Software AG" },
- { 17234, "ET Enterprise Technologies srl" },
- { 17235, "2e Systems GmbH" },
- { 17236, "Shout Telecoms Limited" },
- { 17237, "S.P.E.Sistemi e Progetti Elettronici s.a.s. di P.Prandini & C" },
- { 17238, "NsTEL Inc." },
- { 17239, "Plan B Email Services, LLC" },
- { 17240, "Spread Teleinform\0303\0241tica Ltda" },
- { 17241, "Federal Trade Commission" },
- { 17242, "Mission Vi" },
- { 17243, "World Access Canada Inc." },
- { 17244, "Briteace Enterprise Pte Ltd" },
- { 17245, "Genentech, Inc." },
- { 17246, "FreeSNMP" },
- { 17247, "SBC Internet Services" },
- { 17248, "Gemstone Communications, Inc" },
- { 17249, "VAN Company Ltd." },
- { 17250, "Yore Elektronik Yayimcilik A.S." },
- { 17251, "WeRMSPoWKe" },
- { 17252, "MS Global Consulting GmbH" },
- { 17253, "Arcada Polytechnic" },
- { 17254, "Goad.US" },
- { 17255, "Vidyatel Ltd." },
- { 17256, "CL-NET s.r.o." },
- { 17257, "Initial Security Limited" },
- { 17258, "DRQ Sp. z o.o." },
- { 17259, "Manex" },
- { 17260, "Numinatek Co." },
- { 17261, "RJWare, Inc" },
- { 17262, "Devonshire Group, Inc" },
- { 17263, "Alpes Team" },
- { 17264, "Mount Clemens General Hospital" },
- { 17265, "Escape OE" },
- { 17266, "California Internet Inc" },
- { 17267, "Hitachi Computer Products (Europe) S.A.S" },
- { 17268, "ABB Process Analytics" },
- { 17269, "Hansa JSC" },
- { 17270, "Comcast Corporation" },
- { 17271, "Sunshine Village Ski & Snowboard Resort" },
- { 17272, "akashic Inc." },
- { 17273, "The Rabbithole Org." },
- { 17274, "Nevis Networks Inc." },
- { 17275, "MicroBit" },
- { 17276, "Colegio de Registradores de la Propiedad y Mercantiles de Espa\0303\0261a" },
- { 17277, "TUI Nederland N.V." },
- { 17278, "IZB-Soft" },
- { 17279, "Stowe Holdings (Pty) Ltd" },
- { 17280, "Fadesa Inmobiliaria" },
- { 17281, "Luther College" },
- { 17282, "Abhai Inc." },
- { 17283, "YACME S.r.l." },
- { 17284, "UNICOM UNIversal computer COMmunication, spol. s r.o." },
- { 17285, "DOBS" },
- { 17286, "Steuerungs- & Netzwerktechnik" },
- { 17287, "Pacific Life" },
- { 17288, "VicSuper" },
- { 17289, "LinuxHQ" },
- { 17290, "Key Digital Solutions Ltd." },
- { 17291, "Mithra Biodindustry Co., Ltd" },
- { 17292, "NXN Software AG" },
- { 17293, "DavidRLee" },
- { 17294, "Agile Teamwork, Inc." },
- { 17295, "WestNoble" },
- { 17296, "Fourth Corner Systems" },
- { 17297, "Sine Nomine Associates" },
- { 17298, "BlueWater Technologies Inc" },
- { 17299, "vMoksha Technologies Private Limited" },
- { 17300, "Axxius b.v." },
- { 17301, "AllServe Automatisering B.V." },
- { 17302, "Iconology Ltd" },
- { 17303, "Paramount Pictures" },
- { 17304, "Layer 7 Technologies Inc." },
- { 17305, "Aeras Networks" },
- { 17306, "Armenian e-Science Foundation (ArmeSFo)" },
- { 17307, "Tribunal Regional do Trabalho da 15\0302\0252 Regi\0303\0243o" },
- { 17308, "Digimedworx" },
- { 17309, "Saudi Arabian Monetary Agency (SAMA)" },
- { 17310, "Vanquish International Ltd." },
- { 17311, "Myllykoski Corp." },
- { 17312, "Shizuoka System Technology" },
- { 17313, "Ratiodata GmbH" },
- { 17314, "Soltim" },
- { 17315, "EtherAddress.com" },
- { 17316, "Peoria Christian School" },
- { 17317, "MassiveEgo" },
- { 17318, "Media5 Corporation (formerly 'M5T Centre d'Excellence en Telecom Inc.')" },
- { 17319, "JC Computing" },
- { 17320, "J&M Crowther Ltd." },
- { 17321, "Calpine" },
- { 17322, "SOFTLAND" },
- { 17323, "Datatekniska Byr\0303\0245n" },
- { 17324, "YDI Wireless Inc." },
- { 17325, "Babastik" },
- { 17326, "AC Camerfirma, S.A." },
- { 17327, "City of Northglenn" },
- { 17328, "Imenta Sweden AB" },
- { 17329, "School of Information Technology, Universiti Utara Malaysia" },
- { 17330, "Zetta Systems, Inc." },
- { 17331, "30San Information System Co.,Ltd." },
- { 17332, "Pete Attkins Engineering Ltd" },
- { 17333, "Critical Networks, Inc." },
- { 17334, "DN-Solutions" },
- { 17335, "UPM-Kymmene Corporation" },
- { 17336, "Bank of Russia" },
- { 17337, "Solace Systems, Inc." },
- { 17338, "IBS Technology & Services" },
- { 17339, "SAFA GALENICA, S.A." },
- { 17340, "Microtest Ltd" },
- { 17341, "Fonner Consulting" },
- { 17342, "Danske Gymnasieelevers Sammenslutning" },
- { 17343, "Edula" },
- { 17344, "OFSET" },
- { 17345, "fusionOne, Inc." },
- { 17346, "AlienForceIT" },
- { 17347, "Hilti Corporation" },
- { 17348, "USTC E-Business Technology Company" },
- { 17349, "DELTA N.V." },
- { 17350, "OnRelay Ltd" },
- { 17351, "Simmons College" },
- { 17352, "FrancisScott Communications LLC" },
- { 17353, "VisSim AS" },
- { 17354, "Zone Trading Partners" },
- { 17355, "Cirrus Multimedia Limited" },
- { 17356, "RiskMetrics Group Inc." },
- { 17357, "Derks.IT" },
- { 17358, "Fulford Consulting Ltd" },
- { 17359, "net9" },
- { 17360, "T&J Computer Systems" },
- { 17361, "Infoscience Corporation" },
- { 17362, "Asia Pacific Bioinformatics Network (APBioNet)" },
- { 17363, "SANYO DDP-BU" },
- { 17364, "SITELI" },
- { 17365, "SISSA - ISAS Scuola Internazionale Superiore di Studi Avanzati" },
- { 17366, "Torbay Council" },
- { 17367, "Grep AS" },
- { 17368, "PIFAUT" },
- { 17369, "sustainable development networking programme" },
- { 17370, "OnRelay Ltd" },
- { 17371, "4DotNet oHG" },
- { 17372, "iFoni Cellular Services" },
- { 17373, "IT Watchdogs, Inc." },
- { 17374, "Clearfield Knowledge Solutions Ltd." },
- { 17375, "Image Analysis,Inc." },
- { 17376, "Intelcom San Marino S.p.A." },
- { 17377, "aesys spa" },
- { 17378, "Interlink Software Services Ltd" },
- { 17379, "University of Applied Sciences Wolfenbuettel" },
- { 17380, "Spazio ZeroUno SpA" },
- { 17381, "The Kinkaid School" },
- { 17382, "VAI bv" },
- { 17383, "EASY SOFTWARE" },
- { 17384, "Contemporary Control Systems, Inc." },
- { 17385, "Appriss, Inc" },
- { 17386, "iCanSP, inc" },
- { 17387, "Frontier Financial" },
- { 17388, "Allen Systems Group INC" },
- { 17389, "Core NAP, L.P." },
- { 17390, "Family Video" },
- { 17391, "NOSE Applied Intelligence AG" },
- { 17392, "Abucco Technologies Inc." },
- { 17393, "Allen Systems Group INC" },
- { 17394, "BRAINBOW EDV-Beratung GmbH" },
- { 17395, "Beijing Founder Electronic Co.,Ltd." },
- { 17396, "Sapura Advance Systems Sdn Bhd" },
- { 17397, "BVE des Kantons Bern" },
- { 17398, "HBhard, spol. s.r.o." },
- { 17399, "AKiT Ltd." },
- { 17400, "tourisline AG" },
- { 17401, "Lands' End, Inc." },
- { 17402, "Sevis Systems, Inc." },
- { 17403, "Oklahoma Department of Career and Technology Education" },
- { 17404, "WebundCo GmbH & CoKG" },
- { 17405, "Telecommunications Industry Association TR8dot5" },
- { 17406, "HITS" },
- { 17407, "OmegaWare Systems Ltd." },
- { 17408, "HICOM COMUNICA\0303\0207\0303\0203O INTEGRADA LTDA." },
- { 17409, "National Standardization Committee of Radio & Television" },
- { 17410, "SOPRA GROUP" },
- { 17411, "newsky software" },
- { 17412, "GateConnect Technologies GmbH" },
- { 17413, "Ministerio del Interior - Espa\0303\0261a" },
- { 17414, "vzw CDS" },
- { 17415, "PUCRS" },
- { 17416, "Root IT" },
- { 17417, "Portiva Corporation" },
- { 17418, "Mahanaxar Networks" },
- { 17419, "Lincoln Investment Planning, Inc" },
- { 17420, "DigiPower Manufacturing Inc." },
- { 17421, "H\0303\0264pital de la ville d'Esch-sur-Alzette" },
- { 17422, "Real Enterprise Solutions Development B.V." },
- { 17423, "Multidata Gesellschaft f\0303\0274r Datentechnik und Informatik mbH" },
- { 17424, "Chart Pilot Ltd." },
- { 17425, "ilink Kommunikationssysteme GmbH" },
- { 17426, "Sega.com, Inc." },
- { 17427, "ABYZ Inform\0303\0241tica LTDA" },
- { 17428, "WebDesign BK" },
- { 17429, "Michael Telecom AG" },
- { 17430, "TCL NETWORK EQUIPMENT (SHENZEHN) CO., LTD." },
- { 17431, "shenzhen SDG Information Co.,Ltd. STEC Telecom Branch" },
- { 17432, "Georgia Perimeter College" },
- { 17433, "pieas educational institute" },
- { 17434, "THERALYS" },
- { 17435, "BEAC" },
- { 17436, "Worlight International" },
- { 17437, "Insurance Corporation of British Columbia" },
- { 17438, "Novannet, LLC" },
- { 17439, "Panasonic Avionics Corporation (formerly 'Matsushita Avionics Systems Corporation')" },
- { 17440, "Omnipod, Inc." },
- { 17441, "Unholy.org" },
- { 17442, "Iter8 Inc." },
- { 17443, "Gerd Koslowski" },
- { 17444, "wrevak.net" },
- { 17445, "FEAS v.o.f." },
- { 17446, "Stefan Drees" },
- { 17447, "STATE MACHINE" },
- { 17448, "Fabrice Co." },
- { 17449, "KLS Air Express Inc." },
- { 17450, "WFW.org" },
- { 17451, "Unassigned" },
- { 17452, "Visy Industries Holdings Pty Ltd" },
- { 17453, "Billion Electric Co., Ltd." },
- { 17454, "Integuru Inc." },
- { 17455, "K-BEST TECHNOLOGY INC." },
- { 17456, "Jigsaw Systems" },
- { 17457, "UTi Worldwide" },
- { 17458, "Connect Internet Solutions PTY LTD" },
- { 17459, "Mibtree Ltd" },
- { 17460, "Revelant Technologies" },
- { 17461, "Pryde Systems and Software" },
- { 17462, "Akamai Technologies, Inc." },
- { 17463, "Demarc Security, Inc." },
- { 17464, "O1 Communications" },
- { 17465, "TruSystems, Inc" },
- { 17466, "Wooju Communications CO.,LTD." },
- { 17467, "Gamer's Valhalla Pty. Ltd." },
- { 17468, "ICONAG AG" },
- { 17469, "BioWisdom Ltd." },
- { 17470, "Str\0303\0245lfors AB" },
- { 17471, "Actona Technologies, Inc" },
- { 17472, "Tetraplex Ltd." },
- { 17473, "Telluce Corporation" },
- { 17474, "CRM-Informatik GmbH" },
- { 17475, "Genetec Information Systems" },
- { 17476, "V-ONE Corporation" },
- { 17477, "Trailblazer Systems Inc." },
- { 17478, "Nexadesic, Inc." },
- { 17479, "One Unified" },
- { 17480, "Choice Communications" },
- { 17481, "Logic Fusion" },
- { 17482, "Ogmios.ca" },
- { 17483, "Hong Kong School Net Ltd." },
- { 17484, "Adyoron Intelligent Systems Ltd." },
- { 17485, "HierWeb" },
- { 17486, "EDS Deutschland GmbH" },
- { 17487, "Manchester Airport" },
- { 17488, "GENERAL TOUCH TECHNOLOGY CO.,LTD" },
- { 17489, "Curtis Consulting LLC" },
- { 17490, "DM Trucking" },
- { 17491, "Barix AG" },
- { 17492, "Northco.net" },
- { 17493, "Halliburton Company" },
- { 17494, "Matthias Rath, Inc." },
- { 17495, "Gardel Software" },
- { 17496, "Canadian Broadcasting Corporation" },
- { 17497, "Tallinn School No. 21" },
- { 17498, "Kommunale Datenverarbeitung Oldenburg" },
- { 17499, "Packetsurge" },
- { 17500, "Georgia Gwinnett College" },
- { 17501, "Drake University" },
- { 17502, "Newfield Automation" },
- { 17503, "TechForge Software" },
- { 17504, "Security Wizard" },
- { 17505, "Wamin Optocomm Mfg.corporation" },
- { 17506, "Eulerian Technologies, Sarl" },
- { 17507, "omnidata" },
- { 17508, "Sotrange Transportes Rodovi\0303\0241rios Ltda." },
- { 17509, "Versatel Networks Inc." },
- { 17510, "GoldenHope" },
- { 17511, "XtremeX Corporation" },
- { 17512, "Flinders University" },
- { 17513, "RVA" },
- { 17514, "FDF, Frivilligt Drenge- og Pige-Forbund" },
- { 17515, "BNSF Railway Inc." },
- { 17516, "Nighthawk Radiology Services" },
- { 17517, "Clementi Software" },
- { 17518, "Comba Telecom System(Guang Zhou) Ltd." },
- { 17519, "InteliTrac, Inc." },
- { 17520, "Easton Technologies Inc." },
- { 17521, "RealEast Networks" },
- { 17522, "Ozitem" },
- { 17523, "FiberLan GmbH" },
- { 17524, "Ferrari electroni AG" },
- { 17525, "Amsterdam Internet Exchange B.V." },
- { 17526, "symentis GmbH" },
- { 17527, "FORMWARE GmbH" },
- { 17528, "KMS Internet Solution Providers Ltd" },
- { 17529, "FeldTech" },
- { 17530, "Chernigov State Technological University" },
- { 17531, "Henrico County Public Schools" },
- { 17532, "BSI Informatica Ltda" },
- { 17533, "Association KAZAR" },
- { 17534, "Optelecom Inc." },
- { 17535, "EGT Inc." },
- { 17536, "Telenity, Inc." },
- { 17537, "Florence Public School District One" },
- { 17538, "Village Grille Family Diner" },
- { 17539, "MXC Software" },
- { 17540, "TB-Solutions Advanced Technologies S.L." },
- { 17541, "Lamda Inc." },
- { 17542, "TFS Technology Inc" },
- { 17543, "ADUNEO" },
- { 17544, "BSP Partners GmbH" },
- { 17545, "Wirefree Innovision pvt ltd" },
- { 17546, "Magno Comunicacoes Ltda." },
- { 17547, "Centre for Good Governance" },
- { 17548, "Air2Web, Inc." },
- { 17549, "LogicLibrary Inc." },
- { 17550, "True Blade Systems, Inc." },
- { 17551, "Kmart Corporation" },
- { 17552, "NKI/AvL" },
- { 17553, "Telefonica Data Colombia S.A." },
- { 17554, "PODi - the Digital Printing initiative" },
- { 17555, "Webster University" },
- { 17556, "MAXINA GmbH" },
- { 17557, "Tokyo Woman's Christian University" },
- { 17558, "Moveo Systemy Teleinformatyczne" },
- { 17559, "The Art Institute of Chicago" },
- { 17560, "NETFORYOU CO.,LTD." },
- { 17561, "CLink" },
- { 17562, "Expect Technology" },
- { 17563, "ENCODE SA" },
- { 17564, "www.portocervo.cc" },
- { 17565, "Rural Servicios Inform\0303\0241ticos S. C." },
- { 17566, "EFG EUROBANK ERGASIAS A.E." },
- { 17567, "Certimail SA" },
- { 17568, "SLAT SA" },
- { 17569, "Schranzhofer DIAS" },
- { 17570, "IFS audiovisuals" },
- { 17571, "Glensound Electronics Ltd." },
- { 17572, "Mainframe Oy" },
- { 17573, "Secretaria das Finan\0303\0247as do Estado da Para\0303\0255ba" },
- { 17574, "Oxford Microsystems" },
- { 17575, "Lebenshilfe Niederoesterreich" },
- { 17576, "mahalingam & co." },
- { 17577, "Ralf Bisges Informationstechnik" },
- { 17578, "Berlitz International, Inc." },
- { 17579, "Groove Media" },
- { 17580, "Telefonica Data Colombia S.A." },
- { 17581, "Hofmann Software Engineering International" },
- { 17582, "Loran Technologie" },
- { 17583, "Information Technologies Australia Pty Ltd" },
- { 17584, "United Network Communication Corp." },
- { 17585, "Compusys" },
- { 17586, "BANDAI NETWORKS CO., LTD." },
- { 17587, "Laserbit Communications Corporation" },
- { 17588, "GLOBAL ELECTRICITY CO., LTD." },
- { 17589, "AMEC SPIE Communications" },
- { 17590, "Orbis Terrarum Networks" },
- { 17591, "The Defender Association" },
- { 17592, "Javacise Software" },
- { 17593, "eath Co.,Ltd." },
- { 17594, "Simitel S. de R.L. de C.V." },
- { 17595, "SEU" },
- { 17596, "DigiOnline GmbH" },
- { 17597, "IntraData BV" },
- { 17598, "Jouve SI" },
- { 17599, "Northern Alberta Institute of Technology" },
- { 17600, "CHUQ" },
- { 17601, "Group One Trading, LP" },
- { 17602, "Midnight Linux" },
- { 17603, "surespeed" },
- { 17604, "ScySoft Multimedia" },
- { 17605, "Jens Br\0303\0244uer" },
- { 17606, "helloWorld Inc." },
- { 17607, "RETIA, Inc" },
- { 17608, "GIE AGORA" },
- { 17609, "AZ Mercury Ltd." },
- { 17610, "Sadhu Software Services Pvt. Ltd." },
- { 17611, "eXc Software, LLC" },
- { 17612, "Groupe Caisse d'Epargne" },
- { 17613, "S-Access GMBH" },
- { 17614, "Queensland Parallel Supercomputing Foundation (QPSF)" },
- { 17615, "Ashway Software" },
- { 17616, "Exclusive Flor Sales Ltd." },
- { 17617, "MessageGate, Inc." },
- { 17618, "Ziniti.Net" },
- { 17619, "J Enterprise BV" },
- { 17620, "Mould Industria de Matrizes Ltda" },
- { 17621, "Lightwave Access, LLC" },
- { 17622, "OpenServe" },
- { 17623, "Millersville University" },
- { 17624, "Scouting Nederland" },
- { 17625, "Brightline Technology, Inc." },
- { 17626, "Phoenix Business Technologies Group, Inc." },
- { 17627, "Will Systems" },
- { 17628, "Mount Hay Technology" },
- { 17629, "NISHIMU ELECTRONICS INDUSTRIES CO., LTD." },
- { 17630, "Anana Ltd" },
- { 17631, "Oral Diagnostic Systems" },
- { 17632, "TPISACOM" },
- { 17633, "Phoenix Color Corporation" },
- { 17634, "AGB UK Limited" },
- { 17635, "DragonTail Online Security" },
- { 17636, "Novahead, Inc." },
- { 17637, "fudo.org" },
- { 17638, "JAJOK Ltd." },
- { 17639, "Abbeynet Srl" },
- { 17640, "Reifenberger" },
- { 17641, "Web Publications Pty Ltd" },
- { 17642, "PrintSoft Czech Republic" },
- { 17643, "Shanghai Neotune Information Technology Co.,Ltd." },
- { 17644, "Next Generation Broadband, LLC" },
- { 17645, "CBCA, Inc." },
- { 17646, "Contact Energy Ltd" },
- { 17647, "NTT Innovation Institute, Inc. (formerly 'NTT Multimedia Communications Laboratories, Inc.')" },
- { 17648, "Amat-SC, Service & Consulting" },
- { 17649, "PUMA AG" },
- { 17650, "ITSOFT" },
- { 17651, "necron-X" },
- { 17652, "McKesson IS France" },
- { 17653, "Moot Hall Holdings Limited" },
- { 17654, "Sheer Networks, Ltd." },
- { 17655, "Epsys" },
- { 17656, "Tohoku Ricoh Co., Ltd." },
- { 17657, "@tp-net e. K." },
- { 17658, "Thinklogical, Inc (formerly 'Logical Solutions Inc.')" },
- { 17659, "The Lutheran University Association, Inc (d/b/a Valparaiso University)" },
- { 17660, "AStA Universitaet Potsdam" },
- { 17661, "Lincoln National Corporation" },
- { 17662, "Lucent EBS" },
- { 17663, "I.C.S. Industrielle Automatisierungssysteme GmbH" },
- { 17664, "Watkins Contracting" },
- { 17665, "IMAKE Software & Services" },
- { 17666, "New Jersey Hgiher Education Student Assistance Authority" },
- { 17667, "PCT-International, Inc." },
- { 17668, "American Medical Security" },
- { 17669, "VSL Catena" },
- { 17670, "Celliance Sarl." },
- { 17671, "PT. Mugi Rekso Abadi (Holding)" },
- { 17672, "MACH Software, Inc." },
- { 17673, "CERT-ONERA" },
- { 17674, "VT100" },
- { 17675, "Hill McGlynn & Associates Ltd" },
- { 17676, "nextevolution AG" },
- { 17677, "Tradition Financial Services Ltd" },
- { 17678, "Open X Tecnologia da Informacao Ltda" },
- { 17679, "Chapter Eight Ltd" },
- { 17680, "Dialup USA, Inc." },
- { 17681, "Johns Hopkins Bloomberg School of Public Health Center for Communication Programs" },
- { 17682, "BNX Systems Corporation" },
- { 17683, "Davis Polk & Wardwell" },
- { 17684, "Xi Software Ltd" },
- { 17685, "Dunes Technologies SA" },
- { 17686, "BF&M Insurance Group" },
- { 17687, "Teamwork Solutions, Inc." },
- { 17688, "O'Farrell Community School" },
- { 17689, "TJM Computing" },
- { 17690, "The University Of Newcastle" },
- { 17691, "i-Net Device Co.Ltd." },
- { 17692, "Torkild L\0303\0270mo" },
- { 17693, "Insitut de Recherche en Communication et Cybern\0303\0251tique de Nantes (IRCCyN)" },
- { 17694, "Elekta" },
- { 17695, "COM.BOX WINET GmbH & Co. KG" },
- { 17696, "GAD IT fuer Banken eG" },
- { 17697, "Sanderson Townend & Gilbert Ltd" },
- { 17698, "John Lewis PLC" },
- { 17699, "Japan Control Engineering, Co., Ltd." },
- { 17700, "PowerWallz Network Security Inc." },
- { 17701, "BAE Systems, CNIR" },
- { 17702, "SmartPants Media, Inc." },
- { 17703, "Rudjer Boskovic Institute" },
- { 17704, "Critical Telecom Corp." },
- { 17705, "Sovelto Oy" },
- { 17706, "Kidery" },
- { 17707, "The Meme Factory, Inc" },
- { 17708, "sysmango.com" },
- { 17709, "Shanghai Telecommnunications Technological Research Institute" },
- { 17710, "michael j van ham" },
- { 17711, "Aisai communication technology CO.,LTD" },
- { 17712, "TB-Solutions Technologies Software S.L." },
- { 17713, "Cambium Networks Limited (formerly 'PipingHot Networks Limited')" },
- { 17714, "ASM Enterprises" },
- { 17715, "Mitsukoshi Infomation Service Co.,Ltd." },
- { 17716, "Georgia Tech Foundation" },
- { 17717, "Escription, Inc." },
- { 17718, "Vanu, Inc." },
- { 17719, "Noldata Ltd." },
- { 17720, "Prompt" },
- { 17721, "AGL Resources Inc." },
- { 17722, "STEAG GmbH" },
- { 17723, "Softel SA de CV" },
- { 17724, "SinoCDN Ltd." },
- { 17725, "HW Termination Union" },
- { 17726, "Adva Technologies Ltd." },
- { 17727, "Wiplug" },
- { 17728, "AboveCable, Inc." },
- { 17729, "SPUeNTRUP Software" },
- { 17730, "RedDot Solutions AG" },
- { 17731, "CQS Technology Holdings (Pty) Ltd" },
- { 17732, "SNA lab,National Dong-Hwa university ,Hualien,Taiwan" },
- { 17733, "Delaware State University" },
- { 17734, "OC Systems, Inc." },
- { 17735, "Quark Communications, Inc." },
- { 17736, "Trading Metrics, Inc." },
- { 17737, "Tablus, Inc." },
- { 17738, "Tracey Bernath" },
- { 17739, "Embedded Technologies s.r.o." },
- { 17740, "iSecurity Technology Limited" },
- { 17741, "Open Enterprise Systems, Ltd." },
- { 17742, "Rootsr" },
- { 17743, "M-Web Business Solutions" },
- { 17744, "Dubex A/S" },
- { 17745, "Huntek Co., Ltd." },
- { 17746, "By Intertrade" },
- { 17747, "Nexagent Ltd." },
- { 17748, "Card Systems Consulting SRL" },
- { 17749, "TGC Ltd" },
- { 17750, "iTechnology GmbH" },
- { 17751, "Radio Systems Ltd." },
- { 17752, "Instituto Atl\0303\0242ntico" },
- { 17753, "MetroHealth Medical Center" },
- { 17754, "Alexander Pilger Consulting" },
- { 17755, "Lane Department of Computer Science and Electrical Engineering, West Virginia University" },
- { 17756, "science + computing ag" },
- { 17757, "Orthopedic Healthcare Northwest, P.C." },
- { 17758, "Trematon UK Ltd" },
- { 17759, "Synctomi, Inc." },
- { 17760, "Identify" },
- { 17761, "WiredPlace" },
- { 17762, "Covert Security Services Ltd" },
- { 17763, "Teske Netzwerkberatung" },
- { 17764, "Ditelco, LLC" },
- { 17765, "Tessna Private Limited" },
- { 17766, "PGP Corporation" },
- { 17767, "Schruth, LLC" },
- { 17768, "Ecobyte Limited" },
- { 17769, "Werft22 AG" },
- { 17770, "Cia Metropolitano de S\0303\0243o Paulo - Metr\0303\0264" },
- { 17771, "Lingard Knowledge Software Engineering" },
- { 17772, "Ironico Pty Ltd" },
- { 17773, "NEXCOM International Co.,LTD" },
- { 17774, "Smart Computer Systems Ltd" },
- { 17775, "INTOREL" },
- { 17776, "SIN solution" },
- { 17777, "JaserNet" },
- { 17778, "nic.at Internet Verwaltungs- und Betriebsgesellschaft m. b. H." },
- { 17779, "Econtec GmbH" },
- { 17780, "Truman Medical Centers, Inc." },
- { 17781, "University of Vale do Itajai - CES Sao Jose" },
- { 17782, "Michael Parker" },
- { 17783, "SeTel S.p.a." },
- { 17784, "Mitsubishi Electric Business Systems Co.,Ltd." },
- { 17785, "BONNA SABLA SA" },
- { 17786, "Frankendata GmbH & Co.KG" },
- { 17787, "tschaufrei" },
- { 17788, "EDAG GmbH & Co. KGaA" },
- { 17789, "sitharus.com internet services" },
- { 17790, "IPAD Owners Association" },
- { 17791, "Turoks.Net" },
- { 17792, "Billing Concepts, Inc." },
- { 17793, "Hong Kong Broadband Network Ltd." },
- { 17794, "EXARTECH International Corp." },
- { 17795, "Echo Communications" },
- { 17796, "EK Technology, Ltd." },
- { 17797, "PrimeScale AG" },
- { 17798, "Beijing Lingtu Software Co., LTD" },
- { 17799, "Eurovast Ltd." },
- { 17800, "Telephone Company Chereda" },
- { 17801, "tarent GmbH" },
- { 17802, "Egyptian Telephone Company" },
- { 17803, "iTechnology GmbH" },
- { 17804, "Towers Perrin" },
- { 17805, "Radio UNiCC e.V." },
- { 17806, "isw" },
- { 17807, "WELLX TELECOM S.A." },
- { 17808, "ACTCOM - Active Communication Ltd." },
- { 17809, "civil information security organisation" },
- { 17810, "GIE GETIMA" },
- { 17811, "Anixe Systems GmbH" },
- { 17812, "TLS-Technologie sp. z o.o." },
- { 17813, "iVAST Inc." },
- { 17814, "Boolean Systems, Inc." },
- { 17815, "Pollard Banknote Ltd." },
- { 17816, "Federated Systems Group" },
- { 17817, "Fuji Research Institute Corporation" },
- { 17818, "SAPPORO BREWERIES LTD." },
- { 17819, "GIP RENATER" },
- { 17820, "Foresttek Networks Limited" },
- { 17821, "Tempest spol. s r.o." },
- { 17822, "Easytouch Robert Redl KG (formerly 'EASYTOUCH Robert Divoky KEG')" },
- { 17823, "Arnes - Academic and Research Network of Slovenia" },
- { 17824, "Hisense Information Technology Ltd." },
- { 17825, "BEconnectIT GmbH" },
- { 17826, "ZerBit S.L." },
- { 17827, "Infostar Technology" },
- { 17828, "MetaTV Inc." },
- { 17829, "IDN Communication System Co.,Ltd" },
- { 17830, "SYRUS SYSTEMS" },
- { 17831, "TwinCats Production sprl" },
- { 17832, "Alphyra Nordic AB" },
- { 17833, "All for One Systemhaus AG" },
- { 17834, "C.N.S. Systems AB" },
- { 17835, "Magyar Telekom Nyrt. (formerly 'MAT\0303\0201V Rt.')" },
- { 17836, "Norbert Z\0303\0244nker & Kollegen" },
- { 17837, "Experimental Factory of Scientific Engineering" },
- { 17838, "JunCon" },
- { 17839, "Secureseal Systems Ltd." },
- { 17840, "KOITO INDUSTRIES, LIMITED" },
- { 17841, "bombini.net" },
- { 17842, "Ipsum Networks, Inc." },
- { 17843, "Concerto Software" },
- { 17844, "Orion Associates" },
- { 17845, "GeniServer Corporation" },
- { 17846, "Ocamar Technologies,Inc." },
- { 17847, "Mermit Business Applications Oy" },
- { 17848, "Qamcom Technology AB" },
- { 17849, "Neuroimage Nord" },
- { 17850, "Groupe Danone" },
- { 17851, "SPRINGWAVE,Inc." },
- { 17852, "The ProFTPD Project" },
- { 17853, "Heilpraktikerschule Luzern Ltd." },
- { 17854, "Twenty First Century Communications (TFCC)" },
- { 17855, "zipRealty, Inc." },
- { 17856, "NetNumber, Inc." },
- { 17857, "Tiscali France" },
- { 17858, "sonik.org" },
- { 17859, "Septier Communications Ltd." },
- { 17860, "Alembic, Inc." },
- { 17861, "Twise Labo Inc." },
- { 17862, "Kelly Martin" },
- { 17863, "dotOpen Pty Ltd" },
- { 17864, "Fudan GrandHorizon Information Technology, Inc." },
- { 17865, "eValley.VS" },
- { 17866, "GPS Applications, Inc." },
- { 17867, "C&M Fine Pack, Inc." },
- { 17868, "Codersnetwork.co.uk" },
- { 17869, "etherstack.com" },
- { 17870, "Bradford Technology Limited" },
- { 17871, "NexGen City" },
- { 17872, "iDOC K.K." },
- { 17873, "Gcom, Inc" },
- { 17874, "Michael F. Doyle" },
- { 17875, "Macromedia, Inc." },
- { 17876, "Factline Webservices GmbH." },
- { 17877, "Unassigned" },
- { 17878, "Journalistic, Inc." },
- { 17879, "Ask Software Corporation" },
- { 17880, "Robert Kurtys" },
- { 17881, "Profil Kft" },
- { 17882, "Costco Wholesale Corp." },
- { 17883, "CSS Versicherung" },
- { 17884, "Rocketseed" },
- { 17885, "Agarwal Associates Ltd" },
- { 17886, "bross ag" },
- { 17887, "Realtime Systems Limited" },
- { 17888, "Xor-Technologies" },
- { 17889, "Porsche Informatik GmbH" },
- { 17890, "JSC \"OSS Corporation\"" },
- { 17891, "MidAmerica Nazarene University" },
- { 17892, "Lumenar\0303\0251 Networks, Inc" },
- { 17893, "Cellent AG" },
- { 17894, "Airtria" },
- { 17895, "Keopsys" },
- { 17896, "TelePro C.S" },
- { 17897, "QUANTUM RADIONICS CORPORATION" },
- { 17898, "RISS (Regional Information Sharing Systems)" },
- { 17899, "mIstA Technologies" },
- { 17900, "Pivetal Ltd" },
- { 17901, "Koolspan, Inc." },
- { 17902, "Copeland Corporation" },
- { 17903, "Grouse Media" },
- { 17904, "boros consulting gmbh" },
- { 17905, "Aktion Kritischer Sch\0303\0274lerInnen Salzburg" },
- { 17906, "Folleville" },
- { 17907, "Kumashiro System Frontier Co., Ltd." },
- { 17908, "Tobias Punke" },
- { 17909, "Zandar Technologies" },
- { 17910, "Meridian VAT Processing (International) Ltd" },
- { 17911, "Mountain Area Information Network" },
- { 17912, "Jugendzentrum Kirchheim" },
- { 17913, "MacShed" },
- { 17914, "Escriban\0303\0255a de la Fuente" },
- { 17915, "Iris Media Ltd." },
- { 17916, "Istituto Tecnico Commerciale Cesare Battisti" },
- { 17917, "Computer-Essence" },
- { 17918, "Smart Systems Pty. Ltd." },
- { 17919, "Light Socket, Ltd." },
- { 17920, "C-Borne Co.,Ltd." },
- { 17921, "HALLE-DOT-COM Germany" },
- { 17922, "PinPoint Israel Ltd." },
- { 17923, "Tinext SA" },
- { 17924, "RatNet" },
- { 17925, "Dresdner Kleinwort Wasserstein" },
- { 17926, "Banco Nacional de Costa Rica" },
- { 17927, "Sana Security, Inc." },
- { 17928, "siikuls incorporated" },
- { 17929, "Synthetic Networks Inc" },
- { 17930, "SAGA University" },
- { 17931, "Diligent Technologies Corporation" },
- { 17932, "ZeCo GmbH" },
- { 17933, "Compulogic Limited" },
- { 17934, "Association of Teachers and Lecturers" },
- { 17935, "Videolarm, Inc." },
- { 17936, "Penn State Hershey Medical Center" },
- { 17937, "Lollipop Learning Ltd." },
- { 17938, "Unassigned" },
- { 17939, "Guangdong Province Electronic Technology Research Institute" },
- { 17940, "The University of Texas at Austin" },
- { 17941, "Web Fabric LLC" },
- { 17942, "ISN, Inc. D/B/A inSolutions" },
- { 17943, "Progressix" },
- { 17944, "Subrenat Expansion S.A." },
- { 17945, "Alpha Telecom Inc. USA" },
- { 17946, "Sinema Instruction" },
- { 17947, "Card Access Services Pty Ltd" },
- { 17948, "LV Power (2003) Ltd" },
- { 17949, "i-neda Ltd" },
- { 17950, "Endian" },
- { 17951, "Barnim.Net" },
- { 17952, "Scalent, Inc" },
- { 17953, "Advanced Clustering Technologies, Inc." },
- { 17954, "Voicenet Cyber Cafe" },
- { 17955, "Polytron Corporation" },
- { 17956, "NetCare" },
- { 17957, "Uniwide Technologies inc." },
- { 17958, "KAIYO DENSHI KOGYO Co., Ltd." },
- { 17959, "Accense Technology Inc." },
- { 17960, "ETRI" },
- { 17961, "Luottokunta" },
- { 17962, "Zandan" },
- { 17963, "CONI Servizi S.p.A." },
- { 17964, "Mairie de Pierrefitte-sur-Seine" },
- { 17965, "mediaskill OHG" },
- { 17966, "space2go GmbH" },
- { 17967, "Qovia, Inc" },
- { 17968, "Fortress Systems, Ltd." },
- { 17969, "OC4, LLC." },
- { 17970, "jSNMP Enterprises" },
- { 17971, "Authenti-Corp" },
- { 17972, "IntraMeta Corporation" },
- { 17973, "Terravox Technologie Inc" },
- { 17974, "JWM3, Inc." },
- { 17975, "World Radio Missionary Fellowship Inc." },
- { 17976, "ISI-ESM" },
- { 17977, "Rokeby Technologies Ltd." },
- { 17978, "Elfwerks" },
- { 17979, "HyperMedia Systems Ltd." },
- { 17980, "Oliver Huf" },
- { 17981, "Interacct Solutions(Australia)" },
- { 17982, "Clickerty-Click Ltd" },
- { 17983, "OutPostal Corporation" },
- { 17984, "SHENZHEN COSHIP SOFTWARE CO.,LTD." },
- { 17985, "kingsoft" },
- { 17986, "Systems Union (Shanghai) Ltd." },
- { 17987, "Vodafone Group Services Limited (formerly 'Cable & Wireless UK')" },
- { 17988, "PYLON R.I.S.C. GmbH" },
- { 17989, "petujek.net" },
- { 17990, "NEC Electronics Corporation" },
- { 17991, "Weldun, s.r.o." },
- { 17992, "Net Direct Inc." },
- { 17993, "Aware-Networks Ltda" },
- { 17994, "Mathematical Institute" },
- { 17995, "Asociaci\0303\0263n de Escribanos del Uruguay" },
- { 17996, "Alien Technology Corporation" },
- { 17997, "Artis Inc." },
- { 17998, "Vordel Ltd." },
- { 17999, "Rapsodie" },
- { 18000, "AGRICULTURAL BANK OF GREECE SA" },
- { 18001, "University of Cape Town" },
- { 18002, "Talisen Technologies" },
- { 18003, "Stichting Wireless Leiden (Foundation under Dutch Law)" },
- { 18004, "Micro Fort\0303\0251 Pty Ltd" },
- { 18005, "K.K. Alice" },
- { 18006, "cognitas GmbH" },
- { 18007, "Phonalyse BVBA" },
- { 18008, "Fachhochschule Mannheim HS f. Technik u. Gestaltung" },
- { 18009, "Outram Research Ltd" },
- { 18010, "Eastern Washington University" },
- { 18011, "Apollo Communications, International" },
- { 18012, "connectLOGIC" },
- { 18013, "DBL Technologies, Ltd." },
- { 18014, "Department of Electrical & Electronics Engineering" },
- { 18015, "Futarque A/S" },
- { 18016, "JBoss Group, LLC" },
- { 18017, "PUBLIC VOICE Lab - International Media Co-op" },
- { 18018, "Northwoods Catholic School" },
- { 18019, "On Q Holdings Pty Ltd" },
- { 18020, "Pacific Retail Group" },
- { 18021, "Construction Electronique et Telecommunication Internationnal" },
- { 18022, "Covaro Networks, Inc." },
- { 18023, "Tatung Science & Technology, Inc." },
- { 18024, "Cinergy Communications Company" },
- { 18025, "siWan GmbH & Co. KG" },
- { 18026, "Extron Electronics" },
- { 18027, "Battleaxe Technologies, Inc." },
- { 18028, "Battleaxe Technologies, Inc." },
- { 18029, "Sonic Foundry, Inc." },
- { 18030, "Molecular Therapeutics, Inc." },
- { 18031, "ATM Telecom" },
- { 18032, "matieux.net" },
- { 18033, "Viviale Ltd" },
- { 18034, "FrogNet, Inc." },
- { 18035, "Netsolus.com Inc." },
- { 18036, "United Telecoms Ltd" },
- { 18037, "Pramati Technologies Pvt Ltd" },
- { 18038, "Schotten & Marchart OEG" },
- { 18039, "Toyo Radiator Co., Ltd." },
- { 18040, "H.T.T.P. Planitis Communications Ltd." },
- { 18041, "pdv.com Beratungs-GmbH" },
- { 18042, "Meteksan Net" },
- { 18043, "FinanzIT GmbH" },
- { 18044, "Synelec Telecom Multimedia" },
- { 18045, "IMFORM GmbH" },
- { 18046, "Skellefte\0303\0245 kommun" },
- { 18047, "NeoLogica s.r.l." },
- { 18048, "SunGard Futures Systems" },
- { 18049, "Pixel Power Ltd" },
- { 18050, "Enterprise Products Integration Pte Ltd" },
- { 18051, "RF Systems Nachrichtentechnik GmbH" },
- { 18052, "FachschaftsvertreterInnenversammlung" },
- { 18053, "citecs GmbH" },
- { 18054, "Tenovis GmbH & Co. KG" },
- { 18055, "Unassigned" },
- { 18056, "Pioneer Digital Technologies, Inc." },
- { 18057, "Procondo GmbH" },
- { 18058, "Optimus Inc." },
- { 18059, "B2SCorp" },
- { 18060, "The Apache Software Foundation" },
- { 18061, "OCEAN DEVELOPMENT" },
- { 18062, "Jo Tankers AS" },
- { 18063, "Technetix BV (formerly 'Tratec Telecom b.v.')" },
- { 18064, "Marek Walther" },
- { 18065, "XOU Solutions Limited" },
- { 18066, "Planet Lauritsen" },
- { 18067, "PowerTech Information Systems AS" },
- { 18068, "hansmi.ch" },
- { 18069, "Fulfillment Plus" },
- { 18070, "BTI Photonic Systems" },
- { 18071, "Cendura Corporation" },
- { 18072, "R-MEDIA" },
- { 18073, "hinegardner.org" },
- { 18074, "Kass Enterprises LLC" },
- { 18075, "Combridge Medical Information Corporation" },
- { 18076, "b1n" },
- { 18077, "Acasim Technologies, Inc." },
- { 18078, "Unassigned" },
- { 18079, "City I.T. (UK) Ltd" },
- { 18080, "BlueBoard Ltd." },
- { 18081, "Numa Technology Inc." },
- { 18082, "Midwest Independent Media Foundation" },
- { 18083, "European Society of Cardiology" },
- { 18084, "PharmXplorer" },
- { 18085, "Ciaolab Technologies Spa" },
- { 18086, "ProTelevision Technologies A/S" },
- { 18087, "Optare Solutions S.L." },
- { 18088, "Jackson" },
- { 18089, "Inovis Inc." },
- { 18090, "FrogNet, Inc." },
- { 18091, "CaboVerde" },
- { 18092, "Ssji Networks" },
- { 18093, "K-Opticom Corporation" },
- { 18094, "Kingdom LAN Network" },
- { 18095, "Beijing Neutron TeleCOM Co. Ltd." },
- { 18096, "Advanced Ceramics Research, Inc." },
- { 18097, "Sevilla Project" },
- { 18098, "alexander stensrud" },
- { 18099, "Amoke Networks Pvt. Ltd." },
- { 18100, "Descom Consulting Ltd." },
- { 18101, "Adaptive Mobile Security Ltd." },
- { 18102, "Leostream Corp" },
- { 18103, "Shanghai Helitech Telecommunication Co.,Ltd Neijing Technical Branch" },
- { 18104, "net-worked.co.uk" },
- { 18105, "Calyptix Security Corporation" },
- { 18106, "University of Iceland Computing Services" },
- { 18107, "EEG Enterprises, Inc." },
- { 18108, "PingID Network, Inc." },
- { 18109, "NeoSpire, inc." },
- { 18110, "Speakeasy, Inc." },
- { 18111, "A.I.C. Communications, Inc." },
- { 18112, "oDesk Corp." },
- { 18113, "Wanspot.com Inc." },
- { 18114, "Twotrees Technologies, LLC" },
- { 18115, "ICRISAT" },
- { 18116, "Node Computing Solutions" },
- { 18117, "HTK NetCommunication Oy (PHNet)" },
- { 18118, "New Voice International AG" },
- { 18119, "MONOPRIX" },
- { 18120, "Hyder Consulting PLC" },
- { 18121, "ObjectSource Software GmbH" },
- { 18122, "Universidade de Sao Paulo" },
- { 18123, "Pleasant Ridge Waldorf School" },
- { 18124, "Verticon, Inc." },
- { 18125, "End To End" },
- { 18126, "Quantum Internet Services, Inc." },
- { 18127, "Net Consequence GbR" },
- { 18128, "Komos" },
- { 18129, "Yorkshire Building Society" },
- { 18130, "CdC-Sagax" },
- { 18131, "Echoraith" },
- { 18132, "Fundaci\0303\0263n Universidad del Norte" },
- { 18133, "Genesis Networks and Communications, Inc." },
- { 18134, "CEPRI" },
- { 18135, "Nortel Networks Netas" },
- { 18136, "Delsyne Software srl" },
- { 18137, "Wegener Communications, Inc." },
- { 18138, "Adwise Ltd." },
- { 18139, "NTT FACILITIES,INC." },
- { 18140, "PetT Luxembourg" },
- { 18141, "RRZN, Leibniz Universitaet Hannover" },
- { 18142, "Gruender-AV" },
- { 18143, "Lindenaar" },
- { 18144, "Michael Vistein" },
- { 18145, "Agricultural Mineral Prospectors Inc." },
- { 18146, "PS Solutions Ltd." },
- { 18147, "TerraLuna" },
- { 18148, "cool.de" },
- { 18149, "B.I. Tecnologia Ltda" },
- { 18150, "Webage" },
- { 18151, "Pflug Datentechnik" },
- { 18152, "ezGet.net" },
- { 18153, "Software Engineering GmbH" },
- { 18154, "Telnet Media Ltd" },
- { 18155, "Stilpo Laboratories" },
- { 18156, "Great Pacific Industries Inc." },
- { 18157, "Willowglen MSC Berhad" },
- { 18158, "GATSWAY DATA COMMUNICATION TECHNOLOGY CO.,LTD." },
- { 18159, "Accordance Systems Inc." },
- { 18160, "SHENZHEN GBIT ELECTRONIC TECHNICAL LTD." },
- { 18161, "iPoint Ltd." },
- { 18162, "EYME Technologies Pvt. Ltd." },
- { 18163, "Commit; Oy" },
- { 18164, "Office of the Prime Minister" },
- { 18165, "VB Pros Oy / RS-Solutions" },
- { 18166, "Chalmege" },
- { 18167, "Integro Networks" },
- { 18168, "Infogate-Online Ltd" },
- { 18169, "DOTFLUX" },
- { 18170, "Inno.com" },
- { 18171, "Torchbox Ltd" },
- { 18172, "AP-WDSL GbR" },
- { 18173, "Ramanam Software Distributors Private Limited" },
- { 18174, "Wisconsin Department of Justice" },
- { 18175, "Araknos Srl" },
- { 18176, "Pikeville Methodist Hospital" },
- { 18177, "INPE" },
- { 18178, "Front Range Internet, Inc." },
- { 18179, "Quest Software, Inc. (formerly 'Vintela Inc.')" },
- { 18180, "UNIT Ltd." },
- { 18181, "Western Union Financial Services, Inc" },
- { 18182, "Ahold Information Services" },
- { 18183, "Systems Atlanta, Inc." },
- { 18184, "ackrium" },
- { 18185, "Rene van Rooyen" },
- { 18186, "Awacs ltd" },
- { 18187, "Linkwise Software(Shanghai) Co.,Ltd" },
- { 18188, "Torinet" },
- { 18189, "Direction G\0303\0251n\0303\0251rale des Imp\0303\0264ts" },
- { 18190, "dabs.com PLC" },
- { 18191, "Audiovision" },
- { 18192, "eSchoolOnline" },
- { 18193, "Ruban Consulting" },
- { 18194, "Bewer-Enterprises" },
- { 18195, "Xsec Srl" },
- { 18196, "Landeszahn\0303\0244rztekammer Sachsen" },
- { 18197, "Sony Communication Network Corporation" },
- { 18198, "Zemilogix, LLc" },
- { 18199, "Objective Data Storage" },
- { 18200, "Software Expedition" },
- { 18201, "Bestseller A/S" },
- { 18202, "Belatronix Kommunikation & EDV" },
- { 18203, "TC Electronic A/S" },
- { 18204, "HPD Software, LLC (formerly 'Computer And Software Enterprises, Inc.')" },
- { 18205, "Pioneer Industries, Inc." },
- { 18206, "iVolve Pty Ltd" },
- { 18207, "ANTs software inc." },
- { 18208, "TeleSym" },
- { 18209, "Midwest Radiology of Kentucky" },
- { 18210, "Agilis Communication Technologies Pte Ltd" },
- { 18211, "Catalina Computers & Discount" },
- { 18212, "A && L soft, s.r.o." },
- { 18213, "Voxsant Resources, Inc." },
- { 18214, "Olgierd Ziolko" },
- { 18215, "Metro Packet Systems, Inc." },
- { 18216, "AnyWeb AG" },
- { 18217, "Profium OY" },
- { 18218, "DIGORA" },
- { 18219, "Salten Bredband AS" },
- { 18220, "W en J" },
- { 18221, "SY Electronics Ltd" },
- { 18222, "Hopitaux Universitaires de Strasbourg" },
- { 18223, "W-OneSys S.L." },
- { 18224, "Dipl.-Inf. Carsten Dumke" },
- { 18225, "guenever.net" },
- { 18226, "imap4all B.V." },
- { 18227, "OpenCA" },
- { 18228, "University Of Stuttgart" },
- { 18229, "Sonitrol Security Systems of Hartford, Inc." },
- { 18230, "Conectium Limited" },
- { 18231, "Clear Reach Networks, Inc." },
- { 18232, "Equipos Telemo E.T. S.A." },
- { 18233, "HEC Montreal" },
- { 18234, "NetSrv Consulting Ltd" },
- { 18235, "Andreas Schulze" },
- { 18236, "McGill University" },
- { 18237, "IntelliVid Corporation" },
- { 18238, "SkyLink Design" },
- { 18239, "DTS, Inc. (formerly 'Digital Theater Systems, Inc')" },
- { 18240, "berger.de" },
- { 18241, "w3design" },
- { 18242, "Wyyzzk, Inc." },
- { 18243, "G&J FOSTER TECHNOLOGIES, INC." },
- { 18244, "Matisse Networks Inc" },
- { 18245, "Dishnet DSL Ltd." },
- { 18246, "Degussa AG" },
- { 18247, "IT&T s.r.l." },
- { 18248, "PaPouch elektronika" },
- { 18249, "Arcane Project" },
- { 18250, "TECHNOLOGIES RESEAUX & SOLUTIONS" },
- { 18251, "Beijing ACT Technology Co., Ltd." },
- { 18252, "Symmetrus Systems Ltd." },
- { 18253, "mVerify Corporation" },
- { 18254, "Mimezine" },
- { 18255, "Taller de Ideas (de C. Daniel Mojoli B.)" },
- { 18256, "Babcock & Wilcox Company (McDermott)" },
- { 18257, "KHAMSIN Security GmbH" },
- { 18258, "Binken.com" },
- { 18259, "CBTCBT Inc." },
- { 18260, "Bandapart.Net" },
- { 18261, "TigerByte" },
- { 18262, "Technicolor Media Asset Management" },
- { 18263, "Sanders Technology & Design" },
- { 18264, "ICT Group HHW" },
- { 18265, "Kestrel Technologies, Inc." },
- { 18266, "Dallas Genealogical Society" },
- { 18267, "NEOJAPAN, Inc." },
- { 18268, "SkyNet Network Security System Integration co.,Ltd." },
- { 18269, "Mapfre" },
- { 18270, "BANKSYS" },
- { 18271, "CIFOM-ESNIG" },
- { 18272, "Alerta Comunicaciones SAL" },
- { 18273, "French Senate" },
- { 18274, "Shenzhen Experiment School" },
- { 18275, "CIBERNET Corporation" },
- { 18276, "Lurcher Link" },
- { 18277, sminmpec_unknown }, /* (Added by Wireshark) */
- { 18278, "Columbus Metropolitan Library" },
- { 18279, "Rainer Fischer, EDV-Service" },
- { 18280, "NetTempo, Inc." },
- { 18281, "Bodacion Technologies, LLC." },
- { 18282, "Muttsoft, Inc" },
- { 18283, "Paraxip Technologies" },
- { 18284, "EXEMYS SRL" },
- { 18285, "Vidiator Technology Inc." },
- { 18286, "Assurent Software Inc." },
- { 18287, "InnoPath Software" },
- { 18288, "RABA Technologies LLC" },
- { 18289, "Router Management Solutions, Inc." },
- { 18290, "szeles tibor" },
- { 18291, "Ligfy" },
- { 18292, "Metis Oy" },
- { 18293, "Blackhawk Internet Communications Inc." },
- { 18294, "Cambridge University Press" },
- { 18295, "Applied Software Solutions, LLC" },
- { 18296, "Emigrant Savings Bank" },
- { 18297, "Symbium Corporation" },
- { 18298, "drugref.org" },
- { 18299, "Institute for International Ecomonic and Political Studies, Russian Academy of Sciences" },
- { 18300, "Xoba Inc." },
- { 18301, "Datacard Corporation" },
- { 18302, "Metroplex Webs" },
- { 18303, "Sollae Systems Co.,Ltd." },
- { 18304, "Douglas Needham" },
- { 18305, "North American Astrophysical Observatory" },
- { 18306, "Sichuan e-link Co., Ltd." },
- { 18307, "Eadiefleet Corporation" },
- { 18308, "aphona Kommunikationssysteme Entwicklungs- und VertriebsgmbH" },
- { 18309, "Einsle" },
- { 18310, "Heitec AG" },
- { 18311, "Linzies' computers" },
- { 18312, "Data Flow Systems" },
- { 18313, "Bodacion Technologies, LLC." },
- { 18314, "Canberra Industries" },
- { 18315, "McCormick & Company, Inc." },
- { 18316, "Ordination Med.-Rat Dr. Roesler" },
- { 18317, "Muttsoft, Inc" },
- { 18318, "Copel Telecomunica\0303\0247\0303\0265es S/A" },
- { 18319, "Asociaci\0303\0263n Nacional Ecum\0303\0251nica de Desarrollo" },
- { 18320, "Hydrologic Consultants, Inc of Colorado" },
- { 18321, "Universidad del Sagrado Corazon" },
- { 18322, "ITaCS GmbH" },
- { 18323, "Mindways Software, Inc." },
- { 18324, "Press Communications P/L" },
- { 18325, "Advanced Relay Corporation" },
- { 18326, "InfoGin Ltd." },
- { 18327, "42networks AB" },
- { 18328, "OpenMIND Networks Limited" },
- { 18329, "AMC Ltd." },
- { 18330, "Electrobusiness Connections Inc." },
- { 18331, "Huber S-Consulting GmbH" },
- { 18332, "ANF Autoridad de Certificaci\0303\0263n" },
- { 18333, "ANF AC Entidad de Certificaci\0303\0263n Per\0303\0272 S.A.C." },
- { 18334, "KONICA MINOLTA HOLDINGS, INC." },
- { 18335, "Melloul-Blamey Construction Inc." },
- { 18336, "Computer Logix" },
- { 18337, "creedon engineering" },
- { 18338, "Centrum voor Wiskunde en Informatica" },
- { 18339, "ANF AC MALTA, LTD." },
- { 18340, "Proquest Information and Learning" },
- { 18341, "The Institute for Open Systems Technologies Pty Ltd" },
- { 18342, "CEYONIQ Technology GmbH" },
- { 18343, "Performance Solutions Limited" },
- { 18344, "Intmain.Com" },
- { 18345, "Messagesoft Inc." },
- { 18346, "Sebastian Denef Computer Service" },
- { 18347, "MAUSER-Werke GmbH & Co. KG" },
- { 18348, "Avitech International Corp." },
- { 18349, "Luther Seminary" },
- { 18350, "Polva Central Library" },
- { 18351, "Velare Technologies Inc." },
- { 18352, "Sony Pictures Imageworks" },
- { 18353, "MAUSER-Werke GmbH & Co. KG" },
- { 18354, "Calyptech Pty Ltd" },
- { 18355, "Avitech International Corp." },
- { 18356, "kevinstevens.info" },
- { 18357, "Full Frontal Ingenuity LLC (formerly 'Leathern Apron Incorporated')" },
- { 18358, "EPITECH" },
- { 18359, "Intransa, Inc." },
- { 18360, "INTEC Web and Genome Informatics Corporation" },
- { 18361, "A3 Security Consulting Co., Ltd." },
- { 18362, "Hong Kong CSL Limited" },
- { 18363, "Epok, Inc." },
- { 18364, "Nezabudka" },
- { 18365, "Konzumbank Rt." },
- { 18366, "Applicata" },
- { 18367, "Nanoteq PTY LTD" },
- { 18368, "ComUnics Informatik GmbH" },
- { 18369, "Phoenix Zeppelin spol. s r.o." },
- { 18370, "Internet Consult SARL" },
- { 18371, "Pickering Interfaces Ltd" },
- { 18372, "BalaBit IT Ltd." },
- { 18373, "CSAS - Computer Systeme Arno Seidel" },
- { 18374, "Andri Saar" },
- { 18375, "Ruprecht-Karls-Universitaet Heidelberg" },
- { 18376, "ORGA Systems GmbH" },
- { 18377, "Universita` degli Studi di Trieste" },
- { 18378, "Eastern Kentucky University" },
- { 18379, "ExtraQuest, Corporation" },
- { 18380, "NEXTFOR S.A." },
- { 18381, "Suramericana de Seguros S.A." },
- { 18382, "Bank of Valletta plc" },
- { 18383, "Enterux Solutions" },
- { 18384, "Reflective Solutions Ltd." },
- { 18385, "Ecki Patang Org" },
- { 18386, "oshiire" },
- { 18387, "Litrius Group" },
- { 18388, "AstraZeneca" },
- { 18389, "Old Genie Hottabych Company" },
- { 18390, "MTS S.p.A." },
- { 18391, "Learning Objects Network Inc." },
- { 18392, "Applied Personal Computing, Inc." },
- { 18393, "Goblin" },
- { 18394, "Fred Chef Inc." },
- { 18395, "vivaxis SAS" },
- { 18396, "Dassault Aviation" },
- { 18397, "InfoSys" },
- { 18398, "jMind Consulting Ltd." },
- { 18399, "K/P Corporation" },
- { 18400, "Kommandoraden" },
- { 18401, "Xiqa Networks" },
- { 18402, "SecurityMetrics, Inc." },
- { 18403, "City of Chicago - Office of Budget Management" },
- { 18404, "United Nations Development Programme" },
- { 18405, "Redbird Informatics, Inc." },
- { 18406, "Internetworking Ltd." },
- { 18407, "Transcendence.net" },
- { 18408, "Association Ohana" },
- { 18409, "Planet A.S." },
- { 18410, "H\0303\0244me Polytechnic" },
- { 18411, "DataCenterTechnologies" },
- { 18412, "Epoch Design Ltd" },
- { 18413, "EGIM" },
- { 18414, "Imaginative IT Limited" },
- { 18415, "ELM Computer Technologies Ltd." },
- { 18416, "Victron bva" },
- { 18417, "Argon Technologies Inc." },
- { 18418, "Endace Technology" },
- { 18419, "glaven.org" },
- { 18420, "cerebrasoft" },
- { 18421, "tetera.org" },
- { 18422, "AetherStorm.com" },
- { 18423, "NetHarmonix, Inc." },
- { 18424, "MooreWare" },
- { 18425, "COMCO AG" },
- { 18426, sminmpec_unknown }, /* (Added by Wireshark) */
- { 18427, "Patrick N\0303\0244f" },
- { 18428, "American Registry for Internet Numbers" },
- { 18429, "IT Consulting & Education Ltd." },
- { 18430, "GenerationE Technologies LLC" },
- { 18431, "Stmk. Krankenanstalten GesmbH" },
- { 18432, sminmpec_unknown }, /* (Added by Wireshark) */
- { 18433, "deny all" },
- { 18434, "University of Leipzig" },
- { 18435, "Advanced Computer Systems, ACS S.P.A." },
- { 18436, "Bell Mobility" },
- { 18437, "W.I.S.V. Christiaan Huygens" },
- { 18438, sminmpec_unknown }, /* (Added by Wireshark) */
- { 18439, "Composite Software, Inc." },
- { 18440, "peerix" },
- { 18441, "National Football League" },
- { 18442, "Vimatix" },
- { 18443, "Netsys.IT GbR" },
- { 18444, "Sandwich.Net Internet Services" },
- { 18445, "Datacard Corporation" },
- { 18446, "Ascendant Technologies, Inc." },
- { 18447, "Willis Consulting" },
- { 18448, "Vanquish, Inc." },
- { 18449, "Alexander Gretha" },
- { 18450, "SevenL Networks Inc." },
- { 18451, "PC-Pool Physik, TU-Berlin" },
- { 18452, "Tempod" },
- { 18453, "The City Of Calgary" },
- { 18454, "OATSystems, Inc" },
- { 18455, "MEDICAL INFOMATION CO., LTD." },
- { 18456, "NetKlass Technology Inc." },
- { 18457, "European Directorate for the Quality of Medicines & HealthCare, Council of Europe (EDQM) (formerly 'European Directorate for the Quality of Medicines')" },
- { 18458, "Image Processing Techniques Ltd" },
- { 18459, "Semafor Informatik & Energie AG" },
- { 18460, "Powell Companies" },
- { 18461, "Osix Inc." },
- { 18462, "Lifetree Convergence Ltd" },
- { 18463, "Spektar JSC" },
- { 18464, "ROMATSA R.A." },
- { 18465, "TradeLink L.L.C." },
- { 18466, "Aviva Communications Inc." },
- { 18467, "AdvancePCS" },
- { 18468, "hughes network systems" },
- { 18469, "UNIS LUMIN INC." },
- { 18470, "Ingenieurbuero Michael Kappler" },
- { 18471, "e-Scripps" },
- { 18472, "Crystal Computer Corporation (Georgia)" },
- { 18473, "Form-IT" },
- { 18474, "Etype Co." },
- { 18475, "Research Institute of America" },
- { 18476, "Actinium Network Sdn Bhd" },
- { 18477, "Bundesministerium des Innern" },
- { 18478, "Wehay AB" },
- { 18479, "FS-VDSL" },
- { 18480, "RF-DESIGN" },
- { 18481, "Trustworx GmbH" },
- { 18482, "ARCWave Inc." },
- { 18483, "ROMATSA R.A." },
- { 18484, "ProcoliX" },
- { 18485, "Marietta College" },
- { 18486, "Quickshift, Inc." },
- { 18487, "Everbank" },
- { 18488, "Interbaun Communications, Inc." },
- { 18489, "CarrierComm, Inc." },
- { 18490, "Bolsa Nacional de Valores" },
- { 18491, "NII Voskhod" },
- { 18492, "Tacoma, spol.s r.o." },
- { 18493, "ProcoliX" },
- { 18494, "S.W.I.F.T. SCRL" },
- { 18495, "GRAU DATA AG" },
- { 18496, "Rolotec AG" },
- { 18497, "gec UOC Group" },
- { 18498, "A&M Consulting Co" },
- { 18499, "PD3 Tecnologia em Redes e Sistemas Digitais" },
- { 18500, "Oddpost.com" },
- { 18501, "Code Fusion cc." },
- { 18502, "Mendel University of Agriculture and Forestry" },
- { 18503, "Intelli7 Inc." },
- { 18504, "Brainstorm Internet" },
- { 18505, "Tele-Consulting GmbH" },
- { 18506, "CAcert Inc." },
- { 18507, "Precise Time and Frequency, Inc." },
- { 18508, "MURASHITA CONSTRUCTION INDUSTRY CO., LTD." },
- { 18509, "IVK Smart Software Solutions LLC" },
- { 18510, "Reid Enterprises" },
- { 18511, "Centre Informatique Region Bruxelloise" },
- { 18512, "Schaake" },
- { 18513, "pete23.com" },
- { 18514, "BekArts International" },
- { 18515, "Nortech Management Ltd." },
- { 18516, "Eclipse Networking Limited" },
- { 18517, "Orbit Research Ltd" },
- { 18518, "Crea d.o.o." },
- { 18519, "Jahi Networks Inc." },
- { 18520, "APSI Inc." },
- { 18521, "TakeNET" },
- { 18522, "Unassigned" },
- { 18523, "Liverton Limited" },
- { 18524, "Empresa Metal\0303\0272rgica Central de Acero \"Jos\0303\0251 Valdes Reyes\"" },
- { 18525, "robinbowes.com" },
- { 18526, "Fisk Labs, Inc." },
- { 18527, "Maersk Data Organisator A/S" },
- { 18528, "Cetelem" },
- { 18529, "Swisscom-Eurospot" },
- { 18530, "NightCity.net" },
- { 18531, "DecisionPoint Applications, Inc." },
- { 18532, "The University of New Brunswick" },
- { 18533, "NTH A.G." },
- { 18534, "MCI" },
- { 18535, "Echostar Data Services" },
- { 18536, "Oolong project" },
- { 18537, "TAM Internet service Ltd." },
- { 18538, "R.L. Phillips, Inc." },
- { 18539, "flagwireless.com" },
- { 18540, "Webmeesters" },
- { 18541, "Roland Baum System Consult" },
- { 18542, "Sphinx Information Technologies Inc." },
- { 18543, "Innove Communications" },
- { 18544, "ecofinance" },
- { 18545, "Joint-stock company \"Trading System Administrator of Wholesale Electricity Market Transactions\"" },
- { 18546, "FAST Video Security AG" },
- { 18547, "Amanda Emily" },
- { 18548, "Relationalware" },
- { 18549, "Kealia Inc." },
- { 18550, "Gemplus do Brasil" },
- { 18551, "Anders Bystrup IT" },
- { 18552, "Firevue Security Systems" },
- { 18553, "Arachne Prime Inc." },
- { 18554, "Xenotropic Systems" },
- { 18555, "youneek organisation limited" },
- { 18556, "Zaurum ECP project" },
- { 18557, "Hurray!Solution Ltd." },
- { 18558, "WUSHIGONG Ltd." },
- { 18559, "Softpak International" },
- { 18560, "Makedonski Telekomunikacii, MTnet" },
- { 18561, "StarNIC" },
- { 18562, "Jazz Telecom, S.A." },
- { 18563, "DarkPhuture Technologies, Research & Development" },
- { 18564, "BFI-Burgenland" },
- { 18565, "SCHUH-TV" },
- { 18566, "Hogeschool Gent" },
- { 18567, "Epic Systems Corporation" },
- { 18568, "Service Availability Forum" },
- { 18569, "Ensequence, Inc." },
- { 18570, "GreenPulse Limited" },
- { 18571, "Mindhut Limited" },
- { 18572, "ORC" },
- { 18573, "Educate Inc." },
- { 18574, "Hush Communications Canada Inc." },
- { 18575, "Sagem Morpho, Inc." },
- { 18576, "Typosign AG" },
- { 18577, "Contemporary Cybernetics Group, Inc." },
- { 18578, "Eardown" },
- { 18579, "Clear Edge Networks LLC" },
- { 18580, "Whetstone Software" },
- { 18581, "SPD-Bundestagsfraktion" },
- { 18582, "Slack Ltd." },
- { 18583, "Bit 9 Inc." },
- { 18584, "Avanex Co." },
- { 18585, "GuangDong Poson Company.Ltd" },
- { 18586, "bbassett.net" },
- { 18587, "Fortess Ltd." },
- { 18588, "Mekhanika-Service, Ltd." },
- { 18589, "GlobeTOM (Pty) Ltd" },
- { 18590, "Sterci SA" },
- { 18591, "HORUS HARDWARE S.A." },
- { 18592, "Universita' degli Studi di Milano-Bicocca" },
- { 18593, "Ministry of Finance, Tax Administration of the Republic of Slovenia" },
- { 18594, "Globalvision Media" },
- { 18595, "Berufsbildende Schulen I - Uelzen" },
- { 18596, "Professional Computers Services Organization" },
- { 18597, "HELIOS Software GmbH" },
- { 18598, "Firebox Internet Technologies" },
- { 18599, "Fachhochschule Hagenberg" },
- { 18600, "Marzek Etiketten GmbH" },
- { 18601, "Blue Mountains Grammer School" },
- { 18602, "MediaZen Corp." },
- { 18603, "Powercn" },
- { 18604, "Delta E.S., a.s." },
- { 18605, "RiS Gmbh" },
- { 18606, "Orbitel, Inc." },
- { 18607, "KLM Royal Dutch Airlines" },
- { 18608, "Synlogic AG" },
- { 18609, "JP.DIAS SERVI\0303\0207OS DE INFORMATICA LTD." },
- { 18610, "University at Buffalo" },
- { 18611, "Alenia Spazio S.p.A." },
- { 18612, "smspundit.com" },
- { 18613, "CGL Consulting" },
- { 18614, "Albert White Technologies" },
- { 18615, "North American Networks Corporation" },
- { 18616, "nextWLAN Corporation" },
- { 18617, "Timestock, Inc." },
- { 18618, "Publi Van Dyck N.V." },
- { 18619, "web-m GbR" },
- { 18620, "Jaw Networks" },
- { 18621, "Hinson and Associates" },
- { 18622, "K-n-A Ltd." },
- { 18623, "micro systems" },
- { 18624, "Lehrstuhl fuer Technische Dienstleistungen" },
- { 18625, "UniVision (Canada) Ltd." },
- { 18626, "UNET BV" },
- { 18627, "Bakasquared" },
- { 18628, "Microelectronics Technology Inc." },
- { 18629, "Iclass Co. Ltd." },
- { 18630, "Reeuenta Design Service Taiwan Ltd." },
- { 18631, "DARG" },
- { 18632, "SA SST Informatique" },
- { 18633, "STATER" },
- { 18634, "Advanced Software Production Line, S.L." },
- { 18635, "m-otion GmbH" },
- { 18636, "UVT s.r.o." },
- { 18637, "JNS Inc." },
- { 18638, "Avedya" },
- { 18639, "Kinnikinnick Foods Inc." },
- { 18640, "Digital Envoy, Inc" },
- { 18641, "Royal Military College of Canada" },
- { 18642, "C&C Power, Inc." },
- { 18643, "Montgomery County Government" },
- { 18644, "Daniel Skadlubowicz" },
- { 18645, "Cesart Creation inc." },
- { 18646, "Electric Mail Co." },
- { 18647, "DEXTER COMMUNICATIONS, INC." },
- { 18648, "HTU Graz" },
- { 18649, "Magnet.ch AG" },
- { 18650, "Projectiondesign AS" },
- { 18651, "GLANCE AG" },
- { 18652, "Zentrum f\0303\0274r Bioinformatik, Hamburg" },
- { 18653, "Eraia srl" },
- { 18654, "Scottish Police Authority (formerly 'Central Scotland Police')" },
- { 18655, "IUNDS AG" },
- { 18656, "AirRunner Technologies" },
- { 18657, "GoldenGate Software, Inc." },
- { 18658, "Xcitel Ltd." },
- { 18659, "Chung Hua University" },
- { 18660, "WebKMS" },
- { 18661, "Elitech Information Technology Co.,Ltd." },
- { 18662, "Mathias Kettner" },
- { 18663, "Laakirchen Papier AG" },
- { 18664, "IPnP" },
- { 18665, "Axelero Internet Szolg\0303\0241ltat\0303\0263 Rt." },
- { 18666, "Payroll Sweden AB" },
- { 18667, "HBware" },
- { 18668, "freshmeat.net, part of OSDN, Inc." },
- { 18669, "Memorial Hermann healthcare System" },
- { 18670, "General Atomics" },
- { 18671, "Knovative, Inc." },
- { 18672, "Secured Computer Concepts" },
- { 18673, "Webjorn Data & Natverkskonsult" },
- { 18674, "telecomSoftware" },
- { 18675, "Strategy & Technology ltd" },
- { 18676, "LEOFOO DEVELOPMENT CO., LTD" },
- { 18677, "Datenzentrale Baden-Wuerttemberg" },
- { 18678, "Winston Industries" },
- { 18679, "Behr Internet Solutions, Inc." },
- { 18680, "Con Edison Communications" },
- { 18681, "Travelping GmbH" },
- { 18682, "Dr. Brunthaler IITech GmbH" },
- { 18683, "CJ Ltd." },
- { 18684, "Davey Control Systems" },
- { 18685, "Portal M\0303\0274nchen GmbH & Co. KG" },
- { 18686, "InControl Technology Inc" },
- { 18687, "Information Flow" },
- { 18688, "IU.TV Ltd" },
- { 18689, "Neonetix, LLC." },
- { 18690, "Healthlink Limited" },
- { 18691, "Bussi" },
- { 18692, "Katana Technology, Inc." },
- { 18693, "NDS Media Solutions" },
- { 18694, "isometry.net" },
- { 18695, "Soluciones Telematicas Avanzadas S.L." },
- { 18696, "Idiom Communications LLC" },
- { 18697, "Syniverse Technologies Asia Pacific Limited (formerly 'IVRS (International) Limited')" },
- { 18698, "Tonghua Wanghang Information & Technology Co.,Ltd." },
- { 18699, "DAPYXIS NETWORK LIMITED" },
- { 18700, "ACOM CO.,LTD" },
- { 18701, "Minplan" },
- { 18702, "REUTERS S.A." },
- { 18703, "Siix d.o.o." },
- { 18704, "Institute of Mathematics of the Romanian Academy" },
- { 18705, "Dynamix Promotions Limited" },
- { 18706, "Corporacion Aceros Arequipa S.A." },
- { 18707, "Muskingum College" },
- { 18708, "Guardium Inc." },
- { 18709, "INOTESKA s.r.o." },
- { 18710, "Kaytec Ltd." },
- { 18711, "Burger Knowledge Consultancy" },
- { 18712, "Ajin Techline co., Ltd" },
- { 18713, "FH JOANNEUM Gesellschaft mbH" },
- { 18714, "Lanzhou University of Technology" },
- { 18715, "Grand Electronic Co.,Ltd." },
- { 18716, "Grand Electronic Co.,Ltd." },
- { 18717, "UCB SA/NV" },
- { 18718, "Association of Hellenic Internet Users" },
- { 18719, "O2 Ltd" },
- { 18720, "FarSite Communications Limited" },
- { 18721, "EMICT Ltd." },
- { 18722, "Universidade Federal do Parana" },
- { 18723, "Digicast Networks Inc" },
- { 18724, "EDJ Enterprises, Inc." },
- { 18725, "Paycom Billing Services, Inc." },
- { 18726, "Isala Klinieken" },
- { 18727, "Apollo Group, Inc." },
- { 18728, "Unassigned" },
- { 18729, "RB Holdings" },
- { 18730, "C&A srl" },
- { 18731, "INGENIERIA DE SISTEMAS MULTIAGENTE, S.L." },
- { 18732, "Horner Brothers Print Group" },
- { 18733, "Magnifire Networks" },
- { 18734, "Wildher ICT Solutions" },
- { 18735, "Hayes Lemmerz International" },
- { 18736, "Ertius Consulting" },
- { 18737, "Northrop Grumman" },
- { 18738, "DjE" },
- { 18739, "CraftAnalogy, Inc." },
- { 18740, "J. S. Thrower and Associates Ltd." },
- { 18741, "Leurck Software" },
- { 18742, "SACEM" },
- { 18743, "Entrada Internet Systems, Inc." },
- { 18744, "Idea Tec Sahar (ITS) Ltd" },
- { 18745, "ERANET srl" },
- { 18746, "Matsushita Electric Europe" },
- { 18747, "American Fibertek, Inc." },
- { 18748, "Engelschall" },
- { 18749, "The OpenPKG Project" },
- { 18750, "solar" },
- { 18751, "IPDeliver Inc." },
- { 18752, "Financial Engines, Inc." },
- { 18753, "Adelphia Communications" },
- { 18754, "University of Wisconsin - Parkside" },
- { 18755, "MavriQ Technologies, LLC" },
- { 18756, "Michal Charvat" },
- { 18757, "United Systems Access Inc." },
- { 18758, "Stordyne Corporation" },
- { 18759, "Netlink Technology Ltd." },
- { 18760, "Guangdong Electronic Certification Authority" },
- { 18761, "Regal Cyber Limited" },
- { 18762, "Sumtech Inc" },
- { 18763, "TheNetWerk" },
- { 18764, sminmpec_unknown }, /* (Added by Wireshark) */
- { 18765, "Comtel Electronics GmbH" },
- { 18766, "Procitec GmbH" },
- { 18767, "Kaba Management + Consulting AG" },
- { 18768, "Virtual Royal Danish Air Force" },
- { 18769, "University Computer Center (URC) Banja Luka" },
- { 18770, "SUNCOM Systems" },
- { 18771, "The Salvage Association" },
- { 18772, "Microbus plc" },
- { 18773, "Internet Creation Co.,Ltd." },
- { 18774, "Banca Monte dei Paschi di Siena S.p.A." },
- { 18775, "Neuronenwerk" },
- { 18776, "eAcceleration Corp" },
- { 18777, "Thomas Luzat IT-Services" },
- { 18778, "ARCANE NETWORKS" },
- { 18779, "Synergy Information Services, Inc." },
- { 18780, "ANSES" },
- { 18781, "Zagamma Labs" },
- { 18782, "Rozhled.cz" },
- { 18783, "Interwoven, Inc." },
- { 18784, "Great Clips, Inc." },
- { 18785, "Collation Inc." },
- { 18786, "Global-Arts" },
- { 18787, "Clubhaus PLC" },
- { 18788, "MyNym" },
- { 18789, "Pro QC International Ltd" },
- { 18790, "EcGuard Technology Co. Ltd." },
- { 18791, "Chatchalerm Namwongprom" },
- { 18792, "HORIBA Europe Automation Division GmbH" },
- { 18793, "Norske Skogindustrier ASA" },
- { 18794, "Uni Regensburg" },
- { 18795, "ASPLinux" },
- { 18796, "Horizon.Net S.A" },
- { 18797, "Lunics GmbH" },
- { 18798, "digital design GmbH" },
- { 18799, "Layer14" },
- { 18800, "WRK Computer Systems" },
- { 18801, "Forrest Aldrich" },
- { 18802, "AUCONET GmbH" },
- { 18803, "MEDCOM sp. z o.o." },
- { 18804, "Advisec AB" },
- { 18805, "Struktuur Meedia" },
- { 18806, "Calm Computer Corp." },
- { 18807, "MAPLE NETWORKS Co.,Ltd" },
- { 18808, "Fondation pour l'institut de hautes \0303\0251tudes internationales et du d\0303\0251veloppement (formerly 'Graduate Institute of International and Development Studies')" },
- { 18809, "NetLink Consulting LLC" },
- { 18810, "Inotera Memories Inc." },
- { 18811, "Colgate-Palmolive Company" },
- { 18812, "Sageway Computer Solutions Pte Ltd" },
- { 18813, "DEMARINA SDN. BHD." },
- { 18814, "RoCNet Linux-Services" },
- { 18815, "ConD GmbH" },
- { 18816, "Andrea Fino" },
- { 18817, "Ethernet Powerlink Standardisation Group (EPSG)" },
- { 18818, "Dinsa Soluciones" },
- { 18819, "Pardes Group SA" },
- { 18820, "RAMCS" },
- { 18821, "m-Wise UK Ltd." },
- { 18822, "FOTEK ,Ltd." },
- { 18823, "COM-PAN s.c." },
- { 18824, "av" },
- { 18825, "Topio, Inc." },
- { 18826, "PSA Corporation Limited" },
- { 18827, "LOBOK - projects" },
- { 18828, "danet GmbH" },
- { 18829, "COM.BOX Internet Service GmbH" },
- { 18830, "Jingo Digital" },
- { 18831, "InFormaL" },
- { 18832, "Universit\0303\0244t Potsdam" },
- { 18833, "MICROTROL SRL" },
- { 18834, "Competitionhill" },
- { 18835, "Government of the District of Columbia" },
- { 18836, "Flathead Valley Community College" },
- { 18837, "Spectracom Corporation" },
- { 18838, "AEAT" },
- { 18839, "Data Consulting Group, Inc." },
- { 18840, "Milwaukee Public Schools" },
- { 18841, "Acorn Packet Solutions" },
- { 18842, "Linuxl\0303\0266sungen Michael R\0303\0266\0303\0237ler" },
- { 18843, "CPR Software LLC" },
- { 18844, "Triacta Power Technologies, Inc." },
- { 18845, "eCartsoft.com" },
- { 18846, "State of Tennessee" },
- { 18847, "Objectpark Software GbR" },
- { 18848, "UIS Abler Electronics Corp. Ltd." },
- { 18849, "OneDataCentral" },
- { 18850, "CoSystems, Inc." },
- { 18851, "Association DSPNet" },
- { 18852, "Gerdes Aktiengesellschaft" },
- { 18853, "EURILOGIC Technologies" },
- { 18854, "Axiliance" },
- { 18855, "Beijing Fibridge Co., Ltd." },
- { 18856, "Monitor Electronics Ltd" },
- { 18857, "dh computersysteme" },
- { 18858, "RDR Technologies LLC" },
- { 18859, "PaX AG" },
- { 18860, "Friends of the Earth International" },
- { 18861, "Educational Standards and Certifictations Inc." },
- { 18862, "WillMedia Corp." },
- { 18863, "Sisters of Charity Health Service" },
- { 18864, "Touring Club Suisse (TCS)" },
- { 18865, "Turunch Technologies" },
- { 18866, "White & Stover Innovations, LLC" },
- { 18867, "Meetinghouse Data Communications" },
- { 18868, "InterNiche Technologies Inc" },
- { 18869, "University of Helsinki" },
- { 18870, "OpsPoint" },
- { 18871, "FirstAttribute AG" },
- { 18872, "The Groovy Corporation" },
- { 18873, "Works Operating Company" },
- { 18874, "S & S Professionals, Inc." },
- { 18875, "Scorpion Software Corp." },
- { 18876, "TEVRON, LLC" },
- { 18877, "Darwin Solutions LLC" },
- { 18878, "Asschem" },
- { 18879, "LinuxHeaven" },
- { 18880, "American Museum of Natural History" },
- { 18881, "Prometeia Srl" },
- { 18882, "Adventist International Institute of Advanced Studies (AIIAS)" },
- { 18883, "Projektgroup LDAP University of Siegen" },
- { 18884, "Shanghai Sansi Technology Co., Ltd." },
- { 18885, "geeks.pl" },
- { 18886, "PFU LIMITED" },
- { 18887, "University of Massachusetts Boston CPCS" },
- { 18888, "Guoxin Telecom System Ltd" },
- { 18889, "\"Arhangelsk Television Company\" Ltd." },
- { 18890, "Integrated Communication Technologies" },
- { 18891, "The Closed Joint-Stock Company ?DeltaBank\0302\0246" },
- { 18892, "GEMMA Systems, spol. s r.o." },
- { 18893, "SMS Siemag AG" },
- { 18894, "Technische Fachhochschule Wildau" },
- { 18895, "Moravska zemska knihovna" },
- { 18896, "Esilog Consulting, S.L." },
- { 18897, "Cellopoint International Corporation" },
- { 18898, "Freie Universitaet Berlin (FU-Berlin)" },
- { 18899, "Isvara" },
- { 18900, "evosoft GmbH" },
- { 18901, "Capital Lease GmbH" },
- { 18902, "Aetat" },
- { 18903, "MANDOZZI ELETTRONICA S.A." },
- { 18904, "Propylon" },
- { 18905, "Total Card, Inc." },
- { 18906, "stefi" },
- { 18907, "Pironet NDH AG" },
- { 18908, "Inpriva, Inc." },
- { 18909, "Service Management Software" },
- { 18910, "Bombardier Transportation Inc." },
- { 18911, "Professional Data Management Again Inc." },
- { 18912, "N-able Technologies Inc." },
- { 18913, "Statna pokladnica" },
- { 18914, "Empneusis Internet Services" },
- { 18915, "Nautronix Ltd" },
- { 18916, "Shanghai TransEngines Technologies Co.,Ltd" },
- { 18917, "Shanghai Futures Exchange" },
- { 18918, "Bringe Informationstechnik GmbH" },
- { 18919, "Alfa21 Outsourcing, S.L." },
- { 18920, "Agencia Notarial de Certificacion" },
- { 18921, "NextiraOne Deutschland GmbH" },
- { 18922, "Trellis Tecnologia Ltda." },
- { 18923, "Yamaguchi University" },
- { 18924, "Relston Consulting Limited" },
- { 18925, "Prior" },
- { 18926, "JTT \"Novel-IL\"" },
- { 18927, "tandav enterprises" },
- { 18928, "Areca Technology Corporation" },
- { 18929, "Interwise, Inc." },
- { 18930, "Skyx.Org" },
- { 18931, "DaveLinux" },
- { 18932, "Naeilnet Inc." },
- { 18933, "ActivNetworks" },
- { 18934, "Vivex GmbH" },
- { 18935, "Essex Electronics, Inc." },
- { 18936, "National Institute of Advanced Industrial Science and Technology" },
- { 18937, "Lynk" },
- { 18938, "Rubix Information Technologies, Inc." },
- { 18939, "Retail Decisions Inc." },
- { 18940, "Kristopher Johnson Consulting" },
- { 18941, "Vermont State Colleges" },
- { 18942, "Liquid Computing Corporation" },
- { 18943, "HealthPartners" },
- { 18944, "nethype GmbH" },
- { 18945, "Dynamic Infosystems Ltd." },
- { 18946, "Digital Species Ltd" },
- { 18947, "CANOPEE SECURITY" },
- { 18948, "Sonatel Multim\0303\0251dia" },
- { 18949, "Golden Eagle Enterprises Ltd" },
- { 18950, "LAN Force Inc." },
- { 18951, "Fast Lane Institute for Knowledge Transfer GmbH" },
- { 18952, "Prudential Finanical" },
- { 18953, "Altkom Akademia S.A." },
- { 18954, "Brandywine Communciations" },
- { 18955, "Digital Identity Ltd." },
- { 18956, "Trusted Network Technologies, Inc." },
- { 18957, "Robert's Computer & Electrical Service" },
- { 18958, "EZNETSOFT" },
- { 18959, "sichuan normal university" },
- { 18960, "Larsen & Toubro Infotech Ltd" },
- { 18961, "Auditor revizijska druzba d.o.o., Ptuj" },
- { 18962, "LRP" },
- { 18963, "EDN Sovintel" },
- { 18964, "ELEKTRONIK HENGARTNER AG" },
- { 18965, "Netyantra Inc." },
- { 18966, "Unassigned" },
- { 18967, "Oxford County Telephone and Telegraph Company" },
- { 18968, "012 goldenlines Ltd" },
- { 18969, "University of Maryland Baltimore" },
- { 18970, "Expert SA" },
- { 18971, "G&S Sistemas de Informaci\0303\0263n, S.L." },
- { 18972, "Panama Canal Authority" },
- { 18973, "TuXic.nl" },
- { 18974, "Universal Business Matrix, LLC" },
- { 18975, "BRG16" },
- { 18976, "Badger Alarm and Control, LLC" },
- { 18977, "NIC-IQ Ltd" },
- { 18978, "CXO Systems Inc." },
- { 18979, "EVERYWHERECOMMUNICATIONS.NET" },
- { 18980, "Cypak AB" },
- { 18981, "Reserved" },
- { 18982, "Link-Yug Ltd." },
- { 18983, "AOK Sachsen" },
- { 18984, "Magos Consulting, Ltd." },
- { 18985, "Insinova AG" },
- { 18986, "FleetBoston Financial Corporation" },
- { 18987, "Ralf Meister" },
- { 18988, "Shanghai Eastimage Equipments Co.,LTD" },
- { 18989, "Day Dreams And Information Technologies" },
- { 18990, "CNC a.s." },
- { 18991, "IOP Publishing Ltd" },
- { 18992, "WEBForce GmbH" },
- { 18993, "ObjectFusion, L.L.C." },
- { 18994, "Olix" },
- { 18995, "CommSpeed, LLC" },
- { 18996, "Globix Corporation" },
- { 18997, "Ibrix Corp." },
- { 18998, "Redstone Consulting, LLC" },
- { 18999, "Health Management Corporation" },
- { 19000, "Dongyang Telecom Ltd." },
- { 19001, "Research Center of Computational Mechanics, Inc." },
- { 19002, "Sun Yat-sen (Zhongshan) University" },
- { 19003, "SENAS.NET" },
- { 19004, "CreationPoint Systems, Inc." },
- { 19005, "AdytumSolutions, Inc." },
- { 19006, "Polish Professional Publishers Ltd." },
- { 19007, "3C Systems Oy" },
- { 19008, "GateHouse" },
- { 19009, "Clever IT di Ivan Raimondi" },
- { 19010, "Bluetop Technology Co., Ltd." },
- { 19011, "Jacarta Ltd." },
- { 19012, "Net Evidence (SLM) Ltd" },
- { 19013, "Sonario" },
- { 19014, "Magix s.r.o." },
- { 19015, "oulman.org" },
- { 19016, "Scholl Consulting" },
- { 19017, "XTEND Consulting, LLC" },
- { 19018, "Dandre" },
- { 19019, "Coastal Carolina University" },
- { 19020, "ryanscool" },
- { 19021, "Ensemble Designs, Inc." },
- { 19022, "Invocom Ltd." },
- { 19023, "LMU" },
- { 19024, "Bixby Telephone Company" },
- { 19025, "OSLiNK Spolka z o.o." },
- { 19026, "Dirk Gorny Unternehmensberatung" },
- { 19027, "TriAWorks, Inc." },
- { 19028, "Sputnik, Inc." },
- { 19029, "Nittotsushinki Co.,Ltd." },
- { 19030, "Suva" },
- { 19031, "LogIn S&C GmbH" },
- { 19032, "Apollis AG" },
- { 19033, "Moniforce B.V." },
- { 19034, "3SP, Investiga\0303\0247\0303\0243o e Desenvolvimento de Tecnologias, Lda." },
- { 19035, "Omnirei s.r.l." },
- { 19036, "Etherboot Project" },
- { 19037, "Bolsa Nacional de Valores" },
- { 19038, "WebNet, Ltd" },
- { 19039, "National Research Center for High Performace Computers" },
- { 19040, "Trusted Computer Solutions, Inc." },
- { 19041, "Apparent Networks Inc." },
- { 19042, "ACBR Computadores Ltda." },
- { 19043, "XiTrust Secure Technologies GmbH" },
- { 19044, "JSC \"Kredyt Bank (Ukrajina)\"" },
- { 19045, "MyNetwork System Co.,Ltd" },
- { 19046, "Lenovo Enterprise Business Group" },
- { 19047, "Magerealm Enterprises" },
- { 19048, "Fambus" },
- { 19049, "Scalix Corporation" },
- { 19050, "Conchis, LLC" },
- { 19051, "Martin Thorpe" },
- { 19052, "Seekamp Enterprises" },
- { 19053, "KUBOTEK Corporation" },
- { 19054, "Intraperson" },
- { 19055, "Naviscan PET Systems, Inc." },
- { 19056, "Access Computech Pvt Ltd." },
- { 19057, "Exavio, Inc." },
- { 19058, "BISON Systems AG" },
- { 19059, "moreCom A/S" },
- { 19060, "UXComm" },
- { 19061, "Werner Wiethege" },
- { 19062, "Tuxee Network" },
- { 19063, "Alterlane" },
- { 19064, "Bureau Ing\0303\0251nierie Richard Domon SA" },
- { 19065, "PETIT-FR" },
- { 19066, "Macnetix OHG" },
- { 19067, "Universidade Cat\0303\0263lica Portuguesa" },
- { 19068, "Travel Only" },
- { 19069, "xenocastle" },
- { 19070, "Kevcom Microsolutions" },
- { 19071, "I-Assure" },
- { 19072, "Magnasync" },
- { 19073, "Sundowner Trailers Inc" },
- { 19074, "Fidelis Security Systems, Inc" },
- { 19075, "Po\0305\0241tna banka Slovenije, d. d." },
- { 19076, "xenocastle" },
- { 19077, "Xing-Lab" },
- { 19078, "Fujitsu Component Limited" },
- { 19079, "Silicon Data International Co., Ltd." },
- { 19080, "Tsukasa Enterprise" },
- { 19081, "Wuhan Jetway Information Security Industry Co.,Ltd" },
- { 19082, "Voelcker Informatik AG" },
- { 19083, "Albanet Ltd" },
- { 19084, "Mimic Productions" },
- { 19085, "The Davidge Group" },
- { 19086, "Maytech Publishing Ltd" },
- { 19087, "NTx BackOffice Consulting Group GmbH" },
- { 19088, "Maersk Data SPECTIVE" },
- { 19089, "Infor.org Inc. Taiwan" },
- { 19090, "Bernhard-Riemann-Gymnasium Scharnebeck" },
- { 19091, "NuGenesis Technologies, Inc" },
- { 19092, "Exa Networks Ltd" },
- { 19093, "Hofsvang" },
- { 19094, "peerVue LLC" },
- { 19095, "TiL Solutions inc." },
- { 19096, "info2cell.com FZ-LLC" },
- { 19097, "DefaultCity" },
- { 19098, "PAL Communications" },
- { 19099, "Whitewater Mobile LLC" },
- { 19100, "OHANA WIRELESS INCORPORATED" },
- { 19101, "Vouch Integrated Technologies (P) Ltd." },
- { 19102, "Karlsruher Lebensversicherung AG" },
- { 19103, "CHMS, Inc." },
- { 19104, "BOUYGUES, SA" },
- { 19105, "Fabian Fagerholm Consulting" },
- { 19106, "Deep Eddy Internet Consulting" },
- { 19107, "boojum mobile, inc" },
- { 19108, "I&TC Solutions Pty. Ltd." },
- { 19109, "PacketMotion, Inc." },
- { 19110, "Conduit Networks, Inc" },
- { 19111, "eBdesk Ltd" },
- { 19112, "RJL Computer Consulting, LLC" },
- { 19113, "Server Place LTDA" },
- { 19114, "Proximion Fiber Systems AB" },
- { 19115, "Bernhard-Riemann-Gymnasium Scharnebeck" },
- { 19116, "Antidot" },
- { 19117, "MAMM d.o.o." },
- { 19118, "Europlex Technologies Ltd." },
- { 19119, "Blue Chip Technology Ltd" },
- { 19120, "800onemail Inc." },
- { 19121, "Augmentix Corporation" },
- { 19122, "Yang Arts" },
- { 19123, "Virtual Charting" },
- { 19124, "Pexim d.o.o." },
- { 19125, "Planar Systems, Inc." },
- { 19126, "AECODI" },
- { 19127, "SpamPet" },
- { 19128, "KomKom Electronics" },
- { 19129, "Sanek Systems" },
- { 19130, "MenuSiS Technologies (Pty) Ltd." },
- { 19131, "Stiftung Synanon" },
- { 19132, "The Cheshire Web Mill" },
- { 19133, "Baycom Opoto-Electronics Technology Co., Ltd." },
- { 19134, "Texocom Inc" },
- { 19135, "Darkerhosting.net" },
- { 19136, "Trichord, Inc." },
- { 19137, "Sebastian Staiger Computer Services" },
- { 19138, "Bright Prospects LLC" },
- { 19139, "Edgewater Networks, Inc." },
- { 19140, "Matthew R. Wilson" },
- { 19141, "Quest Serviced Apartments" },
- { 19142, "Carlo Strozzi (formerly 'ScriptaWorks s.r.l.')" },
- { 19143, "SecureAge Technology" },
- { 19144, "Arjuna" },
- { 19145, "Xonix" },
- { 19146, "Jubatus Corporation" },
- { 19147, "Universit\0303\0240 degli Studi di Milano" },
- { 19148, "acticall" },
- { 19149, "Innovaciones Microelectr\0303\0263nicas S.L." },
- { 19150, "Ville d'Aulnay-sous-bois" },
- { 19151, "WRX Slovakia s.r.o." },
- { 19152, "Camargo e Souza SC/LTDA" },
- { 19153, "Instituto Polit\0303\0251cnico Do Porto" },
- { 19154, "Corporacion Nacional de Angioplastia" },
- { 19155, "AirManage Networks Ltd." },
- { 19156, "Cutting Edge" },
- { 19157, "Chongqing Changsong Network Information Co.LTD" },
- { 19158, "PlumStreet, LLC" },
- { 19159, "Shelton School District" },
- { 19160, "ICAT Managers, LLC" },
- { 19161, "POSnet Services, LLC" },
- { 19162, "Evolving Media Network, LLC" },
- { 19163, "insen" },
- { 19164, "Initial City Link Limited" },
- { 19165, "Kanton Solothurn" },
- { 19166, "Alswille Gloabal Services" },
- { 19167, "CapMon A/S" },
- { 19168, "Fruno S.A." },
- { 19169, "Volantis Systems Ltd" },
- { 19170, "X-Taskforce s.r.l." },
- { 19171, "Checkcare Enterprises, LLC" },
- { 19172, "PFM.Net, Inc." },
- { 19173, "Rex Consulting, Inc." },
- { 19174, "Gestalt, LLC" },
- { 19175, "oraise GmbH" },
- { 19176, "SCOMCENTER" },
- { 19177, "Tandem Systems, Ltd." },
- { 19178, "Skill Corporation" },
- { 19179, "Raysis Co.,Ltd" },
- { 19180, "Guidewire Software, Inc." },
- { 19181, "Optimum Holding Inc." },
- { 19182, "JDA Software" },
- { 19183, "Herdt Domain Service" },
- { 19184, "Widerthan.com" },
- { 19185, "LinuxCare Ltd." },
- { 19186, "Xtramus Technologies" },
- { 19187, "MEK" },
- { 19188, "satunol mikrosistem" },
- { 19189, "Senshu University" },
- { 19190, "Bildanalyssystem AB" },
- { 19191, "woofertom media" },
- { 19192, "Iglooz Technologies" },
- { 19193, "b-next GmbH" },
- { 19194, "Interbyte bvba" },
- { 19195, "TRANSRADIO SenderSysteme Berlin AG" },
- { 19196, "Agarik" },
- { 19197, "Eastlink GmbH" },
- { 19198, "activ-net GmbH & Co. KG" },
- { 19199, "SHC Netzwerktechnik GmbH" },
- { 19200, "MMG" },
- { 19201, "Oyster Partners Ltd" },
- { 19202, "meto-logic" },
- { 19203, "DAI-Labor" },
- { 19204, "Milano Medien GmbH" },
- { 19205, "Secardeo GmbH" },
- { 19206, "Hollins University" },
- { 19207, "Graphic Management Partners Inc." },
- { 19208, "analytiq consulting gmbh" },
- { 19209, "Caterpillar Inc." },
- { 19210, "Cassatt Corporation" },
- { 19211, "TEZ Georgsberg GmbH" },
- { 19212, "University System of Maryland" },
- { 19213, "Raining Data Corporation" },
- { 19214, "Ogilvy & Mather Deutschland GmbH (formerly 'WPP Service GmbH & Co. KG')" },
- { 19215, "European Organisation for Research and Treatment of Cancer AISBL / IVZW" },
- { 19216, "Heringa" },
- { 19217, "iiNet Pty Ltd" },
- { 19218, "Fortress Networks (Aust) Pty Ltd" },
- { 19219, "Pi Kappa Alpha - Gamma Tau" },
- { 19220, "Local-Web AG" },
- { 19221, "Metropolis AG" },
- { 19222, "Eurotek srl" },
- { 19223, "Internap Network Services Corporation" },
- { 19224, "OSSBroadNet K.K" },
- { 19225, "Tumel" },
- { 19226, "Titanium" },
- { 19227, "Blackwood Medical Inc" },
- { 19228, "Finish Line, Inc." },
- { 19229, "CFOknows, LLC" },
- { 19230, "Graphix Prose, LLC" },
- { 19231, "Lumenware, LLC" },
- { 19232, "LSC Linux Support Center Kft." },
- { 19233, "Blue Lane Technologies Inc." },
- { 19234, "M2" },
- { 19235, "Silver Diamond Services, LLP" },
- { 19236, "CPM SA" },
- { 19237, "becom Informationssysteme GmbH" },
- { 19238, "Moore Systems, Inc." },
- { 19239, "cfSOFTWARE, Inc." },
- { 19240, "Nanshu Densetsu" },
- { 19241, "Cemaphore Systems Inc." },
- { 19242, "Tellusoft" },
- { 19243, "Titus" },
- { 19244, "SafeNet Media" },
- { 19245, "CBPM Software" },
- { 19246, "XWDL" },
- { 19247, "Romat Telecom Ltd." },
- { 19248, "MANIA Research Group" },
- { 19249, "FabianSoft di Fabiano Copeta" },
- { 19250, "Image Systems Corporation" },
- { 19251, "KIP Information Network" },
- { 19252, "NuPi Solutions" },
- { 19253, "Jaspert" },
- { 19254, "Dark Blue Sea" },
- { 19255, "Vaccius ITsec Pte LTd" },
- { 19256, "iCADA GmbH" },
- { 19257, "ProSyntic Ingenieurs b.v." },
- { 19258, "La Joliverie" },
- { 19259, "Ansync Inc." },
- { 19260, "MagiQ Technologies, Inc." },
- { 19261, "Minneapolis College of Art and Design" },
- { 19262, "Dedicado" },
- { 19263, "ET VOILA !!" },
- { 19264, "Magnus Weis" },
- { 19265, "Momentum Computer, Inc." },
- { 19266, "Bayerisches Landesamt f\0303\0274r Statistik und Datenverarbeitung" },
- { 19267, "Ajuntament de Palma" },
- { 19268, "Intercomp Ltd." },
- { 19269, "Hybrigenics SA" },
- { 19270, "Stora Enso Oyj" },
- { 19271, "Minist\0303\0250re de l'\0303\0251conomie, des finances et de l'industrie (Minefi)" },
- { 19272, "praksys" },
- { 19273, "TMBNET" },
- { 19274, "Services Industriels de Geneve" },
- { 19275, "Constant Data, Inc." },
- { 19276, "Paedagogische Hochschule Ludwigsburg" },
- { 19277, "Shenandoah Solutions, Inc." },
- { 19278, "INOV - INESC Inova\0303\0203\0302\0247\0303\0203\0302\0243o" },
- { 19279, "TMBNET" },
- { 19280, "China Daily" },
- { 19281, "Intrasync, LLC" },
- { 19282, "Institute of Continuous Media Mechanics" },
- { 19283, "Sibelius Academy" },
- { 19284, "TGS Telonic GmbH" },
- { 19285, "BRAZILMALL NETWORK LTDA" },
- { 19286, "Universidad de Los Andes" },
- { 19287, "META Industriesoftware GmbH" },
- { 19288, "ECOPETROL S.A." },
- { 19289, "3Sharp" },
- { 19290, "Just Aaron" },
- { 19291, "Macrad" },
- { 19292, "Pirel inc." },
- { 19293, "Danriver Technologies Corporation (formerly 'Shanghai jisung information technology co.,Ltd')" },
- { 19294, "LeapComm Communication Technologies Inc." },
- { 19295, "Kolle, IT-Ingeni\0303\0270rfirma ApS" },
- { 19296, "Filterlogix, LLC" },
- { 19297, "DSpace Pty Ltd" },
- { 19298, "Media Cruise Solutions k.k." },
- { 19299, "Turkcell Iletisim Hizmetleri A.S." },
- { 19300, "Deutscher Sparkassen Verlag GmbH" },
- { 19301, "Pulse Software & Consulting Inc." },
- { 19302, "CryptCOM Securities, Inc." },
- { 19303, "Zhejiang Telecom Equipment Factory" },
- { 19304, "BNP Paribas Arbitrage" },
- { 19305, "Indio Technologies" },
- { 19306, "FatPipe Networks" },
- { 19307, "MDS INC." },
- { 19308, "Genesee Freenet" },
- { 19309, "chandan" },
- { 19310, "D.H.S. - Data, Hardware, Software spol s r.o." },
- { 19311, "Sterling Crane" },
- { 19312, "Archivas, Inc." },
- { 19313, "beu.ch" },
- { 19314, "Hein Roehrig IT Consulting GbR" },
- { 19315, "Andrew Johnson" },
- { 19316, "Mitsubishi Motors Corporation" },
- { 19317, "1310369 Ontario Ltd." },
- { 19318, "SPAN International" },
- { 19319, "CLSA Ltd" },
- { 19320, "Tomsktelecom, a branch of Sibirtelecom OJSC" },
- { 19321, "VSnet" },
- { 19322, "netiq s.r.o." },
- { 19323, "National Centre for Physics" },
- { 19324, "Rover Laboratories S.p.A." },
- { 19325, "Eroski S. Coop." },
- { 19326, "Tancsics Mihaly SzSzK" },
- { 19327, "Deutscher Skiverband" },
- { 19328, "TRANSGENE SA" },
- { 19329, "Telcotec Ltd." },
- { 19330, "R&K Engineering, Inc." },
- { 19331, "TECNET GMBH" },
- { 19332, "Paperlinx NZ Ltd" },
- { 19333, "Electro Industries/GaugeTech" },
- { 19334, "Cerzan, Inc." },
- { 19335, "Intermax BV" },
- { 19336, "Signull Technologies" },
- { 19337, "Dynamx Internet Services" },
- { 19338, "Bharti Telesoft International Pvt. Ltd." },
- { 19339, "Fachhochschule Bochum" },
- { 19340, "Provincia di Reggio Emilia" },
- { 19341, "Foreningssparbanken" },
- { 19342, "Pinuts media+science Multimedia-Agentur GmbH" },
- { 19343, "Medictyon" },
- { 19344, "United SSL Deutschland GmbH" },
- { 19345, "Odd Element Inc." },
- { 19346, "SMComputer EDV Service & Consulting Schmid Manfred" },
- { 19347, "Pyzzo Software Corporation" },
- { 19348, "Synacor, Inc." },
- { 19349, "Lightshore" },
- { 19350, "eyevis" },
- { 19351, "Ivega Corporation Pvt. Ltd." },
- { 19352, "IP Labs GmbH" },
- { 19353, "ScottRickman" },
- { 19354, "E-Force S.r.l." },
- { 19355, "Sebastian Dietzold" },
- { 19356, "Agroportal B.V." },
- { 19357, "University Medical Centre Nijmegen" },
- { 19358, "Wildner AG" },
- { 19359, "TOPPAN FORMS CO.,LTD." },
- { 19360, "Q&R B.V." },
- { 19361, "Knowledge Media Research Center" },
- { 19362, "Virtuous, Inc." },
- { 19363, "Net Island Networks" },
- { 19364, "4thpass Inc." },
- { 19365, "Nike Inc." },
- { 19366, "Westel Systems" },
- { 19367, "Ecolab, Inc" },
- { 19368, "Azul Systems, Inc." },
- { 19369, "Laboratorio Imagen Radiologica" },
- { 19370, "Telecast Fiber Systems, Inc." },
- { 19371, "Lanvise" },
- { 19372, "Miami County ESC" },
- { 19373, "PowerTel Limited" },
- { 19374, "Orc Software" },
- { 19375, "Max-SI" },
- { 19376, "Integrating the Healthcare Enterprise" },
- { 19377, "Nekotec Telecom" },
- { 19378, "MagicCastle Cummunication" },
- { 19379, "Imperva, Inc." },
- { 19380, "TAMURA Corporation" },
- { 19381, "Bundesanstalt fuer Finanzdienstleistungsaufsicht" },
- { 19382, "Manzara Electronics LTD." },
- { 19383, "Mikromarketingas UAB" },
- { 19384, "VIC TOKAI CORPORATION" },
- { 19385, "Infinity Comunicaciones" },
- { 19386, "Martech Systems (Weymouth) Ltd." },
- { 19387, "Laboratori Guglielmo Marconi" },
- { 19388, "DB Systems GmbH" },
- { 19389, "ComSign Ltd." },
- { 19390, "Trend Software LLC" },
- { 19391, "SASH Management, LLC" },
- { 19392, "City of Union City, Georgia" },
- { 19393, "Trident Systems Incorporated" },
- { 19394, "I.T. By Design, Inc." },
- { 19395, "NewLink Genetics" },
- { 19396, "CITI - Center for Information Technology Integration" },
- { 19397, "TrafficSim Co., Ltd." },
- { 19398, "JSC Institute of Informational Technologies" },
- { 19399, "Xylon Computersystems" },
- { 19400, "TriggerPlus Software Ltd." },
- { 19401, "Fachhochschule Kaiserslautern Standort Zweibruecken" },
- { 19402, "Robert W. Baird & Co" },
- { 19403, "Westbridge Technology, Inc." },
- { 19404, "NIC Inc." },
- { 19405, "Advanced Systems Concepts, Inc." },
- { 19406, "Adiscon GmbH" },
- { 19407, "Atomic9.NET" },
- { 19408, "Zweicom Ltd." },
- { 19409, "Smittskyddsinstitutet" },
- { 19410, "Ministerio de Economia y Hacienda" },
- { 19411, "Andreas Falk" },
- { 19412, "TeliaSonera Mobile Networks AB" },
- { 19413, "SBIM-FMUP" },
- { 19414, "Kolab Project" },
- { 19415, "Docucorp International" },
- { 19416, "Edison Schools" },
- { 19417, "Envoy International, LLC" },
- { 19418, "Stampede Technologies, Inc." },
- { 19419, "Internet-Team GmbH" },
- { 19420, "NodeMinder" },
- { 19421, "Futago LLC" },
- { 19422, "LDAP Technologies" },
- { 19423, "Global Dial Pty Ltd" },
- { 19424, "ECoCoMS Ltd." },
- { 19425, "Hinttech BV" },
- { 19426, "ESDG Konsult AB" },
- { 19427, "The Excel Ortho Group" },
- { 19428, "NovAG-Services Ltd." },
- { 19429, "Alphawave Ltd" },
- { 19430, "NET-2COM Ltd." },
- { 19431, "JSC Kordon" },
- { 19432, "Virulent Software" },
- { 19433, "Austin Independent School District" },
- { 19434, "Concepts et contenus" },
- { 19435, "Hectec GmbH" },
- { 19436, "Concordia University" },
- { 19437, "European School of Management and Technology GmbH" },
- { 19438, "Broadweave Networks" },
- { 19439, "Kingstar&winning Medical Info-Tech Co.,Ltd." },
- { 19440, "IAD GENERAL CO.,LTD" },
- { 19441, "Toroki, Inc." },
- { 19442, "PHANTOM" },
- { 19443, "EGATEL S.L." },
- { 19444, "Metaswitch Networks Ltd (formerly 'Data Connection Ltd')" },
- { 19445, "Calltech Sp. z o.o." },
- { 19446, "Cable One" },
- { 19447, "Swift and Company" },
- { 19448, "zending" },
- { 19449, "Systinet Corp." },
- { 19450, "NetShift Software Ltd" },
- { 19451, "NextG Networks, Inc." },
- { 19452, "BeiJing NuQX Technology CO.,LTD" },
- { 19453, "Ufinity Pte. Ltd." },
- { 19454, "Airspan Networks Inc." },
- { 19455, "Marks & Spencer PLC" },
- { 19456, "Prediwave, Inc" },
- { 19457, "Platinum Equity, LLC" },
- { 19458, "Application Security, Inc." },
- { 19459, "RF Applications, Inc." },
- { 19460, "Sycamore.US" },
- { 19461, "Cendant Mortgage Corporation" },
- { 19462, "Roberto Capancioni" },
- { 19463, "Division of Johns Hopkins in Singapore Limited" },
- { 19464, "Hitachi Communication Technologies, Ltd." },
- { 19465, "Franziska Buendgens" },
- { 19466, "PND1" },
- { 19467, "GeekBone.org" },
- { 19468, "Ishihata industry" },
- { 19469, "Highnet Systems Ltd." },
- { 19470, "Highnet Systems Ltd." },
- { 19471, "Secgo Group Oy" },
- { 19472, "Staer Sistemi s.r.l." },
- { 19473, "North American Electric Reliabiity Corporation" },
- { 19474, "CRL" },
- { 19475, "Confedera\0303\0247\0303\0243o Interestadual das Cooperativas Ligadas ao Sicredi - Sicredi" },
- { 19476, "Highwall Technologies, LLC" },
- { 19477, "Infocaja, S.L." },
- { 19478, "Rapidpacket" },
- { 19479, "KeyOn Communications, LLC" },
- { 19480, "litica.de - Hermann & Matejek GbR" },
- { 19481, "BluePig" },
- { 19482, "Waldmann" },
- { 19483, "Aqua Systems, Inc." },
- { 19484, "BANCO DE ESPA\0303\0221A" },
- { 19485, "art of object GmbH" },
- { 19486, "Venali Inc" },
- { 19487, "Lucent Technologies, Mobility IN" },
- { 19488, "Toadico, Inc" },
- { 19489, "IP3 Networks, Inc." },
- { 19490, "Hiper S.A." },
- { 19491, "Epeople Solu\0303\0247\0303\0265es S/C LTDA" },
- { 19492, "ADDC Infotech GmbH" },
- { 19493, "iMEDIC GmbH" },
- { 19494, "Richard Schilling, MBA" },
- { 19495, "National Informatics Company" },
- { 19496, "Cognition Group, Inc." },
- { 19497, "OSS Application Consulting Centre, Taiwan" },
- { 19498, "HMJ - Projets D\0303\0251localis\0303\0251s" },
- { 19499, "Association Inforoots" },
- { 19500, "Government Information Technology Services" },
- { 19501, "Trust Investment Bank, JSB" },
- { 19502, "QORVUS Systems, Inc." },
- { 19503, "Lockdown Networks, Inc." },
- { 19504, "Mullen" },
- { 19505, "verzeichnisdienst" },
- { 19506, "Christian Jahn" },
- { 19507, "haroldbeumer.com" },
- { 19508, "The Software Guild, Inc." },
- { 19509, "Trident Microsystem INC" },
- { 19510, "Center for Excellence in Telecommunications and Space" },
- { 19511, "Larry Burton" },
- { 19512, "SAHM Technologies LLC" },
- { 19513, "C3 Desenvolvimento de Sistemas Computacionais Ltd." },
- { 19514, "On Demand Systems Limited Partnership" },
- { 19515, "TREND Service GmbH" },
- { 19516, "Universitaet Erfurt" },
- { 19517, "Colibria AS" },
- { 19518, "Technische Universit\0303\0244t M\0303\0274nchen" },
- { 19519, "E.Novation Portal Technology B.V." },
- { 19520, "Samartha Information Systems Pty. Ltd." },
- { 19521, "dataschalt e+a GmbH" },
- { 19522, "Aineas.net" },
- { 19523, "Sequence Solutions" },
- { 19524, "Rational Innovations" },
- { 19525, "Tippecanoe County Public Library" },
- { 19526, "BlueBoxStudio.net" },
- { 19527, "Global Technology Ltd" },
- { 19528, "Meson Fiber Optics" },
- { 19529, "NetStrong Information Ltd." },
- { 19530, "NetMaster Ltd." },
- { 19531, "INSA de Rennes" },
- { 19532, "businessMart AG" },
- { 19533, "TeleMessage Ltd." },
- { 19534, "Gorenjska banka d.d. Kranj" },
- { 19535, "ACNMS" },
- { 19536, "Panduit Corp." },
- { 19537, "M5 Networks, Inc." },
- { 19538, "Add2Net, Inc." },
- { 19539, "Country Haven Academy" },
- { 19540, "NCS Consulting Inc." },
- { 19541, "Belgorodenergo" },
- { 19542, "Aalborg University Library" },
- { 19543, "Wellcome Trust Sanger Institute" },
- { 19544, "Weather Strategies" },
- { 19545, "Sony CISC" },
- { 19546, "MELENTANE" },
- { 19547, "Oplink Communications, Inc." },
- { 19548, "FROX communication" },
- { 19549, "Uni-Q Systems (formerly 'ENGREN.NET')" },
- { 19550, "an Academic Network at Sao Paulo (ANSP)" },
- { 19551, "Thales Naval France" },
- { 19552, "Alexander Kowalski" },
- { 19553, "Beijing Gtt Telecom Technologies Co.Ltd" },
- { 19554, "PIPPKRO" },
- { 19555, "Engim Inc" },
- { 19556, "NextJet Technologies" },
- { 19557, "Frank Holtz" },
- { 19558, "StoneHole" },
- { 19559, "Zones Inc" },
- { 19560, "Informationssicherheit Christian Scheucher" },
- { 19561, "Maxim Integrated Products, Inc." },
- { 19562, "Telena Communication" },
- { 19563, "Center for Imaging Research" },
- { 19564, "GOLUM" },
- { 19565, "Escape Communications, Inc." },
- { 19566, "C-Scape Consulting Corp." },
- { 19567, "ScienceLogic LLC" },
- { 19568, "Global Gate Systems LLC." },
- { 19569, "Grid Research Lab" },
- { 19570, "frottage.org" },
- { 19571, "Micromatic Tecnologia e Sistemas Ltda" },
- { 19572, "ecnuee" },
- { 19573, "Adeptiva" },
- { 19574, "Network Gulf Information Technology" },
- { 19575, "Sansay Inc." },
- { 19576, "Slovanet a.s." },
- { 19577, "ACE electronics N.V." },
- { 19578, "IPConsulting AG" },
- { 19579, "Info Point" },
- { 19580, "RZF Rechenzentrum der Finanzverwaltung des Landes NRW" },
- { 19581, "TTC Telecom Ltd." },
- { 19582, "Pixelpark AG" },
- { 19583, "Wayfarer Transit Systems Ltd." },
- { 19584, "headissue GmbH" },
- { 19585, "Laboranowitsch" },
- { 19586, "ICAN (International Communications and Navigation Ltd.)" },
- { 19587, "Adtec Digital, Inc." },
- { 19588, "Tecnologia Bancaria SA" },
- { 19589, "Business Link Kent Ltd" },
- { 19590, "Systems Solution, Inc." },
- { 19591, "Oral Roberts University" },
- { 19592, "Prince Law Offices, P.C." },
- { 19593, "Nerim" },
- { 19594, "MediaCell, Inc." },
- { 19595, "Alcatel Shanghai Bell Co. Ltd." },
- { 19596, "nhnghia" },
- { 19597, "Capnova Oy" },
- { 19598, "ianet" },
- { 19599, "GeniusBytes Software Solutions GmbH" },
- { 19600, "CTA Systemsource Inc." },
- { 19601, "RGB Networks, Inc." },
- { 19602, "Custom IdM Solutions" },
- { 19603, "dezcom" },
- { 19604, "Secure Network Systems, LLC" },
- { 19605, "Starview Technology Inc" },
- { 19606, "Nienschanz Ltd." },
- { 19607, "Argelcom Limited" },
- { 19608, "Astea International Inc." },
- { 19609, "Zytec" },
- { 19610, "BaseN Oy" },
- { 19611, "trustsec IT solutions GmbH" },
- { 19612, "Wyncote.net" },
- { 19613, "Willing Minds LLC" },
- { 19614, "Business Port Systems Inc." },
- { 19615, "FCS India (Pvt) Ltd." },
- { 19616, "InterCard AG" },
- { 19617, "Taglicht.Com S\0303\0240rl" },
- { 19618, "Return Data" },
- { 19619, "Go Net" },
- { 19620, "NETDEVICES INC." },
- { 19621, "alibaba" },
- { 19622, "Shenzhen Union Broadband Communication Co., Ltd." },
- { 19623, "is:energy czech a.s." },
- { 19624, "MANDA" },
- { 19625, "Unilever PLC" },
- { 19626, "Permabit, Inc." },
- { 19627, "NTPL" },
- { 19628, "webslingerZ, Inc." },
- { 19629, "University of Cincinnati" },
- { 19630, "Alopa Networks Inc." },
- { 19631, "eDial Inc." },
- { 19632, "Rygo Technical Enterprises" },
- { 19633, "BOFH Networks Oy" },
- { 19634, "THALIX" },
- { 19635, "Prager, Sealy & Co. LLC" },
- { 19636, "SolNet Data Service" },
- { 19637, "Oakmoon Consulting, Inc." },
- { 19638, "University of Texas at Arlington" },
- { 19639, "Teztech, Inc." },
- { 19640, "Automated Marketing Solutions Inc." },
- { 19641, "Holley Communications Group" },
- { 19642, "East Alabama Medical Center" },
- { 19643, "Yipes Enterprise Services Inc." },
- { 19644, "Polaris Wireless Inc." },
- { 19645, "Sioux Medical Systems B.V." },
- { 19646, "Computing Edge, Inc." },
- { 19647, "Frederiksborg Amt" },
- { 19648, "TransCore" },
- { 19649, "ERP-HQ Inc." },
- { 19650, "etilize Inc." },
- { 19651, "Seven-Star Inc." },
- { 19652, "National Chi Nan University, Taiwan" },
- { 19653, "Integral Technology Solutions Pty Ltd" },
- { 19654, "Infoteria Corporation" },
- { 19655, "University of Zululand" },
- { 19656, "dreamtel" },
- { 19657, "PlewsNet" },
- { 19658, "Macro-System" },
- { 19659, "Paradigit Computers B.V." },
- { 19660, "CRO24 GmbH" },
- { 19661, "Gleiss Lutz" },
- { 19662, "Telenor AB" },
- { 19663, "Secure-Group AS" },
- { 19664, "gr3 a/s" },
- { 19665, "Grazer Wechselseitige Versicherung AG" },
- { 19666, "Alcatel Suomi Oy" },
- { 19667, "Dr. Ing. h.c. F. Porsche AG" },
- { 19668, "A.S. Reiiseveranstaltungs GmbH" },
- { 19669, "aserva GmbH (formerly 'newthinking IT, Inhaber Alexander Scheibner')" },
- { 19670, "IT University of Copenhagen" },
- { 19671, "DMDsecure.com BV" },
- { 19672, "Gratisavisa Stimuli" },
- { 19673, "ByteHoard" },
- { 19674, "Catalis Health, Inc." },
- { 19675, "Lixto Software GmbH" },
- { 19676, "University of Houston" },
- { 19677, "Unassigned" },
- { 19678, "Relinace Infocomm" },
- { 19679, "Prusch" },
- { 19680, "Dembach Goo Informatik GmbH" },
- { 19681, "vitadurum ag" },
- { 19682, "Balo n Co" },
- { 19683, "WelLink.,Ltd" },
- { 19684, "Town & Country Credit Corp." },
- { 19685, "Virginia Dept. of Social Services" },
- { 19686, "net-concept" },
- { 19687, "Indicative Software, Inc" },
- { 19688, "Cargo IT AG" },
- { 19689, "Evolta B.V." },
- { 19690, "Line4, Inc." },
- { 19691, "eProcess Burkina" },
- { 19692, "Hoppe Dialog GmbH" },
- { 19693, "University of California Santa Cruz (UCSC)" },
- { 19694, "Enterprise Management Shareware" },
- { 19695, "projektfarm GmbH" },
- { 19696, "Cherrypicks" },
- { 19697, "May10 Technology Inc." },
- { 19698, "Information Technology Services Department" },
- { 19699, "System Detection, Inc." },
- { 19700, "Traqueur SA" },
- { 19701, "Mars Computer Systems Sp. J." },
- { 19702, "BSZ Leonberg" },
- { 19703, "Agence de l'Eau Seine Normandie" },
- { 19704, "NetFocus S.R.L" },
- { 19705, "Citto Tecnologia LTDA" },
- { 19706, "BBned NV" },
- { 19707, "Micran Ltd." },
- { 19708, "Brain BroadCast sas" },
- { 19709, "TexRamp, Inc." },
- { 19710, "Bitbuzz Ltd" },
- { 19711, "scaryclowns.org" },
- { 19712, "WebSolve, Inc." },
- { 19713, "Elfiq Inc." },
- { 19714, "Logic Development" },
- { 19715, "LinkAir Communications, Inc." },
- { 19716, "Ars Lumina, Inc." },
- { 19717, "Greatmark" },
- { 19718, "Motorola Israel Ltd. - NSA" },
- { 19719, "QuaQuaNet" },
- { 19720, "Westmarsh Consulting Ltd" },
- { 19721, "BlazeArts Ltd. services.hu network" },
- { 19722, "CONYSER Consulting y Servicios S.L." },
- { 19723, "Broadbus Technologies, Inc." },
- { 19724, "DigiDyne Inc." },
- { 19725, "D. Trust Certifikacna Autorita, a.s." },
- { 19726, "Clinical Reference Laboratory, Inc." },
- { 19727, "Shylex Telecomunicaciones, S.L." },
- { 19728, "Techno-Toolsmiths" },
- { 19729, "SOFTREK CORPORATION" },
- { 19730, "Logic Etc, Inc." },
- { 19731, "Sinaptica Networks" },
- { 19732, "dragonsdawn.net" },
- { 19733, "HUB Consulting, Inc." },
- { 19734, "RAYCOM Co.,LTD." },
- { 19735, "OGA SynCom Co..,LTD" },
- { 19736, "i-RAID" },
- { 19737, "Kyneste S.p.A." },
- { 19738, "Campana" },
- { 19739, "UZorg B.V." },
- { 19740, "Institut de Math\0303\0251matiques et de Sciences Physiques/Universit\0303\0251" },
- { 19741, "Residential Technology, Incorporated" },
- { 19742, "Kazeon Systems, Inc" },
- { 19743, "jpwebworks Pty Ltd" },
- { 19744, "Novacoast, Inc." },
- { 19745, "netz.ooo (formerly 'Dataflake Weblications')" },
- { 19746, "Data Domain, Inc" },
- { 19747, "The Open and Free Technology Community" },
- { 19748, "Affiliated Computer Services, Inc. TripPak SERVICES" },
- { 19749, "CISNS" },
- { 19750, "Beijing YTT Telecom Technologies Co.,Ltd" },
- { 19751, "NOTE Torsby AB" },
- { 19752, "AIS, Aplicaciones de Inteligencia Artificial, S.A." },
- { 19753, "Inexbee" },
- { 19754, "ESG Elektroniksystem- und Logistik-GmbH" },
- { 19755, "Pera International Ltd" },
- { 19756, "Schwabing Software" },
- { 19757, "Iontas" },
- { 19758, "Hafsjold Data ApS" },
- { 19759, "Compunetix, Inc" },
- { 19760, "Leon County Schools" },
- { 19761, "Gordon Aluminum Industries, Inc." },
- { 19762, "Caminos y Canales Ltd." },
- { 19763, "Branch Banking and Trust Corporation" },
- { 19764, "Vandenberg Systems Inc." },
- { 19765, "Systems Engineering Associates, Inc." },
- { 19766, "Wuhan University of Technology" },
- { 19767, "Cooperativa Novanta s.c.r.l." },
- { 19768, "Skybox Security Ltd." },
- { 19769, "JLCX Inc" },
- { 19770, "SelfSigned.com" },
- { 19771, "IBM, Tivoli Provisioning and Orchestration" },
- { 19772, "Mobile Wisdom, Inc." },
- { 19773, "New-Global Corporation" },
- { 19774, "mBlox, Inc." },
- { 19775, "IPG Photonics Corporation" },
- { 19776, "TI Paperco Inc." },
- { 19777, "Taylor University" },
- { 19778, "LinguaNet" },
- { 19779, "BOBEK" },
- { 19780, "Claridion Inc." },
- { 19781, "Odys-solutions" },
- { 19782, "AEGEE-Utrecht" },
- { 19783, "NorthLANs Alliance, LLC" },
- { 19784, "Little Box Solutions Inc." },
- { 19785, "Grand Central Communications" },
- { 19786, "Esteban Pizzini" },
- { 19787, "Ayub Yaqub" },
- { 19788, "LDT Communication Technology CO. LTD" },
- { 19789, "Sheard and Company Pty Limited" },
- { 19790, "INSE7120 conU" },
- { 19791, "MW EDV-Beratung" },
- { 19792, "Forte IT" },
- { 19793, "firstServed NV" },
- { 19794, "IP Security Consulting" },
- { 19795, "AssetHouse Technology Ltd" },
- { 19796, "Jostens Inc" },
- { 19797, "Stefan Fiedler KEG" },
- { 19798, "FBIS" },
- { 19799, "Jeremy McMillan" },
- { 19800, "Derek Balling" },
- { 19801, "PineApp Ltd." },
- { 19802, "Atlanta Business Software, Inc." },
- { 19803, "EC Telecom" },
- { 19804, "The Norns Laboratories" },
- { 19805, "idiotwind.org" },
- { 19806, "SportOdds Systems Pty Limited" },
- { 19807, "AlarmsPro Inc." },
- { 19808, "Open Cloud Ltd." },
- { 19809, "GOUDRON S.A.R.L." },
- { 19810, "R Brooks Associates, Inc." },
- { 19811, "WildOne Information Systems" },
- { 19812, "Hsiuping Institute of Technology" },
- { 19813, "Systems International" },
- { 19814, "Duosoft Inc" },
- { 19815, "Getronics Solutions Malaysia" },
- { 19816, "Philips Medizin Systeme Boeblingen GmbH" },
- { 19817, "Soluzioni Informatiche s.r.l." },
- { 19818, "KIABI" },
- { 19819, "Informatik Club der Universit\0303\0244t Z\0303\0274rich - ICU" },
- { 19820, "Prival ODC, Inc." },
- { 19821, "Bridgeport Networks" },
- { 19822, "Bossers & Cnossen BV" },
- { 19823, "Castle Building Centres Group Ltd." },
- { 19824, "teleganov.net" },
- { 19825, "Kisslinger EDV-Beratung" },
- { 19826, "Institut Teknologi Bandung (ITB)" },
- { 19827, "N2N Consulting Pte Ltd" },
- { 19828, "LBCN Communication Technology Co.,LTD." },
- { 19829, "BITSTREAM" },
- { 19830, "VDL SA" },
- { 19831, "IRT Institut fuer Rundfunktechnik GmbH" },
- { 19832, "Rostrvm Solutions Ltd" },
- { 19833, "Team17 Software Ltd." },
- { 19834, "Bulldog Communications Ltd" },
- { 19835, "Excibir Ltd." },
- { 19836, "Qwest QNMS" },
- { 19837, "USPFO for CA" },
- { 19838, "Univits International AB" },
- { 19839, "Synthean Inc." },
- { 19840, "Avalon Networks Inc." },
- { 19841, "Public Communications Services, Inc." },
- { 19842, "Pantel Service & Holding GmbH" },
- { 19843, "anarcho.com" },
- { 19844, "MOBIGEN Co., Ltd." },
- { 19845, "Solenovo Oy" },
- { 19846, "DDI POCKET,Inc" },
- { 19847, "KU Communication Technology Co.,LTD" },
- { 19848, "University of Bologna" },
- { 19849, "NSFOCUS Ltd." },
- { 19850, "Waggener Edstrom" },
- { 19851, "Telnet ISG" },
- { 19852, "Southern Utah University" },
- { 19853, "aapala.com" },
- { 19854, "UCLA EE AINS LAB" },
- { 19855, "AIS Management GmbH" },
- { 19856, "Mobile TeleSystems OJSC, Komi Republic" },
- { 19857, "Kuban-GSM CJSC" },
- { 19858, "IPC Media Limited" },
- { 19859, "CGSS Guyane" },
- { 19860, "CGS Corporate Group Service Ltd" },
- { 19861, "Wake Forest University" },
- { 19862, "Motivity Telecom Inc." },
- { 19863, "Tippett Studio" },
- { 19864, "Jostens Inc" },
- { 19865, "NEOMONTANA ELECTRONIS" },
- { 19866, "Edouard Boissonneault" },
- { 19867, "digitec GmbH" },
- { 19868, "Krafty Creations, Inc." },
- { 19869, "Beagle Internet Pty Ltd" },
- { 19870, "The dot.GOD Registry, Limited" },
- { 19871, "AG Consulting, LLP." },
- { 19872, "TVEngineer.org" },
- { 19873, "MarsolsNet Inc." },
- { 19874, "Distributel Communications Ltd." },
- { 19875, "hutuworm.org Inc." },
- { 19876, "USE" },
- { 19877, "Nuernberger Versicherungsgruppe" },
- { 19878, "ITNet S.p.a." },
- { 19879, "Makedonski Telekomunikacii, MTnet" },
- { 19880, "Conarcom C.A. Sirena" },
- { 19881, "AEGEE-Europe" },
- { 19882, "Radius., Ltd" },
- { 19883, "Meta4 Spain S.A." },
- { 19884, "Ontier" },
- { 19885, "Navimedix Inc." },
- { 19886, "Corio, inc" },
- { 19887, "California School Information Services" },
- { 19888, "The Tarc Group" },
- { 19889, "AppTrigger" },
- { 19890, "Global Interactive Technology Pte Ltd" },
- { 19891, "bay. Innenministerium (Verfassungsschutz)" },
- { 19892, "HONKO MFG.co.,ltd." },
- { 19893, "Brighton Consulting Inc." },
- { 19894, "CubeRoot" },
- { 19895, "Heolys France SARL" },
- { 19896, "udayan kumar" },
- { 19897, "IUT FOTSO Victor de Bandjoun, Universit\0303\0251 de Dschang" },
- { 19898, "LT Systems LLC" },
- { 19899, "Thinking Systems Corporation" },
- { 19900, "Advanced RF Technologies, Inc." },
- { 19901, "Atkinson, Inglis & Associates" },
- { 19902, "University of Texas Pan American" },
- { 19903, "Jharding" },
- { 19904, "Sage Technology Ltd." },
- { 19905, "Beijing YTT Telecom Technologies Co.,Ltd" },
- { 19906, "Europacom.net Ltd" },
- { 19907, "Alpha Oil Ltd." },
- { 19908, "Alcopack Group" },
- { 19909, "PadzNet, Inc." },
- { 19910, "DirecTrust" },
- { 19911, "Global Velocity Inc." },
- { 19912, "Phatline" },
- { 19913, "murphx Innovative Solutions Ltd" },
- { 19914, "Optus SingTel Pty Ltd." },
- { 19915, "BeiJing Gefon Network Technology Ltd." },
- { 19916, "Fundaci\0303\0263n ESADE" },
- { 19917, "Sungard Finance" },
- { 19918, "Phoenix IT Services" },
- { 19919, "IPL Information Processing Ltd" },
- { 19920, "PREVX Ltd." },
- { 19921, "Gross" },
- { 19922, "Iowa State University" },
- { 19923, "ei3 Corporation" },
- { 19924, "Mirror Image Internet" },
- { 19925, "Triadigm Technology" },
- { 19926, "Feith Systems and Software, Inc." },
- { 19927, "Escherware b.v." },
- { 19928, "Linuxlab Ltd." },
- { 19929, "4X Information Technology GmbH" },
- { 19930, "SalesCatalysts.com Ltd." },
- { 19931, "BluntSoft Ltd." },
- { 19932, "MITTS Ltd." },
- { 19933, "University of Tasmania" },
- { 19934, "Key Business Services" },
- { 19935, "Allnet GmbH" },
- { 19936, "Philip Morris International Management SA" },
- { 19937, "Cogent Innovators, LLC" },
- { 19938, "OU College of Continuing Education" },
- { 19939, "AWARM.NET, Ltd." },
- { 19940, "broadreach systems" },
- { 19941, "Lind-Waldock" },
- { 19942, "Jumbo Corporation" },
- { 19943, "D2D Cars" },
- { 19944, "Sunwest Computers Ltd." },
- { 19945, "Abilitec Limited" },
- { 19946, "ITS Pub" },
- { 19947, "WIENER Plein & Baus GmbH" },
- { 19948, "OOO Maxidom" },
- { 19949, "Bellmonte" },
- { 19950, "Sveriges Television AB (SVT)" },
- { 19951, "AREA" },
- { 19952, "Message Systems, Inc." },
- { 19953, "Ironworks Consulting, LLC" },
- { 19954, "CenterBoard Inc" },
- { 19955, "Tenebris Technologies Inc." },
- { 19956, "Kabissa Inc." },
- { 19957, "Aurora Network Operations Management Services" },
- { 19958, "nex-G Systems Pte. Ltd." },
- { 19959, "Lund University" },
- { 19960, "SER Storage Technology GmbH" },
- { 19961, "Central Research Institute for Machine Building" },
- { 19962, "Netservers Ltd." },
- { 19963, "Enigma Software Corporation" },
- { 19964, "TRIBUNAL REGIONAL DO TRABALHO DA 22A. REGI\0303\0203O" },
- { 19965, "Spotwave Wireless, Inc." },
- { 19966, "Telexy Corp." },
- { 19967, "Meta Consulting" },
- { 19968, "Network Intelligence Corporation" },
- { 19969, "Klamath Networks Corp." },
- { 19970, "Clever Machine, Inc." },
- { 19971, "Tripleplay Services Ltd." },
- { 19972, "David Nesting" },
- { 19973, "Vader Logic, LLC" },
- { 19974, "Estonian Educational and Research Network" },
- { 19975, "ICTeam S.p.A." },
- { 19976, "Alberti Holdings Pty. Ltd." },
- { 19977, "Theta Networks, Inc." },
- { 19978, "o2 (Germany) GmbH & Co. OHG" },
- { 19979, "INPES" },
- { 19980, sminmpec_unknown }, /* (Added by Wireshark) */
- { 19981, "Venetica" },
- { 19982, "Cap Gemini Norway" },
- { 19983, "Cu-nes" },
- { 19984, "Pittsburg State University" },
- { 19985, "Vigoment Software Inc." },
- { 19986, "void solutions" },
- { 19987, "Anerist" },
- { 19988, "Rezel" },
- { 19989, "Netlanta.com" },
- { 19990, "NetTeem, LLC" },
- { 19991, "Beijing Zhengyou Networks&Communication Technology Co.,Ltd." },
- { 19992, "Ericsson, Inc." },
- { 19993, "S2 Systems, Inc." },
- { 19994, "Shanghai Withub General Technology Co.,Ltd." },
- { 19995, "SPES S.r.l." },
- { 19996, "SwissQual AG" },
- { 19997, "4D Technology (llc)" },
- { 19998, "Netspecs B.V." },
- { 19999, "eEpoch" },
- { 20000, "Ing. B\0303\0274ro Ziegler" },
- { 20001, "Ukraine Trust Network" },
- { 20002, "RZNet AG" },
- { 20003, "PTK Centertel sp z o. o." },
- { 20004, "HEUFT SYSTEMTECHNIK GMBH" },
- { 20005, "Air Products and Chemicals, Inc." },
- { 20006, "Nagios" },
- { 20007, "Kenati Technologies Inc." },
- { 20008, "Toshiba Electronics Europe GmbH" },
- { 20009, "Beaver Creek Cooperative Telephone Company" },
- { 20010, "reuter network consulting" },
- { 20011, "System Business Consulting" },
- { 20012, "QinetiQ Ltd" },
- { 20013, "Vanguard Integity Professionals" },
- { 20014, "Fernandez Industries Incorporated" },
- { 20015, "Ville d'Yverdon" },
- { 20016, "Mountain Top Applied Solutions, Inc." },
- { 20017, "Dansk Netcenter APS" },
- { 20018, "River City Software Associates, Ltd." },
- { 20019, "Antarctica Networks Ltd." },
- { 20020, "Pacific Wave Solutions, Incorporated" },
- { 20021, "Boswell Online B.V." },
- { 20022, "TETCO TECHNOLOGIES SA" },
- { 20023, "Rezel" },
- { 20024, "Proxyconn, Inc." },
- { 20025, "Compusaurus Bt." },
- { 20026, "RedeNetwork.com" },
- { 20027, "TDK-LAMBDA Corporation" },
- { 20028, "Line-tec, Inc." },
- { 20029, "Mortara Instrument, Inc." },
- { 20030, "ValidSoft Ltd" },
- { 20031, "Qnamic AG" },
- { 20032, "KISTER" },
- { 20033, "Dicr" },
- { 20034, "rjcdb.com" },
- { 20035, "Alexander Kellmann" },
- { 20036, "Advanced Control Technology, Inc." },
- { 20037, "HISL Limited" },
- { 20038, "LithiumCorp Pty Ltd" },
- { 20039, "Shanghai Communications Technologies Center" },
- { 20040, "GUMC" },
- { 20041, "INGENION GmbH" },
- { 20042, "Hitel Italia S.p.A." },
- { 20043, "Grupo 3A Recoletas" },
- { 20044, "Ekinops SAS" },
- { 20045, "Corporate Express Promotional Marketing" },
- { 20046, "Pilgerer e.V" },
- { 20047, "theglobe.com" },
- { 20048, "Internet Broadcasting Systems" },
- { 20049, "GnuArch" },
- { 20050, "Western United Insurance" },
- { 20051, "GlobalSkyVault" },
- { 20052, "Intesa Sanpaolo S.p.A." },
- { 20053, "I.NET2 S.r.l." },
- { 20054, "Statistisches Bundesamt" },
- { 20055, "FRANCE2" },
- { 20056, "ASC Program" },
- { 20057, "Lumenos, Inc." },
- { 20058, "Aramiska" },
- { 20059, "Acsera Corporation" },
- { 20060, "Pacific University" },
- { 20061, "Seacoast Synergy, Inc." },
- { 20062, "University of Crete - Faculty of Medicine" },
- { 20063, "vandalsWeb.com" },
- { 20064, "Tohoku Intelligent Telecommunication Co.,Inc." },
- { 20065, "Omega Consult Inc." },
- { 20066, "Entheos Software" },
- { 20067, "Karlstad University" },
- { 20068, "Artinfor" },
- { 20069, "JDG Trading(Pty Ltd.)" },
- { 20070, "Telecom Italia S.p.A." },
- { 20071, "Electronic Formations" },
- { 20072, "IWKA InformationsSysteme GmbH" },
- { 20073, "Abundance Networks, LLC" },
- { 20074, "Freerun Technologies Inc." },
- { 20075, "Werthmoeller IT-Service" },
- { 20076, "Makaera Vir 2000 Inc." },
- { 20077, "cMarket, Inc." },
- { 20078, "Escobar Enterprises" },
- { 20079, "SK-TECH.net" },
- { 20080, "MFD" },
- { 20081, "Alanne LLC" },
- { 20082, "ECE Projektmanagement" },
- { 20083, "Techno Group, Inc" },
- { 20084, "OnlineWeb Ltd." },
- { 20085, "HyperSpace Communications, Inc." },
- { 20086, "JRC ENGINEERING CO.,LTD." },
- { 20087, "Consultix GmbH" },
- { 20088, "Renewal Enterprises, LLC" },
- { 20089, "Cornerstone Consulting, LLC" },
- { 20090, "AIS Automations- und Informationssysteme GmbH" },
- { 20091, "SyAM Software, Inc." },
- { 20092, "Servicios de i-pro para competitividad, S.A. de C.V." },
- { 20093, "TrekLogic Inc." },
- { 20094, "Vaonet" },
- { 20095, "Positron Access Solutions Corp (formerly 'Aktino, Inc.')" },
- { 20096, "Image Entry, Inc." },
- { 20097, "Plope Consulting" },
- { 20098, "Dave Hoebe" },
- { 20099, "Impulse Internet Services" },
- { 20100, "Spliced Networks LLC" },
- { 20101, "Cox Enterprises" },
- { 20102, "multi.mediale.net.ltd" },
- { 20103, "allery.org" },
- { 20104, "Digital Evergreen, Inc." },
- { 20105, "N\0303\0240h-ko's world Inc." },
- { 20106, "Center for Leadership Solutions LLC" },
- { 20107, "ANIXIS" },
- { 20108, "LPC Condor Technologies" },
- { 20109, "Cynap Limited" },
- { 20110, "MediaPlan Inc." },
- { 20111, "LEADER ELECTRONICS CORP." },
- { 20112, "SMT Electronic Technology Limited" },
- { 20113, "Vecino" },
- { 20114, "Systems Management Enterprises, Inc." },
- { 20115, "J'raxis" },
- { 20116, "Janr" },
- { 20117, "Institute of Applied Internet Technology, Inc." },
- { 20118, "KCN Tech Co., Ltd." },
- { 20119, "EuroMarknet Internet Technol\0303\0263giai \0303\0251s Tan\0303\0241csad\0303\0263 Ltd." },
- { 20120, "VIDEOTRON Corp." },
- { 20121, "imos GmbH" },
- { 20122, "mind-n" },
- { 20123, "S\0303\0251bastien Nam\0303\0250che Consulting" },
- { 20124, "Cologne Systems GmbH" },
- { 20125, "Vitel Software, Inc" },
- { 20126, "LP Agent" },
- { 20127, "TTYS0 (formerly 'Gutenpress')" },
- { 20128, "SKH TKO Kei Tak Primary School" },
- { 20129, "SOURCECORP,Inc." },
- { 20130, "Advanced Digital Systems, Inc." },
- { 20131, "Vermeer Manufacturing Company" },
- { 20132, "Azonic Systems, Inc." },
- { 20133, "izac.org" },
- { 20134, "Surf and Sip Inc." },
- { 20135, "Elyo Services Ltd" },
- { 20136, "SCHMIEDER it-solutions GmbH" },
- { 20137, "codesupply.com" },
- { 20138, "Avara Technologies Pty Ltd." },
- { 20139, "Lobos, Inc." },
- { 20140, "DAVOLINK" },
- { 20141, "Axis Internet" },
- { 20142, "QianWang Networks Co." },
- { 20143, "Uffaq Technologies Private Ltd." },
- { 20144, "Optimo Service AG" },
- { 20145, "ELVIS-PLUS" },
- { 20146, "Ecutel" },
- { 20147, "Internet NetOnRamp" },
- { 20148, "runIT AG" },
- { 20149, "Optim Ltd Int Grp" },
- { 20150, "Zon Nederland N.V." },
- { 20151, "Martin-Luther-Universitaet Halle-Wittenberg" },
- { 20152, "eurofunk Kappacher GmbH" },
- { 20153, "ALCA INFORMATIQUE et TELECOM" },
- { 20154, "Redes de Telefon\0303\0255a M\0303\0263vil, S.A." },
- { 20155, "Winterthur Ib\0303\0251rica, AIE" },
- { 20156, "Lowe's Companies, Inc." },
- { 20157, "High Desert Education Service District" },
- { 20158, "Washburn University" },
- { 20159, "Force, Incorporated" },
- { 20160, "Hilton Hotels Corporation" },
- { 20161, "EWE TEL GmbH" },
- { 20162, "Trinity Capital Corporation" },
- { 20163, "Kerna Communications Ltd." },
- { 20164, "Subrafta Industries, Inc." },
- { 20165, "NIE Corporation" },
- { 20166, "DEODEO Co,.Ltd" },
- { 20167, "Sonic Industries Inc." },
- { 20168, "Gesellschaft fuer wissenschaftliche Datenverarbeitung mbH Goettingen" },
- { 20169, "Urmet TLC S.p.A." },
- { 20170, "Systemlegionen" },
- { 20171, "Burwood Group, Inc." },
- { 20172, "CRI Advantage" },
- { 20173, "sd&m AG" },
- { 20174, "Weldata bv" },
- { 20175, "FOR-A Company Ltd." },
- { 20176, "Mark Rose" },
- { 20177, "Chrome Cyz Co Ltd" },
- { 20178, "NetShield (Pty) Ltd" },
- { 20179, "RNDSoft co.,ltd" },
- { 20180, "SONGHWASOFT" },
- { 20181, "The Reynolds and Reynolds Company" },
- { 20182, "Appmind Software AB" },
- { 20183, "William G Dempsey & Associates" },
- { 20184, "Montreal University" },
- { 20185, "Brake Parts Inc" },
- { 20186, "Panareef Pty Ltd" },
- { 20187, "Gary T. Giesen" },
- { 20188, "PHOENIX SOFT" },
- { 20189, "Nature Care College" },
- { 20190, "iCable System" },
- { 20191, "Throughwave, Inc." },
- { 20192, "JK Technologies Corp." },
- { 20193, "ERZIA Technologies, SL" },
- { 20194, "Volexia Ltd." },
- { 20195, "AL.systems GmbH" },
- { 20196, "Rainbow Triangle, v. o. s." },
- { 20197, "St. Olaf College" },
- { 20198, "Equinox Information Systems, Inc" },
- { 20199, "SUSCERTE - Gobierno de la Republica Bolivariana de Venezuela" },
- { 20200, "Sioss Ltd" },
- { 20201, "Kinnarps AB" },
- { 20202, "First Canadian Title Company Ltd." },
- { 20203, "First Canadian Title Company Ltd." },
- { 20204, "EBC" },
- { 20205, "TIS Grupa d.o.o." },
- { 20206, "The Unwins Wine Group Ltd" },
- { 20207, "Closed Joint Stock Company \"PIOGLOBAL Services\"" },
- { 20208, "Latitude Technologies, Inc." },
- { 20209, "Submersion Corporation" },
- { 20210, "Vigilant Privacy Corporation" },
- { 20211, "Information and Telecommunications Technology Center" },
- { 20212, "Q1Labs, Inc." },
- { 20213, "Rock Island Communications, Inc." },
- { 20214, "Nordic Institute for Theoretical Physics" },
- { 20215, "Netkey, Inc." },
- { 20216, "more4u gbr" },
- { 20217, "Polystar Instruments AB" },
- { 20218, "Ajeco Oy" },
- { 20219, "BSH Hausgeraete GmbH" },
- { 20220, "EB Software Enk, John Weholdt" },
- { 20221, "IMAGINEON oHG" },
- { 20222, "PROFSOFT Sp. z o.o." },
- { 20223, "Ementor Norge AS" },
- { 20224, "Institut Pasteur" },
- { 20225, "Sub Service Ltd." },
- { 20226, "Cel*Star Guyana Inc." },
- { 20227, "BitPoint AG" },
- { 20228, "Teleflex Incorporated" },
- { 20229, "Karl Hofmann Schule Berufsbildende Schule" },
- { 20230, "Luis Lewis" },
- { 20231, "LDAP Technology" },
- { 20232, "LocalNet Systems" },
- { 20233, "Pro-G Information Security and Research Ltd." },
- { 20234, "Superlativ" },
- { 20235, "LinuxForce, Inc." },
- { 20236, "China Telecom-Guangzhou Research and Development Center" },
- { 20237, "PJ Velzeboer" },
- { 20238, "AMBIZ, Inc." },
- { 20239, "Sterrewacht Leiden" },
- { 20240, "CICA" },
- { 20241, "Premiere Fernsehen GmbH & Co. KG" },
- { 20242, "Stephan Ruckelshaussen" },
- { 20243, "SNR S.A." },
- { 20244, "Police IT Management Agency" },
- { 20245, "Deverto Systems Ltd." },
- { 20246, "Delta Energy Systems (Sweden) AB" },
- { 20247, "Bladiant Technologies, Inc." },
- { 20248, "Sony Computer Entertainment America, Inc." },
- { 20249, "Touchstone Systems, Inc." },
- { 20250, "GlobeRanger Corporation" },
- { 20251, "BN" },
- { 20252, "North American World Trade Group" },
- { 20253, "iologics, Inc." },
- { 20254, "Mediatria s.r.l." },
- { 20255, "Xalted Information Systems Pvt. Ltd" },
- { 20256, "Communicate Norge AS" },
- { 20257, "Azienda Ospedaliera Villascassi" },
- { 20258, "Sabanci University" },
- { 20259, "Sandprints" },
- { 20260, "MDTelecom, Inc." },
- { 20261, "EMS Wireless" },
- { 20262, "Odyssey Software, Inc." },
- { 20263, "Aurisp" },
- { 20264, "Muiderberg (M.H.C.)" },
- { 20265, "Cambridge University Faculty of Music" },
- { 20266, "OnWeb Technologies, c.a." },
- { 20267, "Days of Wonder Inc." },
- { 20268, "Chelsea Technologies Inc." },
- { 20269, "University of Yamanashi" },
- { 20270, "xtendo technologies Kurt Schwedes" },
- { 20271, "NetEnrich, Inc." },
- { 20272, "Creative Media GmbH" },
- { 20273, "Kunsthistorisches Museum" },
- { 20274, "Cyber Ware Ltd" },
- { 20275, "Ex Fructu Kft." },
- { 20276, "Citadec Solutions OY" },
- { 20277, "System-Net" },
- { 20278, "Sakana-home.net" },
- { 20279, "The Polestar Group Ltd" },
- { 20280, "CERNET, China Education and Research Network" },
- { 20281, "3TNet Experimental Network" },
- { 20282, "Cribbins Associates" },
- { 20283, "KnowGate" },
- { 20284, "FAURECIA" },
- { 20285, "E-work S.p.A" },
- { 20286, "VirusBuster Ltd." },
- { 20287, "Katholieke Theologische Universiteit" },
- { 20288, "TimeLink International GmbH" },
- { 20289, "indatex GmbH" },
- { 20290, "CNA INSURANCE" },
- { 20291, "onTimeTek Inc." },
- { 20292, "Dept. Network Center, China University of Geosciences" },
- { 20293, "Onirban Networks" },
- { 20294, "Caperio AB" },
- { 20295, "Euler Hermes Poland" },
- { 20296, "Banco Popular" },
- { 20297, "Rodos" },
- { 20298, "If-Tech" },
- { 20299, "Sussex Community Wireless" },
- { 20300, "InsightETE" },
- { 20301, "IBM eServer X" },
- { 20302, "Medica" },
- { 20303, "Banco Industrial e Comercial S.A." },
- { 20304, "Matrix Bancorp" },
- { 20305, "DIR A/S" },
- { 20306, "Kapsch CarrierCom AG" },
- { 20307, "Lie-Comtel" },
- { 20308, "Regent Group of Companies" },
- { 20309, "CIRIL - Centre Interuniversitaire de Ressources Informatiques de Lorraine," },
- { 20310, "Nicotra Sistemi spa" },
- { 20311, "Views On News" },
- { 20312, "Semantico Limited" },
- { 20313, "ix-tech" },
- { 20314, "FabDouglas" },
- { 20315, "OCA \"OpenCallArgentina\"" },
- { 20316, "Qosmetrics, Inc." },
- { 20317, "Lissi Co. Ltd." },
- { 20318, "Friedrich + Lochner GmbH" },
- { 20319, "University of California, San Francisco, Information Technology Services" },
- { 20320, "CAE Inc" },
- { 20321, "G+G Comsoft GmbH" },
- { 20322, "Udo Schledorn EDV-Beratung" },
- { 20323, "Success Medical Computer Co., Ltd." },
- { 20324, "Provinzial Rheinland Versicherung AG" },
- { 20325, "neska Schiffahrts- und Speditionskontor GmbH" },
- { 20326, "Education Nationale" },
- { 20327, "Helsinki Polytechnic Stadia" },
- { 20328, "Whitehead Institute for Biomedical Research" },
- { 20329, "University of Maine at Farmington" },
- { 20330, "WPS Health Insurance" },
- { 20331, "ILTC - Instituto Doris Aragon" },
- { 20332, "Bau- und Wohngenossenschaft Brachvogel" },
- { 20333, "ASC System" },
- { 20334, "IDS GmbH" },
- { 20335, "Teknologisk Institut" },
- { 20336, "N&TS spa" },
- { 20337, "Arquematica" },
- { 20338, "Addamark Technologies, Inc." },
- { 20339, "Daniel Kelley and Associates" },
- { 20340, "Information Builders, Inc" },
- { 20341, "LifeSize Communications, Inc" },
- { 20342, "Agencia Mar\0303\0255tima de Consignaciones, S.A." },
- { 20343, "Altexia" },
- { 20344, "Portrait Displays, Inc." },
- { 20345, "Edgewater Computer Systems. Inc." },
- { 20346, "MetroFi, Inc." },
- { 20347, "Equinox Converged Solutions Ltd" },
- { 20348, "ARCUS Software Pty Ltd" },
- { 20349, "Aruba S.r.l." },
- { 20350, "Milos Malik" },
- { 20351, "European Bridge-CA" },
- { 20352, "UNATECH.CO.,LTD" },
- { 20353, "Ebang Telecom Technologies HangZhou Co., Ltd" },
- { 20354, "Plexis Computing Limited" },
- { 20355, "Bundesverband der Deutschen Industrie e.V." },
- { 20356, "CONTER Control de Energ\0303\0255a, S.A." },
- { 20357, "TINC Associates NV" },
- { 20358, "Concordia College" },
- { 20359, "On Command Corporation" },
- { 20360, "Cronbank AG" },
- { 20361, "Ecole Centrale de Nantes" },
- { 20362, "Alcanet International Deutschland GmbH" },
- { 20363, "Terrecablate" },
- { 20364, "System Engineering International" },
- { 20365, "Malam Communications LTD" },
- { 20366, sminmpec_unknown }, /* (Added by Wireshark) */
- { 20367, "Univates" },
- { 20368, "Manzanita Systems" },
- { 20369, "MEPHARTEC s.a.r.l" },
- { 20370, "Allware LTDA." },
- { 20371, "VhaYu Technologies" },
- { 20372, "Michael A Nachbaur" },
- { 20373, "Coast to Coast Hosting" },
- { 20374, "AVAL NAGASAKI CORPORATION" },
- { 20375, "ATT - AudioText Telecom AG" },
- { 20376, "Century Systems Inc." },
- { 20377, "ITMG GmbH" },
- { 20378, "Sabancy Telekom\0303\0274nikasyon Hizmetleri A.?." },
- { 20379, "Specstroy-Svyaz" },
- { 20380, "Privacy, Inc." },
- { 20381, "ShopperTrak" },
- { 20382, "Working Knowledge, Inc" },
- { 20383, "CNCLabs(CHINA NETCOM GROUP LABS)" },
- { 20384, "GAIA e.V." },
- { 20385, "Frameworx, Inc." },
- { 20386, "Apple Daily Publication Development Limited,Taiwan Branch" },
- { 20387, "Externet Kft" },
- { 20388, "Streamwide SAS" },
- { 20389, "Cape Clear Software" },
- { 20390, "I&C Energo a.s. (formerly 'OT Energy Services a.s.')" },
- { 20391, "FAKUS Elektronik GmbH" },
- { 20392, "Oberfinanzdirektion Berlin" },
- { 20393, "Money Services, Inc." },
- { 20394, "ackrium" },
- { 20395, "Sircom software" },
- { 20396, "Erbach Associates" },
- { 20397, "Telecooperation Office, University of Karlsruhe" },
- { 20398, "Quintech Electronics and Communications Inc." },
- { 20399, "Educational Consulting Services, Inc." },
- { 20400, "Raytech Technologies, Ltd." },
- { 20401, "InterMetro Communications" },
- { 20402, "COSTRON Co., Ltd." },
- { 20403, "First Communication, Inc." },
- { 20404, "PT. ELEKTRINDO NUSANTARA" },
- { 20405, "Omkhar, LLC" },
- { 20406, "Naesasoft,Inc." },
- { 20407, "Fuhrer Engineering AG" },
- { 20408, "pysnmp" },
- { 20409, "Kvinnherad Breiband AS" },
- { 20410, "Janusys Networks, Inc." },
- { 20411, "lepo" },
- { 20412, "OAO Link" },
- { 20413, "University of Exeter" },
- { 20414, "Fracarro Radioindustrie S.p.A." },
- { 20415, "Solid AB" },
- { 20416, "Fifth Third Bank" },
- { 20417, "EUROTUNNEL" },
- { 20418, "VectorMAX Corporation" },
- { 20419, "Security Certificates UK ltd" },
- { 20420, "Dyaptive Systems Inc." },
- { 20421, "RangoSur S.A." },
- { 20422, "The Log4perl Project" },
- { 20423, "NSS S.A." },
- { 20424, "LUKA netconsult GmbH" },
- { 20425, "Noea Corporation" },
- { 20426, "Tellus Group Corp." },
- { 20427, "TKD" },
- { 20428, "ISTIA-AUTO" },
- { 20429, "Kaliop Interactive Media" },
- { 20430, "OPTIMUM SYSTEMES INFORMATION" },
- { 20431, "Inventa Technologies, Inc." },
- { 20432, "iTRACS Corporation" },
- { 20433, "Phoenix Broadband Technologies, LLC." },
- { 20434, "Boca Internet Technologies, Inc. dba AlertSite" },
- { 20435, "Seenetix d.o.o." },
- { 20436, "TransUnion LLC" },
- { 20437, "Func. Internet Integration" },
- { 20438, "CITIZEN WATCH CO.,LTD" },
- { 20439, "Bodgit & Scarper" },
- { 20440, "PATLITE Corporation" },
- { 20441, "REMASYS Pty. Ltd." },
- { 20442, "Samsung SDS Co, Ltd." },
- { 20443, "Open Development" },
- { 20444, "MAX SCHMIDT PAPIERLOGISTIK" },
- { 20445, "Noncommercial partnership <Open Food Stock>" },
- { 20446, "Colegio Ingenieros Caminos Canales Puertos" },
- { 20447, "APX UK Ltd." },
- { 20448, "Gibr.Net" },
- { 20449, "NetWisdom(Beijing)Technology co,ltd" },
- { 20450, "Indigo Corp." },
- { 20451, "Identiga Karto" },
- { 20452, "FishNet, Inc." },
- { 20453, "Nakina Systems" },
- { 20454, "Middlesex Community College" },
- { 20455, "Concorde Microsystems" },
- { 20456, "Omnis Network, LLC" },
- { 20457, "Incipient, Inc." },
- { 20458, "Schneider National, Inc." },
- { 20459, "Oki Electric Industry Co., Ltd. (formerly 'OF Networks Co., Ltd.')" },
- { 20460, "goldenfile ltd" },
- { 20461, "Organika-Kuznetsk" },
- { 20462, "Multimedia Project Srl" },
- { 20463, "Perceval" },
- { 20464, "Mi4e AB" },
- { 20465, "Caja de Ahorros de CASTILLA-LA MANCHA" },
- { 20466, "DS Wilson Consulting" },
- { 20467, "SAPIENS TECHNOLOGIES Ltd" },
- { 20468, "TatraMed Software s.r.o." },
- { 20469, "Lycos Europe GmbH" },
- { 20470, "WINGcon GmbH" },
- { 20471, "Banca di Roma S.p.A." },
- { 20472, "Lyra Network" },
- { 20473, "Parlamento de Andalucia" },
- { 20474, "LondonLink Ltd" },
- { 20475, "Avalanche Mobile BV" },
- { 20476, "Fachhochschule Ravensburg-Weingarten" },
- { 20477, "Buongiorno S.p.A." },
- { 20478, "Noopys Store company" },
- { 20479, "UMC Genomics Lab" },
- { 20480, "StrikeForce Technologies, Inc." },
- { 20481, "CUBETECH" },
- { 20482, "L B Enterprises" },
- { 20483, "Ministerio de Hacienda" },
- { 20484, "Sukra Helitek, Inc." },
- { 20485, "Fuchsia Open Source Solutions" },
- { 20486, "ChyronHego Corporation (formerly 'Chyron Corporation')" },
- { 20487, "AXT Systems Pty Limited" },
- { 20488, "DTMC Systems" },
- { 20489, "Geotek Design Services" },
- { 20490, "China Putian Institute of Technology" },
- { 20491, "Teamsun Technology Co.,Ltd" },
- { 20492, "MTT Computer Consulting, Inc" },
- { 20493, "Koblenzer Elektrizit\0303\0244tswerk und Verkehrs-AG" },
- { 20494, "Consejo General del Poder Judicial" },
- { 20495, "Marvell Semiconductor Israel, Ltd" },
- { 20496, "CellVision AS" },
- { 20497, "Universita' Mediterranea di Reggio Calabria" },
- { 20498, "Gnoble Technologies" },
- { 20499, "Azeus Systems Ltd." },
- { 20500, "Soft Link AG" },
- { 20501, "Padcom" },
- { 20502, "Albertsons Inc." },
- { 20503, "BearingPoint NZ Ltd" },
- { 20504, "Franz Chladek - EDV Dienstleistungen" },
- { 20505, "Astrogator" },
- { 20506, "Huetron Co.Ltd" },
- { 20507, "Luvantix Co.Ltd" },
- { 20508, "Urbandale Community School District" },
- { 20509, "Dixon Hughes PLLC" },
- { 20510, "National Taiwan University Hospital" },
- { 20511, "Manzanita Systems" },
- { 20512, "Romania Internet Security Systems" },
- { 20513, "SARK Consultants Private Limited" },
- { 20514, "Home Office Life kernel" },
- { 20515, "FJD Information Technologies AG" },
- { 20516, "Battle Eagle Entertainment, Inc." },
- { 20517, "eBuild.ca Inc." },
- { 20518, "Flashbit Ruf and Heide GbR" },
- { 20519, "Y Soft, s.r.o." },
- { 20520, "Cronyx Engineering" },
- { 20521, "PSDA, Inc." },
- { 20522, "Javalobby.org" },
- { 20523, "Tom Addis Automotive Group" },
- { 20524, "SunStar Systems, Inc." },
- { 20525, "Anacomp, Inc." },
- { 20526, "Franciscan Missionaries of Our Lady Health System, Inc." },
- { 20527, "Sathee Inc" },
- { 20528, "PARANA EM REDE SISTEMAS LTDA." },
- { 20529, "AMETEK SolidState Controls Inc de Argentina" },
- { 20530, "Johannes Kornfellner" },
- { 20531, "Matrix Networx" },
- { 20532, "DevStream Corporation" },
- { 20533, "2Know-IT GmbH" },
- { 20534, "Uniklinik Ulm" },
- { 20535, "Latvijas Mobilais Telefons SIA" },
- { 20536, "Austrian Parliament" },
- { 20537, "NIPPON EXPRESS CO.,LTD" },
- { 20538, "FIBRENETIX" },
- { 20539, "//////////fur////" },
- { 20540, "Red Lion Controls (SIXNET)" },
- { 20541, "CITTIO, Inc." },
- { 20542, "AirLink Communications, Inc." },
- { 20543, "Optovia Corporation" },
- { 20544, "Sungkyunkwan University" },
- { 20545, "BusinessLink Advertising Ltd." },
- { 20546, "Wissenschaftszentrum Berlin fuer Sozialforschung gGmbH" },
- { 20547, "Matthias Braun EDV" },
- { 20548, "SAP Hosting" },
- { 20549, "Pride S.p.A." },
- { 20550, "Red Squared plc" },
- { 20551, "DDR Freak, LLC" },
- { 20552, "Swisscom Broadcast SA" },
- { 20553, "Wellington Management Company, LLP" },
- { 20554, "kraai.org" },
- { 20555, "eTelemetry, Inc." },
- { 20556, "Hastings Entertainment Inc." },
- { 20557, "NOFware, Ltd." },
- { 20558, "University College of Oslo. Faculty of Engineering" },
- { 20559, "Engedi Technologies, Inc." },
- { 20560, "Alexander Janssen Consulting" },
- { 20561, "LiveWave, Inc." },
- { 20562, "North Electric Company, Inc." },
- { 20563, "TNC S.A." },
- { 20564, "Albuquerque Technical Vocational Institute" },
- { 20565, "Oxford Wireless Networks Ltd" },
- { 20566, "Taonix" },
- { 20567, "TELEGRID Technologies, Inc." },
- { 20568, "Citco Technology Mangement, Inc." },
- { 20569, "Inventec Enterprise System Corp." },
- { 20570, "ShenZhen Yinghetong Information & Technology Co.,Ltd." },
- { 20571, "International Turnkey Systems" },
- { 20572, "virtual-image" },
- { 20573, "Universitaetsklinikum Aachen" },
- { 20574, "OXYAN SOFTWARE" },
- { 20575, "Nucleonet Inc" },
- { 20576, "University of Wales, Bangor" },
- { 20577, "schunk edv systeme gmbh" },
- { 20578, "St Ives Plymouth Ltd" },
- { 20579, "BITSO Build IT Solutions GmbH" },
- { 20580, "Kiwi Enterprises" },
- { 20581, "EVR Ltd." },
- { 20582, "Ebocom, LLC" },
- { 20583, "Union Switch & Signal" },
- { 20584, "Hunan Talkweb Information System Co. Ltd." },
- { 20585, "Diamond State Port Corp." },
- { 20586, "Century Digital Investment & Management Consulting Ltd." },
- { 20587, "Rose Electronics" },
- { 20588, "MaxTronic International Co., Ltd." },
- { 20589, "UKeduPerson Pilot" },
- { 20590, "RUBY Inc." },
- { 20591, "VISTA International Ltd." },
- { 20592, "People's Telephone Saratov, cjsc" },
- { 20593, "Guangdong Multiplication Communication Ltd Co." },
- { 20594, "XSif Software" },
- { 20595, "Prefeitura Municipal de Florianopolis" },
- { 20596, "TomWare s.r.l." },
- { 20597, "SurfCloud Ltd" },
- { 20598, "eReM.Studio" },
- { 20599, "Coventry Health Care, Inc." },
- { 20600, "Atlab s.r.l." },
- { 20601, "Thomas Jefferson High School for Science and Technology" },
- { 20602, "Xaraya Development Group" },
- { 20603, "Softhouse Informatica Ltda." },
- { 20604, "Nexior IT Services" },
- { 20605, "Antepo, Inc." },
- { 20606, "CLINIQUES UNIVERSITAIRES SAINT-LUC" },
- { 20607, "University of Angers" },
- { 20608, "Radboud University Nijmegen" },
- { 20609, "Scalable Computing Lab" },
- { 20610, "NOAA, OAR, FSL, ITS, DSG" },
- { 20611, "Flarepath Software Limited" },
- { 20612, "Time iCR" },
- { 20613, "Universit\0303\0251 catholique de Louvain (UCL)" },
- { 20614, "Exeo Technologies Inc." },
- { 20615, "Netli, Inc." },
- { 20616, "CGS World Inc." },
- { 20617, "TeTeSys" },
- { 20618, "Cinetica s.r.l." },
- { 20619, "UPC Ceska republika, a.s." },
- { 20620, "Valox Systems Co.Ltd" },
- { 20621, "Crystal Technology Solutions Group Inc" },
- { 20622, "IainG" },
- { 20623, "RSDB Holding b.v." },
- { 20624, "Nexus Telecom AG" },
- { 20625, "Serviciul de Telecomunicatii Speciale" },
- { 20626, "Software Systems A/S" },
- { 20627, "Institut National d'Histoire de l'Art" },
- { 20628, "Qual-Pro Corporation" },
- { 20629, "STREAMTEL" },
- { 20630, "ODIBOSS NETWORKS" },
- { 20631, "MC110-GRUPO1" },
- { 20632, "Barracuda Networks, Inc." },
- { 20633, "Security First Networks" },
- { 20634, "Langochat" },
- { 20635, "IberiSign" },
- { 20636, "Bendigo and District Division of General Practice Inc." },
- { 20637, "University of Texas of the Permian Basin" },
- { 20638, "Capital Markets CRC" },
- { 20639, "Entura, LLC" },
- { 20640, "Inomial Pty Ltd" },
- { 20641, "Vincent Consulting Group Inc." },
- { 20642, "Nexus Community" },
- { 20643, "Prime MX" },
- { 20644, "Vaasa Polytechnic" },
- { 20645, "Poly Information Ltd." },
- { 20646, "Convergenz" },
- { 20647, "University of Cambridge Computer Laboratory" },
- { 20648, "PK7" },
- { 20649, "Tyco Safety Products" },
- { 20650, "WG78 Ptb central" },
- { 20651, "Computer Vision Networks, Inc." },
- { 20652, "Arizona Department of Environmental Quality" },
- { 20653, "Illusions Internet Solutions" },
- { 20654, "Telegence Corporation" },
- { 20655, "Ikoro Digital Inc" },
- { 20656, "Archer" },
- { 20657, "Rascular Technology Ltd" },
- { 20658, "Finobra S.A." },
- { 20659, "Comodo Japan Inc." },
- { 20660, "Topone Information technology Co., Ltd" },
- { 20661, "Hitachi ULSI Systems Co., Ltd." },
- { 20662, "Heiko Jerke" },
- { 20663, "BV Associates" },
- { 20664, "NDE Netzdesign und -entwicklung AG" },
- { 20665, "Enervation GmbH" },
- { 20666, "Synchronoss Technologies Inc" },
- { 20667, "Prosilient Technologies AB" },
- { 20668, "Kaballero.Com LLC" },
- { 20669, "jelte.com" },
- { 20670, "SysCologne, Lutz Mischa Heitm\0303\0274ller" },
- { 20671, "Gee-Wiz Consultancy" },
- { 20672, "MemoryLink Corp" },
- { 20673, "MRO Direct, Inc" },
- { 20674, "Fullerton Elementary School District" },
- { 20675, "Reed Networks" },
- { 20676, "NIS4Grids" },
- { 20677, "Pulizzi Engineering, Inc." },
- { 20678, "Department of Computer Science, Rensselaer Polytechnic Institute" },
- { 20679, "Helmer & Zimmermann GmbH & Co.KG" },
- { 20680, "Tekmark/CSL International Solutions Inc." },
- { 20681, "Anta Systems, Inc." },
- { 20682, "Campusmart Ltd." },
- { 20683, "DigiDoc AB" },
- { 20684, "Metropolitan Health Corporate (Proprietary) Limited" },
- { 20685, "ADIES" },
- { 20686, "Pohl & Co. GmbH & Co. KG" },
- { 20687, "Roving Planet, Inc." },
- { 20688, "Seiri Inc." },
- { 20689, "Alliance Information Systems, LLC" },
- { 20690, "Harald Svab" },
- { 20691, "Techtell, Inc." },
- { 20692, "Ruffdogs" },
- { 20693, "DYNAWEB IT Services L.P." },
- { 20694, "Lightspeed Technologies Pte. Ltd." },
- { 20695, "StratusStation Group Inc." },
- { 20696, "Caixa Andorrana de Seguretat Social" },
- { 20697, "ThinPrint GmbH" },
- { 20698, "Lipetskenergo JSC" },
- { 20699, "CitiMortgage" },
- { 20700, "Trend Communications Ltd" },
- { 20701, "Peryam & Kroll Research Corporation" },
- { 20702, "Ritchie Capital Management" },
- { 20703, "eBuz Internetdienste GbR" },
- { 20704, "muumilaakso ry" },
- { 20705, "Holguin, Fahan & Associates, Inc." },
- { 20706, "Vision Web Networks, LLC" },
- { 20707, "InterCerve, Inc." },
- { 20708, "SYSLAB.COM GmbH" },
- { 20709, "Fremme's SOFTWARE-Utvikling" },
- { 20710, "American Medical Response Inc." },
- { 20711, "Platform Solutions, Inc." },
- { 20712, "Paradise Datacom LLC" },
- { 20713, "Noran Tel Communications Limited" },
- { 20714, "limitland development" },
- { 20715, "GiK Gesellschaft fuer innovative Kommunikationssysteme mbH" },
- { 20716, "Corbel Solutions, Inc" },
- { 20717, "FF Network Inc" },
- { 20718, "American School Foundation of Monterrey, A.C." },
- { 20719, "SHIN.Ltd" },
- { 20720, "MX Logic Inc" },
- { 20721, "Atomicweb, LLC" },
- { 20722, "NetSpira Networks" },
- { 20723, "Indus International, Inc." },
- { 20724, "Csibra Bt" },
- { 20725, "Etria, LLP" },
- { 20726, "Wilmington College" },
- { 20727, "Net Theatre" },
- { 20728, "Spook Limited" },
- { 20729, "Piotr Matusz" },
- { 20730, "eEye Digital Security" },
- { 20731, "TrueTel Communications Inc" },
- { 20732, "BlueScope Steel Limited" },
- { 20733, "JA Davey" },
- { 20734, "Internet Sheriff Technology Ltd" },
- { 20735, "ANDSCO I.T. Pty Ltd" },
- { 20736, "RS Telematica e Tecnologia da Informacao Ltda" },
- { 20737, "Cynics at Large" },
- { 20738, "TIBBO Technology, Inc." },
- { 20739, "Cortec Systems Pty Ltd" },
- { 20740, "AXISSOFT Corporation" },
- { 20741, "Qala Singapore Pte Ltd" },
- { 20742, "Hormann Funkwerk K\0303\0266lleda" },
- { 20743, "ISO (International Organization for Standardization)" },
- { 20744, "ICZ a.s." },
- { 20745, "WLN Technologies" },
- { 20746, "DIS Data Integration Services GmbH" },
- { 20747, "NORTEK" },
- { 20748, "Frei GmbH" },
- { 20749, "Grintek TCI (Pty) Ltd" },
- { 20750, "Technolution BV" },
- { 20751, "PERAX" },
- { 20752, "SA Polyclinique de Courlancy" },
- { 20753, "Pharos Consulting (Pty) Ltd." },
- { 20754, "Universit\0303\0244tsklinikum Aachen" },
- { 20755, "WestGlobal Ltd." },
- { 20756, "het Concertgebouw NV" },
- { 20757, "Prisacom s.a." },
- { 20758, "netSurity Ltd" },
- { 20759, "Kepler-Rominfo S.A." },
- { 20760, "Autonomous noncommercial organization \"Scientific and Training Center of" },
- { 20761, "Uniklinikum Mannheim" },
- { 20762, "Passage Consortia C/O Sony Electronics (Trustee)" },
- { 20763, "Fastenal Company, Inc." },
- { 20764, "David Cross Technical Consulting" },
- { 20765, "Rosati Kain" },
- { 20766, "QAI India Ltd" },
- { 20767, "Vereinigte Postversicherung VVaG" },
- { 20768, "St. Mary's High School" },
- { 20769, "Immaculate Conception School" },
- { 20770, "ADSTRA SYSTEMS INC." },
- { 20771, "Priority Networks, Inc." },
- { 20772, "Optica Technologies Inc." },
- { 20773, "Accenture Business Services for Utilities" },
- { 20774, "OMT Systems (Shenzhen) Limited" },
- { 20775, "Aspire Information Services, LLC" },
- { 20776, "INAF - Osservatorio Astronomico di Padova" },
- { 20777, "Flexetech Solutions, Inc." },
- { 20778, "SmartWare" },
- { 20779, "Inova Venture Pte Ltd" },
- { 20780, "Gemeinsamenes Gebietsrechenzentrum Hagen - SG 2.5" },
- { 20781, "Scientific Research Institute of Applied Information Technologies" },
- { 20782, "soc. coop. bilanciai" },
- { 20783, "ARGELA Yazilim ve Bilisim Teknolojileri A.S." },
- { 20784, "HiTeKnowledge Limited" },
- { 20785, "Beta Systems Software AG" },
- { 20786, "Techspan System Ltd" },
- { 20787, "Parc Cientific de Barcelona" },
- { 20788, "Unassigned" },
- { 20789, "PowerMeMobile.com" },
- { 20790, "Harrington Group, Inc." },
- { 20791, "keyX.net Consulting SRL" },
- { 20792, "Erdmann Systemberatung" },
- { 20793, "NetBridge Inc." },
- { 20794, "IT Schaller GmbH" },
- { 20795, "REALTIMEIMAGE" },
- { 20796, "ShenZhen Roytel Technology Ltd." },
- { 20797, "Great Dragon Infomation Technology(Group)Co.,Ltd." },
- { 20798, "TDN GmbH" },
- { 20799, "Universitaet Konstanz" },
- { 20800, "JSC Promsvyaz-Invest" },
- { 20801, "Exxon Mobil Corporation" },
- { 20802, "Sanlam Ltd." },
- { 20803, "Tyler Retail Systems, Inc." },
- { 20804, "Open PLC European Research Alliance (Opera)" },
- { 20805, "Beijing Sunniwell BroadBand ditital technology Corp. Ltd." },
- { 20806, "Segurmatica" },
- { 20807, "Federal Bureau of Investigation" },
- { 20808, "Monaco Telecom" },
- { 20809, "Agami Systems, Inc." },
- { 20810, "Hamilton Consulting NSW Pty Ltd" },
- { 20811, "International Securities Exchange, LLC" },
- { 20812, "NetMon Information Systems Ltd." },
- { 20813, "Ipcon Informationssysteme oHG" },
- { 20814, "AMC SA" },
- { 20815, "Zend Technologies Ltd." },
- { 20816, "Alexandru Ioan Cuza University" },
- { 20817, "Argos Messtechnik GmbH" },
- { 20818, "SUNTEK TECHNOLOGY CO., LTD." },
- { 20819, "Allenbrook, Inc." },
- { 20820, "The University of Texas at San Antonio" },
- { 20821, "Information and Display Systems, LLC" },
- { 20822, "Franwell, Inc." },
- { 20823, "Carefx Corporation" },
- { 20824, "Lions Gate Software, Inc." },
- { 20825, "Touch22 Software and Consulting" },
- { 20826, "Convera" },
- { 20827, "Banco Central de Costa Rica" },
- { 20828, "Schweizerische Lebensversicherungs- und Rentenanstalt" },
- { 20829, "Stadtverwaltung Dresden" },
- { 20830, "Reflex AS" },
- { 20831, "CZFree.Net" },
- { 20832, "Ryder Systems Ltd." },
- { 20833, "Terminales de Telecomunicacion Terrestre, S.L." },
- { 20834, "Alike Group" },
- { 20835, "BD Digital Lab. Co., Ltd" },
- { 20836, "Confer Computing Consultants Company" },
- { 20837, "DFU services" },
- { 20838, "GaVI mbH" },
- { 20839, "Broadcast Tools, Inc." },
- { 20840, "Thomson Technology Limited" },
- { 20841, "The Community Group Inc" },
- { 20842, "Arena Solutions, Inc." },
- { 20843, "Philipp Strozyk" },
- { 20844, "L'OREAL" },
- { 20845, "Linux Information Systems AG" },
- { 20846, "SURFsara" },
- { 20847, "Atlas Development Corporation" },
- { 20848, "Zope Corporation" },
- { 20849, "OMT Systems (Shenzhen) Limited" },
- { 20850, "TechNerdVana" },
- { 20851, "Groupe Bell Nordiq inc." },
- { 20852, "CrimTrac" },
- { 20853, "Eurorail International" },
- { 20854, "OTC Wireless Inc." },
- { 20855, "Scientific Technologies Corp" },
- { 20856, "Pattern Matched Technologies" },
- { 20857, "Inspired Technologies Ltd" },
- { 20858, "Casa Systems, Inc." },
- { 20859, "Citco Technology Mangement, Inc." },
- { 20860, "Liberty Enterprises Inc." },
- { 20861, "Dansk System Elektronik A/S" },
- { 20862, "Online Learning Australia Pty. Ltd." },
- { 20863, "Utiba Pty Ltd" },
- { 20864, "Tower Technologies" },
- { 20865, "Sri Lanka Telecom" },
- { 20866, "Eljakim Information Technology BV" },
- { 20867, "danfferliu Corporation" },
- { 20868, "Helge Gudmundsen" },
- { 20869, "Frank Vercruesse" },
- { 20870, "Pufferbox Pty. Ltd." },
- { 20871, "Kredietbank S.A. Luxembourg" },
- { 20872, "Sto AG" },
- { 20873, "PROTEI Ltd" },
- { 20874, "H\0303\0245ms\0303\0270 Patentbyr\0303\0245 ANS" },
- { 20875, "DevExperts LLC" },
- { 20876, "Vorarlberger Telekommunikations GesmbH" },
- { 20877, "Vine Linux" },
- { 20878, "VineCaves, Ltd." },
- { 20879, "MBIT GmbH" },
- { 20880, "MagnaQuest Technologies" },
- { 20881, "Catenare LLC" },
- { 20882, "PCDEMANO Inc" },
- { 20883, "Evangelische Landeskirche Wuerttemberg" },
- { 20884, "BDT GmbH & Co. KG" },
- { 20885, "Kontron Modular Computers SA (formerly 'Thales Computers')" },
- { 20886, "Dr. Glinz COVIS GmbH" },
- { 20887, "SOLSOFT" },
- { 20888, "SIS Spektrum s.r.o." },
- { 20889, "Comsys B.V." },
- { 20890, "Sebastian Kueppers Computer-, Medien- und Eventservice" },
- { 20891, "Star Internet Ltd." },
- { 20892, "CITEL Technologies Inc." },
- { 20893, "LShift Ltd" },
- { 20894, "Yirdis B.V." },
- { 20895, "Diplomado" },
- { 20896, "NuVox Communications, Inc." },
- { 20897, "Determina Inc." },
- { 20898, "Sungard SBI" },
- { 20899, "Apollo Interactive, Inc." },
- { 20900, "Quantech Global Services LLC" },
- { 20901, "Virtual Business Communities Inc." },
- { 20902, "johnstonshome.org" },
- { 20903, "Children's Hospital - Boston" },
- { 20904, "Risolviamo" },
- { 20905, "Unicible S.A." },
- { 20906, "Cubika S.A." },
- { 20907, "Regent College" },
- { 20908, "Emergin, Inc." },
- { 20909, "Exempla Healthcare" },
- { 20910, "PT OneHUB Technology" },
- { 20911, "twilley.org" },
- { 20912, "Publishing firm \0302\0253Vidrodzhenia\0302\0273 Ltd." },
- { 20913, "OJSC RTComm.RU" },
- { 20914, "Deutsche Telekom - CSC Wuerzburg" },
- { 20915, "NATIONAL-BANK AG, Essen" },
- { 20916, "AVTECH Software, Inc." },
- { 20917, "FondsServiceBank" },
- { 20918, "Wicked Studio" },
- { 20919, "Manobi" },
- { 20920, "PKWARE, Inc." },
- { 20921, "Hillstone Products Ltd" },
- { 20922, "Pro Dimension Ltd." },
- { 20923, "Myxomop" },
- { 20924, "Proyecto OTF U.de.Chile" },
- { 20925, "Baker & McKenzie" },
- { 20926, "Mase Technologies, LLC" },
- { 20927, "TSI Sports Incorporated" },
- { 20928, "Tangent Systems" },
- { 20929, "SYSGO AG" },
- { 20930, "Ren\0303\0251 Alegr\0303\0255a S\0303\0241ez" },
- { 20931, "Software Builders Exchange" },
- { 20932, "yobe.org" },
- { 20933, "Tomsk State University of Control Systems and Radioelectronics" },
- { 20934, "ITdesign software projects and consulting" },
- { 20935, "Anystream, Inc." },
- { 20936, "CHINA COMMUNICATIONS STANDARDS ASSOCIATIONS" },
- { 20937, "Nimrod AS" },
- { 20938, "ETL Systems Ltd." },
- { 20939, "videoNEXT LLC" },
- { 20940, "The eBiz Shop, LLC." },
- { 20941, "Palo Alto Research Center, Inc." },
- { 20942, "China Telecom-Guangzhou Research and Development Center" },
- { 20943, "QOSMOS SA" },
- { 20944, "Modular Blade Server" },
- { 20945, "East Online, LLC" },
- { 20946, "BDM Business Data Management GmbH" },
- { 20947, "Cox Communications San Diego" },
- { 20948, "manzanita Inc." },
- { 20949, "Anadarko Petroleum Inc." },
- { 20950, "Interhack Corporation" },
- { 20951, "Brevient Technologies, Inc." },
- { 20952, "Exabridge" },
- { 20953, "Haifa University" },
- { 20954, "Xtendreach Limited" },
- { 20955, "Sunet" },
- { 20956, "Emerson Climate Technologies, Alco Products" },
- { 20957, "E-Government Solutions (UK) Ltd." },
- { 20958, "I-Nex Corporation Pty. Ltd." },
- { 20959, "Siemens d.d. Hrvatska" },
- { 20960, "Laboratory of Content Systems(LCS)" },
- { 20961, "Communication Technologies" },
- { 20962, "Multimedia Polska" },
- { 20963, "Kattare Internet Services" },
- { 20964, "Camille Bauer" },
- { 20965, "HVR Consulting Services Ltd" },
- { 20966, "Jesus College, Oxford" },
- { 20967, "Anevia" },
- { 20968, "Genomatix Software GmbH" },
- { 20969, "EUDATA SYSTEMS S.A." },
- { 20970, "LISA GmbH" },
- { 20971, "Baltnet Ltd." },
- { 20972, "British Airways Plc" },
- { 20973, "NextiraOne Czech s.r.o." },
- { 20974, "American Megatrends, Inc" },
- { 20975, "PONTUSYS" },
- { 20976, "Paul Smith Computer Services" },
- { 20977, "Comune di Imola" },
- { 20978, "DC-SatNet Ltd." },
- { 20979, "WT Finland Ltd" },
- { 20980, "tux LLC" },
- { 20981, "Atrocity MUD" },
- { 20982, "PCDEMANO Inc" },
- { 20983, "IIT Madras" },
- { 20984, "Geonetics" },
- { 20985, "Nethonnun ehf." },
- { 20986, "Universidad del CEMA" },
- { 20987, "Philadelphia Computer Institute" },
- { 20988, "Rackspace" },
- { 20989, "Systems Research and Development, Inc." },
- { 20990, "Aspect Loss Prevention LLC" },
- { 20991, "Family-Williams Inc." },
- { 20992, "CradlePoint, Inc." },
- { 20993, "Camujo" },
- { 20994, "Europa Communications Pty Ltd" },
- { 20995, "Progress Energy" },
- { 20996, "ACCESS Co. Ltd." },
- { 20997, "Lotus Technologies SRL" },
- { 20998, "Honeywell International Inc" },
- { 20999, "Willis Group" },
- { 21000, "imetric" },
- { 21001, "Stratizon Inc." },
- { 21002, "Parallax Networking Limited" },
- { 21003, "Dynamic Network Integration, Inc." },
- { 21004, "American Technology Integrators Corporation" },
- { 21005, "GERMAN NETWORK GMBH" },
- { 21006, "OpenDAS.org" },
- { 21007, "InoStor" },
- { 21008, "Informed Control Inc." },
- { 21009, "McGuire & Associates, Inc" },
- { 21010, "eCollege" },
- { 21011, "DotNetShop" },
- { 21012, "iHotel International Inc." },
- { 21013, "Xirrus, Inc." },
- { 21014, "Gamerz Hub" },
- { 21015, "Art of Living Foundation" },
- { 21016, "IntruGuard Devices" },
- { 21017, "IPeak Networks Inc." },
- { 21018, "Paxar Americas, Inc." },
- { 21019, "River Systems, Inc" },
- { 21020, "Stowarzyszenie Freeze NET Amatorska Siec Komputerowa" },
- { 21021, "Perimeter Technology Center, Inc." },
- { 21022, "The College Board" },
- { 21023, "Forbrich Computer Consulting Ltd." },
- { 21024, "Electronics corporation of india. Ltd" },
- { 21025, "ICOMM TELE LTD." },
- { 21026, "Hauf Electric Co." },
- { 21027, "MIP" },
- { 21028, "Digital Motorworks, LP." },
- { 21029, "Giant Steps" },
- { 21030, "PeerApp" },
- { 21031, "Helga Adam und Rocio Manzano Romero GBRmbH" },
- { 21032, "Argent Networks ltd" },
- { 21033, "Taikang Life Insurance Co.,Ltd." },
- { 21034, "Pratama Sastriawan Systems" },
- { 21035, "DEV Systemtechnik GmbH & Co. KG" },
- { 21036, "Ultrapower Software Co., Ltd. Beijing" },
- { 21037, "CHUNG HUNG STEEL CO., LTD." },
- { 21038, "Radio IP Software Inc." },
- { 21039, "YuCa Tech. Corp." },
- { 21040, "Fiberplex, Inc" },
- { 21041, "Banchile Corredores de Bolsa S.A." },
- { 21042, "PRT Systems Ltd" },
- { 21043, "AREVA" },
- { 21044, "Mauro Calderara" },
- { 21045, "Intinor AB" },
- { 21046, "University Of Wisconsin Extension" },
- { 21047, "Banco de Credito e Inversiones" },
- { 21048, "Copenhagen Municipal" },
- { 21049, "ROMPETROL SA" },
- { 21050, "Freebits" },
- { 21051, "Init Seven AG" },
- { 21052, "Interact S.A." },
- { 21053, "Singlefin" },
- { 21054, "Yardi Systems, Inc." },
- { 21055, "Sri Lanka Telecom Services Ltd." },
- { 21056, "DeployLinux Consulting" },
- { 21057, "Themis Computer" },
- { 21058, "Tizor Systems" },
- { 21059, "Nyvri" },
- { 21060, "Global Healthcare Exchange" },
- { 21061, "Netaquila Solutions Pvt. Ltd" },
- { 21062, "Chris Forkin Consulting" },
- { 21063, "MaqSys" },
- { 21064, "TSingTec Ltd." },
- { 21065, "SHENZHEN WLAN Research Center,CCSA" },
- { 21066, "SNCF (Soci\0303\0251t\0303\0251 Nationale des Chemins de fer Fran\0303\0247ais)" },
- { 21067, "Elitecore Technologies Ltd." },
- { 21068, "University of Southern Denmark" },
- { 21069, "Radford Control Systems" },
- { 21070, "Intentia Research & Development" },
- { 21071, "EFS Inc." },
- { 21072, "Arnold Magnetics" },
- { 21073, "webcreations.ca" },
- { 21074, "PureWave Networks, Inc." },
- { 21075, "Old Red Mill" },
- { 21076, "Science Museum of Minnesota" },
- { 21077, "DigiTar" },
- { 21078, "dafa" },
- { 21079, "HAIPE" },
- { 21080, "Frog Navigation Systems B.V." },
- { 21081, "Persium Inc." },
- { 21082, "EUN Partnership a.i.s.b.l." },
- { 21083, "Mairie de Paris" },
- { 21084, "SD Laboratories" },
- { 21085, "Open Alliance Sofware Libre, S.A." },
- { 21086, "Monolith Productions" },
- { 21087, "Infosia Services" },
- { 21088, "krix.biz Internetdienstleistungen" },
- { 21089, "Flywheel Corporation" },
- { 21090, "Ithaka Harbors, Inc." },
- { 21091, "Exinda Networks Pty Ltd" },
- { 21092, "Raindance Wireless" },
- { 21093, "Got.Net - The Internet Connection, Inc." },
- { 21094, "Ricoh Australia Pty Ltd" },
- { 21095, "Commonwealth Bank of Australia" },
- { 21096, "Quantier Inc." },
- { 21097, "Kerr-McGee Corporation" },
- { 21098, "IECAS(Chin. Acad. of Sci)" },
- { 21099, "Alltrix Sdn Bhd" },
- { 21100, "Linwork Inform\0303\0241tica S/C Ltda" },
- { 21101, "Verreau Enterprise" },
- { 21102, "ControlTier Software, Inc." },
- { 21103, "Mandrakesoft" },
- { 21104, "Mofet Instititue" },
- { 21105, "MANGO networks Inc." },
- { 21106, "Shanghai Ulink Telecom Technologies Co., Ltd." },
- { 21107, "Novagem Ltd" },
- { 21108, "Harting Electric GmbH & Co KG" },
- { 21109, "Knowledge Zone" },
- { 21110, "SANITOP-WINGENROTH GmbH & Co. KG" },
- { 21111, "Datalogic S.p.A" },
- { 21112, "TNO Telecom" },
- { 21113, "Hashbang Consulting Ltd" },
- { 21114, "Contec s.j." },
- { 21115, "TFTEN SA" },
- { 21116, "NoVi Pawel Zimnoch" },
- { 21117, "AMG Systems Limited" },
- { 21118, "AB2R" },
- { 21119, "Guru, informacijske tehnologije d.o.o." },
- { 21120, "Sanofi-Aventis" },
- { 21121, "m0n0" },
- { 21122, "G.I.S. Global Information Services GmbH" },
- { 21123, "Amps llc" },
- { 21124, "Adesium" },
- { 21125, "dico-online" },
- { 21126, "vFortress Network Security Pvt. Ltd." },
- { 21127, "KCI Technologies, Inc." },
- { 21128, "Heimetli Software AG" },
- { 21129, "Ideal Solution, LLC" },
- { 21130, "GlassHouse UK Ltd" },
- { 21131, "Phonesync Ltd." },
- { 21132, "Novum Information Technology BV" },
- { 21133, "University of Iowa Hospitals and Clinics" },
- { 21134, "University of Minnesota" },
- { 21135, "Kimmel.biz" },
- { 21136, "North Central University" },
- { 21137, "Astron Computer Corporation" },
- { 21138, "Electrosys S.r.l." },
- { 21139, "Proofpoint, Inc." },
- { 21140, "Xernolan Consulting" },
- { 21141, "Elemental Security, Inc." },
- { 21142, "ITER" },
- { 21143, "Devis" },
- { 21144, "Maieutica - Cooperativa de Ensino Superior, Crl" },
- { 21145, "Intalio, Inc." },
- { 21146, "Wiltel Communications LLC" },
- { 21147, "Innotrac Corporation" },
- { 21148, "Soleil Securities Group, Inc." },
- { 21149, "H Bauer Ediciones" },
- { 21150, "XKL, LLC" },
- { 21151, "Priority Technologies, Inc." },
- { 21152, "Nucor Steel Indiana" },
- { 21153, "Academy of Fine Arts" },
- { 21154, "Harland Financial Solutions" },
- { 21155, "Chameleon Technology, Inc." },
- { 21156, "pipp" },
- { 21157, "RAE Internet Inc." },
- { 21158, "Linux-Online" },
- { 21159, "IPcom S.A." },
- { 21160, "Emerson Retail Services" },
- { 21161, "Flamingo Internet Navigators" },
- { 21162, "Voxiva Inc." },
- { 21163, "EXPERTiS Tecnolog\0303\0255a S.A. de C.V." },
- { 21164, "Legacy Health System" },
- { 21165, "Tidal Networks" },
- { 21166, "Personal Broadband Australia" },
- { 21167, "The Correspondence School" },
- { 21168, "SCF of Arizona" },
- { 21169, "JTHInc Computing Solutions" },
- { 21170, "Vortice Research Development Pty Ltd" },
- { 21171, "NRG Global, Inc." },
- { 21172, "Elan Designs" },
- { 21173, "WSCICC" },
- { 21174, "DISC, State of Kansas" },
- { 21175, "Xinupro, LLC" },
- { 21176, "Datalucid limited" },
- { 21177, "St. John School" },
- { 21178, "Anteya Technology Corporation" },
- { 21179, "Beijing E-tech Technology Co., ltd" },
- { 21180, "SwiDyna Technologies,Inc" },
- { 21181, "anweb" },
- { 21182, "Tonediy" },
- { 21183, "lightelli Ltd." },
- { 21184, "AirMsg, Inc." },
- { 21185, "Ioneda, Inc." },
- { 21186, "Corner Stone Technology Inc" },
- { 21187, "SenseStream Limited" },
- { 21188, "eyes-works Corporation" },
- { 21189, "Huon Associates Pty Ltd" },
- { 21190, "MayAZ Software Services" },
- { 21191, "KCodes Corporation" },
- { 21192, "Goldman Sachs JBWere Pty Ltd" },
- { 21193, "Webvision" },
- { 21194, "LLC Inform-mobil" },
- { 21195, "Non-Stop Systems (South Africa) (Pty) Limited" },
- { 21196, "TerraPages Pty. Ltd." },
- { 21197, "CryptoEx" },
- { 21198, "RTI-Zone" },
- { 21199, "silkway" },
- { 21200, "Dr. Ruff Software GmbH" },
- { 21201, "Linuma Advanced Hosting, Inc." },
- { 21202, "BT (Germany) GmbH & Co. oHG" },
- { 21203, "ARES Inc." },
- { 21204, "MHGS" },
- { 21205, "Webdyn" },
- { 21206, "MobileRRD" },
- { 21207, "Technische Universitaet Bergakademie Freiberg" },
- { 21208, "IKS GmbH Jena" },
- { 21209, "Mayr-Melnhof Packaging International GmbH" },
- { 21210, "kairos" },
- { 21211, "Fraunhofer-Institute for Telecommunications Heinrich-Hertz-Institut" },
- { 21212, "Incito Ltd" },
- { 21213, "topolis.lt" },
- { 21214, "Eidetix S.r.L." },
- { 21215, "MM-Karton" },
- { 21216, "Telepo AB" },
- { 21217, "Lux Servizi di Luigi Iotti" },
- { 21218, "Sette Querce" },
- { 21219, "Solidex S.A." },
- { 21220, "BASF AG" },
- { 21221, "Nexus Advanced Technologies S.r.l." },
- { 21222, "Profline BV" },
- { 21223, "Akris BV" },
- { 21224, "4G Systeme GmbH" },
- { 21225, "British Heart Foundation" },
- { 21226, "Linn Products Ltd" },
- { 21227, "ABI - Associazione Bancaria Italiana" },
- { 21228, "Aspex Semiconductor Ltd" },
- { 21229, "Leningrad Research and Development Institute of Telecommunications" },
- { 21230, "Iriga Networks" },
- { 21231, "Kugele Elektronik" },
- { 21232, "Jung Myoung Ltd" },
- { 21233, "Peter Schmaedicke" },
- { 21234, "o-n-s CO.,LTD." },
- { 21235, "Nehlsen IT Training und Beratung" },
- { 21236, "Laseur Enterprises" },
- { 21237, "Wright Express" },
- { 21238, "BrasilSat Harald S/A" },
- { 21239, "Geist Manufacturing, Inc" },
- { 21240, "PinguSolution Meierhoff/Woltmann GbR" },
- { 21241, "Chezwam" },
- { 21242, "SimDesk Technologies Inc." },
- { 21243, "LANet Sp. z o.o." },
- { 21244, "Mt Umunhum Wireless" },
- { 21245, "Macdonald Associates GmbH" },
- { 21246, "Quantitative Imaging" },
- { 21247, "verimatrix" },
- { 21248, "Pixel Software Technologies" },
- { 21249, "Lightwave Solutions, Inc." },
- { 21250, "Crane River Consulting" },
- { 21251, "Secure Campus Inc" },
- { 21252, "FMS Internetservice M\0303\0274ller und Schaub GbR" },
- { 21253, "TransOptix Inc." },
- { 21254, "Arxceo Corporation" },
- { 21255, "SanYuHu LLC" },
- { 21256, "Corporate Technologies Incorporated" },
- { 21257, "Transera Communications Inc" },
- { 21258, "Tongel.org" },
- { 21259, "Oregon Department of Human Services" },
- { 21260, "XYPRO Technology Corporation" },
- { 21261, "Aventia SL" },
- { 21262, "Second Shift Inc." },
- { 21263, "Pacific College of Oriental Medicine" },
- { 21264, "AFC Commercial" },
- { 21265, "Dark Horse Comics, Inc." },
- { 21266, "Jab Ltd" },
- { 21267, "IT-Service Lehmann" },
- { 21268, "Tecnocity, S.C." },
- { 21269, "OnSite Systems, Inc." },
- { 21270, "SWAL" },
- { 21271, "ITT Educational Services, Inc." },
- { 21272, "Thomas P. Olsen" },
- { 21273, "MediaWeb IT" },
- { 21274, "Camiant Inc" },
- { 21275, "n3k Informatik Ltd" },
- { 21276, "A.C.C.E.S.S. Inc." },
- { 21277, "City of Ottawa" },
- { 21278, "Intellambda Systems Inc." },
- { 21279, "State of Kansas" },
- { 21280, "Computer Access Technology Corporation" },
- { 21281, "Empresa Jornal\0303\0255stica Caldas J\0303\0272nior Ltda" },
- { 21282, "SYS/IO" },
- { 21283, "The Forest Industry Online Inc." },
- { 21284, "Edustructures LLC" },
- { 21285, "Catalyst IT Ltd" },
- { 21286, "Sygate Technologies" },
- { 21287, "Mikrovlny s.r.o." },
- { 21288, "Cetacea Networks Corporation" },
- { 21289, "grid-zero.net" },
- { 21290, "GBP Software, LLC" },
- { 21291, "Tributes Online Ltd" },
- { 21292, "kaengs reich" },
- { 21293, "Fabric7 Systems, Inc." },
- { 21294, "KIKA S.A." },
- { 21295, "Cunningham and Othen" },
- { 21296, "Infinera Corp." },
- { 21297, "U.Z.KULeuven" },
- { 21298, "Odyssey Pharmaceuticals, Inc." },
- { 21299, "BigFix, Inc." },
- { 21300, "Watt 22 T\0303\0241vk\0303\0266zl\0303\0251stechnikai Szolg\0303\0241ltat\0303\0263 Kft." },
- { 21301, "Dialmex, L.L.C." },
- { 21302, "Wright State University" },
- { 21303, "Periscope Ltd." },
- { 21304, "BC Genome Sciences Centre" },
- { 21305, "Katholischen Hochschulgemeinde Linz" },
- { 21306, "Cyberfamily.dk" },
- { 21307, "Tel.Pacific" },
- { 21308, "NeoMon" },
- { 21309, "Juni Australia Pty Ltd" },
- { 21310, "Center for High Energy Physics" },
- { 21311, "GammaStream Technologies, Inc." },
- { 21312, "LISAsoft Pty. Ltd." },
- { 21313, "VRx, Inc." },
- { 21314, "Sizwe" },
- { 21315, "The State Key Laboratory Of Information Security of China" },
- { 21316, "Octtel Communication Co., Ltd." },
- { 21317, "ATEN INTERNATIONAL CO., LTD." },
- { 21318, "Intec NetCore, Inc," },
- { 21319, "Symbio Group" },
- { 21320, "SourceMachine Develop Ltd." },
- { 21321, "CITIC Telecom 1616 Limited" },
- { 21322, "Estonian Academy of Arts" },
- { 21323, "Consolidated Contractors International Company S.A.L" },
- { 21324, "Databus Inc." },
- { 21325, "Siedlung Cuxhaven AG" },
- { 21326, "Heim & Haus GmbH & Co KG" },
- { 21327, "Westsaechsische Hochschule Zwickau" },
- { 21328, "Metos Oy" },
- { 21329, "secXtreme GmbH" },
- { 21330, "JSC \"TransTeleCom Company\"" },
- { 21331, "RESEAUNANCE" },
- { 21332, "Luciad NV" },
- { 21333, "Chongqing Putian Communication Equipment Ltd, Co." },
- { 21334, "ACCIO GLOBAL" },
- { 21335, "OSRAM OS GmbH" },
- { 21336, "CAEN SpA" },
- { 21337, "PowerSource" },
- { 21338, "NetFX" },
- { 21339, "Fiat Auto S.p.A." },
- { 21340, "Verax Systems" },
- { 21341, "Corner Banca SA" },
- { 21342, "EpiSoftware Ltd." },
- { 21343, "n3k Informatik GmbH" },
- { 21344, "Claranet GmbH" },
- { 21345, "Sachs" },
- { 21346, "Forler IT Training & Consulting" },
- { 21347, "ITCnetworks" },
- { 21348, "Song Networks Svenska AB" },
- { 21349, "TTG Europe PLC" },
- { 21350, "SHS Informationssysteme AG" },
- { 21351, "Gyrus Prod SRL" },
- { 21352, "Zhang Ye" },
- { 21353, "Hospital Santa M\0303\0264nica" },
- { 21354, "Bezirksamt Lichtenberg von Berlin" },
- { 21355, "Ascential Software" },
- { 21356, "Austrian Grid" },
- { 21357, "antislash" },
- { 21358, "China ZLTelecom Telecommunication Equipment Co., LTD" },
- { 21359, "OPNET Technologies, Inc" },
- { 21360, "Chatsworth Products, Inc" },
- { 21361, "Catholic Healthcare West" },
- { 21362, "IFOTEC" },
- { 21363, "Valhalla Media" },
- { 21364, "Revinetix, Inc" },
- { 21365, "Accelerate Consultancy Limited" },
- { 21366, "Open Source Lab" },
- { 21367, "Connectathon.Net" },
- { 21368, "The Cloud Networks Ltd." },
- { 21369, "Terrasat Communications, Inc." },
- { 21370, "Thales Navigation" },
- { 21371, "Whited.US" },
- { 21372, "JavaPlus" },
- { 21373, "netfilter/iptables project" },
- { 21374, "Fabbricadigitale srl" },
- { 21375, "Interactive Vision Mind Beacon sp. z o.o." },
- { 21376, "Gruppenkasper" },
- { 21377, "Zhongyuan Institute of Technology" },
- { 21378, "Honda of America Mfg., Inc." },
- { 21379, "Shenzhen aike Co.,Ltd." },
- { 21380, "Guangzhou aike Co.,Ltd." },
- { 21381, "Viessmann Werke GmbH & Co KG" },
- { 21382, "united bolta nigeria limited" },
- { 21383, "bo-tech GmbH & Co. KG" },
- { 21384, "serie a - digitale medien und systeme GmbH" },
- { 21385, "Escalon Networks, Inc." },
- { 21386, "Quiettouch Inc." },
- { 21387, "The John Simon Guggenheim Memorial Foundation" },
- { 21388, "Risetek Inc." },
- { 21389, "King Fahd University of Petroleum and Minerals" },
- { 21390, "ALAIN BRION SARL" },
- { 21391, "Netalley Networks LLP" },
- { 21392, "Tech Arabia" },
- { 21393, "CareerWeaver.net" },
- { 21394, "aplis.cz, a.s." },
- { 21395, "Project Logicaldreams" },
- { 21396, "Brand X Software, Inc." },
- { 21397, "FiberZone Networks LTD." },
- { 21398, "Cybergate Technologies Corp" },
- { 21399, "Active Circle SA" },
- { 21400, "e-geek" },
- { 21401, "DSNCON GmbH" },
- { 21402, "Epic Energy" },
- { 21403, "A-First Technology CO.,LTD." },
- { 21404, "DG Telecom Co. Ltd." },
- { 21405, "COMSATS Internet Services" },
- { 21406, "azh GmbH" },
- { 21407, "Maier" },
- { 21408, "Ernitec A/S" },
- { 21409, "ARTAX, a. s." },
- { 21410, "Kennisnet" },
- { 21411, "gocept gmbh & co. kg" },
- { 21412, "Andreas Wachter" },
- { 21413, "ScriptLogic Corporation" },
- { 21414, "Batra Consulting, Inc." },
- { 21415, "Option nv" },
- { 21416, "Centre Hospitalier de la C\0303\0264te Basque" },
- { 21417, "tdb Software Service GmbH" },
- { 21418, "Unient Communications, a.s." },
- { 21419, "TEDIAL S.L." },
- { 21420, "HanseMerkur Krankenversicherung a.G." },
- { 21421, "Yassine Zairi LTD." },
- { 21422, "CVW" },
- { 21423, "ConnecTerra, Inc." },
- { 21424, "Kanagawa Prefectural Board of Education" },
- { 21425, "Institute for Automation and Control Processes (IACP) FEBRAS" },
- { 21426, "Hoekstra Consulting Group" },
- { 21427, "Weisenberger Solarstromerzeugung und Vertrieb" },
- { 21428, "Aepona Ltd" },
- { 21429, "SUNTECH Telecom Solution LTDA" },
- { 21430, "inPUT Softwareentwicklungs GmbH" },
- { 21431, "SAE International" },
- { 21432, "DigiNet Corporation" },
- { 21433, "Interface Software, Inc." },
- { 21434, "Karolis Dautartas Personal Enterprise" },
- { 21435, "Inner Class Software Engineering Limited" },
- { 21436, "basis06 AG" },
- { 21437, "ATEN Canada Technologies Inc." },
- { 21438, "Thrunet" },
- { 21439, "Beijing Mission Communication Co., Ltd." },
- { 21440, "XIUS India Ltd." },
- { 21441, "KBK e-vallalkozasa" },
- { 21442, "GAPIC (PVT) LTD" },
- { 21443, "Caemar Software" },
- { 21444, "OSS Technologies (Pty) Ltd" },
- { 21445, "eSilicon Corporation" },
- { 21446, "ZIPPtec Systemhaus GmbH" },
- { 21447, "Clinton Group, Inc." },
- { 21448, "KarstadtQuelle AG" },
- { 21449, "Riversoft Integracao e Desenvolvimento de Software Ltda" },
- { 21450, "Radiantek" },
- { 21451, "Topera Technology Ltd." },
- { 21452, "AUNA OPERADORES DE TELECOMUNICACIONES, S.A." },
- { 21453, "GatherWorks, Inc." },
- { 21454, "data voice technologies GmbH" },
- { 21455, "Sinosoft Co.,LTD" },
- { 21456, "LV1871" },
- { 21457, "Demandware, Inc." },
- { 21458, "Clovis Solutions, Inc." },
- { 21459, "CaLviX" },
- { 21460, "Global Infotek, Inc." },
- { 21461, "Cole National" },
- { 21462, "Toro Co" },
- { 21463, "UZ Gent" },
- { 21464, "Adelior SA" },
- { 21465, "Vipond Inc." },
- { 21466, "DOMISYS SA" },
- { 21467, "Uber Technologies cc" },
- { 21468, "Vijit Consulting" },
- { 21469, "Blade Fusion" },
- { 21470, "schematech" },
- { 21471, "SimpleRezo" },
- { 21472, "xmled.org" },
- { 21473, "View500" },
- { 21474, "Ardec International Pty. Ltd." },
- { 21475, "Farsands Corporation Limited" },
- { 21476, "Academia Sinica Grid Computing Centre" },
- { 21477, "TaiwanGrid" },
- { 21478, "AdCoCom GmbH" },
- { 21479, "Icepage AB" },
- { 21480, "Shenzhen Olym-tech Co., Ltd." },
- { 21481, "TKM Telekommunikation und Elektronik GmbH" },
- { 21482, "SAIPM" },
- { 21483, "Quest Retail Technology Pty Ltd" },
- { 21484, "SIGMETA GmbH" },
- { 21485, "UNIS Ukraine" },
- { 21486, "Secces information technologies ltd." },
- { 21487, "Japan Cable Laboratories" },
- { 21488, "NC Numericable" },
- { 21489, "die Antwort" },
- { 21490, "Booth & Associates, Inc." },
- { 21491, "Entelligencia" },
- { 21492, "jMesh Limited" },
- { 21493, "SKODA AUTO a.s." },
- { 21494, "3CPLUS GmbH" },
- { 21495, "SIG IT GmbH" },
- { 21496, "nSolutions, Inc." },
- { 21497, "Tuxeo sprl" },
- { 21498, "Daemonspace Inc." },
- { 21499, "LDCONFIG" },
- { 21500, "SIC LAB S.r.l." },
- { 21501, "Asdag" },
- { 21502, "Sysload Software" },
- { 21503, "Witt Weiden GmbH" },
- { 21504, "SipStorm, Inc." },
- { 21505, "Caton Technology(Beijing) Corporation" },
- { 21506, "Infinity Software Development" },
- { 21507, "Strategies & Solutions LLC" },
- { 21508, "LAAS-CNRS" },
- { 21509, "CanWest Global Communications Corp." },
- { 21510, "heicare GmbH" },
- { 21511, "Institut Laue-Langevin" },
- { 21512, "Instituto Superior T\0303\0251cnico" },
- { 21513, "Vormetric, Inc." },
- { 21514, "Computer Services and Solutions, Inc." },
- { 21515, "Hyperion VOF" },
- { 21516, "Secure Data in Motion, Inc." },
- { 21517, "Ehwa Technologies Information" },
- { 21518, "Queensdale Investment Corp." },
- { 21519, "Detlef Woltmann IT Consult GmbH" },
- { 21520, "Crossworks Co.,Ltd." },
- { 21521, "Engage Networks, Inc" },
- { 21522, "Knights of Columbus" },
- { 21523, "SIA European Softwarehouse" },
- { 21524, "Wintegra" },
- { 21525, "sydios-it-solutions GmbH" },
- { 21526, "Equip'Trans" },
- { 21527, "SLIT" },
- { 21528, "MICROSEC Ltd." },
- { 21529, "2wcom GmbH" },
- { 21530, "Champ Cargosystems S.A." },
- { 21531, "Adventec" },
- { 21532, "Universidad T\0303\0251cnica Federico Santa Mar\0303\0255a" },
- { 21533, "Administration fiscale" },
- { 21534, "eWayDirect, Inc." },
- { 21535, "QVS Software Inc." },
- { 21536, "MeuPC Inform\0303\0241tica e Comunica\0303\0247\0303\0265es LTDA" },
- { 21537, "KUNet" },
- { 21538, "fqdn.org" },
- { 21539, "Klahn Integration, LLC" },
- { 21540, "Clulicon" },
- { 21541, "DNF CONTROLS" },
- { 21542, "NET-TEK.info" },
- { 21543, "Bartels System GmbH" },
- { 21544, "Ktech Telecom" },
- { 21545, "Universidad Nacional de Salta" },
- { 21546, "Virtual Conexions Inc" },
- { 21547, "Logic Product Development" },
- { 21548, "Qoris, Inc." },
- { 21549, "Vine Systems Limited" },
- { 21550, "Millennium Pharmaceutical, Inc." },
- { 21551, "IdleAire Technologies Corp." },
- { 21552, "XI INTERNET SERVICES" },
- { 21553, "Kineticode, INc." },
- { 21554, "Intertech Software Ltd" },
- { 21555, "VonWangelin" },
- { 21556, "Botho.Net" },
- { 21557, "Fabio Perini North America, Inc." },
- { 21558, "East Sea Group" },
- { 21559, "Parallelspace Corporation" },
- { 21560, "Atlanta Help Desk" },
- { 21561, "abk-technology GmbH" },
- { 21562, "Boing.com" },
- { 21563, "Center of the System Administration LLC" },
- { 21564, "MMForces.de" },
- { 21565, "R. E. Smith" },
- { 21566, "WMS Industries Inc." },
- { 21567, "Network Computing Services, Inc." },
- { 21568, "nGENn GmbH" },
- { 21569, "COMPSIS" },
- { 21570, "Crimson Microsystems" },
- { 21571, "Cornerstone University" },
- { 21572, "Incompatible Time Sharing Systems" },
- { 21573, "gb EDV Beratung" },
- { 21574, "Active Systems Ltd." },
- { 21575, "IRIS T\0303\0251l\0303\0251com & R\0303\0251seaux" },
- { 21576, "Vestfold Butikkdata AS" },
- { 21577, "Allgemeine Anthroposophische Gesellschaft" },
- { 21578, "Radium Instituto de Oncologia" },
- { 21579, "HarlemLIVE" },
- { 21580, "XDS" },
- { 21581, "Bird Technologies" },
- { 21582, "twam systems" },
- { 21583, "Oy Stinghorn Ltd" },
- { 21584, "BTT Software" },
- { 21585, "Apollo Medical Imaging Technology" },
- { 21586, "ELITECH DATACOM CO.,LTD." },
- { 21587, "Cemtek Computer Solutions Ltd." },
- { 21588, "Media Connect GmbH" },
- { 21589, "Infosila" },
- { 21590, "Zeni Corporation SA" },
- { 21591, "Systime Informatik AG" },
- { 21592, "Activis Polska Sp. z o.o." },
- { 21593, "Agnes Cebulla" },
- { 21594, "Dougs Computers" },
- { 21595, "Kerberos Research" },
- { 21596, "Low Fat Technology, LLC" },
- { 21597, "Paper Coaters Limited" },
- { 21598, "Net Design Studio S.L." },
- { 21599, "TRAK Microwave Corporation" },
- { 21600, "NETIKUS.NET ltd" },
- { 21601, "Cementhorizon" },
- { 21602, "Turbocomm Tech. Inc." },
- { 21603, "e-Lock Corporation Sdn. Bhd." },
- { 21604, "Fiserv" },
- { 21605, "Sollentuna Energi AB" },
- { 21606, "Asclep Communications Private Ltd" },
- { 21607, "SPAR Oesterreichische Warenhandels-AG" },
- { 21608, "John G Russell (Transport) Ltd.," },
- { 21609, "Syscomp GmbH" },
- { 21610, "Quality Objects S.L." },
- { 21611, "MDHM COMMUNICATION" },
- { 21612, "ise - Individuelle Software-Entwicklung GmbH" },
- { 21613, "TOYOTA Motor Marketing Europe" },
- { 21614, "Multix Finland Oy" },
- { 21615, "Bolton Sixth Form College" },
- { 21616, "Fraunhofer IIS" },
- { 21617, "TiFiC AB" },
- { 21618, "Navecor, SA" },
- { 21619, "Massey Wilcox Transport Ltd." },
- { 21620, "Morrow Technologies Corporation" },
- { 21621, "Perez Torres y Cia." },
- { 21622, "Centerpoint Technologies Inc" },
- { 21623, "Serono International SA" },
- { 21624, "EcoNet.Com, Inc." },
- { 21625, "Shikoku Instrumentation CO.,LTD" },
- { 21626, "NetMon Information Systems Ltd." },
- { 21627, "Embrapa Monitoramento por Sat\0303\0251lite" },
- { 21628, "Niagara LaSalle Corporation" },
- { 21629, "IKTEK" },
- { 21630, "University of Fukui" },
- { 21631, "Axero AG" },
- { 21632, "Kayak Software Corporation" },
- { 21633, "eCorridor, Inc." },
- { 21634, "Educational Community Credit Union" },
- { 21635, "ZhongChuangXingCe Beijing,China" },
- { 21636, "Tech-Nous Ltd" },
- { 21637, "PacWan" },
- { 21638, "PROD-EL PRODOTTI ELETTRONICI S.P.A." },
- { 21639, "CONSIGNACIONES TORO Y BETOLAZA,S.A." },
- { 21640, "O2 (UK) Ltd" },
- { 21641, "mm Control AG" },
- { 21642, "Le Tual Consulting" },
- { 21643, "Allianz Cia. de Seguros y Reaseguros SA" },
- { 21644, "Hyperworx" },
- { 21645, "PDV-Systeme" },
- { 21646, "Meuleman Technologies bvba" },
- { 21647, "Credence Systems Corporation" },
- { 21648, "Mowa - Mobile Wireless Applications Ltda." },
- { 21649, "Access Prime" },
- { 21650, "The Integer Group" },
- { 21651, "FastSecure Technologies" },
- { 21652, "programmercafe" },
- { 21653, "Wirtualna Polska S.A." },
- { 21654, "netnea AG" },
- { 21655, "Deadpixi.com" },
- { 21656, "Iskraemeco d.d." },
- { 21657, "Abrantix AG" },
- { 21658, "Kashya" },
- { 21659, "IsarNet AG" },
- { 21660, "ADAM SOFTWARE Ingenieurbuero" },
- { 21661, "Verilet Corporation" },
- { 21662, "IIJ Technology Inc." },
- { 21663, "Pazmany Peter Catholic University" },
- { 21664, "SAPEC (Sociedad Anonima de Productos Electronicos y de Comunicacion)" },
- { 21665, "VSB - Technical University of Ostrava" },
- { 21666, "ToutProgrammer.com" },
- { 21667, "Claymore Systems, Inc." },
- { 21668, "one11.net" },
- { 21669, "Multiband Inc" },
- { 21670, "MM Invent" },
- { 21671, "VSS monitoring Inc." },
- { 21672, "Psyche Trading Company" },
- { 21673, "Bei Jing Polypegasus Technology Co., Ltd." },
- { 21674, "Beijing TeleSystem Technologies Co., Ltd" },
- { 21675, "Compunicate Technologies, Inc." },
- { 21676, "SparkLAN Communications, Inc." },
- { 21677, "Shanghai Huama Information Tech.Developmenet Co.,Ltd" },
- { 21678, "SCREEN SERVICE ITALIA S.p.A." },
- { 21679, "Bundesagentur f\0303\0274r Arbeit" },
- { 21680, "MeadWestvaco Intelligent Systems" },
- { 21681, "WholeSecurity, Inc." },
- { 21682, "ricilake.net" },
- { 21683, "Wyrdwright, Inc." },
- { 21684, "wayneandersen.com" },
- { 21685, "eFunds Corp." },
- { 21686, "Kyung Gee Electronics Co., Ltd." },
- { 21687, "KIP America, Inc." },
- { 21688, "Serge Co." },
- { 21689, "easynet" },
- { 21690, "David Bremner" },
- { 21691, "gnuTechnologies" },
- { 21692, "Coradir S.A." },
- { 21693, "LINET Services GbR" },
- { 21694, "BeiJing Sina Information Technology Co.,Ltd" },
- { 21695, "net-track GmbH" },
- { 21696, "KEYMILE AG" },
- { 21697, "Rivertree Networks Corp." },
- { 21698, "Field Boxmore Mareen" },
- { 21699, "Belgocontrol" },
- { 21700, "Keller & Partner GmbH" },
- { 21701, "MOBOTIX AG" },
- { 21702, "EAPLV" },
- { 21703, "Microhard Systems Inc." },
- { 21704, "DPS-Promatic srl" },
- { 21705, "ARG Electrodesign Ltd" },
- { 21706, "Dominion Resources, Inc." },
- { 21707, "DECATHLON" },
- { 21708, "Netsweeper Inc." },
- { 21709, "Procios Oy" },
- { 21710, "agentes AG" },
- { 21711, "MediSoft Egypt" },
- { 21712, "Caisse de Pr\0303\0251voyance Sociale" },
- { 21713, "Vectorsite" },
- { 21714, "Cape Byron Imports & Wholesale Pty. Ltd." },
- { 21715, "UFRJ" },
- { 21716, "hangzhou goldway information technology CO.,Ltd" },
- { 21717, "NIPPON KOEI POWER SYSTEMS Co.,Ltd." },
- { 21718, "ReestrRN" },
- { 21719, "EmmeciSoft S.n.c." },
- { 21720, "Microgaming Software Systems Limited" },
- { 21721, "SERVICIO DE CERTIFICACION DE LOS REGISTRADORES" },
- { 21722, "Marine Corps Community Services" },
- { 21723, "NTA CO.LTD." },
- { 21724, "elementec Software & Consulting" },
- { 21725, "Olaf Huebner" },
- { 21726, "HappyComm" },
- { 21727, "People's Bank of Georgia" },
- { 21728, "Synaccess Networks, Inc." },
- { 21729, "Somogy Informatika Kft." },
- { 21730, "stSoft" },
- { 21731, "CryptoSoft, Ltd" },
- { 21732, "Sparkasse Hanauerland" },
- { 21733, "Altar Sp. z o.o." },
- { 21734, "APO Consortium" },
- { 21735, "Alber Inc." },
- { 21736, "IntelliTrans Ltd" },
- { 21737, "Gestweb S.p.A." },
- { 21738, "Hong Kong Education City Ltd" },
- { 21739, "Trusted Solutions s.r.o." },
- { 21740, "Persystent Technology, Inc" },
- { 21741, "St. Margaret's Anglican Church" },
- { 21742, "uWink Inc." },
- { 21743, "yasp.at" },
- { 21744, "BlackRock Financial Management" },
- { 21745, "Arnprior KF" },
- { 21746, "Cheyenne Networks Inc." },
- { 21747, "Aldebaran Systems Ltd" },
- { 21748, "Iggesund Paperboard AB" },
- { 21749, "EtherTek Circuits" },
- { 21750, "Highbridge Capital Management, LLC" },
- { 21751, "St. Thomas University" },
- { 21752, "Societe Cooperative Migros Neuchatel-Fribourg" },
- { 21753, "ZKM - Zentrum f. Kunst und Medientechnologie, Karlsruhe" },
- { 21754, "Media-Com Sp. z o.o." },
- { 21755, "Collaborative Adaptive Sensing of the Atmosphere (CASA)" },
- { 21756, "SOFTEC sa" },
- { 21757, "Digicadd Computacao Grafica LTDA" },
- { 21758, "Slushpupie" },
- { 21759, "All China Federation Of Industry & Commmerce" },
- { 21760, "E-Access Broadband" },
- { 21761, "L\0303\0274becker Hafen-Gesellschaft mbH" },
- { 21762, "Cornwall County Council" },
- { 21763, "Claranet" },
- { 21764, "Hill Systems LLC" },
- { 21765, "The Lyarama Project" },
- { 21766, "Imperial College London" },
- { 21767, "Synarc, Inc." },
- { 21768, "Inspired Broadcast Networks Ltd" },
- { 21769, "M-Tech Information Technology, Inc." },
- { 21770, "Wesaidso Software Engineering" },
- { 21771, "Imolko C.A." },
- { 21772, "SEB Eesti \0303\0234hispank AS" },
- { 21773, "Choice Sourcing Pty" },
- { 21774, "ECLASS" },
- { 21775, "Digital Imaging Solutions" },
- { 21776, "TelcoBridges Inc." },
- { 21777, "Nitido Inc." },
- { 21778, "VA TECH ELIN EBG GmbH & Co" },
- { 21779, "jade.net" },
- { 21780, "ADURO d.o.o." },
- { 21781, "Montelnor SCL" },
- { 21782, "Chinasys Technologies Co.,Ltd." },
- { 21783, "ANTGroup s.r.l" },
- { 21784, "Calrec Audio Ltd" },
- { 21785, "V\0303\0226B-Service GmbH" },
- { 21786, "Boston.com" },
- { 21787, "Qualitas, Inc." },
- { 21788, "Poindexter Systems, Inc." },
- { 21789, "Cablevision - FiberTel" },
- { 21790, "Obidobi Software" },
- { 21791, "Wave-Tech, Inc." },
- { 21792, "BearingPoint, Inc." },
- { 21793, "Kisoku Networking" },
- { 21794, "Panthera Systems" },
- { 21795, "Integrated Decision Systems" },
- { 21796, "HW group s.r.o" },
- { 21797, "Googgun Technologies Inc." },
- { 21798, "Covergence, Inc." },
- { 21799, "CONSULTEC" },
- { 21800, "Island Internet Services" },
- { 21801, "California State University Los Angeles" },
- { 21802, "Maternit\0303\0251 R\0303\0251gionale A. Pinard" },
- { 21803, "Centrepoint Technologies" },
- { 21804, "360degreeweb, Inc" },
- { 21805, "monkeyjr.com" },
- { 21806, "Vitrado GmbH" },
- { 21807, "TRW Engine Components" },
- { 21808, "Prairie Systems Inc." },
- { 21809, "Campusware" },
- { 21810, "Yubivaza" },
- { 21811, "Kalion" },
- { 21812, "Kofax Image Products" },
- { 21813, "West Japan Railway Company" },
- { 21814, "Booth Software Consulting" },
- { 21815, "School of Veterinary Medicine Hannover" },
- { 21816, "CDE nove tehnologije d.d." },
- { 21817, "Gemini Storage Company" },
- { 21818, "CapTech Ventures, Inc." },
- { 21819, "Guernsey Customs" },
- { 21820, "ChanneLynx LLC" },
- { 21821, "Colibre" },
- { 21822, "Andrew Ducore, Independent Consultant" },
- { 21823, "MDS Caswell" },
- { 21824, "Fortuitous Technologies Inc" },
- { 21825, "asystec | Adolf Systemtechnik" },
- { 21826, "Metropipe Network Services Inc" },
- { 21827, "ArcanaNetworks Inc." },
- { 21828, "Meta Systems AS" },
- { 21829, "Ian A. Young" },
- { 21830, "CrossTalk G\0303\0266teborg AB" },
- { 21831, "ClearOne Communications Inc." },
- { 21832, "LabOne Inc." },
- { 21833, "Megas Media" },
- { 21834, "Tufin Technologies" },
- { 21835, "SESCAM - Servicio de Salud de Castilla la Mancha" },
- { 21836, "MRF Systems Ltd." },
- { 21837, "DiGIR" },
- { 21838, "LooseFlow Ltd" },
- { 21839, "ALAXALA Networks Corporation" },
- { 21840, "Hitachi IE Systems Co.,Ltd." },
- { 21841, "Hochschule fuer Angewandte Wissenschaften Hamburg" },
- { 21842, "Energy Technologies, Inc." },
- { 21843, "SHENZHEN MQ TECHNOLOGIES INDUSTRIAL CO., LTD." },
- { 21844, "Durham School Services" },
- { 21845, "Trium Sistemas Informaticos SL" },
- { 21846, "Trium Systems SL" },
- { 21847, "The Scott Lawson Group Ltd." },
- { 21848, "SLACALEK" },
- { 21849, "Riggs Heinrich Media" },
- { 21850, "Intaero Sdn Bhd" },
- { 21851, "MurrayLisook.com" },
- { 21852, "Norkring AS" },
- { 21853, "Gesellschaft fuer Informations- und Datenverarbeitungs mbH" },
- { 21854, "CollabNet, Inc." },
- { 21855, "Winterdale Computerdienste GbR" },
- { 21856, "Modulus Systems" },
- { 21857, "Chaucer Press Limited" },
- { 21858, "A.P. Woodham Ltd." },
- { 21859, "Leightons Paper & Printing Ltd." },
- { 21860, "Harrah's Entertainment, Inc." },
- { 21861, "Mobile Cohesion" },
- { 21862, "Alcasat" },
- { 21863, "INFOTEL" },
- { 21864, "ibte" },
- { 21865, "Unitrends Software Corp" },
- { 21866, "FMAudit, LLC." },
- { 21867, "ESI-HEB" },
- { 21868, "Highmark Inc." },
- { 21869, "CUI Inc (formerly 'Tectrol Inc')" },
- { 21870, "United Cerebral Palsy of Greater Chicago" },
- { 21871, "Datastream Systems, Inc." },
- { 21872, "WICEN (NSW) Inc" },
- { 21873, "XFI Corporation" },
- { 21874, "Moore Gallagher ltd." },
- { 21875, "macfadden.org" },
- { 21876, "metabit" },
- { 21877, "Multi Skilled Resources Australia" },
- { 21878, "MedStar Health" },
- { 21879, "Associazione Culturale Inventati" },
- { 21880, "Australian Experimental High Energy Physics Group" },
- { 21881, "Milom, Inc." },
- { 21882, "Justsystem Corp." },
- { 21883, "Brain ltd." },
- { 21884, "W. Schneider+Co AG" },
- { 21885, "Ericsson Mobile Platforms AB" },
- { 21886, "Newel Informatique" },
- { 21887, "Funkwerk AG, Traffic & Control Communication, Kiel (formerly 'Funkwerk Information Technologies Kiel GmbH')" },
- { 21888, "Content Management License Administrator" },
- { 21889, "Acsis, Inc." },
- { 21890, "GRIB" },
- { 21891, "Tibco Telecom Reseau" },
- { 21892, "Ringwald Mikroelektronik GmbH" },
- { 21893, "phil cornes" },
- { 21894, "ISABEL S.A." },
- { 21895, "Delta-Soft Ltd" },
- { 21896, "Niederrhein University of Applied Sciences" },
- { 21897, "i-CABLE Network Limited" },
- { 21898, "SvamberkNET, s.r.o." },
- { 21899, "Cape City Command, LLC" },
- { 21900, "Danacal Ltd." },
- { 21901, "Millward Brown UK Limited" },
- { 21902, "BAJM Internet" },
- { 21903, "NetServices LLC" },
- { 21904, "Yoshida's Inc." },
- { 21905, "Leibniz-Institut fuer Meereswissenschaften" },
- { 21906, "March Hare Software Ltd." },
- { 21907, "Wohnprojekt Schellingstrasse GmbH" },
- { 21908, "NexaSoft Inc." },
- { 21909, "Chaos Limited, LLC" },
- { 21910, "Electrocomponentes S.A." },
- { 21911, "Trusted Computing Group" },
- { 21912, "Priva Technologies, Inc." },
- { 21913, "dop intelligence" },
- { 21914, "Networx.AT - busta & neumayr oeg" },
- { 21915, "BitPusher, LLC" },
- { 21916, "Tehna" },
- { 21917, "Staatliche Berufsschule I Bayreuth" },
- { 21918, "Ideas to Interconnect B.V." },
- { 21919, "Clearwire, Inc." },
- { 21920, "Cipherium Systems Co., Ltd." },
- { 21921, "Inspiration Matters Ltd" },
- { 21922, "TIE - Tecnologias de Integra\0303\0247\0303\0243o Empresarial, Lda." },
- { 21923, "Bowater, Inc." },
- { 21924, "Adam Pordzik" },
- { 21925, "RTP Network Services, Inc" },
- { 21926, "MedOrder, Inc." },
- { 21927, "intralinux" },
- { 21928, "Renaissance Computing Institute" },
- { 21929, "Netikos Finland Oy" },
- { 21930, "Prihateam Networks Finland Ltd" },
- { 21931, "SE46 AB" },
- { 21932, "Tor.AT - Netzwerke-Server-Sicherheit" },
- { 21933, "Jamie Thompson" },
- { 21934, "FIlesX" },
- { 21935, "Sigtec LTD" },
- { 21936, "Senforce Technologies, Inc." },
- { 21937, "Ezrez Software, Inc." },
- { 21938, "Radio Muzyka Fakty, Sp. z o.o." },
- { 21939, "HYTEC GmbH" },
- { 21940, "Enatel Ltd" },
- { 21941, "Data Return, LLC" },
- { 21942, "Rubicon Software Ltd" },
- { 21943, "Uni-Sommerfest e.V." },
- { 21944, "Blitzen Networks" },
- { 21945, "Kerberos d.o.o." },
- { 21946, "University of Liverpool, Department of Electrical Engineering" },
- { 21947, "TintaDigital, Solu\0303\0247\0303\0265es em Tecnologias de Informa\0303\0247\0303\0243o, Lda." },
- { 21948, "TW TeamWare s.r.l." },
- { 21949, "Istituto Nazionale di Geofisica e Vulcanologia" },
- { 21950, "Open Consultants" },
- { 21951, "Katun Corporation" },
- { 21952, "Crescent Business, Inc." },
- { 21953, "Business Computer Maintenance Limited" },
- { 21954, "Transatlantic Diagnostics LLC" },
- { 21955, "CONTROL SYSTEMS Srl" },
- { 21956, "Megapath Cloud Company LLC" },
- { 21957, "Sealed Air (NZ) ltd" },
- { 21958, "Thermakraft IndustriesNZ Ltd." },
- { 21959, "P J Papers ltd." },
- { 21960, "Legend Communications plc" },
- { 21961, "Exeo Systems" },
- { 21962, "Nextel Communications Inc." },
- { 21963, "Obeco GmbH" },
- { 21964, "Nesym Consulting Srl" },
- { 21965, "LTLab" },
- { 21966, "Cooperativa Obrera Ltda." },
- { 21967, "Invento Networks, Inc." },
- { 21968, "Food Services of America" },
- { 21969, "Kernway Technology Co., Ltd" },
- { 21970, "AHTS" },
- { 21971, "Kisters AG" },
- { 21972, "1mage Software Inc." },
- { 21973, "CaribbeanClub" },
- { 21974, "Boris Kulig EDV und Statistik Beratung" },
- { 21975, "Infraserv Gmbh & Co Hoechst KG" },
- { 21976, "Roberts Wesleyan College" },
- { 21977, "The Sage Group PLC" },
- { 21978, "Fluid, Inc." },
- { 21979, "fks BVBA" },
- { 21980, "Enran Telecom" },
- { 21981, "Spiderbox P/L" },
- { 21982, "With Mobile Technology Co., Ltd." },
- { 21983, "Terrace technology, Inc." },
- { 21984, "Viswis, Inc." },
- { 21985, "Server-Center, JSC" },
- { 21986, "Shinnyo-en Buddhist Order Co." },
- { 21987, "Bugs Inc." },
- { 21988, "ARENAL" },
- { 21989, "Connex.cc DI Hadek GmbH" },
- { 21990, "Universidad Aut\0303\0263noma de Baja California Sur" },
- { 21991, "char" },
- { 21992, "Central Command Inc." },
- { 21993, "girrulat.de" },
- { 21994, "Norfolk Public Schools" },
- { 21995, "Magyar Elektronikus Al\0303\0241\0303\0255r\0303\0241s Sz\0303\0266vets\0303\0251g / Hungarian Association for Electronic" },
- { 21996, "crocobox.org" },
- { 21997, "PowerStar Ltd." },
- { 21998, "Tiani-Spirit" },
- { 21999, "PLUM Computer Consulting, Inc." },
- { 22000, "Pacific Laminations Co. limited" },
- { 22001, "Fachhochschule Esslingen - Hochschule fuer Technik" },
- { 22002, "Michael Breuer" },
- { 22003, "mst" },
- { 22004, "X-MD" },
- { 22005, "GE Healthcare - IT" },
- { 22006, "AREVA T&D" },
- { 22007, "WinWholesale Inc." },
- { 22008, "pld-sparc64" },
- { 22009, "IP-LABEL" },
- { 22010, "Tranfa Optic Telecommunications Co., Ltd." },
- { 22011, "CORE MICRO SYSTEMS INC." },
- { 22012, "silkroadtaiwan,Inc" },
- { 22013, "SGDN" },
- { 22014, "China Beijing Broada Digital Technology Co.,Ltd" },
- { 22015, "BanianTech Co.,Ltd" },
- { 22016, "RackWatch LLC" },
- { 22017, "Claritas, Inc." },
- { 22018, "RedIce SA" },
- { 22019, "Tutus Data AB" },
- { 22020, "CoreTEC GmbH" },
- { 22021, "WestCall Ltd" },
- { 22022, "DeusXMachina" },
- { 22023, "Schaly" },
- { 22024, "Inoi" },
- { 22025, "ELTI d.o.o." },
- { 22026, "Texas State Technical College System" },
- { 22027, "Rock Mobile Corporation" },
- { 22028, "Hauser/Flimp Programming" },
- { 22029, "ActiveLive Technologies LLC" },
- { 22030, "Kign Foundation" },
- { 22031, "Lattice Semiconductor Corporation" },
- { 22032, "Actelion Pharmaceuticals Ltd." },
- { 22033, "Cynical Networks" },
- { 22034, "joztoz net" },
- { 22035, "ECT News Network, Inc." },
- { 22036, "Tapsell-Ferrier Limited" },
- { 22037, "Elektrownia Be\0302\0263chat\0303\0263w S.A." },
- { 22038, "Kommune42" },
- { 22039, "Mathias Wohlfarth EDV-Beratung" },
- { 22040, "STATCON B SCHAEFER" },
- { 22041, "Generalstaatsanwaltschaft Berlin" },
- { 22042, "GITEM" },
- { 22043, "Land-of-uz.net" },
- { 22044, "Moviltek, Inc." },
- { 22045, "Electrosystems Inc." },
- { 22046, "Planecom s.r.l." },
- { 22047, "Qascom S.r.l." },
- { 22048, "CAJA DE AHORROS EL MONTE" },
- { 22049, "Metro Group Information Technologies" },
- { 22050, "COPA-DATA GmbH" },
- { 22051, "SavageS Net" },
- { 22052, "Rising Technology Co., Ltd." },
- { 22053, "Neptune Gaming" },
- { 22054, "Three Rings Design, Inc." },
- { 22055, "HighSpeed America, Inc." },
- { 22056, "Prefeitura da Cidade do Rio de Janeiro" },
- { 22057, "New Signature" },
- { 22058, "Danaher Power Solutions" },
- { 22059, "Corp. Hostarica" },
- { 22060, "Labcom Sistemas Ltda" },
- { 22061, "Liquid Systems" },
- { 22062, "G2 Switchworks" },
- { 22063, "CIFE - Consorcio de Intermediaci\0303\0263n de Facturas Electr\0303\0263nicas" },
- { 22064, "Landeskreditbank Baden-W\0303\0274rttemberg (L-Bank)" },
- { 22065, "Mobiltel AD" },
- { 22066, "Mobitex Technology AB" },
- { 22067, "ENSEA" },
- { 22068, "Tai Liang Chemical Corporation" },
- { 22069, "Deuromedia Technologies" },
- { 22070, "LMR Robosistic Ltd. Co." },
- { 22071, "Associazione culturale Investici" },
- { 22072, "EDS" },
- { 22073, "Cerantus Technologies" },
- { 22074, "Vibrant Media Ltd" },
- { 22075, "Global Technical Engineering Solutions Inc." },
- { 22076, "Televisio de Catalunya, s.a." },
- { 22077, "Smiling Screens Inc." },
- { 22078, "Burlington Coat Factory Warehouse" },
- { 22079, "Matterform Media" },
- { 22080, "YACAST" },
- { 22081, "Guyton Networks" },
- { 22082, "IBM WPC Lab" },
- { 22083, "okkernoot.net" },
- { 22084, "Industec Industria Metalurgica Ltda." },
- { 22085, "CIDE Consorcio para la Interoperabilidad de Documentos Electr\0303\0263nicos" },
- { 22086, "Paul Poeltner" },
- { 22087, "Invelica GmbH" },
- { 22088, "Alpine-Energie Holding AG" },
- { 22089, "Paedagogische Hochschule Zentralschweiz" },
- { 22090, "GCommerce Inc." },
- { 22091, "MATRICS COMMUNICATIONS" },
- { 22092, "Mazda Motor Europe GmbH" },
- { 22093, "Software Systems" },
- { 22094, "Pulse Entertainment" },
- { 22095, "Baltic Online Computer GmbH" },
- { 22096, "Image Project Inc." },
- { 22097, "B&W Fahrzeugentwicklung GmbH" },
- { 22098, "CHEN" },
- { 22099, "EKF Elektronik &- Messtechnik GmbH" },
- { 22100, "Swisscom Fixnet AG" },
- { 22101, "Udo Meng GmbH" },
- { 22102, "KIM Systemhaus GmbH" },
- { 22103, "Paynet Ltd" },
- { 22104, "YesTurnkey Technology, Inc." },
- { 22105, "Central Visayas Information Sharing Network Foundation Inc." },
- { 22106, "Vodafone SDEC" },
- { 22107, "The Florida Lottery" },
- { 22108, "Application Science and Technology" },
- { 22109, "Beuth Hochschule Berlin / University of Applied Sciences" },
- { 22110, "Airedale International Air Conditioning Ltd" },
- { 22111, "Chilibyte Oy" },
- { 22112, "Vigil Security, LLC" },
- { 22113, "Gigabeam" },
- { 22114, "Battle.net Underground" },
- { 22115, "Netflexity, Ltd" },
- { 22116, "Queryus" },
- { 22117, "Epiq Electronic Assembly Ltd." },
- { 22118, "Advance America" },
- { 22119, "GBST Holdings" },
- { 22120, "datastacks.com" },
- { 22121, "Krasnoyarsk State Pedagogical University" },
- { 22122, "ESOLUTIONPROVIDERS" },
- { 22123, "Unimas Systems, Corp." },
- { 22124, "Networks & More! Inc." },
- { 22125, "Sierra Video Systems Inc." },
- { 22126, "AVONET, s.r.o." },
- { 22127, "Delvos" },
- { 22128, "RBC Capital Markets, Sydney" },
- { 22129, "AfterHours Upgrades" },
- { 22130, "Vivatas, Inc" },
- { 22131, "Technical Management System GmbH" },
- { 22132, "Mediasyscom SAS" },
- { 22133, "UWIC" },
- { 22134, "Eminds AB" },
- { 22135, "Sentiva Innovation AB" },
- { 22136, "outsmart Ltd." },
- { 22137, "Ivosh, s.r.o." },
- { 22138, "ATS-KONVERS Ltd." },
- { 22139, "Kurchatov Institute Grid Deployment" },
- { 22140, "Volker Scheuber" },
- { 22141, "ProCom GmbH" },
- { 22142, "Interferenza s.r.l." },
- { 22143, "Steatite Ltd" },
- { 22144, "InfoNotary Ltd." },
- { 22145, "ViDiSys GmbH" },
- { 22146, "Dpt. of Philosophy, Utrecht University" },
- { 22147, "Allpoint Security Ltd." },
- { 22148, "Venda Ltd" },
- { 22149, "Systemhaus Bad Waldsee" },
- { 22150, "Wettern Network Solutions" },
- { 22151, "Neotronic s.r.l." },
- { 22152, "CipherSec SPRL" },
- { 22153, "Viveon AG" },
- { 22154, "Jotron Electronics a.s." },
- { 22155, "Pontificia Universita Santa Croce" },
- { 22156, "Dynamit Nobel Kunststoff GmbH" },
- { 22157, "SLU" },
- { 22158, "Resolv SARL" },
- { 22159, "EPIN Technologies (China), Ltd." },
- { 22160, "RW Comercio e Servicos Ltda." },
- { 22161, "John Wiggins" },
- { 22162, "Beyond Disability, Inc." },
- { 22163, "Ricoh Printing Systems, Ltd." },
- { 22164, "Cambridge Silicon Radio Limited" },
- { 22165, "Web Service Solutions, Inc." },
- { 22166, "Ocean Broadband Networks" },
- { 22167, "nologic.org" },
- { 22168, "Crown College" },
- { 22169, "NetEngine, Inc." },
- { 22170, "FXCM" },
- { 22171, "CeSigma - Signals & Systems" },
- { 22172, "HaCon Ingenieurgesellschaft mbH" },
- { 22173, "Flex Engineering" },
- { 22174, "Virtual Trip Ltd." },
- { 22175, "Mitron Oy" },
- { 22176, "asknet AG" },
- { 22177, "DFN-Verein" },
- { 22178, "Kurs LLC" },
- { 22179, "Otsuka Corporation" },
- { 22180, "INSCAPE DATA CORPORATION" },
- { 22181, "Avision Inc." },
- { 22182, "Cascadia BHC" },
- { 22183, "Cylant, Inc." },
- { 22184, "21st Century Software Inc." },
- { 22185, "eScholar LLC" },
- { 22186, "Marketing Resource Consultants, Inc." },
- { 22187, "Symphoniq" },
- { 22188, "Correctime ltd" },
- { 22189, "Star Technologies, LLC" },
- { 22190, "NetEffect, Inc." },
- { 22191, "Bismarck Public Schools" },
- { 22192, "Pictou Regional Development Commission" },
- { 22193, "Computer Information Systems Ltd., Brest" },
- { 22194, "Orion Systems Inc" },
- { 22195, "NeoTIP SA" },
- { 22196, "Vistek Electronics Ltd" },
- { 22197, "SOFTBANK BB Corp." },
- { 22198, "University of St. Gallen" },
- { 22199, "United Arab Emirates University" },
- { 22200, "Sistemas Techniclite. C.A." },
- { 22201, "Research Center of NetWork Techology Nanjing University Of Posts And" },
- { 22202, "Security Tostem co.,Ltd." },
- { 22203, "Inform\0303\0241tica El Corte Ingl\0303\0251s, S.A." },
- { 22204, "Bundesversicherungsanstalt f\0303\0274r Angestellte" },
- { 22205, "3G Data Soluciones C.A." },
- { 22206, "M-real Corporation" },
- { 22207, "SureWest" },
- { 22208, "AGES International GmbH & Co KG" },
- { 22209, "LJXN inc." },
- { 22210, "FLsystem" },
- { 22211, "Legacy Property Investments LLC (formerly 'JMAnderson Enterprises')" },
- { 22212, "Cognio, Inc." },
- { 22213, "Posda" },
- { 22214, "Explorer Post 227" },
- { 22215, "Pogo Linux, Inc." },
- { 22216, "sighq networking" },
- { 22217, "Yitran Communications" },
- { 22218, "NAVARRO Y BORONAD, S.L." },
- { 22219, "BoreNet AB" },
- { 22220, "LACNIC" },
- { 22221, "Wescom GmbH" },
- { 22222, "ProaXial" },
- { 22223, "IntelliCal LLC" },
- { 22224, "Queensland Treasury" },
- { 22225, "Huazhong University of Science and Technology" },
- { 22226, "Acamaya SA" },
- { 22227, "David Mains & Co. Inc." },
- { 22228, "The University of Manchester Computer Society" },
- { 22229, "Heiks computerdiensten" },
- { 22230, "MyPoints, Inc." },
- { 22231, "VEL Technologies, LLC" },
- { 22232, "Kyle Hamilton" },
- { 22233, "German Overseas Institute" },
- { 22234, "DocuSign France (formerly 'KEYNECTIS')" },
- { 22235, "Beijing WellTelecom Co.,Ltd." },
- { 22236, "Ultrawaves Design, Inc." },
- { 22237, "Inventronik GmbH" },
- { 22238, "FOXCONN Technology Group" },
- { 22239, "Response Systems Corporation" },
- { 22240, "DATOR3 a.s." },
- { 22241, "C&A Computer Consultants Ltd." },
- { 22242, "GENTOO FOUNDATION, INC." },
- { 22243, "The Swatch Group Ltd" },
- { 22244, "Ing.-B\0303\0274ro Otte Gmbh" },
- { 22245, "Phalanx" },
- { 22246, "HSBC Bank plc" },
- { 22247, "Port of Tilbury London Ltd" },
- { 22248, "topf-sicret.org" },
- { 22249, "INSIGHT TECHNOLOGIES Co., Ltd" },
- { 22250, "Max-Planck-Institut fuer Radioastronomie" },
- { 22251, "Syderal SA" },
- { 22252, "McAfee Inc. (formerly 'Reconnex Corporation')" },
- { 22253, "Lite Speed Technologies, Inc." },
- { 22254, "Jerome's Furniture Warehouse" },
- { 22255, "StopTheGlaciers.org" },
- { 22256, "Groep T Hogeschool Leuven" },
- { 22257, "Consultation informatique Daniel Savard Inc." },
- { 22258, "Enlaces Tecnologicos S.A. de C.V." },
- { 22259, "WebAvis" },
- { 22260, "Scana" },
- { 22261, "California Lutheran University" },
- { 22262, "OpenSides sprl" },
- { 22263, "The Corporation of the County of Brant" },
- { 22264, "Artifact Software Inc." },
- { 22265, "Stewart Enterprises, Inc." },
- { 22266, "Evidant Corporation" },
- { 22267, "Integral Technologies Inc" },
- { 22268, "Flammiger Enterprises" },
- { 22269, "Charles A Gura" },
- { 22270, "Quality Comm Com\0303\0251rcio e Servi\0303\0247os de Teleinform\0303\0241tica Ltda" },
- { 22271, "Nimium d.o.o." },
- { 22272, "PAREXEL International Corporation" },
- { 22273, "Universita' degli Studi di Ferrara" },
- { 22274, "QSAN Technology, Inc." },
- { 22275, "PNMS" },
- { 22276, "FHD Ltd." },
- { 22277, "GIquadrat mbH" },
- { 22278, "Bob-paperi Ky" },
- { 22279, "Shiflett Consulting" },
- { 22280, "Telus Mobility" },
- { 22281, "CODE INGENIERIA INFORMATICA" },
- { 22282, "Qualys, Inc." },
- { 22283, "Gutemberg Medeiros Ltda" },
- { 22284, "Dimensao Digital Desenvolvimento Ltd." },
- { 22285, "Teracue" },
- { 22286, "SYSTEMA" },
- { 22287, "TRS SpA" },
- { 22288, "EXTIS GmbH" },
- { 22289, "Contec GmbH" },
- { 22290, "SkandSoft Technologies" },
- { 22291, "FUJITSU ADVANCED SOLUTIONS LIMITED" },
- { 22292, "Network Center of Peking University" },
- { 22293, "Daily Dose Language Systems, Inc." },
- { 22294, "CAR-FRESHNER Corporation" },
- { 22295, "Ministrstvo za obrambo Republike Slovenije" },
- { 22296, "Fazt! Networks, Ltd." },
- { 22297, "Allied Bank Corporation" },
- { 22298, "H\0303\0266jebrom\0303\0266lla" },
- { 22299, "Pontifical University of St. Thomas" },
- { 22300, "CableMatrix Technologies, Inc." },
- { 22301, "COMP Rzeszow S.A." },
- { 22302, "iC Compas GmbH and Co KG" },
- { 22303, "RSS Solutions Inc" },
- { 22304, "Westinghouse Savannah River Company, LLC" },
- { 22305, "schwaberow.de" },
- { 22306, "McMaster University" },
- { 22307, "Active Reasoning, Inc." },
- { 22308, "RedSky Technologies Inc." },
- { 22309, "California State Automobile Association" },
- { 22310, "ComNetMedia AG" },
- { 22311, "A.F. Blakemore and Son Ltd" },
- { 22312, "Universit\0303\0251 Saint-Louis - Bruxelles (USL-B) (formerly 'Universit\0303\0251 Saint-Louis (USL-B)')" },
- { 22313, "SP Controls, Inc." },
- { 22314, "TGN-Systeme Krueger + Partner" },
- { 22315, "spot media AG" },
- { 22316, "OnTapSolutions" },
- { 22317, "Applied Identity, Inc." },
- { 22318, "Anyware Video" },
- { 22319, "Dravske elektrarne Maribor" },
- { 22320, "Guardian Newspapers Limited" },
- { 22321, "ISAC, Inc." },
- { 22322, "Freecomm Corporation" },
- { 22323, "Capinfo Co, Ltd." },
- { 22324, "Cooperton LLC" },
- { 22325, "Blick SA" },
- { 22326, "Sago S.p.A" },
- { 22327, "Martos Ltd" },
- { 22328, "id Quantique SA" },
- { 22329, "same" },
- { 22330, "BIAS Inc." },
- { 22331, "State of Texas, Office of the Attorney General, Child Support Division" },
- { 22332, "ImmediateIT" },
- { 22333, "JPotter" },
- { 22334, "Laws and Wolfe Inc." },
- { 22335, "Alcorn State University" },
- { 22336, "Hopson Advanced Embedded Engineering" },
- { 22337, "Hitachi Electronics Services Co.,Ltd" },
- { 22338, "Paliot" },
- { 22339, "RHX Studio Snc" },
- { 22340, "Herlein Engineering, Inc." },
- { 22341, "ESO Technologies" },
- { 22342, "Dyndaco BVBA" },
- { 22343, "Technical Manangment" },
- { 22344, "Telcomanager Technologies" },
- { 22345, "Exalon Delft" },
- { 22346, "dass /IT GmbH" },
- { 22347, "IDS Services, LLC." },
- { 22348, "Braintower Technologies GmbH" },
- { 22349, "Premier Retail Networks" },
- { 22350, "debitel AG" },
- { 22351, "RedPrompt" },
- { 22352, "Pragmeta Networks" },
- { 22353, "Network Connection" },
- { 22354, "The Lapp Companies" },
- { 22355, "Clariton Networks Ltd." },
- { 22356, "Web-Cyber & Co" },
- { 22357, "INET-Consulting.com, Inc" },
- { 22358, "Albeo" },
- { 22359, "Jofee Internet Services" },
- { 22360, "Unzet ApS" },
- { 22361, "University of Michigan Radiation Oncology Physics" },
- { 22362, "General Software, Inc." },
- { 22363, "Ken Bass Consulting" },
- { 22364, "EMARKMONITOR INC." },
- { 22365, "Gluesys Co. Ltd." },
- { 22366, "EasySoft" },
- { 22367, "Digital Fallout" },
- { 22368, "Silver Spring Networks" },
- { 22369, "Hong Kong Applied Science and Technology Research Institute Company" },
- { 22370, "DUPLO CORPORATION" },
- { 22371, "Business Data Solutions" },
- { 22372, "Horst Reiterer" },
- { 22373, "ThunderTechnology Srl" },
- { 22374, "Allegro Wireless Canada Inc." },
- { 22375, "Crescent Real Estate Equities, LTD." },
- { 22376, "Masco Corporation" },
- { 22377, "VoicePort, LLC" },
- { 22378, "Spaceship.com, Inc." },
- { 22379, "InovaWeb" },
- { 22380, "Vincent Defert Consulting" },
- { 22381, "Linux User Group Roma" },
- { 22382, "Drazen Baic" },
- { 22383, "HCCP" },
- { 22384, "Benedikt Heinen" },
- { 22385, "Houston Academy of Medicine-Texas Medical Center Library" },
- { 22386, "ionflux.org" },
- { 22387, "InSync Technology Ltd" },
- { 22388, "SENTELCO" },
- { 22389, "IRIS Corporation Berhad" },
- { 22390, "Parsek Corporation Ltd." },
- { 22391, "Citadel Security Software, Inc." },
- { 22392, "Delco S.p.A." },
- { 22393, "CDL chair - Saarland University" },
- { 22394, "Digital Fuel Ltd." },
- { 22395, "DyLogic S.r.l." },
- { 22396, "Power Media sp. z o.o." },
- { 22397, "IBAMA" },
- { 22398, "Cooperativa de Computa\0303\0247\0303\0243o da Unimontes" },
- { 22399, "QBT Systems, Inc." },
- { 22400, "Inside Higher Ed" },
- { 22401, "VoIP, Inc." },
- { 22402, "lois.inc" },
- { 22403, "Koch, Neff & Volckmar GmbH" },
- { 22404, "SBS Technologies" },
- { 22405, "Fujitsu Services Finland OY" },
- { 22406, "Adermiis" },
- { 22407, "NeoMeridian Sdn Bhd" },
- { 22408, "PrimeKey Solutions AB" },
- { 22409, "Midland Memorial Hospital" },
- { 22410, "Pixel Technology" },
- { 22411, "Hawkis Consulting" },
- { 22412, "openenterprise.co.uk" },
- { 22413, "TheStreet.com Inc" },
- { 22414, "Pacific Lutheran University" },
- { 22415, "Mole Valley Farmers Ltd." },
- { 22416, "Shelton Internet Ltd" },
- { 22417, "Information Design Department of Tama Art University" },
- { 22418, "Usina de Imagens Photo+Design Ltda." },
- { 22419, "Relex, Inc." },
- { 22420, "accedian, Inc." },
- { 22421, "TSYS Prepaid, Inc." },
- { 22422, "Provideo Systems Pty Ltd" },
- { 22423, "Almos Systems Pty Ltd." },
- { 22424, "INTELSOFT" },
- { 22425, "Audio Processing Technology Ltd" },
- { 22426, "Digital Data Communications Asia Co., Ltd." },
- { 22427, "Sowood & Co Ltd" },
- { 22428, "RealOps, Inc." },
- { 22429, "Florical Systems, Inc." },
- { 22430, "Volke Entwicklungsring GmbH" },
- { 22431, "Phoenix Interactive Design Inc" },
- { 22432, "Gimlitech" },
- { 22433, "Silvermedia Group" },
- { 22434, "NET TIME Corp." },
- { 22435, "Beep Science AS" },
- { 22436, "Sumar\0303\0251 Consultores Associados Ltda." },
- { 22437, "ITZ Informationstechnologie GmbH" },
- { 22438, "Groxis, Inc." },
- { 22439, "CaseNEX" },
- { 22440, "Canadian Bank Note Company, Ltd." },
- { 22441, "Next Dimension Inc." },
- { 22442, "CHILE.COM S.A." },
- { 22443, "EMETEC" },
- { 22444, "GASCARD Partners, L.P." },
- { 22445, "Simon Holmgaard-IT" },
- { 22446, "Bitdefender SRL (formerly 'SOFTWIN SRL')" },
- { 22447, "B.Braun Melsungen AG" },
- { 22448, "Cluster-Worxx.net" },
- { 22449, "SOPA" },
- { 22450, "servicenetz.biz" },
- { 22451, "Custom IDEAS" },
- { 22452, "ING-DiBa AG" },
- { 22453, "H:S Hovedstadens Sygehusf\0303\0246llesskab" },
- { 22454, "Helmut Mauell GmbH" },
- { 22455, "Tribunal Regional do Trabalho da 4a. Regiao" },
- { 22456, "Hebraic Hertiage Christian School of Theology" },
- { 22457, "Deutscher Ring LebensversicherungsAG" },
- { 22458, "Modulus Video, Inc." },
- { 22459, "QVidia Technologies, Inc." },
- { 22460, "Tangtop Technology Co.,Ltd" },
- { 22461, "JeeF Software" },
- { 22462, "NixSys BVBA" },
- { 22463, "heidemann.org" },
- { 22464, "01map" },
- { 22465, "G.I.E. AXA Technology Services Belgium" },
- { 22466, "hoehmann.biz" },
- { 22467, "Applied Global Technologies, Inc." },
- { 22468, "Red-C Optical Networking" },
- { 22469, "Universidad ORT Uruguay" },
- { 22470, "NetDeposit Inc." },
- { 22471, "Visible School, Inc." },
- { 22472, "Boingo Wireless Inc." },
- { 22473, "Teledyne Controls" },
- { 22474, "Asylum Telecom, Ltd." },
- { 22475, "UK Broadband" },
- { 22476, "Syncor Systems, Inc." },
- { 22477, "KingHold Technology Co.,LTD" },
- { 22478, "My ERM Application" },
- { 22479, "Crosswalk, Inc." },
- { 22480, "XipLink Networking" },
- { 22481, "HHS Health Options, Inc." },
- { 22482, "nc" },
- { 22483, "StreamShield Networks" },
- { 22484, "grand.central.org" },
- { 22485, "SafeNet InfoTech Pvt Ltd" },
- { 22486, "Kyushu Institute of Technology" },
- { 22487, "2X Software Ltd" },
- { 22488, "Teltronic S.A.U." },
- { 22489, "Telvent Tr\0303\0241fico y Transporte, S.A." },
- { 22490, "Health Care Service Corporation" },
- { 22491, "Vircom, inc." },
- { 22492, "Forensic Signature Corp." },
- { 22493, "MW 2000 S.A." },
- { 22494, "Animaltracks.net" },
- { 22495, "Chandler Gilbert Community College" },
- { 22496, "Digital Stream, Inc." },
- { 22497, "shanghai blackstone communication Ltd" },
- { 22498, "Neddco Enterprises" },
- { 22499, "Document Processing Systems, Inc." },
- { 22500, "OfficeLink Plus Pty. Ltd." },
- { 22501, "UAB Skaitmeninio sertifikavimo centras" },
- { 22502, "DaVita, Inc." },
- { 22503, "Klaus Henske" },
- { 22504, "RedDevel.com" },
- { 22505, "Volker Englisch" },
- { 22506, "Incache LLC" },
- { 22507, "Ministerio da Ciencia e Tecnologia" },
- { 22508, "Beijing FiberHome Mobile Technologies Co.,Ltd" },
- { 22509, "The Potter Group Ltd" },
- { 22510, "WhatCounts" },
- { 22511, "thinkorswim group, inc." },
- { 22512, "Personal Software Developement Company" },
- { 22513, "PT Sapta Sarana Komunika" },
- { 22514, "RVision LLC" },
- { 22515, "Theoretic Solutions" },
- { 22516, "Castalia LLC" },
- { 22517, "Ernster Public Relations" },
- { 22518, "Arel Communications and Software, Ltd." },
- { 22519, "Akademische Fliegergruppe Karlsruhe" },
- { 22520, "Sandpath" },
- { 22521, "Schwegman, Lundberg, Woessner, & Kluth P.A." },
- { 22522, "ClearPath Networks" },
- { 22523, "Fontec Information Technology Inc." },
- { 22524, "Proyecto Fin de Carrera" },
- { 22525, "RMP WebWorks" },
- { 22526, "InstantServers, Inc." },
- { 22527, "Capella Technologies" },
- { 22528, "iPodion GmbH" },
- { 22529, "Kommunale Datenverarbeitungsgesellschaft mbH" },
- { 22530, "Takeda Pharmaceuticals North America, Inc." },
- { 22531, "Paloma Partners" },
- { 22532, "Computer Graphics Group" },
- { 22533, "Symetra Financial" },
- { 22534, "Purdue Pharma L.P." },
- { 22535, "Neiman Marcus Group" },
- { 22536, "COPAN Systems" },
- { 22537, "TreeTop GbR" },
- { 22538, "Reva Systems Corporation" },
- { 22539, "Champion Computer Technologies" },
- { 22540, "Oulun Lyseon lukio" },
- { 22541, "Open Acuity LLC" },
- { 22542, "Lex Persona" },
- { 22543, "GOUNOT" },
- { 22544, "Host Collective Inc." },
- { 22545, "Daudt Consulting" },
- { 22546, "Qwasartech" },
- { 22547, "Alfred University" },
- { 22548, "Biapo" },
- { 22549, "Broad Net Mux Corporation" },
- { 22550, "NANOTEX CORP." },
- { 22551, "MOIMSTONE Co.,LTD" },
- { 22552, "Sinco Informatica" },
- { 22553, "IT Saver" },
- { 22554, "Legion of the Bouncy Castle" },
- { 22555, "Safehaus" },
- { 22556, "JAPAN ADVANCED INSTITUTE OF SCIENCE AND TECHNOLOGY" },
- { 22557, "Deutsche B\0303\0266rse Group" },
- { 22558, "one4vision GmbH" },
- { 22559, "Intersys AG" },
- { 22560, "Dynamic Design GmbH" },
- { 22561, "Graphic Image Technologies (Pty) Ltd." },
- { 22562, "Trivector System AB" },
- { 22563, "ehotel AG" },
- { 22564, "ULX Ltd." },
- { 22565, "Odyss\0303\0251e Syst\0303\0250mes" },
- { 22566, "Devoteam" },
- { 22567, "Instituto Polit\0303\0251cnico de Castelo Branco" },
- { 22568, "Redwave Technology Ltd" },
- { 22569, "Dynameeting spa" },
- { 22570, "Thomas Taeger Datenblatt" },
- { 22571, "AMART Logic" },
- { 22572, "AD.NET solutions Enrico Roga" },
- { 22573, "Infinite Software, Inc." },
- { 22574, "iseg Spezialelektronik GmbH" },
- { 22575, "Astro-Med, Inc." },
- { 22576, "The OpenBSD SNMP Project" },
- { 22577, "Thomas Wollner - IT Beratung und Integration" },
- { 22578, "InFarmTech" },
- { 22579, "kaptara GmbH & Co. KG (formerly 'Christoph Michel IT Management')" },
- { 22580, "Martin-Baker Aircraft Company Ltd" },
- { 22581, "epollux.org" },
- { 22582, "Group 4 Technology Ltd" },
- { 22583, "Clarkson University" },
- { 22584, "Zetera Corporation" },
- { 22585, "Forest Laboratories, Inc." },
- { 22586, "Dotcast, Inc." },
- { 22587, "Hjelle IT-Bistand" },
- { 22588, "LucaS web studio" },
- { 22589, "P6R, Inc." },
- { 22590, "BHG Security Consulting" },
- { 22591, "Fachhochschule Muenchen - ZaK" },
- { 22592, "Informatec LTDA" },
- { 22593, "Emily Carr College of Art and Design" },
- { 22594, "GoldKrush" },
- { 22595, "Modulation Sciences Inc." },
- { 22596, "marrianne.com" },
- { 22597, "eOrg" },
- { 22598, "MissionMode Solutions, Inc." },
- { 22599, "Informatec Comercial e Servi\0303\0247os Ltda." },
- { 22600, "Harris CapRock Communications (formerly 'CapRock Communications')" },
- { 22601, "Tachometry Corporation" },
- { 22602, "TESI T\0303\0250cnica del So i la Imatge S.L." },
- { 22603, "skyblue.eu.com" },
- { 22604, "Rentokil Initial plc" },
- { 22605, "Winkowski Sp. z o.o." },
- { 22606, "Thomas Urban" },
- { 22607, "ChiliTech Internet Solutions, Inc." },
- { 22608, "Cmed Ltd" },
- { 22609, "CJ Microware and Associates" },
- { 22610, "Raksha Networks Inc." },
- { 22611, "Tele Lorca" },
- { 22612, "Envirocare of Utah, LLC" },
- { 22613, "City Animal Hospital Ltd." },
- { 22614, "Shutterbug Productions & Consulting" },
- { 22615, "Luna[e] Project" },
- { 22616, "Companhia de Sistemas - Compsis Consultoria e Comercio de" },
- { 22617, "Richland Community College" },
- { 22618, "IBM/NY Hospitals" },
- { 22619, "Universidade de Aveiro" },
- { 22620, "Serveapolis" },
- { 22621, "stepping stone GmbH" },
- { 22622, "Lightel Technologies Inc." },
- { 22623, "Excellent Rameur" },
- { 22624, "Source Technologies" },
- { 22625, "ProcessClaims" },
- { 22626, "COMET SYSTEM, s.r.o." },
- { 22627, "MIKRO-KOD Ltd." },
- { 22628, "Deutsche Angestellten-Krankenkasse" },
- { 22629, "Alpermann+Velte electronic engineering GmbH" },
- { 22630, "Istituto Nazionale per la Ricerca sul Cancro" },
- { 22631, "Fachhochschule Osnabrueck" },
- { 22632, "TOKYO BUSINESS SOLUTION CO.,LTD." },
- { 22633, "Banco Mercantil do Brasil SA" },
- { 22634, "Objectif Software" },
- { 22635, "SECIT Secure IT Ltd." },
- { 22636, "bbv AG" },
- { 22637, "Angel's Outpost" },
- { 22638, "Siemens PTD EA" },
- { 22639, "UNICO Computer Systems Pty Ltd" },
- { 22640, "LuXpert" },
- { 22641, "Microsyst\0303\0250mes S.A." },
- { 22642, "PROXID" },
- { 22643, "Carsales.com.au Ltd" },
- { 22644, "Zettai.net LLC" },
- { 22645, "Lane County" },
- { 22646, "Americom Government Services, Inc." },
- { 22647, "WRO-COM Maciej Jankowski" },
- { 22648, "TENSQUARE gmbh" },
- { 22649, "Astoria Networks Inc." },
- { 22650, "ADS Specialists, Inc." },
- { 22651, "Visual Commands" },
- { 22652, "Raptor Networks Technology Inc." },
- { 22653, "Stoke Inc" },
- { 22654, "Kodak Dental Systems" },
- { 22655, "Number41Media Corporation" },
- { 22656, "Intelicis Corporation" },
- { 22657, "Exprit s.r.o." },
- { 22658, "Apria Healthcare Group" },
- { 22659, "HHS International Ltd." },
- { 22660, "Wyoming.com" },
- { 22661, "Wolfram Schlich, IT Service" },
- { 22662, "UEcomm Ltd." },
- { 22663, "Banco do Estado de Sergipe S/A" },
- { 22664, "Soost Software Technology" },
- { 22665, "explicate.org" },
- { 22666, "Hautespot Networks" },
- { 22667, "phase5 information technology GbR" },
- { 22668, "Hawaiian Electric Company" },
- { 22669, "North West University" },
- { 22670, "ControlGuard Ltd." },
- { 22671, "VITRONIC Dr.-Ing. Stein Bildverarbeitungssysteme GmbH" },
- { 22672, "University of Peradeniya" },
- { 22673, "GTS Telecom SRL" },
- { 22674, "Gamersmafia" },
- { 22675, "Prorange Ltd." },
- { 22676, "manitu" },
- { 22677, "Finsoft Ltd" },
- { 22678, "Latens Systems Ltd" },
- { 22679, "Futura NT S.r.l." },
- { 22680, "Oxford BioSignals Ltd" },
- { 22681, "ARD Technology" },
- { 22682, "Vesuvius" },
- { 22683, "SIGMA Chemnitz GmbH" },
- { 22684, "ACS Automotive Communication Services GmbH" },
- { 22685, "Fronter AS" },
- { 22686, "Azbooka Publishers Ltd." },
- { 22687, "Brink's (UK) Limited" },
- { 22688, "jborder.com" },
- { 22689, "Yamagata University" },
- { 22690, "Cleon Solutions s.r.l." },
- { 22691, "APL Ltd." },
- { 22692, "Magma Soft" },
- { 22693, "Alpha Venega Corporation" },
- { 22694, "Broadcast Service Danmark A/S" },
- { 22695, "EPCglobal" },
- { 22696, "Netadmin System i Sverige AB" },
- { 22697, "First Point Global Pty Ltd" },
- { 22698, "Match Lab, Inc." },
- { 22699, "M&T Bank Corporation" },
- { 22700, "LUIS COLORADO SISTEMAS, S.L." },
- { 22701, "Hospices - CHUV" },
- { 22702, "SC Stonet Computers SRL" },
- { 22703, "Ask IT's Done Ltd" },
- { 22704, "University of Kansas Medical Center" },
- { 22705, "DIGICAST Inc." },
- { 22706, "DIGITAL FORECAST Corporation" },
- { 22707, "Comtechservice" },
- { 22708, "eSYS Informationssysteme GmbH" },
- { 22709, "Appistry" },
- { 22710, "Lipman Elektronik ve Danismanlik Ltd.Sti" },
- { 22711, "SGS Societe Generale de Surveillance SA" },
- { 22712, "Wielkopolski Oddzial Wojewodzki NFZ w Poznaniu" },
- { 22713, "Universit\0303\0240 degli Studi di Cassino" },
- { 22714, "Mobilaris AB" },
- { 22715, "CenterPoint - Connective Software Engineering GmbH" },
- { 22716, "Modern World Internet Ltd" },
- { 22717, "VRT" },
- { 22718, "Centre Reseau Communication" },
- { 22719, "Pinellas County Government - IT" },
- { 22720, "Metreos Corporation" },
- { 22721, "SIM International, Inc." },
- { 22722, "KWPark Hardware" },
- { 22723, "Cyjaya Korea" },
- { 22724, "Store Alcala" },
- { 22725, "Marko Durkovic" },
- { 22726, "InfiniLogic (Private) Limited" },
- { 22727, "Z&Z Services" },
- { 22728, "V-Office" },
- { 22729, "Unleash Computers Ltd" },
- { 22730, "TurnTide Incorporated" },
- { 22731, "Data Aire,Inc." },
- { 22732, "Brock University" },
- { 22733, "NorBelle, LLC" },
- { 22734, "synetics gmbh" },
- { 22735, "GSC Mobile Solutions" },
- { 22736, "Digium" },
- { 22737, "SmarTone Mobile Communications Limited" },
- { 22738, "WiNetworks" },
- { 22739, "Network Technology Research Group" },
- { 22740, "S&P Computersysteme GmbH" },
- { 22741, "N-Dimension Solutions Inc." },
- { 22742, "Acbel Polytech Inc." },
- { 22743, "Linz AG" },
- { 22744, "Purple Labs S.A." },
- { 22745, "MathAn Praha, s.r.o." },
- { 22746, "PRIORITY ELECTRONICS LTD." },
- { 22747, "Travelpack" },
- { 22748, "Dade Behring" },
- { 22749, "Celebrity Resorts, Inc." },
- { 22750, "Teen Living Programs, Inc." },
- { 22751, "HealthlineIS" },
- { 22752, "PatchLink Corporation" },
- { 22753, "Convergent Media Network Ltd." },
- { 22754, "Cyntrum Web-Technologies, Inc." },
- { 22755, "Terma Software Labs LLC" },
- { 22756, "Revolution Linux inc." },
- { 22757, "Azonic Technology Ltd." },
- { 22758, "zrn.ru" },
- { 22759, "PROMAX ELECTRONICA,SA" },
- { 22760, "Sphera Corporation Ltd." },
- { 22761, "NAVI Sp. z o.o." },
- { 22762, "GROUPE ATLANTIC" },
- { 22763, "Artis Group GmbH" },
- { 22764, "SPIDCOM Technologies SA" },
- { 22765, "Augur Systems, Inc." },
- { 22766, "Hoatech Technologies Co., Ltd." },
- { 22767, "TTC InfoAge Inc." },
- { 22768, "Technical University of Crete" },
- { 22769, "mur.at - Verein zur Foerderung von Netzwerkkunst" },
- { 22770, "MediaSputnik Ltd." },
- { 22771, "BlueFinger Ltd." },
- { 22772, "Oesterreichische Nationalbank" },
- { 22773, "John Fan" },
- { 22774, "Ensuren Corporation" },
- { 22775, "Centromeric inc" },
- { 22776, "Covance Cardiac Safety Services" },
- { 22777, "Ventura24 S.L." },
- { 22778, "Reclusive Hermit" },
- { 22779, "Carefirst BlueCross BlueShield" },
- { 22780, "Powerline Technologies Ltd" },
- { 22781, "wenzhou telecom" },
- { 22782, "Bridgette, Inc" },
- { 22783, "Rauscher networX" },
- { 22784, "pimp.org.za" },
- { 22785, "ICTeam AG" },
- { 22786, "Lattelekom" },
- { 22787, "internetbureau Websight" },
- { 22788, "PSInd, LLC" },
- { 22789, "martyhill.net" },
- { 22790, "S.K.M. Informatik GmbH" },
- { 22791, "China Council for the Promotion of International Trade (CCPIT)" },
- { 22792, "Voice Technology Ind. and Com. Ltd." },
- { 22793, "Stratum Communications Pty Ltd" },
- { 22794, "Pagaros Pty Limited" },
- { 22795, "Mississippi Valley State University" },
- { 22796, "LOGSYS Inc." },
- { 22797, "openconcept gmbh" },
- { 22798, "University of Crete" },
- { 22799, "Endo7 GmbH/Srl" },
- { 22800, "FlexDSL Telecommunications AG" },
- { 22801, "Amedia Networks, Inc." },
- { 22802, "Telabria Ltd" },
- { 22803, "Psychosys Software Limited" },
- { 22804, "Trivium Technologies Ltd." },
- { 22805, "Utex Communications" },
- { 22806, "Scientica Life Sciences Pvt. Ltd." },
- { 22807, "Andreas Julius" },
- { 22808, "Oesterreichische Aerztekammer" },
- { 22809, "VLI Communications CO.,LTD." },
- { 22810, "Aktia Savings Bank p.l.c." },
- { 22811, "Pfeiffer & May Grosshandel AG" },
- { 22812, "Allscripts, LLC" },
- { 22813, "Pest Control Data Systems, Inc." },
- { 22814, "radiowave limted" },
- { 22815, "Axeda Systems Inc." },
- { 22816, "Rackable Systems, Inc." },
- { 22817, "BAE SYSTEMS Australia" },
- { 22818, "Naked Dwarf" },
- { 22819, "Chas Philly Steaks and Stix" },
- { 22820, "DATS Co. Ltd." },
- { 22821, "Saab AB" },
- { 22822, "MobiComp Computa\0303\0247\0303\0243o M\0303\0263vel S.A." },
- { 22823, "Crodo Technologies Pte Ltd" },
- { 22824, "Verbrugge Terminals BV" },
- { 22825, "Androsoft GmbH" },
- { 22826, "DFDS A/S" },
- { 22827, "Certagon Corporation" },
- { 22828, "Emacolet Networking Services" },
- { 22829, "Core Mobility, Inc." },
- { 22830, "NUMATA Kazuya" },
- { 22831, "Warpera Corporation" },
- { 22832, "POSDATA Co. Ltd." },
- { 22833, "TMN TECHNOLOGIES Telecomunica\0303\0247\0303\0265es LTDA" },
- { 22834, "Redfish Group Pty Ltd" },
- { 22835, "Firetide Inc" },
- { 22836, "Tercina Inc." },
- { 22837, "Rogers Police Department" },
- { 22838, "A1 Enterprise, Inc" },
- { 22839, "ZQInteractive" },
- { 22840, "pbk2 GmbH & Co. KG" },
- { 22841, "external Business Information Services GmbH" },
- { 22842, "Scientific Games International GmbH" },
- { 22843, "ANWB B.V." },
- { 22844, "Scheede" },
- { 22845, "IntelSight" },
- { 22846, "YR20 GROUP INC." },
- { 22847, "Vindaloo Communications" },
- { 22848, "Id\0303\0251iaLivre" },
- { 22849, "T&F Computer und Networksystems GmbH" },
- { 22850, "MSB" },
- { 22851, "Children's Memorial Hospital" },
- { 22852, "ENEM B.V." },
- { 22853, "GuangZhou Net Control Tech. Ltd." },
- { 22854, "Wojew\0303\0263dzki O\0302\0266rodek Informatyki przy Warminsko - Mazurskim" },
- { 22855, "Multisuns Corp." },
- { 22856, "HiStor technologies" },
- { 22857, "Reflex Security, Inc." },
- { 22858, "financial.com AG" },
- { 22859, "Techaya Inc." },
- { 22860, "The LDAP Company" },
- { 22861, "MDOUK" },
- { 22862, "Winvision" },
- { 22863, "Softwarehaus Hartter" },
- { 22864, "ALPHA.CH AG" },
- { 22865, "University of Basel" },
- { 22866, "Vattenfall AB" },
- { 22867, "G-International Ltd" },
- { 22868, "Ventana Medical Systems, Inc." },
- { 22869, "Deutsche Gesellschaft f\0303\0274r Technische Zusammenarbeit (GTZ) GmbH" },
- { 22870, "Inter-Governmental Consultations on Asylum, Refugee and Migration Policies" },
- { 22871, "Autocom A/S" },
- { 22872, "Reinhard Moosauer IT Beratung" },
- { 22873, "Indian Institute of Information Technology" },
- { 22874, "Syntermed, Inc." },
- { 22875, "Fusion Laboratories, Inc" },
- { 22876, "BlueCows Technical Services" },
- { 22877, "Northern Arkansas Telephone Company, Inc." },
- { 22878, "Allen Corporation of America" },
- { 22879, "Affine DB Ltd." },
- { 22880, "SonicDuo OSP dep." },
- { 22881, "Man Investments Ltd" },
- { 22882, "CJSC \"UKRAINIAN MOBILE COMMUNICATIONS\"" },
- { 22883, "OPENLiMiT SignCubes GmbH" },
- { 22884, "Western Gas Resources, Inc." },
- { 22885, "GIP CPAGE" },
- { 22886, "Astro Strobel Kommunikationssysteme GmbH" },
- { 22887, "PC-Ware Information Technologies AG" },
- { 22888, "Interface Business GmbH" },
- { 22889, "Zenprise, Inc." },
- { 22890, "Department of Applied Mathematics \"U.Dini\"" },
- { 22891, "Future Connect (Pvt) Ltd" },
- { 22892, "Jan B. Telepski Trading" },
- { 22893, "Ing. Petr Setka" },
- { 22894, "Unipower Corporation" },
- { 22895, "RF Technologies, Inc." },
- { 22896, "Govern de les Illes Balears" },
- { 22897, "EPRCI" },
- { 22898, "Sericon Technology Inc." },
- { 22899, "Etherstuff" },
- { 22900, "Statewide Software & Systems" },
- { 22901, "Packet411 Corporation" },
- { 22902, "Discovery Communications Inc." },
- { 22903, "Preferred Communications, Inc." },
- { 22904, "R. L. Polk & Co." },
- { 22905, "OAG Worldwide Ltd" },
- { 22906, "Medical Soft Instruments SLL" },
- { 22907, "Riege Software International GmbH" },
- { 22908, "Magnus Informatik A/S" },
- { 22909, "T-VIPS AS" },
- { 22910, "MaeSoft Group" },
- { 22911, "EPSILON Software Assistance SA" },
- { 22912, "Comrad Medical Systems Limited" },
- { 22913, "TJM Products Pty Ltd" },
- { 22914, "Sonim Technologies" },
- { 22915, "IFX Corp" },
- { 22916, "Pyramide Technologies Corp" },
- { 22917, "UHS Systems Pty Ltd" },
- { 22918, "TeDenium Ind\0303\0272stria Eletroeletr\0303\0264nica Ltda." },
- { 22919, "Herit Corporation" },
- { 22920, "Windows Consulting Group, Inc." },
- { 22921, "ATI Technologies Incorporated" },
- { 22922, "postlab" },
- { 22923, "moll-illner" },
- { 22924, "wegewerk GmbH" },
- { 22925, "LAB-EL Elektronika Laboratoryjna" },
- { 22926, "Heinrig Impex SRL" },
- { 22927, "Aqsacom SA" },
- { 22928, "Seokyo Telecommunication Co., Ltd." },
- { 22929, "Schuemperlin Engineering AG" },
- { 22930, "SPI Dynamics, Inc." },
- { 22931, "Parlano Inc." },
- { 22932, "Nvia2 Mensajes Interactivos, C.A." },
- { 22933, "itaas, Inc." },
- { 22934, "Rudolf Leiner GmbH" },
- { 22935, "Beijing Univ. of Aeronautics & Astrnautics" },
- { 22936, "Tonbrand Software" },
- { 22937, "Message Mobile GmbH" },
- { 22938, "NOS Technology AS" },
- { 22939, "WebInterstate Inc." },
- { 22940, "Arrowspan Inc." },
- { 22941, "PDX, Inc." },
- { 22942, "O2 Micro" },
- { 22943, "CVC Online" },
- { 22944, "Winuel SA" },
- { 22945, "KaiserAir" },
- { 22946, "Chordcom" },
- { 22947, "IT-INFORMATIK" },
- { 22948, "InSerTO" },
- { 22949, "EMAP Plc" },
- { 22950, "OEG Australia" },
- { 22951, "Lucid Security Corporation" },
- { 22952, "On2 Technologies" },
- { 22953, "EOSLINK CO., LTD" },
- { 22954, "UNIVERSAL MICROELECTRONICS CO., LTD." },
- { 22955, "Azent AB" },
- { 22956, "News International Supply Company Ltd." },
- { 22957, "ZEN Sistemi Srl" },
- { 22958, "Weston Digital Technologies Ltd." },
- { 22959, "Tony Chachere's Creole Foods of Opelousas Inc" },
- { 22960, "Sozotek, Inc." },
- { 22961, "SK Telesys" },
- { 22962, "matrix.mx" },
- { 22963, "Vale Technology LTD" },
- { 22964, "Acceris Communications" },
- { 22965, "Sundance Digital, Inc." },
- { 22966, "COSA GmbH" },
- { 22967, "ZR InfoTech" },
- { 22968, "ComBrio, Inc" },
- { 22969, "H+BEDV Datentechnik GmbH" },
- { 22970, "Dental-On-Line SARL" },
- { 22971, "A.P. Moller - Maersk A/S" },
- { 22972, "Wilibox" },
- { 22973, "Greenfield Networks, Inc." },
- { 22974, "Elgi Equipments Ltd" },
- { 22975, "The NGIM Project" },
- { 22976, "AirInfinite, Inc." },
- { 22977, "MedImpact Healthcare Systems" },
- { 22978, "GridConnect, Inc" },
- { 22979, "Bridgestream Inc." },
- { 22980, "Confio Software" },
- { 22981, "BPB plc" },
- { 22982, "Tectona SoftSolutions Pvt. Ltd." },
- { 22983, "SSTIC" },
- { 22984, "ALS&TEC Ltd" },
- { 22985, "Derdack GmbH" },
- { 22986, "Eurofighter Jagdflugzeug GmbH" },
- { 22987, "EVONET Belgium NV" },
- { 22988, "University of Kentucky" },
- { 22989, "Essex Property Trust, Inc" },
- { 22990, "Baltimore County Savings Bank, FSB" },
- { 22991, "Netalfa Ltd." },
- { 22992, "WIT, Inc." },
- { 22993, "Belarc, Inc." },
- { 22994, "SiliconWorks Corporation" },
- { 22995, "Axley.net" },
- { 22996, "City of Peabody" },
- { 22997, "Ab Initio Software Corporation" },
- { 22998, "Allstream Inc" },
- { 22999, "FURUNO SYSTEMS Co.,Ltd." },
- { 23000, "Nexis s.r.l." },
- { 23001, "Corporaci\0303\0263n Supermercados Unidos S.A" },
- { 23002, "Consentry Networks" },
- { 23003, "HyperWerk FHBB" },
- { 23004, "C&C Solution Technology" },
- { 23005, "Fluidsignal Group S.A." },
- { 23006, "e-Mont d.o.o." },
- { 23007, "Imatic" },
- { 23008, "WebPaws.com" },
- { 23009, "Asamnet e. V." },
- { 23010, "Maxima Communications" },
- { 23011, "OCLC PICA" },
- { 23012, "Netprovider S.A." },
- { 23013, "Salem-Keizer Public Schools" },
- { 23014, "Genie-uk" },
- { 23015, "NewBay Software Ltd." },
- { 23016, "Metaphor Studio, LLC" },
- { 23017, "Ideal Technologies Inc." },
- { 23018, "Matrix Networks China" },
- { 23019, "Pentacomp Systemy Informatyczne Sp. z o.o." },
- { 23020, "FGAN FKIE/KOM" },
- { 23021, "Acstre Support Ltd." },
- { 23022, "Net Optics Inc." },
- { 23023, "THX Ltd." },
- { 23024, "PT. Dinamika Mandiri" },
- { 23025, "meSSSoft" },
- { 23026, "SuedLeasing GmbH" },
- { 23027, "Area Electronic System" },
- { 23028, "Sunrise Technology Co. Ltd." },
- { 23029, "SQI, Inc." },
- { 23030, "Shing" },
- { 23031, "NSP Ltd." },
- { 23032, "MailFrontier, Inc." },
- { 23033, "Leivio Technologies, Inc." },
- { 23034, "SETIB" },
- { 23035, "Labware, s.a." },
- { 23036, "Isomorphic System Research Inc." },
- { 23037, "CMT Systems Inc." },
- { 23038, "Emphasys Software" },
- { 23039, "Ambient Corporation" },
- { 23040, "Exobit Networks, Inc." },
- { 23041, "CQ Inc." },
- { 23042, "The Real Estate Company, Inc." },
- { 23043, "CastIS Corp." },
- { 23044, "SmallBizConcepts BV" },
- { 23045, "Cassee.net" },
- { 23046, "MTD Systems" },
- { 23047, "Xinke (China) Information System Ltd" },
- { 23048, "Sabik OY" },
- { 23049, "Emsys n.v." },
- { 23050, "JSC Department of System Research" },
- { 23051, "SC TeSIS Logic SRL" },
- { 23052, "APPI Tecnologia S.A." },
- { 23053, "DOSHED Corp." },
- { 23054, "Cyris Networks" },
- { 23055, "H Zero Seven" },
- { 23056, "Riedel Communications GmbH" },
- { 23057, "ISD Holland BV" },
- { 23058, "Expertron Group (Pty) Ltd" },
- { 23059, "NetFuel, Inc." },
- { 23060, "Codebench, Inc." },
- { 23061, "VirtualBridges Communications Corp" },
- { 23062, "Huize-wel.nl" },
- { 23063, "Dominion Lasercom, Inc" },
- { 23064, "Kronback ApS" },
- { 23065, "TWINCLING Society" },
- { 23066, "Telmap LTD." },
- { 23067, "Nanomatic Ltd." },
- { 23068, "AngelGroup" },
- { 23069, "Sodexho" },
- { 23070, "Hubris Communications Inc" },
- { 23071, "Conformiq Software Ltd." },
- { 23072, "Australian Internet Company Pty Ltd" },
- { 23073, "WiMetrics Corporation" },
- { 23074, "Security Conscious Inc." },
- { 23075, "Novatel Wireless, Inc." },
- { 23076, "SP" },
- { 23077, "Keppler IT GmbH" },
- { 23078, "Administration des Douanes et Imp\0303\0264ts Indirects" },
- { 23079, "Kiles Consulting" },
- { 23080, "New York State Directory Services" },
- { 23081, "Opus One, Inc." },
- { 23082, "Riedell MotorSports" },
- { 23083, "University of Bridgeport" },
- { 23084, "SCT Consulting" },
- { 23085, "QQ Technology, INC." },
- { 23086, "Major & Minor Exims Pvt Ltd" },
- { 23087, "Ross Sampson Consulting" },
- { 23088, "Applied Watch Technologies, LLC" },
- { 23089, "Nanjing Gentech System CO., Ltd." },
- { 23090, "ncfritz.net" },
- { 23091, "Nilson Group AB" },
- { 23092, "gaztec services" },
- { 23093, "ANAGRAN" },
- { 23094, "Kuehne + Nagel (AG&Co.) KG" },
- { 23095, "ClarioNet, s.r.o." },
- { 23096, "jminet.com" },
- { 23097, "Municipalidad de Rosario" },
- { 23098, "ServicePilot Technologies" },
- { 23099, "NeTAMS" },
- { 23100, "H&T Greenline GmbH" },
- { 23101, "University Hygienic Laboratory" },
- { 23102, "San Mateo County Public Safety Communications" },
- { 23103, "SRP" },
- { 23104, "Raven Systems Design, Inc." },
- { 23105, "Action Systems, Inc." },
- { 23106, "RedPhone Security, Inc." },
- { 23107, "Women's Center for Radiology" },
- { 23108, "RP Online Verlagsgesellschaft mbH" },
- { 23109, "Netline Internet Service GmbH" },
- { 23110, "UNYICO MIEE" },
- { 23111, "Spun Pty Ltd" },
- { 23112, "University of Turku" },
- { 23113, "LXPT" },
- { 23114, "Comstar Ltd." },
- { 23115, "Observatoire Midi-Pyrenees" },
- { 23116, "iVOD Inc." },
- { 23117, "New Zealand Ministry of Health" },
- { 23118, "Telenet Systems Pvt. Ltd." },
- { 23119, "Shevchenko Didkovskiy & Partners" },
- { 23120, "BFE Studio and Media Systems GmbH" },
- { 23121, "Saint-Petersburg Certification Authority" },
- { 23122, "Swisscom Ltd. - formely Bluewin AG" },
- { 23123, "gedas deutschland GmbH" },
- { 23124, "Dickey Rural Telephone Cooperative" },
- { 23125, "Spring Lake Consulting, LLC" },
- { 23126, "BaneTele AS" },
- { 23127, "GINA-COMPUTING GmbH" },
- { 23128, "NitroSecurity, Inc." },
- { 23129, "Macrovision Corporation" },
- { 23130, "CPN International Inc." },
- { 23131, "Mithi Software Technologies private Limited" },
- { 23132, "Canadian Net" },
- { 23133, "IzhInformProject" },
- { 23134, "Skillsunited.co.uk <http://Skillsunited.co.uk>" },
- { 23135, "Articon Integralis AG" },
- { 23136, "Warweus S.r.l" },
- { 23137, "Altinity Limited" },
- { 23138, "Reutlingen University" },
- { 23139, "Software Eginerring Associated Consultants, Inc" },
- { 23140, "Cybernetik.net" },
- { 23141, "HOCHIKI CO.,LTD" },
- { 23142, "Akademia Swietokrzyska" },
- { 23143, "Peterson Packaging Oy" },
- { 23144, "Defenxis Sdn Bhd" },
- { 23145, "ExtendMedia Inc." },
- { 23146, "HOYA" },
- { 23147, "VIMESA, VIDEO MEDIOS S.A." },
- { 23148, "Dr. Peter Koch EDV Dienstleistungen" },
- { 23149, "Typodata" },
- { 23150, "MoCoTec Mobile Communication Technologies" },
- { 23151, "SeeTec Communications GmbH & Co. KG" },
- { 23152, "HVB Leasing GmbH" },
- { 23153, "Cloanto Corporation" },
- { 23154, "AIT Austrian Institute of Technology GmbH" },
- { 23155, "SOFTWISE DEVELOPMENT" },
- { 23156, "Vitec Group Communications Limited" },
- { 23157, "Theobit GmbH" },
- { 23158, "CCIS sprl" },
- { 23159, "eventIS Software Solutions B.V." },
- { 23160, "Geneous Software AG" },
- { 23161, "Aran Technologies" },
- { 23162, "Ecole Sup\0303\0251rieure d'Informatique" },
- { 23163, "Defensor del Pueblo" },
- { 23164, "Revieworld Ltd" },
- { 23165, "SAFE-Biopharma Association" },
- { 23166, "Automatyka" },
- { 23167, "Operation Mobilisation" },
- { 23168, "Orchard View Community Network" },
- { 23169, "Sigma Systems Canada Inc." },
- { 23170, "Verizon Card Operations" },
- { 23171, "Servergraph" },
- { 23172, "Teletronics Technology Corp" },
- { 23173, "SubZeroNet" },
- { 23174, "WildBlue Communications, Inc." },
- { 23175, "WorkCompCentral.com, Inc." },
- { 23176, "SpeedPartner GmbH" },
- { 23177, "Cirond Corporation" },
- { 23178, "Helix Ltd." },
- { 23179, "Bilfrost Incorporated, Inc." },
- { 23180, "TELEVES S.A." },
- { 23181, "Weed Instrument Company Inc." },
- { 23182, "Sussman Automotive" },
- { 23183, "Amnis Limited Company" },
- { 23184, "Applied Microsystems, Inc." },
- { 23185, "Isensix, Inc." },
- { 23186, "4A Solutions Ltd." },
- { 23187, "Rene Thomas Folse Inc." },
- { 23188, "Maxi Net Services" },
- { 23189, "NETPLEX LLC" },
- { 23190, "Interland, Inc" },
- { 23191, "Nvia Gestion de Datos S.L" },
- { 23192, "Norlight Telecommunications" },
- { 23193, "M-Vision" },
- { 23194, "Northwest University" },
- { 23195, "Afar Communications Inc." },
- { 23196, "DeveTel S.A." },
- { 23197, "HAN InfoComm" },
- { 23198, "One Cow Standing" },
- { 23199, "MCGV Stack" },
- { 23200, "NetFocus Technologies, Inc." },
- { 23201, "ACI Communications, Inc." },
- { 23202, "zinfo.us" },
- { 23203, "tasmanstudios Ltd." },
- { 23204, "Stratacache, Inc." },
- { 23205, "Alcormizar Inc." },
- { 23206, "Clinical DataFax Systems Inc." },
- { 23207, "BIA B.V." },
- { 23208, "Rhodanie Systemes et Reseaux Sarl" },
- { 23209, "Union Compagnonnique" },
- { 23210, "Pyramid Robotics" },
- { 23211, "Queue Global Information Systems Corp." },
- { 23212, "Cuttriss Consulting" },
- { 23213, "Wilico Wireless Networking Solutions SA" },
- { 23214, "j2anywhere.com" },
- { 23215, "Netensia" },
- { 23216, "Bawue.Net e.V." },
- { 23217, "Chambre de Commerce et d'Industrie de Brest" },
- { 23218, "Betanetworks Ltd.,ShangHai, China" },
- { 23219, "DriveTime Automotive Group, Inc." },
- { 23220, "ICO Ltd." },
- { 23221, "ROCSYS Technologies Pvt.Ltd." },
- { 23222, "ESI SOFTWARE" },
- { 23223, "StartCom Ltd." },
- { 23224, "Sutton Group Realty Services Ltd." },
- { 23225, "Maxitel S/A" },
- { 23226, "Dolphin Software" },
- { 23227, "Kayak Interactive" },
- { 23228, "City of Las Vegas Nevada" },
- { 23229, "oneK Internet Solutions Inc." },
- { 23230, "Captara Corporation" },
- { 23231, "tekVizion PVS, Inc" },
- { 23232, "TrackAbout, Inc." },
- { 23233, "Webdoeds" },
- { 23234, "HOPS International Inc" },
- { 23235, "DTI2" },
- { 23236, "Escher Group Ltd" },
- { 23237, "Softier Inc." },
- { 23238, "FCI Broadband Communications Inc." },
- { 23239, "Aquest Systems, Incorporated" },
- { 23240, "the Centers" },
- { 23241, "Protection and Guard Service" },
- { 23242, "SDRC Inc." },
- { 23243, "Algorab SRL" },
- { 23244, "Improbable Universe" },
- { 23245, "Westdeutsche ImmobilienBank" },
- { 23246, "Harmonia Inc." },
- { 23247, "Wm-Data PARERE" },
- { 23248, "TRE-CE" },
- { 23249, "National Center for Biotechnology Information (NCBI)" },
- { 23250, "fgn GmbH" },
- { 23251, "Servicios Corporativos Gefe S.A. de C.V." },
- { 23252, "MYDOM" },
- { 23253, "Premier Image Corporation" },
- { 23254, "Leebel Services" },
- { 23255, "1D Solutions" },
- { 23256, "Wit-Sys Consulting Corporation" },
- { 23257, "OSIsoft, Inc." },
- { 23258, "SdO Information Technology s.r.l." },
- { 23259, "Stadt Frankfurt am Main" },
- { 23260, "Paradial AS" },
- { 23261, "Structured Information Management (SIM) Project" },
- { 23262, "Obiect Soft SRL" },
- { 23263, "EXCELIANCE" },
- { 23264, "Unicon Solutions NV" },
- { 23265, "Hedgehog Computer Services" },
- { 23266, "Frank Lowe Rubber & Gasket Co., Inc." },
- { 23267, "Certic\0302\0267mara S.A." },
- { 23268, "Sunwayworld Infomation Technology Inc." },
- { 23269, "NeoNova Network Services Inc." },
- { 23270, "AW Comp" },
- { 23271, "Protium Technologies, Inc." },
- { 23272, "Runcom Technologies Ltd." },
- { 23273, "Eletech S.r.l." },
- { 23274, "Mindsphere AS" },
- { 23275, "Pro Help" },
- { 23276, "Cooperativa dos Agricultores da Regiao de Orlandia" },
- { 23277, "ClusterVision BV" },
- { 23278, "Computer Royalties" },
- { 23279, "Picis, Inc." },
- { 23280, "DigitalFreaks.org" },
- { 23281, "Liaoning Mobile Communications CO.LTD" },
- { 23282, "iBright" },
- { 23283, "I/O Concepts, Inc." },
- { 23284, "Identify Technology Solutions" },
- { 23285, "STRATUM-IP" },
- { 23286, "Gottfried Hamm KommunikationsSysteme" },
- { 23287, "Joint Concepts Development" },
- { 23288, "Hands-On Security, Inc." },
- { 23289, "Dandy Connections, Inc." },
- { 23290, "Shaanxi Normal University" },
- { 23291, "SigValue Technologies" },
- { 23292, "Aternity Inc." },
- { 23293, "Zafin Labs" },
- { 23294, "GeFoekoM e.V." },
- { 23295, "Ingenium NET SRL" },
- { 23296, "Yawarra Information Appliances Pty Ltd" },
- { 23297, "schlittermann -- internet & unix support" },
- { 23298, "WestLotto GmbH & Co oHG" },
- { 23299, "LRF" },
- { 23300, "ABEM Instrument AB" },
- { 23301, "Datenverarbeitungszentrum Halle GmbH" },
- { 23302, "LINBIT Information Technologies GmbH" },
- { 23303, "Dot Communications" },
- { 23304, "Codan Limited" },
- { 23305, "Woojyun Systec" },
- { 23306, "BeiJing Techstar Ltd." },
- { 23307, "Machaira Enterprises Pty Ltd" },
- { 23308, "NATIONAL CENTER FOR HIGH-PERFORMANCE COMPUTING" },
- { 23309, "AR Infotek Inc." },
- { 23310, "OFiR a-s" },
- { 23311, "Macab AB" },
- { 23312, "IntelliCom Innovation AB" },
- { 23313, "Tesla a.s." },
- { 23314, "Plantron AB" },
- { 23315, "Boldon James Ltd" },
- { 23316, "Niedersaechische Forstliche Versuchsanstalt" },
- { 23317, "Heinrich Bauer Verlag KG" },
- { 23318, "Comune di Bologna" },
- { 23319, "SIRLAN Technologies SAS" },
- { 23320, "Orange Romania SA" },
- { 23321, "Frank Juedes EDV-Service" },
- { 23322, "Aircom International" },
- { 23323, "Cable & Wireless Telecommunication Services GmbH" },
- { 23324, "swarco" },
- { 23325, "KOTIO" },
- { 23326, "Association des dipl\0303\0264m\0303\0251s des formations Syst\0303\0250mes de " },
- { 23327, "VAD Video-Audio_Design GmbH" },
- { 23328, "quadraginta-duo.de" },
- { 23329, "McDaniel College" },
- { 23330, "CommScope Inc. of North Carolina" },
- { 23331, "Johnson Bible College" },
- { 23332, "ADCC Inc." },
- { 23333, "Computer Resource Team, Inc." },
- { 23334, "Gorman Electronics,Inc." },
- { 23335, "Hampton Roads Maritime Association" },
- { 23336, "VELUX A/S IT Department" },
- { 23337, "Cybertrust" },
- { 23338, "OpenS Tecnologia e Processamento de Dados Ltda." },
- { 23339, "JUNG Analog- und Digital-Systemtechnik GmbH" },
- { 23340, "Kedah Electronics Engineering" },
- { 23341, "Astute.BIZ, Inc." },
- { 23342, "Pathfinder Associates LLC" },
- { 23343, "Invensys/Wonderware" },
- { 23344, "AXS-One Inc." },
- { 23345, "System Control Networks" },
- { 23346, "Voya Financial (formerly 'CitiStreet, LLC')" },
- { 23347, "Infra Resource, LLC." },
- { 23348, "PC KNOW HOW CENTER Brachhold GmbH" },
- { 23349, "NTT GIN" },
- { 23350, "Vertasent, LLC" },
- { 23351, "Watertown Public Schools, Watertown, MA, USA" },
- { 23352, "Cognis Corporation" },
- { 23353, "Intelaware" },
- { 23354, "Niska AB" },
- { 23355, "Gosh Enterprises, Inc." },
- { 23356, "TRYSKEL" },
- { 23357, "TwentyFourNine (formerly 'oogyNetworks')" },
- { 23358, "Typhon SARL" },
- { 23359, "Hexod" },
- { 23360, "Pacific Union College" },
- { 23361, "TEConcept GmbH" },
- { 23362, "Leviton Mfg Co." },
- { 23363, "Sumach GB Ltd" },
- { 23364, "Bryn Mawr College" },
- { 23365, "Websense, Inc." },
- { 23366, "ValueClick, Inc." },
- { 23367, "Host Europe GmbH (formerly 'm networking')" },
- { 23368, "GHK Wireless" },
- { 23369, "Shawn Church, Information Systems Consultant" },
- { 23370, "Joel Davis" },
- { 23371, "BestInfo Cyber Technology Co.,Ltd" },
- { 23372, "Bloombase Technologies Ltd" },
- { 23373, "NEC Kansai, Ltd." },
- { 23374, "REDtone Telecommunications Sdn. Bhd." },
- { 23375, "Islandwide Express" },
- { 23376, "Hyundai Network System, Inc." },
- { 23377, "IT Solution Services Co.,Ltd." },
- { 23378, "T&C Technology" },
- { 23379, "HUK-COBURG VVaG" },
- { 23380, "Datadec Online, S.A." },
- { 23381, "Die GRUENEN" },
- { 23382, "Swissphone Telecom AG" },
- { 23383, "Azienda Sanitaria Locale N.4 Chiavarese" },
- { 23384, "Aptus Elektronik AB" },
- { 23385, "GESIS Gesellschaft f\0303\0274r Informationssysteme mit beschraenkter Haftung (formerly 'GESIS mbH')" },
- { 23386, "Pole Universitaire Leonard de Vinci" },
- { 23387, "iXTS Software GmbH" },
- { 23388, "Hypercube Systems Ltd." },
- { 23389, "IZB M\0303\0274nchen-Frankfurt a. M. GmbH & Co. KG" },
- { 23390, "easyWAN GmbH" },
- { 23391, "Atomwide Ltd." },
- { 23392, "Insightix Ltd." },
- { 23393, "LLC CTI - Center of Telephony Integration" },
- { 23394, "Groupe Wesford" },
- { 23395, "Trustedtec" },
- { 23396, "Neighbourhood Link" },
- { 23397, "Fine Point Technologies, Inc" },
- { 23398, "MTS Allstream Inc." },
- { 23399, "The National Science Foundation" },
- { 23400, "Midcontinent Communications" },
- { 23401, "Sliwa.EU.org Network" },
- { 23402, "Interstar Technologies Inc." },
- { 23403, "Sharp HealthCare" },
- { 23404, "DAVANTEL" },
- { 23405, "JSC Sahalinmorsvjaz" },
- { 23406, "LDAPtive Pty Ltd" },
- { 23407, "Bryant Unlimited" },
- { 23408, "Rhombus Systems Ltd." },
- { 23409, "Torque.net inc." },
- { 23410, "Hackstrike Ltd." },
- { 23411, "ServInfo" },
- { 23412, "Arcontech Ltd" },
- { 23413, "Melange Corporation" },
- { 23414, "Ilmarinen Mutual Pension Insurance Company" },
- { 23415, "nordsys.com" },
- { 23416, "MIT-xperts GmbH" },
- { 23417, "COPITEC - Consejo Profesional de Ingenier\0303\0255a de Telecomunicaciones," },
- { 23418, "Gridlogix, Inc." },
- { 23419, "Talk24" },
- { 23420, "APS systems AG" },
- { 23421, "Altana Pharma AG" },
- { 23422, "Instituto Superior de Contailidade e Administracao de Coimbra" },
- { 23423, "Osmosys S.A." },
- { 23424, "Maximum Impression, LLC" },
- { 23425, "QS Technologies, Inc." },
- { 23426, "Louverturenet" },
- { 23427, "The Home Depot Supply MRO" },
- { 23428, "NOC, School of Engineering, Morgan State University" },
- { 23429, "Eurocis" },
- { 23430, "Lumigent Technologies, Inc." },
- { 23431, "CAMed" },
- { 23432, "Packet Island Inc." },
- { 23433, "BGComp Inc." },
- { 23434, "Georgia Technology Authority" },
- { 23435, "Rock Holdings Inc." },
- { 23436, "Mexicana de Electromecanicos SA de CV" },
- { 23437, "Don Bosco Institute of Technology" },
- { 23438, "Beijing Wandong Medical Equipment Co. Ltd." },
- { 23439, "HurdFr" },
- { 23440, "Avvenu Inc." },
- { 23441, "R.A.Systems" },
- { 23442, "RockMon IT-Consulting" },
- { 23443, "miniprobe" },
- { 23444, "LATECOERE" },
- { 23445, "Jordan Curzon" },
- { 23446, "H5-Group" },
- { 23447, "Opsware Inc." },
- { 23448, "Avitech AG" },
- { 23449, "Tripod Technology Group, Inc." },
- { 23450, "W. A. Strosberg" },
- { 23451, "Wallenius Wilhelmsen Lines" },
- { 23452, "SunGard Availability Services" },
- { 23453, "KungFoo" },
- { 23454, "Belzebyte Network" },
- { 23455, "Exceptional Software Strategies, Inc." },
- { 23456, "NetCarrier Inc" },
- { 23457, "AMVESCAP PLC" },
- { 23458, "National Cybernet Security LTD" },
- { 23459, "Chunghwa Telecom Co., Ltd." },
- { 23460, "Profilium Inc." },
- { 23461, "In4S, Inc." },
- { 23462, "Unixconn" },
- { 23463, "Kolporter Info S.A." },
- { 23464, "Department of IT, University of Defense, Czech Armed Forces" },
- { 23465, "VIVOTEK INC." },
- { 23466, "Vision Fire and Security" },
- { 23467, "Shanghai INFOPLS Network Technology Co.,Ltd. , China" },
- { 23468, "NGC Systems Sdn Bhd" },
- { 23469, "opensoul.org" },
- { 23470, "LOGATIQUE" },
- { 23471, "Digita Oy" },
- { 23472, "mangoART.AT - Web- und Multimediatechnik, Softwareentwicklung" },
- { 23473, "Panda Software International S.L." },
- { 23474, "EITB" },
- { 23475, "Softel Group" },
- { 23476, "British Educational Communications and Technology Agency" },
- { 23477, "DABiS AG" },
- { 23478, "Provincia di Firenze" },
- { 23479, "Sulake Corporation Oy" },
- { 23480, "Degussa Bank GmbH" },
- { 23481, "Infoaxis Ltd" },
- { 23482, "Altobridge Ltd." },
- { 23483, "University of North Carolina Asheville" },
- { 23484, "C .D.H. srl" },
- { 23485, "AusCERT - Australian Computer Emergency Response Team" },
- { 23486, "NetCentrum Ltd." },
- { 23487, "Daxten Ltd" },
- { 23488, "Technica Corporation" },
- { 23489, "Visplex Association" },
- { 23490, "ENIDAN Technologies GmbH" },
- { 23491, "CyberTech B.V." },
- { 23492, "LightCore Co., Ltd." },
- { 23493, "Aminfu Hudima" },
- { 23494, "Mint Systems Ltd." },
- { 23495, "IT-Pro Peter Lechner" },
- { 23496, "Boursorama" },
- { 23497, "Lswei" },
- { 23498, "Shanghai Asia-Pacific Computer Information System Co, Ltd." },
- { 23499, "Siemens Programm- und Systementwicklung GmbH & Co. KG" },
- { 23500, "Articy Computer System & Service" },
- { 23501, "SailBum Enterprises, LLC" },
- { 23502, "Renew Data Corp" },
- { 23503, "Arizona Foundation for Medical Care" },
- { 23504, "TWENTIETH CENTURY FOX FILM CORPORATION" },
- { 23505, "Programming/Design" },
- { 23506, "Pleiades Consulting, Inc" },
- { 23507, "salesforce.com" },
- { 23508, "EVI" },
- { 23509, "BVCompuworks" },
- { 23510, "Centro Cultural y Deportivo Tajamar" },
- { 23511, "TELUS" },
- { 23512, "Copi Family" },
- { 23513, "Westline Security Ltd." },
- { 23514, "Michaels Stores Inc." },
- { 23515, "TEKMOB, lda" },
- { 23516, "CitiCards" },
- { 23517, "Leviton Voice And Data" },
- { 23518, "Tomas Zoufaly" },
- { 23519, "Regal-Beloit Corporation" },
- { 23520, "Unassigned" },
- { 23521, "Amherst County Public Schools" },
- { 23522, "Volicon, Inc." },
- { 23523, "MT Consulting S.A." },
- { 23524, "Weberhofer GmbH" },
- { 23525, "Aleksey Barabanov" },
- { 23526, "Auster Sistemas & Solu\0303\0247\0303\0265es de Inform\0303\0241tica Ltda." },
- { 23527, "NewPage Corporation" },
- { 23528, "The Laddie Group" },
- { 23529, "APP!X S.R.L." },
- { 23530, "State of Alaska, Enterprise Technology Services" },
- { 23531, "Practeo SA" },
- { 23532, "PLAN Australia Pty Ltd" },
- { 23533, "PJR.cc" },
- { 23534, "Supertronic Spa" },
- { 23535, "Holly Australia Pty Ltd" },
- { 23536, "eNClue Co., Ltd." },
- { 23537, "Shanghai Dreaming Information Technology Co., Ltd." },
- { 23538, "Jenston Technology Corporation Ltd." },
- { 23539, "teamdzr" },
- { 23540, "Cordys Holding B.V." },
- { 23541, "Emcore Corporation" },
- { 23542, "CryptoSign" },
- { 23543, "iCONN" },
- { 23544, "Allen ReSearch" },
- { 23545, "West Ridge Networks, Inc." },
- { 23546, "Wagner and Associates Groupware Services, Inc" },
- { 23547, "IFSERCON COM s.r.l." },
- { 23548, "Elber S.r.L." },
- { 23549, "Toyo Networks & System Integration Co., Ltd." },
- { 23550, "e-World Developments Ltd" },
- { 23551, "ErgonomiX Software GmbH" },
- { 23552, "JPS Communications" },
- { 23553, "Discover Financial Services, Inc." },
- { 23554, "PEMI" },
- { 23555, "contentteam GmbH" },
- { 23556, "Centre de Gestion Ocean" },
- { 23557, "EEA communication solutions" },
- { 23558, "IPsoft Inc." },
- { 23559, "United Information System Service Co., Ltd." },
- { 23560, "edreams" },
- { 23561, "Anite Deutschland GmbH & CO.KG" },
- { 23562, "Smartware Computing" },
- { 23563, "DUX Inc." },
- { 23564, "Schmidt GmbH" },
- { 23565, "Panta Computer Systems" },
- { 23566, "Infohit Computers d.o.o." },
- { 23567, "Georg-Christoph-Lichtenberg-Schule, Kassel" },
- { 23568, "Noel-Plus, s.r.o." },
- { 23569, "TeamWorx Productions Ltd." },
- { 23570, "Soliton" },
- { 23571, "IPBS-CNRS" },
- { 23572, "WebMagician Global" },
- { 23573, "Kids & Co g.e.V." },
- { 23574, "TU Hamburg-Harburg" },
- { 23575, "Wayfinder Systems AB" },
- { 23576, "ADVIS Maciej Matysiak" },
- { 23577, "Enfo Partner Oy" },
- { 23578, "MSC Vertriebs GmbH (formerly 'Smart Network Devices GmbH')" },
- { 23579, "Centrica plc" },
- { 23580, "Andritz Oy" },
- { 23581, "Hacousto Holland" },
- { 23582, "ESEO" },
- { 23583, "APOS Systems Inc." },
- { 23584, "Logical Progression Ltd" },
- { 23585, "Bank Technologies Centre" },
- { 23586, "Ralf Kirchner Systemanalyse" },
- { 23587, "PROFIcomms s.r.o." },
- { 23588, "FOI, Swedish Defence Research Agency" },
- { 23589, "Max Zinal's Number" },
- { 23590, "F.I.A.S.A." },
- { 23591, "CCNY" },
- { 23592, "Iowa Counties Information Technology" },
- { 23593, "Dipl.-Ing. Heiko Boesel" },
- { 23594, "EBI L.P." },
- { 23595, "Virginia Employment Commission" },
- { 23596, "pikkerton GmbH" },
- { 23597, "Esica Terra Inc." },
- { 23598, "UX" },
- { 23599, "Studio Network Solutions" },
- { 23600, "Transora" },
- { 23601, "Emcom Systems" },
- { 23602, "Fulano.com.br S/A" },
- { 23603, "Optellios" },
- { 23604, "GoldPocket Interactive, Inc." },
- { 23605, "Applications Plus, Inc." },
- { 23606, "DigiPen Institute of Technology" },
- { 23607, "M\0303\0251lix" },
- { 23608, "Paul's Farm" },
- { 23609, "Ix Appliance, Inc." },
- { 23610, "WDG s.c." },
- { 23611, "nLight, s.r.o." },
- { 23612, "Atlassian Software Systems" },
- { 23613, "JAPAN IMAGE & NETWORK INC." },
- { 23614, "A. Wilton" },
- { 23615, "HiFX IT & MEDIA SERVICES PVT. LTD." },
- { 23616, "SYNCHROSOFT" },
- { 23617, "Deutsches Literaturarchiv Marbach" },
- { 23618, "Saima Avandero Spa" },
- { 23619, "SERGAS" },
- { 23620, "Teltronix Ltd" },
- { 23621, "Bechtel SAIC Company LLC" },
- { 23622, "European Patent Office" },
- { 23623, "Icon Multimedia" },
- { 23624, "Prvn\0303\0255 certifika\0303\0250n\0303\0255 autorita, a.s." },
- { 23625, "Intechgral Inc." },
- { 23626, "Poggs Computer Services" },
- { 23627, "Interlix" },
- { 23628, "California State University Dominguez Hills" },
- { 23629, "SafeNet, Inc. (formerly 'Mykotronx, Inc.')" },
- { 23630, "Computer Aid, Inc." },
- { 23631, "Azalea Networks, Inc." },
- { 23632, "Sneha Technologies S.L." },
- { 23633, "ipsys Communications AG" },
- { 23634, "TC Automatisering" },
- { 23635, "colin.de" },
- { 23636, "Lycee Ader Bernay" },
- { 23637, "Novartis Institutes og BioMedical Research Vienna GmbH & Co KG" },
- { 23638, "Logilec" },
- { 23639, "ParsGroup Informationstechnologie GmbH" },
- { 23640, "Enercon Ltd." },
- { 23641, "Cascade Ltd" },
- { 23642, "Tmidia Inc." },
- { 23643, "bsecure.dk" },
- { 23644, "Siemens Ltd., China" },
- { 23645, "DAF Trucks" },
- { 23646, "Cell C (Pty) Ltd" },
- { 23647, "SARL GALLET.info" },
- { 23648, "ESV, LLC" },
- { 23649, "Cornerturn, LLC" },
- { 23650, "Opendicom" },
- { 23651, "Integrated Decisions and system Inc." },
- { 23652, "Lewes Computer Services" },
- { 23653, "Cirrus Technologies Pty Ltd" },
- { 23654, "AICHI ELECTRIC CO., LTD." },
- { 23655, "CallDesk S.A." },
- { 23656, "Cult Hill Innovation Limited" },
- { 23657, "TEDIS, a.s." },
- { 23658, "TUBITAK ULAKBIM" },
- { 23659, "lars morich Kommunikationstechnik GmbH" },
- { 23660, "DRS Technologies, Inc, C2 Systems" },
- { 23661, "American TeleCare, Inc." },
- { 23662, "Blue Jungle, Inc" },
- { 23663, "Storied Future Infrastructure" },
- { 23664, "Federal Deposit Insurance Corporation" },
- { 23665, "wiselink" },
- { 23666, "BeaufortWeb" },
- { 23667, "FredNet" },
- { 23668, "Kaspersky Lab ZAO" },
- { 23669, "Kyphon Europe" },
- { 23670, "Nihon Kohden Corporation" },
- { 23671, "CIS Hollywood" },
- { 23672, "nTime Servicos de Informatica e Comercio Ltda" },
- { 23673, "Bluesoft sp z o.o." },
- { 23674, "Edu Business Solutions" },
- { 23675, "Foray Technologies Inc." },
- { 23676, "G&K Services inc." },
- { 23677, "Colonial Fiji" },
- { 23678, "PCTEL, Inc." },
- { 23679, "Diligence Consulting, L.L.C." },
- { 23680, "Eclipse SP LLC." },
- { 23681, "terreActive AG" },
- { 23682, "emuse Technologies Ltd." },
- { 23683, "EDV-COMPAS GmbH" },
- { 23684, "Sensitech Inc." },
- { 23685, "Godsk.net" },
- { 23686, "Softential, Inc." },
- { 23687, "Pobeda JSC" },
- { 23688, "Summit Development, Ltd" },
- { 23689, "Pervenio Ltd" },
- { 23690, "Abstract Ltd." },
- { 23691, "VIA" },
- { 23692, "IDactis" },
- { 23693, "Networks & Concepts GmbH" },
- { 23694, "PMX NETWORKS, INC" },
- { 23695, "PePLink Ltd." },
- { 23696, "Nilai International College" },
- { 23697, "hoi-polloi.org (formerly 'aspector GmbH')" },
- { 23698, "RELDATA Inc." },
- { 23699, "Zyden Software" },
- { 23700, "Internews 98 Ltd." },
- { 23701, "Cannon Technologies Ltd" },
- { 23702, "SHD Holding GmbH" },
- { 23703, "Agile Software (NZ) Ltd" },
- { 23704, "Calypso Capital Management" },
- { 23705, "Salient Corporation, Inc" },
- { 23706, "GlobalPOPs" },
- { 23707, "LAFARGE ALUMINATES" },
- { 23708, "HYMATOM SA" },
- { 23709, "Miltope Corporation" },
- { 23710, "Agincourt Computing" },
- { 23711, "Seventh Skill Ltd" },
- { 23712, "Minnesota Office of Enterprise Technology" },
- { 23713, "Keating Inc" },
- { 23714, "Data Systems S.A.E.C.A." },
- { 23715, "Live Monitoring Pty Ld (formerly 'Produ-Tech Monitoring Pty Ld')" },
- { 23716, "United States Council for Automotive Research" },
- { 23717, "Siricomm, Inc." },
- { 23718, "Esensors, Inc." },
- { 23719, "Arishi" },
- { 23720, "Netifice Communications, Inc." },
- { 23721, "The Ideal Computer Group Inc." },
- { 23722, "CS-Soft, s.r.o" },
- { 23723, "Great Power Electrin Science and Technology stock CO.LTD" },
- { 23724, "Udo Neumann" },
- { 23725, "Theserver Brasil / Multidiagnostica IT Team" },
- { 23726, "VOTORANTIM INVESTIMENTOS INDUSTRIAIS S.A." },
- { 23727, "Marlin Trust Management Organization L.L.C" },
- { 23728, "Versio SARL" },
- { 23729, "DiVitas Networks" },
- { 23730, "OVEA" },
- { 23731, "Telestar" },
- { 23732, "ShijiaZhuang Railway Institute" },
- { 23733, "JGC Corporation" },
- { 23734, "OEBB" },
- { 23735, "Fondation RESTENA" },
- { 23736, "IceWarp Ltd." },
- { 23737, "Hochschule Ulm" },
- { 23738, "AWR Solution Network" },
- { 23739, "HUG" },
- { 23740, "SynerGIS Informationssysteme GmbH" },
- { 23741, "Wogri Unlimited" },
- { 23742, "CONNOTECH Experts-conseils inc." },
- { 23743, "Kerridge Computer Company Ltd" },
- { 23744, "BITMARCK SOFTWARE GMBH (formerly 'Arbeitsgemeinschaft Informationssysteme in der gesetzlichen Krankenversicherung (ISKV)')" },
- { 23745, "Black Hen Limited" },
- { 23746, "Administration communale de Braine-l'Alleud" },
- { 23747, "Areste Centre Informatique" },
- { 23748, "Edinform S.p.A" },
- { 23749, "Federal State Unitary Enterprise Leningrad Radio Research and " },
- { 23750, "new10 GmbH" },
- { 23751, "PT. TRG international" },
- { 23752, "ExcellNet IT Services and Consulting" },
- { 23753, "Infinit Productions" },
- { 23754, "Mairie de Savigny-Sur-Orge" },
- { 23755, "Softrax Corporation" },
- { 23756, "Promotora de Informaciones, S.A." },
- { 23757, "AR Telecom" },
- { 23758, "Desert Cascade" },
- { 23759, "Szolnok V\0303\0241ros Polg\0303\0241rmesteri Hivatal" },
- { 23760, "LayerZero Power Systems, Inc." },
- { 23761, "CMSL" },
- { 23762, "Time-Ware" },
- { 23763, "Rent a PACS GmbH" },
- { 23764, "Atamo Pty Ltd" },
- { 23765, "GetNet Comunicacoes S/C LTDA" },
- { 23766, "TriGeo Network Security, Inc." },
- { 23767, "Rensselaer Hartford Graduate Center, Inc" },
- { 23768, "Integrated Management Resources, Inc." },
- { 23769, "Infinity Technology, Inc." },
- { 23770, "Andreoli Domenico" },
- { 23771, "Marakana, Inc." },
- { 23772, "RoutePulse Technologies" },
- { 23773, "Starfire Engineering & Technologies, Inc." },
- { 23774, "jNetX Inc." },
- { 23775, "Outer TI" },
- { 23776, "RougeNetwork" },
- { 23777, "Elektrarny Opatovice a.s." },
- { 23778, "BEZ Systems, Inc." },
- { 23779, "Asklepios Group" },
- { 23780, "Prose Consulting Ltd. (formerly 'Freedomware UK')" },
- { 23781, "Albertslund Ungdomsboliger" },
- { 23782, "ASN" },
- { 23783, "iTellus Holdings, Inc. (formerly 'Tellurian Networks, Inc.')" },
- { 23784, "StrataLight Communications" },
- { 23785, "CIC/CAFMICRO" },
- { 23786, "DS DATA SYSTEMS GmbH" },
- { 23787, "gnyrf.net" },
- { 23788, "Matt Wright Consulting" },
- { 23789, "GrammaTech, Inc." },
- { 23790, "Pearce Bevill Leesburg & Moore, P.C." },
- { 23791, "Adaptix" },
- { 23792, "Axell Wireless Israel Ltd (formerly 'Dekolink Wireless Ltd')" },
- { 23793, "Cluster Resources" },
- { 23794, "Significant Bits" },
- { 23795, "Movile (formerly 'Yavox Latin America')" },
- { 23796, "SunWare GmbH & Co KG" },
- { 23797, "KSIGN Co., Ltd." },
- { 23798, "Australia Post" },
- { 23799, "icon Systemhaus GmbH" },
- { 23800, "Roca Corporaci\0303\0263n Empresarial, S.A" },
- { 23801, "Metrima Energi AB" },
- { 23802, "Dekabank" },
- { 23803, "Ecole Polytechnique" },
- { 23804, "Rena Electronica B.V." },
- { 23805, "International Industrial Bank" },
- { 23806, "Touch Clarity Ltd." },
- { 23807, "UIB Umwelt Informatik B\0303\0274ro GmbH" },
- { 23808, "CCM Software Services Ltd." },
- { 23809, "Bridicum Security Group A/S" },
- { 23810, "Rothschild Bank AG" },
- { 23811, "Qbizm technologies, a.s." },
- { 23812, "INL SARL" },
- { 23813, "Cendant TDS" },
- { 23814, "ID-Tech Servicos em Informatica Ltda." },
- { 23815, "Waterbury Republican American" },
- { 23816, "SlipStream Data Inc." },
- { 23817, "Ministerio de Econom\0303\0255a, Rep\0303\0272blica Argentina" },
- { 23818, "FirstEnergy Corp." },
- { 23819, "Epoch Integration Inc." },
- { 23820, "Lateral Net Ltd." },
- { 23821, "Irish Centre for High End Computing" },
- { 23822, "MITSUI HOME CO.,LTD." },
- { 23823, "Wise Technology Co.,Ltd." },
- { 23824, "LAC Co., Ltd." },
- { 23825, "EZconn Corporation" },
- { 23826, "HiSpeed Data, Inc." },
- { 23827, "GHY International" },
- { 23828, "MKI Systems" },
- { 23829, "W&W Informatik GmbH" },
- { 23830, "Blekinge Studentservice AB" },
- { 23831, "Teneros, Inc." },
- { 23832, "Aitec do Brasil Ltda" },
- { 23833, "DentaQuest Ventures, Inc." },
- { 23834, "Fachhochschule Salzburg GmbH" },
- { 23835, "emFAST Inc" },
- { 23836, "DS4 Laser Technology s.r.l." },
- { 23837, "Jefferson County School District" },
- { 23838, "BIATEL Systemy Komputerowe Sp. z oo." },
- { 23839, "GROX Networks" },
- { 23840, "School District #57 (Prince George)" },
- { 23841, "RAD-OP" },
- { 23842, "Kuban Pharm Stocks, Ltd." },
- { 23843, "Departamento de Ci\0303\0252ncia da Computa\0303\0247\0303\0243o/Universidade Federal da" },
- { 23844, "Constellation Brands, Inc." },
- { 23845, "Schowalter, GbR" },
- { 23846, "Endress+Hauser InfoServe GmbH+Co. KG" },
- { 23847, "Elogic snc di Antonini Filippo" },
- { 23848, "Middle Kingdom - SCA, Inc." },
- { 23849, "PACSGEAR, Inc." },
- { 23850, "Zyberit AB" },
- { 23851, "CCI Consulting Ltd." },
- { 23852, "Seeing Machines Pty Ltd" },
- { 23853, "eThinkSolutions,Inc." },
- { 23854, "Shipbuilding SS" },
- { 23855, "Bullant Software" },
- { 23856, "Imtec Imaging, LLC" },
- { 23857, "NextIO, Inc" },
- { 23858, "VadaTech Inc." },
- { 23859, "Puntoblu Srl" },
- { 23860, "Schubert-Unternehmensgruppe" },
- { 23861, "redweb.cz" },
- { 23862, "AimValley B.V." },
- { 23863, "Fort Hays State University" },
- { 23864, "Cascadia Information Technologies, Inc." },
- { 23865, "Synapps" },
- { 23866, "Starnix Care Inc." },
- { 23867, "Silver Peak Systems, Inc." },
- { 23868, "sis-tec" },
- { 23869, "HIOKI E.E.Corporation" },
- { 23870, "EMSTONE Co." },
- { 23871, "Qno Technology Inc." },
- { 23872, "Rikom d.o.o." },
- { 23873, "MKC Michels & Kleberhoff Computer GmbH" },
- { 23874, "ACLI Associazioni Cristiane dei Lavoratori Italiani" },
- { 23875, "Gymnasium M\0303\0274nchenstein" },
- { 23876, "PIXID SNC" },
- { 23877, "Grid Operation Center, Aristotle University of Thessaloniki," },
- { 23878, "Stanton Grove Ltd" },
- { 23879, "SAG Systemhaus GmbH AMS" },
- { 23880, "Motionpath Digital Media Ltd" },
- { 23881, "Avanton Inc." },
- { 23882, "Investidor Profissional Gest\0303\0243o de Recursos Ltda" },
- { 23883, "Fresenius Medical Care North America" },
- { 23884, "Fotofuxx" },
- { 23885, "Continental City Networks Ltd" },
- { 23886, "Hay Group, Inc." },
- { 23887, "Kawashima Labo Inc." },
- { 23888, "Tymar Systems Development" },
- { 23889, "Daco System Elaborazione Dati S.r.l." },
- { 23890, "HCL Peripherals" },
- { 23891, "ErgoGroup" },
- { 23892, "Milpower Source" },
- { 23893, "Klir Technologies, Inc." },
- { 23894, "Northshore School District" },
- { 23895, "EvilGenius Networks" },
- { 23896, "Netus Vaizovic k.d." },
- { 23897, "Trigger Software" },
- { 23898, "Tesseract Corporation" },
- { 23899, "SineRay Consulting Co.,Ltd" },
- { 23900, "Progetti Ambientali Integrati s.a.s." },
- { 23901, "Digigram" },
- { 23902, "ABB STOTZ-KONTAKT GmbH" },
- { 23903, "Cargol.net Solucions Lliures S.L.L." },
- { 23904, "The Nielsen Company (formerly 'Arbitron Inc.')" },
- { 23905, "VOCAL Technologies, Ltd." },
- { 23906, "Axalto Inc." },
- { 23907, "Advantage Security, S. de R.L. de C.V." },
- { 23908, "InfoEng Organization" },
- { 23909, "Bel Ami Reisen" },
- { 23910, "iPoint-media LTD." },
- { 23911, "Aurus" },
- { 23912, "Q-go" },
- { 23913, "Belle Bonfils Memorial Blood Center" },
- { 23914, "pedro armelim unipessoal lda." },
- { 23915, "SuperGeo Tech. Inc." },
- { 23916, "Appear TV AS" },
- { 23917, "Under Dusken" },
- { 23918, "JPBerlin" },
- { 23919, "Corporaci\0303\0263n Tedexis C.A." },
- { 23920, "Zoic Studios" },
- { 23921, "ISSP Internet-Solutions Szongott & Pertl OEG" },
- { 23922, "Milstein & Asoociates Inc." },
- { 23923, "Hobnob" },
- { 23924, "readshaw.com" },
- { 23925, "Cacti" },
- { 23926, "Golf-Leagues.com" },
- { 23927, "Ukrainian Catholic University" },
- { 23928, "MVV Energie AG" },
- { 23929, "entire technologies gmbh" },
- { 23930, "Inferno Enterprises" },
- { 23931, "Goodrich Corporation" },
- { 23932, "TLD Solutions Ltd" },
- { 23933, "CaveraSystems" },
- { 23934, "April Nine Inc." },
- { 23935, "Architects of VoIP GmbH" },
- { 23936, "china group zhejiang telecom corporation" },
- { 23937, "ExtricomLtd" },
- { 23938, "ANEDER BT" },
- { 23939, "Avokia Inc." },
- { 23940, "Sysco S.p.A." },
- { 23941, "Opentaskforce" },
- { 23942, "Intelligent Mobile Solutions, Inc." },
- { 23943, "Cendres & M\0303\0251taux SA" },
- { 23944, "DENIC eG" },
- { 23945, "Institute of Journalism, University Dortmund" },
- { 23946, "MINISTERO DELL'INTERNO - DIREZIONE CENTRALE POLIZIA CRIMINALE" },
- { 23947, "Innovene LLC" },
- { 23948, "Confernet Produtos e Servicos Ltd." },
- { 23949, "Swyx Solutions GmbH" },
- { 23950, "Print Associates A/S" },
- { 23951, "ExaProtect Technology" },
- { 23952, "TJ COLLECTION Co Ltd" },
- { 23953, "Australian Partnership for Advanced Computing" },
- { 23954, "TriNix AB" },
- { 23955, "PUCCAMP - Pontificia Universidade Cat\0303\0263lica de Campinas" },
- { 23956, "PCL Constructors Inc." },
- { 23957, "Spacelabs Medical Data" },
- { 23958, "310, JSC" },
- { 23959, "micneu" },
- { 23960, "Acquist Incorporated" },
- { 23961, "CertiMail" },
- { 23962, "Saisung Corporation Ltd." },
- { 23963, "Safe Host" },
- { 23964, "T-Mobile Austria" },
- { 23965, "Detecon International GmbH" },
- { 23966, "Leiner & Wolff GbR" },
- { 23967, "Tallence AG" },
- { 23968, "Netvoyager PLC" },
- { 23969, "arvato mobile" },
- { 23970, "Hamburg S\0303\0274damerikanische Dampfschifffahrts-Gesellschaft KG" },
- { 23971, "Menzebach und Wolff IT-Consulting GbR" },
- { 23972, "Fidelity MLS Systems and Solutions" },
- { 23973, "Still Tripping Productions." },
- { 23974, "General Dynamics Robotic Systems" },
- { 23975, "et al Innovations Ltd" },
- { 23976, "Zebanon Inc." },
- { 23977, "My Computer Person" },
- { 23978, "Sadel S.p.a." },
- { 23979, "Knoways s.r.l." },
- { 23980, "STS GmbH & Co. OHG" },
- { 23981, "MWS" },
- { 23982, "tty1.net" },
- { 23983, "Hampshire Constabulary" },
- { 23984, "RyCo Electronic Systems Limited" },
- { 23985, "S.O.Ge.S.A. s.a.s. di Ugo Grassi & C." },
- { 23986, "ENENSYS Technologies SAS" },
- { 23987, "Autoridad Portuaria de Barcelona" },
- { 23988, "Elink GmbH" },
- { 23989, "Cablefree Solutions Limited" },
- { 23990, "Shifa International Hospitals" },
- { 23991, "Planeetta Internet Oy" },
- { 23992, "Social Science Computing Cooperative" },
- { 23993, "Linear Technology Corporation" },
- { 23994, "OpenDarwin Project" },
- { 23995, "Eightball Productions" },
- { 23996, "Fuego Inc." },
- { 23997, "Florida Department of State" },
- { 23998, "RUF Telematik AG" },
- { 23999, "FTI Consulting, Inc" },
- { 24000, "ABN AMRO Bank Services" },
- { 24001, "Fiege Logistik (Schweiz) AG" },
- { 24002, "Ingenieria Diez Cisneros, S.A." },
- { 24003, "Cellcom" },
- { 24004, "Onus Petro Services" },
- { 24005, "Alexa Internet, Inc." },
- { 24006, "Weidlinger Associates Inc." },
- { 24007, "Globat.com" },
- { 24008, "Great Bay Software" },
- { 24009, "NextHop Technologies, Inc." },
- { 24010, "ELESIGN" },
- { 24011, "Newtech.Co.,Ltd." },
- { 24012, "eASPNet Taiwan Inc." },
- { 24013, "RTX Telecom A/S" },
- { 24014, "Landesversicherungsanstalt Rheinprovinz" },
- { 24015, "CODAFIX SYSTEM" },
- { 24016, "Bionix AB" },
- { 24017, "teegee" },
- { 24018, "Frederikshavn Gymnasium og HF-kursus" },
- { 24019, "CertiPath, LLC" },
- { 24020, "Metagistics" },
- { 24021, "13 Spiders Ltd" },
- { 24022, "Optelian Access Networks Corp." },
- { 24023, "IEA Software, Inc." },
- { 24024, "Tecsidel, S.A." },
- { 24025, "MVP Software, Inc." },
- { 24026, "Cube Route" },
- { 24027, "Dexa Medica Group" },
- { 24028, "Bayerwald Fenster Haustueren GmbH & Co. KG" },
- { 24029, "HEYFRA electronic GmbH" },
- { 24030, "CenterTools Software GmbH" },
- { 24031, "Nomus Comm-Systems" },
- { 24032, "dmstools AG" },
- { 24033, "Peerex Ltd" },
- { 24034, "The Royal Botanic Gardens, Kew" },
- { 24035, "AFIP" },
- { 24036, "howard.org" },
- { 24037, "Revolt Ltd." },
- { 24038, "VistaPrint USA Inc." },
- { 24039, "Lutz Badenheuer" },
- { 24040, "BARREL Investment Company Ltd." },
- { 24041, "M7 Software BV" },
- { 24042, "AMS 1769 Ltd" },
- { 24043, "Tanel Unt" },
- { 24044, "Cthulhu Inc." },
- { 24045, "Dwerryhouse IT Consulting" },
- { 24046, "TMSw Corp." },
- { 24047, "Netfabric Corporation" },
- { 24048, "United Devices" },
- { 24049, "eApps" },
- { 24050, "Orion Systems International" },
- { 24051, "Seneca Software & Solar, Inc." },
- { 24052, "Wedo Consulting" },
- { 24053, "Xspedius Communications" },
- { 24054, "NextNine Ltd." },
- { 24055, "Govolution, Inc." },
- { 24056, "JDI ICT" },
- { 24057, "Robert D. Allen" },
- { 24058, "AltCall Pty Ltd" },
- { 24059, "Zuzax LLC" },
- { 24060, "icube" },
- { 24061, "Amtium Computer Network Communiction Tech. CO,LTD\0302\0243\0302\0273" },
- { 24062, "Korenix Technology Co., Ltd." },
- { 24063, "Call Direct Cellular Solutions Pty. Ltd" },
- { 24064, "Florian Hagedorn IT-Services" },
- { 24065, "TelcoSI" },
- { 24066, "Beijing WaterTek Information Technology Co.,Ltd." },
- { 24067, "Webraska do Brasil" },
- { 24068, "Tier-3 Pty Ltd." },
- { 24069, "IP Systems Pty Ltd" },
- { 24070, "AMANO Corporation" },
- { 24071, "Zenitel Radioteknik" },
- { 24072, "Code Mercenaries Hard- und Software GmbH" },
- { 24073, "Abeo AS" },
- { 24074, "ASI Controls" },
- { 24075, "ELIA N.V. / S.A." },
- { 24076, "National Institute for Public Health and the Environment" },
- { 24077, "Zeus Gesellschaft fuer Integration und Kommunikation GmbH" },
- { 24078, "ISVA-Project Team (EADS-ISR, FHG-IITB, FGAN-FOM, FGAN-FKIE)" },
- { 24079, "Cacanska banka a.d. Cacak" },
- { 24080, "key-stone BV" },
- { 24081, "Paxfire Inc" },
- { 24082, "GTL Limited" },
- { 24083, "Securitect" },
- { 24084, "Managed Network Solutions, Inc." },
- { 24085, "Fitre S.p.A." },
- { 24086, "Medizinische Hochschule Hannover" },
- { 24087, "International Grid Trust Federation" },
- { 24088, "Diamelle inc" },
- { 24089, "Lexbox" },
- { 24090, "Central Library, Aristotle University of Thessaloniki" },
- { 24091, "SEW-EURODRIVE GmbH & Co KG" },
- { 24092, "I-Way Computers bvba" },
- { 24093, "JSC Format Link" },
- { 24094, "UniBwM" },
- { 24095, "MioSoft Corporation" },
- { 24096, "University of Douala" },
- { 24097, "Thoralf Linss" },
- { 24098, "Southwest Youth Collaborative" },
- { 24099, "Hosanna Christian Academy" },
- { 24100, "LogiSoft AR Ltd, Inc." },
- { 24101, "Banyan Tree Hotels & Resorts Pte Ltd" },
- { 24102, "Aeris Enterprises Inc." },
- { 24103, "DIR Wieslawa Rozynek" },
- { 24104, "Lennar Corporation" },
- { 24105, "di-Cross" },
- { 24106, "Damovo do Brasil S/A" },
- { 24107, "xkoto Inc." },
- { 24108, "UAB \"Eltera\"" },
- { 24109, "AtcaNet" },
- { 24110, "Vigilix. LLC" },
- { 24111, "Optivus Technology, Inc." },
- { 24112, "Shorter College" },
- { 24113, "Netzbiotop Dresden e.V." },
- { 24114, "City of Tulsa" },
- { 24115, "Ginix" },
- { 24116, "68k.se" },
- { 24117, "Idera" },
- { 24118, "artemis-design GbR" },
- { 24119, "eSimone" },
- { 24120, "JSDAAV INTERNET SOLUTIONS CC" },
- { 24121, "Centro Nacional de Infromaci\0303\0263n y Comunicaci\0303\0263n Educativa" },
- { 24122, "Brodersen Controls A/S" },
- { 24123, "Sparkasse Haslach-Zell" },
- { 24124, "Aqon Ltd." },
- { 24125, "OceanLake Asia Pte Ltd." },
- { 24126, "Junxion, Inc." },
- { 24127, "UUHosting.Net" },
- { 24128, "Casino Arizona" },
- { 24129, "International Road Dynamics Inc." },
- { 24130, "Oneformatics" },
- { 24131, "thePlatform for Media, Inc" },
- { 24132, "zyp.org" },
- { 24133, "Calassa Labs Ltd" },
- { 24134, "Torex Retail Solutions GmbH" },
- { 24135, "Smartcom-Bulgaria AD" },
- { 24136, "Schur Pack Danmark a/s" },
- { 24137, "Optimum Computing Solutions" },
- { 24138, "JSC TaxNet" },
- { 24139, "RFK International" },
- { 24140, "VoiceObjects AG" },
- { 24141, "T-2, d.o.o." },
- { 24142, "Bunya Technology Pty Ltd" },
- { 24143, "MallNet Ltd." },
- { 24144, "Mobillion BV" },
- { 24145, "ECS GmbH" },
- { 24146, "Zone Systems" },
- { 24147, "Ex Libris Ltd." },
- { 24148, "DATALAB DO BRASIL LTDA" },
- { 24149, "Milestone Systems A/S" },
- { 24150, "TIM BRASIL" },
- { 24151, "Inforsis Informatica y Formacion, SL" },
- { 24152, "OTA Management LLC" },
- { 24153, "Defense Finance and Accounting Service" },
- { 24154, "Moog Components Group" },
- { 24155, "Mission Hopitals" },
- { 24156, "Intelliant" },
- { 24157, "Spectrum Signal Processing, Inc." },
- { 24158, "Landstar System Holdings, Inc." },
- { 24159, "Neureol Technologies Private Limited" },
- { 24160, "Cool IP" },
- { 24161, "MLL Telecom Limited" },
- { 24162, "CareWorks vof" },
- { 24163, "SUPERMEDIA Internet Provider" },
- { 24164, "KBOSS.hu Kft." },
- { 24165, "Digi-Sign Limited" },
- { 24166, "Centro de Estudos e Sistemas Avan\0303\0247ados do Recife" },
- { 24167, "WEYCO, INC" },
- { 24168, "GMAC" },
- { 24169, "Sunsetbrew Inc." },
- { 24170, "Motricity, Inc." },
- { 24171, "8e6 Technologies" },
- { 24172, "Tenaska Power Services, Co" },
- { 24173, "Rho, Inc." },
- { 24174, "Institutional Shareholder Services, Inc." },
- { 24175, "SILVER SERVER GmbH" },
- { 24176, "Comgate Engineering Ltd." },
- { 24177, "Tivit S.A." },
- { 24178, "Stillwater Medical Center Authority" },
- { 24179, "Ministerie van Binnenlandse Zaken en Koninkrijksrelaties" },
- { 24180, "Tgusta.com C.A" },
- { 24181, "Fri-Jado B.V." },
- { 24182, "SRH" },
- { 24183, "Vimio PLC" },
- { 24184, "MEDNET Service f\0303\0274r \0303\0204rzte AG" },
- { 24185, "Kvalix Automatika Kft." },
- { 24186, "Netsol Network Solutions Oy" },
- { 24187, "LambdaStream" },
- { 24188, "Mail Object" },
- { 24189, "Cain Computing" },
- { 24190, "Distributed Systems Services, Inc." },
- { 24191, "Digital Fugue" },
- { 24192, "trial-n-error" },
- { 24193, "Strandbygaard" },
- { 24194, "Mary Kay Inc." },
- { 24195, "i5k.net" },
- { 24196, "OSEB NV" },
- { 24197, "Colliers Turley Martin Tucker" },
- { 24198, "Netcordia, Inc." },
- { 24199, "Primagraphics Ltd" },
- { 24200, "Quality Software Solutions Ltd." },
- { 24201, "Adrenio GmbH" },
- { 24202, "MIKRONIKA" },
- { 24203, "Wellington Technology, Inc." },
- { 24204, "Randolph Products Company" },
- { 24205, "JUPITER TECHNOLOGY(WUXI)CO.,LTD" },
- { 24206, "EGROUP Services Ltd." },
- { 24207, "Deimos-Space S.L." },
- { 24208, "Cystelcom Sistemas S.A." },
- { 24209, "MWare CZ, s.r.o." },
- { 24210, "ComWorth Co.,Ltd." },
- { 24211, "Solent Technology Ltd." },
- { 24212, "Conexim Australia Pty Ltd" },
- { 24213, "Oxford Health Plans, Llc. (subsidiary of UnitedHealth Group)" },
- { 24214, "Mount Holyoke College Computer Science Department" },
- { 24215, "Reed Technology and Information Services, Inc." },
- { 24216, "uptime software inc." },
- { 24217, "j-buzz, LLC" },
- { 24218, "Metaweb Technologies, Inc." },
- { 24219, "nuBridges, LLC" },
- { 24220, "Marcelo Rinesi" },
- { 24221, "Donorware LLC" },
- { 24222, "Resolute Networks Ltd." },
- { 24223, "Fabryka Stron Internetowych Sp. z o.o." },
- { 24224, "Southern Regional Education Board" },
- { 24225, "Formula Telecom Solutions" },
- { 24226, "Braxcomm Eletr\0303\0264nica Ltda." },
- { 24227, "Negeso Ukraine Ltd" },
- { 24228, "HOT Technology" },
- { 24229, "arvato technology GmbH" },
- { 24230, "Verint Systems Canada Inc." },
- { 24231, "GUFI - Gruppo Utenti FreeBSD Italia" },
- { 24232, "6th Sense Software, Inc." },
- { 24233, "Ikatu" },
- { 24234, "VuCOMP" },
- { 24235, "Hannum Computer Service" },
- { 24236, "NStudioCorp" },
- { 24237, "ResourceChain Inc." },
- { 24238, "PACLABS Technology and Innovation, Inc." },
- { 24239, "V-shine Co., Ltd" },
- { 24240, "TongSoft Tech." },
- { 24241, "Accucast, Inc." },
- { 24242, "SimWorks International Limited" },
- { 24243, "Amrita Institute of Medical Sciences" },
- { 24244, "IntroMobile CO., Ltd" },
- { 24245, "OSS Corporaton" },
- { 24246, "MGP \"Mosvodokanal\"" },
- { 24247, "Bettge" },
- { 24248, "Stockway Oy" },
- { 24249, "Clinique Saint-Luc (Bouge)" },
- { 24250, "MATRICE SYSTEM S.A.S." },
- { 24251, "Banca24-7 S.p.A." },
- { 24252, "ESG GmbH" },
- { 24253, "Systems Trust Co., Ltd." },
- { 24254, "C4 Solutions Oy" },
- { 24255, "Outpost24 AB" },
- { 24256, "Deutsche WertpapierService Bank AG" },
- { 24257, "Idtect" },
- { 24258, "Ministry of the Flemish Community" },
- { 24259, "Achilles Information Limited" },
- { 24260, "VIELAGE" },
- { 24261, "Mobeon AB" },
- { 24262, "TEAM S.A" },
- { 24263, "up to data professional services GmbH" },
- { 24264, "Neusta GmbH" },
- { 24265, "The British Museum" },
- { 24266, "Infoscope Kft." },
- { 24267, "Directory Enabled Solutions" },
- { 24268, "Opendium Ltd" },
- { 24269, "CR2 LTD" },
- { 24270, "S3 Srl Servizi Soluzioni Sistemi" },
- { 24271, "Nessus Internet Services Florian Schicker" },
- { 24272, "Universit\0303\0240 della Svizzera italiana" },
- { 24273, "nihilistic.org.uk" },
- { 24274, "Beyond Security Inc." },
- { 24275, "IUT Verdun" },
- { 24276, "Universidad de Oriente" },
- { 24277, "Tiaxa do Brasil Ltda." },
- { 24278, "Universit\0303\0240 Campus Bio-Medico" },
- { 24279, "LDAP Administration Console (opensource project)" },
- { 24280, "HdL Coren & Cone" },
- { 24281, "Family Health International" },
- { 24282, "StackFrame, LLC" },
- { 24283, "dns Ltd" },
- { 24284, "wesde" },
- { 24285, "Novax Industries Corporation" },
- { 24286, "HumanConcepts" },
- { 24287, "Telex Communication Inc." },
- { 24288, "BHMS Webhosting" },
- { 24289, "HotFeet GmbH" },
- { 24290, "Datorf\0303\0266reningen vid LU & LTH" },
- { 24291, "E-Planit Systems, Inc." },
- { 24292, "BRAKKE SCHAFNITZ INS BROKERS INC" },
- { 24293, "Toyota New Zealand Ltd" },
- { 24294, "Air Broadband Communications" },
- { 24295, "Pickwick Consulting" },
- { 24296, "DENSO WAVE INCORPORATED" },
- { 24297, "Sonic Solutions" },
- { 24298, "Freudenberg Dichtungs- & Schwingungstechnik GmbH & CoKG" },
- { 24299, "go4teams GmbH" },
- { 24300, "Wotif" },
- { 24301, "stj company" },
- { 24302, "Network constructor, Core Constructor , Kun Shan University" },
- { 24303, "Pegacat Pty Ltd" },
- { 24304, "ArgusConnect Pty LTD" },
- { 24305, "INBOS Pty LTD" },
- { 24306, "3 Vias Technologies" },
- { 24307, "Activesec S.A." },
- { 24308, "Media & Telecom Ventures" },
- { 24309, "Terrascale Technologies Inc." },
- { 24310, "Medical Information Technology, Inc." },
- { 24311, "SunHELP" },
- { 24312, "Identity Automation, LP" },
- { 24313, "TiendaLinux.com" },
- { 24314, "What Creek" },
- { 24315, "Fatih University" },
- { 24316, "IT bridge.net s.r.o." },
- { 24317, "torrini.org" },
- { 24318, "InTouch B.V." },
- { 24319, "VOCONS IT Consulting GmbH" },
- { 24320, "ELCOM GROUP" },
- { 24321, "NetMagic Ltd." },
- { 24322, "Petastor, Inc." },
- { 24323, "Deephaven Ltd" },
- { 24324, "Electric-Tronics Incorporated" },
- { 24325, "OGL Computer Services Group Ltd" },
- { 24326, "Exsys" },
- { 24327, "Estacha Proyectos y Servicios" },
- { 24328, "Spirit AeroSystems, Inc." },
- { 24329, "Lixil" },
- { 24330, "In Reach Technology" },
- { 24331, "Evolix" },
- { 24332, "Hardware Online AS" },
- { 24333, "FH Ingolstadt" },
- { 24334, "EADS DS UK Ltd" },
- { 24335, "Storewiz Inc." },
- { 24336, "ATM Express, Inc." },
- { 24337, "Monster Cable Products Inc." },
- { 24338, "Situs Management Inc." },
- { 24339, "ADLINK TECHNOLOGY INC." },
- { 24340, "Macalester College" },
- { 24341, "Pontis Inc." },
- { 24342, "FIO Labs, LLC" },
- { 24343, "Rokonet Electronics LTD." },
- { 24344, "eSPECTRUM Internet-Solution GmbH" },
- { 24345, "Xsite GmbH" },
- { 24346, "Adaway Consulting" },
- { 24347, "Magicpot Inc." },
- { 24348, "GPTech GmbH" },
- { 24349, "Frank Agerholm" },
- { 24350, "Sensoria Corporation" },
- { 24351, "Linux Network Care Inc" },
- { 24352, "Alpha Centauri Software Limited" },
- { 24353, "Media Technology Systems Inc." },
- { 24354, "secscend LLC" },
- { 24355, "Lemon I.T. Co., Ltd." },
- { 24356, "Solinus, Inc." },
- { 24357, "CD-Telematika a. s." },
- { 24358, "Nomics" },
- { 24359, "Deutsche Rentenversicherung Mitteldeutschland" },
- { 24360, "Transmitton Ltd" },
- { 24361, "InnovaSON" },
- { 24362, "Duquesne University" },
- { 24363, "Super Star enterprises" },
- { 24364, "ON Semiconductor" },
- { 24365, "Constellation Energy" },
- { 24366, "gui.org" },
- { 24367, "Somerdata Ltd" },
- { 24368, "Paat Software" },
- { 24369, "Medem, Inc." },
- { 24370, "Chang Cheng Information consultant Co., LTD" },
- { 24371, "London Business School" },
- { 24372, "Exiis Corporation" },
- { 24373, "information unlimited" },
- { 24374, "Life Sciences Collaborative Access Team" },
- { 24375, "Aleksandar Milivojevic" },
- { 24376, "Landeshauptstadt Muenchen" },
- { 24377, "Nassauische Sparkasse" },
- { 24378, "Kizoom Ltd" },
- { 24379, "Tracewell Power" },
- { 24380, "certegy" },
- { 24381, "Joachim Uhr" },
- { 24382, "CH2M HILL, Ltd." },
- { 24383, "Orange Cable Corporation" },
- { 24384, "Caerus, Inc." },
- { 24385, "CryptGuard" },
- { 24386, "STM Networks, Inc" },
- { 24387, "Software-Engineering Fabiani" },
- { 24388, "Washington State Bar Association" },
- { 24389, "Suzhou Keda Technology Company, Ltd." },
- { 24390, "IRI Communications, Inc." },
- { 24391, "DoremiLabs, inc." },
- { 24392, "Flexagonal Systems Ltd" },
- { 24393, "Office National des Forets" },
- { 24394, "Concurrent Technologies Plc." },
- { 24395, "Datamat S.p.a." },
- { 24396, "Xinjiang Sailing Information Technology Co., Ltd" },
- { 24397, "Libertas Solucoes em T.I. LTDA" },
- { 24398, "Espirito Santo Centrais Eletricas S.A" },
- { 24399, "Telsource Corporation" },
- { 24400, "TNS Business Solutions S.A." },
- { 24401, "Kanton Basel-Stadt" },
- { 24402, "Omgeo LLC" },
- { 24403, "Ministerio da Cultura" },
- { 24404, "DroidOS Project" },
- { 24405, "TC Software, Inc" },
- { 24406, "Dynamic Biometrics Ltd." },
- { 24407, "OnAir USA, Inc." },
- { 24408, "Video Technics Inc." },
- { 24409, "Rising System Inc." },
- { 24410, "WHEEL Sp. z o.o." },
- { 24411, "Multi Service Forum" },
- { 24412, "Bundesamt f\0303\0274r Verbraucherschutz und Lebensmittelsicherheit" },
- { 24413, "University of Cambridge, Department of Archaeology" },
- { 24414, "CORE CORPORATION" },
- { 24415, "Unimatrix-One" },
- { 24416, "NC Interactive" },
- { 24417, "Infoweapons Corporation" },
- { 24418, "Infinico Corporation" },
- { 24419, "Red Crow Group LLC" },
- { 24420, "European Airlift Centre" },
- { 24421, "Roweb Development" },
- { 24422, "Information Management Services" },
- { 24423, "Xtek Computer" },
- { 24424, "IDSRDL" },
- { 24425, "Monksoft" },
- { 24426, "Metavize, Inc" },
- { 24427, "Coyote Point Systems, Inc" },
- { 24428, "Nusoft System Inc." },
- { 24429, "Mangold Elektronik" },
- { 24430, "Red Earth Systems AB" },
- { 24431, "ACCEL Instruments GmbH" },
- { 24432, "UIIP NASB" },
- { 24433, "Yunet International D.O.O." },
- { 24434, "Ohio Bureau of Workers' Compensation" },
- { 24435, "Ubitech Systems Inc" },
- { 24436, "Power Distribution, Inc." },
- { 24437, "Deightime, LLC" },
- { 24438, "OAO RoEduNet" },
- { 24439, "JBG/Development Group, L.L.C." },
- { 24440, "Xsigo Systems" },
- { 24441, "oddbit.com" },
- { 24442, "smartx GmbH" },
- { 24443, "Colby Sas" },
- { 24444, "UniBridge AS" },
- { 24445, "Carsten Heinrici" },
- { 24446, "TILIAR Services" },
- { 24447, "St Basil's Homes" },
- { 24448, "WEB.DE GmbH" },
- { 24449, "Ketsujin Studios" },
- { 24450, "AlphaGeek, Inc." },
- { 24451, "Transitional Data Services, Inc." },
- { 24452, "AXI" },
- { 24453, "Bank Hapoalim ltd." },
- { 24454, "Schenker-Joyau" },
- { 24455, "Isotoma Limited" },
- { 24456, "CODA Plc" },
- { 24457, "BWMS Solu\0303\0247\0303\0265es M\0303\0263veis Ltda" },
- { 24458, "Wise Telecomunica\0303\0247\0303\0265es Ltda." },
- { 24459, "Saskatchewan Wheat Pool Inc." },
- { 24460, "Fortean Technologies, Inc." },
- { 24461, "Advanced Solutions International, Inc." },
- { 24462, "E-Sauce Limited" },
- { 24463, "Banco de Costa Rica" },
- { 24464, "First Citizens Bank" },
- { 24465, "BELNET" },
- { 24466, "move.L consulting" },
- { 24467, "walkgame" },
- { 24468, "LK PRODUKT CZ a.s." },
- { 24469, "University of Leeds" },
- { 24470, "Boston Maine Airways Corp." },
- { 24471, "Omniphasic Institute LLC" },
- { 24472, "University of Virginia's College at Wise" },
- { 24473, "NetMedia, Inc." },
- { 24474, "Jacobacci" },
- { 24475, "Optena Corporation" },
- { 24476, "Server-side Systems Ltd" },
- { 24477, "eenterphace" },
- { 24478, "megatrade corp." },
- { 24479, "E.ON Business Services Czech Republic s.r.o." },
- { 24480, "oncampusuk" },
- { 24481, "Warsaw Data Center Sp. z o.o." },
- { 24482, "Light Backup Services" },
- { 24483, "ISO New England Inc." },
- { 24484, "Advanced Broadcast Components Ltd." },
- { 24485, "webmasters akademie GmbH" },
- { 24486, "Micromedia International" },
- { 24487, "Bulletproof Solutions Inc" },
- { 24488, "United Solutions International" },
- { 24489, "brut" },
- { 24490, "The Phone House Telecom GmbH" },
- { 24491, "Asociaci\0303\0263n Centro de Cooperaci\0303\0263n Interbancaria" },
- { 24492, "Consorzio Torino Time" },
- { 24493, "Safend Ltd." },
- { 24494, "Extra Prof S.R.L." },
- { 24495, "comundus Unternehmensberatung GmbH" },
- { 24496, "Western Telematic Inc." },
- { 24497, "KMD.COM.TW" },
- { 24498, "Interprise (Pty) Ltd" },
- { 24499, "European Aviation Safety Agency" },
- { 24500, "MorkoM GmbH" },
- { 24501, "Green Hat Consulting Ltd." },
- { 24502, "Wandering Barque" },
- { 24503, "ICONICS, Inc." },
- { 24504, "CENTR\0303\0201L Mosod\0303\0241k Szolg\0303\0241ltat\0303\0263 R\0303\0251szv\0303\0251nyt\0303\0241rsas\0303\0241g" },
- { 24505, "Emerging Systems" },
- { 24506, "Osaki Electric co.,ltd." },
- { 24507, "Peadar Grant" },
- { 24508, "StagniNET" },
- { 24509, "Commonwealth of Massachusetts" },
- { 24510, "SHANGHAI SIMED TECH LTD." },
- { 24511, "FlowInspect SpA" },
- { 24512, "Beijing Hugeland Technologies co.,Ltd." },
- { 24513, "Finnish Game and Fisheries Research Institute" },
- { 24514, "Rivulet Communications, Inc." },
- { 24515, "ROC Software Systems, Inc." },
- { 24516, "Conair Corporation" },
- { 24517, "LTIA" },
- { 24518, "Great-West Life & Annuity Insurance Company" },
- { 24519, "Trustwave Holdings, Inc. (formerly 'XRamp Security Services Inc.')" },
- { 24520, "Tokash Consulting Inc." },
- { 24521, "SupplyFX, Inc" },
- { 24522, "PT. Excelcomindo Pratama, Tbk." },
- { 24523, "infeurope S.A." },
- { 24524, "RheinEnergie AG" },
- { 24525, "Twisted Pair Solutions, Inc." },
- { 24526, "St James the Great R.C Primary & Nursery School" },
- { 24527, "commax Co.,Ltd." },
- { 24528, "ProgramDuon AB" },
- { 24529, "Systembetreuung.com" },
- { 24530, "Universidade Federal do Amazonas" },
- { 24531, "Metis Communication Co., Ltd" },
- { 24532, "Intelliguard I.T." },
- { 24533, "Akvi-Patent Co." },
- { 24534, "Gordano Ltd" },
- { 24535, "MD Systems" },
- { 24536, "DAS" },
- { 24537, "NNMI" },
- { 24538, "Morning" },
- { 24539, "IST Holdings (Pty) Ltd." },
- { 24540, "Betty TV Entwicklungs GmbH" },
- { 24541, "Beijing GrandRole Software Co.,Ltd." },
- { 24542, "Albert-Einstein-Gymnasium" },
- { 24543, "Black Eyed Moon" },
- { 24544, "JSC \"Eltel\"" },
- { 24545, "Ursus Technologies, Inc." },
- { 24546, "ServerCave, Inc." },
- { 24547, "Linux Users Group Singapore" },
- { 24548, "OutSys snc" },
- { 24549, "Triple-m Systems AG" },
- { 24550, "edoras GmbH & Co. KG" },
- { 24551, "CPU d.o.o." },
- { 24552, "Inverse Path Ltd." },
- { 24553, "Prompttec Product Management GmbH" },
- { 24554, "Church of the Nazarene" },
- { 24555, "RACKMASTER SYSTEMS INC." },
- { 24556, "Starwave Technologies,Inc." },
- { 24557, "Obcanske sdruzeni HKfree" },
- { 24558, "Arcade ICT BV" },
- { 24559, "Net Tecnologies" },
- { 24560, "inode GmbH" },
- { 24561, "Celletra Ltd." },
- { 24562, "Bridge Technologies Co AS" },
- { 24563, "Kerfi AB Avdelning Norge" },
- { 24564, "HOLON Corp." },
- { 24565, "Yuba Community College District" },
- { 24566, "koreanair" },
- { 24567, "YIT Corporation" },
- { 24568, "DawnSpill Ltd." },
- { 24569, "directnews AG" },
- { 24570, "OpenWired" },
- { 24571, "uniwan.be" },
- { 24572, "Totaltel Telecommunication Ltd." },
- { 24573, "Massachusetts Board of Library Commissioners" },
- { 24574, "Opsera Ltd." },
- { 24575, "Tranzeo Wireless Technologies Inc." },
- { 24576, "HL7 Lithuania" },
- { 24577, "Tosharecomu LLC" },
- { 24578, "IDSignet" },
- { 24579, "Australian Style Pty Ltd" },
- { 24580, "TietoEnator Broadcasting IT Oy" },
- { 24581, "Zemp Informatik" },
- { 24582, "credativ GmbH" },
- { 24583, "Guerrier" },
- { 24584, "Nagoya University" },
- { 24585, "Cassiano Morgado de Aquino - ME" },
- { 24586, "BA Systems" },
- { 24587, "Judson College" },
- { 24588, "Automatic IT Corporation" },
- { 24589, "Redoc Inc." },
- { 24590, "Bristol Technology Inc." },
- { 24591, "Marchex, Inc." },
- { 24592, "Brazos County, Texas" },
- { 24593, "Think Zone S.C." },
- { 24594, "MYOB Australia E1 Pty Ltd (formerly 'Ilisys Web Hosting Pty Ltd')" },
- { 24595, "safari video networks llc." },
- { 24596, "Ascent Technology, Inc." },
- { 24597, "NRW.BANK" },
- { 24598, "NC Cable Pty Ltd t/as Neighbourhood Cable" },
- { 24599, "Downey Savings and Loan Association, F.A." },
- { 24600, "EDI Branch,Shanghai Telecom Corporation Ltd." },
- { 24601, "Premicare AB" },
- { 24602, "Siemens Com EN PSY DB" },
- { 24603, "Peavey Electronics Corporation" },
- { 24604, "CosmosKey" },
- { 24605, "Owl Computing Technologies, Inc." },
- { 24606, "The People's Republic of Ames" },
- { 24607, "Drystone" },
- { 24608, "Centre hospitalier de Lagny Marne la vall\0303\0251e" },
- { 24609, "R. S. Software (India) Ltd." },
- { 24610, "gemeentebestuur sint-gillis-waas" },
- { 24611, "Baptist Memorial Health Care Corporation" },
- { 24612, "Fujitsu Hong Kong Ltd." },
- { 24613, "Kingston University" },
- { 24614, "Jakota Design Group GmbH" },
- { 24615, "b.comp GmbH" },
- { 24616, "CROSSPOiNT" },
- { 24617, "NMS Software, Inc." },
- { 24618, "BOXALINO AG" },
- { 24619, "MOSDAN Technology Co.,Ltd" },
- { 24620, "Tecnosis, S.A." },
- { 24621, "Tazz Networks Inc." },
- { 24622, "netCo GmbH Hamburg" },
- { 24623, "Samsung Thales Co., Ltd." },
- { 24624, "EuroCableLabs" },
- { 24625, "Luxcore Optronics, Inc." },
- { 24626, "Lime Brokerage LLC" },
- { 24627, "Vitas" },
- { 24628, "CXR Larus Corporation" },
- { 24629, "Telio AS" },
- { 24630, "Skinkers ltd" },
- { 24631, "mediaproxy pty ltd" },
- { 24632, "CorEdge Networks, Inc." },
- { 24633, "Toyo Radio Systems Co.,Ltd." },
- { 24634, "Ericpol Telecom sp. z o.o." },
- { 24635, "ALPS Electric Europa GmbH" },
- { 24636, "XPass Technologies Co., Ltd" },
- { 24637, "NETWAVE CO., LTD." },
- { 24638, "JotSpot Inc." },
- { 24639, "Elecom scsi" },
- { 24640, "Nova Technologies" },
- { 24641, "Allodial Solutions, Inc." },
- { 24642, "University of Sarajevo - Faculty of Electrical Engineering" },
- { 24643, "Cedval Info inc." },
- { 24644, "Applied Broadband, Inc." },
- { 24645, "e-DMZ Security, LLC." },
- { 24646, "Fonner" },
- { 24647, "\"NTC-Atlas\"" },
- { 24648, "SL EDV-Dienstleistungen" },
- { 24649, "MainSkill Technologies GmbH&Co.KG" },
- { 24650, "Control Systems srl" },
- { 24651, "RongJi Network Security Technology Co., Ltd" },
- { 24652, "Everbee Networks" },
- { 24653, "Studec" },
- { 24654, "NPO TrustGear" },
- { 24655, "Applied Broadband, Inc." },
- { 24656, "Pre-Emptive Limited" },
- { 24657, "TCSYS Limited" },
- { 24658, "intivo" },
- { 24659, "Caringo, Inc." },
- { 24660, "Rapid Mobile (Pty) Ltd" },
- { 24661, "WM-data Infra Solutions AB" },
- { 24662, "Digital Instruments S.r.l." },
- { 24663, "Norventure Ltda." },
- { 24664, "Delaware Technical and Community College" },
- { 24665, "BytePark" },
- { 24666, "Camelcom" },
- { 24667, "Atlanta Technical Consultants, LLC" },
- { 24668, "Quay Security Ltd." },
- { 24669, "Beijing Mobile Interactive Co. LTD." },
- { 24670, "Gemini Observatory" },
- { 24671, "Vienna University" },
- { 24672, "Watkins MFG Inc." },
- { 24673, "ServerEngines LLC" },
- { 24674, "Linzer Technikum - LITEC" },
- { 24675, "Nordh Sistemas de Controle Ltda" },
- { 24676, "Applied Voice & Speech Technologies, Inc." },
- { 24677, "NexGen Communications, LLC." },
- { 24678, "Oklahoma City University" },
- { 24679, "China Sports Lottery Printing(Beijing) Co. Ltd." },
- { 24680, "Bradmark Technologies, Inc." },
- { 24681, "QNAP SYSTEMS, INC" },
- { 24682, "SAT" },
- { 24683, "Hutchison 3G Austria GmbH" },
- { 24684, "Helsinki Business Polytechnic" },
- { 24685, "Omada A/S" },
- { 24686, "PROFIBUS Nutzerorganisation e.V." },
- { 24687, "Integrated Broadband Services, LLC" },
- { 24688, "C. & H. Euser Transport B.V." },
- { 24689, "WAR Ink" },
- { 24690, "Japan Communication Equipment Co.,Ltd." },
- { 24691, "Beijing GoodMedia Co. LTD." },
- { 24692, "Ask Jeeves (Hangzhou) Limited" },
- { 24693, "Firebrick Ltd." },
- { 24694, "Technische Universiteit Eindhoven" },
- { 24695, "Prodemge - Companhia de Tecnologia da Informa\0303\0247\0303\0243o do Estado de" },
- { 24696, "Falkin Systems LLC" },
- { 24697, "Canal de Isabel II" },
- { 24698, "WH Trading, LLC" },
- { 24699, "AGB Nielsen Media Research" },
- { 24700, "Prolon Control Systems" },
- { 24701, "Spitzenverb\0303\0244nde der landwirtschaftlichen Sozialversicherung" },
- { 24702, "CLS Services Ltd" },
- { 24703, "Sven Meyer IT-Services" },
- { 24704, "Informatikzentrum Landesverwaltung Baden-W\0303\0274rttemberg" },
- { 24705, "Clal Insurance Ltd" },
- { 24706, "RW Consulting" },
- { 24707, "Computation Systemhaus GmbH" },
- { 24708, "University of PISA" },
- { 24709, "North York General Hospital" },
- { 24710, "OPSOFT s.r.o." },
- { 24711, "MLK - ST informatique" },
- { 24712, "Waterstone Environmental Hydrology and Engineering, Inc." },
- { 24713, "Grammofonartistenes forening" },
- { 24714, "Intesis Software S.L." },
- { 24715, "Beijing Langhua Ltd." },
- { 24716, "Start Stelcom Ltd Corp" },
- { 24717, "Berg-BSP" },
- { 24718, "Pierre Bruy\0303\0250re" },
- { 24719, "Cyberview Technology Ltd" },
- { 24720, "Thales Training & Simulation Ltd" },
- { 24721, "Svisj" },
- { 24722, "Kef Solutions Inc." },
- { 24723, "SOS GmbH" },
- { 24724, "Aluria Software" },
- { 24725, "Australian Technology Information Pty Ltd" },
- { 24726, "USHER" },
- { 24727, "CleanOffer, Inc." },
- { 24728, "pythea" },
- { 24729, "AutoGas Systems, Inc." },
- { 24730, "Audible Magic Corp." },
- { 24731, "Beijing Kexin Technology Co. Ltd" },
- { 24732, "Universit\0303\0244t Bayreuth - RZ" },
- { 24733, "Summit Computer Systems, Inc." },
- { 24734, "cintech" },
- { 24735, "Gunnebo AB" },
- { 24736, "Narcommunications" },
- { 24737, "ION R-D Elektronika Bt." },
- { 24738, "Cablecom GmbH" },
- { 24739, "Slaski Urzad Wojewodzki" },
- { 24740, "ARFWorks" },
- { 24741, "MDT Inc." },
- { 24742, "Danish Ministry of the Environment" },
- { 24743, "Memorex Telex Japan Ltd." },
- { 24744, "a2 system" },
- { 24745, "TVWorks" },
- { 24746, "Oberto Sausage Company" },
- { 24747, "Capella Education Company" },
- { 24748, "TPSA LTD." },
- { 24749, "Scrutable Systems, Inc." },
- { 24750, "Unassigned" },
- { 24751, "Cluster-Works GbR" },
- { 24752, "SyncIO oHG" },
- { 24753, "SSC Publications Inc." },
- { 24754, "SIRCA Ltd" },
- { 24755, "Satellite Music Australia Pty Limited" },
- { 24756, "PARTAD" },
- { 24757, "WiMAX Forum" },
- { 24758, "Brightwire Media" },
- { 24759, "Panacya Inc" },
- { 24760, "ILS Technology LLC" },
- { 24761, "Euro/IP B.V." },
- { 24762, "Smart and Final Stores Corporation" },
- { 24763, "rrothos.com" },
- { 24764, "IRIS Corp Bhd" },
- { 24765, "Aylus Networks, Inc." },
- { 24766, "Spiceberry" },
- { 24767, "NOX SYSTEMS AG" },
- { 24768, "Pott & K\0303\0266rner" },
- { 24769, "Acronis, Inc." },
- { 24770, "IZALL.COM Ltd." },
- { 24771, "Intercooperation" },
- { 24772, "SolidX AB" },
- { 24773, "SG GENIKI BANK S.A." },
- { 24774, "World Health Organization" },
- { 24775, "Aviareto Limited" },
- { 24776, "Brasil Telecom S/A" },
- { 24777, "Ingenious Corporation Ltd." },
- { 24778, "TenXc Wireless Inc." },
- { 24779, "SeaNet Technologies, Inc." },
- { 24780, "SBIN Systems" },
- { 24781, "A.F.P.B.T.P. du Calvados" },
- { 24782, "TetraNed" },
- { 24783, "Wola Info S.A." },
- { 24784, "Logintas AG" },
- { 24785, "Luganda Group, Inc" },
- { 24786, "AsteriskAD.com" },
- { 24787, "TU Dresden, Chair of Road Design" },
- { 24788, "Itilon Pty Ltd" },
- { 24789, "Teletech d.o.o." },
- { 24790, "Handmade Mobile Entertainment" },
- { 24791, "InZon Corp" },
- { 24792, "Red Oxygen Pty Ltd" },
- { 24793, "GSTeletech Co.,Ltd." },
- { 24794, "Federated Department Stores" },
- { 24795, "blue elephant systems GmbH" },
- { 24796, "Bundes\0303\0244rztekammer" },
- { 24797, "IMSEC GmbH" },
- { 24798, "data-complex gmbh" },
- { 24799, "App-Line" },
- { 24800, "Apogee Network Systems & Consulting, LLC" },
- { 24801, "MTI co. LTD" },
- { 24802, "Saratoga Systems, Inc" },
- { 24803, "nu.org" },
- { 24804, "Akorri Networks, Inc." },
- { 24805, "Bankoa Credit Agricole" },
- { 24806, "Tern Systems Inc." },
- { 24807, "RISO KAGAKU CORPORATION" },
- { 24808, "EODP Section ( For Testing Only)" },
- { 24809, "Manic Productions" },
- { 24810, "Innerspace Ltd." },
- { 24811, "Robatech AG" },
- { 24812, "tribaldi GmbH" },
- { 24813, "chellomedia services Ltd" },
- { 24814, "Yinhoo Software Inc." },
- { 24815, "Golzari IT-Consultancy" },
- { 24816, "Asoka USA Corporation" },
- { 24817, "TuVox Inc" },
- { 24818, "Micro Industries Inc." },
- { 24819, "CARDIONICS SA" },
- { 24820, "Oskarshamns Konverterings AB" },
- { 24821, "TELEFUNKEN Radio Communication Systems GmbH & Co. KG" },
- { 24822, "Instituto Nacional de Estadistica" },
- { 24823, "Amey Datel" },
- { 24824, "NightStorm Software Systems, Inc." },
- { 24825, "Creighton University" },
- { 24826, "Weyerhaeuser" },
- { 24827, "Bieles Stano" },
- { 24828, "Speedway Internet Service SC LTDA" },
- { 24829, "Estacado Systems, LLC" },
- { 24830, "THOTT Solutions" },
- { 24831, "Sirit Technologies Inc." },
- { 24832, "Mi5 Inc." },
- { 24833, "Eliteitminds Technologies Inc." },
- { 24834, "KAT Project" },
- { 24835, "University of Ostrava" },
- { 24836, "Johannes Kapune GbR" },
- { 24837, "Sobha Renaissance Information Technology Private Limited" },
- { 24838, "Danbury Health Systems" },
- { 24839, "Universidade Federal Fluminense" },
- { 24840, "David Ross" },
- { 24841, "Red [E] Entertainment Group" },
- { 24842, "Gravitime" },
- { 24843, "Halier" },
- { 24844, "Petroleum Convenience Alliance for Technology Standards, Inc." },
- { 24845, "JSC institute \"Promstrojniiproject\"" },
- { 24846, "Scivo Technology Co. Ltd." },
- { 24847, "International Criminal Court - Cour Penale Internationale" },
- { 24848, "bollcons" },
- { 24849, "ELITNET, Ltd." },
- { 24850, "Mercantile Network Brasil, Ltda." },
- { 24851, "Hillsborough Community College" },
- { 24852, "Phihong USA" },
- { 24853, "Komerccentrs DATI grupa" },
- { 24854, "Pacific Star Communications" },
- { 24855, "Sensonxi Inc." },
- { 24856, "MDS Pharma Services" },
- { 24857, "VECTORsgi" },
- { 24858, "Vendetta Performance Limited" },
- { 24859, "Shanghai PONX technology com.,Ltd." },
- { 24860, "tosker.net" },
- { 24861, "StudyStack" },
- { 24862, "Qualimedic.com AG" },
- { 24863, "MTI Technology GmbH" },
- { 24864, "Link GmbH" },
- { 24865, "Cramer Systems Ltd" },
- { 24866, "Hans Turck GmbH & Co. KG" },
- { 24867, "Goldsmiths College, University of London" },
- { 24868, "Technoface Corporation" },
- { 24869, "KLab Inc." },
- { 24870, "ZE PAK SA" },
- { 24871, "Webroot Software, Inc." },
- { 24872, "H-D-H" },
- { 24873, "Procesamiento Digital y Sistemas, S.L." },
- { 24874, "GO Networks, Inc." },
- { 24875, "Andxor Soluzioni Informatiche S.r.l." },
- { 24876, "Atlas Advanced Internet Solutions Ltd." },
- { 24877, "Informatica y Comunicaciones Avanzadas, S.L." },
- { 24878, "Mercurio Comunicaciones" },
- { 24879, "Gi Gesundheitsinformatik GmbH" },
- { 24880, "DIRECCION DE IMPUESTOS Y ADUANAS NACIONALES" },
- { 24881, "CERIST" },
- { 24882, "Alcatel Japan Ltd." },
- { 24883, "Vertigo Media, LLC" },
- { 24884, "Toneware Technology co. Ltd." },
- { 24885, "Banca Intesa AD Beograd" },
- { 24886, "Eigil Bj\0303\0270rgum" },
- { 24887, "Parlamento de Galicia" },
- { 24888, "Malden Electronics Ltd." },
- { 24889, "IB Technologies Sdn. Bhd." },
- { 24890, "Extant Solutions" },
- { 24891, "Instituto Tecnol\0303\0263gico y de Estudios Superiores de Occidente A.C." },
- { 24892, "Great Atlantic and Pacific Tea Company, Inc." },
- { 24893, "GE Intelligent Platforms, Inc." },
- { 24894, "PantheraNet" },
- { 24895, "Medifacts International Inc." },
- { 24896, "Microdental Laboratories" },
- { 24897, "Indel Industria Eletronica Ltda" },
- { 24898, "d&b audiotechnik GmbH" },
- { 24899, "Agama Technologies AB" },
- { 24900, "Aurora Networks (GoBackTV)" },
- { 24901, "Future Infonet" },
- { 24902, "Astech Corporation" },
- { 24903, "Corporaci\0303\0263n Polit\0303\0251cnica Nacional de Colombia" },
- { 24904, "Skyrecon Systems SA" },
- { 24905, "Nextsense Ltd" },
- { 24906, "Electronic Solutions Ltd." },
- { 24907, "Infopact Netwerkdiensten B.V." },
- { 24908, "Stored IQ, Inc." },
- { 24909, "Secure-24, LLC" },
- { 24910, "OOO \"ElitStudio\"" },
- { 24911, "Foxbyte Ltd" },
- { 24912, "ASELSAN INC." },
- { 24913, "Cook Group Incorporated" },
- { 24914, "WSOFT, Lda." },
- { 24915, "iG Internet Group do Brasil Ltda" },
- { 24916, "Essent Corporation" },
- { 24917, "Intermedix Corporation (formerly 'Collaborative Fusion, Inc.')" },
- { 24918, "Radmer" },
- { 24919, "Web Wizard Design" },
- { 24920, "Our Help Desk" },
- { 24921, "MAINDATA, spol. s r.o." },
- { 24922, "VoX Communications, Inc." },
- { 24923, "Shodor Education Foundation, Inc" },
- { 24924, "Unicentrix Solutions" },
- { 24925, "Jordet" },
- { 24926, "LAIKA, Inc." },
- { 24927, "Exegy, Inc." },
- { 24928, "WaterEd Australia Pty Ltd" },
- { 24929, "vt100 digital solutions" },
- { 24930, "synedra information technologies GmbH" },
- { 24931, "Mixed Signals, Inc." },
- { 24932, "Mcomms Design" },
- { 24933, "angel bosch" },
- { 24934, "ISCG Ltd." },
- { 24935, "TetraNed" },
- { 24936, "Snecma Propulsion Solide, Groupe SAFRAN" },
- { 24937, "Universal Display and Fixtures Company" },
- { 24938, "Technolabs S.p.A." },
- { 24939, "qpass" },
- { 24940, "Department of Computer Science, National Chiao Tung University" },
- { 24941, "EMKA Technologies SA" },
- { 24942, "Kyle Fox DBA DigitalFennec Networks" },
- { 24943, "Rigpa" },
- { 24944, "Kreuzinger IT-Trilogie" },
- { 24945, "ParaSun Technologies Inc." },
- { 24946, "Corredoira Abogados" },
- { 24947, "Shanalyst Corporation" },
- { 24948, "Mitsubishi Materials Corporation" },
- { 24949, "Sentillion, Inc" },
- { 24950, "Uniform Industrial Corp." },
- { 24951, "Industrial Video and Control, LLC" },
- { 24952, "Cool Bananas Limited" },
- { 24953, "Numachi" },
- { 24954, "Mobile Complete" },
- { 24955, "SyncCast" },
- { 24956, "Innovative Electronic Designs, Inc." },
- { 24957, "Onoclea" },
- { 24958, "Ascent Media Group" },
- { 24959, "Pankerl - Media" },
- { 24960, "The Sip-router Project (formerly 'iptel.org')" },
- { 24961, "Tail-f Systems AB" },
- { 24962, "Atlantic Harbour Limited" },
- { 24963, "SiliconVortex" },
- { 24964, "Shanghai Qianjin Electronic Equipment Co.,ltd" },
- { 24965, "Picdar Technology Limited" },
- { 24966, "Greenwich Hospital" },
- { 24967, "EPCON Sp. z o.o." },
- { 24968, "Beijing SecuWard Information Security Technology Co.,Ltd" },
- { 24969, "Wharfe Electronic Data Ltd" },
- { 24970, "InterWay, s.r.o." },
- { 24971, "GIDE LOYRETTE NOUEL" },
- { 24972, "Lipman Electronic Engineering Ltd" },
- { 24973, "Guilin Jharden Communication CO., LTD" },
- { 24974, "Lootah" },
- { 24975, "WINGS Ltd." },
- { 24976, "OmegaSphere Inc." },
- { 24977, "Sxip Identity" },
- { 24978, "Martin Henschke Geraetebau" },
- { 24979, "madpilot.net" },
- { 24980, "CERVICEM" },
- { 24981, "Amex Information Technologies Ltd." },
- { 24982, "Fiebig+Team GmbH" },
- { 24983, "Tod Lewin" },
- { 24984, "Kestral Computing Pty Ltd" },
- { 24985, "Xeround Systems" },
- { 24986, "Bj\0303\0270rn Ruberg konsulenttjenester" },
- { 24987, "Ortiva Wireless Inc." },
- { 24988, "Singh Travels" },
- { 24989, "Synalogic e.K." },
- { 24990, "Bluestem Ltd." },
- { 24991, "CardContact Software & System Consulting" },
- { 24992, "Toko University" },
- { 24993, "MySQL, Inc." },
- { 24994, "nabios GmbH" },
- { 24995, "Integratech S.A." },
- { 24996, "SAFE Health" },
- { 24997, "Cirrologic Ltd" },
- { 24998, "SBA Technologies, Inc" },
- { 24999, "VATSIM.net" },
- { 25000, "ConSol* Consulting & Solutions Software GmbH" },
- { 25001, "Codra Ingenierie Informatique" },
- { 25002, "VistiC Ltd." },
- { 25003, "SQUILD" },
- { 25004, "AEGON Magyarorszag Rt." },
- { 25005, "sevecek" },
- { 25006, "NVision Czech Republic a.s. (formerly 'SITRONICS Telecom Solutions, Czech Republic a.s.')" },
- { 25007, "Precesamiento Digital y Sistemas S.L." },
- { 25008, "I.T.E.N.O.S. GmbH - Mobile Solutions" },
- { 25009, "Sysworksoft" },
- { 25010, "Bedag Informatique SA" },
- { 25011, "Cranite Systems Inc." },
- { 25012, "Minux Bt." },
- { 25013, "RS Consulting" },
- { 25014, "Visimetrics (UK) Ltd" },
- { 25015, "2PM Technologies Ltd" },
- { 25016, "Vizrt/Ardendo AB" },
- { 25017, "CertSign" },
- { 25018, "Proxyconn Ukraine" },
- { 25019, "ProfiTrade 90 Ltd." },
- { 25020, "MobilMail Ltd." },
- { 25021, "Devon County Council" },
- { 25022, "Medox Exchange, Inc." },
- { 25023, "Cyberspace Technology Corporation Ltd." },
- { 25024, "Auriga" },
- { 25025, "Concentrum, Inc." },
- { 25026, "Linear Equipamentos Eletr\0303\0264nicos S.A." },
- { 25027, "Billerud AB" },
- { 25028, "WebService Sp. z o.o." },
- { 25029, "Antek Healthware LLC" },
- { 25030, "Ward-Beck Systems" },
- { 25031, "Network Orange Inc" },
- { 25032, "DACI Com\0303\0251rcio e Servi\0303\0247os de Equipamentos de Inform\0303\0241tica Ltda." },
- { 25033, "Naztec, Inc." },
- { 25034, "Dima Ltda." },
- { 25035, "JINAN DEAN COMPUTER TECHNOLOGY CO LTD" },
- { 25036, "Kantonsschule Romanshorn" },
- { 25037, "Novovia" },
- { 25038, "denver health" },
- { 25039, "vitroconnect systems GmbH (formerly 'infinity-3 GmbH')" },
- { 25040, "Keytronix GmbH." },
- { 25041, "Microsol Ltd." },
- { 25042, "JDM Software BV" },
- { 25043, "litts.net" },
- { 25044, "CapWIN" },
- { 25045, "MET/Administration wallonne/Belgique" },
- { 25046, "GlobalTouch Telecom" },
- { 25047, "Fluid4 Studios" },
- { 25048, "Synchronica PLC" },
- { 25049, "Opengear Inc." },
- { 25050, "IT Knows ApS" },
- { 25051, "Pythagoras Software (UK)" },
- { 25052, "Idya Bt." },
- { 25053, "Ruckus Wireless, Inc." },
- { 25054, "Carillon Information Security Inc." },
- { 25055, "Oxford ArchDigital" },
- { 25056, "Hungarian Television Corporation" },
- { 25057, "Rural Technologies Inc" },
- { 25058, "Bain Capital LLC" },
- { 25059, "Abicom International" },
- { 25060, "pbxnsip Inc." },
- { 25061, "Domaingruppe Riemann2000.de" },
- { 25062, "MessageOne Inc" },
- { 25063, "American Tribu Corp" },
- { 25064, "Women's Health Services" },
- { 25065, "Identity Engines Inc." },
- { 25066, "PELCO" },
- { 25067, "G Central" },
- { 25068, "Axistech" },
- { 25069, "LISA! Reisen GmbH" },
- { 25070, "MULTICERT - Servicos de Certificacao Electronica S.A." },
- { 25071, "Teradici Corporation" },
- { 25072, "LFW ENTERPRISES, INC." },
- { 25073, "Thinking Phone Networks, Inc." },
- { 25074, "Presbyterian Healthcare Services" },
- { 25075, "Inventec Multimedia & Telecom(Tianjin) Co.,Ltd." },
- { 25076, "45RU TRUST" },
- { 25077, "BGC Australia Pty Ltd" },
- { 25078, "MKQ Internetservice" },
- { 25079, "Gyanasoft Inc" },
- { 25080, "Beluga Software, Inc." },
- { 25081, "Universidad de Chile" },
- { 25082, "FishNet Connect" },
- { 25083, "Sirius Creations" },
- { 25084, "Argent Productions" },
- { 25085, "Metrocast Cablevision LLC" },
- { 25086, "Sydney Missionary and Bible College Ltd." },
- { 25087, "HWS" },
- { 25088, "Transactional Records Access Clearinghouse" },
- { 25089, "DSK Bank PLC" },
- { 25090, "Ambientia Oy" },
- { 25091, "Piranha Messtechnik GmbH & Co. KG" },
- { 25092, "Aptic AB" },
- { 25093, "GreysonBaines Innovation" },
- { 25094, "Vonage Holdings Corp" },
- { 25095, "XenIT GmbH" },
- { 25096, "Maimonides Medical Center" },
- { 25097, "TJX Companies" },
- { 25098, "Reflectent Software, Inc." },
- { 25099, "H.E.B. Company Inc." },
- { 25100, "Hochschule Vechta" },
- { 25101, "Dataarmor Pvt Ltd." },
- { 25102, "Phyxia Networks" },
- { 25103, "Netsol International Argentina S.A." },
- { 25104, "Gannett Co., Inc." },
- { 25105, "Cable & Wireless Jamaica" },
- { 25106, "CSE Sh.p..k." },
- { 25107, "Stan Winston Studio" },
- { 25108, "iRadeon, Inc." },
- { 25109, "Wireless Edge Canada Inc." },
- { 25110, "Vanguard Technology Corp." },
- { 25111, "VODCA" },
- { 25112, "Top Gun Drywall Supply" },
- { 25113, "Konstructiv Ltd." },
- { 25114, "SSE INFONET LTD" },
- { 25115, "Delbuilt(Pty)Ltd" },
- { 25116, "EBInteractive" },
- { 25117, "ID Innovative Datenverarbeitung GmbH" },
- { 25118, "StanaPhone LLC" },
- { 25119, "Adder Technology Limited" },
- { 25120, "SAGUAPAC" },
- { 25121, "Temex Sync" },
- { 25122, "Hauk & Sasko GmbH" },
- { 25123, "Barco Orthogon GmbH" },
- { 25124, "Trade-On-Technology Holdings" },
- { 25125, "ALWIL Software" },
- { 25126, "Jackson State University" },
- { 25127, "Radialink Corp" },
- { 25128, "BreastScreen Victoria" },
- { 25129, "SFBC Anapharm Inc." },
- { 25130, "Scouts of Greece, 10th Group of Akropoli, Thessaloniki" },
- { 25131, "P-tec Co., Ltd." },
- { 25132, "Redeal Ltd" },
- { 25133, "HKU School of Professional and Continuing Education" },
- { 25134, "ComDesign Inc." },
- { 25135, "Ministerul pentru Societatea Informa\0310\0233ional\0304\0203 (formerly 'Ministerul Comunicatiilor si Tehnologiei Informatiei')" },
- { 25136, "Haute Ecole Arc" },
- { 25137, "Voronezh State Pedagogical University" },
- { 25138, "Alyseo" },
- { 25139, "Adept Internet (Pty) Ltd" },
- { 25140, "Institut Catholique de Toulouse" },
- { 25141, "La Poste" },
- { 25142, "IP Control Systems Ltd." },
- { 25143, "Damovo Deutschland Gmbh & Co. KG" },
- { 25144, "Perpustakaan Institut Pertanian Bogor" },
- { 25145, "Netzwerk f\0303\0274r Kinder- & Jugendarbeit e.V." },
- { 25146, "Cyprus Research and Academic Network" },
- { 25147, "Internet Solutions" },
- { 25148, "Pivot3, Inc." },
- { 25149, "National Electronics and Computer Technology Center" },
- { 25150, "KK-DENSO.Co.Ltd" },
- { 25151, "Dragontech Corporation Limited" },
- { 25152, "UpTime New Zealand Ltd." },
- { 25153, "AvanSec" },
- { 25154, "Seeker Wireless Pty Ltd" },
- { 25155, "Unisis Solutions Corporation" },
- { 25156, "GECI GmbH" },
- { 25157, "Beckhoff Automation GmbH" },
- { 25158, "Aros Magic" },
- { 25159, "OJSC Svyazintek" },
- { 25160, "Arackal Digital Solutions Inc" },
- { 25161, "Telavox AB" },
- { 25162, "Industrias I, S.C." },
- { 25163, "Broadband Power Solutions" },
- { 25164, "Interpay" },
- { 25165, "FMN communications GmbH" },
- { 25166, "Fachhochschule Muenster" },
- { 25167, "Genexis B.V." },
- { 25168, "Edentity Labs Ltd" },
- { 25169, "Avco Systems Ltd" },
- { 25170, "AFA Systems srl" },
- { 25171, "Armbruster IT" },
- { 25172, "Integra Soluciones Avanzadas, S.L." },
- { 25173, "MET-Minist\0303\0250re de l'Equipement et des Transports" },
- { 25174, "NetOp as" },
- { 25175, "DCN" },
- { 25176, "Familie Uhlig" },
- { 25177, "VAS \"Latvijas Pasts\"" },
- { 25178, "Trans-European Research and Education Networking Association" },
- { 25179, "GESA Elektronik GmbH" },
- { 25180, "Itonis Ltd." },
- { 25181, "HEBUS SARL" },
- { 25182, "University of Tampere" },
- { 25183, "SS WorkGroup Solutions" },
- { 25184, "Zinwave Limited" },
- { 25185, "Banco Esp\0303\0255rito Santo, S.A." },
- { 25186, "Uwe Daube" },
- { 25187, "A.Ir.Br. Associations des Ing\0303\0251nieurs sortis de l'Universit\0303\0251 Libre" },
- { 25188, "Bob Jones University" },
- { 25189, "INVIA" },
- { 25190, "ETI A/S" },
- { 25191, "Smart Bear Inc" },
- { 25192, "Positive Networks, Inc." },
- { 25193, "Wireless Nomad Co-operative Inc." },
- { 25194, "Bizanga Ltd" },
- { 25195, "Waha Oil Company" },
- { 25196, "TM Software" },
- { 25197, "eLearningRecord" },
- { 25198, "SmartServ Web Hosting & Design" },
- { 25199, "Kobe University" },
- { 25200, "TurkTel Ltd." },
- { 25201, "Uniwell Electronics Ltd." },
- { 25202, "Beechler Real Estate Services" },
- { 25203, "Pete Rushmere" },
- { 25204, "Prodato Integration Technology GmbH" },
- { 25205, "Movial Corporation" },
- { 25206, "Axxess Identification Limited" },
- { 25207, "JSC \"ATLAS\"" },
- { 25208, "CSC Scandihealth A/S" },
- { 25209, "CURON Inc." },
- { 25210, "bizEbox" },
- { 25211, "Edison Electric Corp." },
- { 25212, "Initworks B.V." },
- { 25213, "Nexus Web AS" },
- { 25214, "Minnesota Judicial Branch" },
- { 25215, "Novacell Solutions Ltd" },
- { 25216, "ADI Video Technologies" },
- { 25217, "Nautilus Hyosung" },
- { 25218, "httv" },
- { 25219, "RPSoft" },
- { 25220, "sportcentric Systems" },
- { 25221, "Viewpoint Construction Software" },
- { 25222, "Blue Gecko Inc." },
- { 25223, "Mindbreeze Software GmbH" },
- { 25224, "Grupo Pochteca SA de CV" },
- { 25225, "The Austin Diagnostic Clinic, P.A." },
- { 25226, "MaxMD" },
- { 25227, "Ohio Department of Transportation" },
- { 25228, "NAV Canada" },
- { 25229, "Swedish Alliance for Middleware" },
- { 25230, "The Ohio Casualty Insurance Company" },
- { 25231, "Riverforge LLC" },
- { 25232, "Linog consulting" },
- { 25233, "ACS" },
- { 25234, "Emdeon Corporation" },
- { 25235, "Windrush Frozen Foods Ltd" },
- { 25236, "Invitrogen Corporation" },
- { 25237, "L-3 Communications/Narda Satellite Networks" },
- { 25238, "GreenLight Networks" },
- { 25239, "Tknika" },
- { 25240, "Peggy A. Pugh, MD, CPC" },
- { 25241, "Proximus Information Technologies" },
- { 25242, "ACTORS CONSULTING" },
- { 25243, "Agglut Technologies, Inc." },
- { 25244, "BrightNet Oklahoma" },
- { 25245, "Order of St. Charbel" },
- { 25246, "South-Russia State Technical University" },
- { 25247, "DANDELION C.A." },
- { 25248, "Solidcore Systems Inc" },
- { 25249, "Dispuut Interlink" },
- { 25250, "AnQ Systems, Ltd." },
- { 25251, "Princeton Alliance Church" },
- { 25252, "vptechnologies srl" },
- { 25253, "MFEC Public Company Limited" },
- { 25254, "Makena Technologies, Inc." },
- { 25255, "Broadsoft Systems" },
- { 25256, "Nable Communications, Inc." },
- { 25257, "Sipera Systems Inc" },
- { 25258, "Randombit Consulting" },
- { 25259, "JWR Software Services Ltd" },
- { 25260, "Frauerpower!" },
- { 25261, "Westenberg & Kueppers GbR" },
- { 25262, "Network Automation" },
- { 25263, "mareco gmbh" },
- { 25264, "Propolys" },
- { 25265, "Dave Pusey - IT Services" },
- { 25266, "FUH EOS" },
- { 25267, "Virtual Synthesis" },
- { 25268, "enfon" },
- { 25269, "CFNetTools" },
- { 25270, "MeepZor Consulting" },
- { 25271, "Lotus Interworks, Inc." },
- { 25272, "GRUPO XMARTS SA DE CV" },
- { 25273, "Konsole Network" },
- { 25274, "IT2Media GmbH" },
- { 25275, "Peter Hall" },
- { 25276, "Gear6" },
- { 25277, "Pekao Inc." },
- { 25278, "Canon Electronics Inc." },
- { 25279, "Nasdaq MTS (formerly 'OMX Group')" },
- { 25280, "Market Pulse International" },
- { 25281, "Westerstrand Urfabrik AB" },
- { 25282, "MDK Baden-W\0303\0274rttemberg" },
- { 25283, "CONSEIL GENERAL DU CHER" },
- { 25284, "Taylor Made Computer Solutions Ltd" },
- { 25285, "Beheer-Net" },
- { 25286, "Open Logic Solutions Ltd." },
- { 25287, "Megabit Informationstechnik GmbH" },
- { 25288, "onShore Development" },
- { 25289, "Alabama A&M University" },
- { 25290, "Convert Italia SpA" },
- { 25291, "Zeacom Ltd." },
- { 25292, "Skagit County Government" },
- { 25293, "MaxMD" },
- { 25294, "EESTEC International" },
- { 25295, "Affiniti" },
- { 25296, "VeriCenter, Inc" },
- { 25297, "Hotxt Ltd" },
- { 25298, "Rohm and Haas Company" },
- { 25299, "Rodic M&B-Co d.o.o." },
- { 25300, "OfficeNet AS" },
- { 25301, "Netauth Consulting" },
- { 25302, "Deakin University" },
- { 25303, "subnetz.computing GmbH" },
- { 25304, "Demon Netherlands" },
- { 25305, "Vodafone Holding GmbH, FPU-CEC" },
- { 25306, "Sunmine Communications" },
- { 25307, "Mintel Group Ltd" },
- { 25308, "MDES" },
- { 25309, "Manchester Airport (MHT)" },
- { 25310, "Internet Society Luxembourg ASBL" },
- { 25311, "RedeDominios.com" },
- { 25312, "NexTag Inc." },
- { 25313, "Visual Development" },
- { 25314, "New Visual Wave Cable Communications Co., LTD." },
- { 25315, "E-wang information Systems Inc" },
- { 25316, "Karolinska Institutet" },
- { 25317, "Ixanon AB" },
- { 25318, "NEXCON Telecomunicaciones S.L." },
- { 25319, "AccessPt Inc." },
- { 25320, "University of Vaasa" },
- { 25321, "The American Board of Anesthesiology" },
- { 25322, "Alarius Systems LLC" },
- { 25323, "AirPatrol Corporation" },
- { 25324, "Rock Hill Telephone Company" },
- { 25325, "Trustserver S. L." },
- { 25326, "FurreVille" },
- { 25327, "Visible World Inc." },
- { 25328, "Deasil Systems INC" },
- { 25329, "Henfield AB" },
- { 25330, "The Nation" },
- { 25331, "NOW! Consulting GmbH" },
- { 25332, "CADLock, Inc." },
- { 25333, "Packetframe, Inc." },
- { 25334, "Ashantiplc Limited" },
- { 25335, "SEAMAX MANUFACTURING PTE.LTD" },
- { 25336, "DSO National Laboratories" },
- { 25337, "ChinaCache" },
- { 25338, "RK Systems" },
- { 25339, "EMC TECH CO., LTD." },
- { 25340, "Tiroler Gebietskrankenkasse" },
- { 25341, "Immosys LLC" },
- { 25342, "IRCCS Policlinico S.Matteo" },
- { 25343, "Fachhochschule Frankfurt am Main - University of Applied Sciences" },
- { 25344, "BlackSpider Technologies Ltd." },
- { 25345, "Conseil G\0303\0251n\0303\0251ral du Val d'Oise" },
- { 25346, "SAMCA" },
- { 25347, "Tetra Networking V.O.F." },
- { 25348, "SJB Communications" },
- { 25349, "CDSw - City Data Software, s.r.o." },
- { 25350, "Haymarket Publishing Services Limited" },
- { 25351, "AMAG Automobil- und Motoren AG" },
- { 25352, "Kuwait Meteorological Department" },
- { 25353, "Gibson, Dunn & Crutcher LLP" },
- { 25354, "Travel Svcs llc" },
- { 25355, "Shenzhen Haishuo Technologies Co.Ltd" },
- { 25356, "E2E IT Solutions Pty. Ltd." },
- { 25357, "Dotstream" },
- { 25358, "HUBER+SUHNER AG" },
- { 25359, "Perspektiv Bredband AB" },
- { 25360, "SMACL" },
- { 25361, "Dr. Jan-Hendrik D\0303\0266rner" },
- { 25362, "Headroom Broadcast GmbH" },
- { 25363, "Medical Imaging Software Amsterdam" },
- { 25364, "Studio Tre s.r.l." },
- { 25365, "Digitum Ltd." },
- { 25366, "Iptic Systems" },
- { 25367, "Mobile Streams PLC" },
- { 25368, "Association Crans" },
- { 25369, "Reliact Solutions S.L." },
- { 25370, "ExtendASP LLC" },
- { 25371, "Arcitecta Pty. Ltd." },
- { 25372, "Pegasus Consultants (SW) Ltd" },
- { 25373, "Universidade Estadual do Sudoeste da Bahia" },
- { 25374, "Universit\0303\0244t Hamburg, Regionales Rechenzentrum / Hamburg University, Computing Center" },
- { 25375, "NextSysSecure, Inc." },
- { 25376, "Suretec Systems Ltd." },
- { 25377, "Bauman Moscow State Technical University" },
- { 25378, "Schrodinger, Inc." },
- { 25379, "American Chartered Bank" },
- { 25380, "Michael D'Errico" },
- { 25381, "Rx Networks Inc." },
- { 25382, "Nanite Services Limited" },
- { 25383, "TiChou" },
- { 25384, "Alliant Energy" },
- { 25385, "Societe anonyme de la Communication Securisee" },
- { 25386, "ELETEX Co. Ltd." },
- { 25387, "xcurenet" },
- { 25388, "Gadget Factory Ltd." },
- { 25389, "Westcoast University of Applied Sciences" },
- { 25390, "Ulrich Flamm" },
- { 25391, "SECURE-IT SA" },
- { 25392, "inabensa" },
- { 25393, "Alliant Technologies" },
- { 25394, "Sunflower Technologies" },
- { 25395, "Aquila, Inc." },
- { 25396, "Digital Alchemists GmbH" },
- { 25397, "Primetime Medical Software" },
- { 25398, "GeoForschungsZentrum Potsdam" },
- { 25399, "RHnet Inc." },
- { 25400, "InterSystems USA" },
- { 25401, "MU Net, Inc." },
- { 25402, "FlanTel Communications" },
- { 25403, "ClearCanvas Inc." },
- { 25404, "citadel.org (the Citadel groupware project)" },
- { 25405, "Boston Linux & Unix" },
- { 25406, "Iptivia Inc" },
- { 25407, "Engiby s\0303\0240rl" },
- { 25408, "BarNet" },
- { 25409, "Superclick Networks Inc" },
- { 25410, "Technical Resources International" },
- { 25411, "Training Team Srl" },
- { 25412, "OrcaWare Technologies" },
- { 25413, "FH-Trier, University of Applied Sciences" },
- { 25414, "City of Henderson, Nevada" },
- { 25415, "crosscert" },
- { 25416, "Active Database Team" },
- { 25417, "rootKlub.org" },
- { 25418, "INED - Institut National d'Etudes Demographiques" },
- { 25419, "CompanyName" },
- { 25420, "maf" },
- { 25421, "Postini, Inc." },
- { 25422, "Vilnius University" },
- { 25423, "Babs Paylink AB" },
- { 25424, "Norcontrol IT (Pty) Ltd" },
- { 25425, "Condor LebensversicherungsAG" },
- { 25426, "LenSoft Ltd." },
- { 25427, "Avenda Systems, Inc." },
- { 25428, "AGMEN" },
- { 25429, "Comarch S.A." },
- { 25430, "Netspecialisten" },
- { 25431, "Ingenico" },
- { 25432, "ServersCheck BVBA" },
- { 25433, "HaiVision Systems Inc." },
- { 25434, "Engineering School of Geneva EIG" },
- { 25435, "Great Lakes Internet, Inc." },
- { 25436, "Loren Data Corp." },
- { 25437, "Chair MMSP of Perm State Technical University" },
- { 25438, "B-one Aps" },
- { 25439, "Digital Genesis Technologies" },
- { 25440, "Radiqal, LLC" },
- { 25441, "lagis Internet Service Provider GmbH" },
- { 25442, "AIRAYA Corp" },
- { 25443, "louismc" },
- { 25444, "Fastwire" },
- { 25445, "AstralBlue" },
- { 25446, "Burn Networks Pty Ltd" },
- { 25447, "Jireh International Inc." },
- { 25448, "Verari Systems, Inc" },
- { 25449, "Beijing Easy Broadband Technology Co.,Ltd." },
- { 25450, "eTraintronics.com" },
- { 25451, "UFPS Tymenskoy oblasti - filial FGUP \"Pochta Rossii\"" },
- { 25452, "Sikom Software GmbH" },
- { 25453, "Seaview Support Systems Pvt Ltd" },
- { 25454, "LiComm Co., Ltd." },
- { 25455, "Trinodal S.L." },
- { 25456, "Wooribyul Telecom Co., Ltd." },
- { 25457, "Schweizerische Bibliothek f&#252;r Blinde und Sehbehinderte" },
- { 25458, "XtraMind Technologies GmbH" },
- { 25459, "BON.net Ltd" },
- { 25460, "ComputerLand S.A." },
- { 25461, "PALO ALTO NETWORKS" },
- { 25462, "Applied Wireless Identifications Group, Inc" },
- { 25463, "NanShanBridge Co.Ltd" },
- { 25464, "Demarc Technology Group, LLC" },
- { 25465, "First Standards Organisation (FSO)" },
- { 25466, "Asia Bank Card Union (ABCUnion.org)" },
- { 25467, "B-Lex Information Technologies" },
- { 25468, "Fortica Ltd." },
- { 25469, "Aliasource" },
- { 25470, "North Suburban Access Corp." },
- { 25471, "Gridpoint Systems" },
- { 25472, "Alltek Technology Corp." },
- { 25473, "Telelogos" },
- { 25474, "Lisis NV" },
- { 25475, "Innovant Pty Ltd" },
- { 25476, "VideoCells Ltd." },
- { 25477, "alpha nova BetriebsgesmbH" },
- { 25478, "Local Solutions" },
- { 25479, "X-Tend" },
- { 25480, "Congruentix LLC" },
- { 25481, "Convergin Ltd." },
- { 25482, "Global Village Data Solutions" },
- { 25483, "iScience Surgical" },
- { 25484, "AKDB" },
- { 25485, "Patentanwaltskanzlei Horns" },
- { 25486, "Asset Archives, Inc." },
- { 25487, "Bishop Technologies, Inc." },
- { 25488, "V2 Telecom Ltda." },
- { 25489, "Henrik Nordstrom Consulting" },
- { 25490, "Wagner Tiefkuehlprodukte GmbH" },
- { 25491, "National Bank of the Republic of Belarus" },
- { 25492, "Ruukki" },
- { 25493, "VNUnet Europe" },
- { 25494, "Ivan Dolezal" },
- { 25495, "Optimacom S\0303\0240rl" },
- { 25496, "CEMES-CNRS" },
- { 25497, "Transbit Spolka z o.o." },
- { 25498, "InSecMa Solutions GmbH" },
- { 25499, "GuideCom GmbH" },
- { 25500, "Interkey, Inc." },
- { 25501, "VaultLab, Inc" },
- { 25502, "AccuRev, Inc." },
- { 25503, "Network Integrity Systems Inc." },
- { 25504, "St. Edward's University Inc" },
- { 25505, "SpaceNetwork" },
- { 25506, "H3C" },
- { 25507, "Japan Maritime Self-Defense Force" },
- { 25508, "narraSoft Philippines, Inc." },
- { 25509, "C.MER" },
- { 25510, "Symedia S.A." },
- { 25511, "SPALE NETWORKS" },
- { 25512, "simple-networks" },
- { 25513, "VirtualLink Technologies Pte. Ltd." },
- { 25514, "yatininc" },
- { 25515, "LKH Villach" },
- { 25516, "Verizonbusiness" },
- { 25517, "Criterium Solu\0303\0247\0303\0265es em Inform\0303\0241tica Ltda" },
- { 25518, "StorCase Technology, Inc." },
- { 25519, "Washington County School District" },
- { 25520, "Quadrics Ltd" },
- { 25521, "NextConnect Ltd" },
- { 25522, "Renko Technologies" },
- { 25523, "Homecast Co., Ltd." },
- { 25524, "Open Source Hardware Engineering Community (OSHEC)" },
- { 25525, "TC&C Telecommunication and Computer Technology Ltd." },
- { 25526, "IPRocess" },
- { 25527, "Nebraska Public Power District" },
- { 25528, "Laborat\0303\0263rio Nacional de Computa\0303\0247\0303\0243o Cient\0303\0255fica" },
- { 25529, "World Links" },
- { 25530, "AirDat LLC" },
- { 25531, "B2E Technologies PTY LTD" },
- { 25532, "BCA Services Ltd." },
- { 25533, "IdentityForge, LLC." },
- { 25534, "Lusan Systems" },
- { 25535, "Klas Ltd." },
- { 25536, "Probaris Technologies, Inc." },
- { 25537, "Thomas Friedl" },
- { 25538, "GNU Telephony" },
- { 25539, "Osaka University" },
- { 25540, "NetToolWorks, Inc." },
- { 25541, "JStream Technologies, Inc." },
- { 25542, "Ortikon Interactive Oy" },
- { 25543, "Microbit 2.0 AB" },
- { 25544, "Iptune Ltd." },
- { 25545, "EADS-CASA" },
- { 25546, "Boots Group PLC" },
- { 25547, "VION" },
- { 25548, "OpenCraft" },
- { 25549, "STAR Group" },
- { 25550, "zhihao" },
- { 25551, "AMEC" },
- { 25552, "Poxix" },
- { 25553, "Sonas Innovation Ltd" },
- { 25554, "WiderWeb Ltd" },
- { 25555, "Social Science Research Council" },
- { 25556, "Beyond 2000 Ltd" },
- { 25557, "Xerox -ORG" },
- { 25558, "Infoblox, WinConnect (formerly 'Ipanto')" },
- { 25559, "Tivella Inc." },
- { 25560, "Ministerio Publico do DF e Territorios" },
- { 25561, "Telecom Protection Technologies Limited" },
- { 25562, "Firmix Software GmbH" },
- { 25563, "Stadtverwaltung Duesseldorf" },
- { 25564, "T7 e.V." },
- { 25565, "pixality GmbH" },
- { 25566, "Staatl. gepr. Inf. Markus KARG" },
- { 25567, "Cingular Wireless LLC" },
- { 25568, "Douglas Fast Net" },
- { 25569, "Points South" },
- { 25570, "Mackelprang Research" },
- { 25571, "nDosa Technologies Inc" },
- { 25572, "Columbia International College" },
- { 25573, "Point Clark Networks Ltd." },
- { 25574, "FXC Inc." },
- { 25575, "Bevuta" },
- { 25576, "AXMEDIS Organisation" },
- { 25577, "Norlinx, Inc" },
- { 25578, "Interchange Corporation" },
- { 25579, "Info Tech, Inc." },
- { 25580, "Universidad de El Salvador" },
- { 25581, "Musmap Team" },
- { 25582, "Employease Inc." },
- { 25583, "gfk" },
- { 25584, "Axzona Ltd" },
- { 25585, "Infoglobal, S.A." },
- { 25586, "Unified Group Ltd" },
- { 25587, "Jinitech Inc." },
- { 25588, "University of Texas Center for Agile Technology" },
- { 25589, "Comune di Cagliari" },
- { 25590, "Tecnoworld Com. Imp. Exp. Ltda." },
- { 25591, "National Clearinghouse for Rehabilitation Training Materials" },
- { 25592, "Intercorp" },
- { 25593, "Aethernet Ltd" },
- { 25594, "Gollard" },
- { 25595, "CZ.NIC, z.s.p.o." },
- { 25596, "DigitalSign - Certificadora Digital" },
- { 25597, "FireEye Inc." },
- { 25598, "Gehlbach Technical Services, Inc." },
- { 25599, "SecureNet PL" },
- { 25600, "EzValidation Inc." },
- { 25601, "FSP Computer & Netzwerke" },
- { 25602, "Telekom Austria AG" },
- { 25603, "Locube.com" },
- { 25604, "Agos S.p.A." },
- { 25605, "Ingenieurbuero T. Scholz" },
- { 25606, "USi" },
- { 25607, "Andritz AG" },
- { 25608, "Iritec" },
- { 25609, "StreamVision" },
- { 25610, "The SEEMIS Group" },
- { 25611, "Lafayette College" },
- { 25612, "Trilliant Networks" },
- { 25613, "CGI Concept" },
- { 25614, "Auroras Entertainment" },
- { 25615, "Computer Savvy" },
- { 25616, "Cardiac Science Corporation" },
- { 25617, "ClearCube Technology" },
- { 25618, "Omnitrol Networks, Inc." },
- { 25619, "Ultragreen" },
- { 25620, "Ost-West Handelsbank AG" },
- { 25621, "Z Microsystems" },
- { 25622, "JANET(UK) (formerly 'UKERNA (United Kingdom Education and Research Networking Association)')" },
- { 25623, "OpenVAS" },
- { 25624, "Kent School District" },
- { 25625, "ChattenAssociates, Inc." },
- { 25626, "Crufty" },
- { 25627, "Ohio Department of Public Safety" },
- { 25628, "Perot Systems Corporation" },
- { 25629, "U.S. Environmental Protection Agency" },
- { 25630, "Groupe Mutuel" },
- { 25631, "International Newspaper Network, LLC" },
- { 25632, "Thorold Alarm" },
- { 25633, "lecentre.net" },
- { 25634, "uniqueobject" },
- { 25635, "Carlo Gavazzi Computing Solutions, Inc." },
- { 25636, "Control Alternative Solutions, Inc." },
- { 25637, "Police Bruxelles CAPITALE Ixelles - ZP 5339" },
- { 25638, "Uniadex, Ltd." },
- { 25639, "KMS Systems Inc" },
- { 25640, "Real SoftService" },
- { 25641, "Papeteries Hamelin" },
- { 25642, "CHP Consulting ltd." },
- { 25643, "Intermediasud" },
- { 25644, "liland open IT solutions GmbH" },
- { 25645, "Community TV GmbH" },
- { 25646, "b.a.b-technologie GmbH" },
- { 25647, "Hungarian Customs Service (VPOP)" },
- { 25648, "Ecole Nationale Veterinaire de Nantes" },
- { 25649, "Technobox, Inc." },
- { 25650, "SunUp Design Systems, Inc." },
- { 25651, "Exalt Communications" },
- { 25652, "Tasneem Electronics L.L.C" },
- { 25653, "Oakley Networks, Inc." },
- { 25654, "Psi Systems, Inc." },
- { 25655, "MIMS SA" },
- { 25656, "Axo\0303\0257de EURL" },
- { 25657, "NWCG" },
- { 25658, "Essentia S.p.A." },
- { 25659, "PolarSat Inc." },
- { 25660, "Starflight Electronics" },
- { 25661, "DataPro Group Limited" },
- { 25662, "Opway Optical Technology(Wuxi)Co.Ltd" },
- { 25663, "InfowareLab Co,Ltd." },
- { 25664, "Terascala, Inc." },
- { 25665, "Essentel Inc." },
- { 25666, "Telenav, INC" },
- { 25667, "Padjen" },
- { 25668, "Battelle Memorial Institute" },
- { 25669, "Mariner Partners Inc." },
- { 25670, "California State University, Fullerton" },
- { 25671, "EC Hugbunadur Ehf" },
- { 25672, "Responsys" },
- { 25673, "Grupo IT Deusto, S.L." },
- { 25674, "jlu.nic.Inc." },
- { 25675, "Test-O-Mat" },
- { 25676, "procilon Gmbh" },
- { 25677, "Action Soft" },
- { 25678, "EMBL Heidelberg" },
- { 25679, "SecureAxis Software" },
- { 25680, "Pixen Technologies Pvt Ltd" },
- { 25681, "Instituto Municipal de Cultura y Juventud de Burjassot" },
- { 25682, "Donley Consulting" },
- { 25683, "Epstein Becker & Green, P.C." },
- { 25684, "Perot Systems Government Services" },
- { 25685, "Hurricane Labs LLC" },
- { 25686, "MCTEL Monaco Telematique" },
- { 25687, "Gendreau & Pelchat" },
- { 25688, "Caixanova" },
- { 25689, "alsatis" },
- { 25690, "REM Probe Ltd" },
- { 25691, "Eyes, Japan Co. Ltd." },
- { 25692, "ANDREAS STIHL AG & Co. KG" },
- { 25693, "InterNetworX Systems Inc." },
- { 25694, "DRS Surveillance Support Systems, Inc." },
- { 25695, "Vestergaard IT" },
- { 25696, "Nedap N.V." },
- { 25697, "BBK" },
- { 25698, "KSB Italia S.p.A." },
- { 25699, "Generic Variables" },
- { 25700, "Protokon Kft." },
- { 25701, "GAMIC mbH" },
- { 25702, "PCSof\0303\0255a" },
- { 25703, "CYBERSYS" },
- { 25704, "inter-touch (Malaysia) Sdn. Bhd." },
- { 25705, "Pixtree Technologies, Inc." },
- { 25706, "ViaScope Int." },
- { 25707, "Marksman" },
- { 25708, "Milde Software Solutions (MSS)" },
- { 25709, "Windstream Communications Inc" },
- { 25710, "Phoenix Worldwide Industries, Inc." },
- { 25711, "Coral8, Inc." },
- { 25712, "The Higher Gear Group, Inc." },
- { 25713, "Magyar Telekom" },
- { 25714, "Chengdu Guyue Electronics Co.,Ltd" },
- { 25715, "JumpTV.com Inc." },
- { 25716, "Manuel Dom\0303\0255nguez Hidalgo" },
- { 25717, "Ravn Webveveriet AS" },
- { 25718, "Taction" },
- { 25719, "Polysys Ltd." },
- { 25720, "Ingenieurb\0303\0274ro Kuhlmann" },
- { 25721, "Linwave Technology" },
- { 25722, "Integrated Financial Arrangements plc" },
- { 25723, "Phoenix-Database Informationstechnologie GmbH" },
- { 25724, "Universiti Sains Malaysia" },
- { 25725, "SOSeth" },
- { 25726, "Cyrix Technologies Limited" },
- { 25727, "Q9 Networks Inc." },
- { 25728, "ZAO Light Communication" },
- { 25729, "Radiodata GmbH" },
- { 25730, "ASmith Home" },
- { 25731, "Web Xtreme, Inc." },
- { 25732, "Mirago plc" },
- { 25733, "Cellact Ltd." },
- { 25734, "Bolignet-Aarhus" },
- { 25735, "Visionee s.r.l." },
- { 25736, "Duval County Public Schools" },
- { 25737, "Reality Communications" },
- { 25738, "INFOLOG GmbH" },
- { 25739, "INTERMET Ueckermuende" },
- { 25740, "Nakamura Technologies Ltd." },
- { 25741, "Ariane Ingenierie" },
- { 25742, "ALDI Einkauf GmbH & Co. oHG" },
- { 25743, "Krontek Pty Ltd" },
- { 25744, "Avillon Networks" },
- { 25745, "Smart Communications, Inc" },
- { 25746, "ARCADIA LAB srl" },
- { 25747, "YellowJacket Software, Inc." },
- { 25748, "Templer Wirtschaftsing.-Buero" },
- { 25749, "CenGen, Inc." },
- { 25750, "SAM Group, Inc." },
- { 25751, "Python Technology Limited" },
- { 25752, "Gallery Solo" },
- { 25753, "KPH Computers" },
- { 25754, "Shanghai onLAN Communication Tech.Co.,Ltd." },
- { 25755, "Liferay, LLC" },
- { 25756, "Mahidol Wittayanusorn (Public Organization)" },
- { 25757, "Minister of Interior of Saudi Arabia" },
- { 25758, "SIF Inc." },
- { 25759, "Almen Laboratories, Inc." },
- { 25760, "Doctors Telehealth Network" },
- { 25761, "ABB Automation GmbH" },
- { 25762, "PersonalOffice" },
- { 25763, "Happydoo SAS" },
- { 25764, "Exmos Ltd" },
- { 25765, "Barclays Global Investors Ltd" },
- { 25766, "Christie Digital Systems" },
- { 25767, "Koya Ixis, S. C." },
- { 25768, "DATAllegro, Inc." },
- { 25769, "UTRONIX Elektronikutveckling AB" },
- { 25770, "chatelp.org" },
- { 25771, "Mobile 365, Inc." },
- { 25772, "Astha Technologies Pvt. Ltd." },
- { 25773, "Wemeus" },
- { 25774, "BCEAO" },
- { 25775, "midPhase Services, Inc" },
- { 25776, "Hangzhou zhongwei electronics Ltd." },
- { 25777, "technoms" },
- { 25778, "Irkutsk State Transport University (IrGUPS)" },
- { 25779, "MITO-Performance" },
- { 25780, "Sanchin Consulting AB" },
- { 25781, "NetFort Technologies Limited" },
- { 25782, "MSA management solutions GmbH" },
- { 25783, "Bluecom C.A." },
- { 25784, "Deutsche Provinz der Salesianer Don Boscos KoeR" },
- { 25785, "Universitat Polit\0303\0250cnica de Catalunya (UPC)" },
- { 25786, "AgileSoft BVBA" },
- { 25787, "dox.at. Softwareentwicklungs und Dienstleistungs GmbH" },
- { 25788, "DAIMS Ltd." },
- { 25789, "Digital Work Co.,Ltd." },
- { 25790, "Sirona Dental Systems GmbH" },
- { 25791, "certSign.eu" },
- { 25792, "Leader.IT" },
- { 25793, "H\0303\0244fele GmbH & co. KG" },
- { 25794, "XSALTO" },
- { 25795, "Vicarial Technology" },
- { 25796, "Menbit Technology Co., Ltd" },
- { 25797, "Southerland Consulting, Inc." },
- { 25798, "Elaborated Networks GmbH" },
- { 25799, "West Liberty Telephone Company" },
- { 25800, "Ample Communications Inc." },
- { 25801, "Identita Technologies Inc." },
- { 25802, "Aliadis" },
- { 25803, "Total System Services, Inc.." },
- { 25804, "Scala, Inc." },
- { 25805, "Thomson Learning" },
- { 25806, "Sonnet Technologies, Inc." },
- { 25807, "heung to middle school (tin shui wai)" },
- { 25808, "eBiz Ltd." },
- { 25809, "mobileX AG" },
- { 25810, "ABE Software" },
- { 25811, "INLOG SA" },
- { 25812, "Home Gateway Initiative" },
- { 25813, "Sai Furnitures LTD" },
- { 25814, "Subzilla" },
- { 25815, "Wirevox" },
- { 25816, "Roland DG Corporation" },
- { 25817, "Poseidon Networks" },
- { 25818, "The Sakai Foundation" },
- { 25819, "DO|YOU|SOFT" },
- { 25820, "SkyBlue Technologies, Inc." },
- { 25821, "Consilient Technologies Corp." },
- { 25822, "S&T Hungary Ltd." },
- { 25823, "CIO Informatique Industrielle" },
- { 25824, "Dementia 7" },
- { 25825, "Asgard's Realm" },
- { 25826, "Peter J. Leonard Small Business Consulting Services" },
- { 25827, "Big Lots Stores, Inc." },
- { 25828, "Texas Health and Human Services" },
- { 25829, "Beijing superlink telecommunications Co.Ltd" },
- { 25830, "4Players GmbH" },
- { 25831, "Rhinocorps, Ltd. Co." },
- { 25832, "GlobalSCAPE, Inc." },
- { 25833, "Edward W. Sparrow Hospital Association" },
- { 25834, "Interoperabilidad S.A. de C.V." },
- { 25835, "Patientline UK Ltd" },
- { 25836, "Austrian Academy of Sciences" },
- { 25837, "Electronnyi gorod Lld." },
- { 25838, "Tagawa Software Engineering" },
- { 25839, "ISTANTE srl" },
- { 25840, "Logcode SARL" },
- { 25841, "Arakelian Software, Inc." },
- { 25842, "Technica Necesse Est" },
- { 25843, "VoIP.co.uk" },
- { 25844, "Seneca Technology Corporation" },
- { 25845, "MIYATSU CO.,Ltd" },
- { 25846, "AIN Manager & Company, Inc." },
- { 25847, "M-Networks, LLC." },
- { 25848, "Bally Technologies, Inc." },
- { 25849, "deas Deutsche Assekuranz-Makler GmbH" },
- { 25850, "Smart Tech 21, Inc." },
- { 25851, "5by5 Software Ventures Ltd." },
- { 25852, "City Computing Ltd London UK 1767817" },
- { 25853, "Rubin Rt." },
- { 25854, "Multisoft Ltd." },
- { 25855, "Net24 Limited" },
- { 25856, "Free University of Bozen/Bolzano" },
- { 25857, "FEMTO-ST" },
- { 25858, "The Royal College of Surgeons in Ireland" },
- { 25859, "The aKamali Group, Inc." },
- { 25860, "A VonderHaar Networks" },
- { 25861, "Tanapro GmbH" },
- { 25862, "Assist WiseTech S.A." },
- { 25863, "Brenson Pacific Technologies Ltd" },
- { 25864, "VideoPropulsion Interactive Television, Inc" },
- { 25865, "Boise State University" },
- { 25866, "CHU BESANCON" },
- { 25867, "i-qnet" },
- { 25868, "Last Mile Gear" },
- { 25869, "MIRAVID Inc." },
- { 25870, "FHLBanks Office of Finance" },
- { 25871, "Nextwireless. co. ltd." },
- { 25872, "EMM s.r.o." },
- { 25873, "BitlBee Team" },
- { 25874, "GrimIce Inc." },
- { 25875, "Ondrej Svoboda" },
- { 25876, "Gnome Technologies" },
- { 25877, "Portrait International, Inc." },
- { 25878, "FineRF" },
- { 25879, "Mess Creative Electronics B.V." },
- { 25880, "AEB GmbH" },
- { 25881, "Objective Arts" },
- { 25882, "Impinj, Inc." },
- { 25883, "Elspec-Ltd" },
- { 25884, "JPK Instruments AG" },
- { 25885, "TQI - Total Quality on Information" },
- { 25886, "Nethit" },
- { 25887, "Centro Provinciale di Documentazione Modena" },
- { 25888, "Gestion Professionnelle des Services de l'Assurance" },
- { 25889, "IFETH Ltd., U.K." },
- { 25890, "MNG Networks GmbH" },
- { 25891, "Sms Systems" },
- { 25892, "Teletronics International, Inc." },
- { 25893, "Dexterra Inc." },
- { 25894, "Blue Cross and Blue Shield of Louisiana" },
- { 25895, "PS Webhosting" },
- { 25896, "Sento Corporation" },
- { 25897, "Alligacom Inc." },
- { 25898, "25th-floor - de Pretis & Helmberger KEG" },
- { 25899, "Kantonsschule Zug" },
- { 25900, "Blue Frog Solutions Inc." },
- { 25901, "Vaquero (formerly 'Linterra')" },
- { 25902, "M&V Werbeagentur GmbH" },
- { 25903, "Palm Beach County" },
- { 25904, "Fresh Agencja Reklamowa Sp. z o.o." },
- { 25905, "Charles University in Prague" },
- { 25906, "Topchiev Institute of Petrochemical Synthesis" },
- { 25907, "EMAP France" },
- { 25908, "Haicku, S. Coop. Mad." },
- { 25909, "IPCMS" },
- { 25910, "Live Software Solutions Ltd." },
- { 25911, "ELCA Informatique SA" },
- { 25912, "PT Teleakses Solusindo (Tel-Access)" },
- { 25913, "Fi-Mesh Networks Private Ltd." },
- { 25914, "Solacom Technologies" },
- { 25915, "BCM Bureautique S.A.R.L" },
- { 25916, "progon engineering" },
- { 25917, "convey Information Systems GmbH" },
- { 25918, "IT-SecuConsult Ltd." },
- { 25919, "NorthSpark AB" },
- { 25920, "Institut de Genetique et Microbiologie ( IGM )" },
- { 25921, "centerra GmbH" },
- { 25922, "teuto.net Netzdienste GmbH" },
- { 25923, "C D P Communications Inc." },
- { 25924, "CatsMuvva.Net" },
- { 25925, "Ready Business System" },
- { 25926, "Computer and Communication (CaC)" },
- { 25927, "Marketcetera LLC" },
- { 25928, "SecureNet Scientific Solutions S.A. de C.V." },
- { 25929, "JHU ACM" },
- { 25930, "ZamKor P. Sagnowski i Wspolnicy Sp. J." },
- { 25931, "Datalan, a.s." },
- { 25932, "8labs.com" },
- { 25933, "Quantum Technology Marketing Ltd" },
- { 25934, "Intraway Corporation" },
- { 25935, "TNT Express Worldwide (UK) Ltd" },
- { 25936, "echternacht new media ohg" },
- { 25937, "NNIT A/S" },
- { 25938, "Axonpro spol. s r.o." },
- { 25939, "Mainstream Technologies, s.r.o." },
- { 25940, "Lyc\0303\0251e Technique d'Ettelbruck" },
- { 25941, "WiComm mmc" },
- { 25942, "DigiVox B.V." },
- { 25943, "pixus.net" },
- { 25944, "Psychotronics" },
- { 25945, "Landwehr EDV Technik" },
- { 25946, "cintrixx technologies" },
- { 25947, "Halloo Communications, Inc." },
- { 25948, "Yellowbank" },
- { 25949, "China Agricultural University" },
- { 25950, "FlyLady & Company, Inc." },
- { 25951, "Hutman, Inc" },
- { 25952, "EyeQ Informationstechnik & Multimedia, Reinhard Sucker & Sohn GbR" },
- { 25953, "Getitsafe" },
- { 25954, "XERON" },
- { 25955, "Observit Lda" },
- { 25956, "Talk-A-Phone Co." },
- { 25957, "ATITEL LTDA" },
- { 25958, "Secure Networks Lda." },
- { 25959, "Raia & Cia Ltda." },
- { 25960, "Hour Hand Productions Inc." },
- { 25961, "Bizfon, Inc." },
- { 25962, "Larson Technology" },
- { 25963, "California State University Stanislaus" },
- { 25964, "sPearWay Ltd." },
- { 25965, "Pennsylvania Legislative Data Processing Center" },
- { 25966, "CBS Broadcasting Inc." },
- { 25967, "Packetware Inc" },
- { 25968, "Rabid Dog Labs" },
- { 25969, "SeMarket, S.A." },
- { 25970, "Pmovil Ltda." },
- { 25971, "SGV" },
- { 25972, "SUPERCOM" },
- { 25973, "Nexge Technologies (P) Ltd" },
- { 25974, "Freedom9 Inc." },
- { 25975, "REUNA" },
- { 25976, "Secours Catholique" },
- { 25977, "Bausparkasse Schw\0303\0244bisch Hall AG" },
- { 25978, "EGeen" },
- { 25979, "Mavenir Systems, Inc." },
- { 25980, "Van Shung Chong Holdings Limited" },
- { 25981, "Sapian SA" },
- { 25982, "Hillcrest Laboratories, Inc." },
- { 25983, "Telecom Design" },
- { 25984, "FAST CORPORATION" },
- { 25985, "JoyTV10 / S-Vox Ltd (formerly 'Rogers Broadcasting Ltd.')" },
- { 25986, "InterGen Services, Inc." },
- { 25987, "Grupo de Investigaci\0303\0263n en Bioingenier\0303\0255a (GIB) CES - EAFIT" },
- { 25988, "AKH Wien" },
- { 25989, "Automata Software Inc." },
- { 25990, "Security Compliance Corp" },
- { 25991, "MasarLabs.com" },
- { 25992, "ACEFHAT , A.I.E." },
- { 25993, "Aspalis SAS" },
- { 25994, "Aspect Capital Ltd" },
- { 25995, "Network-Unlimited" },
- { 25996, "ITRI" },
- { 25997, "Ugly Design, Inc" },
- { 25998, "Assure Programs Pty Ltd" },
- { 25999, "Junger Audio-Studiotechnik GmbH" },
- { 26000, "John Laesch for Congress" },
- { 26001, "Embedded Ventures LLC" },
- { 26002, "Youtility Solutions, Inc." },
- { 26003, "Adflex Ltd" },
- { 26004, "CONNECT Software AG" },
- { 26005, "Hessisches Landeskriminalamt DV-kriminalistische Beratungs- und" },
- { 26006, "Personal & Informatik AG" },
- { 26007, "Evert Mouw" },
- { 26008, "Neosis" },
- { 26009, "Sebastian Pasch" },
- { 26010, "Hippogriff LLC" },
- { 26011, "CEPEL" },
- { 26012, "Holmboe Consulting" },
- { 26013, "Kongsberg Seatex AS" },
- { 26014, "Legando AG" },
- { 26015, "Multipolar Corporation Tbk, PT" },
- { 26016, "Rederi AB Transatlantic" },
- { 26017, "Raiffeisenbank (Bulgaria) EAD" },
- { 26018, "Westminster College" },
- { 26019, "nantong vocational college" },
- { 26020, "DePratti Consulting LLC" },
- { 26021, "Ligos Corporation" },
- { 26022, "Kamayo" },
- { 26023, "Fachschaft MPI, TU M\0303\0274nchen" },
- { 26024, "subnet - platform for media art and experimental technologies" },
- { 26025, "Ari Voutilainen" },
- { 26026, "arm4.org" },
- { 26027, "OpenDS.org" },
- { 26028, "MetaSoft" },
- { 26029, "DuroSystems Ltd." },
- { 26030, "Zobel Software GmbH" },
- { 26031, "b-tree GmbH" },
- { 26032, "XINU technologies GmbH" },
- { 26033, "On The Network Co.,Ltd" },
- { 26034, "Adobe Animal Hospital" },
- { 26035, "Alinto SA" },
- { 26036, "Demoniak Network" },
- { 26037, "Dengler Engineering GmbH" },
- { 26038, "Cecom S.A." },
- { 26039, "CESR" },
- { 26040, "T PARTY" },
- { 26041, "Optical Internetworking Forum (OIF)" },
- { 26042, "Music for Life Institute" },
- { 26043, "LaSer Loyalty" },
- { 26044, "Telemacro Informacoes e Servicos Ltda." },
- { 26045, "Wright Patman Congressional Federal Credit Union" },
- { 26046, "interActive Systems GmbH" },
- { 26047, "Fritzinger IT-Consult" },
- { 26048, "Mo-Sys Ltd" },
- { 26049, "Open WWWorks" },
- { 26050, "Ecole Centrale de Marseille" },
- { 26051, "Retep Software" },
- { 26052, "HALYS" },
- { 26053, "Gutjahr GmbH" },
- { 26054, "ARASOR TECHNOLOGIES PRIVATE LIMITED" },
- { 26055, "NordicAware AS" },
- { 26056, "Exxim Computing Corporation" },
- { 26057, "Alpheus Communications, L.P." },
- { 26058, "Codebay Oy" },
- { 26059, "BTECH, Inc." },
- { 26060, "IZT Innovationszentrum Telekommunikationstechnik GmbH" },
- { 26061, "Artesyn Embedded Technologies (formerly 'Emerson Network Power, Embedded Computing')" },
- { 26062, "MZL Software Development" },
- { 26063, "Ankhnet Informations Pvt. Ltd." },
- { 26064, "Braga Moro S.p.A." },
- { 26065, "GECO, Inc." },
- { 26066, "MultiService Forum" },
- { 26067, "Kyland" },
- { 26068, "Shaanxi Key Laboratory of Satellite-Terrestrial Network Tech.R&D" },
- { 26069, "IPG Sales Pty Ltd" },
- { 26070, "neutralities.net" },
- { 26071, "Marcin Raciborski" },
- { 26072, "Beijing Huisen Networks technology Inc" },
- { 26073, "VEUSTEC SERVICOS DE INFORMATICA LTDA" },
- { 26074, "TUSC" },
- { 26075, "x2s Limited" },
- { 26076, "Metrinomics GmbH" },
- { 26077, "Espelt.net" },
- { 26078, "S4Software, Inc." },
- { 26079, "Burk Technology" },
- { 26080, "AR Department of Information Systems" },
- { 26081, "Lars Kornwinkel" },
- { 26082, "CERTIRA" },
- { 26083, "CacheGuard Technologies Ltd. (formerly 'OneTec')" },
- { 26084, "Enter srl" },
- { 26085, "Kunstuniversitaet Linz" },
- { 26086, "PC - ANWENDUNGEN" },
- { 26087, "Markus Meyer" },
- { 26088, "Aspera OHG" },
- { 26089, "Emanuel Haupt" },
- { 26090, "qiiq communication inc." },
- { 26091, "Lafarge S.A." },
- { 26092, "ACEB Electronique" },
- { 26093, "NiBweb" },
- { 26094, "McGibbon IT-services" },
- { 26095, "Canopus Co., Ltd." },
- { 26096, "Synergy Neworking Ltd" },
- { 26097, "Linux Training NZ" },
- { 26098, "King County" },
- { 26099, "Shanghai Engineering Research Center for Broadband Technologies & Applications(B-STAR) Co., Ltd." },
- { 26100, "Cypress Integrated Systems, Inc." },
- { 26101, "NUPPEAD - N\0303\0272cleo de Pesquisa e Projetos em Educa\0303\0247\0303\0243o a Dist\0303\0242ncia" },
- { 26102, "Advance Internet, Inc." },
- { 26103, "WOBCOM GmbH" },
- { 26104, "bellwin information Co.,LTD" },
- { 26105, "Crummock (Scotland) Ltd" },
- { 26106, "Sentivision Polska sp. z o. o." },
- { 26107, "Cambridge Display Technology Ltd" },
- { 26108, "HYDRA FUEL CELL CORPORATION" },
- { 26109, "TPS Pakistan Pvt Ltd." },
- { 26110, "PrintMIB, LLC" },
- { 26111, "Informi GIS A/S" },
- { 26112, "ISGS" },
- { 26113, "keuning Information Systems" },
- { 26114, "AXIOHM" },
- { 26115, "JSC STC \"Rissa\"" },
- { 26116, "Practical Economic Research Limited" },
- { 26117, "Lux Solis, LLC" },
- { 26118, "BFSt" },
- { 26119, "Trafsys" },
- { 26120, "cweiske.de" },
- { 26121, "Rishi Valley School" },
- { 26122, "Zenitel Norway AS" },
- { 26123, "Ministerie van de Vlaamse Gemeenschap, belfla telematica" },
- { 26124, "ComX Networks A/S" },
- { 26125, "Vegacom a.s." },
- { 26126, "Makko Solutions, S. A. de C. V." },
- { 26127, "Beijing Vorx Telecommunications Co, Ltd." },
- { 26128, "CommSeed Corporation" },
- { 26129, "Logitek Electronic Systems, Inc." },
- { 26130, "Montserrat College of Art" },
- { 26131, "Vendini Tickets" },
- { 26132, "Aegis Semiconductor, Inc." },
- { 26133, "Center for Remote Sensing Ice Sheets, University of Kansas" },
- { 26134, "Institute for Networked Solutions" },
- { 26135, "Mount Airey Group, Inc." },
- { 26136, "GENOME express" },
- { 26137, "The University of Texas System" },
- { 26138, "INTELBRAS S/A" },
- { 26139, "Samford University" },
- { 26140, "Reflected Networks, Inc." },
- { 26141, "EDI-PRO" },
- { 26142, "3Way Networks Ltd" },
- { 26143, "Centre d'Alt Rendiment Esportiu" },
- { 26144, "IRTE S.p.A." },
- { 26145, "Network Systems" },
- { 26146, "ZAO NPC SPECTRUM" },
- { 26147, "Trivore Corp." },
- { 26148, "Suburban Medical Laboratory, Inc." },
- { 26149, "India Mobility Research (IMR)" },
- { 26150, "FDT Manufacturing, LLC" },
- { 26151, "Win32Tools" },
- { 26152, "Helsinki IT Systems Consulting" },
- { 26153, "HighPoint Technologies, Inc." },
- { 26154, "biaix" },
- { 26155, "Bancolombia S.A" },
- { 26156, "Quicksilva Ltd." },
- { 26157, "Chupa Chups, S.A." },
- { 26158, "Bertram Yacht Inc." },
- { 26159, "Euro Connect" },
- { 26160, "VUMS Control Systems, a.s." },
- { 26161, "Rocketseed" },
- { 26162, "TELROS" },
- { 26163, "AirCUVE Co., Ltd." },
- { 26164, "Tri-vision Electronics Inc" },
- { 26165, "US Airways" },
- { 26166, "Nebraska Wesleyan University" },
- { 26167, "Blakemere Technologies Inc." },
- { 26168, "Idologic Inc." },
- { 26169, "eLynx Ltd." },
- { 26170, "Clario Medical Imaging, Inc." },
- { 26171, "Parallels Holdings Ltd (formerly 'SWsoft, Inc.')" },
- { 26172, "Keble College" },
- { 26173, "monaghen.com" },
- { 26174, "SignaCert, Inc." },
- { 26175, "R&S Medizinsysteme" },
- { 26176, "AB Computing Ltd" },
- { 26177, "Black Press Group Ltd." },
- { 26178, "LandQuest Services Ltd." },
- { 26179, "Connectiva Systems" },
- { 26180, "Queens Academic Group Ltd" },
- { 26181, "Cohda Wireless Ltd" },
- { 26182, "Entelechy Systems" },
- { 26183, "Northeastern State University" },
- { 26184, "NSP" },
- { 26185, "Interalia Inc." },
- { 26186, "Yocobox Soluciones Digitales" },
- { 26187, "Scott Logic Ltd." },
- { 26188, "Switch Media" },
- { 26189, "Qstreams Networks" },
- { 26190, "Crisp Thinking Ltd" },
- { 26191, "Jadebird Inc." },
- { 26192, "Sony Global Solutions Inc." },
- { 26193, "Hangzhou Grancom Information & Technology Co.,Ltd." },
- { 26194, "Rasmus Hahn" },
- { 26195, "Imagic Bildverarbeitung AG" },
- { 26196, "AVT Audio Video Technolgies GmbH" },
- { 26197, "HITT GmbH" },
- { 26198, "Hedmark University College" },
- { 26199, "KEEPIXO" },
- { 26200, "Solid Rock IT" },
- { 26201, "UHU-Linux Kft." },
- { 26202, "Snipe Networks" },
- { 26203, "I.T. Advance Consulting, Inc." },
- { 26204, "University of Utah Department of Medical Informatics" },
- { 26205, "Bright Horizons Family Solutions" },
- { 26206, "On Site Network Solutions, Inc." },
- { 26207, "FT Interactive Data Inc." },
- { 26208, "PDL BioPharma, Inc." },
- { 26209, "Louisiana Department of Health and Hospitals" },
- { 26210, "ACM Systems" },
- { 26211, "Universidade Federal de Minas Gerais" },
- { 26212, "Harmonic Technology Group, LLC" },
- { 26213, "Stahlgruber GmbH & Co KG" },
- { 26214, "Afilias Canada" },
- { 26215, "Progensys Ltd" },
- { 26216, "Deck S.r.l." },
- { 26217, "Systel SA" },
- { 26218, "Nova Scotia Cancer Centre" },
- { 26219, "Enagas S.A." },
- { 26220, "Gunter, Winston, & O'Neal Corporation" },
- { 26221, "BeTV Belgium" },
- { 26222, "S&S Pamin" },
- { 26223, "Jakobs Family Enterprises" },
- { 26224, "MONITORAPP Co.,Ltd." },
- { 26225, "Studio DIGITAL ART" },
- { 26226, "Netcom Systems" },
- { 26227, "mindjail consulting Ltd." },
- { 26228, "Tricipher, Inc." },
- { 26229, "Data Management S.p.A." },
- { 26230, "Kirusa Inc." },
- { 26231, "Punch Telematix" },
- { 26232, "scimmia.net" },
- { 26233, "Stephen Thompson Consulting, LLC" },
- { 26234, "Gate Petroleum Company" },
- { 26235, "Computer Networks Laboratory at Technical University of Kosice" },
- { 26236, "Camara de Comercio y Produccion de Santo Domingo" },
- { 26237, "Elders Limited" },
- { 26238, "Consortium GARR" },
- { 26239, "Bank Solidarnost" },
- { 26240, "Hochschule Darmstadt" },
- { 26241, "ALLCARE ADMINISTRATORS (PTY) LTD" },
- { 26242, "Loy & Hutz Aktiengesellschaft" },
- { 26243, "SIS Schul Internet Service" },
- { 26244, "Ocilion IPTV Technologies GmbH" },
- { 26245, "Australia MultiDrive Development (AMD)" },
- { 26246, "North Seattle Community College" },
- { 26247, "ServiceTrace e.K." },
- { 26248, "die NetzWerkstatt" },
- { 26249, "Transact Services LLC" },
- { 26250, "Information and Multimedia Center, Gifu University" },
- { 26251, "ZZNODE" },
- { 26252, "Universidad de Sonora" },
- { 26253, "Iduntec" },
- { 26254, "PesaPoint Ltd" },
- { 26255, "Our Lady of the Lake Hospital, INC." },
- { 26256, "Fluendo S.A." },
- { 26257, "RT-Tech LLC" },
- { 26258, "Datum International Ltd" },
- { 26259, "GlobalX Technologies, LLC" },
- { 26260, "NIBCO INC." },
- { 26261, "MAXON CIC Corp." },
- { 26262, "NMMN New Media Markets & Networks GmbH" },
- { 26263, "Douglas School District" },
- { 26264, "Galeries Lafayette" },
- { 26265, "Flawed Logic Server Management Software" },
- { 26266, "LITE-ON TECHNOLOGY CORP." },
- { 26267, "Kodiak Networks India Pvt. Ltd" },
- { 26268, "PositiveArt" },
- { 26269, "inSORS Integrated Communications, Inc." },
- { 26270, "Olivetti S.p.a" },
- { 26271, "acosta.se" },
- { 26272, "SALICRU" },
- { 26273, "Ventia Pty Limited" },
- { 26274, "Digital Ideas Pty Ltd" },
- { 26275, "Indigo Stone International Ltd" },
- { 26276, "Heinrich Nirschl" },
- { 26277, "Voronezh State University" },
- { 26278, "Zarafa" },
- { 26279, "Envision Technology Partners, Inc." },
- { 26280, "Adara Networks" },
- { 26281, "The EA Group" },
- { 26282, "FYI Corporation" },
- { 26283, "Christoph Anderegg" },
- { 26284, "Ochsner Health System" },
- { 26285, "S. I. Tech, Inc." },
- { 26286, "Alfree Systems" },
- { 26287, "Exelmind Ltd." },
- { 26288, "Kavaro Oy" },
- { 26289, "VIMPLICITY Ltd." },
- { 26290, "Exatel S.A." },
- { 26291, "The Revolution Group Pty Ltd" },
- { 26292, "TechSyndicate" },
- { 26293, "Interaktivo Risinajumu Grupa, SIA" },
- { 26294, "Endurance International Group" },
- { 26295, "Cyberlog Ltd" },
- { 26296, "Resource SiteSeeing Ltda." },
- { 26297, "Wireless Broadband Services Pty. Ltd." },
- { 26298, "Electionmall Technologies Inc." },
- { 26299, "EasternGraphics GmbH" },
- { 26300, "Genera Oy" },
- { 26301, "Texas Digital Systems, Inc" },
- { 26302, "Blonder Tongue Laboratories, Inc." },
- { 26303, "CarrierIQ Inc." },
- { 26304, "SNMPinfo" },
- { 26305, "Sykora Technology Inc." },
- { 26306, "Opportunity Solutions A/S" },
- { 26307, "Skyguide - swiss air navigation services ltd." },
- { 26308, "Saab TransponderTech AB" },
- { 26309, "Draksoft Soluzioni Informatiche S.a.s." },
- { 26310, "Departamento Municipal de Eletricidade de Po\0303\0247os de Caldas" },
- { 26311, "Andreas Kinzler" },
- { 26312, "Genius Company" },
- { 26313, "Mark Roscrow" },
- { 26314, "Xcontrol GmbH" },
- { 26315, "Asian Access Networks Pte Ltd." },
- { 26316, "Pacific States Marine Fisheries Commission" },
- { 26317, "First Choice Health Network" },
- { 26318, "Condor Networks" },
- { 26319, "HomeCity Net Ltd." },
- { 26320, "Project Team s.r.l." },
- { 26321, "Christian Tena" },
- { 26322, "Tokyo University of Marine Science and Technology" },
- { 26323, "Informatica Productiva Conocimiento y Tecnologia, S.L." },
- { 26324, "Wurm GmbH & Co. KG" },
- { 26325, "GT London Ltd" },
- { 26326, "ADTECH AG" },
- { 26327, "Kassenzahn\0303\0244rztliche Vereinigung Westfalen-Lippe" },
- { 26328, "Blackfoot Telephone Cooperative, Inc." },
- { 26329, "Simpler-Webb, Inc." },
- { 26330, "South Shore Hopsital" },
- { 26331, "Trilink,Inc" },
- { 26332, "TechnoKad" },
- { 26333, "Brose Fahrzeugteile" },
- { 26334, "MEGATRON DATA SERVICES GMBH" },
- { 26335, "DiViNetworks Ltd. (formerly 'IPortent Ltd.')" },
- { 26336, "Pawel Kraszewski" },
- { 26337, "Paper Management Services Ltd." },
- { 26338, "IWICS Inc." },
- { 26339, "Risk Laboratories, LLC" },
- { 26340, "SKBrasil" },
- { 26341, "Madein.hu Bt." },
- { 26342, "Fujitsu System Solutions Ltd." },
- { 26343, "Grainmustards Co.,Ltd." },
- { 26344, "Advanced Institute of Industrial Technology" },
- { 26345, "PAK ELECTRICAL APPLIANCE CO., LTD" },
- { 26346, "All-Powerful Dave" },
- { 26347, "acens technologies S.A." },
- { 26348, "Maenken Systems" },
- { 26349, "Shyam Telecom Ltd." },
- { 26350, "Beijing Agree Technology Development Ltd." },
- { 26351, "NILES Werkzeugmaschinen GmbH" },
- { 26352, "Power Systems LLC" },
- { 26353, "Blue Lake Rancheria" },
- { 26354, "Software Concepts, Inc." },
- { 26355, "Fiplex Communications Inc." },
- { 26356, "Vector Technology" },
- { 26357, "Commonwealth Service Delivery Agency (Centrelink Australia)" },
- { 26358, "XM Asia Pacific Pte Ltd" },
- { 26359, "Xpressent, Inc." },
- { 26360, "Woodward Ventures" },
- { 26361, "Solution Innovators, LLC" },
- { 26362, "Wenzel Elektronik GmbH" },
- { 26363, "Woodhead" },
- { 26364, "EID - Empresa de Investiga\0303\0247\0303\0243o e Desenvolvimento de Electr\0303\0263nica," },
- { 26365, "Critical Links SA" },
- { 26366, "Amano Cincinnati" },
- { 26367, "Nondeterministic Information Systems" },
- { 26368, "Micko Group, Inc." },
- { 26369, "Mattig-Schauer Ges.m.b.H" },
- { 26370, "Bend Cable Communications, LLC" },
- { 26371, "School of Oriental and African Studies" },
- { 26372, "Stadig Technologies, LLC" },
- { 26373, "GRI e.V" },
- { 26374, "University of Illinois" },
- { 26375, "Ockan" },
- { 26376, "Tribunal Regional Eleitoral de Santa Catarina" },
- { 26377, "ACC Ingenierie et Maintenance" },
- { 26378, "PrettyBit Software Oy" },
- { 26379, "I.E.P.A.L.A." },
- { 26380, "buaa608" },
- { 26381, "lwIP - A Lightweight TCP/IP stack" },
- { 26382, "Sis'ta Salsa, LLC" },
- { 26383, "Pay By Touch" },
- { 26384, "GANDI" },
- { 26385, "BUFETE CONSULTOR DE MEXICO, S.A. DE C.V." },
- { 26386, "Koerber Enterprise" },
- { 26387, "John Cantu" },
- { 26388, "Profil GmbH" },
- { 26389, "Factory Mutual Insurance Company" },
- { 26390, "Woven Systems Inc." },
- { 26391, "Kelyan Lab S.p.A." },
- { 26392, "NetClarity" },
- { 26393, "CallCopy, Inc." },
- { 26394, "Emaze Networks S.p.A." },
- { 26395, "American Telecommunication Inc." },
- { 26396, "Rising Edge Development LLC" },
- { 26397, "Oklahoma State University" },
- { 26398, "WasaLab Oy" },
- { 26399, "Emencia SARL" },
- { 26400, "Bundesnetzagentur" },
- { 26401, "Alarmtech Polska sp. z o.o." },
- { 26402, "ELETRONIQUE PLUS SA" },
- { 26403, "IMATech2.net" },
- { 26404, "SupplyScape Corporation" },
- { 26405, "The MetalFish Consultancy Ltd." },
- { 26406, "CyberDefenses, Inc." },
- { 26407, "Tiger Communications Plc" },
- { 26408, "WolfVision GmbH" },
- { 26409, "ERecruiters Ltd." },
- { 26410, "Pakamera" },
- { 26411, "Vocality International Ltd" },
- { 26412, "Alexandr Kara" },
- { 26413, "Golden West Internet Solutions" },
- { 26414, "Fenri" },
- { 26415, "J. & W. Seligman & Co. Incorporated" },
- { 26416, "MetaCarta, Inc." },
- { 26417, "Transcepta LLC" },
- { 26418, "Netsafe Information Technology Ltd." },
- { 26419, "transtec AG" },
- { 26420, "clan informatik AG" },
- { 26421, "Daughters of Charity Services of New Orleans" },
- { 26422, "IABG mbH" },
- { 26423, "Tlantic SI" },
- { 26424, "syscare.net" },
- { 26425, "Layered Technologies" },
- { 26426, "Forget About IT Ltd." },
- { 26427, "Kansas Department of Health and Environment - State of Kansas" },
- { 26428, "Bedford Hospital NHS Trust" },
- { 26429, "Xinwei Telecom Technology,Inc." },
- { 26430, "E Technologies, Inc" },
- { 26431, "Thai National Grid Center" },
- { 26432, "Center of Information technologies of Tatarstan Republic" },
- { 26433, "Calyx Internet" },
- { 26434, "Touch Sense Inc" },
- { 26435, "Noam Communications" },
- { 26436, "HSH Soft- und Hardware Vertriebs GmbH" },
- { 26437, "Universit\0303\0244t zu K\0303\0266ln" },
- { 26438, "S.V. Paradoks" },
- { 26439, "SFERIA SA" },
- { 26440, "BliXem Internet Services B.V." },
- { 26441, "Technikon Forschungs- und Planungsgesellschaft mbH (Ltd.)" },
- { 26442, "PROLIVAL" },
- { 26443, "Cinetix Srl" },
- { 26444, "Coroware, Inc" },
- { 26445, "Special Systems and Software, Inc." },
- { 26446, "Ouvi Divulgacao e Marketing em Celulares Ltda." },
- { 26447, "Compro Computer Services, Inc" },
- { 26448, "Variomedia AG" },
- { 26449, "Okto Tecnologia e Servi\0303\0247os de Inform\0303\0241tica Ltda." },
- { 26450, "Hubbell Inc." },
- { 26451, "Esencis" },
- { 26452, "HiTB" },
- { 26453, "VJ Systems" },
- { 26454, "wealink.com limited Inc." },
- { 26455, "Secretariat of Information Technology, Government of Haryana" },
- { 26456, "Budapest University of Technology and Economics (BME)" },
- { 26457, "Meditec GmbH" },
- { 26458, "tetrade inc." },
- { 26459, "wavesyscom co.,Ltd" },
- { 26460, "Alcor Communications" },
- { 26461, "Knorr & Partner Ingenieure" },
- { 26462, "LANCK Telecom (Express TeleService Corp.)" },
- { 26463, "Wyless plc" },
- { 26464, "Dundalk Institute of Technology" },
- { 26465, "i-together Ltd" },
- { 26466, "Leissner Data AB" },
- { 26467, "HANZO S/A" },
- { 26468, "I.T. Management and Consultation Services (ITMACS)" },
- { 26469, "AirClic Inc." },
- { 26470, "Media Movel Servi\0303\0247os Interativos LTDA" },
- { 26471, "International Teams" },
- { 26472, "Nordic Optical Telescope Scientific Association" },
- { 26473, "Digiplug" },
- { 26474, "Midwest Connections Inc." },
- { 26475, "GTN77" },
- { 26476, "Advanced Devices S.p.A." },
- { 26477, "Uwe Perl" },
- { 26478, "SI3SI" },
- { 26479, "Schenck Process GmbH" },
- { 26480, "infler.de" },
- { 26481, "Zane C. Bowers" },
- { 26482, "Rossonet S.r.l." },
- { 26483, "JW NetSource, LLC" },
- { 26484, "Cisco Systems, Inc. (formerly 'Arch Rock Corporation')" },
- { 26485, "Cryoserver Ltd" },
- { 26486, "The Stanley Works" },
- { 26487, "WebSpace-Forum" },
- { 26488, "Ender Informatics GmbH" },
- { 26489, "IntelliData Systems Ltd" },
- { 26490, "Beverli.NET" },
- { 26491, "Metzler Tech Ltd" },
- { 26492, "Dongyang Telecom co., LTD" },
- { 26493, "Urzad Marszalkowski Wojewodztwa Malopolskiego" },
- { 26494, "CSJGlobal. Inc." },
- { 26495, "Scope" },
- { 26496, "ZipLip, Inc." },
- { 26497, "BitBin LLC" },
- { 26498, "DART Industries Inc" },
- { 26499, "Memo Servi\0303\0247os Interativos S.A." },
- { 26500, "Carl Zeiss AG" },
- { 26501, "Pari Medical Holding GmbH" },
- { 26502, "Emerging Information Systems Inc." },
- { 26503, "University of Applied Science Osnabr\0303\0274ck" },
- { 26504, "A3IP" },
- { 26505, "Zenexity" },
- { 26506, "IT-Ideas" },
- { 26507, "TJ NET Spa" },
- { 26508, "Electronic Forge" },
- { 26509, "Digital Electronics Corporation" },
- { 26510, "Like Minded People Ltd" },
- { 26511, "TAC Bilgisayar Hizmetleri Ic ve Dis Ticaret A.S." },
- { 26512, "GEEK Bilgisayar Muhendislik ve Sanayi LTD STI" },
- { 26513, "Hellenic Academic and Research Institutions CertificationAuthority" },
- { 26514, "Suntel Communications" },
- { 26515, "Tepe Teknoloji" },
- { 26516, "Innovation Designs Ltd." },
- { 26517, "BESECURE" },
- { 26518, "MEG Elektronik Ltd." },
- { 26519, "GEEK Bilgi Teknolojileri LTD STI" },
- { 26520, "Pierbridge Limited" },
- { 26521, "Pannasoft Technologies" },
- { 26522, "MDG InfoSec" },
- { 26523, "American Qualified Plans, Inc." },
- { 26524, "lyman & associates" },
- { 26525, "Golden Dynamic Enterprises Ltd." },
- { 26526, "eTouch Systems Corp" },
- { 26527, "Ircona" },
- { 26528, "Kirche fur Oberberg e.V." },
- { 26529, "CNRST" },
- { 26530, "Telemetry BTT" },
- { 26531, "Kodak Imaging Network, Inc" },
- { 26532, "eB Technologies (M) Sdn. Bhd." },
- { 26533, "Nurun inc." },
- { 26534, "think project! International (formerly 'AEC/communications GmbH')" },
- { 26535, "OMNEX Control Systems ULC" },
- { 26536, "Ringland Consulting LLC" },
- { 26537, "Riorey Inc." },
- { 26538, "Duaxes Corporation" },
- { 26539, "Ionoscape Associates" },
- { 26540, "cudeso.be" },
- { 26541, "matrix technology AG" },
- { 26542, "JHC Plc" },
- { 26543, "Blade Network Technologies, Inc." },
- { 26544, "AVTOVAZ JSC" },
- { 26545, "SalesForce Australia (Salmat)" },
- { 26546, "CP Secure Inc" },
- { 26547, "Nord Data A/S" },
- { 26548, "Pr\0303\0251voir Vie Portugal" },
- { 26549, "Amper" },
- { 26550, "BluePex do Brasil Tecnologia da Informa\0303\0247\0303\0243o Ltda - ME" },
- { 26551, "Gordon Kapes, Inc." },
- { 26552, "Congreso de los Diputados" },
- { 26553, "CTI Networks, Inc." },
- { 26554, "ThingMagic, Inc." },
- { 26555, "NTT IT Co., Ltd." },
- { 26556, "Ethernet Direct Corporation" },
- { 26557, "Stractus" },
- { 26558, "Associated Network Partners, Inc." },
- { 26559, "nyukid networks" },
- { 26560, "J\0303\0274nger Audio-Studiotechnik GmbH" },
- { 26561, "Zynetix Ltd" },
- { 26562, "International Telecommunication Union" },
- { 26563, "TRIADO" },
- { 26564, "Emerj Inc" },
- { 26565, "Studio Technologies, Inc." },
- { 26566, "Global Knowledge" },
- { 26567, "Obsidian Consulting Group Pty. Ltd." },
- { 26568, "Mega Solution Inc." },
- { 26569, "Idyria SARL" },
- { 26570, "Cleartone Video Ltd" },
- { 26571, "DATANIN LTD" },
- { 26572, "Optimal IdM Software, LLC" },
- { 26573, "Dawn VME Products" },
- { 26574, "Dynamics Research Corporation" },
- { 26575, "KB Toys, Inc." },
- { 26576, "Ian Cairns" },
- { 26577, "Kaufcom GmbH" },
- { 26578, "Credito Emiliano S.p.A" },
- { 26579, "J. Craig Venter Institute" },
- { 26580, "Kaiser Permanente" },
- { 26581, "Rustenbach.de" },
- { 26582, "Clerity Solutions, Inc." },
- { 26583, "Ativa Solu\0303\0247\0303\0265es Tecnol\0303\0263gicas Ltda" },
- { 26584, "Brooman.com, LLC" },
- { 26585, "Reactrix Systems, Inc." },
- { 26586, "Fremnet" },
- { 26587, "computer betting company gmbh" },
- { 26588, "Nexcom Systems" },
- { 26589, "CT Company Ltd." },
- { 26590, "CLAIM GmbH & Co. KG" },
- { 26591, "Kynetia Networks S.L." },
- { 26592, "Polatis Ltd" },
- { 26593, "littlemail" },
- { 26594, "ASOIU departament of NTUU \"KPI\"" },
- { 26595, "Connect Tech Inc." },
- { 26596, "S-INFORMATION TECHNOLOGY CO., LTD." },
- { 26597, "Comerica Bank" },
- { 26598, "SUMITOMO OSAKA CEMENT CO.,LTD." },
- { 26599, "University of Glasgow" },
- { 26600, "China Xiamen Truetel Telecommunications Technologies Co.,Ltd." },
- { 26601, "Dunham-Bush Yantai Co. Ltd." },
- { 26602, "Raceme" },
- { 26603, "GEDIM AG" },
- { 26604, "IMA GmbH" },
- { 26605, "PKB Integral" },
- { 26606, "Vidactive, S.L." },
- { 26607, "Isco International" },
- { 26608, "Wavelength Corporation, Inc." },
- { 26609, "Pentair, Inc" },
- { 26610, "Ultramain Systems Inc." },
- { 26611, "Exa Corporation" },
- { 26612, "Kyoto Sangyo University" },
- { 26613, "Audiomedia Ltd." },
- { 26614, "Government of Republic of Srpska" },
- { 26615, "Noviforum Ltd., Software & Media" },
- { 26616, "University Computing Centre - SRCE, University of Zagreb" },
- { 26617, "Mobitel d.d." },
- { 26618, "HighTech Passport, Ltd." },
- { 26619, "Private Higher education establishment Autononymous" },
- { 26620, "West University of Timisoara" },
- { 26621, "Technical University of Cluj-Napoca" },
- { 26622, "NJERS Communications" },
- { 26623, "Open Sense Solutions LLC" },
- { 26624, "that's software Berlin" },
- { 26625, "Sopris Surfers Inc." },
- { 26626, "cativa.net" },
- { 26627, "VIGOS AG" },
- { 26628, "BH Telecom dd Sarajevo" },
- { 26629, "Rumati Computers CC" },
- { 26630, "PBMS Solucoes Moveis em Informatica Ltda" },
- { 26631, "Waterman Group plc" },
- { 26632, "Saunders Properties Pty Ltd" },
- { 26633, "Embedded Internet Solutions, Inc." },
- { 26634, "BigTribe Corporation" },
- { 26635, "Squid Consulting & Integration" },
- { 26636, "Dexon Software Inc." },
- { 26637, "OMB Sistemas Electr\0303\0263nicos S.A." },
- { 26638, "Studio Hamburg Media Consult International GmbH" },
- { 26639, "The Schneider Family Tree" },
- { 26640, "InduSoft Inc." },
- { 26641, "Yellowbrix" },
- { 26642, "Schoelzel - IT Consulting" },
- { 26643, "XL Vision Group" },
- { 26644, "International Working Group on Taxonomic Databases (TDWG)" },
- { 26645, "Inventive Designers n.v." },
- { 26646, "Institute for Parallel Processing, BAS" },
- { 26647, "Banco Safra S/A" },
- { 26648, "Avago Technologies Limited" },
- { 26649, "Covidien (formerly 'Tyco Healthcare')" },
- { 26650, "Pandora Media Inc." },
- { 26651, "Propus Informatica Ltda" },
- { 26652, "MELCO HOLDINGS INC." },
- { 26653, "Shanghai Sunstar Telecom Co.ltd" },
- { 26654, "NTT resonant Inc." },
- { 26655, "Advantech Co., Ltd" },
- { 26656, "Allan Associates" },
- { 26657, "Ouba" },
- { 26658, "Mikro Network Solutions" },
- { 26659, "Zero9 srl" },
- { 26660, "Robot Bt." },
- { 26661, "OpenPanel V.O.F." },
- { 26662, "Alpha Company" },
- { 26663, "Solana Networks Inc." },
- { 26664, "Centralsoft.org" },
- { 26665, "FaceToFace Software Ltd" },
- { 26666, "Assuria Limited" },
- { 26667, "Epper & Kranz GbR" },
- { 26668, "SixFamily.Net" },
- { 26669, "Sirius Corporation plc" },
- { 26670, "NetEase.com, Inc." },
- { 26671, "NetSpring, Inc." },
- { 26672, "NANJING ZIJIN-PHOTEL COMMUNICATION EQUIPMENTS CO.,LTD" },
- { 26673, "Wyndeham Heron Ltd" },
- { 26674, "Klerx EDV Beratung" },
- { 26675, "MessageLabs Ltd" },
- { 26676, "GSF SAS" },
- { 26677, "Datactics Ltd." },
- { 26678, "Canadian Space Agency" },
- { 26679, "EMCom sp. z o.o." },
- { 26680, "General Dynamics United Kingdom Limited" },
- { 26681, "Phi Theta Kappa International Honor Society" },
- { 26682, "lohnet.org" },
- { 26683, "Vinci Consulting Corp" },
- { 26684, "Comm/net Systems, Inc." },
- { 26685, "FOSS MIBs" },
- { 26686, "Softjury GmbH" },
- { 26687, "LG Technology Inc." },
- { 26688, "Sino-i Technology Ltd." },
- { 26689, "CAT Telecom Public Company Limited" },
- { 26690, "PRETTL Produktions Holding GmbH" },
- { 26691, "Reichert GmbH" },
- { 26692, "MOBITEL SA" },
- { 26693, "AirPoint Co., Ltd." },
- { 26694, "Digitals India" },
- { 26695, "Openlink Financial, Inc." },
- { 26696, "Marvell Semiconductor Inc." },
- { 26697, "Arces Network, LLC" },
- { 26698, "Net Project SRL" },
- { 26699, "Open Switch Software e Consultoria Ltda" },
- { 26700, "Vulcan Materials Company" },
- { 26701, "Ocean Rock Corp." },
- { 26702, "Wycliffe Bible Translators of Canada Inc" },
- { 26703, "Pittsburgh Supercomputing Center" },
- { 26704, "Voice Provider Sweden AB" },
- { 26705, "Webbertek (Blunicel Consultoria em Informatica Ltda)" },
- { 26706, "4AM Lunch Inc." },
- { 26707, "Delphi Corp." },
- { 26708, "Cerbercomm LTD" },
- { 26709, "LogicIQ Ltd" },
- { 26710, "Elasis S.C.p.A." },
- { 26711, "Crolox B.V." },
- { 26712, "Cutter Project Ltd" },
- { 26713, "Stella Doradus Ltd." },
- { 26714, "ERIS4 s.r.l." },
- { 26715, "Oberlandesgericht M\0303\0274nchen - IT-Stelle d. Justiz" },
- { 26716, "Ganesh TEchnologies Ltd" },
- { 26717, "Stroeer Out-of-Home Media AG" },
- { 26718, "ELMA Kurtalj d.o.o." },
- { 26719, "Baluna GmbH" },
- { 26720, "Cressida Technology Ltd." },
- { 26721, "EAB GmbH Rhein/Main" },
- { 26722, "S-Telecom (S-Fone)" },
- { 26723, "KUME electric Co., Ltd." },
- { 26724, "e-trees.Japan,Inc." },
- { 26725, "Eiraku Electric Co.,Ltd." },
- { 26726, "WireCache, Inc." },
- { 26727, "Yakshavers Incorporated" },
- { 26728, "Transparency Software Inc." },
- { 26729, "Sagittar Broadband Communication Solutions" },
- { 26730, "SICS AB" },
- { 26731, "Software Libre de Venezuela 777, C.A." },
- { 26732, "COMNET Computer Netzwerke Gmbh" },
- { 26733, "RRD S.p.a." },
- { 26734, "CMYK Energy Software Limited" },
- { 26735, "Dipl. Ing. T. Biel" },
- { 26736, "Weyhmueller.net" },
- { 26737, "Infostream Pty ltd" },
- { 26738, "BEA International FZE" },
- { 26739, "Hans Guentner GmbH" },
- { 26740, "Tein Technology S.A." },
- { 26741, "Etin Systems Co.,Ltd." },
- { 26742, "Astralogic cc" },
- { 26743, "Lean, LLC" },
- { 26744, "National Bankcard Services Inc" },
- { 26745, "obituariesonline.ca" },
- { 26746, "HEBUS" },
- { 26747, "GoRoam Ltd" },
- { 26748, "Print Fulfillment Services" },
- { 26749, "SL Power Electronics Corp" },
- { 26750, "Access Integrated Technologies, Inc." },
- { 26751, "Visual Sciences, LLC" },
- { 26752, "Jamul Engineering" },
- { 26753, "Mobile Greetings, Inc." },
- { 26754, "Asian Institute of Technology" },
- { 26755, "EyeLine Communications CIS LLC" },
- { 26756, "MSE Matthies Softwareentwicklung GmbH" },
- { 26757, "Sibinco LLC" },
- { 26758, "CECURITY.COM" },
- { 26759, "SHF Communication Technologies AG" },
- { 26760, "0x3f8.net" },
- { 26761, "Eszterhazy Karoly College" },
- { 26762, "DDinformatica" },
- { 26763, "Cestel S.A." },
- { 26764, "Novnet HB" },
- { 26765, "Universitaet Bielefeld, Fakultaet fuer Mathematik" },
- { 26766, ".vantronix secure systems" },
- { 26767, "Alcatel-Lucent TMC (formerly 'Alcatel SOC')" },
- { 26768, "Comune di Rimini" },
- { 26769, "United Technologies Corporation" },
- { 26770, "Virtutility Ltd" },
- { 26771, "Versaterm Inc." },
- { 26772, "The Royal Conservatoire" },
- { 26773, "Linde IT Services" },
- { 26774, "EFOTEK CO.,LTD." },
- { 26775, "B2BITS Corp." },
- { 26776, "maintech GmbH" },
- { 26777, "Declude, Inc." },
- { 26778, "Nerdboy Services" },
- { 26779, "PPW \"ARAJ\" Sp. z o.o." },
- { 26780, "GMx Technologies, Inc" },
- { 26781, "Greg Cockerham" },
- { 26782, "TRI-D Systems, Inc." },
- { 26783, "Tioga Project" },
- { 26784, "Acromate, Inc." },
- { 26785, "University of Messina" },
- { 26786, "Siet SD Mladost - Ynet" },
- { 26787, "Sociedad de Tasaci\0303\0263n SA" },
- { 26788, "AbiliSoft Ltd" },
- { 26789, "Webworks Sverige AB" },
- { 26790, "Gilbarco Inc." },
- { 26791, "Thralling Penguin LLC" },
- { 26792, "Promptlink Communications, Inc." },
- { 26793, "Gawab" },
- { 26794, "Periodik Labs LLC" },
- { 26795, "Kemnetix Corporation" },
- { 26796, "Meitai technology Co.,Ltd" },
- { 26797, "Asankya Networks, Inc." },
- { 26798, "Hippo, spol. s r. o." },
- { 26799, "Rotal.com Ltd." },
- { 26800, "Jan Welte" },
- { 26801, "Network Chemistry, Inc" },
- { 26802, "UNESP-FC" },
- { 26803, "DITTA DI FEO PASQUALE" },
- { 26804, "Digital Opportunity Trust" },
- { 26805, "Krebs Consulting & IT-Services GmbH & Co. KG" },
- { 26806, "MultiVision Communications" },
- { 26807, "United States Postal Service" },
- { 26808, "Visual Acting GmbH" },
- { 26809, "ENTELIENCE" },
- { 26810, "SKIDATA AG" },
- { 26811, "UNLP" },
- { 26812, "Flexy Enterprise Solutions Ltd." },
- { 26813, "Uniwersytet Gda\0303\0261ski" },
- { 26814, "BVCOM Media Corporation,Ltd." },
- { 26815, "Advanced Technologies" },
- { 26816, "DTM Consultoria S/C LTDA" },
- { 26817, "IT Professional d.o.o." },
- { 26818, "Servicio Nacional de Meteorolog\0303\0255a e Hidrologia del Per\0303\0272 - SENAMHI" },
- { 26819, "Economists Incorporated" },
- { 26820, "MicroPortal.info" },
- { 26821, "Agent Logic" },
- { 26822, "Beijing Telestone Technology Co.,Ltd." },
- { 26823, "MarzhillStudios" },
- { 26824, "Conseil G\0303\0251n\0303\0251ral de Meurthe et Moselle" },
- { 26825, "netWerkz IT Solutions" },
- { 26826, "Eon Corporation" },
- { 26827, "ICT 4 Schools" },
- { 26828, "Han Internetworks Co., Ltd." },
- { 26829, "S4 Technology Pty Ltd" },
- { 26830, "U.S. Home Systems Inc." },
- { 26831, "Community High School District 155" },
- { 26832, "Jason Petsod" },
- { 26833, "Barkley Evergreen & Partners" },
- { 26834, "Travel & Accommodation ApS" },
- { 26835, "Southernprint Ltd" },
- { 26836, "INVISTA S.\0303\0240.r.l" },
- { 26837, "Masaryk Hospital in Usti nad Labem" },
- { 26838, "Haystack Professional Services" },
- { 26839, "Diamedx Inc." },
- { 26840, "NETWAYS GmbH" },
- { 26841, "Soleo Communications, Inc." },
- { 26842, "Telio AG" },
- { 26843, "Aker Kvaerner Subsea Ltd" },
- { 26844, "Endeavor Information Systems Inc." },
- { 26845, "Mark Hooper Ltd" },
- { 26846, "Salford City Council" },
- { 26847, "COLLINS TRUCKING LLC" },
- { 26848, "Deutsche Rentenversicherung Niederbayern-Oberpfalz" },
- { 26849, "Departamento de Engenharia Inform\0303\0241tica da Universidade de Coimbra" },
- { 26850, "VisionOSS Ltd." },
- { 26851, "P\0303\0251nz\0303\0274gyi Szervezetek \0303\0201llami Fel\0303\0274gyelete / Hungarian Financial Supervisory Authority" },
- { 26852, "Consejo General de Colegios Oficiales de Medicos" },
- { 26853, "Mueller & Kanduth OEG" },
- { 26854, "Cherokee International Corporation" },
- { 26855, "CommProve Ltd." },
- { 26856, "EXCELSIS Business Technology AG" },
- { 26857, "Tocaj" },
- { 26858, "ThemSelves" },
- { 26859, "Compuquest, Inc." },
- { 26860, "6COM s.r.o." },
- { 26861, "BM Polyco Ltd" },
- { 26862, "Idilia Inc." },
- { 26863, "CoreBridge" },
- { 26864, "InSight Health Corp." },
- { 26865, "Spirit Linux" },
- { 26866, "Gigamon Systems LLC" },
- { 26867, "Infitel Engineering GmbH" },
- { 26868, "European Bank of development of metallurgy industry" },
- { 26869, "Skype Technologies S.A." },
- { 26870, "ArcheNova Consulting GmbH" },
- { 26871, "Tidomat AB" },
- { 26872, "Stainsby" },
- { 26873, "Aldea Global S.A." },
- { 26874, "More-IT EOOD" },
- { 26875, "University of Technology of Ho Chi Minh City" },
- { 26876, "ADITEC Inc." },
- { 26877, "Civic Computing" },
- { 26878, "BroadHop Inc" },
- { 26879, "Nine Systems Corporation" },
- { 26880, "CPUArchitects, Inc." },
- { 26881, "Univesidad Tecnica Particular de Loja" },
- { 26882, "Child Exploitation and Online Protection Centre" },
- { 26883, "Lilla Gr\0303\0244n Data och Elektronik" },
- { 26884, "QuickCircuit" },
- { 26885, "Compu-Share, Inc" },
- { 26886, "Compact Microwave Indonesia" },
- { 26887, "Plenware Group Oy" },
- { 26888, "Caresolve C.V." },
- { 26889, "NAV E.P.E." },
- { 26890, "Markus Franzke Software Entwicklung" },
- { 26891, "RCZI FORT" },
- { 26892, "yyovkov.net" },
- { 26893, "St.-Willibrord Gymnasium" },
- { 26894, "Apparatus Inc." },
- { 26895, "Crimean Internet Service" },
- { 26896, "Efore PLC" },
- { 26897, "Copa Airlines" },
- { 26898, "Nippon C.A.D. Co.,Ltd." },
- { 26899, "University of Zagreb, Faculty of Science" },
- { 26900, "Andanza Technologies S.A." },
- { 26901, "No Wires Allowed Pty. Ltd." },
- { 26902, "Xiamen Longtop System Co., Ltd." },
- { 26903, "Xytac system technologies" },
- { 26904, "Kathmann Consulting, LLC" },
- { 26905, "Aboundi Inc." },
- { 26906, "Westfax Inc." },
- { 26907, "Joe Lewis" },
- { 26908, "Pictor Solutions, Inc." },
- { 26909, "SUBNET Solutions Inc." },
- { 26910, "Studentersamfundet ved Aalborg Universitet" },
- { 26911, "Trend Micro Inc. (formerly 'Third Brigade Inc.')" },
- { 26912, "Cheiron" },
- { 26913, "Group Logic, Inc." },
- { 26914, "TIME Networks Inc,." },
- { 26915, "Wolfpac Mobile, Inc." },
- { 26916, "1822direkt Gesellschaft der Frankfurter Sparkasse mbH" },
- { 26917, "Netconsulting" },
- { 26918, "AF Kursor-Audit Ltd." },
- { 26919, "Danpex Corporation" },
- { 26920, "TXT e-solutions SpA" },
- { 26921, "MPI for Mathematics" },
- { 26922, "TD2 Consulting, LLC" },
- { 26923, "Baptist Health South Florida" },
- { 26924, "Knewco, Inc." },
- { 26925, "Enigma Data Solutions Ltd." },
- { 26926, "Masstech Group, Inc" },
- { 26927, "Extant Networks" },
- { 26928, "Aerohive Networks, Inc." },
- { 26929, "jv consultant" },
- { 26930, "php-systems.com" },
- { 26931, "Reaktor Innovations Oy" },
- { 26932, "Visma Software ASA" },
- { 26933, "Tridion B.V." },
- { 26934, "Tattile S.r.l." },
- { 26935, "Oseo" },
- { 26936, "Ville de Marseille" },
- { 26937, "Yahata Kosei Hospital" },
- { 26938, "Worldgroup Consulting Sdn Bhd" },
- { 26939, "Tenwa Ltd." },
- { 26940, "The Economist" },
- { 26941, "Johnstone Associates" },
- { 26942, "AIM Professional Systems Ltd" },
- { 26943, "dieMosers.org" },
- { 26944, "Icross Technology" },
- { 26945, "INTECH" },
- { 26946, "Aditi Technologies" },
- { 26947, "MIPC Ltd." },
- { 26948, "Lambda Research Inc." },
- { 26949, "InterComputer Corp." },
- { 26950, "GUST / Ninja Services" },
- { 26951, "RENAULT-NISSAN B.V." },
- { 26952, "Joint-stock company \"Bank SOYUZ\"" },
- { 26953, "Astronix Technology Inc." },
- { 26954, "INdustrias Sola Basic, SA de CV" },
- { 26955, "Avalon Networks LLC" },
- { 26956, "AG04 Innovative Solutions" },
- { 26957, "Kognita" },
- { 26958, "Indu-Sol GmbH" },
- { 26959, "www.brianmichael.org" },
- { 26960, "VEM Manuten\0303\0247\0303\0243o e Engenharia S/A" },
- { 26961, "TantaComm Systems" },
- { 26962, "KPMG International" },
- { 26963, "ISEANE" },
- { 26964, "van Deenen Support" },
- { 26965, "Thomas Parquette" },
- { 26966, "Iskoot Israel Ltd." },
- { 26967, "Assotiation Mir Ltd" },
- { 26968, "KielNET GmbH" },
- { 26969, "Bisping & Bisping GmbH & Co. KG" },
- { 26970, "Doellken Kunststoffverarbeitung GmbH" },
- { 26971, "Kudra Technical Services" },
- { 26972, "Quetz Limited" },
- { 26973, "Tomato Vine, Inc." },
- { 26974, "Disk Bridge" },
- { 26975, "CompanyName" },
- { 26976, "NexG Co., Ltd." },
- { 26977, "Qball Technologies Ltd." },
- { 26978, "next layer GmbH." },
- { 26979, "Grenkeleasing AG" },
- { 26980, "Dudley PCT" },
- { 26981, "Schrack Energietechnik GmbH" },
- { 26982, "R2 GmbH" },
- { 26983, "RWD Technologies" },
- { 26984, "Otto-Petersen-Haus" },
- { 26985, "ENET Inc." },
- { 26986, "Southwest Research Institute" },
- { 26987, "Gemini Mobile Technologies, Inc." },
- { 26988, "7-Eleven, Inc" },
- { 26989, "INTEGRITY Ltd." },
- { 26990, "Hudson Digital Systems Inc." },
- { 26991, "Develer S.r.l." },
- { 26992, "ENTEL S.A." },
- { 26993, "Promwad Innovation Company" },
- { 26994, "opensma" },
- { 26995, "Public Joint-Stock Company \"Baltiyskiy Bank\"" },
- { 26996, "Qmax Communications" },
- { 26997, "Studer Professional Audio GmbH" },
- { 26998, "AudioSoft Ltd." },
- { 26999, "Grace Community Church of Howard County, Inc." },
- { 27000, "Magistrat Linz, AT" },
- { 27001, "optionsXpress, Inc." },
- { 27002, "Zayo Group (formerly 'Onvoy, Inc.')" },
- { 27003, "Trigence Corp" },
- { 27004, "HOT Telecom Ltd." },
- { 27005, "Hackwerk.net" },
- { 27006, "Chalktime" },
- { 27007, "Luceor S.A.S." },
- { 27008, "Unified Game" },
- { 27009, "Bitrail Networks" },
- { 27010, "LBM Systems, LLC" },
- { 27011, "Sagamore Systems, Inc" },
- { 27012, "CASAudit, Inc." },
- { 27013, "TeleDirect International Inc." },
- { 27014, "CommGate Systems India Pvt Ltd" },
- { 27015, "East Coast Access (PTY) Ltd" },
- { 27016, "Alphito d.o.o." },
- { 27017, "world-direct eBusiness Solutions GmbH" },
- { 27018, "TDC Switzerland AG" },
- { 27019, "Envision Network Technologies Pvt. Ltd." },
- { 27020, "Pan Asian Certificate Policy Authority Limited" },
- { 27021, "Pactiv Corp." },
- { 27022, "Instrumentation Technology Systems Corporation" },
- { 27023, "Nexant, Inc." },
- { 27024, "I-Connect Inc" },
- { 27025, "VisionAlive GmbH" },
- { 27026, "ILIRIKA D.D." },
- { 27027, "ESTEAM Software GmbH" },
- { 27028, "Torgservis Ltd." },
- { 27029, "REH" },
- { 27030, "Wichorus Inc." },
- { 27031, "CNS Technology Inc." },
- { 27032, "Sobey Digital Technology Co. Ltd." },
- { 27033, "OK soft GmbH" },
- { 27034, "Hopling Technologies B.V." },
- { 27035, "Alamon Telco, Inc." },
- { 27036, "Mercy College" },
- { 27037, "Netmarks, Inc." },
- { 27038, "Robot Visual Systems Gmbh" },
- { 27039, "Kehitysyhteisty\0303\0266n palvelukeskus ry." },
- { 27040, "Royal Canadian Mounted Police" },
- { 27041, "KEMET Corporation" },
- { 27042, "UNIVERSIDAD DE COLIMA" },
- { 27043, "Centro de Informatica e Automacao do Estado de Santa Catarina" },
- { 27044, "CLUSTERPOINT LTD." },
- { 27045, "Santillana de Ediciones S.A." },
- { 27046, "Alex Group, spol. s r.o." },
- { 27047, "ASK Interactive UK Ltd" },
- { 27048, "Opteq Systems International Ltd" },
- { 27049, "Symark Software" },
- { 27050, "Warrior Technology Services, Inc" },
- { 27051, "Chipidea Microelectronica S.A." },
- { 27052, "Bay Microsystems, Inc." },
- { 27053, "Omnitromics Pty Ltd" },
- { 27054, "Oneida Baptist Institute" },
- { 27055, "ZANDER LLC." },
- { 27056, "Zednax Limited" },
- { 27057, "Elektrobit Automotive GmbH (formerly '3SOFT GmbH')" },
- { 27058, "Ventelo Norge AS" },
- { 27059, "SmartSol d.o.o." },
- { 27060, "interactive instruments" },
- { 27061, "NetSENS SRL" },
- { 27062, "OSTIUM-Solu\0303\0247\0303\0265es de Engenharia Lda" },
- { 27063, "IMocha Consulting Sdn Bhd" },
- { 27064, "University of St. Thomas - Houston" },
- { 27065, "Quagility, Inc." },
- { 27066, "Rave Wireless, Inc." },
- { 27067, "Softinbox Inc." },
- { 27068, "Mooter Media Ltd" },
- { 27069, "Kaon Media Co., Ltd." },
- { 27070, "DekTec Digital Video B.V." },
- { 27071, "H\0303\0245logaland IKT-Senter as" },
- { 27072, "Euro-emme s.r.l." },
- { 27073, "Septentrio nv/sa" },
- { 27074, "Point International" },
- { 27075, "RDP B92 a.d." },
- { 27076, "Zot Inc." },
- { 27077, "Nanasoft Szoftverfejleszt\0303\0265 Bt." },
- { 27078, "lohn.us" },
- { 27079, "AT Promotions Limited" },
- { 27080, "Sequanux" },
- { 27081, "Trimm, Inc." },
- { 27082, "CESMIC - Centro de Excel\0303\0252ncia em Servidores de Miss\0303\0243o Cr\0303\0255tica" },
- { 27083, "Switching Technologies" },
- { 27084, "Arnulf Wiedemann" },
- { 27085, "Greenview Data, Inc." },
- { 27086, "Texas Transportation Institute" },
- { 27087, "Networking Systems" },
- { 27088, "Supreme Court of New Mexico" },
- { 27089, "Guus Leeuw IT Solutions" },
- { 27090, "Nectia SA" },
- { 27091, "Brilliant Telecommunications Inc." },
- { 27092, "Astronautics Corporation of America" },
- { 27093, "YUSO.JP" },
- { 27094, "RANEEN" },
- { 27095, "Portfolio Wired" },
- { 27096, "Cadet Family" },
- { 27097, "Aphelion Communications Inc" },
- { 27098, "SOE Software Pty Ltd" },
- { 27099, "Bunda Mulia University" },
- { 27100, "SwiftView, Inc." },
- { 27101, "EMBARC.biz, LLC" },
- { 27102, "GDMC" },
- { 27103, "Romanian Space Agency (ROSA)" },
- { 27104, "CFT Ltd." },
- { 27105, "SoftMethod GmbH" },
- { 27106, "Averina Software" },
- { 27107, "Supporting Open Source bvba" },
- { 27108, "Micro Elektronische Producten BV" },
- { 27109, "Barnaul State Pedagogical University" },
- { 27110, "Petrozavodsk State University, Computer Science Department" },
- { 27111, "Adamentium SAS" },
- { 27112, "MATHEMA Software GmbH" },
- { 27113, "APCO Worldwide" },
- { 27114, "electrolyte consulting" },
- { 27115, "Qbit GmbH" },
- { 27116, "Freesystems S.L.L." },
- { 27117, "Tux-Logic" },
- { 27118, "Grontmij NV" },
- { 27119, "ID90 Technologies" },
- { 27120, "Smar Equipamentos Industriais LTDA" },
- { 27121, "ikirby.net" },
- { 27122, "Shadowcat Systems Ltd." },
- { 27123, "ICOP Digital, Inc." },
- { 27124, "Kociok Beratungsgesellschaft mbH" },
- { 27125, "Accuity LLP" },
- { 27126, "Universidade Federal de Sao Carlos" },
- { 27127, "Systems and Software, Inc." },
- { 27128, "Landeshauptstadt Hannover" },
- { 27129, "Department of Conservation, New Zealand" },
- { 27130, "TehnoCom Ltd." },
- { 27131, "kk+w GmbH" },
- { 27132, "APIS IT d.o.o." },
- { 27133, "Hensley, Elam & Associates" },
- { 27134, "Bangladesh Online Limited" },
- { 27135, "77 Elektronika Kft" },
- { 27136, "Osaka Gas Information System Research Institute Co.,Ltd." },
- { 27137, "Proxicom, Inc." },
- { 27138, "Techno Viking" },
- { 27139, "My2do Solutions" },
- { 27140, "Acrodyne Industries, Inc." },
- { 27141, "Applied Informatics Software Engineering GmbH" },
- { 27142, "ALSTEC" },
- { 27143, "DirectPark GmbH" },
- { 27144, "Transact Limited" },
- { 27145, "GrahamCox.co.uk" },
- { 27146, "Infocentr Company Ltd." },
- { 27147, "Mobissimo, Inc." },
- { 27148, "ICP-SC" },
- { 27149, "Wenzhou University" },
- { 27150, "Angelltech Co., Ltd." },
- { 27151, "SK C&C" },
- { 27152, "Institut f\0303\0274r Kristallz\0303\0274chtung Berlin" },
- { 27153, "Matzke Softwareentwicklung" },
- { 27154, "Telekomunikacja Polska S.A." },
- { 27155, "MR Copiadoras Digitais Ltda." },
- { 27156, "Warlei Alves" },
- { 27157, "Quartet Financial Systems Inc." },
- { 27158, "Department of Internal Affairs, New Zealand" },
- { 27159, "Persistent Systems, LLC" },
- { 27160, "PlaSec, Inc." },
- { 27161, "DeGooroo, Inc." },
- { 27162, "Serveis de Salut Integrats Baix Empord\0303\0240" },
- { 27163, "Dolphin Technology Inc" },
- { 27164, "CNET Networks Asia Pacific Pte Ltd" },
- { 27165, "Universidade Tecnol\0303\0263gica Federal do Paran\0303\0241 (UTFPR)" },
- { 27166, "Checchia.NET IT Consulting" },
- { 27167, "NIPPON ANTENNA CO.,LTD." },
- { 27168, "Edward Roper" },
- { 27169, "Erlang Financial System (Pty) Ltd" },
- { 27170, "ETHALON GmbH" },
- { 27171, "Council of the European Union" },
- { 27172, "ArcaBit Ltd." },
- { 27173, "Software Consulting Markus Bernhardt GmbH" },
- { 27174, "Guenther Mair" },
- { 27175, "iO tech s.r.l." },
- { 27176, "Avinity Systems BV" },
- { 27177, "Intendencia Municipal de Montevideo" },
- { 27178, "ISIB CNR" },
- { 27179, "Ultri" },
- { 27180, "Frontier Science and Technology Research Foundation, Inc." },
- { 27181, "Teak Technologies" },
- { 27182, "CAI Networks, Inc." },
- { 27183, "Bluewave Networks Inc." },
- { 27184, "UNAVCO" },
- { 27185, "Vendorama LTD" },
- { 27186, "shenzhen qiaowei investment & development co.,Ltd" },
- { 27187, "VALIANT COMMUNICATIONS LIMITED" },
- { 27188, "SEP Software Engineering Partner GmbH" },
- { 27189, "DD NetService GmbH" },
- { 27190, "michaelbreuer.eu" },
- { 27191, "Godalming College" },
- { 27192, "Soongsil University" },
- { 27193, "Patrick Monahan (Drogheda) Ltd" },
- { 27194, "DELTA Resources Inc." },
- { 27195, "Stadtwerke Duesseldorf AG" },
- { 27196, "Harder Software Ltd." },
- { 27197, "Heteonix" },
- { 27198, "R\0303\0251seau pour l'Excellence en Enseignement Sup\0303\0251rieur de l'Afrique" },
- { 27199, "Sepracor Inc." },
- { 27200, "Energy Options, Inc" },
- { 27201, "Vianel" },
- { 27202, "Business Systems UK Ltd" },
- { 27203, "Celesio AG" },
- { 27204, "Seawolf Technologies Inc." },
- { 27205, "GridApp Systems, Inc" },
- { 27206, "Bitshift, Berchtold IT Solutions" },
- { 27207, "SevOne Inc" },
- { 27208, "Opinsys Oy" },
- { 27209, "Lendworx, Inc." },
- { 27210, "Suso Technology Services, Inc." },
- { 27211, "Engsound Technical Enterprise Co., Ltd." },
- { 27212, "Routing International NV" },
- { 27213, "Banka Slovenije" },
- { 27214, "Holzhausen Network" },
- { 27215, "MAGIX AG" },
- { 27216, "Patryk Sciborek" },
- { 27217, "Digisense Inc." },
- { 27218, "GASAG Berliner Gaswerke AG" },
- { 27219, "Funambol, Inc." },
- { 27220, "EFCO Corporation Inc." },
- { 27221, "Diebold Software Solutions Inc" },
- { 27222, "Pathway Connectivity Inc." },
- { 27223, "Alcon Technologies, Inc" },
- { 27224, "OhReally" },
- { 27225, "Chiris Networks, Inc." },
- { 27226, "Asociaci\0303\0263n Grupo Universitario de Inform\0303\0241tica (Universidad de Valladolid)" },
- { 27227, "SC SECPRAL COM SRL" },
- { 27228, "DSP Group Inc." },
- { 27229, "Engineers Without Borders Canada" },
- { 27230, "E-Portal" },
- { 27231, "Big Sky Computer Systems LLC." },
- { 27232, "BATM Advanced Communications GmbH" },
- { 27233, "La-Events" },
- { 27234, "PortAuthority Technologies Inc." },
- { 27235, "Politechnika Gdanska" },
- { 27236, "Netoracle Ltd." },
- { 27237, "Smart Data Solutions, Inc." },
- { 27238, "Winbond Electronics Corp." },
- { 27239, "USC-Satunama" },
- { 27240, "Headnet aps" },
- { 27241, "IDC Informatica s.r.l." },
- { 27242, "Bilfinger Berger AG" },
- { 27243, "Signal Networks Pvt. Ltd." },
- { 27244, "IronGate S.L." },
- { 27245, "Maltacom plc" },
- { 27246, "J\0303\0244rf\0303\0244lla Kommun, F\0303\0266r- och Grundskolor" },
- { 27247, "Radian Group Inc." },
- { 27248, "Computer Programs and Systems Inc. (CPSI)" },
- { 27249, "Picosoft Ltd." },
- { 27250, "West Linn Paper Company" },
- { 27251, "MedStreaming" },
- { 27252, "Excapsa Services Inc." },
- { 27253, "AusRegistry Pty Ltd" },
- { 27254, "FIX Flyer LLC" },
- { 27255, "Tarkhany Regional (County) Open Joint-Stock Bank" },
- { 27256, "NPF \"KRUG\"" },
- { 27257, "Valimo Wireless Oy" },
- { 27258, "NovaSecure AS" },
- { 27259, "BEL POWER SOLUTIONS (formerly 'Power-One')" },
- { 27260, "DynaPel Systems Inc." },
- { 27261, "Servicios Avanzados para las Instituciones S.L." },
- { 27262, "DANTE Ltd." },
- { 27263, "Netsmart Public Health, Inc." },
- { 27264, "Nmodel" },
- { 27265, "Inlet Technologies, Inc." },
- { 27266, "freecode" },
- { 27267, "Encryptanet, Inc." },
- { 27268, "Hangar Eighteen Enterprises LLC" },
- { 27269, "Mynavi Corporation" },
- { 27270, "KoSyS - Kockisch ITK Systems and Services" },
- { 27271, "Structured Software Systems Ltd" },
- { 27272, "Envisioneering Medical Technologies" },
- { 27273, "Infinite Video Corporation" },
- { 27274, "Fastfeed Inc." },
- { 27275, "Alexcoder" },
- { 27276, "Technovare Systems, Inc." },
- { 27277, "SatPath Systems, Inc." },
- { 27278, "Sindoricoh Co., Ltd." },
- { 27279, "GoldenNet Technology Inc." },
- { 27280, "Universit\0303\0240 Degli Studi di Urbino \"Carlo Bo" },
- { 27281, "Netcon Systems" },
- { 27282, "Realtek Semiconductor corp." },
- { 27283, "Xcenium Technology" },
- { 27284, "Daon Trusted Identity Services (formerly 'Security Biometric Clearing Network')" },
- { 27285, "The Nisu research team" },
- { 27286, "Netopia, Inc." },
- { 27287, "University Of Perugia" },
- { 27288, "MySystemAdmin" },
- { 27289, "eGistics, Inc." },
- { 27290, "Beijing Osee Digital Technology Co.Ltd" },
- { 27291, "Bundesministerium f\0303\0274r Verkehr, Bau und Stadtentwicklung" },
- { 27292, "Topex S.A" },
- { 27293, "Melian Italia SRL" },
- { 27294, "MacSpecialist" },
- { 27295, "Axel Technology srl" },
- { 27296, "Blizzard Entertainment" },
- { 27297, "SchechterTech LLC" },
- { 27298, "Asia Pacific Broadband Wireless Communications" },
- { 27299, "Informed Computing" },
- { 27300, "TRANSCOM TECHNOLOGIES CO.,LTD" },
- { 27301, "galaxy.io" },
- { 27302, "Der Senator f\0303\0274r Bildung und Wissenschaft" },
- { 27303, "Clear Value" },
- { 27304, "DKT A/S" },
- { 27305, "Satis Superque Merce BV" },
- { 27306, "Automated Computing Machinery, S.L." },
- { 27307, "Rankin County School District" },
- { 27308, "Unique Communications Inc." },
- { 27309, "SSRC Media, LLC" },
- { 27310, "NetIDEAS, Inc." },
- { 27311, "Seni Systems, Inc." },
- { 27312, "EDA LTD." },
- { 27313, "Sintrex Integration Services Pty. Ltd." },
- { 27314, "Del Systems d.o.o." },
- { 27315, "Internet Management Technology Laboratory" },
- { 27316, "Schoeppner" },
- { 27317, "Extreme Engineering Solutions, Inc" },
- { 27318, "ISE Inc." },
- { 27319, "Nexen Inc." },
- { 27320, "Kingsbury Inc." },
- { 27321, "Ready Technology (UK) Limited" },
- { 27322, "21Net Ltd." },
- { 27323, "Kei Communication Technology Inc." },
- { 27324, "Semejny Doktor" },
- { 27325, "Ubiquitech A/S" },
- { 27326, "EUIT Telecomunicacion, Universidad Polit\0303\0251cnica de Madrid" },
- { 27327, "Mobizoom AG" },
- { 27328, "ROSA - Dansk Rock Samr\0303\0245d" },
- { 27329, "Business Education Council of Niagara" },
- { 27330, "LKHP Inc." },
- { 27331, "JTG 99 ApS" },
- { 27332, "Sogeti" },
- { 27333, "Buzz Systems Ltd." },
- { 27334, "Multidyne Electronics Inc." },
- { 27335, "Ritek ZRt." },
- { 27336, "Converged Access, Inc." },
- { 27337, "CableServ Inc." },
- { 27338, "ATEME" },
- { 27339, "Project Automation S.p.A." },
- { 27340, "OpenVPN Solutions LLC." },
- { 27341, "Medianstrip" },
- { 27342, "Haskology Consulting" },
- { 27343, "\"Telekom Srbija\" a.d." },
- { 27344, "Dallmeier electronic GmbH & Co.KG" },
- { 27345, "Alticor, Inc" },
- { 27346, "VDA Elettronica spa" },
- { 27347, "Alexandrow Webhosting" },
- { 27348, "Blue Spruce Technologies, Inc." },
- { 27349, "Lonardi.org" },
- { 27350, "QEW Europe" },
- { 27351, "Medizinische Fakult\0303\0244t Carl Gustav Carus Dresden an der" },
- { 27352, "MAYWIDE TECHNOLOGY CO.,LTD." },
- { 27353, "ELTA" },
- { 27354, "epona.org" },
- { 27355, "University Politechnical of Bucharest" },
- { 27356, "DWESAB Engineering" },
- { 27357, "ANDROME NV" },
- { 27358, "Technology Dynamics, Inc." },
- { 27359, "HILTRON GmbH" },
- { 27360, "NLS Technology LLC" },
- { 27361, "Rizon Software Technology Co.,Ltd." },
- { 27362, "Symbio Technologies, LLC" },
- { 27363, "TvHead, Inc." },
- { 27364, "Axioma Inc." },
- { 27365, "Softech Worldwide LLC" },
- { 27366, "INSIGNIA MOBILE COMMUNICATIONS,C.A." },
- { 27367, "Visonys AG" },
- { 27368, "Business I.T. Systems Ltd" },
- { 27369, "Est\0303\0247e Lauder Inc" },
- { 27370, "Hennepin County" },
- { 27371, "AspellClark" },
- { 27372, "Progenist Systems Inc." },
- { 27373, "Quickpoint Solutions Limited" },
- { 27374, "MakeITOpen.Net" },
- { 27375, "IT-Systemhaus Thomas Wiese" },
- { 27376, "Triple-It ApS" },
- { 27377, "Groupster" },
- { 27378, "Belden" },
- { 27379, "NESS Consulting Ltd" },
- { 27380, "PCS Process Control Systems AG" },
- { 27381, "Myndit Pty Ltd" },
- { 27382, "OmniAccess S.L." },
- { 27383, "Theo Benning GmbH & CoKG" },
- { 27384, "Werner Industrielle Elektronik" },
- { 27385, "ELCON Systemtechnik GmbH" },
- { 27386, "Farmers Group Inc." },
- { 27387, "IHOP Corp." },
- { 27388, "Wiremat Ltd" },
- { 27389, "Splunk, Inc." },
- { 27390, "iCoGo Inc." },
- { 27391, "Braintribe IT Technologies" },
- { 27392, "SCHILLER" },
- { 27393, "Metrovacesa, S.A." },
- { 27394, "NOSMadeira" },
- { 27395, "AVANSI C. por A." },
- { 27396, "Open Journal Project" },
- { 27397, "Praxis Balster-De Beer" },
- { 27398, "Bernd Haug" },
- { 27399, "Ross Video Limited" },
- { 27400, "Randolph-Macon College" },
- { 27401, "Dataupia Corporation" },
- { 27402, "TaTrad GmbH" },
- { 27403, "Frontier IT" },
- { 27404, "SimpleComTools" },
- { 27405, "Ren\0303\0251 Faigle AG" },
- { 27406, "Center Communication Systems GmbH" },
- { 27407, "BUROTEC" },
- { 27408, "Hotelplan AG" },
- { 27409, "Mondi Packaging AG" },
- { 27410, "SkoleSYS A/S" },
- { 27411, "Curtis J Coleman" },
- { 27412, "Icsoft Pty Ltd" },
- { 27413, "Labs2 i Lund AB" },
- { 27414, "Stadt Chemnitz" },
- { 27415, "SiRF Technology, Inc." },
- { 27416, "Elvaco AB" },
- { 27417, "FAST TV-SERVER AG" },
- { 27418, "FiSEC GmbH" },
- { 27419, "University of New England" },
- { 27420, "Southside Community Hospital" },
- { 27421, "Synergy for Smart Solutions" },
- { 27422, "Inter Cars S.A." },
- { 27423, "Potts Mullarkey" },
- { 27424, "Firstin Wireless Technology" },
- { 27425, "Affinity Mobile, Inc." },
- { 27426, "VIASOFT Ltd., Ukraine" },
- { 27427, "Vecima Networks Inc." },
- { 27428, "Intesys S.r.l." },
- { 27429, "IT Service Zahner" },
- { 27430, "Call Genie Inc" },
- { 27431, "Steton Technology Group, Inc." },
- { 27432, "Archalien.com" },
- { 27433, "Centeris Corporation" },
- { 27434, "Hal's Software, Inc." },
- { 27435, "Aozora Information Systems Co. Ltd." },
- { 27436, "Jefferies & Company, Inc." },
- { 27437, "TOA Corporation" },
- { 27438, "Eric Lindahl" },
- { 27439, "OpenAgentSystem" },
- { 27440, "Ingo Lantschner" },
- { 27441, "PEM GmbH" },
- { 27442, "SAPERION AG" },
- { 27443, "yLabs SRL" },
- { 27444, "Murphy Software B.V." },
- { 27445, "InforMed, LLC" },
- { 27446, "PAHL.NET systems" },
- { 27447, "Femtio Procent Data AB" },
- { 27448, "The Aero Group, Inc." },
- { 27449, "Universidad de Buenos Aires" },
- { 27450, "RealOrganized, Inc." },
- { 27451, "Aurcon Computer Services" },
- { 27452, "Billings Clinic" },
- { 27453, "LANE COMPANY" },
- { 27454, "NeoMentis Ltd" },
- { 27455, "Schlesinger Associates, Inc." },
- { 27456, "University of Warwick" },
- { 27457, "Joomla! (OpenSourceMatter Inc)" },
- { 27458, "Flo Healthcare" },
- { 27459, "INTLNET" },
- { 27460, "Digital Maelstrom LLC" },
- { 27461, "Knit One Pearl One" },
- { 27462, "Bubble Motion Pte Ltd" },
- { 27463, "Th\0303\0274Com GmbH" },
- { 27464, "Projekty Bankowe Polsoft sp. z o.o." },
- { 27465, "Domodesk S.L." },
- { 27466, "Inter IKEA Systems BV" },
- { 27467, "NETHINKS GmbH" },
- { 27468, "ELTA-R" },
- { 27469, "Glowlink Communications Technology Inc." },
- { 27470, "Kuorem IT Consulting s.l." },
- { 27471, "Kotelett Group" },
- { 27472, "Peak Web Consulting, Inc." },
- { 27473, "Consejo de la Magistratura de la Ciudad Autonoma de Buenos Aires" },
- { 27474, "Multi Co" },
- { 27475, "CiriTech Systems, Inc." },
- { 27476, "MicsGarage" },
- { 27477, "Ethrix ltd." },
- { 27478, "Boekingspunt Nederland BV" },
- { 27479, "Projekt 42! GmbH" },
- { 27480, "FORSIS GmbH" },
- { 27481, "Arzl Datentechnik" },
- { 27482, "G2 Microsystems Pty Ltd" },
- { 27483, "OpenSIPS.ORG (formerly 'OpenSER.ORG')" },
- { 27484, "Eightwire.com Limited" },
- { 27485, "JSC Public Key Infrastructure" },
- { 27486, "swissgeek.org" },
- { 27487, "Kent County Council" },
- { 27488, "A.T.U Handels GmbH" },
- { 27489, "Evangelisch-Lutherische Landeskirche in Braunschweig" },
- { 27490, "SP Swedish National Testing and Research Institute" },
- { 27491, "Freeport Technologies Inc." },
- { 27492, "Major Hospital" },
- { 27493, "Direcci\0303\0263n de Tecnolog\0303\0255a Educativa" },
- { 27494, "Seatore Technology" },
- { 27495, "Optiway" },
- { 27496, "MALAIWAH.COM" },
- { 27497, "Fiducial Staffing" },
- { 27498, "Innovative Technology Solutions, LLC" },
- { 27499, "Operations Feedback Systems Pty. Ltd." },
- { 27500, "Dawning Ltd." },
- { 27501, "Seldon Systems, Inc." },
- { 27502, "ARAB BANKING COPORATION" },
- { 27503, "TD Computer Solutions GmbH & Co. KG" },
- { 27504, "Celtius Ltd" },
- { 27505, "KT-NET Communications GmbH" },
- { 27506, "Object Builder Software - Bulgaria" },
- { 27507, "Automation Control Products Inc." },
- { 27508, "TravelCenters of America" },
- { 27509, "Creanord Ltd." },
- { 27510, "NetGain Systems Pte. Ltd." },
- { 27511, "Gigante Inc." },
- { 27512, "M3 Technology Group" },
- { 27513, "Pro-E Automation Sdn Bhd" },
- { 27514, "QTECH LLC" },
- { 27515, "Stockholms stad" },
- { 27516, "NIVC AS" },
- { 27517, "GT50 Srl (formerly 'Secure Edge Srl')" },
- { 27518, "ProMedica Health System" },
- { 27519, "Pozicom Technologies, Inc." },
- { 27520, "International Electronic Communication Analysts (IECA), Inc." },
- { 27521, "eMusic.com, Inc." },
- { 27522, "Municipio de la Ciudad de Monterrey" },
- { 27523, "runlevel3 GmbH" },
- { 27524, "TRIAX CZ s.r.o." },
- { 27525, "DET 1 AFEREG" },
- { 27526, "Kanazawa University" },
- { 27527, "ABB Ltd" },
- { 27528, "Dragon Stock labo Inc." },
- { 27529, "dri, Consultoria Inform\0303\0241tica Lda" },
- { 27530, "decontis GmbH" },
- { 27531, "Planned IT Solutions, Inc." },
- { 27532, "Hancock Regional Hospital" },
- { 27533, "BKE a.s." },
- { 27534, "Widestore srl" },
- { 27535, "Artwork Systems nv" },
- { 27536, "SANTECLAIR" },
- { 27537, "Educatio Public Services Non-profit Llc." },
- { 27538, "ADTSystems s.r.o." },
- { 27539, "Pacific DataVision, Inc." },
- { 27540, "SIMPPLE S.L." },
- { 27541, "ITSSeevia Group" },
- { 27542, "COSAT INC." },
- { 27543, "Gillware Data Services, LLC" },
- { 27544, "NSK OpenSource, Inc" },
- { 27545, "NINOMIYA TOWN" },
- { 27546, "American University of Beirut" },
- { 27547, "Four Batons Technology" },
- { 27548, "KRS Hardware Monitoring Development" },
- { 27549, "TELESANTE AQUITAINE" },
- { 27550, "Alchemy Group Limited" },
- { 27551, "Farheap Solutions Inc." },
- { 27552, "Nimbus, Inc." },
- { 27553, "Salem Academy and College" },
- { 27554, "PureTech Systems Inc." },
- { 27555, "Rosum Corporation" },
- { 27556, "The PTR Group Inc" },
- { 27557, "Botech AB" },
- { 27558, "IHMC" },
- { 27559, "Data Science Group, Inc" },
- { 27560, "Alan Dick and Company Ltd" },
- { 27561, "Indeca" },
- { 27562, "daemon software" },
- { 27563, "QStar Technologies, Inc." },
- { 27564, "UNIFAL-MG - Universidade Federal de Alfenas" },
- { 27565, "Ministerio de Industria Turismo y Comercio" },
- { 27566, "Vizrt" },
- { 27567, "Baur GmbH" },
- { 27568, "Kupetto" },
- { 27569, "National Digital Medical Archive, Inc." },
- { 27570, "GiaRoCo" },
- { 27571, "Guenther Brunthaler EDV Dienstleistungen" },
- { 27572, "CEOS Integradores de Sistemas C.A." },
- { 27573, "TechGuard Security, LLC (formerly 'the-ferret.net')" },
- { 27574, "10MT Co." },
- { 27575, "DSL Internet Corporation" },
- { 27576, "Envysion, Inc" },
- { 27577, "R. D. Pierce" },
- { 27578, "cartchunk.org" },
- { 27579, "Keltron Corporation" },
- { 27580, "Integrity Solu\0303\0247\0303\0265es em Inform\0303\0241tica Sociedade Simples" },
- { 27581, "Netum Oy" },
- { 27582, "pH Group Ltd" },
- { 27583, "Metronik d.o.o." },
- { 27584, "Upplysningscentralen AB" },
- { 27585, "Orange Nederland BV" },
- { 27586, "Altai Technologies Limited" },
- { 27587, "Shinto Densan Corporation" },
- { 27588, "KingsIsle Entertainment, Inc." },
- { 27589, "ZBN (Zhengzhou Broadcasting TV Network) Co. Ltd." },
- { 27590, "Cardinal Information Systems Ltd." },
- { 27591, "Bit-Side GmbH" },
- { 27592, "Beijing NetEast Technologies Corporation Ltd" },
- { 27593, "Media Excel, Inc." },
- { 27594, "Skipper Wireless, Inc." },
- { 27595, "NWP-Technologie Informatyczne" },
- { 27596, "NONNIC" },
- { 27597, "CADIGS Ltd." },
- { 27598, "Ayuntamiento de Madrid - Policia Municipal" },
- { 27599, "BIT-Kazan Ltd." },
- { 27600, "C?!., C por A" },
- { 27601, "Higher Institute for Applied Sciences and Technology (HIAST)" },
- { 27602, "Woodforest National Bank" },
- { 27603, "Groove Mobile" },
- { 27604, "Tetralogyx" },
- { 27605, "Urzad Miasta Stolecznego Warszawy" },
- { 27606, "Global NetWatch, Incorporated" },
- { 27607, "Skin and Cancer Foundation Inc." },
- { 27608, "Wuhan Yangtze Optical Technology Co., Ltd" },
- { 27609, "Dash Navigation Inc." },
- { 27610, "Solarcore, Inc." },
- { 27611, "Traffix Systems Ltd" },
- { 27612, "SmartStream Technologies" },
- { 27613, "AlbaNova University Center, the Stockholm Center for Physics," },
- { 27614, "Ascom Sweden AB" },
- { 27615, "devolo" },
- { 27616, "Phaedrus Ltd" },
- { 27617, "PayEx Solutions AB" },
- { 27618, "Sihl + Eika Papier AG" },
- { 27619, "BeWAN Systems" },
- { 27620, "GS1 Uruguay" },
- { 27621, "National Information Technologies JSC" },
- { 27622, "Open Communication Security S.A." },
- { 27623, "Shavlik Technologies LLC" },
- { 27624, "Metanoia Communications Inc." },
- { 27625, "UZ Brussel" },
- { 27626, "SK-NIC, a.s." },
- { 27627, "Ceskoslovenska obchodni banka, a.s." },
- { 27628, "Unum Group" },
- { 27629, "Helenic Ministry of Interior Public Administration and" },
- { 27630, "OSI ste civile etudes et recherches" },
- { 27631, "Touchstone Technologies Inc." },
- { 27632, "MVNO Sherpa" },
- { 27633, "Eternix Ltd." },
- { 27634, "ABC Phones of NC Inc." },
- { 27635, "Wholesale Communications Group P/L" },
- { 27636, "F. Camara Inform\0303\0241tica Ltda" },
- { 27637, "Lateral Networks Ltd" },
- { 27638, "Gulf Interstate Engineering" },
- { 27639, "Nashua Mobile (Pty) Ltd" },
- { 27640, "Telefonica Moviles Espa\0303\0261a, S.A." },
- { 27641, "Junta de Extremadura" },
- { 27642, "Manuel Linsmayer" },
- { 27643, "Zeda Ltd." },
- { 27644, "CFC Informationssysteme Entwicklungsgesellschaft m.b.H." },
- { 27645, "PostgreSQL Global Development Group" },
- { 27646, "Systems Engineering & Assessment Ltd" },
- { 27647, "Iskra Zascite d.o.o." },
- { 27648, "ESPCI" },
- { 27649, "Hay Systems Limited" },
- { 27650, "Herward Hoyer" },
- { 27651, "ProConsultant Informatique" },
- { 27652, "SUNY" },
- { 27653, "MyRunning.com" },
- { 27654, "Tain Malta Ltd. (formerly 'Involve Ltd.')" },
- { 27655, "IFP" },
- { 27656, "HafenCity Universit\0303\0244t Hamburg" },
- { 27657, "Hugh McLenaghan" },
- { 27658, "Agemarks Technologies" },
- { 27659, "Atol, Conseils et D\0303\0251veloppements" },
- { 27660, "Deutsche Welle" },
- { 27661, "GateSquare Co., Ltd." },
- { 27662, "PePWave Ltd." },
- { 27663, "AFP548.com" },
- { 27664, "Intuicom, Inc." },
- { 27665, "ISR Inc." },
- { 27666, "NF Media Inc." },
- { 27667, "Apprion, Inc" },
- { 27668, "Olivier Molteni" },
- { 27669, "easyRAID" },
- { 27670, "Tirol Kliniken GmbH." },
- { 27671, "ATL Systems, Inc." },
- { 27672, "Electool Systems Kft." },
- { 27673, "QUOD Financial SA" },
- { 27674, "Mobibrasil Solu\0303\0247oes Interactivas pela internet" },
- { 27675, "Curtiss-Wright Controls, Inc." },
- { 27676, "Motionbox, Inc" },
- { 27677, "Evolution Broadcast Pty. Ltd." },
- { 27678, "Jazzio" },
- { 27679, "The Hyde Company" },
- { 27680, "NEMO ENG" },
- { 27681, "Technorati Inc" },
- { 27682, "ALBA Software S.L." },
- { 27683, "Mscorp Venezuela C.A." },
- { 27684, "Idopte" },
- { 27685, "Trent University" },
- { 27686, "Refactored Networks, LLC" },
- { 27687, "DataMirror Corporation" },
- { 27688, "Keane, Inc." },
- { 27689, "Enertel Wireless BV" },
- { 27690, "Arqiva" },
- { 27691, "Framework Computer Consultants Limited" },
- { 27692, "Thinware s.r.l." },
- { 27693, "Voith AG" },
- { 27694, "UTU Inc." },
- { 27695, "Meteor Mobile" },
- { 27696, "AttoSense" },
- { 27697, "GRAVITY CIS INC" },
- { 27698, "Vaal Hosting" },
- { 27699, "Tyche Enterprises, LLC" },
- { 27700, "Open Diameter Project" },
- { 27701, "Origin Electric co.,Ltd." },
- { 27702, "Beijing Softtone Company, Ltd." },
- { 27703, "CABO Communications A/S" },
- { 27704, "Keisokugiken Corporation" },
- { 27705, "1984 ehf" },
- { 27706, "E-commerce-xhtml 1.1 dot com" },
- { 27707, "Siminn" },
- { 27708, "ISB Brachert" },
- { 27709, "Software Applications" },
- { 27710, "hostNET Medien GmbH" },
- { 27711, "1053935 Alberta Ltd." },
- { 27712, "Managing Company SB JSC" },
- { 27713, "Ethon" },
- { 27714, "Arne Steinkamm" },
- { 27715, "Posterity Technologies Co. Ltd" },
- { 27716, "Minnesota State Colleges and Universities" },
- { 27717, "CeDoc Modena" },
- { 27718, "Selfservix IT-Service" },
- { 27719, "Vizioncore, Inc." },
- { 27720, "SBone.DE" },
- { 27721, "Dotster, Inc." },
- { 27722, "Pennic Consulting Inc" },
- { 27723, "Permessa Corporation (formerly 'DYS Analytics, Inc.')" },
- { 27724, "Opticomm Corporation" },
- { 27725, "Asurion" },
- { 27726, "Executive Coach Inc." },
- { 27727, "Antartec S.A.C." },
- { 27728, "Datron World Communications, Inc" },
- { 27729, "US Technology Resources LLC" },
- { 27730, "Leporis Corporation" },
- { 27731, "Western Power" },
- { 27732, "OnionSoftware, Inc." },
- { 27733, "ASW Systems s.r.o." },
- { 27734, "Squitel" },
- { 27735, "YawaBureau s.r.l." },
- { 27736, "Smile Ltd." },
- { 27737, "Berendsen Group Services GmbH" },
- { 27738, "VERIT Verwaltungs- und Immobilien-Gesellschaft" },
- { 27739, "Taunis GmbH" },
- { 27740, "ADFC LV Berlin e.V." },
- { 27741, "AAA Carolinas" },
- { 27742, "Flying Horse Studios" },
- { 27743, "Shaney" },
- { 27744, "Majik Networks Inc." },
- { 27745, "4Step Ltd." },
- { 27746, "The institute of science and technology" },
- { 27747, "CAMINO MO" },
- { 27748, "Canon Korea Business Solutions Inc." },
- { 27749, "Stennis Institute of Government" },
- { 27750, "GoodsoftwareLab Co. Ltd." },
- { 27751, "Firefly FZ LLC" },
- { 27752, "4A Consulting AB" },
- { 27753, "Nucleo Operacional para a Sociedade de Informa\0303\0247\0303\0243o (NOSI)" },
- { 27754, "Affinite Corporation" },
- { 27755, "FiveRuns" },
- { 27756, "Renaissoft, Inc." },
- { 27757, "Solis Energy, Inc." },
- { 27758, "ServiceSoft Sdn. Bhd." },
- { 27759, "Sense8 UK Ltd." },
- { 27760, "Novo Mundo Moveis e Utilidades Ltda" },
- { 27761, "System One GmbH" },
- { 27762, "Fixe-Post" },
- { 27763, "Accuratus Consulting, LLC." },
- { 27764, "DONG Energy A/S" },
- { 27765, "Welltrans O&E Technology Co. , Ltd." },
- { 27766, "Grid Net, Inc." },
- { 27767, "JavaService Consulting" },
- { 27768, "Gesellschaft f\0303\0274r Netzwerk- und Automatisierungs-Technologie mbH" },
- { 27769, "Universit\0303\0251 de Perpignan Via Domitia" },
- { 27770, "MIS Corporate Defence Solutions" },
- { 27771, "EVOLIS" },
- { 27772, "Sidon GmbH" },
- { 27773, "Zabiuk" },
- { 27774, "CenturyTel, Inc." },
- { 27775, "Site Monitoring Solutions Inc." },
- { 27776, "IDAC Ltd." },
- { 27777, "Auptyma Corporation" },
- { 27778, "UnState educational establishment of additional education \"Educational center \"Meson\"" },
- { 27779, "OFFRATEL" },
- { 27780, "Public Surplus, LLC" },
- { 27781, "Ministerio de Empleo y Seguridad Social (formerly 'Ministerio de Trabajo e Inmigracion')" },
- { 27782, "OnFin" },
- { 27783, "Mulder Innova BV" },
- { 27784, "Sensata Technologies" },
- { 27785, "Vialogy" },
- { 27786, "Five Mile Capital Partners, LLC" },
- { 27787, "Compart AG" },
- { 27788, "eco-warehouse" },
- { 27789, "Catalina Technologies" },
- { 27790, "S5 Wireless Inc" },
- { 27791, "eMobile Networks Inc." },
- { 27792, "Editure Ltd" },
- { 27793, "mythofbutterfly.com" },
- { 27794, "GENETEC Corporation" },
- { 27795, "Guardian Equipamentos Eletronicos Ltda" },
- { 27796, "Embedded Control Logic Corp." },
- { 27797, "Nata-Info Ltd." },
- { 27798, "SES NEW SKIES B.V." },
- { 27799, "7iD Technologies GmbH" },
- { 27800, "PKE Electronics AG" },
- { 27801, "Fejer Megyei Szent Gyorgy Hospital" },
- { 27802, "NEXPLORE" },
- { 27803, "HTH Consulting GmbH" },
- { 27804, "Bernard Matthews Foods Ltd." },
- { 27805, "Compagnia Assicuratrice Unipol S.p.A" },
- { 27806, "University of Malta" },
- { 27807, "Hawa AG" },
- { 27808, "SKELVISION SARL" },
- { 27809, "La Mamma Ind. de Alimentos Ltda." },
- { 27810, "Qovo Systems" },
- { 27811, "Ellsworth School System" },
- { 27812, "voipDS - Voice Over IP Directory Services" },
- { 27813, "linux-on.com" },
- { 27814, "Chiang Family" },
- { 27815, "Advanced UniByte GmbH" },
- { 27816, "WES Power Technology Inc." },
- { 27817, "Thorcom Systems Ltd." },
- { 27818, "Vapo Oy" },
- { 27819, "Calaveras Internet" },
- { 27820, "121Media Inc." },
- { 27821, "Unihost Partnership" },
- { 27822, "Comtech Mobile Datacom" },
- { 27823, "Marienfeld Multimedia GmbH" },
- { 27824, "Renzoo Ltd" },
- { 27825, "Battery Force Ltd." },
- { 27826, "Bharat Forge Kilsta AB" },
- { 27827, "i-Solutions AB" },
- { 27828, "St. Paul's Cardiac Electrophysiology, Ltd." },
- { 27829, "Mira Networks (Pty) Ltd" },
- { 27830, "Epitiro Ltd" },
- { 27831, "Itexis SARL" },
- { 27832, "Thomas Bauer" },
- { 27833, "Bizvox Consultoria e Tecnologia de Voz Ltda" },
- { 27834, "Consumers Energy Corporation" },
- { 27835, "Gemstar - TV Guide International, Inc." },
- { 27836, "jag-stang.ch" },
- { 27837, "HanDreamNet" },
- { 27838, "Host Grad Inc." },
- { 27839, "Markus Boas" },
- { 27840, "polygon" },
- { 27841, "IP Networks Ltd" },
- { 27842, "Klebanov" },
- { 27843, "Internet Computing & Security Laboratory" },
- { 27844, "iVEC" },
- { 27845, "Netcube Technologies,Inc" },
- { 27846, "Prill Tecnologia Ltda" },
- { 27847, "VirtenSys Ltd." },
- { 27848, "Itron GmbH (formerly 'Actaris Gaszaehlerbau GmbH')" },
- { 27849, "American Research Institute" },
- { 27850, "LiquidXStream Systems Inc" },
- { 27851, "Video Furnace, Inc." },
- { 27852, "GUANGZHOU ZHIYUAN ELECTRONIC CO.,LTD." },
- { 27853, "mconsultancy" },
- { 27854, "Petr Kutalek" },
- { 27855, "Interactions Corporation" },
- { 27856, "The Council of Australian University Directors of Information Technology (formerly 'Australian Access Federation')" },
- { 27857, "J. Gordon Electronic Design" },
- { 27858, "University of Delhi" },
- { 27859, "Rapid Information & Communication co. Ltd" },
- { 27860, "DMS Group" },
- { 27861, "FILS COMMUNICATIONS LTD" },
- { 27862, "AtNOC Corn Zauner OEG" },
- { 27863, "DSR Communications Pty Ltd" },
- { 27864, "VOCEL, Inc." },
- { 27865, "Tellvox S.A." },
- { 27866, "Logictec" },
- { 27867, "Entic Services" },
- { 27868, "GuardTime AS" },
- { 27869, "Microprocessador - Sistemas Digitais, SA" },
- { 27870, "Hooghuis lyceum" },
- { 27871, "shee consultants" },
- { 27872, "FPT Corporation" },
- { 27873, "The Bridgeman Art Library Ltd" },
- { 27874, "eurotel spa" },
- { 27875, "Zenulta Ltd" },
- { 27876, "ResponsFabrikken Servi\0303\0247os de Telecomunica\0303\0247\0303\0265es Ltda." },
- { 27877, "Blustaff S.p.A." },
- { 27878, "agenos GmbH" },
- { 27879, "CTDI Nethouse Services GmbH" },
- { 27880, "FreeSWITCH" },
- { 27881, "KCS Digital, Inc." },
- { 27882, "Puryear Information Technology, LLC" },
- { 27883, "Extension7" },
- { 27884, "Dom Finansowy QS" },
- { 27885, "National City Corporation" },
- { 27886, "Blacknight Internet Solutions Ltd" },
- { 27887, "TUI-NET" },
- { 27888, "AxesNetwork Solutions inc." },
- { 27889, "Beijing Huamei Netwave Technology Co.,Ltd." },
- { 27890, "Roundbox Inc." },
- { 27891, "Intercomgi Argentina S.R.L." },
- { 27892, "Navaneethan Shenoy" },
- { 27893, "DMS" },
- { 27894, "Cube Optics AG" },
- { 27895, "ISHD - Inline-Skaterhockey Deutschland" },
- { 27896, "Harpa Italia Srl" },
- { 27897, "QSI srl" },
- { 27898, "RAILOG SPA" },
- { 27899, "STC Raduga" },
- { 27900, "IT-Optics sa" },
- { 27901, "Pier 29 Networks CC" },
- { 27902, "Iris, FGUP PKP" },
- { 27903, "Ingenieurbuero fuer EDV und Netzwerktechnik - Stefan Hartmann" },
- { 27904, "Suncorp-Metway Ltd" },
- { 27905, "Universitaet Wuerzburg" },
- { 27906, "Community4you GmbH" },
- { 27907, "tvtv Services a branch of Sony United Kingdom Ltd." },
- { 27908, "projects4web.de" },
- { 27909, "LogRhythm Inc." },
- { 27910, "Presto Networks, Inc." },
- { 27911, "DDS, Inc." },
- { 27912, "Messaging Architects" },
- { 27913, "The Internet Group (Northland) Ltd." },
- { 27914, "iXcall" },
- { 27915, "The Computer Centre for Icelandic Savings Banks" },
- { 27916, "NEC Portugal, S.A." },
- { 27917, "ATCO I-Tek Inc" },
- { 27918, "Wilfrid Laurier University" },
- { 27919, "Loto-Quebec" },
- { 27920, "Viewtel Co., Ltd." },
- { 27921, "Information and Mathematical Science Laboratory, Inc." },
- { 27922, "Tripoint Corporation Pty Ltd" },
- { 27923, "Trillian GmbH" },
- { 27924, "Titof3000.org" },
- { 27925, "Canon Ophthalmic Technologies Sp. z o.o. (formerly 'OPTOPOL Technology S.A.')" },
- { 27926, "Future Voice Technology" },
- { 27927, "Evangelische Kliniken Bonn gGmbH" },
- { 27928, "Ayecka Communication Systems Ltd." },
- { 27929, "tarczynski.net" },
- { 27930, "Justware Corporation" },
- { 27931, "GFI Italia SpA" },
- { 27932, "LignUp Corporation" },
- { 27933, "NOVOTECNO, S.L." },
- { 27934, "Computer Science Club" },
- { 27935, "Sigil.org" },
- { 27936, "PD-House" },
- { 27937, "UTNOXIUM SL" },
- { 27938, "GNU Gatekeeper Project" },
- { 27939, "Intellectronika" },
- { 27940, "Stadtwerke Muenchen GmbH" },
- { 27941, "Elaborata Produtos e Treinamentos de Informatica Ltda." },
- { 27942, "Stredni prumyslova skola, Usti nad Labem, Stara 99, p.o." },
- { 27943, "VimpelCom Ltd." },
- { 27944, "3Leaf Networks" },
- { 27945, "Upsys" },
- { 27946, "thomaskoch.it" },
- { 27947, "Gridline Communications Holdings Inc." },
- { 27948, "CPM Ltd." },
- { 27949, "C. Alex. North-Keys" },
- { 27950, "Sterling Consulting Group, Inc." },
- { 27951, "ISGenesis, Inc." },
- { 27952, "Gazprombank Certification Authority" },
- { 27953, "bitPlus GmbH" },
- { 27954, "Flexoft Ltd." },
- { 27955, "GridNode" },
- { 27956, "OPNATEL" },
- { 27957, "Rettig ICC" },
- { 27958, "weComm Ltd" },
- { 27959, "International Power Switch ApS" },
- { 27960, "e-Business & Resilience Centre" },
- { 27961, "Tribunal de Justica de Santa Catarina" },
- { 27962, "Demonhost Inc." },
- { 27963, "Westec InterActive Security" },
- { 27964, "Commugen Ltd." },
- { 27965, "Scribe Technology Inc." },
- { 27966, "Citiway Technology Co.,Ltd" },
- { 27967, "APNIC Pty Ltd" },
- { 27968, "Akonix Systems, Inc." },
- { 27969, "Multical Ltda." },
- { 27970, "kryglik.com" },
- { 27971, "China Infosec Technologies Co.,Ltd." },
- { 27972, "Mac Papers, Inc." },
- { 27973, "Open Finance, LLC" },
- { 27974, "MCS GROUPE" },
- { 27975, "Centec Networks Inc." },
- { 27976, "GEO CONCEPT SA" },
- { 27977, "Genex" },
- { 27978, "Stewart Information Service Corporation" },
- { 27979, "Met Sacramento High School" },
- { 27980, "POSYSTECH Co., Ltd." },
- { 27981, "Intrachaos.net" },
- { 27982, "Servelec Technologies (formerly 'RTUnet Pty Ltd')" },
- { 27983, "TechGuard Security, LLC" },
- { 27984, "MSBC Pty Limited" },
- { 27985, "Swinburne University of Technology" },
- { 27986, "Avonaco Systems Inc." },
- { 27987, "DataAccess Inc." },
- { 27988, "TOPFIELD Co., Ltd." },
- { 27989, "Nepro Japan Co., Ltd." },
- { 27990, "Ltd. AVTOR" },
- { 27991, "Media Layers Inc." },
- { 27992, "Endesa Network Factory S.L.U." },
- { 27993, "Vigintos Elektronika" },
- { 27994, "Xunta de Galicia. Conselleria de Innovaci\0303\0263n e Industria. Direcci\0303\0263n Xeral de Promocion Industrial e S" },
- { 27995, "FORTH CORPORATION PUBLIC COMPANY LIMITED" },
- { 27996, "Entorno Digital" },
- { 27997, "Me-On-Tv" },
- { 27998, "Triple IT" },
- { 27999, "Trepesch GmbH" },
- { 28000, "Aptivate Ltd" },
- { 28001, "Tufts Associated Health Plans, Inc." },
- { 28002, "The Source" },
- { 28003, "Bender Est." },
- { 28004, "Mobiletech AS" },
- { 28005, "LissProductions" },
- { 28006, "United Space Alliance" },
- { 28007, "Jasmin Buchert" },
- { 28008, "Canu Group LLC" },
- { 28009, "ActionCOACH Inc." },
- { 28010, "Kumamoto Technology and Industry Foundation" },
- { 28011, "NETNIC CORPORATION" },
- { 28012, "ChannelSoft (Beijing) Technology Co.,Ltd" },
- { 28013, "Photobucket, Inc." },
- { 28014, "BROADVOX GmbH" },
- { 28015, "metrocom corporation" },
- { 28016, "D-Cube Resource" },
- { 28017, "tekuso H. Kaelber" },
- { 28018, "netjfwatcher" },
- { 28019, "TradeRoot Technologies (Pty) Ltd" },
- { 28020, "Tefnet" },
- { 28021, "trevedi it-consulting gmbh" },
- { 28022, "VITALPHONE SARL" },
- { 28023, "VITALIX SARL" },
- { 28024, "Pilot Systems" },
- { 28025, "Capita Business Services Ltd" },
- { 28026, "Hostbasket" },
- { 28027, "Moviclips S.A." },
- { 28028, "Urquhart Consultancy" },
- { 28029, "Mera Systems, Inc." },
- { 28030, "The Sidwell Company" },
- { 28031, "Brightprofiles Resources ltd" },
- { 28032, "creat.io, s. r. o. (formerly 'Genesys, s. r. o.')" },
- { 28033, "VERISOFT CONSULTING TECNOLOGIA DA INFORMA\0303\0207\0303\0202O LTDA" },
- { 28034, "Belkin Logistics, Inc" },
- { 28035, "Venture Data L.L.C." },
- { 28036, "TalNet" },
- { 28037, "Iaso Pty Ltd" },
- { 28038, "Triharpskel Productions" },
- { 28039, "Comwave Telecom Inc." },
- { 28040, "Technological Educational Institute (TEI) of Crete" },
- { 28041, "Jackpot.uk.net" },
- { 28042, "KMK Solutions" },
- { 28043, "Altorian Systems Inc" },
- { 28044, "TECOM CO., LTD." },
- { 28045, "URALSIB Financial Corporation" },
- { 28046, "Distributed Management Sytems Ltd." },
- { 28047, "Novabase srl" },
- { 28048, "Presto - prekladatelske centrum s.r.o." },
- { 28049, "ms2-GmbH" },
- { 28050, "Oxford Computer Group (2005) Limited" },
- { 28051, "Atlas IT" },
- { 28052, "Boomer Consulting, Inc." },
- { 28053, "Tervela Inc." },
- { 28054, "Tower Cloud, Inc." },
- { 28055, "Beck Datentechnik" },
- { 28056, "Jojo" },
- { 28057, "NebuAD Inc." },
- { 28058, "SNDI (Soci\0303\0251t\0303\0251 Nationale de D\0303\0251veloppement Informatique)" },
- { 28059, "Mohawk Software" },
- { 28060, "Telairity, Inc" },
- { 28061, "Interzone Entertainment LLC" },
- { 28062, "Kewego SA" },
- { 28063, "SanDisk IL Ltd" },
- { 28064, "OKTET Labs Ltd." },
- { 28065, "TraviAustria Datenservice f\0303\0274r Reise und Touristik GmbH & Co. Nfg. KG" },
- { 28066, "Inomacomp s.r.o" },
- { 28067, "Softcreate Co., Ltd." },
- { 28068, "connectBlue AB" },
- { 28069, "Universidad de Antioquia" },
- { 28070, "Illertech Datensysteme Gbr" },
- { 28071, "Gentiae Clinical Research" },
- { 28072, "Engine Yard" },
- { 28073, "Grace Reformed Baptist Church" },
- { 28074, "Ricu LLC" },
- { 28075, "Support My System (UK) ltd" },
- { 28076, "Recommind, Inc." },
- { 28077, "WiseSport (Hong Kong) Limited" },
- { 28078, "Genos Open Source S.L." },
- { 28079, "OpenScale Technologies GmbH" },
- { 28080, "\"ISG\" Joint Stock Company" },
- { 28081, "New Castle Community School Corporation" },
- { 28082, "Rdesign" },
- { 28083, "SOSDG" },
- { 28084, "Polk Mechanical Company, LLC" },
- { 28085, "STMIK Akakom" },
- { 28086, "Universitaet Passau" },
- { 28087, "Albentia Systems, S.A." },
- { 28088, "NEC Unified Solutions" },
- { 28089, "Sentrigo Ltd" },
- { 28090, "IAM Technology, Inc." },
- { 28091, "Thelese Management" },
- { 28092, "Covelight Systems, Inc." },
- { 28093, "Colombia Movil" },
- { 28094, "Voicemail Anywhere, Inc." },
- { 28095, "JPEO JTRS" },
- { 28096, "Route1 Security Corp." },
- { 28097, "ACKSYS" },
- { 28098, "National Interbank Transaction Management and Exchange Co., Ltd." },
- { 28099, "Processing Center Co., Ltd." },
- { 28100, "Groupwhere Consulting, L.L.C." },
- { 28101, "MIVAN KIER JOINT VENTURE LIMITED NEWPARK BUCHAREST" },
- { 28102, "baringanet gmbh" },
- { 28103, "Audionics Ltd" },
- { 28104, "Evorad" },
- { 28105, "Arcelor Bremen GmbH" },
- { 28106, "GEUTEBRUECK" },
- { 28107, "Liangjiang Communications System Inc." },
- { 28108, "Homisco, Inc" },
- { 28109, "Rozis BV" },
- { 28110, "Near Infinity Corporation" },
- { 28111, "ValuePoint Networks, Inc." },
- { 28112, "Pioneer Bible Translators" },
- { 28113, "Thai Digital ID Co., Ltd." },
- { 28114, "Quies Net" },
- { 28115, "Shenzhen o'wonder Tech Inc" },
- { 28116, "4-tune GmbH" },
- { 28117, "Clear Memo" },
- { 28118, "ColdSpark Inc" },
- { 28119, "Steelworks Technologies" },
- { 28120, "Pinacono Software Studio" },
- { 28121, "Hyperband Networks, Inc." },
- { 28122, "ObjectMastery Pty Ltd" },
- { 28123, "Intermodus d.o.o" },
- { 28124, "C-Group" },
- { 28125, "TRINAPS" },
- { 28126, "ERAMON AG" },
- { 28127, "COSSILYS 21" },
- { 28128, "CIT" },
- { 28129, "Cleversafe , Inc." },
- { 28130, "MICHATECH" },
- { 28131, "iBro" },
- { 28132, "Embarq Holdings Company LLC" },
- { 28133, "INSIST" },
- { 28134, "LOT Polish Airlines" },
- { 28135, "Cominfo a.s." },
- { 28136, "Delta Dore SA" },
- { 28137, "NXP Semiconductors B.V." },
- { 28138, "Icepeak AB" },
- { 28139, "Hrvatske telekomunikacije d.d." },
- { 28140, "IT GAMES COMERCIO E SERVICOS DE INFORMATICA LTDA" },
- { 28141, "CedarOpenAccounts" },
- { 28142, "Nautel Limited" },
- { 28143, "Altaigazprom" },
- { 28144, "Trilus d.o.o." },
- { 28145, "origenis GmbH" },
- { 28146, "Fitzpatrick Enterprise OID" },
- { 28147, "Argon ST" },
- { 28148, "saint-paul luxembourg s.a." },
- { 28149, "RBAS" },
- { 28150, "IMS Global Learning Consortium Inc." },
- { 28151, "BluePoint Data, Inc." },
- { 28152, "Palo Alto Software, Inc." },
- { 28153, "Newfound Communications, Inc" },
- { 28154, "Lattech Systems (Pty) Ltd" },
- { 28155, "Computer Network Solutions, LLC" },
- { 28156, "Reveredata, LLC" },
- { 28157, "Octon Technology(Shanghai) Ltd." },
- { 28158, "Great Software Laboratory Pvt Ltd" },
- { 28159, "OOPS Development Organization" },
- { 28160, "Mototech Inc." },
- { 28161, "Anzsoft Co., Ltd." },
- { 28162, "Kazinvestbank" },
- { 28163, "Beijing Institute of Technology" },
- { 28164, "think-tux" },
- { 28165, "InterpharmData Systems (Pty) Ltd." },
- { 28166, "Webbed Feet" },
- { 28167, "atip GmbH" },
- { 28168, "Nextlink Technologies, LLC" },
- { 28169, "World Trade Organization" },
- { 28170, "South African National Bioinformatics Institute (SANBI)" },
- { 28171, "Corps Rhenania" },
- { 28172, "Bibliotheksservice-Zentrum Baden-Wuerttemberg" },
- { 28173, "Advanced Control Systems Design, Inc." },
- { 28174, "Solid State Logic" },
- { 28175, "GlenTech Consulting" },
- { 28176, "Rockport PA, LLC" },
- { 28177, "Buddhadata Consulting, Inc." },
- { 28178, "Internet Software Solutions" },
- { 28179, "Bank Zachodni WBK S.A." },
- { 28180, "Cv\0303\0266rnjek Lagerlogistik GmbH" },
- { 28181, "Whitestein Technologies AG" },
- { 28182, "Mobile Visions" },
- { 28183, "MungerWare" },
- { 28184, "Hagenuk Marinekommunikation GmbH" },
- { 28185, "zzvcom" },
- { 28186, "SSA Global Technologies" },
- { 28187, "Uptime Power Services, Inc." },
- { 28188, "Kim Minh Kaplan" },
- { 28189, "Intelivox" },
- { 28190, "Genoscope -- Centre National de S\0303\0251quencage" },
- { 28191, "JVS do Brasil LTDA" },
- { 28192, "digitallysign" },
- { 28193, "WebPresso" },
- { 28194, "Exterity Ltd" },
- { 28195, "SKY Italia s.r.l" },
- { 28196, "BroadWare Technologies, Inc." },
- { 28197, "Wichita State University" },
- { 28198, "SNC-Lavalin Energy Control Systems Inc." },
- { 28199, "kmel" },
- { 28200, "CBC Companies, Inc" },
- { 28201, "DBG Inc." },
- { 28202, "Albert Bauer KG" },
- { 28203, "Linux Kernel Austria" },
- { 28204, "Synerway" },
- { 28205, "7-ip Pty Ltd" },
- { 28206, "IKB Deutsche Industriebank AG" },
- { 28207, "Rockford IT Limited" },
- { 28208, "Accurite Technologies Inc." },
- { 28209, "Up-Mobile Corp" },
- { 28210, "SunRocket Inc." },
- { 28211, "Emergency Response Management Services Inc." },
- { 28212, "FARIISTA LIMITED" },
- { 28213, "Open joint-stock company \"Agency for Mortgage Housing Crediting\"" },
- { 28214, "KERNEOS" },
- { 28215, "3Roam SA" },
- { 28216, "FingerPost Ltd" },
- { 28217, "Radiant Logic PTY LTD" },
- { 28218, "The MARF Research and Development Group" },
- { 28219, "Liam Schneider Consulting" },
- { 28220, "Brighthouse Networks" },
- { 28221, "Stabat Solutions Pty Ltd" },
- { 28222, "Spectrum Communications FZE" },
- { 28223, "Quarto Software GmbH" },
- { 28224, "Efficens Software Ltd." },
- { 28225, "OS Security Ltd" },
- { 28226, "Digidiensten" },
- { 28227, "BTC AD" },
- { 28228, "WIFINET,s.r.o." },
- { 28229, "Pharos Communications Ltd" },
- { 28230, "Fidback CRM Services" },
- { 28231, "AM Fire & Electronic Services, Inc." },
- { 28232, "Prince George's Community College" },
- { 28233, "iSERVE Ltd." },
- { 28234, "Cypress Communications, Inc." },
- { 28235, "Ellie Mae, Inc." },
- { 28236, "MySpace, Inc." },
- { 28237, "CodeRyte, Inc" },
- { 28238, "ADE" },
- { 28239, "University of the Ryukyus" },
- { 28240, "Wavelength Communications, Inc." },
- { 28241, "RidgeRun LLC" },
- { 28242, "OraTel Pty (Ltd)" },
- { 28243, "Pulsar Inc." },
- { 28244, "Haus am R\0303\0274gendamm" },
- { 28245, "agorum Software GmbH" },
- { 28246, "Trusted Peer Networks, Inc" },
- { 28247, "Maxis Communications Berhad" },
- { 28248, "Newport Development Group" },
- { 28249, "eonas IT-Beratung und -Entwicklung GmbH" },
- { 28250, "Enerconv S.r.l." },
- { 28251, "The Constitutionalist Party of Iran (CPI)" },
- { 28252, "Informatec" },
- { 28253, "Scivis wissenschaftliche Bildverarbeitung GmbH" },
- { 28254, "COBS AB" },
- { 28255, "Unassigned" },
- { 28256, "InfoGuard AG" },
- { 28257, "NUTRICHEM Di\0303\0244t+Pharma GmbH" },
- { 28258, "EidosMedia S.p.A." },
- { 28259, "Landeshauptstadt Stuttgart (formerly 'bw-trust CA')" },
- { 28260, "PROGIWEB" },
- { 28261, "ProfiForms Projekt GmbH" },
- { 28262, "Chick-fil-A, Inc" },
- { 28263, "Total Spin Brasil Servi\0303\0247os de Telecomunica\0303\0247\0303\0265es Ltda" },
- { 28264, "CLINICARE Corporation" },
- { 28265, "FSB F\0303\0266rster SystemBeratung" },
- { 28266, "L.A. Specialties Inc." },
- { 28267, "CYBERTRON CO., LTD." },
- { 28268, "Global Red Solucoes em Software Livre Ltda." },
- { 28269, "Institute for Theoritical Computer Science, Tsinghua University" },
- { 28270, "G\0303\0266teborgs Hamn AB" },
- { 28271, "HTBLuVA Moedling" },
- { 28272, "Concurrent Systems (Pty) Ltd" },
- { 28273, "Starling Advanced Communications" },
- { 28274, "MC Control s.r.o." },
- { 28275, "ioSafe, Inc." },
- { 28276, "Galeno" },
- { 28277, "LucasP.com" },
- { 28278, "DinnoVan" },
- { 28279, "Rocksteady Networks LLC" },
- { 28280, "GHL Systems Berhad" },
- { 28281, "Sling Media, Inc." },
- { 28282, "Kronos, Inc" },
- { 28283, "MEDITECNIA INNOVA SL" },
- { 28284, "Estonian eHealth Foundation" },
- { 28285, "AGES - \0303\0226sterreichische Agentur f\0303\0274r Gesundheit und Ern\0303\0244hrungssicherheit GmbH" },
- { 28286, "Daon" },
- { 28287, "Optium Corporation" },
- { 28288, "LightRail Inc." },
- { 28289, "WhisperItLoud LLC" },
- { 28290, "XAware, Inc." },
- { 28291, "Naval Postgraduate School Center for Network Innovation and Experimentation" },
- { 28292, "Stepstone Technologies Inc." },
- { 28293, "Julong Sci-tech Co., Ltd." },
- { 28294, "Instituto Reconcavo de Tecnologia" },
- { 28295, "Gainspan Corporation" },
- { 28296, "von KARMAN INSTITUUT VOOR STROMINGSDYNAMICA ivzw" },
- { 28297, "Lublin Technical University" },
- { 28298, "Info.nl/hf b.v." },
- { 28299, "unixgarage.com" },
- { 28300, "Miracle TV Corporation" },
- { 28301, "ONERA" },
- { 28302, "One Commerce International Corporation" },
- { 28303, "C.R. Enterprise Business Services" },
- { 28304, "Nexcan Solutions" },
- { 28305, "Universitas Islam Indonesia" },
- { 28306, "Foerderverein Buergernetz Ulm/Neu-Ulm e.V." },
- { 28307, "PostPath, Inc." },
- { 28308, "Zaragoza Network Management Research Group" },
- { 28309, "StatRad LLC (formerly 'Stat Radiology Medical Corp')" },
- { 28310, "Center for Computational Biology and Bioinformatics" },
- { 28311, "TECHNOGAMA Ltd." },
- { 28312, "Penson GHCO" },
- { 28313, "Lantic Systems A/S" },
- { 28314, "Ariescommerce Ltd." },
- { 28315, "Neology (Pty) Ltd" },
- { 28316, "Branden Inc." },
- { 28317, "Borran Technologies Inc." },
- { 28318, "Accelink Technologies Co.,Ltd" },
- { 28319, "IMIMOBILE Private LIMITED" },
- { 28320, "Geotechmin OOD" },
- { 28321, "Oniontech, Co., Ltd." },
- { 28322, "THOMSON STS" },
- { 28323, "Central-European International Bank Ltd." },
- { 28324, "3ple-Media BV" },
- { 28325, "Underground_8 Secure Computing GmbH" },
- { 28326, "ko-sys" },
- { 28327, "Harry & David Operations, Corp." },
- { 28328, "Bayerischer Rundfunk" },
- { 28329, "Base Technologies, Inc." },
- { 28330, "Meshdynamics, Inc" },
- { 28331, "Smiley Media, Inc." },
- { 28332, "Brink's Home Security" },
- { 28333, "Simon Niechzial EDV Dienstleistungen" },
- { 28334, "Siemens A/S (formerly 'pulz8 Communications ApS')" },
- { 28335, "Xworks NZ Limited" },
- { 28336, "Voxeo" },
- { 28337, "albatron S.r.l." },
- { 28338, "Mushypea Industries" },
- { 28339, "Universidade Federal do Par\0303\0241" },
- { 28340, "iseek Communications Pty. Ltd." },
- { 28341, "Civilogix, Inc." },
- { 28342, "Whitley College The Baptist College of Victoria" },
- { 28343, "Rogers Wireless - OSS" },
- { 28344, "DeskNet Inc." },
- { 28345, "SFC Co.,Ltd." },
- { 28346, "Duplex Secure Ltd" },
- { 28347, "SAMURAIWORKS" },
- { 28348, "Pimp My Proxy" },
- { 28349, "PT. Bank Negara Indonesia, Tbk" },
- { 28350, "Shenzhen First Mile Communications Ltd" },
- { 28351, "Vimicro Corporation" },
- { 28352, "maxcom" },
- { 28353, "Vital Images Inc." },
- { 28354, "BCD Travel" },
- { 28355, "Promsvyazbank OJSC" },
- { 28356, "MyWave Internetdienstleistungs AG" },
- { 28357, "Research Institute of China Mobile" },
- { 28358, "AK IT Services" },
- { 28359, "Simulina GmbH" },
- { 28360, "Impi Linux (Pty) Ltd" },
- { 28361, "Cranix Engineering Co. Ltd." },
- { 28362, "LM2 Consulting Gmbh" },
- { 28363, "Bytec Bodry Technology GmbH" },
- { 28364, "widesolutions.it srl" },
- { 28365, "Ing.-Buero Dr. Plesnik GmbH" },
- { 28366, "HostBase" },
- { 28367, "PROCURE Personalmanagement GmbH" },
- { 28368, "Green Valley B.V." },
- { 28369, "InetLabs (DE)" },
- { 28370, "Infoteh d.o.o." },
- { 28371, "Nutel Communications, Ltd." },
- { 28372, "Gratka Sp. z o.o." },
- { 28373, "Conversant Systems (Pty) Ltd" },
- { 28374, "OpenChoice di Diego Zaccariotto" },
- { 28375, "EB Enterprises, Inc." },
- { 28376, "MacroElite Corp." },
- { 28377, "Bizztools GmbH" },
- { 28378, "Pulsewidth" },
- { 28379, "Open Systems International, Inc." },
- { 28380, "01edge technologies" },
- { 28381, "Red Lion Controls (N-Tron)" },
- { 28382, "AirCell LLC" },
- { 28383, "Open1X" },
- { 28384, "PConRails, LLC" },
- { 28385, "Columbia Weather Systems, Inc." },
- { 28386, "Fujian Fujitsu Communication Software Co., Ltd." },
- { 28387, "svenux" },
- { 28388, "ITB CompuPhase" },
- { 28389, "Schneeweis" },
- { 28390, "19pouces" },
- { 28391, "Villa Centrum Pty Ltd" },
- { 28392, "Eclipse Foundation, Inc." },
- { 28393, "the emakers di Fabio Vallino" },
- { 28394, "Monki" },
- { 28395, "NewMarket Corporation" },
- { 28396, "Edoceo, Inc." },
- { 28397, "BluegrassNet Development" },
- { 28398, "Invictus Networks Pte Ltd" },
- { 28399, "ACHOS.COM" },
- { 28400, "Christian Mayer Buero- und EDV-Systeme" },
- { 28401, "CirTec AG" },
- { 28402, "Conteg" },
- { 28403, "Town & Country Industries" },
- { 28404, "Cynosure Research" },
- { 28405, "Hunt Brothers of Louisiana, LLC" },
- { 28406, "Slovenija online - SiOL internet d.o.o." },
- { 28407, "Bradley D. Brown" },
- { 28408, "Ramsys Zrt" },
- { 28409, "PHOTONICS INC." },
- { 28410, "Ippon Technologies" },
- { 28411, "Luhansk Taras Shevchenko National Pedagogical University" },
- { 28412, "Comtools GmbH" },
- { 28413, "Brazilian Mercantile and Futures Exchange" },
- { 28414, "Business System Development Pty Ltd" },
- { 28415, "Dixie Valley Farm" },
- { 28416, "SMX" },
- { 28417, "M\0303\0226LLER-WEDEL GmbH" },
- { 28418, "Corenet Ltd." },
- { 28419, "Trilogic" },
- { 28420, "Opus Software" },
- { 28421, "Partido Socialista Obrero Espa\0303\0261ol (PSOE)" },
- { 28422, "Tobias Scherbaum" },
- { 28423, "Nucomm Inc." },
- { 28424, "Rockshore Limited" },
- { 28425, "Einstein Industries, Inc." },
- { 28426, "Saint Vincent's Hospital" },
- { 28427, "udicom AG" },
- { 28428, "Secure64" },
- { 28429, "Novanetic, Inc." },
- { 28430, "Macedonian Academic And Research Network (MARNet)" },
- { 28431, "OpenAFS" },
- { 28432, "Navajo Technical College" },
- { 28433, "jmedved" },
- { 28434, "NHK Integrated Technology Inc." },
- { 28435, "AC&T System Co.,Ltd." },
- { 28436, "Carnegie Learning" },
- { 28437, "Torsten Pohl - Software-Entwicklung" },
- { 28438, "rybezahl" },
- { 28439, "Tradesoft Technologies Srl" },
- { 28440, "Impulse LTD" },
- { 28441, "Sj\0303\0266land & Thyselius" },
- { 28442, "RPH Consulting" },
- { 28443, "Global Trader" },
- { 28444, "Diratel S.L.L" },
- { 28445, "Dealermade" },
- { 28446, "Institute of Mathematics and Computer Science, University of Latvia" },
- { 28447, "Kabona AB" },
- { 28448, "FCS Fair Computer Systems GmbH" },
- { 28449, "koski.org" },
- { 28450, "Internet Texoma, Inc." },
- { 28451, "American Water" },
- { 28452, "Arabian Horse Association" },
- { 28453, "amasol AG" },
- { 28454, "wh4f" },
- { 28455, "Trion World Network" },
- { 28456, "QNIX Pty Ltd" },
- { 28457, "NTT America Enterprise Hosting" },
- { 28458, "Nokia Solutions and Networks (formerly 'Nokia Siemens Networks')" },
- { 28459, "Rogue Engineering Inc." },
- { 28460, "Benone Bitencourt" },
- { 28461, "Mutoh Industries Ltd." },
- { 28462, "KnoxOne" },
- { 28463, "beginux.org" },
- { 28464, "On Air Networks" },
- { 28465, "Echola Systems" },
- { 28466, "MrLane.com" },
- { 28467, "PiCell B.V." },
- { 28468, "Fabio Prina" },
- { 28469, "Cyber Media (India) Ltd" },
- { 28470, "St. Lawrence University" },
- { 28471, "Bremer AG" },
- { 28472, "tapirdata.com" },
- { 28473, "DAVOnet GmbH" },
- { 28474, "periscoptic perceptions" },
- { 28475, "Akademickie Centrum Kliniczne - Szpital Akademii Medycznej w Gdansku" },
- { 28476, "bwin Interactive Entertainment AG" },
- { 28477, "Global Tel Link" },
- { 28478, "Implicit Monitoring Solutions, LP" },
- { 28479, "Coremetrics" },
- { 28480, "Traffic.com, Inc." },
- { 28481, "MicroImaging" },
- { 28482, "Technospace SRL" },
- { 28483, "Satileon Networks" },
- { 28484, "ttb-group" },
- { 28485, "IDTIC. C.A." },
- { 28486, "PETR HUMMEL" },
- { 28487, "Digital Dynamics Inc" },
- { 28488, "ROBOC Co.,Ltd." },
- { 28489, "Devcom Solutions AB" },
- { 28490, "Kosmos ry." },
- { 28491, "mitene internet co.,ltd." },
- { 28492, "MD PREI KRASKRIPT" },
- { 28493, "nexmedia Pte Ltd" },
- { 28494, "Orbis Lumen" },
- { 28495, "Rodenstock GmbH" },
- { 28496, "Unassigned" },
- { 28497, "The Cavell Group" },
- { 28498, "linuxcon" },
- { 28499, "Differitas as" },
- { 28500, "Tagelin" },
- { 28501, "AMBISEA Technoloy Corp., Ltd" },
- { 28502, "TeleIDEA BV" },
- { 28503, "Unixuser" },
- { 28504, "Proclos" },
- { 28505, "Faculdade Metropolitana IESB" },
- { 28506, "OpServices Tecnologia da Informacao S/A" },
- { 28507, "Gude Analog- und Digitalsysteme GmbH" },
- { 28508, "Cunhol" },
- { 28509, "FifSource" },
- { 28510, "John S. Connor" },
- { 28511, "DowKey Microwave" },
- { 28512, "Intellibyte Inc." },
- { 28513, "VHV" },
- { 28514, "ITALIACERCA s.a." },
- { 28515, "Goerz IT-Consulting" },
- { 28516, "bitglue.com" },
- { 28517, "7key" },
- { 28518, "CA & PARTNERS" },
- { 28519, "NEC Fukui, Ltd." },
- { 28520, "Nexsys Consulting Pty Ltd" },
- { 28521, "Jopasana Software & Systems Ltd." },
- { 28522, "CANDIDO Kommunikationselektronik" },
- { 28523, "BACH systems s.r.o." },
- { 28524, "Syntech SW Ltd" },
- { 28525, "Across Finance, a.s." },
- { 28526, "CCS Customer Communication Systems GmbH" },
- { 28527, "Adeptra Inc." },
- { 28528, "thevisp" },
- { 28529, "NetSolutions Per\0303\0272 S.A.C." },
- { 28530, "Khypoea" },
- { 28531, "Steven Roth" },
- { 28532, "AO DAAZ" },
- { 28533, "CYAN" },
- { 28534, "City of Jacksonville" },
- { 28535, "AlarmEngine" },
- { 28536, "Zappos.com" },
- { 28537, "HEALTHSIGN SL" },
- { 28538, "Federated Mutual Insurance" },
- { 28539, "Buf Compagnie" },
- { 28540, "Weisberg Consulting, Inc." },
- { 28541, "Net Demon" },
- { 28542, "Aleph Web Services" },
- { 28543, "Houston Baptist University" },
- { 28544, "ChilesConsulting" },
- { 28545, "M.G InfoCom Pvt. Ltd." },
- { 28546, "Laubheimer" },
- { 28547, "Australian National University" },
- { 28548, "Caja de ahorros de Santander y Cantabria" },
- { 28549, "PhysiSoft" },
- { 28550, "Marand d.o.o." },
- { 28551, "Weird Solutions Sweden AB" },
- { 28552, "Avocet RT Limited" },
- { 28553, "Securepoint GmbH" },
- { 28554, "Care2" },
- { 28555, "Manheim Services Corporation" },
- { 28556, "Last.fm Ltd." },
- { 28557, "Hillstone Networks Inc" },
- { 28558, "KEYENCE CORPORATION" },
- { 28559, "Utah State University" },
- { 28560, "IServ" },
- { 28561, "eHealthConnecticut" },
- { 28562, "Fortune System Inc." },
- { 28563, "RFNC-VNIITF" },
- { 28564, "Network Synergy Services, LLC." },
- { 28565, "Carley IP" },
- { 28566, "SCache Systems" },
- { 28567, "MEGLA GmbH" },
- { 28568, "MicroLink" },
- { 28569, "UltraRAD Corporation" },
- { 28570, "Junta de Castilla y Leon" },
- { 28571, "Hafslund ASA" },
- { 28572, "Auditiel" },
- { 28573, "zonekey Inc." },
- { 28574, "ICA-NET s.r.l." },
- { 28575, "My-Portal.gr" },
- { 28576, "Longent LLC" },
- { 28577, "Walnut Valley Unified School District" },
- { 28578, "Powerland Computers" },
- { 28579, "New World Restaurant Group, Inc." },
- { 28580, "MoroSystems, s.r.o." },
- { 28581, "Wireless Generation, Inc." },
- { 28582, "Linux Systemhaus Schulz" },
- { 28583, "Tangent Systems, Inc." },
- { 28584, "Allegro Networks pty ltd" },
- { 28585, "Sniddle LLC" },
- { 28586, "EATON Wireless" },
- { 28587, "Mobilesoft (Aust) Pty Limited" },
- { 28588, "Kaplan Software, LLC" },
- { 28589, "IDERs Inc" },
- { 28590, "EVC Inc." },
- { 28591, "BEIJING THINKOR INFORMATION TECHNOLOGIES CO.,LTD." },
- { 28592, "Eteration A.S." },
- { 28593, "SCA Timber AB" },
- { 28594, "EXGEN Networks Co., Ltd." },
- { 28595, "PATRONAS Financial Systems GmbH" },
- { 28596, "CTE Digital Broadcast s.r.l." },
- { 28597, "National Centre for Scientific Research \"Demokritos\"" },
- { 28598, "Sambers Italia Spa" },
- { 28599, "Landmark Communications, Inc." },
- { 28600, "Hetra Secure Solutions Corp." },
- { 28601, "Know It All" },
- { 28602, "LogicBox, Inc." },
- { 28603, "MEDNETWorld.com, Inc (formerly 'MEDNET USA, Inc')" },
- { 28604, "Factory Creative Studio Ltd." },
- { 28605, "Logicalis GmbH (formerly 'Minters GmbH')" },
- { 28606, "TheFind, Inc." },
- { 28607, "coforum" },
- { 28608, "Technomonk Industries" },
- { 28609, "SpongeLava Ltd." },
- { 28610, "Bengt M\0303\0245nsson" },
- { 28611, "CommAgility Ltd" },
- { 28612, "Bountiful WiFi LLC" },
- { 28613, "Plastek Group" },
- { 28614, "6202110 Canada Inc." },
- { 28615, "Ondrej Vlach" },
- { 28616, "Orpak Systems Ltd" },
- { 28617, "KioriSoft, LLC" },
- { 28618, "Lightning Source" },
- { 28619, "Univeris Corporation" },
- { 28620, "CSI Communication Systems Inc. AG" },
- { 28621, "HANDICAP INTERNATIONAL" },
- { 28622, "Integrated Business Systems & Services" },
- { 28623, "Pari Networks" },
- { 28624, "UNHfree.net" },
- { 28625, "tarot.com" },
- { 28626, "Laszlo Systems, Inc." },
- { 28627, "Hammernet" },
- { 28628, "Twisted Storage Inc" },
- { 28629, "everRaise.com" },
- { 28630, "The Atlantis Consulting" },
- { 28631, "GoonSwarm" },
- { 28632, "EuroMedia-Service GmbH" },
- { 28633, "DataCentr Ltd." },
- { 28634, "ComAp, spol. s r. o." },
- { 28635, "Fragnetics LLP" },
- { 28636, "PHB Eletronica Ltda" },
- { 28637, "DANSUPPORT" },
- { 28638, "Bellomy Research, Inc." },
- { 28639, "TxCore, Inc." },
- { 28640, "IT Linux" },
- { 28641, "Delinked" },
- { 28642, "Proveedor de Certificados PROCERT, C. A." },
- { 28643, "SUEIIDISS" },
- { 28644, "Gary Thomas" },
- { 28645, "Techila Technologies Ltd." },
- { 28646, "650mhz" },
- { 28647, "EKM4 LIMITED" },
- { 28648, "SIATech Inc." },
- { 28649, "SIPGear AB" },
- { 28650, "AxisMobile" },
- { 28651, "MODS" },
- { 28652, "The Hartford" },
- { 28653, "Physicians Group, L.L.C." },
- { 28654, "Mobile Interactive Group" },
- { 28655, "TIANJIN OMUX COMMUNICATION TECHNOLOGY CO.,LTD" },
- { 28656, "iPolicy Networks Limited" },
- { 28657, "Fonoklik Iletisim Hizmetleri ve Ticaret A.S." },
- { 28658, "EnteGreat, Inc." },
- { 28659, "The Cooper-Cain Group, Inc" },
- { 28660, "Linear Acoustic Inc." },
- { 28661, "Foster" },
- { 28662, "Richard Gavenda" },
- { 28663, "Arada Systems" },
- { 28664, "GIFTCS, LLC" },
- { 28665, "Village-Island Co.,Ltd." },
- { 28666, "Elaxys Tecnologia" },
- { 28667, "confusatron.org" },
- { 28668, "Devmach.com Linux Support Services" },
- { 28669, "Bycast, Inc." },
- { 28670, "Blue Cacao Technologies, S.A. de C.V." },
- { 28671, "TORINS Ltd." },
- { 28672, "Communication Research Labs Sweden AB" },
- { 28673, "Conseil R\0303\0251gional de Lorraine" },
- { 28674, "KIRNexus GmbH" },
- { 28675, "Phorm, Inc." },
- { 28676, "WireGATE Technology" },
- { 28677, "Sistemas Catastrales S.A." },
- { 28678, "VTK Gent v.z.w." },
- { 28679, "Middle Atlantic Products" },
- { 28680, "Appalachian Regional Healthcare, Inc." },
- { 28681, "Crystal Vision Ltd" },
- { 28682, "Planetas Medios Digitales S.L." },
- { 28683, "Xerox - Document Supplies Europe" },
- { 28684, "KATE-KOM" },
- { 28685, "Consultem d.o.o." },
- { 28686, "The Hertz Corporation" },
- { 28687, "infotronic" },
- { 28688, "Samway Electronic SRL" },
- { 28689, "PC Solutions Net" },
- { 28690, "morrisey.us" },
- { 28691, "BLStream Sp. z o.o." },
- { 28692, "Karmoy kommune" },
- { 28693, "Colimbra BV" },
- { 28694, "levigo holding gmbh" },
- { 28695, "Philadelphia Stock Exchange" },
- { 28696, "ASQUARE Consulting GmbH" },
- { 28697, "Transcom Enhanced Services" },
- { 28698, "Teradata Corporation" },
- { 28699, "Auto/Con Corp" },
- { 28700, "O-Regan.org" },
- { 28701, "QuVIS, Inc." },
- { 28702, "Charles Sturt University" },
- { 28703, "University of Nevada, Las Vegas" },
- { 28704, "Integrated Broadcast Information Systems Ltd." },
- { 28705, "FURUNO ELECTRIC CO., LTD." },
- { 28706, "Airservices Australia" },
- { 28707, "National Cancer Center" },
- { 28708, "FUJIFILM Corporation" },
- { 28709, "Universidade de Bras\0303\0255lia" },
- { 28710, "Dwi Tunggal Putra Private Limited" },
- { 28711, "Department of Zoology, Stockholm University" },
- { 28712, "META-LEVEL Software AG" },
- { 28713, "GDC Technology Ltd" },
- { 28714, "Slithy Toves" },
- { 28715, "Edfinancial Services" },
- { 28716, "Virtual Viewing Ltd" },
- { 28717, "Zavod K6/4" },
- { 28718, "Minist\0303\0250re de l'Education Nationale, Luxembourg" },
- { 28719, "Tarrant County" },
- { 28720, "Jaguar Software Development" },
- { 28721, "Affernet Pty Ltd" },
- { 28722, "Network Synergy Pty Ltd" },
- { 28723, "GBCOM" },
- { 28724, "AnNeal Technology Inc." },
- { 28725, "Atonics Inc." },
- { 28726, "MFLO" },
- { 28727, "EFUN International Corporation" },
- { 28728, "Jerich Austria GmbH" },
- { 28729, "GRD" },
- { 28730, "NiX" },
- { 28731, "Edgeware AB" },
- { 28732, "Secure Links" },
- { 28733, "Ronexprim Srl" },
- { 28734, "Automorpheus.com Corporation" },
- { 28735, "Ahoya Networks Inc" },
- { 28736, "ILOG" },
- { 28737, "webapps.jp" },
- { 28738, "Nippon RAD Inc." },
- { 28739, "ika" },
- { 28740, "Noval Networks" },
- { 28741, "Banco Popular y de Desarrollo Comunal" },
- { 28742, "Horry Electric Cooperative, Inc." },
- { 28743, "Greschitz IT Security" },
- { 28744, "College of Medicine, University of Ibadan, Ibadan" },
- { 28745, "Comtest Wireless S.r.l." },
- { 28746, "The Swedish National Archive of Recorded Sound and Moving Images" },
- { 28747, "GIP AG" },
- { 28748, "LibreStream Technologies Inc." },
- { 28749, "TeliPhone inc." },
- { 28750, "ISEDEV" },
- { 28751, "4INFO, Inc." },
- { 28752, "WAE Technologies, Inc." },
- { 28753, "EPS Co., Ltd." },
- { 28754, "Vinotech" },
- { 28755, "comWare GmbH" },
- { 28756, "Fachhochschule Worms" },
- { 28757, "Mu Dynamics (formerly 'Mu Security')" },
- { 28758, "Centurum Inc." },
- { 28759, "Savant Tecnologia" },
- { 28760, "Albus-Insec" },
- { 28761, "MDS America, Inc." },
- { 28762, "Unwire" },
- { 28763, "CoCoZ" },
- { 28764, "Hollywood Entertainment" },
- { 28765, "South Bay Community Network, Inc." },
- { 28766, "Tradescape, Inc." },
- { 28767, "Enseo, Inc" },
- { 28768, "MasterCard WorldWide" },
- { 28769, "Unison Network Labs" },
- { 28770, "RJ Landau Partners PLLC" },
- { 28771, "wolery.net" },
- { 28772, "Blueberry Consultants Ltd" },
- { 28773, "Papier & Recycling Logistik GmbH" },
- { 28774, "Ixaris Systems Ltd" },
- { 28775, "Expway" },
- { 28776, "Neuf Cegetel" },
- { 28777, "Ignos Estudio de Ingenieria S.L." },
- { 28778, "Intellistream" },
- { 28779, "Fox-IT B.V." },
- { 28780, "patteran, inc." },
- { 28781, "Bowdoin College" },
- { 28782, "Earmark Media Services" },
- { 28783, "Venafi" },
- { 28784, "CER International bv" },
- { 28785, "Me.Dium, Inc." },
- { 28786, "Vidiom Systems, Inc." },
- { 28787, "Flex-Networks Inc." },
- { 28788, "Quarantainenet BV" },
- { 28789, "Cory Albrecht" },
- { 28790, "Poslovno informacioni sistemi, d.o.o." },
- { 28791, "SBI Japannext Co Inc" },
- { 28792, "TotalWire S.r.l." },
- { 28793, "Neptuny s.r.l." },
- { 28794, "slashconcept GbR" },
- { 28795, "uPRESTO, Inc" },
- { 28796, "Haberst Infra AS" },
- { 28797, "SCBA Expert Service Centre" },
- { 28798, "JSC \"SBERCARD\"" },
- { 28799, "Thales Security Solutions and Services" },
- { 28800, "QualiConsult Ltda" },
- { 28801, "FlexStar Technology, Inc" },
- { 28802, "SMS Tecnologia Eletronica LTDA" },
- { 28803, "ISCaD GmbH" },
- { 28804, "L'Occitane SA" },
- { 28805, "Visionary Networks, Inc." },
- { 28806, "Nationwide Children's Hospital (formerly 'Children's Hospital, Inc.')" },
- { 28807, "Mullins Household" },
- { 28808, "accom GmbH & Co. KG" },
- { 28809, "Netwurk Labs" },
- { 28810, "Desai Electronic Technology (Sichuan) Co., Ltd." },
- { 28811, "SMS spol. s r.o." },
- { 28812, "DIGITALK Limited" },
- { 28813, "Alberta-Pacific Forest Industries Inc." },
- { 28814, "HEALTHGRID" },
- { 28815, "Wedjaa" },
- { 28816, "Supplee Technologies" },
- { 28817, "Exploreos, Inc." },
- { 28818, "St. John Medical Center" },
- { 28819, "Titan Consulting Group, Inc." },
- { 28820, "XUERON.COM" },
- { 28821, "GreatWall Systems, Incorporated" },
- { 28822, "ABE ELETTRONICA S.p.A." },
- { 28823, "Neta Technologies Inc." },
- { 28824, "JPragma" },
- { 28825, "Bufete de Servicios Informaticos, SA de CV" },
- { 28826, "Infinite Innovation, Inc." },
- { 28827, "TLH Systems" },
- { 28828, "Oita Computer Engineering & Consulting Ltd." },
- { 28829, "BMST Co., Ltd" },
- { 28830, "ALCON Telecommunications Co., Ltd." },
- { 28831, "TurboConsult" },
- { 28832, "G-cluster Ltd." },
- { 28833, "LUFTHANSA TECHNIK AG" },
- { 28834, "Surecloud" },
- { 28835, "ACXSYS Botswana" },
- { 28836, "BERTANA srl" },
- { 28837, "MVP Health Plan" },
- { 28838, "ScreenPC" },
- { 28839, "ZedX, Inc." },
- { 28840, "Avcorp Industries Inc." },
- { 28841, "Ph\0303\0266nix-PACS GmbH" },
- { 28842, "GJAlves" },
- { 28843, "Dekeyzer" },
- { 28844, "Channel Dynamix" },
- { 28845, "Digital Ocular Networks, Inc." },
- { 28846, "Universidad de Malaga" },
- { 28847, "D&S Networks" },
- { 28848, "Guangzhou FrameNet Telecommunication Technologies,Co,LTD" },
- { 28849, "Professional Products Inc" },
- { 28850, "Felltech Ltd" },
- { 28851, "Topnordic a/s" },
- { 28852, "Micro Innovation AG" },
- { 28853, "Freudenberg Hosting KG" },
- { 28854, "OOO BB Systems" },
- { 28855, "PRESCOM" },
- { 28856, "Concurrent Thinking Ltd." },
- { 28857, "Working Today, Inc." },
- { 28858, "Public Service Mutual Insurance Company" },
- { 28859, "Big Fish Games" },
- { 28860, "GB Development" },
- { 28861, "Proyecto Conectate al Conocimiento" },
- { 28862, "Sipcall.com Inc." },
- { 28863, "OSS Integrators, Inc." },
- { 28864, "Cosmofon AD" },
- { 28865, "Achievo Deutschland AG" },
- { 28866, "TRENDnet, Inc." },
- { 28867, "Ping Identity Corporation" },
- { 28868, "Anubisnetworks" },
- { 28869, "hollaender.net" },
- { 28870, "Hogskolan i Gavle" },
- { 28871, "P\0303\0251ter Sz\0305\0261cs" },
- { 28872, "AGENCE LANDAISE POUR L'INFORMATIQUE" },
- { 28873, "CHIP Xonio Online GmbH" },
- { 28874, "Solarflare Communications Inc." },
- { 28875, "secom consulting" },
- { 28876, "Jordan & Jordan" },
- { 28877, "NRC Systems Ltd" },
- { 28878, "Seikosha Inc." },
- { 28879, "Americanas.com" },
- { 28880, "Westone Information Industry INC." },
- { 28881, "dSigma, LLC (formerly 'dCube Technologies, LLC')" },
- { 28882, "Michael Eisler" },
- { 28883, "Tomas Bata University in Zl\0303\0255n" },
- { 28884, "Kucko" },
- { 28885, "Spolka Inzynierow SIM Sp. z o.o." },
- { 28886, "OXEA Group" },
- { 28887, "LabSET" },
- { 28888, "UXtechnology B.V." },
- { 28889, "NemoQ Iberica, S.A." },
- { 28890, "Art Center College of Design" },
- { 28891, "College of Dunaujvaros (Duna\0303\0272jv\0303\0241rosi F\0305\0221iskola)" },
- { 28892, "Exoweb" },
- { 28893, "Rihotec Oy" },
- { 28894, "MAXI VIEW HOLDINGS LIMITED" },
- { 28895, "Caisse Nationale de S\0303\0251curit\0303\0251 Sociale Maroc" },
- { 28896, "BCC GmbH" },
- { 28897, "nsec" },
- { 28898, "Securaplane Technologies" },
- { 28899, "DataStarved.net" },
- { 28900, "Yasashii Syndicate" },
- { 28901, "Endicott College" },
- { 28902, "AnHui University of Technology" },
- { 28903, "InterFax" },
- { 28904, "Arius Software" },
- { 28905, "MeshLinx Wireless, Inc" },
- { 28906, "Cluenet" },
- { 28907, "ViASSoL (Virtual Applied Scientific Software Laboratory)(formerly 'ViSSoL (Virtual Scientific Software Laboratory)')" },
- { 28908, "MUJIN Systems, Inc." },
- { 28909, "4A-Securer" },
- { 28910, "Ansitaly" },
- { 28911, "CompFort Meridian Polska Sp. z o.o." },
- { 28912, "ZURIEL Ltd." },
- { 28913, "BitTorrent, Inc." },
- { 28914, "Alstom Signaling Operation LLC (formerly 'GE Transportation Systems Global Signaling, LLC')" },
- { 28915, "Turtlesystems" },
- { 28916, "Interop Informatica" },
- { 28917, "Comtica" },
- { 28918, "InfoPrint Solutions Company" },
- { 28919, "Borghesia Consulting" },
- { 28920, "blaulink GbR" },
- { 28921, "Anchiva Systems, Inc." },
- { 28922, "Crescent Group Ltd." },
- { 28923, "Luminator Holding, LP" },
- { 28924, "Megatel Industries Corp." },
- { 28925, "BIGLIST Inc." },
- { 28926, "Mitteldeutscher Rundfunk" },
- { 28927, "First Mallorca" },
- { 28928, "Taylor & Francis Group Ltd" },
- { 28929, "RASKAT" },
- { 28930, "Kilowatt S.A." },
- { 28931, "MiKe software&network SRL" },
- { 28932, "NazerFarzan" },
- { 28933, "Senado de Espa\0303\0261a" },
- { 28934, "tick Trading Software AG" },
- { 28935, "Sacred Heart College" },
- { 28936, "Information Technology ltda" },
- { 28937, "DASANTPS Inc." },
- { 28938, "TAS France" },
- { 28939, "bremen online services GmbH & Co. KG" },
- { 28940, "IMP Telekom d.d." },
- { 28941, "Network Solutions Norway ASA" },
- { 28942, "Amperion South East" },
- { 28943, "Inter Clamp Management AG" },
- { 28944, "Meyer Associates, Inc" },
- { 28945, "nome consulting ltd" },
- { 28946, "E-Band Communications Corp" },
- { 28947, "Trillenium Works" },
- { 28948, "VeePee" },
- { 28949, "Ownage, Inc." },
- { 28950, "Virtual U at Union College" },
- { 28951, "IP Fjarskipti" },
- { 28952, "Cypress Solutions Inc." },
- { 28953, "AiNETEK CO.,Ltd." },
- { 28954, "And-Or Logic" },
- { 28955, "9 to 5 Magic" },
- { 28956, "Allen Martin Ltd" },
- { 28957, "Institut f\0303\0274r Graphische und Parallele Datenverarbeitung, Universit\0303\0244t Linz" },
- { 28958, "SNAPin Software, Inc." },
- { 28959, "Fargo Electronics, Incorporated" },
- { 28960, "resolux" },
- { 28961, "PIAX Project" },
- { 28962, "Down to Earth Systems" },
- { 28963, "deyeb" },
- { 28964, "futbag" },
- { 28965, "KOSnet-EDV" },
- { 28966, "37signals, LLC" },
- { 28967, "Optosecurity Inc." },
- { 28968, "Affinitic s.p.r.l" },
- { 28969, "Dana Koch" },
- { 28970, "Digitec Systems" },
- { 28971, "Incontech Ltd" },
- { 28972, "Keio University" },
- { 28973, "Landschaftsverband Rheinland (formerly 'LVR InfoKom')" },
- { 28974, "Belarusbank" },
- { 28975, "GSI Europe SL" },
- { 28976, "Intersys Sistemas Interactivos" },
- { 28977, "NovusEdge" },
- { 28978, "Canonical Ltd" },
- { 28979, "MwGhennndo" },
- { 28980, "Leiden University, Faculty of Science" },
- { 28981, "TKRJasek" },
- { 28982, "Pachi" },
- { 28983, "TechBase Sp. z o.o." },
- { 28984, "Universidade Federal de Mato Grosso do Sul" },
- { 28985, "Staples, Inc." },
- { 28986, "FNMS Project" },
- { 28987, "marsldap" },
- { 28988, "icanetix Software Systems and Consulting GmbH" },
- { 28989, "Sociedad Mutual \"Seguro de Vida\"" },
- { 28990, "PrivateMonitoring" },
- { 28991, "Ghz Solu\0303\0247\0303\0265es em Informatica Dracena LTDA ME" },
- { 28992, "American Century Proprietary Holdings, Inc." },
- { 28993, "PCM LLC I" },
- { 28994, "LiveSquare" },
- { 28995, "Dresser Wayne, Dresser Inc." },
- { 28996, "JAE Enterprises" },
- { 28997, "south china university of technology" },
- { 28998, "Pine Tree Systems" },
- { 28999, "Voible Communications Ltd" },
- { 29000, "Markus-Alexander Matth\0303\0251" },
- { 29001, "TRISKEL TELECOM SL" },
- { 29002, "PGGM" },
- { 29003, "Fibernet International" },
- { 29004, "La Voz de Galicia" },
- { 29005, "Joint Stock Company \"Scientific & Production Enterprise \"ORBITA\"" },
- { 29006, "VocaLink Limited" },
- { 29007, "R&D ScanEx" },
- { 29008, "Kaya Software, LLC" },
- { 29009, "Mirth Corporation (formerly 'WebReach, Inc.')" },
- { 29010, "National Bank Of Kuwait" },
- { 29011, "HeBIS" },
- { 29012, "Quality Technology Services" },
- { 29013, "Teldat Sp.J. H. Kruszy\0305\0204ski, M. Cichocki" },
- { 29014, "Intellengine" },
- { 29015, "Keitai Gaming (formerly 'TallTele')" },
- { 29016, "Professional Partnership Ltd" },
- { 29017, "Buda" },
- { 29018, "Network Security Solutions d.o.o." },
- { 29019, "ACK Networks, Inc." },
- { 29020, "Marco Aspromonti" },
- { 29021, "MUGLER AG" },
- { 29022, "Dorstewitz" },
- { 29023, "FaMAF - Facultad de Matematica, Astronomia y F\0303\0255sica - Universidad Nacional de Cordoba - Argentina" },
- { 29024, "OSERYS Syst\0303\0250mes" },
- { 29025, "RECRO-net d.o.o." },
- { 29026, "GUZMAN" },
- { 29027, "Netfinity Ltd." },
- { 29028, "Jerry Chapman" },
- { 29029, "Altierre Corporation" },
- { 29030, "Ringier Slovakia, a.s." },
- { 29031, "ILSC" },
- { 29032, "Creative Industries" },
- { 29033, "4DK Technologies, Inc." },
- { 29034, "Common Sense IT-Consulting GmbH." },
- { 29035, "kymz online page" },
- { 29036, "CACI International Inc" },
- { 29037, "MooL Invest Kft." },
- { 29038, "ICEGEL Kft." },
- { 29039, "Otis College of Art and Design" },
- { 29040, "CX computers & consulting, s.r.o." },
- { 29041, "SmartOfficeBuilding" },
- { 29042, "Toppan" },
- { 29043, "Peek&Cloppenburg KG" },
- { 29044, "Digital Alert Systems" },
- { 29045, "Camp Dresser and McKee, Inc." },
- { 29046, "The Boston Consulting Group, Inc." },
- { 29047, "GigaFin Networks" },
- { 29048, "Vianet International Ltd" },
- { 29049, "Sichuan Xinhua Winshare Chainstore Co.,Ltd." },
- { 29050, "Korcett Holdings, Inc." },
- { 29051, "DAIKON Integracion y Desarrollo S.L." },
- { 29052, "Defzone B.V." },
- { 29053, "Intellio Ltd." },
- { 29054, "Bluebell Opticom Limited" },
- { 29055, "American International Distribution Corporation, Inc." },
- { 29056, "logicfish.org" },
- { 29057, "Universitaet fuer Bodenkultur, Wien (BOKU)" },
- { 29058, "Neology Corporation" },
- { 29059, "FAL Solutions" },
- { 29060, "Schnapper Vision Studios" },
- { 29061, "AFORE Solutions, Inc." },
- { 29062, "HEAnet Limited" },
- { 29063, "Patrick McDonnell" },
- { 29064, "ODDO & CIE" },
- { 29065, "31337 Hackers" },
- { 29066, "enovatia" },
- { 29067, "The Loop Communications" },
- { 29068, "OpenSource Training Ralf Spenneberg" },
- { 29069, "HartmannSoft" },
- { 29070, "Conversion Co., Ltd." },
- { 29071, "ON DEMAND Microelectronics AG" },
- { 29072, "Neopost" },
- { 29073, "Western Avionics" },
- { 29074, "Epic Aviation, LLC" },
- { 29075, "Oncology & Hematology Associates of Southwest Indiana, P.C." },
- { 29076, "CP Sharing" },
- { 29077, "Gentgeens Lodge" },
- { 29078, "SynapSense Corporation" },
- { 29079, "Cryptologic Inc." },
- { 29080, "Kiong Software" },
- { 29081, "ISI.NC" },
- { 29082, "L2C2 Technologies" },
- { 29083, "PKO BP SA" },
- { 29084, "OVH" },
- { 29085, "Conergy AG" },
- { 29086, "Bethlehem Lutheran School" },
- { 29087, "roullier" },
- { 29088, "SpinVox Ltd." },
- { 29089, "Intec Software Solutions" },
- { 29090, "Sendza, Inc." },
- { 29091, "FriendlySNMP" },
- { 29092, "Wirama" },
- { 29093, "Stekfon" },
- { 29094, "Aquarius Telecom Technologies" },
- { 29095, "AeroSat Avionics LLC" },
- { 29096, "NewACT Ltd." },
- { 29097, "TRIGLAV, Zdravstvena zavarovalnica, d.d." },
- { 29098, "DRM Digital Radio Mondiale" },
- { 29099, "Larimart S.p.A." },
- { 29100, "Lithustech Sistemas Eletr\0303\0264nicos LTDA." },
- { 29101, "Interstate Gas Supply" },
- { 29102, "Cargill Inc." },
- { 29103, "Naropa University" },
- { 29104, "Felix Tiede" },
- { 29105, "Intelleflex Corp." },
- { 29106, "Xangati" },
- { 29107, "Key Solutions" },
- { 29108, "Enleiten Inc." },
- { 29109, "Hoover Treated Wood Products, Inc." },
- { 29110, "Woodside Fabrics Limited" },
- { 29111, "Beijing Poweron Technologies Co., Ltd." },
- { 29112, "Biblioteca de Catalunya" },
- { 29113, "Bank Pekao S.A." },
- { 29114, "SecureW2" },
- { 29115, "ECCO Sko A/S" },
- { 29116, "Instituto Politecnico de Setubal" },
- { 29117, "Xembedded, Inc." },
- { 29118, "BOSSIO SOLUTIONS & SERVICES SL" },
- { 29119, "Joint Stock Company All-Russian Scientific Research Institute of Television and Radio Broadcasting" },
- { 29120, "SYSOON SARL" },
- { 29121, "NZN" },
- { 29122, "TCX Computer Technology" },
- { 29123, "Jalasutram, Inc." },
- { 29124, "IMAGENICS Co,Ltd." },
- { 29125, "Advance Interactive Technologies Pte. Ltd" },
- { 29126, "Osterholm & Associates" },
- { 29127, "SV Corporation" },
- { 29128, "Mindwell Technologies" },
- { 29129, "dg-solutions" },
- { 29130, "Lithuanian Academy of Physical Education" },
- { 29131, "PERSONAL_JG" },
- { 29132, "CalNet" },
- { 29133, "ATIS UHER S.A." },
- { 29134, "SpeedXS" },
- { 29135, "Salvad\0303\0250 S.r.l." },
- { 29136, "Toys R Us Corporation" },
- { 29137, "michaelgerzabek.com(R)" },
- { 29138, "TWIC Root" },
- { 29139, "UNICOM DATA GROUP TECNOLOGIA LTDA" },
- { 29140, "ONEDOC AB" },
- { 29141, "LiveOps" },
- { 29142, "ViewPlus Technologies, Inc." },
- { 29143, "CableWorld Ltd." },
- { 29144, "Unassigned" },
- { 29145, "K&P Computer GmbH" },
- { 29146, "SwapsWire Ltd" },
- { 29147, "Proficient Technology" },
- { 29148, "Axolotl Corp." },
- { 29149, "data inform srl" },
- { 29150, "COMLAB AG" },
- { 29151, "Live Data Group, inc." },
- { 29152, "Palo Alto Unified School District" },
- { 29153, "Ridgecrest Financial, Inc." },
- { 29154, "Electromagnetic Technologies Industries Inc." },
- { 29155, "Tews Technologies GmbH" },
- { 29156, "Byte Dynamics, SRL" },
- { 29157, "Bytemark Hosting" },
- { 29158, "Alinea Software Solutions SL" },
- { 29159, "Nodak Flying Club, Inc." },
- { 29160, "L2 Enterprises" },
- { 29161, "Hidden-City.NET" },
- { 29162, "china lottery online co. ltd." },
- { 29163, "darrow.com" },
- { 29164, "EnabledPeople LLC" },
- { 29165, "Antech" },
- { 29166, "NetQoSt" },
- { 29167, "ISTEC GmbH" },
- { 29168, "T-Mobile International" },
- { 29169, "LLC \"Astelit\"" },
- { 29170, "Interactive Quality Services Inc." },
- { 29171, "ESET, spol. s r.o." },
- { 29172, "Bresnan Communications, LLC." },
- { 29173, "InSpatial LLC" },
- { 29174, "rPath, Inc." },
- { 29175, "phasma.nl" },
- { 29176, "FIRST RABBIT GmbH" },
- { 29177, "Umlautus" },
- { 29178, "California State University, Bakersfield" },
- { 29179, "Aginova S\0303\0240rl" },
- { 29180, "Ponsse Oyj" },
- { 29181, "Ecole de techologie superieure" },
- { 29182, "AMI dept, Sensus Metering Systems, Inc." },
- { 29183, "6PIXIES International" },
- { 29184, "Humor Rainbow, Inc" },
- { 29185, "Digital Fountain Inc." },
- { 29186, "Innovative IT Architects. LLC" },
- { 29187, "Revelation TV" },
- { 29188, "Wavex Technologies Pte Ltd" },
- { 29189, "Roadside" },
- { 29190, "Valyd Technologies Pvt Ltd" },
- { 29191, "Dynatech s.r.o." },
- { 29192, "OpusVL" },
- { 29193, "Fabrix TV LTD." },
- { 29194, "Shelby County Board of Education" },
- { 29195, "ZeelandNet b.v." },
- { 29196, "Lattice, L.L.C." },
- { 29197, "Kaazing Corp." },
- { 29198, "PhR" },
- { 29199, "TERADA ELECTRIC WORKS CO.,LTD" },
- { 29200, "UNETsystem Co., Ltd." },
- { 29201, "Rawenstvo OJSC" },
- { 29202, "Hari Sekhon" },
- { 29203, "Grupo Santander" },
- { 29204, "Senex Technologies Inc." },
- { 29205, "NewMedia-NET GmbH - Division dd-wrt" },
- { 29206, "vargo.us" },
- { 29207, "Rescentris, Inc." },
- { 29208, "Zandanel Informationstechnologie" },
- { 29209, "Hermann Ehlers Haus" },
- { 29210, "KARCHER & LADWEIN Ingenieurpartnerschaft fuer Bautechnik" },
- { 29211, "DiOmega GmbH" },
- { 29212, "HOV Services, LLC" },
- { 29213, "ARBU" },
- { 29214, "Dairiki Solutions" },
- { 29215, "Eyeball Networks Inc." },
- { 29216, "Onode Server Project" },
- { 29217, "Grant Street Group, Inc." },
- { 29218, "The ALPHAVICTOR\0302\0256 Companies" },
- { 29219, "Wuille bvba" },
- { 29220, "Ciputra Group" },
- { 29221, "Enforta" },
- { 29222, "Weisser" },
- { 29223, "Stadtverwaltung Bornheim" },
- { 29224, "CoreTrek AS" },
- { 29225, "Marko Karg" },
- { 29226, "BERGERAT MONNOYEUR LOCATION" },
- { 29227, "Criticall Limited" },
- { 29228, "Distributed Medical Sverige AB" },
- { 29229, "OutServ, Inc." },
- { 29230, "Direction G\0303\0251n\0303\0251rale de l'Aviation Civile" },
- { 29231, "Conf\0303\0251d\0303\0251ration Fran\0303\0247aise Microtel Multim\0303\0251dia" },
- { 29232, "coreIPM" },
- { 29233, "MCL, Inc." },
- { 29234, "Titan Publishing Group Limited" },
- { 29235, "Protey" },
- { 29236, "APHP Beclere" },
- { 29237, "New Hampshire Employment Security" },
- { 29238, "AdBrite, Inc." },
- { 29239, "SYSTEMSKILLS COMPUTER TECHNICAL SERVICES LTD." },
- { 29240, "HID Global" },
- { 29241, "Spry Hosting" },
- { 29242, "Peabody Energy" },
- { 29243, "Resolve Systems" },
- { 29244, "Lime Wire LLC" },
- { 29245, "Commonwealth of Pennsylvania, Governor's Office of Administration" },
- { 29246, "KnowledgeTrax, LLC" },
- { 29247, "Secioss Corporation" },
- { 29248, "Wanmi Telecom Technologies Co.,Ltd" },
- { 29249, "Revue VTK vzw" },
- { 29250, "EPM expert" },
- { 29251, "LNM IIT" },
- { 29252, "Server System Infrastructure (SSI)" },
- { 29253, "KBK Consultant" },
- { 29254, "Pulsar Mobile Sp. z o. o." },
- { 29255, "HRZ Zittau/G\0303\0266rlitz" },
- { 29256, "HALLESCHE Krankenversicherung auf Gegenseitigkeit" },
- { 29257, "Fedasil" },
- { 29258, "Mittelrhein-Verlag GmbH" },
- { 29259, "California State University, Chico" },
- { 29260, "Tempest Security Intelligence" },
- { 29261, "emQbit" },
- { 29262, "cybermah.com" },
- { 29263, "Max Planck Institute of Biochemistry" },
- { 29264, "apc interactive solutions ag" },
- { 29265, "KIRP GmbH" },
- { 29266, "xvpn" },
- { 29267, "Teleologic Learning Company" },
- { 29268, "Unitarian Universalist Association" },
- { 29269, "SiteXs Netzwerkloesungen & IT-Consulting GmbH" },
- { 29270, "Rogers West" },
- { 29271, "OBS Technology" },
- { 29272, "Biological and Popular Culture, LLC" },
- { 29273, "GCS Software & Consulting KEG" },
- { 29274, "BusinessFabric Inc" },
- { 29275, "Autometrix Precision Cutting Systems" },
- { 29276, "Wizards Internet Limited" },
- { 29277, "BookieStreet, Ltd." },
- { 29278, "Dima Technologies Co.,Ltd" },
- { 29279, "WuXi ZhongXing Optoelectronics Technology Co., Ltd." },
- { 29280, "Widgets" },
- { 29281, "Trelleborgs Hamn AB" },
- { 29282, "Azuki Software" },
- { 29283, "dscnet.org" },
- { 29284, "Axxana" },
- { 29285, "Aquanasoft" },
- { 29286, "Imagine Communications" },
- { 29287, "Finite Communication Inc." },
- { 29288, "Altus Networks Inc" },
- { 29289, "Advertising.com" },
- { 29290, "WeGo Health, Inc" },
- { 29291, "SECRETARIA DE LA FUNCION PUBLICA" },
- { 29292, "Ubiquitous Systems Ltd" },
- { 29293, "Royal Roads University" },
- { 29294, "Meshweave" },
- { 29295, "IMESC" },
- { 29296, "IDX Company, Ltd." },
- { 29297, "Shenzhen vStrong technology Co.,Ltd." },
- { 29298, "Ador Powertron Ltd." },
- { 29299, "Zarovs Stelsels Bk" },
- { 29300, "SSI Schaefer Peem GmbH" },
- { 29301, "Braxtel Communications Inc" },
- { 29302, "eSI Mobile Solutions. S.L.L (GENAKER)" },
- { 29303, "Telappliant Ltd." },
- { 29304, "Services for Business IT Ruhr GmbH" },
- { 29305, "IPFIX Reverse Information Element Private Enterprise" },
- { 29306, "Useful Networks" },
- { 29307, "Loki Industries" },
- { 29308, "RPGfiction" },
- { 29309, "IBM Mittelstand Systeme" },
- { 29310, "William Petersen Elektronik A/S" },
- { 29311, "Itay Be'erli" },
- { 29312, "Bernecker+Rainer Industrie-Elektronik Ges.m.b.H." },
- { 29313, "GloboTech GmbH" },
- { 29314, "WDV GmbH" },
- { 29315, "VAUDE Sport GmbH & Co. KG" },
- { 29316, "Astute Networks, Inc." },
- { 29317, "Global Technology Inc." },
- { 29318, "Doquent Inc" },
- { 29319, "NTT Communications Corporation" },
- { 29320, "regio iT aachen gmbh" },
- { 29321, "IBL Software Engineering, Ltd." },
- { 29322, "Cabinplant A/S" },
- { 29323, "Lesun Technologies Co.,Ltd" },
- { 29324, "Voxy Communications" },
- { 29325, "Worshipworks Ministries International" },
- { 29326, "IBM Rational" },
- { 29327, "barrang" },
- { 29328, "The Stable Group" },
- { 29329, "Trade Me Ltd" },
- { 29330, "Cryptic Studios" },
- { 29331, "Swan Island Networks, Inc." },
- { 29332, "Frank Meisschaert" },
- { 29333, "JBlade LLC" },
- { 29334, "Provider.nl" },
- { 29335, "Zajil International Telecom K.C.S.C." },
- { 29336, "Bombardier Transportation (Signal) Germany GmbH" },
- { 29337, "Bynari" },
- { 29338, "Kestrel Wireless, Inc." },
- { 29339, "3guppies.com" },
- { 29340, "joncaves.com" },
- { 29341, "Ingenieurbuero Schmid" },
- { 29342, "Browave Inc." },
- { 29343, "Grundig SAT-Systems GmbH" },
- { 29344, "ShangHai HuaBo Taifu Internet Technology Co.,Ltd" },
- { 29345, "Softing AG" },
- { 29346, "UKN Group Limited" },
- { 29347, "Amadeus Global Travel Ltd." },
- { 29348, "RotaBanner Next" },
- { 29349, "mediagrids plc" },
- { 29350, "Remuda Ranch Center for Anorexia & Bulimia Inc." },
- { 29351, "Fallibroome High School" },
- { 29352, "IBEX Technology Co.,Ltd." },
- { 29353, "Brewer Science, Inc." },
- { 29354, "Health Dialog Services Corporation" },
- { 29355, "PING e.V." },
- { 29356, "Montville Enterprises LLC" },
- { 29357, "Fenster Software" },
- { 29358, "Zlango" },
- { 29359, "Industrie Dial Face S.p.A." },
- { 29360, "AMS Media Sverige AB" },
- { 29361, "Magma" },
- { 29362, "Tomizone Limited" },
- { 29363, "CHCLab.net" },
- { 29364, "Applied Electro-Magnetics P. Ltd" },
- { 29365, "Penta Investments, a.s." },
- { 29366, "BMI spa" },
- { 29367, "Dreamlab Technologies AG" },
- { 29368, "IASC" },
- { 29369, "Tom Collins L.L.C." },
- { 29370, "Daniel Mandler" },
- { 29371, "CDC Arkhineo" },
- { 29372, "BidiX" },
- { 29373, "Dillet.net" },
- { 29374, "elegiac" },
- { 29375, "Selekron Microcontrol s.l." },
- { 29376, "Tr\0303\0244gerverein B\0303\0274rgernetz Bamberg e.V." },
- { 29377, "Make-A-Byte, Inc." },
- { 29378, "CoCo Communications Corp." },
- { 29379, "Lostar Bilgi Guvenligi A.S." },
- { 29380, "Beekhul Holdings Pty Ltd" },
- { 29381, "McNeese State University" },
- { 29382, "Dedalus S.p.a." },
- { 29383, "sysview Inc" },
- { 29384, "PD Consulting and Security" },
- { 29385, "ANS" },
- { 29386, "Zetes 3iV CC" },
- { 29387, "enovance" },
- { 29388, "Activant Solutions" },
- { 29389, "LOGIKonline Inc." },
- { 29390, "Digital IMS" },
- { 29391, "Strategic Data Pty Ltd" },
- { 29392, "a3 systems GmbH" },
- { 29393, "AETA AUDIO SYSTEMS" },
- { 29394, "Centre Hospitalier R\0303\0251gional Universitaire de Lille" },
- { 29395, "Pheedo, Inc." },
- { 29396, "VeriSat AS" },
- { 29397, "Engineering System Solutions" },
- { 29398, "Workscape" },
- { 29399, "SIDSA" },
- { 29400, "OKC AG" },
- { 29401, "Fullnet, Inc." },
- { 29402, "HELEX" },
- { 29403, "COMWAX" },
- { 29404, "Intelligens Rendszerek Divizio Kft." },
- { 29405, "Unicel do Brasil Telecomunica\0303\0247\0303\0265es LTDA" },
- { 29406, "Connectbeam" },
- { 29407, "Portal Andres Jadan" },
- { 29408, "KEPCO" },
- { 29409, "Innovation Wireless Inc." },
- { 29410, "Firesteel Technologies, Inc" },
- { 29411, "Instituto de Tecnologia da Informa\0303\0247\0303\0243o e Comunica\0303\0247\0303\0243o do Estado do Esp\0303\0255rito Santo - PRODEST" },
- { 29412, "Prodea Systems" },
- { 29413, "Access Layers LTD" },
- { 29414, "Opengate Data Systems" },
- { 29415, "Autentia Real Business Solutions" },
- { 29416, "ORBIT TECHNOLOGY GROUP" },
- { 29417, "Felix Schwarz Software-Entwicklung" },
- { 29418, "Tracenetwork Corporation Sdn. Bhd." },
- { 29419, "Kapital Insurance Group" },
- { 29420, "West Bengal University of Technology" },
- { 29421, "Kargo Global Inc" },
- { 29422, "Support Solu\0303\0247\0303\0265es em Inform\0303\0241tica LTDA" },
- { 29423, "2V S.r.l." },
- { 29424, "Embryo Web Solutions Ltda" },
- { 29425, "Materiales Electricos y Mecanicos - MEM Ltda" },
- { 29426, "State of Mind" },
- { 29427, "EZSAFE" },
- { 29428, "IKOEmed" },
- { 29429, "SynergyRT" },
- { 29430, "HMS GmbH" },
- { 29431, "FaithFamily Academy" },
- { 29432, "Hurco Automation Ltd." },
- { 29433, "Digma Inc." },
- { 29434, "MRK - Media AG" },
- { 29435, "Wisekey ELA" },
- { 29436, "Central Technology Services" },
- { 29437, "HNP" },
- { 29438, "ARAMEX International Ltd." },
- { 29439, "Untold Structures P/L" },
- { 29440, "Universit\0303\0251 Louis Pasteur - UFR de Math\0303\0251matique et d'Informatique" },
- { 29441, "Quanzhou Normal University" },
- { 29442, "ARISE" },
- { 29443, "ShangHai RuiGao InformationTechnologies Co.,Ltd" },
- { 29444, "Sondara Solucions" },
- { 29445, "Integra S.r.l." },
- { 29446, "Telematik Design" },
- { 29447, "Nordic Growth Market NGM AB" },
- { 29448, "Gloucester Research Ltd" },
- { 29449, "Resolvity, Inc" },
- { 29450, "Digistar Telecomunica\0303\0247\0303\0265es S.A." },
- { 29451, "Interop Technologies" },
- { 29452, "DigitalPersona, Inc." },
- { 29453, "Brendt Peter" },
- { 29454, "O.D.S., Inc." },
- { 29455, "CRAHAY.EU" },
- { 29456, "modas mobile Datensysteme GmbH" },
- { 29457, "Peer Fusion, Inc." },
- { 29458, "ACETEL" },
- { 29459, "Gobierno de Arag\0303\0263n" },
- { 29460, "Red Bee Media" },
- { 29461, "Authentity - Certificaton Entity" },
- { 29462, "Stulz GmbH Klimatechnik" },
- { 29463, "Axigen Messaging (formerly 'GECAD Technologies')" },
- { 29464, "Inverse groupe conseil" },
- { 29465, "Aaron Von Gauss" },
- { 29466, "The Nation Traffic" },
- { 29467, "Fire Breathing Robot Systems" },
- { 29468, "Fruhen Infotec" },
- { 29469, "Freber Enterprises" },
- { 29470, "DAX Technologies Corp" },
- { 29471, "VibiT BVBA" },
- { 29472, "Grinning Fool Productions" },
- { 29473, "Humanity Forward" },
- { 29474, "CHINA NETCOM GROUP BROADBAND SERVICE APPLICATIONS LIMITED CORPORATION FOR NATIONAL ENGINEERING LABORATORY" },
- { 29475, "ADILEC S.L." },
- { 29476, "Viliam Trep\0303\0241k - NETCOM" },
- { 29477, "Markas-Al-Nour" },
- { 29478, "University of Chicago, Graduate School of Business" },
- { 29479, "hc Consulting" },
- { 29480, "Barash Communication Technologies Inc. (BCTI)" },
- { 29481, "Cambridge Semantics Inc" },
- { 29482, "Excell Battery Company" },
- { 29483, "Proformatique" },
- { 29484, "DevGuy" },
- { 29485, "SMART Technologies ULC" },
- { 29486, "Roundysoft" },
- { 29487, "Beijing LHWT Microelectronics Inc" },
- { 29488, "Jeremy Jones" },
- { 29489, "SlitherSoft" },
- { 29490, "Protech s.a.s." },
- { 29491, "John Wiley & Sons, Inc." },
- { 29492, "Pischows" },
- { 29493, "Limestone College" },
- { 29494, "State of Maine Government" },
- { 29495, "Siteworx, Inc." },
- { 29496, "Marc Suttle" },
- { 29497, "Carbon Planet Pty Ltd" },
- { 29498, "Probin" },
- { 29499, "Unassigned" },
- { 29500, "StorageSwitch" },
- { 29501, "Algolith Inc." },
- { 29502, "MDIT Innovations Inc" },
- { 29503, "GeniNetworks" },
- { 29504, "SDC ek. f\0303\0266r." },
- { 29505, "Resercom, L.P." },
- { 29506, "Telepin Software" },
- { 29507, "InCoDe" },
- { 29508, "Pfadfinder & Pfadfinderinnenbund Nordlicht e.V." },
- { 29509, "Naftna Industrija Srbije a.d. Novi Sad" },
- { 29510, "ZipTie" },
- { 29511, "HITACHI Hi-System21 Co.,Ltd. Minami-Team" },
- { 29512, "Integral Sistemas" },
- { 29513, "MvpZone" },
- { 29514, "NewLines Ltd." },
- { 29515, "Korea Institute of Science and Technology (KIST)" },
- { 29516, "UUDynamics, Inc." },
- { 29517, "AuxalNet" },
- { 29518, "Drew Hess" },
- { 29519, "Urz\0304\0205d Zam\0303\0263wie\0305\0204 Publicznych" },
- { 29520, "DOMOD" },
- { 29521, "Omega Design, s.r.o." },
- { 29522, "Unix Systems Management Pty Ltd" },
- { 29523, "IE Internet.com Limited" },
- { 29524, "Dubai Duty Free" },
- { 29525, "Ukrainiain industrial" },
- { 29526, "EBI consulting" },
- { 29527, "Spangenberg Consulting" },
- { 29528, "TOEL Electronics Ltd." },
- { 29529, "CPS Technologies" },
- { 29530, "New Medical Co.,LTD." },
- { 29531, "K3-NETWORKS" },
- { 29532, "Pacific West Association of Realtors" },
- { 29533, "NSSE SSC Charleston" },
- { 29534, "the hive" },
- { 29535, "BKMKS.COM" },
- { 29536, "SKY Perfect JSAT Corporation (formerly 'Space Communications Corporation')" },
- { 29537, "Velox" },
- { 29538, "Celeonet" },
- { 29539, "Lockview" },
- { 29540, "B-204-1" },
- { 29541, "City of Roseville - Information Technology Department" },
- { 29542, "BroadcastWebs LLC" },
- { 29543, "Inqnet GmbH" },
- { 29544, "University of Montenegro" },
- { 29545, "Open Source Business Group" },
- { 29546, "Soft- & Hardware Beratung Ebeling" },
- { 29547, "Thomas Neumann" },
- { 29548, "4Com GmbH" },
- { 29549, "EDS France SAS/D3SP" },
- { 29550, "Efectivos de Tecnicas, S.A." },
- { 29551, "Dust in the net" },
- { 29552, "Three Palm Software LLC" },
- { 29553, "Habegger AG" },
- { 29554, "pouik.org" },
- { 29555, "CMB Consulting" },
- { 29556, "TechMind Ltd." },
- { 29557, "Titus International Inc" },
- { 29558, "Titus Labs Inc" },
- { 29559, "Late-Hours" },
- { 29560, "SBE network solutions GmbH" },
- { 29561, "Yuston BV" },
- { 29562, "Sophelios BVBA" },
- { 29563, "MITANI CORPORATION" },
- { 29564, "Opensquad SARL" },
- { 29565, "DCMSYS LLC" },
- { 29566, "OH San Juan de Dios. Provincia Betica" },
- { 29567, "Central Informatics Organisation" },
- { 29568, "Integro Technologies Private Limited (Singapore)" },
- { 29569, "Senselogic AB" },
- { 29570, "Oak Ridge Associated Univerisites" },
- { 29571, "Mirasys" },
- { 29572, "Apotex Inc" },
- { 29573, "Laredo IT" },
- { 29574, "PowerCore Engineering" },
- { 29575, "Alexander Badent (none)" },
- { 29576, "Kilgour" },
- { 29577, "gateProtect AG, Germany" },
- { 29578, "STN BV" },
- { 29579, "42media group GmbH" },
- { 29580, "Viyya Technologies Inc." },
- { 29581, "Axiomatica" },
- { 29582, "Nativ Systems Ltd" },
- { 29583, "Angelo State University" },
- { 29584, "Tom Link" },
- { 29585, "Comsec TR Pty. Ltd." },
- { 29586, "USG People International N.V." },
- { 29587, "Zadig Srl" },
- { 29588, "EGOS! The Education Company" },
- { 29589, "Wanari Kft." },
- { 29590, "Lileo Scop Sarl" },
- { 29591, "OpenSS7 Corporation" },
- { 29592, "Corporate Big" },
- { 29593, "Bolkhuis" },
- { 29594, "San Jose State University" },
- { 29595, "Drury Hotels Corporation" },
- { 29596, "CMP Audiovisual" },
- { 29597, "Nextfour Group Ltd" },
- { 29598, "NSI Hosting, Inc." },
- { 29599, "Torokina Networks" },
- { 29600, "International Islamic University Malaysia" },
- { 29601, "Aricent Communication (Holdings) Ltd." },
- { 29602, "ALTASIS DI CASTIGLIEGO MICHELE" },
- { 29603, "Kenoxa GmbH" },
- { 29604, "Diverse Computing, Inc." },
- { 29605, "CellGain" },
- { 29606, "Econoprint, Inc." },
- { 29607, "Reverb Networks, Inc." },
- { 29608, "pelzel" },
- { 29609, "Apogee Labs, Inc." },
- { 29610, "Secure Process" },
- { 29611, "Clonewars.org" },
- { 29612, "Wi-Links" },
- { 29613, "Ethos-Networks" },
- { 29614, "Aug. Hedinger GmbH & Co. KG" },
- { 29615, "29West, Inc." },
- { 29616, "reynald.org" },
- { 29617, "SyTech" },
- { 29618, "Region Syddanmark" },
- { 29619, "Johannes Oechsle LAN-Party Netzwerkausruester" },
- { 29620, "Gamesys Ltd" },
- { 29621, "BIOS Corporation" },
- { 29622, "Megafon OJSC" },
- { 29623, "Banque du Liban" },
- { 29624, "RIMOC GmbH" },
- { 29625, "Sagi Mehadave" },
- { 29626, "TeleDesign PLC" },
- { 29627, "IDpendant GmbH" },
- { 29628, "n2N Commerce" },
- { 29629, "Legg Mason, Inc." },
- { 29630, "ONE-ANS S.p.A" },
- { 29631, "iptego GmbH" },
- { 29632, "Seko Worldwide" },
- { 29633, "Peleton Photonic Systems" },
- { 29634, "Dom Inwestycyjny BRE Banku S.A." },
- { 29635, "Dealer Information Systems Corporation" },
- { 29636, "SecureMedia" },
- { 29637, "TrinitySoft Co.,Ltd." },
- { 29638, "NovaTec Kommunikationstechnik GmbH" },
- { 29639, "The Electric Sheep Company, Inc." },
- { 29640, "AP Nederland BV" },
- { 29641, "Hostworks Group Ltd" },
- { 29642, "exxact" },
- { 29643, "Winkwaves" },
- { 29644, "Antony Vennard" },
- { 29645, "bothan.net" },
- { 29646, "VisiWear AS" },
- { 29647, "Virtual Broadband Technology, Inc." },
- { 29648, "QuoPin" },
- { 29649, "Infoton Corporation" },
- { 29650, "Georg Simon GmbH" },
- { 29651, "vidIP" },
- { 29652, "Shook Hardy & Bacon LLP" },
- { 29653, "Overstock.com Inc" },
- { 29654, "Freedom Networks" },
- { 29655, "Kirishi Glass Plant Ltd" },
- { 29656, "phaseDOT IT-Business-Solutions" },
- { 29657, "VTG Deutschland GmbH" },
- { 29658, "Fundacion Integra" },
- { 29659, "Carestream Health" },
- { 29660, "AFCO Systems" },
- { 29661, "Fulcrum Analytics, Inc." },
- { 29662, "cron IT GmbH" },
- { 29663, "Embedded X Inc" },
- { 29664, "Packet General Networks, Inc." },
- { 29665, "Protractor Software, Inc." },
- { 29666, "Lunixtreme" },
- { 29667, "Destiny Solutions" },
- { 29668, "Kirei AB" },
- { 29669, "Firstlight Networks" },
- { 29670, "Medflow Inc." },
- { 29671, "Meraki Networks, Inc." },
- { 29672, "CSK WinTechnology Corporation" },
- { 29673, "M3 Design Inc." },
- { 29674, "thewolfe.net, llc." },
- { 29675, "alemo kommunikations GmbH" },
- { 29676, "net plus tecnolodgy" },
- { 29677, "Sensata Technologies - Power Controls WBL" },
- { 29678, "Absolute, Ltd." },
- { 29679, "VoiSmart S.r.l. (formerly 'Espia Srl')" },
- { 29680, "Atlantux Consultores S.L." },
- { 29681, "AFPy" },
- { 29682, "DMO Technologies" },
- { 29683, "CopperEye Ltd" },
- { 29684, "Pioneer Magnetics Inc." },
- { 29685, "eVision Pty Ltd" },
- { 29686, "Bharat Electronics Ltd." },
- { 29687, "Absolute Performance, Inc." },
- { 29688, "Axstor" },
- { 29689, "Ekplek" },
- { 29690, "Doctor Web, Ltd" },
- { 29691, "Silver Wave Technology Limited" },
- { 29692, "Globesy, s.r.o." },
- { 29693, "Cobalt Digital" },
- { 29694, "Tethers Unlimited, Inc." },
- { 29695, "REWSS A/S" },
- { 29696, "CitiFinancial Consumer Finance India Ltd." },
- { 29697, "Leeds Primary Care Trust" },
- { 29698, "NBG ID" },
- { 29699, "Cetis d.d." },
- { 29700, "Got Linux, Inc." },
- { 29701, "PMD GmbH" },
- { 29702, "Eckard Vossas Unternehmensberatung" },
- { 29703, "Stuart Morgan" },
- { 29704, "Carlos Perello Marin" },
- { 29705, "SNOLAB" },
- { 29706, "Mapsolute GmbH" },
- { 29707, "Business & Engineering Systems Corp" },
- { 29708, "InfoStream Technologies" },
- { 29709, "Argibel Servicios Digitales S.L" },
- { 29710, "London Borough of Camden" },
- { 29711, "802automation Ltd" },
- { 29712, "m-sys EDV-Dienstleistungen" },
- { 29713, "LTECH" },
- { 29714, "Kyocera Communication Systems Co.Ltd" },
- { 29715, "Zavod za zdravstveno zavarovanje Slovenije" },
- { 29716, "Concilio Networks" },
- { 29717, "RealDolmen (formerly 'Dolmen Computer Applications')" },
- { 29718, "Technological Educational Institution of Athens (T.E.I. of Athens)" },
- { 29719, "MICROPLEX Printware AG" },
- { 29720, "xyco technologies AG" },
- { 29721, "BI-LO, LLC" },
- { 29722, "TimeCost" },
- { 29723, "IMAX Corp." },
- { 29724, "RPC Packaging" },
- { 29725, "InConcertCC" },
- { 29726, "Rottenbytes" },
- { 29727, "John Zornig" },
- { 29728, "Planex Technologies S.A." },
- { 29729, "Logesta Gestion del Transporte S.A." },
- { 29730, "MADEK, Ltd." },
- { 29731, "General Dynamics Information Technology" },
- { 29732, "MTS" },
- { 29733, "Hypertag Ltd." },
- { 29734, "Wartsila Corporation" },
- { 29735, "E.T.S.V. Scintilla" },
- { 29736, "Unified Business Solutions" },
- { 29737, "Hollywood Center Studios" },
- { 29738, "Kerk" },
- { 29739, "GRETA Sud Normandie" },
- { 29740, "MST Systemtechnik AG" },
- { 29741, "Aruba PEC S.p.A." },
- { 29742, "NetOne S.A." },
- { 29743, "digiremote" },
- { 29744, "SVP Broadcast Microwave S.L." },
- { 29745, "International Institute for Applied Systems Analysis" },
- { 29746, "Satro, s.r.o." },
- { 29747, "ExpressThought" },
- { 29748, "SophiaSoft" },
- { 29749, "Matthew R Chase" },
- { 29750, "KTS InfoTech Pvt Ltd" },
- { 29751, "Cubico Solutions" },
- { 29752, "Computer System Laboratory at CMC Faculty, Moscow State University" },
- { 29753, "3Tera, Inc." },
- { 29754, "Karl Blanderer Internetmarketing" },
- { 29755, "SISTEER" },
- { 29756, "Rochester Community and Technical College" },
- { 29757, "Oficina de Cooperaci\0303\0263n Universitaria, S.A." },
- { 29758, "Polska Grupa Farmaceutyczna" },
- { 29759, "Engineering Solutions, Inc." },
- { 29760, "CSS Inc." },
- { 29761, "GoConnect Australia Pty Ltd" },
- { 29762, "DevMetrix" },
- { 29763, "ReadyLinks" },
- { 29764, "Crypto Team" },
- { 29765, "Paycor, Inc." },
- { 29766, "Falcontrol Security GmbH" },
- { 29767, "James Hunt" },
- { 29768, "Emporia State University" },
- { 29769, "Accountis" },
- { 29770, "DIRECT ENERGIE" },
- { 29771, "TrioCom Ltd." },
- { 29772, "Sutter Health" },
- { 29773, "Genworth Financial" },
- { 29774, "Amobee" },
- { 29775, "WushNet LLC" },
- { 29776, "Checkphone" },
- { 29777, "Shaw Industries, Inc." },
- { 29778, "Honeywell Systems Group" },
- { 29779, "Zion Group Limited" },
- { 29780, "Secure IT-IS" },
- { 29781, "XEyedFrog Solutions" },
- { 29782, "CSK Holdings Corporation" },
- { 29783, "Brandenburg University of Technology" },
- { 29784, "Turismo Andaluz" },
- { 29785, "Ministerio de Agricultura, Pesca y Alimentacion" },
- { 29786, "Mediterrum SARL" },
- { 29787, "T-Systems MMS Dresden" },
- { 29788, "GZT Telkom-Telmor Sp. z o.o." },
- { 29789, "Red Lion Controls (BlueTree Wireless Data, Inc.)" },
- { 29790, "Yelp Inc." },
- { 29791, "Quality Nighthawk" },
- { 29792, "IPercom" },
- { 29793, "eNVENT Technologies" },
- { 29794, "DBD Deutsche Breitband Dienste" },
- { 29795, "CC Computer Consultants GmbH" },
- { 29796, "Instituto Mexicano del Seguro Social (IMSS)" },
- { 29797, "Working Technologies" },
- { 29798, "Loma Technology Group" },
- { 29799, "ex eventu GmbH" },
- { 29800, "Zeugma Systems Inc." },
- { 29801, "DEEPSCAN GR" },
- { 29802, "Comway GmbH" },
- { 29803, "Helsinki Metropolia University of Applied Sciences" },
- { 29804, "Pyroll Oy" },
- { 29805, "blueocean IT-Services" },
- { 29806, "Demotera" },
- { 29807, "Ville de Sevran" },
- { 29808, "Nextlead GmbH" },
- { 29809, "Getnet Tecnologia" },
- { 29810, "Moving Bytes Communications, Systementwicklung GmbH" },
- { 29811, "Contadur\0303\0255a General de la Naci\0303\0263n" },
- { 29812, "Kinetic Avionics Limited" },
- { 29813, "Prologica SGPS" },
- { 29814, "Gandara Center" },
- { 29815, "Gymnasium Salzgitter-Bad" },
- { 29816, "IRI France" },
- { 29817, "Gold Mobile" },
- { 29818, "National Financial Partners" },
- { 29819, "Elastiq LLC" },
- { 29820, "x-Gate" },
- { 29821, "SztupY dot hu" },
- { 29822, "The Options Clearing Corporation" },
- { 29823, "CallMiner, Inc." },
- { 29824, "Inprint" },
- { 29825, "NeoAccel, Inc." },
- { 29826, "WiBorne, Inc." },
- { 29827, "Qness AB" },
- { 29828, "Bellgardt Embedded Systems" },
- { 29829, "Software Art" },
- { 29830, "Elektro Slovenija d.o.o" },
- { 29831, "Scuola Superiore S.Anna" },
- { 29832, "Saeil Systems Inc." },
- { 29833, "GTZ India" },
- { 29834, "PRO-ZETA a.s." },
- { 29835, "bruggmann engineering" },
- { 29836, "China Internet Network Information Center" },
- { 29837, "Erema - Engineering Recycling Maschinen und Anlagen GmbH" },
- { 29838, "DialogueScience, Inc." },
- { 29839, "Simoco EMEA Ltd (formerly 'Dalman Technical Services Ltd')" },
- { 29840, "llrp.org" },
- { 29841, "Fat Spaniel Technologies" },
- { 29842, "macmon secure gmbh (formerly 'mikado soft gmbH')" },
- { 29843, "CargoServer AG (formerly 'ncode gmbh')" },
- { 29844, "Centile SA" },
- { 29845, "VCC Perfect Pictures AG" },
- { 29846, "Sparkroom, Inc." },
- { 29847, "Nav N Go Kft" },
- { 29848, "Far Eastern State University" },
- { 29849, "KSB AG" },
- { 29850, "Netline Communications Technologies (NCT) Ltd." },
- { 29851, "Nuclear-Whales Informatikai Bt." },
- { 29852, "Gryphon Networks" },
- { 29853, "eCare4all" },
- { 29854, "Advanced Medical Imaging Solutions, LLC" },
- { 29855, "T-Mobile Crna Gora d.o.o." },
- { 29856, "anapol" },
- { 29857, "Ready Set Companies" },
- { 29858, "FCA US LLC (formerly 'Chrysler LLC')" },
- { 29859, "KJC Systems Ltd Co" },
- { 29860, "Octopus Technologies Ltd" },
- { 29861, "N-iX LLC" },
- { 29862, "NANCY s.r.o" },
- { 29863, "Software Logic, Inc." },
- { 29864, "Typeria" },
- { 29865, "Kjaerulff 1 A/S" },
- { 29866, "Method Analysis Limited" },
- { 29867, "Skanska" },
- { 29868, "Business Security" },
- { 29869, "UniNet" },
- { 29870, "EUROCOM Satellite Systems AS" },
- { 29871, "College of Southern Maryland" },
- { 29872, "Project Rialto" },
- { 29873, "OutProtect" },
- { 29874, "TEL2WEB GmbH" },
- { 29875, "sorcellerie" },
- { 29876, "Antwoord voor Bedrijven (ICTU)" },
- { 29877, "Allnight Computing" },
- { 29878, "Reduce My Fee, LLC" },
- { 29879, "Pittman Holdings" },
- { 29880, "Schelde Naval Shipbuilding" },
- { 29881, "Brovic ltd. China" },
- { 29882, "Lambda Networks Ltd" },
- { 29883, "Telemune Software Solutions Ltd" },
- { 29884, "MadaSoft" },
- { 29885, "Haute Ecole Specialisee de Suisse occidentale (HES-SO)" },
- { 29886, "beroNet GmbH" },
- { 29887, "Direcci\0303\0263n General del Territorio Mar\0303\0255timo" },
- { 29888, "SpinetiX S.A." },
- { 29889, "Utilia" },
- { 29890, "Work Microwave GmbH" },
- { 29891, "Bluelon" },
- { 29892, "Genesilico" },
- { 29893, "Jeroen Koekkoek" },
- { 29894, "FrenchCries!" },
- { 29895, "Fam List Schlattstall" },
- { 29896, "VdH Soft" },
- { 29897, "QSent" },
- { 29898, "Acropolis Software SPRL" },
- { 29899, "Roosevelt University" },
- { 29900, "EDEKA Aktiengesellschaft" },
- { 29901, "Anaheim Engineering Co., LTD." },
- { 29902, "Dytecna Limited" },
- { 29903, "Counsel's Chambers Limited" },
- { 29904, "abacon products GmbH" },
- { 29905, "Perrit" },
- { 29906, "Dybala" },
- { 29907, "Webmedia AS" },
- { 29908, "IndigoVision Ltd" },
- { 29909, "Cicero Networks Limited" },
- { 29910, "Open Systems Management Ltd." },
- { 29911, "Open-Tec" },
- { 29912, "Hx Technologies Inc." },
- { 29913, "Intelligent Transportation Video" },
- { 29914, "Networkconcepts BV" },
- { 29915, "Northwood Logic" },
- { 29916, "Lightworks Technology Inc." },
- { 29917, "Guangzhou New Postcom Equipment Co.,Ltd." },
- { 29918, "Uralsvjazinform Inc." },
- { 29919, "CJSC Orbita" },
- { 29920, "mySoftIT GmbH" },
- { 29921, "FV Service KG" },
- { 29922, "Starmark Trading Ltd." },
- { 29923, "Netris" },
- { 29924, "GTD Sistemas de Informacion" },
- { 29925, "Multiplex Ltd." },
- { 29926, "Santa Rosa S.A." },
- { 29927, "LOHR" },
- { 29928, "RelayHealth" },
- { 29929, "United States Steel Corporation" },
- { 29930, "Koinema srl" },
- { 29931, "Cambridge Imaging Systems" },
- { 29932, "SOUND4" },
- { 29933, "APOAL Inc." },
- { 29934, "Hypermedia Systems Inc. (USA)" },
- { 29935, "ABC Startsiden AS" },
- { 29936, "x15" },
- { 29937, "ellis stewart design" },
- { 29938, "The Swedish Coast Guard" },
- { 29939, "Alpha Red, Inc" },
- { 29940, "Kawhai" },
- { 29941, "Pavlov Media, Inc" },
- { 29942, "Himalaya Technologies" },
- { 29943, "Shelton | Johns Technology Group" },
- { 29944, "COARA Inc." },
- { 29945, "Chinauninet" },
- { 29946, "Media-Saturn IT Services GmbH" },
- { 29947, "CNW Consulting Network AB" },
- { 29948, "Consell de Mallorca" },
- { 29949, "Cassiopea OnLine srl" },
- { 29950, "GMIT GmbH" },
- { 29951, "DCom, spol. s r.o." },
- { 29952, "JSC \"Alliance Group Holding\"" },
- { 29953, "deburit chemical engineering GmbH" },
- { 29954, "Health Identity Management Consortium - HIMC" },
- { 29955, "Medina VoIP" },
- { 29956, "FreeWave Technologies" },
- { 29957, "PCB Piezotronics Inc." },
- { 29958, "Washtenaw Community College" },
- { 29959, "KolejNet" },
- { 29960, "specurio studio" },
- { 29961, "AServer NV" },
- { 29962, "Tag Systems S.A." },
- { 29963, "Iron Council" },
- { 29964, "Tribunal de Contas dos Municipios do Estado do Par\0303\0241" },
- { 29965, "Shinymark Enterprises Limited" },
- { 29966, "Advanced Concept Technology Ltd." },
- { 29967, "B&R Data Systems" },
- { 29968, "Universidade Estadual de Campinas (Unicamp)" },
- { 29969, "MORISHIMA.NET" },
- { 29970, "Zervina Technologies LLC" },
- { 29971, "Damogran Apathetic Solutions" },
- { 29972, "compico" },
- { 29973, "GemEx Systems, Inc." },
- { 29974, "E-WEB INFORMATION Co." },
- { 29975, "Guangzhou Great Symbol Information Technology Co.,Ltd." },
- { 29976, "Nara Institute of Science and Technology" },
- { 29977, "Palm Tree Technology, Inc." },
- { 29978, "Gotland University" },
- { 29979, "Bruker AXS GmbH" },
- { 29980, "Smart Com d.o.o." },
- { 29981, "Marben Products" },
- { 29982, "Massive Entertainment" },
- { 29983, "Waves Audio Ltd." },
- { 29984, "Byelorussian State University of Informatics and Radioelectronics (BSUIR)" },
- { 29985, "DETRACOM SAS" },
- { 29986, "NET STREAMS" },
- { 29987, "Hivemind Systems, Inc." },
- { 29988, "Calabrio, Inc." },
- { 29989, "Qwaq Inc." },
- { 29990, "John Smith Network Management" },
- { 29991, "Macif" },
- { 29992, "PONT Technology Co.,Ltd" },
- { 29993, "Net Marvellous" },
- { 29994, "CONCORD GmbH" },
- { 29995, "FUSAGx" },
- { 29996, "The Lorentz Group" },
- { 29997, "LavaNet, Inc." },
- { 29998, "Kurashiki Cable Television Co.,Ltd." },
- { 29999, "microC Design SRL" },
- { 30000, "University of Western Sydney" },
- { 30001, "BROWAN COMMUNICATIONS INCORPORATION" },
- { 30002, "FREEPP INCORPORATION" },
- { 30003, "Hiflex GmbH" },
- { 30004, "TerraNua Ltd" },
- { 30005, "Raybit Systems korea, Inc" },
- { 30006, "Mobile Fun" },
- { 30007, "DOB.SK" },
- { 30008, "Bank Austria Real Invest GmbH" },
- { 30009, "Information Industry Company" },
- { 30010, "Embotics Corporation" },
- { 30011, "Itochu Cable System Corp." },
- { 30012, "ipoque GmbH" },
- { 30013, "Den selvejende institution Paul Bargs\0303\0270e Kollegiet" },
- { 30014, "Pecsi Tudomanyegyetem Klinikai Kozpont" },
- { 30015, "KBC Bank" },
- { 30016, "Anel-Elektronik AG" },
- { 30017, "TAG Aviation" },
- { 30018, "FusionIO" },
- { 30019, "Diversified Sales and Service, Inc." },
- { 30020, "Silesian University of Technology" },
- { 30021, "M\0303\0274hlbauer AG" },
- { 30022, "Guangdong Cirrus Sci-tech Development Co., Ltd" },
- { 30023, "ITS-Telecom" },
- { 30024, "In-Tuition Networks Ltd" },
- { 30025, "Markus Widmer" },
- { 30026, "Blue Caravel" },
- { 30027, "Brainfat Networking" },
- { 30028, "Nova CATV, Inc." },
- { 30029, "NENTRON Technology" },
- { 30030, "jamesoff.net" },
- { 30031, "Penguinlabs LTD" },
- { 30032, "Beijing Xintong Huaan Technologies Co. Ltd" },
- { 30033, "Atabyte" },
- { 30034, "IIJ Engineering,Inc. (formerly 'Net Care,Inc.')" },
- { 30035, "Formosa Wireless Systems Corp." },
- { 30036, "Nomad Digital Ltd" },
- { 30037, "Company Extrim pro, Ltd." },
- { 30038, "ALMDUDLER-LIMONADE A. & S. Klein GmbH & Co KG" },
- { 30039, "Topdog-software.com" },
- { 30040, "Tartu University Hospital" },
- { 30041, "Universit\0303\0244t Augsburg" },
- { 30042, "Dynaco Oy" },
- { 30043, "Coral Automa\0303\0247\0303\0243o Municipal" },
- { 30044, "Walter Dorwin Teague Associates, Inc." },
- { 30045, "davidfuchs.ca" },
- { 30046, "rh-tec Business GmbH" },
- { 30047, "WorthTEK" },
- { 30048, "BNC Technologies Co.,Ltd." },
- { 30049, "Acorn Active Media Foundation" },
- { 30050, "Jushri Technologies, Inc" },
- { 30051, "EDICOM (INTERCAMBIO ELECTRONICO DE DATOS Y COM SL)" },
- { 30052, "Agora SA" },
- { 30053, "MDoffice Inc" },
- { 30054, "Untangle Inc." },
- { 30055, "BKK Essanelle" },
- { 30056, "Bando Electronic Communication Co., Ltd." },
- { 30057, "AIO Systems" },
- { 30058, "otaking.se" },
- { 30059, "Alarislabs" },
- { 30060, "sevenstax" },
- { 30061, "Imprimerie Nationale" },
- { 30062, "CRIX International" },
- { 30063, "Kantonsspital Luzern" },
- { 30064, "Jens Kaiser" },
- { 30065, "Arista Networks, Inc. (formerly 'Arastra, Inc.')" },
- { 30066, "Swissdotnet" },
- { 30067, "Imprint Global Pty Ltd" },
- { 30068, "Walker Chandiok Grant Thornton" },
- { 30069, "Candlelight Software" },
- { 30070, "Lufthansa Systems Indonesia" },
- { 30071, "Colby Dillion" },
- { 30072, "The Government of Brunei Darussalam" },
- { 30073, "WYS S.O.C Corporation." },
- { 30074, "Beijing Sharenet Information Technology Co.,Ltd." },
- { 30075, "Humanomed" },
- { 30076, "ATILF - Analyse et Traitement Automatique de la Langue Francaise" },
- { 30077, "clanconley.com" },
- { 30078, "Novella SatComs Limited" },
- { 30079, "Open Mobile Alliance (OMA)" },
- { 30080, "Fraport AG" },
- { 30081, "Philip Morris USA" },
- { 30082, "David Computer Service" },
- { 30083, "Intelleca" },
- { 30084, "1dian.com" },
- { 30085, "Knopad Software SRL" },
- { 30086, "Arinbe Technologies, Inc." },
- { 30087, "NEU-INFO" },
- { 30088, "Wuhan Gewei Electronic Technology Co., Ltd." },
- { 30089, "Ak Kamal ISCC LLP" },
- { 30090, "shaikh" },
- { 30091, "SeaBright Insurance Company" },
- { 30092, "Zavarovalnica Maribor d.d." },
- { 30093, "GEMAC Gesellschaft f\0303\0274r Mikroelektronikanwendung Chemnitz mbH" },
- { 30094, "Beijing US-Sino Diverse Telecom Equipment Co.,Ltd." },
- { 30095, "Kom-Pakt" },
- { 30096, "dataway GmbH" },
- { 30097, "Familie Dieter Baerwolf" },
- { 30098, "BBP AG" },
- { 30099, "MorphoTrust USA (formerly 'L-1 Identity Solutioins, Inc.')" },
- { 30100, "greenBytes Inc." },
- { 30101, "SUNIX Co., Ltd." },
- { 30102, "team Communication Technology Management GmbH" },
- { 30103, "One Reel" },
- { 30104, "ERR" },
- { 30105, "JARS OG" },
- { 30106, "Board of European Students of Technology" },
- { 30107, "SEACON TERMINALS LTD" },
- { 30108, "Xaragua\0302\0256 Enterprise Corporation" },
- { 30109, "CompIT SRL" },
- { 30110, "MDEV Desenvolvimento de Software para Celular Ltda" },
- { 30111, "Pacific NETwork Imaging, Inc." },
- { 30112, "Network Solutions Private Limited" },
- { 30113, "Fornova" },
- { 30114, "Reserved" },
- { 30115, "Damien Degois" },
- { 30116, "Jims Group" },
- { 30117, "Telefield, Inc." },
- { 30118, "Hostdime.com, INC" },
- { 30119, "UNION FENOSA, S.A." },
- { 30120, "Nayatek S.L." },
- { 30121, "scoyo" },
- { 30122, "MdbNet" },
- { 30123, "MaResCom GmbH" },
- { 30124, "ABAJAX" },
- { 30125, "ANDURAS AG" },
- { 30126, "LSI JAPAN CO.,LTD." },
- { 30127, "Deft Labs Inc." },
- { 30128, "Neovest, Inc." },
- { 30129, "Trask solutions" },
- { 30130, "Hyperwave AG" },
- { 30131, "OMA" },
- { 30132, "ANAC" },
- { 30133, "iControl Networks" },
- { 30134, "Bitscape" },
- { 30135, "e-mehlbox.eu" },
- { 30136, "Sharif University of Technology" },
- { 30137, "SHANDONG TRANSPARENT COMMUNICATIONS CO,LTD" },
- { 30138, "Sparkassen Informatik GmbH & Co. KG" },
- { 30139, "AMS Engineering Sticht Gmbh" },
- { 30140, "Advantech B+B SmartWorx s.r.o. (formerly 'Conel s.r.o.')" },
- { 30141, "Landesbetrieb Daten und Information Rheinland-Pfalz" },
- { 30142, "National Magazine Company" },
- { 30143, "DecisionSoft LTD" },
- { 30144, "Kepware Technologies" },
- { 30145, "Active Media Architects, Inc." },
- { 30146, "Dovetail Storage, Inc." },
- { 30147, "Magnus.net" },
- { 30148, "CrossWorld" },
- { 30149, "TECNOVA LTDA" },
- { 30150, "Nizhny Tagil Iron & Steel Works" },
- { 30151, "Zimbabwe Revenue Authority" },
- { 30152, "nLogy s.r.o." },
- { 30153, "Keystone Electronic Solutions" },
- { 30154, "e-Vox" },
- { 30155, "OpenBSD Project" },
- { 30156, "The Positive Internet Company Ltd" },
- { 30157, "Kalopa Research Limited" },
- { 30158, "EMPRESA BRASILEIRA DE TELECOMUNICACOES S A - EMBRATEL" },
- { 30159, "Scientific Games Racing" },
- { 30160, "Insomniac Games, Inc." },
- { 30161, "Orbital Spuds Development, Inc." },
- { 30162, "Farez" },
- { 30163, "Johannes H Laxdal" },
- { 30164, "Radium Network Solutions" },
- { 30165, "Derek Belrose" },
- { 30166, "Blue Ridge Networks, Inc." },
- { 30167, "Tavasti Solutions Oy" },
- { 30168, "dnsee" },
- { 30169, "pragma:s Jan Schlosser" },
- { 30170, "Smart Health Solutions Pty Ltd" },
- { 30171, "NET SPACE Daniel Kiper" },
- { 30172, "OpenGoss Corporation" },
- { 30173, "Convey Plus TC" },
- { 30174, "Deka Works" },
- { 30175, "Jeff Knecht" },
- { 30176, "Hirotoshi Hamada" },
- { 30177, "Geodesic Limited" },
- { 30178, "Martin County School District" },
- { 30179, "Cervantes S.A." },
- { 30180, "PetRays L.P." },
- { 30181, "Public Works Government Services Canada" },
- { 30182, "3G Factory S.A.R.L" },
- { 30183, "KES INC." },
- { 30184, "Gleim Internet, Inc." },
- { 30185, "AWEK microdata" },
- { 30186, "TRINAMIC SOFTWARE FACTORY" },
- { 30187, "HCS GmbH" },
- { 30188, "MB-technology GmbH" },
- { 30189, "Bravura Solutions (UK) Limited" },
- { 30190, "Solera Networks" },
- { 30191, "IPTRADE SA" },
- { 30192, "Veraz Networks" },
- { 30193, "ComdataNetwork, Inc." },
- { 30194, "Egon Frerich" },
- { 30195, "Carlson Wireless Technologies, Inc." },
- { 30196, "Smith Travel Research" },
- { 30197, "kestan.co.uk" },
- { 30198, "Coherent Solutions" },
- { 30199, "Abaca Technology Corporation" },
- { 30200, "ePrize LLC" },
- { 30201, "Metaverse Republic" },
- { 30202, "HCE Engineering" },
- { 30203, "Forschungsverbund Berlin e.V." },
- { 30204, "Faculty of Physics and Applied Informatics, University of Lodz" },
- { 30205, "Sirrix AG security technologies" },
- { 30206, "Invisible Software Ltd" },
- { 30207, "Level 3 Solutions, LLC" },
- { 30208, "Firecode Solu\0303\0247\0303\0265es em Tecnologia LTDA" },
- { 30209, "Universita' Ca' Foscari Venezia" },
- { 30210, "Logalty Servicios de Tercero de Confianza, S.L. (formerly 'Postaltrust, S.L.')" },
- { 30211, "THE CHUNICHI SHIMBUN CO., LTD." },
- { 30212, "ON telecomm" },
- { 30213, "Vertex Pharmaceuticals" },
- { 30214, "CVSDude PTY LTD" },
- { 30215, "Serenity Information Systems" },
- { 30216, "Azolia" },
- { 30217, "Osinet S.A." },
- { 30218, "AltaVoz S.A." },
- { 30219, "Verivue, Inc" },
- { 30220, "Wavestream Corp" },
- { 30221, "UnboundID Corp" },
- { 30222, "Home Credit Finance Ukraine" },
- { 30223, "OOe Gebietskrankenkasse" },
- { 30224, "NCC Hoorn" },
- { 30225, "Cotendo" },
- { 30226, "Mairie de Besan\0303\0247on - France" },
- { 30227, "Channelot Ltd." },
- { 30228, "Visipia" },
- { 30229, "debian-community.org" },
- { 30230, "dimedis GmbH" },
- { 30231, "morphism" },
- { 30232, "www.themaine.net" },
- { 30233, "John Muir Health" },
- { 30234, "NBT Infra" },
- { 30235, "Gordon & Louis Technologies" },
- { 30236, "Desktone Inc." },
- { 30237, "EteVan Technologies co., Ltd." },
- { 30238, "XandMail" },
- { 30239, "Archisys SARL" },
- { 30240, "Vivesta" },
- { 30241, "Jeffrey Ricker LLC" },
- { 30242, "Info Consultoria e Informatica Ltda." },
- { 30243, "network.co.at GmbH" },
- { 30244, "Dazzle" },
- { 30245, "The Washington Post Company" },
- { 30246, "Diventus GmbH" },
- { 30247, "Coopers Peele (France) SARL" },
- { 30248, "Webkuteer" },
- { 30249, "marek.priv.at" },
- { 30250, "Telecom design (France)" },
- { 30251, "CampusLAN Software GmbH" },
- { 30252, "Jetair N.V." },
- { 30253, "Certisign Certificadora Digital S.A." },
- { 30254, "The Main Street America Group" },
- { 30255, "County of San Bernardino" },
- { 30256, "Telecommunication Technologies Ltd." },
- { 30257, "Intrcomm Technology" },
- { 30258, "Xalyo Systems" },
- { 30259, "LWsystems GmbH & Co. KG" },
- { 30260, "Zenitel Netherlands BV" },
- { 30261, "HigherGround, Inc." },
- { 30262, "Cacholong" },
- { 30263, "Klopf" },
- { 30264, "Axiometric, LLC" },
- { 30265, "Hinfox Bt." },
- { 30266, "Inca Digital Printers ltd" },
- { 30267, "sofinco" },
- { 30268, "PENN Warehousing & Distribution, Inc." },
- { 30269, "via donau \0303\0226sterreichische Wasserstra\0303\0237engesellschaft mbH." },
- { 30270, "Microdata Tecnologia Ltda" },
- { 30271, "Netsense" },
- { 30272, "Cache IQ, Inc (formerly 'Storspeed Inc')" },
- { 30273, "Sairyx" },
- { 30274, "Greenfossil Pte Ltd" },
- { 30275, "TeraCortex" },
- { 30276, "OEAMTC" },
- { 30277, "Software Cellular Network Ltd" },
- { 30278, "Peykasa Messageware Co" },
- { 30279, "Gladserv Limited" },
- { 30280, "delta4 business solutions gmbh" },
- { 30281, "AussieHQ Pty Ltd" },
- { 30282, "Hammond Street Developments Pty. Ltd." },
- { 30283, "GRADIOR GROUP a.s." },
- { 30284, "Intersoft" },
- { 30285, "TMT SYSTEM" },
- { 30286, "Tridymedia" },
- { 30287, "Agito Networks Inc." },
- { 30288, "Alog Datacenters do Brasil S/A" },
- { 30289, "Brian W Bush" },
- { 30290, "Vangenechten Packaging" },
- { 30291, "Sujansky & Associates, LLC" },
- { 30292, "Monit24.pl" },
- { 30293, "Coll\0303\0250ge Dunoyer de Segonzac" },
- { 30294, "InnoTrans Communications Inc." },
- { 30295, "I2Net Christian Nordmann" },
- { 30296, "Innovation & Support Centre" },
- { 30297, "The Clockwork Lab" },
- { 30298, "Industrial Control and Communication Limited" },
- { 30299, "SEP Bulgaria JSC" },
- { 30300, "Internetworking & Broadband Consulting Co., Ltd." },
- { 30301, "Invada Records Pty Ltd" },
- { 30302, "NuSuara Technologies Sdn Bhd" },
- { 30303, "KomSens" },
- { 30304, "CHAMBRE D'AGRICULTURE DU BAS-RHIN" },
- { 30305, "ITIS Holdings PLC" },
- { 30306, "SATEL Oy" },
- { 30307, "Invidi Technologies" },
- { 30308, "Clearspring Technologies, Inc." },
- { 30309, "Svenska Linuxf\0303\0266reningen" },
- { 30310, "Remigio Conti" },
- { 30311, "Cartiza Networks" },
- { 30312, "educagri" },
- { 30313, "Indanet AG" },
- { 30314, "Seltec Computers Ltd." },
- { 30315, "Papierfabrik Palm GmbH & Co. KG" },
- { 30316, "Unassigned" },
- { 30317, "First Sensor Technology GmbH" },
- { 30318, "GSoft BG" },
- { 30319, "SmartPropertyManager Ltd" },
- { 30320, "Exeltech" },
- { 30321, "Unison Technologies" },
- { 30322, "International Broadband Electric Communications, Inc. (IBEC)" },
- { 30323, "Eigen LLC" },
- { 30324, "Interface Masters, Inc." },
- { 30325, "Grin AB" },
- { 30326, "ShoreGroup, Inc." },
- { 30327, "Metro Servers Inc." },
- { 30328, "Travis Hein" },
- { 30329, "CONRAC GmbH" },
- { 30330, "Atom Consultants Co.,Ltd." },
- { 30331, "Octant Informatique" },
- { 30332, "eXXcellent solutions" },
- { 30333, "GRIPS - Gillen & Partner" },
- { 30334, "Korscient Consulting Limited" },
- { 30335, "DXI Networks" },
- { 30336, "Eirteic Consulting Ltd" },
- { 30337, "Luceat Spa" },
- { 30338, "Smart421" },
- { 30339, "National Center of Digital Signature Authentication - Ministry of Information and Communications of Viet Nam" },
- { 30340, "Moderntimes" },
- { 30341, "Deltacast" },
- { 30342, "Pellucid Consulting LLC" },
- { 30343, "Middle East Education through Technology" },
- { 30344, "Possimo Technologies Sdn Bhd" },
- { 30345, "TMS, LLC" },
- { 30346, "IT & Design Solutions GmbH" },
- { 30347, "Bekatul Port" },
- { 30348, "W-I-E-S-E-R.net" },
- { 30349, "Kvant-Efir" },
- { 30350, "Caucho Technology, Inc." },
- { 30351, "Philip Gladstone" },
- { 30352, "sneudert.de" },
- { 30353, "Symmetria Hungary Ltd." },
- { 30354, "EPiQ Life Science AB" },
- { 30355, "Digital Research Services LLC" },
- { 30356, "Domeo BV" },
- { 30357, "Unix-network" },
- { 30358, "Pro:Atria Ltd" },
- { 30359, "Tango Networks" },
- { 30360, "Trustwave Holdings, Inc." },
- { 30361, "Triple Play Communications" },
- { 30362, "Brandwidth" },
- { 30363, "N.V. Devoteam Telecom & Media" },
- { 30364, "NewMedia Publications Ltd" },
- { 30365, "INEO SUEZ Group - INEO SYSTRANS" },
- { 30366, "M-Tech" },
- { 30367, "Dragonfly Technologies Pty Ltd" },
- { 30368, "Whitewall Networks" },
- { 30369, "Grupa Lotos S.A." },
- { 30370, "GIHAR LTD" },
- { 30371, "Financial Link Sdn Bhd" },
- { 30372, "SANBlaze Technology, Inc." },
- { 30373, "Wallix" },
- { 30374, "Opencode Systems Ltd" },
- { 30375, "Innovature Labs" },
- { 30376, "Outright Solutions" },
- { 30377, "Baseblack Ltd" },
- { 30378, "True Corporation PCL" },
- { 30379, "Southcoast Health System" },
- { 30380, "Aggienerds" },
- { 30381, "FRIENDSHIP-SYSTEMS" },
- { 30382, "Kristoff Kiefer" },
- { 30383, "ViaCom Informatics Ltd." },
- { 30384, "Interjato Telecom" },
- { 30385, "CAVOK Software Systems GmbH" },
- { 30386, "Software Service Christoph Bach" },
- { 30387, "Singlesnet.com" },
- { 30388, "nobisCum" },
- { 30389, "Hangzhou Digicast Technology Co., Ltd." },
- { 30390, "City of Garden Grove" },
- { 30391, "Alex Potter Consulting" },
- { 30392, "Globolog GmbH" },
- { 30393, "Cibenix" },
- { 30394, "Kyoto University" },
- { 30395, "Alhambra-Eidos" },
- { 30396, "Cambridge Consultants" },
- { 30397, "TELERAD SA" },
- { 30398, "Leader Technologies" },
- { 30399, "LogiSync LLC" },
- { 30400, "Red Condor, Inc." },
- { 30401, "Fedora Project" },
- { 30402, "Halsted Surgery" },
- { 30403, "Secure Computing Networks" },
- { 30404, "never.no AS" },
- { 30405, "ClaimLynx, Inc" },
- { 30406, "Aubesoft Inc." },
- { 30407, "CRISALID SARL" },
- { 30408, "Ulrich Boddenberg Informatique" },
- { 30409, "FTR Pty Ltd" },
- { 30410, "Jozef Hatala" },
- { 30411, "Parker Hannifin Corp" },
- { 30412, "Aeroflex Incorporated" },
- { 30413, "Channel Islands Stock Exchange LBG" },
- { 30414, "OBJECT Sistemas Multimidia Ltda" },
- { 30415, "PANSKY TECHOLOGY CORPORATION CHENGDU GROUP" },
- { 30416, "Latenter" },
- { 30417, "RLG Informatica" },
- { 30418, "Jewelry Television" },
- { 30419, "Novgorod State University" },
- { 30420, "Softex Insoporated" },
- { 30421, "NAVICON A/S" },
- { 30422, "Fatwire Corporation" },
- { 30423, "Centene Corporation" },
- { 30424, "Oak Scientific, LLC" },
- { 30425, "Innovative Communications Engineering" },
- { 30426, "Universal Solutions Group, Inc." },
- { 30427, "2inches" },
- { 30428, "Telekom Research & Development Sdn Bhd" },
- { 30429, "Amnafzar Co." },
- { 30430, "carnero.ca" },
- { 30431, "Telvent Environment, S.A." },
- { 30432, "Open System Solutions (UK) Limited" },
- { 30433, "Dah Sing Life Assurance Company Limited" },
- { 30434, "Satelcom Oy" },
- { 30435, "Dalarna University" },
- { 30436, "Aralia Systems Ltd." },
- { 30437, "Fortna, Inc" },
- { 30438, "capecom GbR" },
- { 30439, "layerX Technologies" },
- { 30440, "PROXIFLEX" },
- { 30441, "MATRA Systems (UK)" },
- { 30442, "Adaptive Spectrum and Signal Alignment, Inc." },
- { 30443, "Schooner Information Technology, Inc." },
- { 30444, "2-Bit Programmers" },
- { 30445, "Genie Technology Management" },
- { 30446, "Mobile Technika, Inc." },
- { 30447, "Pete Gooch" },
- { 30448, "S\0303\0266rl\0303\0266v Holding" },
- { 30449, "Institute of Psychology and Pedagogics of Development" },
- { 30450, "Teleglobe Canada ULC" },
- { 30451, "CPEGM" },
- { 30452, "Xoft, Inc." },
- { 30453, "Kannel Software Foundation" },
- { 30454, "Santa Barbara City College" },
- { 30455, "Wm Morrison Supermarkets PLC" },
- { 30456, "sugat.com.np" },
- { 30457, "CYGNET Technology BV" },
- { 30458, "Thomas Duclos Software" },
- { 30459, "EchoStorm Worldwide, LLC" },
- { 30460, "Perfomix Technologies Intl(P) Ltd" },
- { 30461, "Radley Network Technologies CC" },
- { 30462, "Freifunk Halle" },
- { 30463, "Supridatta Teleinformatica Ltda." },
- { 30464, "Tecnosistemas Inc." },
- { 30465, "Visage Mobile, Inc" },
- { 30466, "Privantis SA" },
- { 30467, "Carlson Wagonlit Travel" },
- { 30468, "Solid Technologies, Inc" },
- { 30469, "Synacor Inc" },
- { 30470, "CyberTrails" },
- { 30471, "TwoPiRadian Infotech Private Limited" },
- { 30472, "CityLink, Ltd." },
- { 30473, "Steropes Technologies Limited" },
- { 30474, "CJSC \"InCore\"" },
- { 30475, "Intra2net AG" },
- { 30476, "BIS" },
- { 30477, "gig mbh berlin" },
- { 30478, "Enventis" },
- { 30479, "GlobeStar Systems Inc." },
- { 30480, "DotLibre" },
- { 30481, "HySky Communications" },
- { 30482, "Omnes Loquantur Limited" },
- { 30483, "Virtual Switching Consultancy Limited" },
- { 30484, "OPTeam SA" },
- { 30485, "RTC-Siberia Co., Ltd." },
- { 30486, "thomas kobienia" },
- { 30487, "Hydra Labs" },
- { 30488, "Boardlink Group Limited" },
- { 30489, "FAMIPOW" },
- { 30490, "Dtella Labs" },
- { 30491, "Helping Hand PC Services & Networking, Inc." },
- { 30492, "Hypertek Inc." },
- { 30493, "Digitek spa" },
- { 30494, "Microlink Telecom" },
- { 30495, "RoundTrip Systems" },
- { 30496, "E-Smart Systems d.o.o." },
- { 30497, sminmpec_unknown }, /* (Added by Wireshark) */
- { 30498, "AeroScout" },
- { 30499, "Design 2000 Pvt Ltd" },
- { 30500, "Forca A/S" },
- { 30501, "Institute for Networking Technology" },
- { 30502, "The Norwegian Polar Institute" },
- { 30503, "Bastart" },
- { 30504, "Punctual Software Inc." },
- { 30505, "Swiss Life Deutschland Operations GmbH" },
- { 30506, "ooma Inc." },
- { 30507, "Extreme Copper, Incorporated" },
- { 30508, "Medavie Blue Cross" },
- { 30509, "Shenzhen Leagsoft Technology Co., Ltd.." },
- { 30510, "Bestwiz Softwarw Development (Dalian) Co.,Ltd." },
- { 30511, "Arts Alliance Media" },
- { 30512, "ATEIS" },
- { 30513, "Ford Motor Company" },
- { 30514, "Lav\0303\0255nia Tavares" },
- { 30515, "m7 evolution" },
- { 30516, "oclane" },
- { 30517, "Zoot Enterprises, Inc." },
- { 30518, "CoolIT Systems Inc." },
- { 30519, "Wieldim" },
- { 30520, "IAESTE Austria" },
- { 30521, "Collab" },
- { 30522, "kludge.ca" },
- { 30523, "Taichung Veterans General Hospital" },
- { 30524, "Intersoft Electronics" },
- { 30525, "H&S Ventures, LLC" },
- { 30526, "Astec Solutions" },
- { 30527, "Mochi Media, Inc." },
- { 30528, "V.Saint-Denis" },
- { 30529, "Vkernel Corporation" },
- { 30530, "INTI Electronica e Informatica" },
- { 30531, "LEANDRO DA SILVA MENDES INFORMATICA ME" },
- { 30532, "Alox" },
- { 30533, "DASANCNS" },
- { 30534, "Tajinc.ORG LLC" },
- { 30535, "Alphasoft GmbH" },
- { 30536, "BMTI" },
- { 30537, "Welsh Blood Service" },
- { 30538, "webLyzard" },
- { 30539, "Sappi Fine Paper" },
- { 30540, "Zymeworks Inc." },
- { 30541, "Exacq Technologies, Inc." },
- { 30542, "Komes Co. Ltd." },
- { 30543, "QuartzNet" },
- { 30544, "iTAS Technology Corp." },
- { 30545, "Akademia Podlaska" },
- { 30546, "JLA Ltd" },
- { 30547, "Institute of Physics of the ASCR, v. v. i." },
- { 30548, "Alberta Blue Cross" },
- { 30549, "Merli dr. Clizio Consultant" },
- { 30550, "Konexxo GmbH" },
- { 30551, "Transtruct Foundation" },
- { 30552, "MicroBlade, Inc." },
- { 30553, "LincWare" },
- { 30554, "Mitsubishi Space Software Co.,Ltd." },
- { 30555, "mikhailelias.net" },
- { 30556, "King Faisal University" },
- { 30557, "Sapphire Computer Systems (UK) Ltd" },
- { 30558, "Ticketcorner AG" },
- { 30559, "Kr\0303\0274ger Network Training & Consulting" },
- { 30560, "Pumpkin 3D" },
- { 30561, "expact.it" },
- { 30562, "Universidad de Montemorelos, A. C." },
- { 30563, "Blackwave Inc." },
- { 30564, "Algarroba" },
- { 30565, "GTS Nextra" },
- { 30566, "Dr. Gregory M. Stone & Associates" },
- { 30567, "Port One Internet, Inc." },
- { 30568, "Msona Limited" },
- { 30569, "Globitel" },
- { 30570, "Arch Red Oy" },
- { 30571, "Mesto Domazlice" },
- { 30572, "TDC-NetDesign A/S (formerly 'NetDesign A/S')" },
- { 30573, "Photon Meissener Technologies GmbH" },
- { 30574, "Fixma S.L." },
- { 30575, "castLabs GmbH" },
- { 30576, "Wills and co Stockbrokers" },
- { 30577, "Opus Notion" },
- { 30578, "T Proje Muhendislik Dis Tic Ltd. Sti." },
- { 30579, "Arab Bank (Switzerland)" },
- { 30580, "Peninsula Engineering Solutions Inc" },
- { 30581, "Appriver LLC" },
- { 30582, "RSP Systems A/S" },
- { 30583, "AhMuseIndustry.Net, LLC" },
- { 30584, "Allegory Software, Inc." },
- { 30585, "SmartShare Systems" },
- { 30586, "Xytronix Research & Design, Inc." },
- { 30587, "JumpGen Systems, LLC" },
- { 30588, "Euphonix, Inc" },
- { 30589, "HIS Technologies (HK) Limited" },
- { 30590, "\0303\0226sterreichische Pensionsversicherungsanstalt" },
- { 30591, "Hetzner Pty Ltd" },
- { 30592, "Nico Roeser" },
- { 30593, "Spyderweb Consulting" },
- { 30594, "LSTC" },
- { 30595, "Xenatech Co Ltd (South Korea)" },
- { 30596, "Unioncast" },
- { 30597, "Kan sp. z o.o." },
- { 30598, "H.C. Starck GmbH" },
- { 30599, "SimplisIP" },
- { 30600, "Deltatec" },
- { 30601, "podhart.net" },
- { 30602, "Tyson Foods, Inc." },
- { 30603, "JXX Technologies" },
- { 30604, "Uhland" },
- { 30605, "Landmark Digital Services" },
- { 30606, "eTour" },
- { 30607, "Saskatchewan Blue Cross" },
- { 30608, "FACULDADE NOVAFAPI" },
- { 30609, "Temboo, Inc." },
- { 30610, "UVT Unternehmensberatung f\0303\0274r Verkehr und Technik GmbH" },
- { 30611, "Maessa Telecontrol" },
- { 30612, "EK3 Technologies Inc." },
- { 30613, "ATIS" },
- { 30614, "Expandium SAS" },
- { 30615, "Creative Technology Ltd." },
- { 30616, "MagmaTec (Pty) Ltd" },
- { 30617, "Advanced Digital Systems Inc. (ADS)" },
- { 30618, "Rostocker Freizeitzentrum e.V." },
- { 30619, "TOSHIBA MITSUBISHI-ELECTRIC INDUSTRIAL SYSTEMS CORPORATION" },
- { 30620, "Sloka Telecom Private Limited" },
- { 30621, "Global Holdings Group" },
- { 30622, "Centre des technologies de l'information de l'Etat , Luxembourg (formerly 'Centre Informatique de l'Etat , Luxembourg')" },
- { 30623, "Federal Signal Corporation, Integrated Systems" },
- { 30624, "ALALOOP SAS" },
- { 30625, "tollwerk sinnesnavigatoren" },
- { 30626, "VeriSign" },
- { 30627, "bitGate data systems GmbH" },
- { 30628, "NIDEC CORPORATION" },
- { 30629, "ArchCyber Technology Co. Ltd." },
- { 30630, "AfriNIC Ltd." },
- { 30631, "Terra" },
- { 30632, "CJSC Kyivstar GSM" },
- { 30633, "Universitaet fuer Musik und darstellende Kunst Wien" },
- { 30634, "Eddahbi Karim" },
- { 30635, "II. gimnazija Maribor" },
- { 30636, "AMT DATA" },
- { 30637, "Haagenti Group Inc." },
- { 30638, "Larry Sturtz" },
- { 30639, "Smart Education sp. z.o.o" },
- { 30640, "Unlimi-Tech Software Inc" },
- { 30641, "AJA Video Systems, Inc." },
- { 30642, "AOptix Technologies, Inc." },
- { 30643, "Databits" },
- { 30644, "Amir Rezghian" },
- { 30645, "Entry Point, LLC" },
- { 30646, "NYCLIX" },
- { 30647, "Value Team" },
- { 30648, "iSupportISP, LLC" },
- { 30649, "INetU, Inc." },
- { 30650, "Para Systems, Inc." },
- { 30651, "Precognet" },
- { 30652, "GlenMarshall.us" },
- { 30653, "Comability" },
- { 30654, "College of Policy Science, Ritsumeikan University" },
- { 30655, "Diamond Valley College" },
- { 30656, "lancehendrix.com" },
- { 30657, "Eaton-Williams" },
- { 30658, "BTC Business Technology Consulting AG" },
- { 30659, "Scilla Systems Inc." },
- { 30660, "Onsite Media Network Inc." },
- { 30661, "zubData" },
- { 30662, "Tara Systems GmbH" },
- { 30663, "Tall Umbrella" },
- { 30664, "P. Bryan Consulting Inc." },
- { 30665, "APG Algemene Pensioen Groep N.V." },
- { 30666, "Online Rewards" },
- { 30667, "Port40" },
- { 30668, "BrControls" },
- { 30669, "Research for Science, Art and Technology (RFSAT) Ltd" },
- { 30670, "Vololink Pty Ltd" },
- { 30671, "Crocus-com Company" },
- { 30672, "Ancerno Ltd." },
- { 30673, "EDELCA" },
- { 30674, "NTS Workspace AG" },
- { 30675, "Wayne State University School of Medicine" },
- { 30676, "D-TA Systems Inc." },
- { 30677, "C4i Security LLC" },
- { 30678, "Nomovok Ltd" },
- { 30679, "Xicom Technology" },
- { 30680, "City of Walsenburg, Colorado" },
- { 30681, "Donald Swauger Consulting" },
- { 30682, "davidrobin.net" },
- { 30683, "quadium.net" },
- { 30684, "YAZAKI Corporation" },
- { 30685, "TSTENG" },
- { 30686, "N-iTUS" },
- { 30687, "CoSolIT" },
- { 30688, "ShenZhen DaShi Technology Co.,LTD" },
- { 30689, "Planet Controls Pty Ltd" },
- { 30690, "Institute of Computational Mathematics and Mathematical Geophysics SB RAS" },
- { 30691, "Wapice Ltd" },
- { 30692, "WS Atkins PLC" },
- { 30693, "global infinipool GmbH" },
- { 30694, "FaxBack, Inc." },
- { 30695, "Chrysler Financial" },
- { 30696, "Deimos Engenharia, S.A." },
- { 30697, "CPC (UK)" },
- { 30698, "n1ety" },
- { 30699, "Ubipart Ltd" },
- { 30700, "Telefonia Dialog SA" },
- { 30701, "Norwegian University of Life Sciences (UMB)" },
- { 30702, "A2E Technologies" },
- { 30703, "Oberthur Technologies" },
- { 30704, "Dipl.-Ing. Eberhard Iglhaut" },
- { 30705, "SoundBite Communications" },
- { 30706, "OpenDNS, LLC" },
- { 30707, "Solaiemes" },
- { 30708, "Stej - Stefan & Jens Internet Services AB" },
- { 30709, "NCCI Holdings, Inc" },
- { 30710, "IT Soft Ltd." },
- { 30711, "Coolman, Inc" },
- { 30712, "BDO Seidman, LLP" },
- { 30713, "Oopss.org" },
- { 30714, "Harry Wettke Consulting" },
- { 30715, "Q-layer" },
- { 30716, "Alston & Bird LLP" },
- { 30717, "Odysseyware Inc." },
- { 30718, "TSB Bank Ltd" },
- { 30719, "Elektroservice" },
- { 30720, "Etone" },
- { 30721, "Agenor d.o.o." },
- { 30722, "ProSoft Technology" },
- { 30723, "FreeCode International Inc." },
- { 30724, "Vietnam Commercial Computing and Communication" },
- { 30725, "all included software gmbh" },
- { 30726, "fj3.us Enterprises" },
- { 30727, "SNIX/net International" },
- { 30728, "Siltanet" },
- { 30729, "SLM Corporation" },
- { 30730, "Seanodes" },
- { 30731, "BODET S.A" },
- { 30732, "NetSocket, Inc." },
- { 30733, "Umpqua Bank" },
- { 30734, "Florian Sailer" },
- { 30735, "BLUECOARA Networks" },
- { 30736, "Kyoeisangyo corp." },
- { 30737, "Servicios Tecnicos Agrupados S.A." },
- { 30738, "Optenet" },
- { 30739, "Jason Antman" },
- { 30740, "Assyst Gesellschaft f\0303\0274r Automatisierung Software und Systeme mbH" },
- { 30741, "Configo Systems GmbH" },
- { 30742, "Glimmerglass Networks Inc." },
- { 30743, "Global Village Telecom" },
- { 30744, "Mississippi River Maritime Association" },
- { 30745, "Open Channel Software" },
- { 30746, "Opensolutions GmbH & Co. KG" },
- { 30747, "THR Systems" },
- { 30748, "Raumtex Biehl" },
- { 30749, "Marabu EDV -Beratung und -Service GmbH" },
- { 30750, "Mesh City Wireless" },
- { 30751, "Pentadyne Power Corporation" },
- { 30752, "INFOGROUP S.p.A:" },
- { 30753, "University of Tsukuba" },
- { 30754, "Erik Abele Technology Consulting" },
- { 30755, "faultinjection.net" },
- { 30756, "CodersApple.com" },
- { 30757, "FAR NETWORKS SRL" },
- { 30758, "Comtech Systems, Inc." },
- { 30759, "ShowSys" },
- { 30760, "ELECTRO STANDARDS LABORATORIES" },
- { 30761, "Telavista B.V." },
- { 30762, "Mbira Technologies" },
- { 30763, "GlassFish Networks" },
- { 30764, "QlikTech" },
- { 30765, "GAMA V2" },
- { 30766, "Tomas Shulman" },
- { 30767, "Full Spectrum Inc." },
- { 30768, "Coll\0303\0250ge de France" },
- { 30769, "Citec S.p.A." },
- { 30770, "Alberto Storch" },
- { 30771, "HealthPlus of Michigan" },
- { 30772, "ProCom Professional Communication & Service GmbH" },
- { 30773, "FlyCatcher" },
- { 30774, "Anthena Technology, Inc." },
- { 30775, "XControl Sistemas & Soluciones Ltd." },
- { 30776, "Dronas 2002, S.L.U." },
- { 30777, "Cymotec" },
- { 30778, "Murilo Fujita" },
- { 30779, "Apelon, Inc" },
- { 30780, "Charles McCrobie" },
- { 30781, "Infonova Consultores" },
- { 30782, "HiliSoft" },
- { 30783, "IceCell ehf" },
- { 30784, "Fink Consulting GmbH" },
- { 30785, "Bitfrost AS" },
- { 30786, "Defne" },
- { 30787, "Global Networks Switzerland AG" },
- { 30788, "VScape" },
- { 30789, "Market Technologies, Inc." },
- { 30790, "Cortex Informatica" },
- { 30791, "brass Media Inc." },
- { 30792, "Huber Verlag f\0303\0274r Neue Medien GmbH" },
- { 30793, "Ingram Book Co." },
- { 30794, "Platinumtel Communications" },
- { 30795, "Zeltiq Aesthetics, Inc." },
- { 30796, "Videon Central, Inc." },
- { 30797, "elconas" },
- { 30798, "Delta Lambda Phi National Social Fraternity" },
- { 30799, "SkyNet Community VPN" },
- { 30800, "Bee Ware SA" },
- { 30801, "IGUS-ITS GmbH" },
- { 30802, "FireScope, Inc." },
- { 30803, "Vyatta, Inc." },
- { 30804, "Lattice Limited" },
- { 30805, "Solegy LLC" },
- { 30806, "ipcenter.at" },
- { 30807, "Franz Krainer - netal" },
- { 30808, "Sun International Management Limited" },
- { 30809, "PacketOps" },
- { 30810, "Universitaet Bremen - Fachbereich 3" },
- { 30811, "Herley-CTI" },
- { 30812, "ObjectTel, Inc." },
- { 30813, "Advanced Telecom Technologies" },
- { 30814, "Institut fran\0303\0247ais de recherche pour l'exploitation de la mer" },
- { 30815, "Intecna Soluciones" },
- { 30816, "escape studio" },
- { 30817, "illuminate Solutions" },
- { 30818, "Powerset, Inc." },
- { 30819, "software security networks - Lukas Gradl" },
- { 30820, "Fighting Penguin Business Systems" },
- { 30821, "Cape Cod Sensors" },
- { 30822, "General Conference of Seventh-day Adventists" },
- { 30823, "Akimeka" },
- { 30824, "SH Solutions" },
- { 30825, "CentraComm Communications, Ltd." },
- { 30826, "SmartOptics AS" },
- { 30827, "RIZ-Transmitters Co. (formerly 'RIZ ODASILJACI d.d.')" },
- { 30828, "Colfax Corporation" },
- { 30829, "United Technologists Europe Limited (UTEL)" },
- { 30830, "G & L Geissend\0303\0266rfer & Leschinsky GmbH" },
- { 30831, "Network Center of Tianjin University" },
- { 30832, "CompuCredit Corporation" },
- { 30833, "Clearspeed Technology plc" },
- { 30834, "VirtueFusion" },
- { 30835, "Blue Box Group, LLC" },
- { 30836, "WINGServers" },
- { 30837, "Edge Velocity Corporation" },
- { 30838, "Cash America Net of Illinois, LLC" },
- { 30839, "Skidmore College" },
- { 30840, "Replify Ltd" },
- { 30841, "Astase" },
- { 30842, "APINC (Association Pour l'Internet Non Commercial)" },
- { 30843, "Blogreen" },
- { 30844, "Lucas IT Services" },
- { 30845, "Mechron Power Systems" },
- { 30846, "IPsmarx Technology Inc." },
- { 30847, "9Star Research, Inc." },
- { 30848, "\0342\0200\0234SITRONICS Smart Technologies\0342\0200\0235, LLC" },
- { 30849, "Magellan Netzwerke GmbH" },
- { 30850, "The University of Hong Kong" },
- { 30851, "Accolm" },
- { 30852, "Knipp Medien und Kommunikation GmbH" },
- { 30853, "Mikro V\0303\0246rkstedet" },
- { 30854, "Heinlein Support GmbH" },
- { 30855, "Geckologic GmbH" },
- { 30856, "Bandwidth.com, Inc." },
- { 30857, "Data Device Corporation" },
- { 30858, "Mobile News Channel S.A." },
- { 30859, "E-Solutions" },
- { 30860, "Betgenius" },
- { 30861, "Venture Craft Networks" },
- { 30862, "Nancy Universite" },
- { 30863, "Samsung Electro-Mechanics Co., LTD." },
- { 30864, "CD-adapco" },
- { 30865, "Cilantro Cafe" },
- { 30866, "ID2go IT-solutions" },
- { 30867, "Volksmission entschiedener Christen e.V." },
- { 30868, "Kansas City Web Repair Co." },
- { 30869, "Weiland Associates, Inc." },
- { 30870, "InterRed GmbH" },
- { 30871, "Luce Forward Hamilton and Scripps LLP" },
- { 30872, "Uniloc USA" },
- { 30873, "Confident, Inc." },
- { 30874, "Tuneology" },
- { 30875, "InnoDomus" },
- { 30876, "Divmod, Inc." },
- { 30877, "Giogio IT" },
- { 30878, "Panacea Vision Co. LTD" },
- { 30879, "Pavleck LLC" },
- { 30880, "Chaos Computer Club M\0303\0274nchen e.V." },
- { 30881, "ELyc\0303\0251e S.A.S." },
- { 30882, "Nanjing Xian Zhi Lu Technology Co.,Ltd." },
- { 30883, "Correlix Inc." },
- { 30884, "Covertix" },
- { 30885, "Rookie Inc." },
- { 30886, "Sichuan Jiuzhou Electronic Technology Co.,Ltd" },
- { 30887, "Alfred KUHSE GmbH" },
- { 30888, "cittadino GmbH" },
- { 30889, "Valero Energy Corporation" },
- { 30890, "Institut de Recherche en Ophtalmologie" },
- { 30891, "Gramant" },
- { 30892, "Mirada PLC" },
- { 30893, "CJSC Goodwin" },
- { 30894, "INTRA-SYS GmbH" },
- { 30895, "antonis.mobi" },
- { 30896, "Knitebane.net" },
- { 30897, "McDonald's Corporation" },
- { 30898, "NetworkedAssets GmbH" },
- { 30899, "Montana State University" },
- { 30900, "ipWorks Co., Ltd." },
- { 30901, "UNITED INFORMATION TECHNOLOGY CO.LTD" },
- { 30902, "GoBGK" },
- { 30903, "Registru Centras" },
- { 30904, "Radius Sweden AB" },
- { 30905, "INNOVA S.A." },
- { 30906, "IFS Ing.-Vertriebsbuero f\0303\0274r EDV Softwaretechnik GmbH" },
- { 30907, "Paradigm Communication Systems Ltd" },
- { 30908, "RtVision, Inc." },
- { 30909, "wbb wireless" },
- { 30910, "WS Live, LLC" },
- { 30911, "Christopher Hubbard" },
- { 30912, "Indent Solutions LLC" },
- { 30913, "UMC ELECTRONICS CO., LTD." },
- { 30914, "Oliver Oehme EDV-Service GmbH" },
- { 30915, "Beijing Shengtian Engineering Design&Consult Inc. (bjst)" },
- { 30916, "TeamQuality" },
- { 30917, "jillstephens.org" },
- { 30918, "Catatrepa, S.A." },
- { 30919, "Unipier Ltd." },
- { 30920, "Scania Infomate" },
- { 30921, "john horton consultancy ltd" },
- { 30922, "Telsasoft" },
- { 30923, "Max-Planck-Institute for Mathematics in the Sciences" },
- { 30924, "Jantronics" },
- { 30925, "Robust Solutions LLC" },
- { 30926, "flexmedia.com.tw" },
- { 30927, "Mainova AG" },
- { 30928, "Loycon s.c." },
- { 30929, "Schuberg Philis" },
- { 30930, "Billiamware SW" },
- { 30931, "Sheldon Networks Inc" },
- { 30932, "Epicenter Inc" },
- { 30933, "nick125" },
- { 30934, "STECO Ltd" },
- { 30935, "Railway Equipment Company" },
- { 30936, "Texas State University" },
- { 30937, "Communications-Electronics Solutions Pty Ltd" },
- { 30938, "N8 Identity Corp." },
- { 30939, "Embrapa Gado de Corte" },
- { 30940, "SC FITS SRL" },
- { 30941, "iFACTORY Consulting" },
- { 30942, "Global IP Solutions, Inc." },
- { 30943, "MultiQ Products AB" },
- { 30944, "PCMS Group PLC" },
- { 30945, "Chengdu Guangda Electronic&Telecommunication Technology Development Co., Ltd." },
- { 30946, "Department of Computer Engg." },
- { 30947, "YAMAKI ELECTRIC CORPORATION" },
- { 30948, "Cloudmark, Inc." },
- { 30949, "Aha! Software" },
- { 30950, "Transneptune" },
- { 30951, "N Green" },
- { 30952, "CONSTALANT JSC" },
- { 30953, "Novotronik GmbH" },
- { 30954, "IDS services" },
- { 30955, "Flavio Poletti" },
- { 30956, "yTech GmbH" },
- { 30957, "WHP International SAS" },
- { 30958, "Slavenet" },
- { 30959, "ZhongLianTong electronics corporation, Ltd" },
- { 30960, "Innotube, Inc." },
- { 30961, "RedShift Inter Networking" },
- { 30962, "Denis Knauf" },
- { 30963, "HUTON" },
- { 30964, "ZLGMCU" },
- { 30965, "University \"Dunarea de Jos\" Galati" },
- { 30966, "SHENZHEN CLEVER ELECTRONIC CO.,LTD." },
- { 30967, "VVAAQIS" },
- { 30968, "For Sale Digital Internet-Agentur GmbH" },
- { 30969, "2MI Tecnologia" },
- { 30970, "IC Plus Corp." },
- { 30971, "ALEXON CO.,LTD." },
- { 30972, "College of Lake County" },
- { 30973, "RightsAssist, LLC." },
- { 30974, "kitASP" },
- { 30975, "cvicse Ltd." },
- { 30976, "Netezza Inc" },
- { 30977, "SPINLOCK d.o.o." },
- { 30978, "Cordium Links, LLC" },
- { 30979, "E.C.O. Institut f\0303\0274r \0303\0226kologie" },
- { 30980, "Krazan and Associates, Inc" },
- { 30981, "MagtiCom LTD" },
- { 30982, "Jacobs University Bremen" },
- { 30983, "Gurulabs.it" },
- { 30984, "GNS Systems GmbH" },
- { 30985, "Gadgets & Technology Solutions LLC" },
- { 30986, "Paymetric Inc." },
- { 30987, "Norpak Corporation" },
- { 30988, "PowerFile, Inc" },
- { 30989, "Hiscox Plc" },
- { 30990, "Food for the Hungry" },
- { 30991, "PCS do Brasil Ltda" },
- { 30992, "Wroc\0305\0202aw University of Economics" },
- { 30993, "Sure3 Networks, LLC" },
- { 30994, "SSB Progetti srl" },
- { 30995, "WebMessenger, Inc." },
- { 30996, "BlackMesh" },
- { 30997, "Telecom South America S/A" },
- { 30998, "Fikus Development Corp." },
- { 30999, "Rohati Systems, Inc." },
- { 31000, "stelcom" },
- { 31001, "secomicon GmbH" },
- { 31002, "COSI" },
- { 31003, "China Pacific Insurance (Group) Company Limited" },
- { 31004, "Nautile SARL" },
- { 31005, "ODS-Medical GmbH" },
- { 31006, "EnergoData" },
- { 31007, "Ikse.net" },
- { 31008, "Business & Decision" },
- { 31009, "PRECISION ELECTRONICS LTD." },
- { 31010, "Cymphonix Corp" },
- { 31011, "Enterprise Management Consulting Ltd." },
- { 31012, "Home Works S.p.A." },
- { 31013, "School District of Philadelphia" },
- { 31014, "FXtion Limited" },
- { 31015, "Nalco Company" },
- { 31016, "Socrata, Inc." },
- { 31017, "tele.sjb.partners AG" },
- { 31018, "HeLi NET iTK" },
- { 31019, "Tecal Engenharia Ltda" },
- { 31020, "Teachers Credit Union" },
- { 31021, "Nstein Technologies Inc." },
- { 31022, "Sun&seeds Solutions S.L." },
- { 31023, "Veeam Software" },
- { 31024, "Swiss Reinsurance Company" },
- { 31025, "NPAI SA" },
- { 31026, "Gil Leduc Industries" },
- { 31027, "SyTech Corporation" },
- { 31028, "Onse telecom corporation" },
- { 31029, "HYUNDAI Digital Technology Co.,Ltd" },
- { 31030, "Voipex Limited" },
- { 31031, "VO2 Labs" },
- { 31032, "jcsbk" },
- { 31033, "Elodig" },
- { 31034, "Schleifenbauer Products BV" },
- { 31035, "Haniriito Co.,Ltd." },
- { 31036, "Svyaz Engineering M JSC" },
- { 31037, "Luxms Inc." },
- { 31038, "Next Generation Creative LLC" },
- { 31039, "JinniWare Software" },
- { 31040, "Doze.net" },
- { 31041, "TZ Communications Ltd" },
- { 31042, "Uny IT B.V." },
- { 31043, "Eclipse Options (HK) Ltd." },
- { 31044, "Alfresco Software Ltd." },
- { 31045, "Fry Consulting, Inc." },
- { 31046, "Collogia Unternehmensberatung AG" },
- { 31047, "Aptilon Holdings Inc" },
- { 31048, "Art Of Mobile" },
- { 31049, "Midtronics Inc." },
- { 31050, "CyT Comunicaciones y Telem\0303\0241tica S.R.L" },
- { 31051, "Mojix Inc." },
- { 31052, "Liberty Alliance" },
- { 31053, "Evolved Intelligence" },
- { 31054, "TTech" },
- { 31055, "gfsb Gesellschaft fuer Systemberatung mbH" },
- { 31056, "Thunderbird Resorts" },
- { 31057, "Ergowells" },
- { 31058, "Teragauge" },
- { 31059, "Known Star (Beijing) Kiosks Co.. LTD" },
- { 31060, "Video Internet Technologies LTD." },
- { 31061, "Cheops Elektronik Handels- und Fertigungs KG" },
- { 31062, "Aeracode" },
- { 31063, "Daniel Saul" },
- { 31064, "Optimal Satcom, Inc." },
- { 31065, "Toyo Electronics Corp." },
- { 31066, "GSP - Loteamentos" },
- { 31067, "On Line Informatica" },
- { 31068, "Tyfon Svenska AB" },
- { 31069, "Belvok Ltd." },
- { 31070, "Zentzu Inc." },
- { 31071, "Intelinet AS" },
- { 31072, "proQuest Computersysteme GmbH" },
- { 31073, "Radian Company" },
- { 31074, "Electronimec, Inc" },
- { 31075, "Mobigeo" },
- { 31076, "Jan Fischer" },
- { 31077, "Systems Neurobiology Laboratory" },
- { 31078, "Nankai Densetsu CO.,LTD." },
- { 31079, "Bircher ProcessControl AG" },
- { 31080, "Galileo International" },
- { 31081, "Perlan Technologies Polska Sp. z o.o." },
- { 31082, "EUNETIC GmbH" },
- { 31083, "ALTE LEIPZIGER Versicherung a. G." },
- { 31084, "TechSAT GmbH" },
- { 31085, "Greyware Automation Products, Inc." },
- { 31086, "Technology Nexus Secured Business Solutions AB" },
- { 31087, "Enfo Broadcast AS" },
- { 31088, "Extend Health, Inc." },
- { 31089, "Clemson University" },
- { 31090, "Scale Computing, Inc." },
- { 31091, "Andreas Tsiotsias" },
- { 31092, "GFI Software Ltd" },
- { 31093, "Passguard" },
- { 31094, "dynaTrace Software, Inc." },
- { 31095, "SEC (Software Engineering Center, Chinese Academy Of Sciences)" },
- { 31096, "koyo electric co,ltd" },
- { 31097, "Mouse-hole.com" },
- { 31098, "PJM Interconnection, L.L.C." },
- { 31099, "SZ-ID b.v." },
- { 31100, "Metascopic" },
- { 31101, "Future Spirits Co,Ltd." },
- { 31102, "u10 Networks" },
- { 31103, "Daniel Ellard" },
- { 31104, "EPRO Telecom Services Ltd." },
- { 31105, "WMHost" },
- { 31106, "23projects.org" },
- { 31107, "Global Protocols" },
- { 31108, "Compriva Communications Privacy Solutions Inc." },
- { 31109, "IAVANTE Foundation" },
- { 31110, "UAB \"BT-Grupe\"" },
- { 31111, "Norfello Oy" },
- { 31112, "XForm Systems GmbH" },
- { 31113, "Swemel JSC" },
- { 31114, "Aetna Group S.p.A." },
- { 31115, "InfoWatch" },
- { 31116, "Cuesta College" },
- { 31117, "Quality Bicycle Products, Inc." },
- { 31118, "Cryptomach Ltd." },
- { 31119, "I-node S.r.l." },
- { 31120, "QiPlay" },
- { 31121, "Techfirm, Inc." },
- { 31122, "VoIPFuture Ltd." },
- { 31123, "WuHan Teklong Technology Co.,Ltd" },
- { 31124, "ABF Baltic AS" },
- { 31125, "Ressources Informatiques" },
- { 31126, "ASTELLIA" },
- { 31127, "Emerson Process Management" },
- { 31128, "Lead Tech Design" },
- { 31129, "Alaska Satellite Facility" },
- { 31130, "Basho Technologies, Inc." },
- { 31131, "Ilove2ski" },
- { 31132, "Dictao" },
- { 31133, "Triton Container Intl" },
- { 31134, "Kinderedheart" },
- { 31135, "Diglinks GmbH" },
- { 31136, "Gesti\0303\0263n de Seguridad Electr\0303\0263nica S.A. - GSE S.A." },
- { 31137, "Bildungszentrum Uster" },
- { 31138, "DrJays.com, Inc." },
- { 31139, "Viv Diwakar" },
- { 31140, "TouK Sp. z o. o. s. k. a." },
- { 31141, "GEMIK" },
- { 31142, "7signal Oy" },
- { 31143, "Andreas Stenius Teknikkonsult" },
- { 31144, "Corporaci\0303\0263n Santandereana para el Avance y la Innovaci\0303\0263n Cient\0303\0255fica y Tecnol\0303\0263gica - Avance" },
- { 31145, "Holido" },
- { 31146, "MatrikonOPC" },
- { 31147, "RiverStar Software" },
- { 31148, "Saga d.o.o. Beograd" },
- { 31149, "South-West University" },
- { 31150, "TriumStar International Co., Ltd." },
- { 31151, "Sixgreen" },
- { 31152, "Allegea Information Services" },
- { 31153, "Aonalu" },
- { 31154, "ck-productions" },
- { 31155, "SeYo Solutions" },
- { 31156, "By Light Professional IT Services" },
- { 31157, "Patersons HR & Payroll Solutions" },
- { 31158, "Team Engineers" },
- { 31159, "Stadtwerke Speyer GmbH" },
- { 31160, "DARTALIS S.A." },
- { 31161, "SMT&C Co., Ltd." },
- { 31162, "EMC Electronic Media Communication SA" },
- { 31163, "Ultra Electronics - Tactical Communication Systems" },
- { 31164, "xweb OG" },
- { 31165, "Active Storage, Inc." },
- { 31166, "ViM Internetdienstleistungen Gmbh" },
- { 31167, "Home State Bank" },
- { 31168, "Pleora Technologies Inc." },
- { 31169, "Medical Facilities of America" },
- { 31170, "PNG Development Group" },
- { 31171, "Ning Inc" },
- { 31172, "Broward Sheriff's Office" },
- { 31173, "Alaska Department of Fish & Game" },
- { 31174, "Mobile Active Pty Ltd" },
- { 31175, "Partition Tragic" },
- { 31176, "Largic Co.,Ltd." },
- { 31177, "Quantm" },
- { 31178, "GroundHog Software" },
- { 31179, "Micro Research Ltd" },
- { 31180, "Centre for Development of Advanced Computing" },
- { 31181, "DBALab S.p.A." },
- { 31182, "Ville de Luxembourg" },
- { 31183, "The Logic Group Enterprises Ltd" },
- { 31184, "EWE AG" },
- { 31185, "Kell Systems" },
- { 31186, "mybasta.com" },
- { 31187, "Secure Designs, Inc." },
- { 31188, "Engel Solutions AG" },
- { 31189, "Rhombotech LLC" },
- { 31190, "Hackers' Treasure Zoo" },
- { 31191, "Alset Corporation" },
- { 31192, "Hella KGaA Hueck & Co." },
- { 31193, "DT Netsolution GmbH" },
- { 31194, "Public Association \"RENAM\" (Research and Educational Networking Association of Moldova)" },
- { 31195, "audio data Ton- und Datentechnik GmbH" },
- { 31196, "Sosialistisk Venstreparti" },
- { 31197, "Ousmane Ba International Business Automation" },
- { 31198, "Thomas Stein" },
- { 31199, "E-learning SA" },
- { 31200, "is-ro Informations-Architektur" },
- { 31201, "Dotcom-Monitor Inc" },
- { 31202, "wiredobjects" },
- { 31203, "Jenomics GmbH" },
- { 31204, "I-James Technology" },
- { 31205, "Newsroom Solutions, LLC" },
- { 31206, "DRS Test and Energy Management, LLC" },
- { 31207, "Vertica Systems, Inc" },
- { 31208, "Seneca College of Applied Arts & Technology" },
- { 31209, "Lightcomm Technology" },
- { 31210, "Cross Technologies, Inc." },
- { 31211, "Engineering Design Team, Inc." },
- { 31212, "Senotron GmbH" },
- { 31213, "Integrat (Pty) Ltd" },
- { 31214, "ADIPSYS" },
- { 31215, "PFS" },
- { 31216, "PCM Industries" },
- { 31217, "AST" },
- { 31218, "UCOPIA Communications" },
- { 31219, "kubus IT GbR" },
- { 31220, "Syberian" },
- { 31221, "Niggemann Innovations GmbH" },
- { 31222, "Idium AS" },
- { 31223, "Spider Financial" },
- { 31224, "Horizon Semiconductors" },
- { 31225, "Pulse Power and Measurement Ltd." },
- { 31226, "NWG Technologies, LLC" },
- { 31227, "US Cable" },
- { 31228, "RUSTEDCOMPUTING.COM" },
- { 31229, "One Convergence" },
- { 31230, "Lazurit" },
- { 31231, "Longhurst Group" },
- { 31232, "Ringcentral, Inc." },
- { 31233, "Almira Labs, S.L." },
- { 31234, "Inter7 Internet Technologies, Inc." },
- { 31235, "ENVALE SYSTEMS PVT. LTD." },
- { 31236, "PartyGaming PLC" },
- { 31237, "e.sigma Technology AG" },
- { 31238, "baumann.at - concepts & sulotions" },
- { 31239, "AustriaPro (e-Zustellung)" },
- { 31240, "i-move internet gmbh" },
- { 31241, "Cross Industries AG" },
- { 31242, "Foster Link Inc." },
- { 31243, "Interhost AS" },
- { 31244, "Fresh Media Group" },
- { 31245, "Brandon Werner" },
- { 31246, "Realmagic Technology Ltd." },
- { 31247, "DigiSSL Inc" },
- { 31248, "Field Solutions, LLC" },
- { 31249, "Daruma Telecomunicacoes e Informatica S/A" },
- { 31250, "Avnet" },
- { 31251, "Ol\0303\0251 Telecom" },
- { 31252, "ELMECH" },
- { 31253, "Andre Hotzler EDV-Dienstleistungen" },
- { 31254, "Fooman Limited" },
- { 31255, "MAC Telecom Technologies Pvt Ltd" },
- { 31256, "CSO srl" },
- { 31257, "elxsi networking services" },
- { 31258, "3onedata Technology Co. Ltd." },
- { 31259, "Sisnetinfo CO., ltd." },
- { 31260, "Phebus" },
- { 31261, "Placid Sky Consulting" },
- { 31262, "HOLA S.A." },
- { 31263, "Riga Technical university" },
- { 31264, "TEGNIX" },
- { 31265, "Queensland Studies Authority" },
- { 31266, "Privredna komora Srbije" },
- { 31267, "Zivios, LLC." },
- { 31268, "Nubium Systems" },
- { 31269, "Sapotek Inc." },
- { 31270, "XRoads Networks" },
- { 31271, "Geni, Inc" },
- { 31272, "Ed Greenberg Technical Services Corp" },
- { 31273, "RIS Technology" },
- { 31274, "Webmasterprogramm GmbH" },
- { 31275, "TTG ULUSLARARASI TELEKOMINIKASYON ILETISIM HIZMETLERI ve ELEKT.TIC.LTD.STI" },
- { 31276, "DSA Volgmann" },
- { 31277, "Fluidmesh Networks, Inc." },
- { 31278, "Alphons Tech. Co. Ltd" },
- { 31279, "Shenzhen Routdata Technology Co., Ltd" },
- { 31280, "Premiersoft (Singapore) Pte Ltd" },
- { 31281, "sourcephotonics" },
- { 31282, "Solid Access Technologies LLC" },
- { 31283, "SONOWAND AS" },
- { 31284, "Spazidigitali" },
- { 31285, "Beijing 3V Communication Technology Co.,Ltd." },
- { 31286, "Valora Holding AG" },
- { 31287, "FutureIT" },
- { 31288, "Partners Data Systems, Inc." },
- { 31289, "SARL SECOM - GMixon - Pixeliris" },
- { 31290, "Nissan Finacial Services Co., Ltd." },
- { 31291, "Minutolo" },
- { 31292, "WPC-Vogt" },
- { 31293, "Tata V\0303\0241ros Polg\0303\0241rmesteri Hivatala" },
- { 31294, "Impetus Infotech (india) pvt. ltd." },
- { 31295, "Aqualectra B.V." },
- { 31296, "Kynetix" },
- { 31297, "Dortmund University of Technology" },
- { 31298, "Hochschule Anhalt (FH)" },
- { 31299, "Elite CRM Software Ltd." },
- { 31300, "Emmeskay" },
- { 31301, "Litheware Pty Ltd" },
- { 31302, "ScuttledMonkey" },
- { 31303, "HelloWeb" },
- { 31304, "Andes SCD" },
- { 31305, "Sure Tech (HK) Limited" },
- { 31306, "Severed Head Software Ltd." },
- { 31307, "astarsoft" },
- { 31308, "Pacific Network Research" },
- { 31309, "QuintessenceLabs Pty Ltd" },
- { 31310, "CRYPTECHNIQ Pty Ltd" },
- { 31311, "CEMA ASP" },
- { 31312, "Jens Axboe Linux Kernel" },
- { 31313, "Nets DanID A/S" },
- { 31314, "Priva B.V." },
- { 31315, "Thales Alenia Space Italia" },
- { 31316, "Seed Linux" },
- { 31317, "ADTelecom S.L." },
- { 31318, "Southern Symentech & Solutions Private Limited" },
- { 31319, "Portugal Telecom, SA" },
- { 31320, "Disig, a.s." },
- { 31321, "Munisense BV" },
- { 31322, "Sierra Wireless, Inc." },
- { 31323, "eXelate Media" },
- { 31324, "CTS Corporation" },
- { 31325, "Howard University" },
- { 31326, "Apollo Security Sales, Inc." },
- { 31327, "Greenplum" },
- { 31328, "Whispering Wolf Productions" },
- { 31329, "Diginext B.V." },
- { 31330, "Comstar, Inc" },
- { 31331, "Commuture Corp" },
- { 31332, "Dr.Reisacher" },
- { 31333, "Purekernel Systems Limited" },
- { 31334, "Unicon, Inc." },
- { 31335, "John Antypas" },
- { 31336, "Neovera, Inc." },
- { 31337, "Union & Comstar" },
- { 31338, "Kavach Networks Private Limited" },
- { 31339, "NPP Triada-TV LLC" },
- { 31340, "Jiwalu" },
- { 31341, "innoSysTec GmbH" },
- { 31342, "S-Terra CSP" },
- { 31343, "Festo AG & Co. KG" },
- { 31344, "Tripadvisor" },
- { 31345, "Sun Microsystems (B.C.) Inc." },
- { 31346, "Cine-tal" },
- { 31347, "Spirus Applied Learning Solutions AG" },
- { 31348, "DONET S.A.C" },
- { 31349, "Digital Wave Co.,Ltd." },
- { 31350, "Government Information Management Unit, Ministry of Finance, Finland" },
- { 31351, "managedhosting.de GmbH" },
- { 31352, "Meteogroup Deutschland" },
- { 31353, "iKu Systems & Services GmbH & Co. KG" },
- { 31354, "Computa Services and Consultants Ltd" },
- { 31355, "Tuxicoman" },
- { 31356, "Casa Brasil" },
- { 31357, "Guoke tek,Inc." },
- { 31358, "id3 Semiconductors" },
- { 31359, "Orcanthus" },
- { 31360, "revenco" },
- { 31361, "conject AG" },
- { 31362, "FHeigl" },
- { 31363, "Sumlogic Innovations" },
- { 31364, "BEE MediaSoft Limited" },
- { 31365, "MaxSP Corporation" },
- { 31366, "MMJ Group, Inc" },
- { 31367, "Asseco Slovakia, a.s." },
- { 31368, "Systancia SA" },
- { 31369, "OhmForce" },
- { 31370, "Jugendzentrum e.V., Karlstr. 13" },
- { 31371, "Communicado, Inc." },
- { 31372, "University of Southern Indiana" },
- { 31373, "CENELEC TC79 WG7 CCTV Surveillance Systems" },
- { 31374, "Plansmith Corporation" },
- { 31375, "The Hub Partnership LLP" },
- { 31376, "Reliable science & technology co.,Ltd" },
- { 31377, "buunSoft" },
- { 31378, "Vervis COMINT Services GmbH" },
- { 31379, "inform solutions GmbH" },
- { 31380, "Citec" },
- { 31381, "TI-WMC" },
- { 31382, "EDEKA Handelsgesellschaft Suedwest mbH" },
- { 31383, "east taiya wireless telecommunication Inc." },
- { 31384, "Port25 Solutions, Inc." },
- { 31385, "Zylex Systems" },
- { 31386, "ARCHE Engenharia e Comercio de Sistemas de Automacao e Teleinformatica Ltda" },
- { 31387, "Row 44, Inc." },
- { 31388, "On-Net Surveillance Systems, Inc. (OnSSI)" },
- { 31389, "Sven Richter" },
- { 31390, "Ural State Forest Engineering University" },
- { 31391, "Oakton Community College" },
- { 31392, "Squared Financial Services Ltd." },
- { 31393, "OneBeacon Insurance" },
- { 31394, "Victron Energy B.V." },
- { 31395, "The Translational Genomics Research Institute" },
- { 31396, "HPC Systems Inc." },
- { 31397, "Armor Safe Technologies, LLC" },
- { 31398, "Suburbia Public Access Network" },
- { 31399, "SCALABLE NETWORK TECHNOLOGIES" },
- { 31400, "WaveGuider Technology Ltd" },
- { 31401, "Sarbarian Software" },
- { 31402, "WINLAB" },
- { 31403, "Mgame Japan Corp." },
- { 31404, "Optiwave Photonics Limited" },
- { 31405, "X-tec GmbH ICNS" },
- { 31406, "Le Studio Vert" },
- { 31407, "ON-X" },
- { 31408, "Cincinnati Country Day School" },
- { 31409, "Telemetry Network System" },
- { 31410, "TenRoses SRL" },
- { 31411, "Edinboro University of Pa" },
- { 31412, "Carter and Associates" },
- { 31413, "eBiz Consulting Inc." },
- { 31414, "MMK" },
- { 31415, "Nederlands Ministerie van Buitenlandse Zaken" },
- { 31416, "Edevag Consulting HB" },
- { 31417, "Tokyo University of Science" },
- { 31418, "Adexso Advanced Expert Solutions" },
- { 31419, "Skalarit AB (formerly 'Skvader Systems AB')" },
- { 31420, "team2work GbR" },
- { 31421, "Coblan srl" },
- { 31422, "Retailp S.A.S." },
- { 31423, "Identity Technology Ltd" },
- { 31424, "Egothor" },
- { 31425, "Mountain Power Inc." },
- { 31426, "Fitbit, Inc." },
- { 31427, "ticketpro GmbH" },
- { 31428, "PT. Telemetri Indonesia" },
- { 31429, "RealConnect (Pty) Ltd" },
- { 31430, "RSU GmbH" },
- { 31431, "CoSiSo" },
- { 31432, "Courtyard Electronics Ltd" },
- { 31433, "Toumaz Technology Limited" },
- { 31434, "Minerva-Korea" },
- { 31435, "Users, Incorporated" },
- { 31436, "Ansley & Associates, Inc." },
- { 31437, "Call & Call Holding S.p.A." },
- { 31438, "phoops s.r.l." },
- { 31439, "Correo Uruguayo" },
- { 31440, "Embedded Data Systems, LLC" },
- { 31441, "Eurika srl" },
- { 31442, "JonDos GmbH" },
- { 31443, "The Alberta Library" },
- { 31444, "MAKELSAN LTD." },
- { 31445, "FatBox Inc." },
- { 31446, "catpipe" },
- { 31447, "IRGA Production Company" },
- { 31448, "Prolancer Pty Ltd" },
- { 31449, "Perfect Line S.A." },
- { 31450, "David Rourke" },
- { 31451, "ipado - Informatiker-Partnerschaft Pauxberger und Domschke" },
- { 31452, "VS Information Systems" },
- { 31453, "Zyrion Inc." },
- { 31454, "towebs inc." },
- { 31455, "Bulb" },
- { 31456, "ScapeCaster" },
- { 31457, "Meebo, Inc." },
- { 31458, "RAVIOLIKINGDOM.COM" },
- { 31459, "United States Peoples Virtual Party" },
- { 31460, "Versatile Security Sweden AB" },
- { 31461, "s\0303\0244chsische Informations-Compagnie zu Berlin | Marcus Pauli" },
- { 31462, "Canare" },
- { 31463, "Itibia Technologies Inc." },
- { 31464, "EPCOM IT-Systeme, Pirker & Zauner OEG" },
- { 31465, "Systemica Consulting" },
- { 31466, "NeoConsult A/S" },
- { 31467, "Gravity Interactive, Inc." },
- { 31468, "The Bluenote Group" },
- { 31469, "Alior Bank S.A." },
- { 31470, "Vector Data LLC" },
- { 31471, "SunStrom GmbH" },
- { 31472, "Axcera Inc." },
- { 31473, "NOVA Chemicals Corporation" },
- { 31474, "Viagenie inc." },
- { 31475, "ITS Schmidinger GmbH" },
- { 31476, "Deviant Software" },
- { 31477, "TTC MARCONI s.r.o." },
- { 31478, "Pluribus" },
- { 31479, "Grey Group" },
- { 31480, "Universidade Federal do Rio Grande" },
- { 31481, "ABBRIS Ltd." },
- { 31482, "Top Level Internet Pty Ltd" },
- { 31483, "Universidad Rey Juan Carlos" },
- { 31484, "Basset AB (formerly 'BassetLabs AB')" },
- { 31485, "FlexSecure GmbH" },
- { 31486, "CGI Sweden AB (formerly 'Logica Norr AB')" },
- { 31487, "The Transaction Company" },
- { 31488, "oxylane" },
- { 31489, "Manchester Computing Ltd" },
- { 31490, "Monnsta" },
- { 31491, "Cabo Telecom" },
- { 31492, "BOCOM SECURITY(ASIA PACIFIC) LIMITED" },
- { 31493, "The Hospital Authority Hong Kong" },
- { 31494, "Host 17" },
- { 31495, "Combe Walden Associates Limited" },
- { 31496, "NetModule AG" },
- { 31497, "Haute Ecole d'Ing\0303\0251nierie et de Gestion du Canton de Vaud (HEIG-Vd)" },
- { 31498, "Stiftung Sympany" },
- { 31499, "Novozymes A/S" },
- { 31500, "Lindsay Broadband Inc." },
- { 31501, "Khaledma" },
- { 31502, "Mantaray AB" },
- { 31503, "Sanitas S.A. de Seguros" },
- { 31504, "Networkers AG" },
- { 31505, "Direcci\0303\0263n General de Tr\0303\0241fico" },
- { 31506, "Dragonfly Grzegorz Marsza\0305\0202ek" },
- { 31507, "arcutronix Gmbh" },
- { 31508, "Internat der Maristenbr\0303\0274der Mindelheim" },
- { 31509, "Soapstone Networks" },
- { 31510, "New Horizons" },
- { 31511, "Henry Ford Community College" },
- { 31512, "BittWare, Inc." },
- { 31513, "Prosul - Projetos, Supervis\0303\0243o e Planejamento LTDA." },
- { 31514, "Software Horizons Inc." },
- { 31515, "SizeIT Drift Aktiebolag" },
- { 31516, "Zen Internet Limited" },
- { 31517, "Akixa" },
- { 31518, "International All Sports Limited" },
- { 31519, "Jakko Network" },
- { 31520, "iPerfecta Japan Ltd." },
- { 31521, "Univar Benelux S.A." },
- { 31522, "Washington Apple Pi, Ltd." },
- { 31523, "Community Health Information Collaborative" },
- { 31524, "m\0303\0274ller it gmbh" },
- { 31525, "NEC Laboratories Europe" },
- { 31526, "Change Networks A/S" },
- { 31527, "VMF Nord ek f\0303\0266r" },
- { 31528, "SIEMENS S.A: IA SPAIN" },
- { 31529, "Pensionskasse SBB" },
- { 31530, "TSI Power Corporation" },
- { 31531, "Immutify Limited" },
- { 31532, "Ensynch, Inc" },
- { 31533, "ScanSafe Ltd" },
- { 31534, "Adfinis SyGroup AG (formerly 'SyGroup GmbH')" },
- { 31535, "Parkeon" },
- { 31536, "OpenNHRP project" },
- { 31537, "Gossamer Threads Inc." },
- { 31538, "Velocity Network" },
- { 31539, "Traveling bits, Inc." },
- { 31540, "INTEC Inc." },
- { 31541, "Yaamen Inc" },
- { 31542, "Robert Carleton" },
- { 31543, "RIONERO" },
- { 31544, "Sistema Integrado de Defesa Social" },
- { 31545, "Yellowbook Inc" },
- { 31546, "Rotary International" },
- { 31547, "COGITO Management Consulting" },
- { 31548, "Media & Broadcast Technologies" },
- { 31549, "Shu-Te University" },
- { 31550, "K Franchise Vertriebssysteme Gesellschaft m.b.H." },
- { 31551, "Niechoj electronic GmbH" },
- { 31552, "Disforce" },
- { 31553, "Invocrown Ltd" },
- { 31554, "Elvys Ltd." },
- { 31555, "VCS Aktiengesellschaft" },
- { 31556, "TiQ srl" },
- { 31557, "Vision Technologies Inc." },
- { 31558, "David M Brooke" },
- { 31559, "pathSolutions" },
- { 31560, "ARTEC Computer GmbH" },
- { 31561, "Telecomproduct" },
- { 31562, "Backcountry.com" },
- { 31563, "HGST" },
- { 31564, "Chainzone Tech. Ind." },
- { 31565, "Nurminen Logistics Oyj" },
- { 31566, "Ytti" },
- { 31567, "EURECA" },
- { 31568, "Licensys Pty Ltd" },
- { 31569, "Branden Schneider" },
- { 31570, "Gnodal" },
- { 31571, "Narratone Pte Ltd" },
- { 31572, "Consolidated Smart Systems" },
- { 31573, "Peel District School Board" },
- { 31574, "Security Monster" },
- { 31575, "InnoGames GmbH" },
- { 31576, "CTC Engineering Ltd." },
- { 31577, "7Safe Ltd." },
- { 31578, "A2x Trefzer Consulting" },
- { 31579, "virgitech" },
- { 31580, "Departamento de Engenharia Eletr\0303\0264nica - CEFET RJ" },
- { 31581, "REDDOXX GmbH" },
- { 31582, "Caixa Geral de Dep\0303\0263sitos" },
- { 31583, "AgilTech" },
- { 31584, "Ben Jen Online" },
- { 31585, "Umoe Communication" },
- { 31586, "Teragram, A SAS Company" },
- { 31587, "Univ Community" },
- { 31588, "IceWave" },
- { 31589, "Axlon Electronics Corporation" },
- { 31590, "MRI Cardiac Services, Inc" },
- { 31591, "Digital Governance" },
- { 31592, "Jump Trading, LLC" },
- { 31593, "Electronic Child Health Network" },
- { 31594, "Elm Technology" },
- { 31595, "KGlobal Tech Co., Ltd." },
- { 31596, "OJSC iCFO" },
- { 31597, "Global Real Estate And Technology Consortium, Inc." },
- { 31598, "Grok-A-Lot, LLC" },
- { 31599, "P0F Sistemske Storitve Grega Bremec s.p." },
- { 31600, "Beijing TechSolute Technology Co., Ltd." },
- { 31601, "DreamGarage Inc." },
- { 31602, "Raying Technology Co., Ltd." },
- { 31603, "Information Society Development Committee under the Government of the Republic of Lithuania" },
- { 31604, "Sunny Multimedia Co.,ltd" },
- { 31605, "Ekahau Oy" },
- { 31606, "LUMINOUS POWER TECHNOLOGIES PVT LTD" },
- { 31607, "eBox technologies S.L" },
- { 31608, "Emaging" },
- { 31609, "Lisp" },
- { 31610, "Noisivne" },
- { 31611, "California Creativity Association, Inc." },
- { 31612, "Roessner-Network-Solutions" },
- { 31613, "Extrawerk" },
- { 31614, "Ubuntu NL" },
- { 31615, "LEVELER, LLC" },
- { 31616, "LINUX INK" },
- { 31617, "Celeste" },
- { 31618, "Cloudpic" },
- { 31619, "Editora Abril S.A." },
- { 31620, "The J.M. Smucker Company" },
- { 31621, "MoCA - Multimedia over Coax Alliance" },
- { 31622, "Meddius LLC" },
- { 31623, "Information Security Corp." },
- { 31624, "Premier Heart" },
- { 31625, "Astron-Fortis Inc" },
- { 31626, "Lee-Dickens Ltd" },
- { 31627, "Preferred Voice, Inc." },
- { 31628, "Opticom Communications LLC" },
- { 31629, "fengyun.ltd" },
- { 31630, "media concept GmbH" },
- { 31631, "Conseil R\0303\0251gional Nord - Pas de Calais" },
- { 31632, "Shanghai Titan Technology Co., Ltd." },
- { 31633, "Quickline Business AG (formerly 'EBM Telecom AG')" },
- { 31634, "ICT Embedded b.v." },
- { 31635, "TextFunnel" },
- { 31636, "Shanghai Colorful Magnetic Resonance Technology Co. Ltd." },
- { 31637, "Peak Communications Ltd" },
- { 31638, "Indra Systems, Inc." },
- { 31639, "Litmus Logic" },
- { 31640, "7ia" },
- { 31641, "CFH Software" },
- { 31642, "Eurotech S.p.A." },
- { 31643, "m-creations gmbh" },
- { 31644, "Perthro Ltd" },
- { 31645, "Network Critical" },
- { 31646, "Virgina Department of Motor Vehicles" },
- { 31647, "Ministerio de Defensa de la Naci\0303\0263n" },
- { 31648, "HANGZHOU DPTECH Technologies Co., Ltd." },
- { 31649, "keksbude.net" },
- { 31650, "Feline Soul Systems" },
- { 31651, "W Key s.r.l." },
- { 31652, "Arcadia Consulting" },
- { 31653, "Ing. Reinhard Hirz IT Services" },
- { 31654, "EM Software & Systems" },
- { 31655, "Martek di Meucci Marco" },
- { 31656, "Beijing Autelan Technologies Co Ltd.," },
- { 31657, "Infinitus d.o.o." },
- { 31658, "LightSoftware" },
- { 31659, "TurnovFree.net, Sdru\0305\0276en\0303\0255" },
- { 31660, "eSure Labs, Inc." },
- { 31661, "Logilab, SA" },
- { 31662, "TIGNET Open Source Solutions" },
- { 31663, "New York State Assembly" },
- { 31664, "Bravo Tech, Inc." },
- { 31665, "StrongMail Systems Inc." },
- { 31666, "AirCanopy Internet" },
- { 31667, "Ministerstwo Sprawiedliwosci" },
- { 31668, "KRAFT Benjamin Jean" },
- { 31669, "Tema Networks Ltd." },
- { 31670, "Jaworsito" },
- { 31671, "Anunda Technology Co, Ltd." },
- { 31672, "XORTEC" },
- { 31673, "Datacenter Luxembourg" },
- { 31674, "Global Star Solutions ULC" },
- { 31675, "coldspot.de" },
- { 31676, "Mantara Inc" },
- { 31677, "REMEC Broadband Wireless" },
- { 31678, "Tenalt d.o.o." },
- { 31679, "droidnest.org" },
- { 31680, "Altor Networks" },
- { 31681, "South African Post Office" },
- { 31682, "Audinate Pty Ltd" },
- { 31683, "community engineering gmbh" },
- { 31684, "EBM WEBSOURCING" },
- { 31685, "IDG GmbH" },
- { 31686, "Harry Jede" },
- { 31687, "Lorica Solutions" },
- { 31688, "rtfmcomputing.com" },
- { 31689, "editspot, LLC" },
- { 31690, "Sensorlogic, Inc" },
- { 31691, "FIMMG - Federazione Italiana Medici di Medicina Generale" },
- { 31692, "Close Premium Finance" },
- { 31693, "MerlinTechs" },
- { 31694, "Heilig Graf" },
- { 31695, "BNYConvergex Execution Solutions LLC" },
- { 31696, "Haberler Enterprises Ltd" },
- { 31697, "Peer 1" },
- { 31698, "Bluemoon Games" },
- { 31699, "Gymnasium Querfurt Broadcasting Channel" },
- { 31700, "Ice House Productions" },
- { 31701, "Sonoa Systems" },
- { 31702, "India Logics, LLC" },
- { 31703, "Institut D'A\0303\0251ronomie Spatiale de Belgique" },
- { 31704, "ASPICON GmbH" },
- { 31705, "lug.org.uk" },
- { 31706, "Torrenga Engineering, Inc." },
- { 31707, "Tamil IPTV Inc" },
- { 31708, "Meddiff Technologies Pvt. Ltd. (formerly 'MedSphere Technologies Pvt Ltd')" },
- { 31709, "Sistema FIESC" },
- { 31710, "Torrenga Surveying LLC" },
- { 31711, "Mystiq Mobile Pte Ltd" },
- { 31712, "gpf.me.uk" },
- { 31713, "Khipu Networks Ltd." },
- { 31714, "national center for missing and exploited children" },
- { 31715, "Portware, LLC" },
- { 31716, "Wilder & Associates" },
- { 31717, "Rogue Project Inc" },
- { 31718, "Krausser EDV" },
- { 31719, "Programmer.com.hk" },
- { 31720, "Jan Dittberner IT-Consulting & -Solutions" },
- { 31721, "ArgoSoft JSC" },
- { 31722, "Spellman High Voltage Electronics Corporation" },
- { 31723, "Communication Systems Company" },
- { 31724, "Das Labor e.V." },
- { 31725, "E-Cert" },
- { 31726, "Rancore Technologies (P) Ltd.," },
- { 31727, "U.S. Department of Energy" },
- { 31728, "Monografias.com" },
- { 31729, "art of defence GmbH" },
- { 31730, "MiMOMax Wireless Limited" },
- { 31731, "Sunwave Communications Co. Ltd." },
- { 31732, "DropFire, Inc." },
- { 31733, "KEPID AMSTECH Co., LTD." },
- { 31734, "Dayang Technology Development Inc." },
- { 31735, "ZAO NPK Microtec" },
- { 31736, "Filipstads kommun" },
- { 31737, "Digital Systems Ltd" },
- { 31738, "S.C. LTHD Corporation S.R.L." },
- { 31739, "penagosg" },
- { 31740, "University of Prince Edward Island" },
- { 31741, "ProLogic, Inc." },
- { 31742, "Avenue A | Razorfish" },
- { 31743, "eXerp ApS" },
- { 31744, "ADESA, Inc." },
- { 31745, "Centro Federal de Educa\0303\0247\0303\0243o Tecnol\0303\0263gica de Pelotas" },
- { 31746, "Gemalto" },
- { 31747, "AAP Communications, LLC" },
- { 31748, "JED Capital, LLC" },
- { 31749, "Need To Know News, LLC" },
- { 31750, "marcher.it" },
- { 31751, "Burleson Technology Group, LLC." },
- { 31752, "Omniscient Technologies" },
- { 31753, "ALCEST'IS" },
- { 31754, "Triwest Healthcare Alliance" },
- { 31755, "LINK Lab.Inc." },
- { 31756, "GXMU(Guangxi Medical University)" },
- { 31757, "Internet Telephony Users Association Inc." },
- { 31758, "Infinova LLC" },
- { 31759, "Stoo Networks" },
- { 31760, "C-Matic Systems Ltd" },
- { 31761, "RFI Engineering B.V." },
- { 31762, "Fujian Star-net Communication Co.,Ltd" },
- { 31763, "Bitel T\0303\0241vk\0303\0266zl\0303\0251s \0303\0251s Biztons\0303\0241gtechnika Kft" },
- { 31764, "inmedias.it Gesellschaft f\0303\0274r Informationstechnologie mbH" },
- { 31765, "Advance Display Technologies, Inc." },
- { 31766, "ShowIT" },
- { 31767, "Nootek" },
- { 31768, "SHARP Electronics (Europe) GmbH" },
- { 31769, "Kassen\0303\0244rztliche Vereinigung Bayerns" },
- { 31770, "Bachmann GmbH & Co KG" },
- { 31771, "eGenix.com Software, Skills and Services GmbH" },
- { 31772, "International Paper" },
- { 31773, "GEWI Europe GmbH & Co. KG" },
- { 31774, "RealTimeSites" },
- { 31775, "Gellings CO" },
- { 31776, "TheLogInn" },
- { 31777, "DATAPREV - Previdencia Social" },
- { 31778, "SMHS Ltd" },
- { 31779, "Innocom-arcodan" },
- { 31780, "Acipia" },
- { 31781, "TG Mess-, Steuer- und Regeltechnik GmbH" },
- { 31782, "SyferLock Technology Corporation" },
- { 31783, "MetroSouth Medical Center" },
- { 31784, "EndlerNET GmbH" },
- { 31785, "Derouineau" },
- { 31786, "Zdravstveni dom Ljubljana" },
- { 31787, "Syren Technologies" },
- { 31788, "QSG Verkehrstechnik GmbH" },
- { 31789, "HD Software & Systeme GmbH" },
- { 31790, "Compressus, Inc" },
- { 31791, "County of Erie, New York" },
- { 31792, "Adways Co., Ltd." },
- { 31793, "TEMIX S.p.A." },
- { 31794, "Infinovate, Inc." },
- { 31795, "Board of Regents of The University System of Georgia" },
- { 31796, "IdentiPHI, Inc" },
- { 31797, "Neetze Online" },
- { 31798, "Rewse Lab." },
- { 31799, "TreStore GmbH" },
- { 31800, "VividLogic Inc" },
- { 31801, "Biap, Inc." },
- { 31802, "Aquasys" },
- { 31803, "Secureware Inc" },
- { 31804, "Office of State Revenue" },
- { 31805, "IBA CZ, s.r.o." },
- { 31806, "VirtualTec Solutions AG" },
- { 31807, "Universidad de Caldas" },
- { 31808, "Togliatti State University" },
- { 31809, "Josef Lux und Sohn Baumeister GmbH" },
- { 31810, "Cinterion GmbH" },
- { 31811, sminmpec_unknown }, /* (Added by Wireshark) */
- { 31812, "United Tote Co." },
- { 31813, "Dikmenoglu" },
- { 31814, "Amway of Australia" },
- { 31815, "BEAR Solutions (Australasia) Pty Ltd" },
- { 31816, "PrintFleet Inc." },
- { 31817, "Connexis Kft." },
- { 31818, "Droitech eSolutions Private Limited" },
- { 31819, "CHENGBO NETWORK TECHNOLOGY CO. ,LTD" },
- { 31820, "Federal Prison Industries (UNICOR)" },
- { 31821, "eonBIT as" },
- { 31822, "X2B Security" },
- { 31823, "Schweitzer Engineering Laboratories, Inc." },
- { 31824, "Solar Technology, Inc" },
- { 31825, "HTW Dresden FB Informatik" },
- { 31826, "Logic United GmbH" },
- { 31827, "Sharedband Limited" },
- { 31828, "Pegasus Telecom" },
- { 31829, "MIPIH" },
- { 31830, "deCODE genetics" },
- { 31831, "Ad Hoc Network srl" },
- { 31832, "Los Angeles Community College District" },
- { 31833, "ACI Worldwide Inc" },
- { 31834, "BecauseWeCan.at" },
- { 31835, "John Berninger" },
- { 31836, "DTS Systeme GmbH" },
- { 31837, "Medinformatix Incorporated" },
- { 31838, "ITech ROMANIA Ltd." },
- { 31839, "Gridiron Systems Inc." },
- { 31840, "ChoicePoint Asset Company LLC" },
- { 31841, "University of Western Macedonia" },
- { 31842, "e2E Services Limited" },
- { 31843, "GUISYS CORPORATION" },
- { 31844, "Satellite Systems Corporation" },
- { 31845, "Dans Rock Electronics" },
- { 31846, "Wimba" },
- { 31847, "Bejing XCZY networks Inc." },
- { 31848, "Sherman Finanial Group LLC" },
- { 31849, "Jacobsson Programutveckling" },
- { 31850, "OTN Systems NV" },
- { 31851, "WH-Netz - Verein fuer Netzwerksicherheit und Technologietransfer e.V." },
- { 31852, "Pirean Ltd." },
- { 31853, "LLC Mail.Ru" },
- { 31854, "Stix AS" },
- { 31855, "Plusnet plc" },
- { 31856, "Wycliffe Bible Translators USA" },
- { 31857, "Tirepiste" },
- { 31858, "Intellimedia Systems Ltd" },
- { 31859, "HFR,Inc" },
- { 31860, "Science and Technology Facilities Council" },
- { 31861, "embinet GmbH" },
- { 31862, "Infinity Trust SRL" },
- { 31863, "Australian Research Collaboration Service" },
- { 31864, "kunden-server.org Network Services" },
- { 31865, "Durchmesser" },
- { 31866, "st. bernard software" },
- { 31867, "Unassigned" },
- { 31868, "The Village Group, Inc." },
- { 31869, "Empowering Media, Inc." },
- { 31870, "Minkamau" },
- { 31871, "MO Technologies" },
- { 31872, "Nanzan Gakuen" },
- { 31873, "Elanti Systems Inc." },
- { 31874, "Alpha Networks Inc." },
- { 31875, "ShangHai XinLan Electronic Technology Co.,Ltd." },
- { 31876, "de Koomen" },
- { 31877, "Karel Electronics" },
- { 31878, "Chamaeleon AG" },
- { 31879, "TelASIC Communications" },
- { 31880, "Programma Verwijsindex" },
- { 31881, "GGH Engineering s.r.l." },
- { 31882, "Metrotek" },
- { 31883, "Openstat (formerly 'Vega')" },
- { 31884, "Kuipers Electronic Engineering" },
- { 31885, "ProDaM" },
- { 31886, "Syntactic Sugar s. r. o." },
- { 31887, "Schering-Plough Corporation" },
- { 31888, "AdminDB.org" },
- { 31889, "Apantac LLC" },
- { 31890, "Chicken and Porn" },
- { 31891, "Universidade do Estado do Rio de Janeiro" },
- { 31892, "T3G Technology Co.,Ltd" },
- { 31893, "NelNet" },
- { 31894, "RPBUS LLC" },
- { 31895, "Chita Medias Network INC." },
- { 31896, "Doxense SARL" },
- { 31897, "Knowledge Powered Solutions" },
- { 31898, "bit4id" },
- { 31899, "CS Group - Puerto Rico" },
- { 31900, "Tarleton State University" },
- { 31901, "Backstop Solutions Group" },
- { 31902, "Ann Arbor Public Schools" },
- { 31903, "Global Information Technology, Inc" },
- { 31904, "Mandli Communications, Inc." },
- { 31905, "Springdale Public Schools" },
- { 31906, "NMI InfoSecurity Solutions" },
- { 31907, "Dimenzio Informatika Ltd." },
- { 31908, "Orange Jordan" },
- { 31909, "Textiel Verhaeghe BVBA" },
- { 31910, "Haley Limited" },
- { 31911, "Mine Site Technologies Pty Ltd" },
- { 31912, "Gyventoju registro tarnyba prie Lietuvos Respublikos Vidaus reikalu ministerijos" },
- { 31913, "Smith Micro Software, Inc." },
- { 31914, "AFCC Inc." },
- { 31915, "Nstrument, Inc" },
- { 31916, "Exatrol Corporation" },
- { 31917, "Tian Di Ying Cai(SinoProfessional) Ltd." },
- { 31918, "JSC \0342\0200\0236Izhevskiy Radiozavod\0342\0200\0234" },
- { 31919, "Emerion.com" },
- { 31920, "PHARMDATA,s.r.o." },
- { 31921, "STS GROUP SA" },
- { 31922, "Keeneo SAS" },
- { 31923, "Frontier Electronic Systems Corp." },
- { 31924, "DmitryKulgavy" },
- { 31925, "Miyowa" },
- { 31926, "Siklu Communication LTD" },
- { 31927, "SQdata" },
- { 31928, "Q-Industries, Inc." },
- { 31929, "AKUA Corp" },
- { 31930, "Wiinz Ltd" },
- { 31931, "CLERTECH.COM,INC" },
- { 31932, "4IPNET, INC." },
- { 31933, "Powerbox Australia" },
- { 31934, "Getronics Pinkroccade Healthcare BV" },
- { 31935, "Younou, Inc." },
- { 31936, "Inventum Technologies Private Limited" },
- { 31937, "NAW Enterprises Inc" },
- { 31938, "anderScore GmbH" },
- { 31939, "rkirkpat.net" },
- { 31940, "TV1.DE" },
- { 31941, "EcoliHub" },
- { 31942, "AKRUPP Networking" },
- { 31943, "Clemens Fink" },
- { 31944, "ish group pty ltd" },
- { 31945, "Advanced Powers Merchant Empires" },
- { 31946, "Elenos Srl" },
- { 31947, "Yomu Project" },
- { 31948, "RC Alltech Power Systems Pvt Ltd" },
- { 31949, "Spikelops" },
- { 31950, "Nextivity, Inc." },
- { 31951, "Organizacion de Servicios Directos Empresarios" },
- { 31952, "Miroslaw Lach" },
- { 31953, "Markus Falb" },
- { 31954, "E-smile Co., Ltd." },
- { 31955, "Prolar Corporation" },
- { 31956, "GuangZhou E-Standard Software Technology Co.,Ltd." },
- { 31957, "TSDA - Tecnologia e Solu\0303\0247\0303\0265es Digitais Aplicadas LTDA" },
- { 31958, "INDUSTRONIC Industrie-Electronic GmbH & Co. KG" },
- { 31959, "EDV-Beratung Robert Velter" },
- { 31960, "Altech ISIS" },
- { 31961, "PubliTronic bv" },
- { 31962, "Flybe" },
- { 31963, "BEJING Tongtian Century Technology CO.LTD" },
- { 31964, "chengdu goldtel communication (group) co.,ltd" },
- { 31965, "PGE Gornictwo i Energetyka S.A." },
- { 31966, "Lampe-Batkin Associates, Inc." },
- { 31967, "Thomas Production Company, L.L.C." },
- { 31968, "Datum Systems, Inc." },
- { 31969, "Gradwell dot com Ltd" },
- { 31970, "Siegel Daten- und Anwendungsservice" },
- { 31971, "MQuest S.A." },
- { 31972, "Gruppo Software Oy" },
- { 31973, "thejof.com" },
- { 31974, "Cavazza Anna Sas" },
- { 31975, "Cable Vision Electronics Co., Ltd." },
- { 31976, "INTEG Process Group, Inc." },
- { 31977, "Saia-Burgess Controls AG" },
- { 31978, "Forticom" },
- { 31979, "AltimatOS" },
- { 31980, "Melog.com" },
- { 31981, "Hongdian Technologies" },
- { 31982, "ORNL Federal Credit Union" },
- { 31983, "FOUGEROLLE" },
- { 31984, "Ericsson Australia Pty. Ltd." },
- { 31985, "Syphan Technologies" },
- { 31986, "GOL MOBILE PRODUTOS E SERVI\0303\0207OS DE TECNOLOGIA DA INFORMA\0303\0207\0303\0203O LTDA." },
- { 31987, "Splatterladder" },
- { 31988, "MEN Mikroelektronik Nuernberg GmbH" },
- { 31989, "EverMAX s.r.o." },
- { 31990, "Continental AG" },
- { 31991, "TOSCO CORPORATION" },
- { 31992, "Oceana Sensor Module" },
- { 31993, "Parinya Software" },
- { 31994, "NxGen Communications Pte Ltd" },
- { 31995, "National Bank of Poland" },
- { 31996, "Brian Thomas Matthews Limited" },
- { 31997, "Cellusys" },
- { 31998, "NOVA KREDITNA BANKA MARIBOR d.d." },
- { 31999, "Adcon Telemetry GmbH" },
- { 32000, "Ekstrem Bir Bilgisayar" },
- { 32001, "Convercom AG" },
- { 32002, "Ba-Bi Mobile Media Co. Ltd." },
- { 32003, "herbstwest.de" },
- { 32004, "On-Waves ehf" },
- { 32005, "Obra Social de Empleados Publicos de Mendoza (OSEP)" },
- { 32006, "Fashion Institute of Technology of the State University of New York" },
- { 32007, "Innovative Labs" },
- { 32008, "Digital Rapids Corp" },
- { 32009, "OuterNet" },
- { 32010, "Pixelworks" },
- { 32011, "Kabel Deutschland GmbH" },
- { 32012, "Penango, Inc." },
- { 32013, "Intranet Solution" },
- { 32014, "ESAC" },
- { 32015, "ExtraHop Networks, Inc." },
- { 32016, "Latvia University of Agriculture" },
- { 32017, "LinQuest Corporation" },
- { 32018, "Law Offices Of Roger E. Naghash" },
- { 32019, "Intellon Corporation" },
- { 32020, "doudemoii" },
- { 32021, "Positron Inc." },
- { 32022, "Pegatron Computer Inc." },
- { 32023, "American Clean Air, Inc. (formerly 'XeNSiiS')" },
- { 32024, "Applied Polymorphism" },
- { 32025, "Primal Research" },
- { 32026, "Sigma ITS Co., Ltd." },
- { 32027, "Edvina AB" },
- { 32028, "Tray International Services and Administration (Pty) Ltd" },
- { 32029, "The Rafferty Patent Law Firm, PC" },
- { 32030, "Commodity Systems" },
- { 32031, "XITIJ INDIA" },
- { 32032, "DWI Technologies" },
- { 32033, "Apfelwald" },
- { 32034, "Finnsat Ltd." },
- { 32035, "ISEN Consulting and Services" },
- { 32036, "Borders Group Inc." },
- { 32037, "Commerce Lab" },
- { 32038, "TELZAS" },
- { 32039, "Total Computer Kft." },
- { 32040, "Tecno&Logic Consulting" },
- { 32041, "Association Paris-Montagne" },
- { 32042, "Virginia Community College System" },
- { 32043, "Hacklab Toronto Club Inc." },
- { 32044, "IVOCS" },
- { 32045, "Avanquest Software" },
- { 32046, "NetMatch" },
- { 32047, "IDRIX" },
- { 32048, "x9000.com Consulting Services Limited" },
- { 32049, "FacilityONE" },
- { 32050, "PacketFlux Technologies, Inc." },
- { 32051, "SAMsystems GmbH" },
- { 32052, "Toronto Hydro Corporation" },
- { 32053, "3Y Power Technology, Inc." },
- { 32054, "IPSL (formerly 'IPSL/CETP')" },
- { 32055, "Service to Youth Council Inc" },
- { 32056, "Vietnam Datacommunication Company (VDC)" },
- { 32057, "Mercury Brain Systems" },
- { 32058, "Vietnam Posts and Telecommunications Group (VNPT)" },
- { 32059, "Axis Network Technology Limited" },
- { 32060, "Babelway" },
- { 32061, "VAS Latvijas Valsts radio un televizijas centrs" },
- { 32062, "Endersys" },
- { 32063, "The eID Company" },
- { 32064, "state51" },
- { 32065, "jonEbird" },
- { 32066, "EAFB - Escola Agrot\0303\0251cnica Federal de Barbacena-MG" },
- { 32067, "IPaXiom Networks" },
- { 32068, "Scherndl" },
- { 32069, "University of Laverne" },
- { 32070, "Laser Interferometer Gravitational-Wave Observatory (LIGO)" },
- { 32071, "Vialtus Solutions" },
- { 32072, "SEKIZAWA Corp. Inc." },
- { 32073, "MesaVida Information Management" },
- { 32074, "Prorail BV" },
- { 32075, "XS Networks BV" },
- { 32076, "Connectical IT" },
- { 32077, "Sumlock Electronics (NE) Ltd" },
- { 32078, "Zentrum Servicios SA de CV" },
- { 32079, "ESTeem Wireless Modems Inc." },
- { 32080, "Baseline Communications" },
- { 32081, "Cytec Industries Inc." },
- { 32082, "Unassigned" },
- { 32083, "HealthBlocks, Inc." },
- { 32084, "DeltaNode Ltd." },
- { 32085, "E.ON Business Services GmbH" },
- { 32086, "Fiberblaze" },
- { 32087, "x:fer GmbH" },
- { 32088, "College of Micronesia-FSM" },
- { 32089, "IMS Messsysteme GmbH" },
- { 32090, "Waumovil" },
- { 32091, "AES Corporation" },
- { 32092, "pragma people" },
- { 32093, "Engineering Systems Incorporated" },
- { 32094, "Vantage Tech Solutions" },
- { 32095, "Hosei University Research Institute, California" },
- { 32096, "APD Technologies Inc." },
- { 32097, "Reorder" },
- { 32098, "Baseline IT" },
- { 32099, "Midnight Oil Consulting, INC." },
- { 32100, "Oversi Networks" },
- { 32101, "Telinea d.o.o." },
- { 32102, "Tiaxa" },
- { 32103, "New York Connect" },
- { 32104, "InCharge Systems, Inc" },
- { 32105, "Chief Security Officers, SA" },
- { 32106, "HaDiKo e.V." },
- { 32107, "SOH Systems" },
- { 32108, "PLANAR LLC" },
- { 32109, "ADC Co.,LLC" },
- { 32110, "IPVox Sdn Bhd" },
- { 32111, "Digital Solutions Ltd." },
- { 32112, "CENARIO systems GmbH (formerly 'VCS Computer-Systeme GmbH')" },
- { 32113, "Vocord" },
- { 32114, "ORELIA SAS" },
- { 32115, "Zweites Deutsches Fernsehen Anstalt des oeffentlichen Rechts" },
- { 32116, "ACTIV Financial Systems, Inc." },
- { 32117, "Unassigned" },
- { 32118, "iWave Software" },
- { 32119, "tera.sys hardware inc." },
- { 32120, "Focon Electronic Systems A/S" },
- { 32121, "Armstrong Relocation" },
- { 32122, "Netafim Australia" },
- { 32123, "Sidlinger Computer Corporation" },
- { 32124, "Stadtverwaltung Ludwigshafen" },
- { 32125, "Small Media Giant Ltd" },
- { 32126, "Lietuvos archyvu departamentas prie Lietuvos Respublikos Vyriausybes" },
- { 32127, "Darkware Co." },
- { 32128, "Octotelematics S.r.l." },
- { 32129, "Innovation Center Computer Assisted Surgery (ICCAS)" },
- { 32130, "Data Elements for Emergency Department Systems (DEEDS)" },
- { 32131, "ESPN, Inc." },
- { 32132, "UltraMonkey-L7 Project" },
- { 32133, "nativenet.ch" },
- { 32134, "Zestysoft" },
- { 32135, "WWK Lebensversicherung a.G." },
- { 32136, "Hackburg" },
- { 32137, "TECNOSTEEL" },
- { 32138, "Universidade Federal de Itajub\0303\0241" },
- { 32139, "Applitron Datasystem AB" },
- { 32140, "Chalmers University of Technology AB" },
- { 32141, "University of Maryland Center for Environmental Science" },
- { 32142, "Solid Solutions" },
- { 32143, "Finsignia LLC" },
- { 32144, "TransHuman Design" },
- { 32145, "Allergan, Inc." },
- { 32146, "Validian Corporation" },
- { 32147, "Rob Johnson" },
- { 32148, "Individuali veikla" },
- { 32149, "UXCG" },
- { 32150, "Zetron, Inc." },
- { 32151, "NerdGroup" },
- { 32152, "Rearden Labs" },
- { 32153, "damosys ltd." },
- { 32154, "iXuros Limited" },
- { 32155, "Humana, Inc." },
- { 32156, "TechCare" },
- { 32157, "IntelMS (Pty) Ltd." },
- { 32158, "Alcom" },
- { 32159, "Ancla Internet, S.L." },
- { 32160, "Power Innovation Stromversorgungstechnik GmbH" },
- { 32161, "Trilogy Communications Ltd" },
- { 32162, "Eutecert" },
- { 32163, "Umber Systems" },
- { 32164, "JWARE TECHNOLOGIES" },
- { 32165, "WestGrid" },
- { 32166, "Computacenter" },
- { 32167, "REDCOM Laboratories, Inc" },
- { 32168, "Fiber-Span" },
- { 32169, "Turkcell Teknoloji Arastirma ve Gelistirme A.S." },
- { 32170, "MAYA Group" },
- { 32171, "SeaMicro Inc" },
- { 32172, "Prefeitura Municipal de Franco da Rocha" },
- { 32173, "Royal Observatory Edinburgh" },
- { 32174, "Universidade Estadual do Oeste do Paran\0303\0241" },
- { 32175, "Thieme ICT Services B.V" },
- { 32176, "GlobalTelecom" },
- { 32177, "Barossafarm" },
- { 32178, "ecotel communication ag" },
- { 32179, "SANDS INDIA Pvt Ltd" },
- { 32180, "Moscow Branch of Federal Migration Service, Russia" },
- { 32181, "Amuser SpA" },
- { 32182, "cubro" },
- { 32183, "Answers.com" },
- { 32184, "Instantiations Inc" },
- { 32185, "Environmental Technology, Inc." },
- { 32186, "Prolexic Technologies" },
- { 32187, "Founder International Inc." },
- { 32188, "SkyCash Sp. z o.o." },
- { 32189, "Richards-Zeta Building Intelligence" },
- { 32190, "REDOUBT, Inc." },
- { 32191, "Emergensys solutions inc." },
- { 32192, "Vanguard Rugged Storage LLC" },
- { 32193, "I-New Unified Mobile Solutions AG" },
- { 32194, "InDorse Technologies" },
- { 32195, "CommTel Network Solutions Pty Ltd." },
- { 32196, "EBFS AG" },
- { 32197, "Bunkspeed, Inc" },
- { 32198, "Esang Technologies Co., Ltd." },
- { 32199, "Louisiana Immersive Technologies Enterprise" },
- { 32200, "Seven Networks, Inc." },
- { 32201, "Sonitor Technologies AS" },
- { 32202, "Saima Sistemas, S.L." },
- { 32203, "Pixeon" },
- { 32204, "Mykola Grechukh" },
- { 32205, "Twistround Ltd" },
- { 32206, "Oksijun" },
- { 32207, "U.S. Department of Transportation" },
- { 32208, "www.jointhegrid.com" },
- { 32209, "Escuela Bancaria y Comercia" },
- { 32210, "eAgency, Inc." },
- { 32211, "Positech Consulting Ltd" },
- { 32212, "Armstrong International, Inc." },
- { 32213, "Luke Rules" },
- { 32214, "GRETA de Bordeaux" },
- { 32215, "John Anson Co. LLC" },
- { 32216, "SIOS Technology, Inc." },
- { 32217, "B\0303\0226WE Systec GmbH" },
- { 32218, "tedman.com" },
- { 32219, "NBS srl" },
- { 32220, "Esperion Therapeutics, Inc." },
- { 32221, "Intera Group, Inc." },
- { 32222, "TCM Networks" },
- { 32223, "Shanghai Kyattinfo Inc." },
- { 32224, "Epivalley Co., Ltd." },
- { 32225, "PCCW Mobile" },
- { 32226, "Ingenieurbuero f\0303\0274r innovative Informationstechnik" },
- { 32227, "ArtSoft Consult" },
- { 32228, "MERAWEX Sp. z o. o." },
- { 32229, "Nokia (formerly 'Novarra, Inc.')" },
- { 32230, "Aeris Communications, Inc." },
- { 32231, "hbcms" },
- { 32232, "Landratsamt Muenchen" },
- { 32233, "Vionis d.o.o." },
- { 32234, "KMUX Project" },
- { 32235, "ProAce International Trading Ltd." },
- { 32236, "DATASPHERE S.A." },
- { 32237, "Atea Systems Ltd." },
- { 32238, "Venture Research Inc." },
- { 32239, "Emnico Technologies Ltd" },
- { 32240, "Clipsal China Ltd." },
- { 32241, "Vederie" },
- { 32242, "Comic Relief" },
- { 32243, "FAUSER AG" },
- { 32244, "CASO - Consultores Associados de Organiza\0303\0247\0303\0265es e Inform\0303\0241tica" },
- { 32245, "PingUs Solutions oHG" },
- { 32246, "IBS.Datafort" },
- { 32247, "NewNet Communication Technologies, LLC" },
- { 32248, "Wanzl Metallwarenfabrik GmbH" },
- { 32249, "National Food Technology Research Centre" },
- { 32250, "San Francisco International Airport, Information Technology & Telecommunications" },
- { 32251, "ETRI SRC" },
- { 32252, "Pavol Jozef \0305\0240af\0303\0241rik University in Ko\0305\0241ice" },
- { 32253, "DANU Technologies" },
- { 32254, "Hoare Lea and Partners" },
- { 32255, "J. Christof GmbH" },
- { 32256, "Sonlinc A/S" },
- { 32257, "RealTime Intelligence" },
- { 32258, "WYDE Voice, LLC" },
- { 32259, "Meyer Tool, Inc." },
- { 32260, "PacketDNA Inc." },
- { 32261, "Varolii" },
- { 32262, "Cyber Operations, Inc." },
- { 32263, "Plus Net Solutions" },
- { 32264, "National Institute of Informatics" },
- { 32265, "Johnny Software Studio" },
- { 32266, "Power PLUS Communications AG" },
- { 32267, "I.S.T. Austria" },
- { 32268, "Hobby Lobby Stores, Inc." },
- { 32269, "Novantiqua multimedia" },
- { 32270, "Elseta" },
- { 32271, "Zaxmy" },
- { 32272, "Sebastien Aperghis-Tramoni" },
- { 32273, "netzwerkplanet." },
- { 32274, "Sheffield Teaching Hospitals Foundation Trust" },
- { 32275, "Interscan Navigation Systems" },
- { 32276, "SiChuan Public Information Industry Co.Ltd (SCPI)" },
- { 32277, "ZTI" },
- { 32278, "RT Systems (Pty) Ltd" },
- { 32279, "Ryan J Thompson" },
- { 32280, "Johnston Press Plc" },
- { 32281, "Videoplaza" },
- { 32282, "DaimonLab" },
- { 32283, "TBits.net GmbH" },
- { 32284, "erefer" },
- { 32285, "Sumavision Technologies Co.,Ltd" },
- { 32286, "ACD Elektronik GmbH" },
- { 32287, "Sattvik Software & Technology Resources, Ltd. Co." },
- { 32288, "eg-electronic GmbH" },
- { 32289, "CellSpotting.com" },
- { 32290, "Records For Living, Inc." },
- { 32291, "lingzhou NetWork" },
- { 32292, "Florida Department of Children and Families" },
- { 32293, "netfutura GmbH & Co. KG" },
- { 32294, "Lewis Silkin" },
- { 32295, "cPanel Inc" },
- { 32296, "Beach Horizon LLP" },
- { 32297, "s2company s.r.l." },
- { 32298, "Communication Networks, LLC" },
- { 32299, "Coatesoft" },
- { 32300, "Alcorn McBride Inc." },
- { 32301, "Siemens IT Solutions and Services" },
- { 32302, "Insert Data Here" },
- { 32303, "Anchor Systems Pty Ltd" },
- { 32304, "Lojas Maia LTDA." },
- { 32305, "KAMP Netzwerkdienste GmbH" },
- { 32306, "Soolbox Association" },
- { 32307, "Embedded Systems" },
- { 32308, "NLI Business Support as" },
- { 32309, "Chittagong Online Limited" },
- { 32310, "Edge Technologies" },
- { 32311, "CPI Progetti S.p.a." },
- { 32312, "International Hellenic Univeristy" },
- { 32313, "Red Lambda, Inc." },
- { 32314, "sp-its" },
- { 32315, "Virtual Management Technologies" },
- { 32316, "From2" },
- { 32317, "The National Library of Norway" },
- { 32318, "Tom Geudens Private Enterprise Limited" },
- { 32319, "Fernau Avionics Ltd" },
- { 32320, "Supermarch\0303\0251s Match" },
- { 32321, "eSystems, Inc." },
- { 32322, "Conseils Oy SimplySecure" },
- { 32323, "Filb.de" },
- { 32324, "Certus Digital, Inc." },
- { 32325, "BadgerNet.net" },
- { 32326, "NewAge Ukraine Inc." },
- { 32327, "RF Industries" },
- { 32328, "legendsec Technology Co.Ltd" },
- { 32329, "Shenzhen Guanri Technology Co., Ltd." },
- { 32330, "Olitechs" },
- { 32331, "Nimbus Data Systems, Inc." },
- { 32332, "Siscard S.A." },
- { 32333, "IRRINGER.DE" },
- { 32334, "CGNet" },
- { 32335, "Nippon Control System Corporation (NCS)" },
- { 32336, "Micro Ocean Technologies Sdn Bhd" },
- { 32337, "ISRACARD LDT" },
- { 32338, "United Biscuits" },
- { 32339, "Schweitzer GmbH - Architektur & Generalplanung" },
- { 32340, "DCTI" },
- { 32341, "Gangola Designs" },
- { 32342, "XORP, Inc." },
- { 32343, "Shop Direct Home Shopping Limited" },
- { 32344, "advanscope Inc." },
- { 32345, "RF Monolithics, Inc." },
- { 32346, "Digi Telecommunications Sdn Bhd" },
- { 32347, "SiteScanner Europe AB" },
- { 32348, "Cross Country Systems" },
- { 32349, "iRedMail" },
- { 32350, "Bedework.org" },
- { 32351, "Genscape, Inc" },
- { 32352, "Rindels Information Management Systems (RIMS)" },
- { 32353, "Baidu" },
- { 32354, "vertico Software GmbH" },
- { 32355, "KOCAK Corp" },
- { 32356, "Syslogic Ltd." },
- { 32357, "Solo Networks Inc." },
- { 32358, "Epiphan Systems Inc." },
- { 32359, "UNIVERSITY OF UDINE" },
- { 32360, "Dneprooblenergo" },
- { 32361, "CAIR" },
- { 32362, "IDT SPC" },
- { 32363, "Engineering & Software GmbH" },
- { 32364, "Universidade Federal do Estado do Rio de Janeiro UNIRIO" },
- { 32365, "Mino Wireless USA Inc" },
- { 32366, "Pragmatic Data" },
- { 32367, "Communication Automation Corporation" },
- { 32368, "Faculty of Information Technology - Nguyen Tat Thanh College" },
- { 32369, "Uptime-IT" },
- { 32370, "University of Zielona Gora" },
- { 32371, "Complex IT Solutions" },
- { 32372, "Web Sages" },
- { 32373, "paternostro.org" },
- { 32374, "RidgeviewTel LLC" },
- { 32375, "Secorix, Inc." },
- { 32376, "RAM Mobile Data" },
- { 32377, "archIT" },
- { 32378, "TB Solutions Security S.A." },
- { 32379, "Lake Michigan Credit Union" },
- { 32380, "Instituto Curitiba de Inform\0303\0241tica" },
- { 32381, "Milwaukee County Government" },
- { 32382, "Mixtur Interactive, Inc." },
- { 32383, "Iojik Inc." },
- { 32384, "Henchmonkey" },
- { 32385, "Beijing Bohui Science & Technology Co., Ltd" },
- { 32386, "Proxicast, LLC" },
- { 32387, "Etisalat" },
- { 32388, "The NetBSD Foundation" },
- { 32389, "MILLENNIUM ARTS Group" },
- { 32390, "ID7 Ltd." },
- { 32391, "Systemhuset Episteme AS" },
- { 32392, "Secure-MSP GmbH" },
- { 32393, "Onesto Services Oy" },
- { 32394, "Solutions and Services, a.s." },
- { 32395, "SalamanderSoft Ltd" },
- { 32396, "Ohio University" },
- { 32397, "iRobot Corporation" },
- { 32398, "Eaton Vance Management" },
- { 32399, "Nederland Live" },
- { 32400, "WaveMaker Software, Inc." },
- { 32401, "AMP Financial Services New Zealand" },
- { 32402, "Greenson Pty Ltd" },
- { 32403, "China fuzhou evideo" },
- { 32404, "NetHawk Oyj" },
- { 32405, "Selectron Systems AG" },
- { 32406, "Koncept Sp. z o.o." },
- { 32407, "GeCOSoft Consulting GmbH" },
- { 32408, "Daniel Andrade Costa Silva" },
- { 32409, "Voxel dot Net, Inc." },
- { 32410, "RF Code Inc" },
- { 32411, "Swedish Orient Line" },
- { 32412, "Minot Enterprises, Inc." },
- { 32413, "ECbridges, Inc." },
- { 32414, "Veracity UK" },
- { 32415, "Comax BV." },
- { 32416, "DOCOUT S.L." },
- { 32417, "Kinamik Data Integrity S.L." },
- { 32418, "Marne & Elk Horn Telephone Co" },
- { 32419, "Institut Straumann AG" },
- { 32420, "Payment Processing, Inc." },
- { 32421, "Bertholdsson" },
- { 32422, "Universidade Federal de Vi\0303\0247osa" },
- { 32423, "Rogaland fylkeskommune (County of Rogaland)" },
- { 32424, "Harry Jackson - Boozled" },
- { 32425, "CRW Data AB" },
- { 32426, "Institute for Studies in Theoretical Physics and Mathematics (IPM)" },
- { 32427, "Bornis Group" },
- { 32428, "Sepehr S. T. Co. Ltd." },
- { 32429, "University of Isfahan" },
- { 32430, "NADAM CO.,LTD" },
- { 32431, "Yukthi Systems Pvt. Ltd" },
- { 32432, "LDAP Study Union" },
- { 32433, "NetCeler" },
- { 32434, "Telenor Telecom Solutions AS" },
- { 32435, "TamoSoft Ltd." },
- { 32436, "Intersec" },
- { 32437, "Obsidian Research" },
- { 32438, "PROMONT Solu\0303\0247\0303\0265es Ltda." },
- { 32439, "ShangHai YoSee Ltd." },
- { 32440, "kinopsis.net" },
- { 32441, "Netwell Ltd." },
- { 32442, "MPS.ETI.BR" },
- { 32443, "Internet Research Institute, Inc." },
- { 32444, "Fibercom Technologies (ShenZhen) CO.,LTD" },
- { 32445, "Lamoree Software" },
- { 32446, "Paessler AG" },
- { 32447, "CASERIS GmbH" },
- { 32448, "Addition IT Sweden AB" },
- { 32449, "Cuatrecasas Abogados" },
- { 32450, "MICRON ENGINEERING DI MANCA MASSIMO" },
- { 32451, "B-Source SA" },
- { 32452, "Damaya UK" },
- { 32453, "Terrapin Associates" },
- { 32454, "Atrato, Inc." },
- { 32455, "E-Tag, Inc" },
- { 32456, "Freebox SAS" },
- { 32457, "Iptec, Inc." },
- { 32458, "Colorado Clinical Research ECG Core Lab" },
- { 32459, "HappyEnd" },
- { 32460, "The Digital Freehold" },
- { 32461, "Brinker Pharmaconsulting" },
- { 32462, "VIP Systems Co., Ltd." },
- { 32463, "Coalese Corporation" },
- { 32464, "IDH GmbH" },
- { 32465, "All Options International B.V." },
- { 32466, "guifi.net" },
- { 32467, "SysDesign" },
- { 32468, "Teamnett AS" },
- { 32469, "Network Design GmbH" },
- { 32470, "Forschungszentrum J\0303\0274lich" },
- { 32471, "Daitec GmbH" },
- { 32472, "Tikona Digital Networks" },
- { 32473, "Example Enterprise Number for Documentation Use" },
- { 32474, "Kialco Group" },
- { 32475, "Ambit Communicate" },
- { 32476, "Bell's Booking Agency" },
- { 32477, "ISAccountable" },
- { 32478, "RF Window Co., Ltd." },
- { 32479, "AppEx Networks" },
- { 32480, "Ollix" },
- { 32481, "Unitronics" },
- { 32482, "Qnective AG (formerly 'Qporter Schweitz AG')" },
- { 32483, "Octrooicentrum Nederland" },
- { 32484, "Escatronic GmbH" },
- { 32485, "Live Interactive S.A." },
- { 32486, "DCK Worldwide" },
- { 32487, "League of American Orchestras" },
- { 32488, "The College of New Jersey" },
- { 32489, "Alan Savage" },
- { 32490, "Pringo" },
- { 32491, "Beijing UniTrust Tech. Service Co.,Ltd." },
- { 32492, "maas-martin.nl" },
- { 32493, "CPS Color Equipment S.p.A." },
- { 32494, "Kwasniak" },
- { 32495, "Screwfix Ltd" },
- { 32496, "MindLogix" },
- { 32497, "Centex Service Co. LLC." },
- { 32498, "Clockwork Active Media Systems, LLC" },
- { 32499, "TecCon, inc." },
- { 32500, "Virtual Computer, Inc." },
- { 32501, "Telemisis Ltd" },
- { 32502, "Pancetera Software, Inc." },
- { 32503, "Purewire Inc." },
- { 32504, "Washington Division of URS Corporation" },
- { 32505, "Aptix IT SRL" },
- { 32506, "KOR Networks" },
- { 32507, "First Community Services, Inc" },
- { 32508, "Siemon" },
- { 32509, "luminis" },
- { 32510, "Watchdata" },
- { 32511, "Fountainhead Investments Ltd." },
- { 32512, "Zen Soluciones" },
- { 32513, "Buerologistik GmbH & Co. KG" },
- { 32514, "JSC Effortel" },
- { 32515, "Rebtel Networks AB" },
- { 32516, "Gisdata" },
- { 32517, "Accsys GmbH" },
- { 32518, "VirtuOz" },
- { 32519, "Wireless Mundi S.L." },
- { 32520, "Anglo European Aviation AG" },
- { 32521, "kontur networx" },
- { 32522, "Creare Inc." },
- { 32523, "ACN - Ag\0303\0250ncia Catalana de Not\0303\0255cies" },
- { 32524, "Zaxia" },
- { 32525, "Gold Lasso, Inc." },
- { 32526, "Object Partners Inc." },
- { 32527, "Yugma Inc." },
- { 32528, "Acquia, Inc" },
- { 32529, "Warped Communications, Inc." },
- { 32530, "uid0 Networks" },
- { 32531, "Nokeena Networks Inc." },
- { 32532, "Regis Corporation" },
- { 32533, "Xue Can" },
- { 32534, "MB Connect Line GmbH" },
- { 32535, "ZT Systems" },
- { 32536, "Ergobyte Informatics" },
- { 32537, "voidmage.net" },
- { 32538, "NetCare Service Co., Ltd." },
- { 32539, "Cinnober Financial Technology AB" },
- { 32540, "Manlight" },
- { 32541, "Alsion" },
- { 32542, "Banco Credicoop" },
- { 32543, "Raidbr Solucoes em Informatica LTDA" },
- { 32544, "Kentucky Department of Education" },
- { 32545, "Army & Air Force Exchange Service" },
- { 32546, "Valcom Inc." },
- { 32547, "SenSage, Inc" },
- { 32548, "University of North Carolina - General Administration" },
- { 32549, "Govierno de la Provincia de Corrientes" },
- { 32550, "COVETEL R.S:" },
- { 32551, "Valunex" },
- { 32552, "FreeIT" },
- { 32553, "Hopewiser Ltd" },
- { 32554, "Vincent Wang" },
- { 32555, "RND.fr" },
- { 32556, "Bruno Medici Consulting" },
- { 32557, "Hungarian Chamber of Civil Law Notaries (MOKK)" },
- { 32558, "Kleinhenz Elektronik GmbH" },
- { 32559, "Paradigma Tecnologico S.L." },
- { 32560, "Tsubata Engineering Co., Ltd." },
- { 32561, "E.D.S.I. Trend Argentina S.A." },
- { 32562, "Ambrado Inc." },
- { 32563, "DRK gemeinn\0303\0274tzige Krankenhaus GmbH Sachsen" },
- { 32564, "Asidev s.r.l." },
- { 32565, "Neissware GmbH" },
- { 32566, "I2C, Industrie Innovation Conseil" },
- { 32567, "Alastria Networks Limited" },
- { 32568, "Integral" },
- { 32569, "Gayux" },
- { 32570, "Hillyton Electronic Technology Co., Ltd." },
- { 32571, "Peering Portal, Inc." },
- { 32572, "Ciavox" },
- { 32573, "ONI-Net C&S" },
- { 32574, "DSIT - ReimsMetropole" },
- { 32575, "Daniel Palffy" },
- { 32576, "Aydayev's Investment Business Group" },
- { 32577, "Proximetry, Inc." },
- { 32578, "GeekDude.com" },
- { 32579, "Gianluca D'Andrea" },
- { 32580, "HDT Hanseatische Datentechnik GmbH" },
- { 32581, "REMOTEK CORPORATION" },
- { 32582, "N2 Networks" },
- { 32583, "Litespan Inc." },
- { 32584, "DesignArt Networks" },
- { 32585, "VIGITRONIC" },
- { 32586, "Instituto Venezolano de Investigaciones Cientificas" },
- { 32587, "WiKID Systems, Inc." },
- { 32588, "MVLogix" },
- { 32589, "Effinger" },
- { 32590, "Axiom Networking" },
- { 32591, "Deltares" },
- { 32592, "Pintu" },
- { 32593, "Crystal Media Inc." },
- { 32594, "Invensys Robertshaw Industrial Products" },
- { 32595, "Nextgen Networks" },
- { 32596, "PLATH PROCITEC Suisse AG" },
- { 32597, "Double Negative" },
- { 32598, "Providence Life Services" },
- { 32599, "SUPEMIR" },
- { 32600, "ClearCrypt Inc." },
- { 32601, "GenCore Candeo, Ltd." },
- { 32602, "Faculdade SEAMA" },
- { 32603, "DVS Solutions" },
- { 32604, "FRC Component Products" },
- { 32605, "Structual Biology Research Center,High Energy Accelerator Research Organization,KEK" },
- { 32606, "Crystaline Infotech" },
- { 32607, "Goldan" },
- { 32608, "Federal Home Loan Bank" },
- { 32609, "Development Consultants Incorporated" },
- { 32610, "Jilin University Information Technologies Co., Ltd." },
- { 32611, "IMage Manipulation Systems Inc" },
- { 32612, "MORISAKI TAKATOSI" },
- { 32613, "California State Legislature" },
- { 32614, "YOU Telecom India Pvt. Ltd." },
- { 32615, "ELPROC sp. z o.o." },
- { 32616, "OpenSourceXpress Ltd." },
- { 32617, "Polytechnical Engineering College in Subotica" },
- { 32618, "Fiok i Wsp\0303\0263lnicy Sp. z o.o." },
- { 32619, "Movik Networks, Inc." },
- { 32620, "AnueSystems" },
- { 32621, "Franklin University" },
- { 32622, "CACE Technologies" },
- { 32623, "Kuni Automotive" },
- { 32624, "Khomp Ind. e Com. Ltda" },
- { 32625, "GoPC Pty Ltd" },
- { 32626, "Security Cube" },
- { 32627, "Emageon, Inc." },
- { 32628, "AXIOMTEK Co., Ltd." },
- { 32629, "DIGI Ltd" },
- { 32630, "Trezorix" },
- { 32631, "LIYO Technology Co. Ltd." },
- { 32632, "Excluvior" },
- { 32633, "Ors TISZAY" },
- { 32634, "Bluetick, Inc." },
- { 32635, "Sisters of Mercy Health Systems" },
- { 32636, "ITS Electronics Inc" },
- { 32637, "Perceptech Inc." },
- { 32638, "iStor Networks Inc." },
- { 32639, "Tribunal Electoral del Poder Judicial de la Federaci\0303\0263n" },
- { 32640, "NeoCatena Networks Inc." },
- { 32641, "Security Services Framework" },
- { 32642, "F\0303\0266reningen DIS" },
- { 32643, "Krakowskie e-Centrum Informatyczne JUMP" },
- { 32644, "BWS Consultores C.A." },
- { 32645, "Coty Inc." },
- { 32646, "Pneumatic Tube Products Co, Inc" },
- { 32647, "Federal Defender Office" },
- { 32648, "Vortex Technology Networks" },
- { 32649, "Beijing Raycomm Digital Technology Co.,LTD" },
- { 32650, "Namtrac Kft." },
- { 32651, "Newtec Communications GmbH" },
- { 32652, "Machine VFX" },
- { 32653, "Piksel Ltd." },
- { 32654, "Institut f\0303\0274r Experimentelle Kernphysik, KIT" },
- { 32655, "Classics Animated" },
- { 32656, "Hypios" },
- { 32657, "particle dynamics GmbH" },
- { 32658, "Iconoclast IT" },
- { 32659, "SAT-TRAKT d.o.o." },
- { 32660, "Joachim Keltsch" },
- { 32661, "MITSUBISHI ELECTRIC ENGINEERING CO.,LTD." },
- { 32662, "NTTME" },
- { 32663, "IFIN Sistemi srl a socio unico" },
- { 32664, "DSR Information Technologies Ltd." },
- { 32665, "Veccsa S.A." },
- { 32666, "Integrated Healthcare Solutions" },
- { 32667, "Ultrablend LLC" },
- { 32668, "IPFire.org" },
- { 32669, "consistec Engineering & Consulting GmbH" },
- { 32670, "Consilience Software" },
- { 32671, "Graspi" },
- { 32672, "betabuild.net" },
- { 32673, "WAB Sicherheitssysteme GmbH" },
- { 32674, "GeekNode" },
- { 32675, "Cracow University of Economics" },
- { 32676, "Softwarehuset.DK" },
- { 32677, "EMI Music Ltd." },
- { 32678, "Framestore Ltd" },
- { 32679, "Zinc Solutions" },
- { 32680, "Rentabiliweb Group" },
- { 32681, "Atwal Inc" },
- { 32682, "Text Team GmbH & Co. KG" },
- { 32683, "TOKYO KEIKI INC." },
- { 32684, "Healthtrans LLC" },
- { 32685, "Redefine Sp. z o.o." },
- { 32686, "Holly Corporation" },
- { 32687, "Digital Finance SPDA" },
- { 32688, "Gigle Semiconductor" },
- { 32689, "MWJ Computing" },
- { 32690, "Comrex Corporation" },
- { 32691, "eXMeritus Software Federal Systems, Inc" },
- { 32692, "Amcom Telecommunications Ltd" },
- { 32693, "E-sz\0303\0241mla Zrt." },
- { 32694, "ComputerPride" },
- { 32695, "VOZPP" },
- { 32696, "ZAKLAD PRODUKCYJNY TEL-KA S.C." },
- { 32697, "ACO Serverin Ahlmann GmbH & Co. KG" },
- { 32698, "SE-Elektronic GmbH" },
- { 32699, "Thales Alenia Space France" },
- { 32700, "INBUSS Informatikai Szolg\0303\0241ltat\0303\0263 \0303\0251s Kereskedelmi Kft." },
- { 32701, "Loyalty Partner GmbH" },
- { 32702, "Joint Stock Company \"NPO RusBITech\"" },
- { 32703, "Centre de Recherche Henri Tudor - SANTEC" },
- { 32704, "JSC ErshovTelecom" },
- { 32705, "dSys e.K." },
- { 32706, "Reech Capital Ltd" },
- { 32707, "Pi Consulting (UK) Limited" },
- { 32708, "Dimaco Systems S.R.L." },
- { 32709, "AirTies" },
- { 32710, "Lojas Renner S.A." },
- { 32711, "fides AG" },
- { 32712, "Linden Lab" },
- { 32713, "Flox-arts.net" },
- { 32714, "IPS MeteoStar" },
- { 32715, "IBM Managed Security Services" },
- { 32716, "Alea Soluciones SLL" },
- { 32717, "Gemintek Corporation" },
- { 32718, "Southwestern University of Finance and Economics" },
- { 32719, "3Nokta Bilisim Teknolojileri Ltd." },
- { 32720, "CVR Transport Kft" },
- { 32721, "RTPHYS" },
- { 32722, "MAASTRO" },
- { 32723, "Pacemaker Cluster Project" },
- { 32724, "AIRDATEC TECNICOS, S.L." },
- { 32725, "Trans Iceland" },
- { 32726, "Tatis" },
- { 32727, "Webtech as" },
- { 32728, "Grid Dynamics Consulting Services, Inc" },
- { 32729, "EMS Satcom" },
- { 32730, "Mobile For You - M4U" },
- { 32731, "obviously-nice" },
- { 32732, "W.K. Kellogg Foundation" },
- { 32733, "Phybridge Inc" },
- { 32734, "City of Seattle" },
- { 32735, "SecurityNet.cz s.r.o." },
- { 32736, "SHD System-Haus-Dresden GmbH" },
- { 32737, "Meghnaben Daxeshbhai Patel" },
- { 32738, "Delta Nusantara Networks Co., Ltd." },
- { 32739, "Saimaan Lehtipaino Oy" },
- { 32740, "Lehtikanta Oy" },
- { 32741, "Savon Paino Oy" },
- { 32742, "H\0303\0244meen Paino Oy" },
- { 32743, "Sanomala Oy" },
- { 32744, "KAMEKO Bt" },
- { 32745, "DURAG data systems" },
- { 32746, "Instituto de Biolog\0303\0255a, Universidad Nacional Aut\0303\0263noma de M\0303\0251xico" },
- { 32747, "telenet AG Rhein-Main" },
- { 32748, "KolosStudio" },
- { 32749, "TrustMission" },
- { 32750, "LigoWave" },
- { 32751, "Solytron" },
- { 32752, "John Will Motors" },
- { 32753, "Omniture Inc." },
- { 32754, "Dexcel Electronics Designs Pvt Ltd" },
- { 32755, "Wesabe, Inc" },
- { 32756, "Creative Solutions Laboratories Sp. z o.o." },
- { 32757, "ChartConnect Inc." },
- { 32758, "ANAGKY BVBA" },
- { 32759, "PRIM'X Technologies" },
- { 32760, "Koliada" },
- { 32761, "Deliberant" },
- { 32762, "AKSolutions" },
- { 32763, "YMAGIS" },
- { 32764, "inTechnology PLC" },
- { 32765, "WebHost Asia Pacific Pty Ltd" },
- { 32766, "Capricode" },
- { 32767, "JPPA Gerenciamento e Projetos S/S LTDA." },
- { 32768, "Educational Service Unit 6" },
- { 32769, "BIZICLE" },
- { 32770, "Hoedl-Online-Systemtechnik" },
- { 32771, "Fujitsu Tohoku Systems Ltd." },
- { 32772, "Declera Ltd." },
- { 32773, "Jeremy Self" },
- { 32774, "wei fang lesheng electronic CO.,LTD" },
- { 32775, "Gigaset Communications" },
- { 32776, "Harry J.E Day" },
- { 32777, "BowBridge Software" },
- { 32778, "Raiffeisen Bank Hungary" },
- { 32779, "BBS AS" },
- { 32780, "synergetic AG" },
- { 32781, "Groupe Chevalier" },
- { 32782, "Conseil G\0303\0251n\0303\0251ral du Morbihan" },
- { 32783, "ECRIN SYSTEMS" },
- { 32784, "Amplia Soluciones S.L." },
- { 32785, "PWI Consultants" },
- { 32786, "MasonRay Networks" },
- { 32787, "Aprend Technology" },
- { 32788, "Ennoris Trans" },
- { 32789, "Institute of Economics, Management and Law" },
- { 32790, "Raz-Lee Security" },
- { 32791, "ICSMED AG" },
- { 32792, "Atex Group Ltd." },
- { 32793, "Shenick Network Systems" },
- { 32794, "LuTong Optoelectronic Technology Co.,Ltd" },
- { 32795, "Westnet Ptd Ltd" },
- { 32796, "i-STS Manufactuiring" },
- { 32797, "Asempra Technologies" },
- { 32798, "Netlinx, Inc." },
- { 32799, "www.thingall.com" },
- { 32800, "www.neuq.edu.cn" },
- { 32801, "ObjectFX" },
- { 32802, "Inuk Networks" },
- { 32803, "Research Institute for Linguistics, Hungarian Academy of Sciences" },
- { 32804, "Unify Software and Solutions GmbH & Co." },
- { 32805, "CR Host" },
- { 32806, "scientia.net" },
- { 32807, "TVACE" },
- { 32808, "SynTech Soc. Coop. a R.L." },
- { 32809, "Evalesc GmbH" },
- { 32810, "Lancashire Constabulary" },
- { 32811, "Gemnet bv" },
- { 32812, "ICFO" },
- { 32813, "GXPCONSULT LIMITED" },
- { 32814, "RealTime7 Inc." },
- { 32815, "Consert, Inc" },
- { 32816, "AREYOUNET.COM" },
- { 32817, "Shifted Labs" },
- { 32818, "Tecton Limited" },
- { 32819, "Infonet Network Systems" },
- { 32820, "Mundo Linux" },
- { 32821, "martin mollet informatik" },
- { 32822, "PGS" },
- { 32823, "Hextra Digital, S.L.L." },
- { 32824, "Free Open Source Solutions Inc." },
- { 32825, "LS cable" },
- { 32826, "Tongji University" },
- { 32827, "Siemens I MO TS" },
- { 32828, "Guntermann & Drunck GmbH Systementwicklung" },
- { 32829, "Marc Cain GmbH" },
- { 32830, "Questora Software, CJSC" },
- { 32831, "IDS" },
- { 32832, "Optech Fibres Limited" },
- { 32833, "Universit\0303\0251 Lille 2 Droit et Sant\0303\0251" },
- { 32834, "ANTALIS SPAIN" },
- { 32835, "Data Driven Logistics Limited" },
- { 32836, "C2SAT communications AB" },
- { 32837, "Lohmann GmbH&Co.KG" },
- { 32838, "University of AJK CS&IT Campus Mirpur azad Kashmir" },
- { 32839, "olea medical" },
- { 32840, "Krum Independent School District" },
- { 32841, "Constant Contact" },
- { 32842, "Seidl KEG" },
- { 32843, "Information Computing Center of Ministery of Communications and Information Technologies" },
- { 32844, "die-rudolphs" },
- { 32845, "Metric Systems Corporation" },
- { 32846, "Cougaar Software, Inc." },
- { 32847, "DataStress" },
- { 32848, "Arquila Limited" },
- { 32849, "Active Broadband Neworks Inc" },
- { 32850, "C4i Pty Ltd" },
- { 32851, "Aytel" },
- { 32852, "Towerstream" },
- { 32853, "Pixel8 Networks" },
- { 32854, "OmniGlobe Networks, Inc." },
- { 32855, "Total Transaction Management, LLC" },
- { 32856, "JL Ingram & Associates CC T/A The Hardware Junction" },
- { 32857, "Openware" },
- { 32858, "nerdnet.ca" },
- { 32859, "Escuela Polit\0303\0251cnica Nacional" },
- { 32860, "Expert Systems (Pvt.) Ltd." },
- { 32861, "Shenzhen LinkPower Network Systems Co.,LTD." },
- { 32862, "B\0303\0266ning IT-Service" },
- { 32863, "OmniTI Labs" },
- { 32864, "Workflow.com, LLC" },
- { 32865, "Heol Design" },
- { 32866, "rockyluke" },
- { 32867, "University of Economics Prague" },
- { 32868, "Diamante Technology Advisors, Inc." },
- { 32869, "Gravitas MM Ltd" },
- { 32870, "Fujian Sunnada Communication Co., Ltd" },
- { 32871, "BUPT Incowin Information Communication Technology Institute Ltd." },
- { 32872, "Royal Alberts Broadcasting Network" },
- { 32873, "KONE Corporation" },
- { 32874, "Novatium Solutions Private Limited" },
- { 32875, "vedicis" },
- { 32876, "Marian Fotul" },
- { 32877, "Radio Amateurs Against Packet Radio" },
- { 32878, "MediaPod SARL" },
- { 32879, "Eugene 4J School District" },
- { 32880, "Knerer & Lang Architekten GmbH" },
- { 32881, "BeeMobile" },
- { 32882, "GameAccount Global Ltd" },
- { 32883, "One23 Designs" },
- { 32884, "Chemnitzer Verlag und Druck GmbH & Co. KG" },
- { 32885, "H-Net AG" },
- { 32886, "Restorepoint (formerly 'TADASoft Ltd')" },
- { 32887, "Joseph King ICT Consultants" },
- { 32888, "Bizsensors" },
- { 32889, "The College at Brockport State University of New York" },
- { 32890, "Bigred Solutions Ltd" },
- { 32891, "Jangwhan Kim" },
- { 32892, "caplog-x GmbH" },
- { 32893, "BJ's Deisgn & Consulting, Inc." },
- { 32894, "Touro College" },
- { 32895, "BRICOM Technology Co., Ltd." },
- { 32896, "Jarn AS" },
- { 32897, "Megware Computer GmbH" },
- { 32898, "Spectrum Health" },
- { 32899, "Quist Ltd." },
- { 32900, "Dimensional Insight" },
- { 32901, "SAGI-B Expert Group Sp. z o.o." },
- { 32902, "Verizon" },
- { 32903, "Lincoln Laboratory" },
- { 32904, "NUMLOG" },
- { 32905, "Cognito Ltd" },
- { 32906, "Rorotika Technologies" },
- { 32907, "NPO RTC, Ltd." },
- { 32908, "ADVENAGE GmbH" },
- { 32909, "Kinek Technologies Inc." },
- { 32910, "Impeq Technologies BV" },
- { 32911, "Brian Raaen Network Consulting" },
- { 32912, "Duck Creek Technologies, Inc" },
- { 32913, "Electrodata Recorders Pty Ltd" },
- { 32914, "Pharmacy Chain 36.6" },
- { 32915, "Edinburgh's Telford College" },
- { 32916, "Lane Community College" },
- { 32917, "GT Apps Limited" },
- { 32918, "Institut Sainte Catherine" },
- { 32919, "Barking Iguana" },
- { 32920, "ETSA" },
- { 32921, "Orbis Technology Ltd" },
- { 32922, "Verathon" },
- { 32923, "Alastair Carr" },
- { 32924, "Menturagroup Ltd" },
- { 32925, "Treck Inc." },
- { 32926, "WebOnyx" },
- { 32927, "Unlabeled Artists Group, LLC" },
- { 32928, "BrightHouse" },
- { 32929, "Squarewave Computing" },
- { 32930, "Wolfgang Karall EDV Consulting and Training" },
- { 32931, "TOTEC AMENITY LIMITED (formerly 'easynet, inc.')" },
- { 32932, "Direct Telecom Ltd" },
- { 32933, "Conduct AS" },
- { 32934, "Institute of Biophysics, AS CR, v.v.i." },
- { 32935, "Amalto Technologies" },
- { 32936, "Atelier Decora" },
- { 32937, "uma information technology GmbH" },
- { 32938, "Server Racks Australia" },
- { 32939, "Fachhochschule Hannover" },
- { 32940, "NCC AB" },
- { 32941, "Azet.sk, a.s." },
- { 32942, "Voltage Security" },
- { 32943, "HEXIOS" },
- { 32944, "drs4drs" },
- { 32945, "Norsk eSport DA" },
- { 32946, "Manuel Meistrowitz" },
- { 32947, "Nuclemed S.A." },
- { 32948, "UniFirst Corporation" },
- { 32949, "SunWater" },
- { 32950, sminmpec_unknown }, /* (Added by Wireshark) */
- { 32951, "Wellseeing Communication Technology Co.,Ltd" },
- { 32952, "PheeNet Technology Corp." },
- { 32953, "YACOUB Automatiom GmbH" },
- { 32954, "Italiaonline S.p.A." },
- { 32955, "Hrvatske sume d.o.o" },
- { 32956, "ipct.net" },
- { 32957, "IN Switch Solutions" },
- { 32958, "YMMV LLP" },
- { 32959, "Audit Bureau - Qatar" },
- { 32960, "Ringsted Kommune" },
- { 32961, "KBC Consumer Finance" },
- { 32962, "Beijing Gefei Tech. Co., Ltd" },
- { 32963, "Taekjin Solutions" },
- { 32964, "Brand Up LLC" },
- { 32965, "REAL Solutions S.A." },
- { 32966, "eSpida Limited" },
- { 32967, "Centro de Tecnologia da Informa\0303\0247\0303\0243o Renato Archer" },
- { 32968, "HELiX Software + Support GmbH" },
- { 32969, "Odin TeleSystems Inc" },
- { 32970, "Caltha - Krzewski, Mach, Potempski Sp. J." },
- { 32971, "MUZICALL" },
- { 32972, "TransWorks, Inc." },
- { 32973, "POP.PL - Internetowe Systemy Sieciowe" },
- { 32974, "Stimulus Software" },
- { 32975, "CircleSoft Llc" },
- { 32976, "HyC Am\0303\0251ricas" },
- { 32977, "TELoIP" },
- { 32978, "IntelliDOT Corporation" },
- { 32979, "XIX" },
- { 32980, "Hitachi Systems Engineering Services, Ltd. (formerly 'Hitachi Systems Engineering and Solutions, Ltd.')" },
- { 32981, "Arcadyan Technology Corporation" },
- { 32982, "Trends Telematics BV" },
- { 32983, "Open Computing Solutions" },
- { 32984, "Advantage Telecom" },
- { 32985, "Philips Electronics (Israel) LTD - Philips HealthCare" },
- { 32986, "Kommunik8 Inc." },
- { 32987, "Barrowa" },
- { 32988, "Dott. Giulimondi Gabriele" },
- { 32989, "in-volv" },
- { 32990, "Prahm IT-Systemdienstleistungen" },
- { 32991, "dix.cz" },
- { 32992, "ladava.com" },
- { 32993, "OpenSAF Foundation" },
- { 32994, "Standingstone" },
- { 32995, "Vendio Services, Inc." },
- { 32996, "GOURMET NAVIGATOR INCORPORATED" },
- { 32997, "Tuijnman Professional Services" },
- { 32998, "Shanghai DareGlobal Technologies Co.,Ltd." },
- { 32999, "Air Transportation Advancement Program" },
- { 33000, "Zeon Corporation" },
- { 33001, "Micro Talk Systems Corp." },
- { 33002, "Open End AB" },
- { 33003, "SHENZHEN GONGJIN ELECTRONICS CO.,LTD" },
- { 33004, "Universal Scientific Industrial (Shanghai) Co., Ltd" },
- { 33005, "Artio Oy" },
- { 33006, "MGB-Tech B.V.B.A." },
- { 33007, "Schoenhofer Sales And Engineering GmbH" },
- { 33008, "TV 2" },
- { 33009, "Stadtverwaltung Mannheim" },
- { 33010, "IRB Barcelona" },
- { 33011, "digital performance" },
- { 33012, "FASTFOOD-SERVICE LTD." },
- { 33013, "NexAira, Inc." },
- { 33014, "Network Zen" },
- { 33015, "Emilie Myers and Associates" },
- { 33016, "Ajuntament de Barcelona" },
- { 33017, "Mobito Inc" },
- { 33018, "Pilin-Echtar.NET" },
- { 33019, "Huntsville Hospital" },
- { 33020, "Rebel 2000 Limited" },
- { 33021, "WFG PARTICIPA\0303\0207\0303\0225ES S.A." },
- { 33022, "Simon & Stolle GbR" },
- { 33023, "Eoos Technologies GmbH" },
- { 33024, "Lenovo Chinaweal System & Service Co.,Ltd" },
- { 33025, "Atlanta Advanced Communications Holdings Limited" },
- { 33026, "Positive Advisory S.A." },
- { 33027, "CAJA DE AHORROS DE GALICIA" },
- { 33028, "Prassel S.r.l." },
- { 33029, "CJSC \0342\0200\0234Borisoglebsk Communication System\"" },
- { 33030, "Timico Ltd" },
- { 33031, "C.G.C.,a.s." },
- { 33032, "CTP GmbH" },
- { 33033, "Probability PLC" },
- { 33034, "Taleo Inc." },
- { 33035, "InGenius Software" },
- { 33036, "A.\0303\0266. Krankenhaus der Elisabethinen Linz" },
- { 33037, "Broadcast International" },
- { 33038, "Fluor Corporation" },
- { 33039, "Adapt4 LLC" },
- { 33040, "BeatleNet Ltd." },
- { 33041, "ZEIT Verlag Gerd Bucerius GmbH & CO KG" },
- { 33042, "bitrausch" },
- { 33043, "Shared Autonomous sYstems" },
- { 33044, "Mantica Solutions S.L." },
- { 33045, "JinPeng" },
- { 33046, "NEXTWERK IT-Services GmbH" },
- { 33047, "Freifunk Potsdam e.V." },
- { 33048, "Brand" },
- { 33049, "Mellanox Technologies LTD" },
- { 33050, "China IWNCOMM Co., Ltd." },
- { 33051, "flykernel" },
- { 33052, "Dhyan Infotech Inc.," },
- { 33053, "Vialis bv." },
- { 33054, "iPLON GmbH The Infranet Company" },
- { 33055, "Van Dijk Educatie BV" },
- { 33056, "Cambridge Research Systems Ltd." },
- { 33057, "CRISOL DE FRUTOS SECOS S.A.T" },
- { 33058, "Stratus Telecommunications" },
- { 33059, "MOBITRUM" },
- { 33060, "International Computer Science Institute" },
- { 33061, "University of Shanghai for Science & Technology" },
- { 33062, "Netvision Telecom Inc." },
- { 33063, "DVN Technology Limited" },
- { 33064, "A2B Electronics AB" },
- { 33065, "CertiCon a.s." },
- { 33066, "SmartSynch, Inc." },
- { 33067, "Lake Cumberland District Health Department" },
- { 33068, "F2Ware Inc." },
- { 33069, "Grieshaber Logistik AG" },
- { 33070, "Alkaloid Networks LLC" },
- { 33071, "BBMS AS" },
- { 33072, "subsist GmbH" },
- { 33073, "System Analysis and Information Technologies Conference" },
- { 33074, "Oryx Mail Systems GmbH" },
- { 33075, "linux systeme thomas" },
- { 33076, "SCORE42 SAS (formerly 'Virtual Internet Service Provider')" },
- { 33077, "InformSvyazStroi, Ltd." },
- { 33078, "Ganymeade Systems" },
- { 33079, "EmblaCom Oy" },
- { 33080, "Drexler Hard- und Software e.K." },
- { 33081, "KOGAN" },
- { 33082, "zozs.se" },
- { 33083, "Seafreeze Acquisition LLC," },
- { 33084, "Box and Dice Software Pty Ltd" },
- { 33085, "Mueller Ltd. & Co. KG" },
- { 33086, "ims Info Management System AG" },
- { 33087, "International School of Stuttgart e. V." },
- { 33088, "Versatile Knowledge System" },
- { 33089, "Fachhochschule f\0303\0274r \0303\0266ffentliche Verwaltung NRW" },
- { 33090, "xxlboy" },
- { 33091, "TCRP" },
- { 33092, "Opsource" },
- { 33093, "LexisNexis RIAG" },
- { 33094, "Netactive Systems Ltd" },
- { 33095, "HyTrust, Inc." },
- { 33096, "Hard To Port Productions" },
- { 33097, "Adligo Inc" },
- { 33098, "Gradient Effects" },
- { 33099, "Rudra Nevatia" },
- { 33100, "ELITE Sistemas" },
- { 33101, "Danube Data Center GmbH" },
- { 33102, "Engelsburg Gymniasum" },
- { 33103, "EmisFR" },
- { 33104, "KyaPanel" },
- { 33105, "D-ns" },
- { 33106, "Softbooking" },
- { 33107, "Meetup, Inc." },
- { 33108, "Nexen Services, Alter Way Hosting" },
- { 33109, "Cumquat Information Technology BV" },
- { 33110, "ITD Network SA" },
- { 33111, "dickicht.org GbR, Ragnar Nevries & Robert Waltemath" },
- { 33112, "Vidient Systems, Inc." },
- { 33113, "FXhome" },
- { 33114, "Maricopa County Community College District" },
- { 33115, "Shamir Systems Ltd." },
- { 33116, "Solvo, Ltd." },
- { 33117, "Linuxense Information Systems Pvt. Ltd." },
- { 33118, "Freescale Semiconductor" },
- { 33119, "AltaStream Controls Inc" },
- { 33120, "eZ Systems" },
- { 33121, "Tadcom AB" },
- { 33122, "Vestmark, Inc." },
- { 33123, "ProTel Communications Ltd" },
- { 33124, "ASKing Co., Ltd." },
- { 33125, "Precise Power, Inc." },
- { 33126, "DataSoft Corp." },
- { 33127, "Dialog und Medien Agentur der ACS mbH" },
- { 33128, "Semperian Capital Management" },
- { 33129, "ENTEREST GmbH" },
- { 33130, "Virtual Instruments Corporation" },
- { 33131, "Drexel University " },
- { 33132, "Lichti\0302\0262 GbR" },
- { 33133, "Daedalus Software, Inc." },
- { 33134, "LS Industrial Systems Co.,Ltd." },
- { 33135, "PeakSystems" },
- { 33136, "ELPRO VIDEOLABS srl" },
- { 33137, "JIGAR" },
- { 33138, "TENA SDA" },
- { 33139, "5gbit.de" },
- { 33140, "theBside" },
- { 33141, "e-Rank Internetdiensten" },
- { 33142, "Manuel Kobashigawa" },
- { 33143, "Clipsal Australia Pty Ltd" },
- { 33144, "Kitten Wranglers Unlimited" },
- { 33145, "Digivision Entertainment Private Limited" },
- { 33146, "Stiftung Nikolauspflege" },
- { 33147, "Olivier BONHOMME" },
- { 33148, "British Columbia Wireless Network Society" },
- { 33149, "Defining Technology, Inc." },
- { 33150, "silmarilli.eu" },
- { 33151, "CAIL Technologies" },
- { 33152, "ASIC North, Inc." },
- { 33153, "TeleDNA Communications Pvt. Ltd." },
- { 33154, "NPO Impuls" },
- { 33155, "Code Jawa" },
- { 33156, "Monsternett AS" },
- { 33157, "fqdn dot Ro" },
- { 33158, "ak obs, ltd." },
- { 33159, "AGS INFORMATIQUE" },
- { 33160, "The Invariant Autocracy" },
- { 33161, "www.libvoip.com" },
- { 33162, "DCS Internet Pty Limited" },
- { 33163, "Gundersen Lutheran" },
- { 33164, "datahouse AG" },
- { 33165, "Minds + Machines" },
- { 33166, "Fiasko Software" },
- { 33167, "Trusted Logic" },
- { 33168, "mLife Sp. z o.o." },
- { 33169, "Via-Vox Limited" },
- { 33170, "International Financial Data Services (Canada) Ltd." },
- { 33171, "HELIKA, a.s." },
- { 33172, "NetClean Technologies Sweden AB" },
- { 33173, "Annidis Health Systems Corp" },
- { 33174, "COMM-connect A/S" },
- { 33175, "ZIEHL industrie-elektronik GmbH+Co KG" },
- { 33176, "Rambla" },
- { 33177, "Radiation Oncology Victoria" },
- { 33178, "Jilin University" },
- { 33179, "omod" },
- { 33180, "PayLife Bank GmbH" },
- { 33181, "LASELEC S.A." },
- { 33182, "Advanced Network Engineering Consultants Limited" },
- { 33183, "SystemsPromAutomatic" },
- { 33184, "AsiaRF Ltd." },
- { 33185, "jps networks" },
- { 33186, "Data Robotics, Inc" },
- { 33187, "Commission de la sant\0303\0251 et de la s\0303\0251curit\0303\0251 du travail (CSST)" },
- { 33188, "DANS \0342\0200\0223 Data Archiving and Networked Services" },
- { 33189, "Droplet Technology Inc" },
- { 33190, "Petroleum Development Oman LLC" },
- { 33191, "Equine Technology Pte Ltd" },
- { 33192, "University of \0305\0275ilina" },
- { 33193, "Powercom Consultants Pty Ltd" },
- { 33194, "Kreditor Europe AB" },
- { 33195, "Bimash LLP" },
- { 33196, "VITA" },
- { 33197, "WIT" },
- { 33198, "SISCA" },
- { 33199, "\"TERRATEL\" LLC" },
- { 33200, "Gelber Group LLC" },
- { 33201, "3F Elettronica s.n.c." },
- { 33202, "ASUMO CO., LTD." },
- { 33203, "SensiMesh Pte Ltd" },
- { 33204, "Sprillion Technologies" },
- { 33205, "Elman srl" },
- { 33206, "Aqueouslife" },
- { 33207, "CEJIL - Center for Justice and International Law" },
- { 33208, "AMB Consulting SARL" },
- { 33209, "Dich Networks Co." },
- { 33210, "Qvantel" },
- { 33211, "Westminster College" },
- { 33212, "R\0303\0266tzer Engineering" },
- { 33213, "Moeller GmbH" },
- { 33214, "IPBFR" },
- { 33215, "Swisscanto Assetmanagement AG" },
- { 33216, "Dr. August Oetker Nahrungsmittel KG" },
- { 33217, "accessec GmbH" },
- { 33218, "Polar Circle AS" },
- { 33219, "Causata Ltd" },
- { 33220, "Netfonds Bank ASA" },
- { 33221, "Insumo Systems" },
- { 33222, "INECOIEC" },
- { 33223, "Aero-Info Technologies Co.,Ltd." },
- { 33224, "CJSC Rosta" },
- { 33225, "Obelux Oy" },
- { 33226, "Inline Internet Online Dienste GmbH" },
- { 33227, "PromiNet s.r.o" },
- { 33228, "AareNet AG" },
- { 33229, "COMUNICI GmbH" },
- { 33230, "Blueloop Ltd" },
- { 33231, "AvL Technologies" },
- { 33232, "stderr.nl" },
- { 33233, "ALERT Life Sciences Computing, S.A." },
- { 33234, "Halon Security" },
- { 33235, "DataHack" },
- { 33236, "AMTRON GmbH" },
- { 33237, "Authernative, Inc." },
- { 33238, "ReachLocal, Inc." },
- { 33239, "Active Control Technology Inc." },
- { 33240, "Salamander Technologies, Inc." },
- { 33241, "CITIZEN SYSTEMS JAPAN CO., LTD." },
- { 33242, "PanTek" },
- { 33243, "China Broadband Wireless IP Standard Group" },
- { 33244, "William Demant Holding" },
- { 33245, "kaf.cz" },
- { 33246, "UAB Pivot Capital Management" },
- { 33247, "Daton Securities Co., Ltd." },
- { 33248, "Radix Development Corporation CC" },
- { 33249, "BI@Work S.r.l." },
- { 33250, "SmurfitKappa News press" },
- { 33251, "REASON TECNOLOGIA S.A." },
- { 33252, "Flashlight Engineering & Consulting" },
- { 33253, "MiS Inc." },
- { 33254, "TimeData Corporation" },
- { 33255, "Kentucky Christian University" },
- { 33256, "Small Office Networks" },
- { 33257, "Dienste fuer Menschen gGmbH" },
- { 33258, "dzhon pty. ltd. (formerly 'mosais pty. ltd.')" },
- { 33259, "Martin DiViaio" },
- { 33260, "Triescom Co., Ltd." },
- { 33261, "Resilans AB" },
- { 33262, "J\0303\0244ger Computergesteuerte Messtechnik GmbH" },
- { 33263, "Raiffeisenverband Suedtirol Gen." },
- { 33264, "EPI Service Ltd" },
- { 33265, "Robert Rhea Photography" },
- { 33266, "ISOMEDIA, Inc." },
- { 33267, "The SPACEPOL Corporation" },
- { 33268, "ClearTech Ltda" },
- { 33269, "Ecessa corporation" },
- { 33270, "Sysmap Solutions" },
- { 33271, "Baptist Care (SA) Inc" },
- { 33272, "Med-RT, LLC" },
- { 33273, "Gomez & Associates" },
- { 33274, "Nestle Waters North America" },
- { 33275, "The Hutchins School" },
- { 33276, "KDN (Korea Electric Power Data Network)" },
- { 33277, "Pfiffner Gruppe" },
- { 33278, "Confident Instruments, Inc." },
- { 33279, "Mazioli LTDA-ME" },
- { 33280, "OWFS -- One Wire Filesystem" },
- { 33281, "New Dream Network" },
- { 33282, "Eastern Oregon University" },
- { 33283, "AN-D.cz" },
- { 33284, "Macquarie Group Limited" },
- { 33285, "NavStar Geomatics Ltd" },
- { 33286, "KIPAC" },
- { 33287, "Epix LLC" },
- { 33288, "GEVAS software GmbH" },
- { 33289, "Metalor" },
- { 33290, "Bundesverfassungsgericht" },
- { 33291, "Microvideo Ltd" },
- { 33292, "Fordham University" },
- { 33293, "Jenkins Shipping Company Ltd" },
- { 33294, "Lincor Solutions Ltd" },
- { 33295, "Georg Utz, Inc." },
- { 33296, "LepomisLab, LLC" },
- { 33297, "Arion Systems Pvt. Ltd." },
- { 33298, "Wikimedia Foundation, Inc." },
- { 33299, "Ithos USA" },
- { 33300, "Linkare TI" },
- { 33301, "Mee IT Solutions Co.,Ltd." },
- { 33302, "Trio Datacom" },
- { 33303, "Dannatu AG" },
- { 33304, "EudoxeSoft SARL" },
- { 33305, "Ark Computing" },
- { 33306, "Telemaque" },
- { 33307, "St. Jude Children's Research Hospital" },
- { 33308, "DataCode srl" },
- { 33309, "Aochuang Electronic Equipment Co.,Ltd." },
- { 33310, "ZMC Elektronika d.o.o." },
- { 33311, "Everest Software International" },
- { 33312, "Forenet, Inc." },
- { 33313, "SoeKul, LLC" },
- { 33314, "Servicio Nacional de Rehabilitaci\0303\0263n" },
- { 33315, "Max-Planck-Institut fuer Informatik" },
- { 33316, "Government of Saskatchewan" },
- { 33317, "INCITS Technical Committee T11" },
- { 33318, "AIDS Law Project" },
- { 33319, "Technische Universit\0303\0244t Kaiserslautern" },
- { 33320, "Skarvon" },
- { 33321, "Tradesmen International Inc" },
- { 33322, "Progress Financial" },
- { 33323, "Chaos Eternal Network" },
- { 33324, "Istochnik Ltd." },
- { 33325, "MSB Micro Systems" },
- { 33326, "PERTUS" },
- { 33327, "ZIP Sistemas S.L." },
- { 33328, "NetArt Piotr Nowak" },
- { 33329, "Encode Networks Svenska AB" },
- { 33330, "Relevantum Oy" },
- { 33331, "Balance Network Co. ,Ltd." },
- { 33332, "City of Edmonton" },
- { 33333, "Morningstar Corporation" },
- { 33334, "STEALTHbits Technologies, Inc." },
- { 33335, "TrueOffice" },
- { 33336, "Kat5Design" },
- { 33337, "elineis" },
- { 33338, "Comkom GmbH" },
- { 33339, "The Charity Bus" },
- { 33340, "Fundacio Privada Universitat Abat Oliba CEU" },
- { 33341, "Beijing TongFang Gigamega Tech. co., Ltd." },
- { 33342, "u-blox AG" },
- { 33343, "Storebrand ASA" },
- { 33344, "SC Garant Industries SRL" },
- { 33345, "Branded Payment Solutions" },
- { 33346, "Conseil G\0303\0251n\0303\0251ral des Pyr\0303\0251n\0303\0251es Atlantiques" },
- { 33347, "Papa John's International, Inc" },
- { 33348, "Voidnet.biz" },
- { 33349, "Mohawk College of Applied Arts and Technology" },
- { 33350, "GALLACCI COMMUNICATIONS" },
- { 33351, "Hospital Service Association of Northeastern Pennsylvania" },
- { 33352, "MAX Technologies" },
- { 33353, "2Ring" },
- { 33354, "Kaasjager Consultancy" },
- { 33355, "Ozeki Informatics Ltd." },
- { 33356, "HEADJAPAN Co.,Ltd." },
- { 33357, "TWINSEC GmbH" },
- { 33358, "ApplianSys Ltd" },
- { 33359, "VUT GmbH" },
- { 33360, "Kahaf (pvt) Ltd" },
- { 33361, "Cursum" },
- { 33362, "DataSchenk, Inc." },
- { 33363, "Duff & Phelps, LLC." },
- { 33364, "ginkgotek" },
- { 33365, "Edelbluth Engineering" },
- { 33366, "Columbia Data Products, Inc" },
- { 33367, "VIRTUALMGS" },
- { 33368, "VTRON TECHNOLOGIES LTD." },
- { 33369, "Sino-telecom Technology Co.,Ltd" },
- { 33370, "Erasmus MC Rotterdam" },
- { 33371, "Kelkoo" },
- { 33372, "Infocare AS" },
- { 33373, "ZeroPoint.it" },
- { 33374, "SFProjects" },
- { 33375, "Dalee LLC" },
- { 33376, "Argeon Limited" },
- { 33377, "Paul Armstrong" },
- { 33378, "Zetta, inc" },
- { 33379, "KLabs" },
- { 33380, "ICS Computer Services SA" },
- { 33381, "DVS Digital Video Systems AG" },
- { 33382, "chillyweb" },
- { 33383, "Audisoft Technologies" },
- { 33384, "eSaturnus" },
- { 33385, "Feeva Technology Inc." },
- { 33386, "Hyper9" },
- { 33387, "SS7 Solutions" },
- { 33388, "InCASE - Sven Mueller" },
- { 33389, "Keyboard Monkeys Ltd." },
- { 33390, "Cormedica" },
- { 33391, "OSI d.o.o." },
- { 33392, "Source Allies, Inc" },
- { 33393, "C-NET Information Technology LTD." },
- { 33394, "Mio Software Laboratory Inc." },
- { 33395, "Washington State Consolidated Technology Services" },
- { 33396, "Ferpa Consultoria e Sistemas Ltda." },
- { 33397, "CreAPPtive Limited" },
- { 33398, "Traffic Management Technologies" },
- { 33399, "Egyption Root certification authority" },
- { 33400, sminmpec_unknown }, /* (Added by Wireshark) */
- { 33401, "Servera, Inc." },
- { 33402, "Quadrizen" },
- { 33403, "Radiocomp ApS" },
- { 33404, "Dipl.-Ing. Christian Lindemann" },
- { 33405, "EISST Limited" },
- { 33406, "Keller Williams Realty Intl" },
- { 33407, "I-Evolve" },
- { 33408, "BASIS International Ltd." },
- { 33409, "The Chronicle" },
- { 33410, "FETAC" },
- { 33411, "QNETIC LTD." },
- { 33412, "Kootenai Electric Cooperative, Inc." },
- { 33413, "ADSLWEB-dot-Net" },
- { 33414, "Monitis Inc." },
- { 33415, "N-Com, L.P." },
- { 33416, "wondersgroup" },
- { 33417, "PiN GmbH" },
- { 33418, "Rila Feinkost-Importe GmbH und Co. KG" },
- { 33419, "CNStreaming Technologies Co., Ltd" },
- { 33420, "Voalte, Inc" },
- { 33421, "South Gloucestershire Council CYP ICT" },
- { 33422, "Com-Ned Netwerken B.V." },
- { 33423, "TriaGnoSys GmbH" },
- { 33424, "ITXTEND LLC" },
- { 33425, "Fortisbank NL NV" },
- { 33426, "Mirae Ikorn company" },
- { 33427, "5V Technologies Ltd." },
- { 33428, "TRAKCE, a.s." },
- { 33429, "Mobile Experts sp. z o.o." },
- { 33430, "Libra Szoftver Zrt" },
- { 33431, "Oberfinanzdirektion Karlsruhe" },
- { 33432, "MAHLE International GmbH" },
- { 33433, "Interwetten" },
- { 33434, "SDC Sistemi di Computer" },
- { 33435, "dicas digital image coding GmbH" },
- { 33436, "Lepida spa" },
- { 33437, "Heidelberg Engineering GmbH" },
- { 33438, "RIPN" },
- { 33439, "Centralx" },
- { 33440, "Centro Brasileiro de Pesquisa e Tecnologia em Inform\0303\0241tica M\0303\0251dica" },
- { 33441, "Science Systems and Applications, Inc." },
- { 33442, "Bernards" },
- { 33443, "Novus Entertainment Inc." },
- { 33444, "obtelecom" },
- { 33445, "The London Library" },
- { 33446, "Relay Station Ltd" },
- { 33447, "Comtech Ltd." },
- { 33448, "Chemtura Corporation" },
- { 33449, "Time2Dive" },
- { 33450, "Facultad de Ingenieria Informatica, CUJAE" },
- { 33451, "Infomed" },
- { 33452, "Comsenz.Ltd" },
- { 33453, "Polylogics Consulting, Inc." },
- { 33454, "Nippon Sogo Systems, Inc." },
- { 33455, "BVE Solutions" },
- { 33456, "DCF Technologies" },
- { 33457, "DANET.CZ s.r.o." },
- { 33458, "Col\0303\0251gio Santo Agostinho" },
- { 33459, "Vivisimo, Inc." },
- { 33460, "//SEIBERT/MEDIA GmbH" },
- { 33461, "DS Media Labs, Inc." },
- { 33462, "Zmac1, Inc." },
- { 33463, "Limelight Networks, Inc." },
- { 33464, "Leo Lab" },
- { 33465, "Unlimited Bandwidth LLC" },
- { 33466, "Kadeo Pty Ltd" },
- { 33467, "Cyprotex" },
- { 33468, "Future Skies" },
- { 33469, "Produban Servicios Informaticos Generales" },
- { 33470, "Vista Systems, Corp." },
- { 33471, "Alekstra Oy" },
- { 33472, "Sittig Industrie-Elektronik GmbH & Co. KG" },
- { 33473, "Unassigned" },
- { 33474, "Regex" },
- { 33475, "Botswana Power Corporation" },
- { 33476, "Kittelberger media solutions GmbH" },
- { 33477, "Sommer Mess-Systemtechnik" },
- { 33478, "aserva GmbH" },
- { 33479, "TradingScreen Inc" },
- { 33480, "Canadian Automobile Association, South Central Ontario" },
- { 33481, "Manufacturing Resources International" },
- { 33482, "ManageIQ, Inc." },
- { 33483, "Goldflower Incorporated" },
- { 33484, "Initech s.r.o." },
- { 33485, "Caribou Software" },
- { 33486, "Silk Information Systems, Inc." },
- { 33487, "Packet Ship Technologies Limited" },
- { 33488, "MoaningMarmot" },
- { 33489, "NERO Network" },
- { 33490, "GeneGO Inc." },
- { 33491, "Malviny International" },
- { 33492, "Broadex Technologies, Shanghai" },
- { 33493, "Loadcom Technology Shenzhen Co., Ltd." },
- { 33494, "Sekoci Maju Jaya" },
- { 33495, "AXPO INFORMATIK AG" },
- { 33496, "Spurious Logic Technology Services" },
- { 33497, "Vahni Solutions" },
- { 33498, "Andrew Kipcharskiy" },
- { 33499, "KPN HotSpots" },
- { 33500, "Vertex Antennentechnik GmbH" },
- { 33501, "Novatice Technologies" },
- { 33502, "Comunidad Autonoma Region de Murcia" },
- { 33503, "Heavens-Above GmbH" },
- { 33504, "Narodni technicka knihovna" },
- { 33505, "tw telecom, inc." },
- { 33506, "Dassault Systemes (formerly 'Enginuity PLM LLC')" },
- { 33507, "Elster Electricity, LLC" },
- { 33508, "Avere Systems, Inc." },
- { 33509, "Sociedad Hebraica Argentina" },
- { 33510, "Provincial Health Services Authority" },
- { 33511, "Radiant Technologies, Inc." },
- { 33512, "TheMarkets.com LLC" },
- { 33513, "Arvensian" },
- { 33514, "LUMANTEK" },
- { 33515, "Antonio Cunha Barbosa" },
- { 33516, "Zhuhai Jiasin Industry Co., Ltd" },
- { 33517, "Scourger.nl" },
- { 33518, "Tap / Bkruse & Associates LLC" },
- { 33519, "SkyMesh PTy Ltd" },
- { 33520, "Modern Module Inc." },
- { 33521, "IKT Advanced Technologies s.r.o." },
- { 33522, "soit GmbH" },
- { 33523, "Sword Real Time" },
- { 33524, "measanctum" },
- { 33525, "Bewigo Technologies SARL" },
- { 33526, "DonaldWilson.Info" },
- { 33527, "USDA" },
- { 33528, "Krestfield" },
- { 33529, "MIDASPLUS, INC." },
- { 33530, "EasyWay" },
- { 33531, "Dmitry Komarchev" },
- { 33532, "Valsts Robe\0305\0276sardze" },
- { 33533, "Linkdevices Technology, Inc." },
- { 33534, "Systembase Limited" },
- { 33535, "Herning Kommune" },
- { 33536, "INESC Porto" },
- { 33537, "BCV solutions s.r.o." },
- { 33538, "EDX Software Design" },
- { 33539, "Europcar Information Services" },
- { 33540, "Ion Beam Applications" },
- { 33541, "w3variance" },
- { 33542, "CBC Cologne Broadcasting Center GmbH" },
- { 33543, "UHU Systems Kft." },
- { 33544, "T.Rowe Price" },
- { 33545, "Entelec Control Systems" },
- { 33546, "Axiros GmbH" },
- { 33547, "Liberty Mutual Insurance Company" },
- { 33548, "Managed I.T." },
- { 33549, "ZnamiNet" },
- { 33550, "BIXOLON Co., Ltd." },
- { 33551, "David Jones" },
- { 33552, "HiFull Technology" },
- { 33553, "TBC Solutions" },
- { 33554, "Genetech AB" },
- { 33555, "RACOM s.r.o." },
- { 33556, "Hyperthought Solutions" },
- { 33557, "University of Kent" },
- { 33558, "powertron engineering co., ltd." },
- { 33559, "AXION - Red de Banda Ancha de Andalucia S.A." },
- { 33560, "Commercial Court of Tula Region" },
- { 33561, "Express Gifts ltd " },
- { 33562, "Judako AB" },
- { 33563, "CNEA - Regional Centro" },
- { 33564, "MEDIATECH" },
- { 33565, "Epic Event International Pty Ltd" },
- { 33566, "Dublin University Internet Society" },
- { 33567, "Vira Realtime, Ltd." },
- { 33568, "Bakoma SA" },
- { 33569, "ERG S.p.A." },
- { 33570, "RENATA WEB SYSTEMS" },
- { 33571, "MRC Epidemiology Unit" },
- { 33572, "Educational Service Unit 10" },
- { 33573, "Corps Saxo-Montania" },
- { 33574, "waxtie" },
- { 33575, "Inovatic d.o.o." },
- { 33576, "AP Router Industria Eletronica Ltda." },
- { 33577, "CenIP" },
- { 33578, "Jason B. Alonso" },
- { 33579, "Fairfield County, Ohio" },
- { 33580, "Anacom Eletr\0303\0264nica Ltda" },
- { 33581, "OpenMind S.r.l." },
- { 33582, "Errigal, Inc." },
- { 33583, "BSoft" },
- { 33584, "OnlLine Technologies" },
- { 33585, "Intehel" },
- { 33586, "Institute of Information science, Beijing Jiaotong University, China" },
- { 33587, "PlayBox Technology Ltd." },
- { 33588, "Autek Ingenieria, SL" },
- { 33589, "Ministarstvo unutrasnjih poslova Republike Srbije" },
- { 33590, "Faltermeier" },
- { 33591, "GIE Astria" },
- { 33592, "Gryphon Technology Pty Ltd" },
- { 33593, "Errigal Inc." },
- { 33594, "Daniel Hommel" },
- { 33595, "San Francisco State University" },
- { 33596, "Adventist Health System" },
- { 33597, "Clasdix SRL" },
- { 33598, "isi-muenchen ltd." },
- { 33599, "Dolf - Systems" },
- { 33600, "OMNIconnect Pty Ltd" },
- { 33601, "KIRYUNG" },
- { 33602, "northstarlabs.net" },
- { 33603, "Infotech enterprises" },
- { 33604, "SARL LES CAGOTS" },
- { 33605, "Soft & Control Technology s.r.o." },
- { 33606, "HI5 Networks, Inc" },
- { 33607, "SeeChange Health" },
- { 33608, "RipCode, Inc." },
- { 33609, "Softtek" },
- { 33610, "fastip, llc" },
- { 33611, "Transmicro" },
- { 33612, "Com Hem AB" },
- { 33613, "CRISPYLOGICS" },
- { 33614, "DPD Polska Sp. z o.o." },
- { 33615, "Cross Country Automotive Services" },
- { 33616, "Ohio Supercomputer Center" },
- { 33617, "David Kraeutmann" },
- { 33618, "Nito Programs" },
- { 33619, "FreeComm Data Communication Co., Ltd." },
- { 33620, "CertusNet" },
- { 33621, "Asmens dokumentu israsymo centras prie Lietuvos Respublikos vidaus reikalu ministerijos" },
- { 33622, "4Dst International Telecommunications (Pty) Ltd" },
- { 33623, "Pokrovskoe Ltd" },
- { 33624, "Beijing VBON Science & Technology Development Co.,Ltd." },
- { 33625, "xallaraparadigm" },
- { 33626, "Reouel" },
- { 33627, "code-drohne.de" },
- { 33628, "Egyption Government Certification Authority" },
- { 33629, "t-Linux Ltd." },
- { 33630, "Iridea (M) Sdn Bhd" },
- { 33631, "Poczta Polska" },
- { 33632, "AGNEKO" },
- { 33633, "Herman Andersson Oy" },
- { 33634, "Reale Seguros Generales" },
- { 33635, "Ruby Sync" },
- { 33636, "TechnoSec" },
- { 33637, "Walla Walla University" },
- { 33638, "Voiceboard Corporation" },
- { 33639, "Vestas Wind Systems A/S" },
- { 33640, "TCPOS SA" },
- { 33641, "Ajimi" },
- { 33642, "Denmark - Fujitsu Services A/S" },
- { 33643, "Comgroup GmbH" },
- { 33644, "Sytel Limited" },
- { 33645, "MKS Inc." },
- { 33646, "Extelia" },
- { 33647, "Mashlab / Huther & Sommer GbR" },
- { 33648, "Ireth" },
- { 33649, "Pramana Inc" },
- { 33650, "AdaCore SAS" },
- { 33651, "Sparkplug Inc" },
- { 33652, "Cousteau Network Development LLC" },
- { 33653, "Opulan Technologies Corp." },
- { 33654, "Posidex Techonologies Pvt Ltd" },
- { 33655, "OVOCENTRUM V+V s.r.o." },
- { 33656, "Wardsback Brotherhood" },
- { 33657, "Harald W\0303\0274rger" },
- { 33658, "V.D.S. - Video Display Systems Srl" },
- { 33659, "Universit\0303\0240 di Bari" },
- { 33660, "Lower Colorado River Authority" },
- { 33661, "LineRate Systems, Inc." },
- { 33662, "AfroDuck Productions" },
- { 33663, "Manz Automation AG" },
- { 33664, "Conei Cia. Int. de Inversiones" },
- { 33665, "Liveperson" },
- { 33666, "STMIK Mikroskil" },
- { 33667, "SADA Systems Inc. - Apps Division" },
- { 33668, "ECtel LTD." },
- { 33669, "Kevin R. James Enterprise Services" },
- { 33670, "Arctic Lake" },
- { 33671, "HESTIA FRANCE" },
- { 33672, "intecsoft GmbH" },
- { 33673, "Lacerda Sistemas de Energia" },
- { 33674, "NUVICO" },
- { 33675, "Zydax, LLC" },
- { 33676, "Happy Jack Software LLC." },
- { 33677, "HiWiFi Networks" },
- { 33678, "F\0303\0244hnle IT-Solutions" },
- { 33679, "The University of Waikato" },
- { 33680, "Bankart, d.o.o." },
- { 33681, "Deutsche Papier Vertriebs GmbH" },
- { 33682, "Tyze.com" },
- { 33683, "Agilink Systems Corp." },
- { 33684, "eCern Inc" },
- { 33685, "Netgroup A/S" },
- { 33686, "NetVitesse S.A.R.L" },
- { 33687, "NETAVIS Software GmbH" },
- { 33688, "Packet Power" },
- { 33689, "mediQ" },
- { 33690, "shenzhen etoptech co.,Ltd" },
- { 33691, "MOSTCOM Ltd." },
- { 33692, "Meona GmbH" },
- { 33693, "SMALS" },
- { 33694, "Knexus Research Corporation" },
- { 33695, "National Oilwell Varco" },
- { 33696, "Trulix Systems" },
- { 33697, "Klaus Becker Kopiersysteme -Service-GmbH" },
- { 33698, "ACRA CONTROL LTD." },
- { 33699, "TAG Video Systems" },
- { 33700, "Saginaw Valley State University" },
- { 33701, "Cathay Pacific Airways Ltd." },
- { 33702, "Technalogix Ltd." },
- { 33703, "ziggurat29" },
- { 33704, "Middle Office Solutions, LLC" },
- { 33705, "Global 360 Inc" },
- { 33706, "OPVISION Technology Co.,Ltd" },
- { 33707, "United International College" },
- { 33708, "SPIT elektromechanica BV" },
- { 33709, "OnTimeLine" },
- { 33710, "Tawasul Telecom" },
- { 33711, "Campanja AB" },
- { 33712, "CSC PYXUS-2006" },
- { 33713, "WB Electronics sp. z o.o." },
- { 33714, "Neuralitic Systems Inc." },
- { 33715, "Axcient, Incorporated" },
- { 33716, "Jiangsu Hengtong Photoelectric Stock Co., Ltd" },
- { 33717, "Nirmitsu Technologies Private Limited" },
- { 33718, "Lava-Tech" },
- { 33719, "EBU / UER" },
- { 33720, "ELTA Systems Ltd." },
- { 33721, "Thrane & Thrane" },
- { 33722, "MC SECURITY Co., Ltd." },
- { 33723, "laurentum.de" },
- { 33724, "EBDSoft" },
- { 33725, "Bimeng Communications System Co.,Ltd" },
- { 33726, "White Sands Technology" },
- { 33727, "Caerian Inc" },
- { 33728, "Adaptive AI, Inc." },
- { 33729, "Beijing Pannet Information Technology Co., Ltd." },
- { 33730, "Stefan aulbach" },
- { 33731, "Asito B.V." },
- { 33732, "NetResults S.r.l." },
- { 33733, "sw-k software & system engineering" },
- { 33734, "chini.info" },
- { 33735, sminmpec_unknown }, /* (Added by Wireshark) */
- { 33736, "fylleri.is" },
- { 33737, "Soprano Design Pty Ltd" },
- { 33738, "Animelliure" },
- { 33739, "ANTRICE S.A" },
- { 33740, "Interdatanet - DET" },
- { 33741, "Yellowstone Soft" },
- { 33742, "Net4Promotions" },
- { 33743, "Zentrum f\0303\0274r Soziale Innovation" },
- { 33744, "Application Solutions (Safety and Security) Ltd." },
- { 33745, "College for Creative Studies" },
- { 33746, "imagine that" },
- { 33747, "OnlineOK" },
- { 33748, "Wilcox Technologies" },
- { 33749, "VoLGA Forum" },
- { 33750, "Iritel A.D. Beograd" },
- { 33751, "OBEJ di Galantini Andrea" },
- { 33752, "Gen-Z Technologies inc." },
- { 33753, "Beijing CircLoop Digital Image Tech.Co.,Ltd" },
- { 33754, "Duelco A/S, Denmark" },
- { 33755, "www.capad.de" },
- { 33756, "keimatsu.com" },
- { 33757, "Oblong Industries, Inc." },
- { 33758, "Inquinox, LLC" },
- { 33759, "Golden Micro Systems Corporation" },
- { 33760, "Ministerstvo Finansov Chelyabinskoy oblasti" },
- { 33761, "OptimSys, s.r.o." },
- { 33762, "Global Display Solutions SpA" },
- { 33763, "AD Holdings plc" },
- { 33764, "I-bridge B.V." },
- { 33765, "Sapienza Consulting Ltd" },
- { 33766, "panagenda GmbH" },
- { 33767, "Korean Broadcasting System (KBS)" },
- { 33768, "Beijing ZhonghongLida Technology Development Co., Ltd." },
- { 33769, "Universidad de La Habana" },
- { 33770, "Telcom Research" },
- { 33771, "Academy Consult M\0303\0274nchen e.V." },
- { 33772, "The Portalus Group" },
- { 33773, "Weather Kat" },
- { 33774, "Pyro Networks" },
- { 33775, "Moscow Metering Company" },
- { 33776, "Orca Interactive LTD" },
- { 33777, "Cadmos microsystems S.r.l." },
- { 33778, "TIKLA tv" },
- { 33779, "Stefan Seelmann" },
- { 33780, "Grosvenor Technology Ltd." },
- { 33781, "FreeKey::Labs s.l." },
- { 33782, "Pictage, Inc." },
- { 33783, "Chinarainbow Technology CO.,LTD" },
- { 33784, "AvFinity, L.L.C." },
- { 33785, "La Salle University" },
- { 33786, "Iquall S.A." },
- { 33787, "KaHo Sint Lieven" },
- { 33788, "juris GmbH" },
- { 33789, "Medical IT" },
- { 33790, "InFocus Corporation" },
- { 33791, "XelNet" },
- { 33792, "Noisebridge" },
- { 33793, "inviCRO, LLC" },
- { 33794, "Myungmin Systems, Inc." },
- { 33795, "SOLIT Information Security" },
- { 33796, "ROMTELECOM S.A." },
- { 33797, "ESRI Portugal" },
- { 33798, "Suefke Softwareentwicklung" },
- { 33799, "LinkSat" },
- { 33800, "CARFAX INC" },
- { 33801, "Colorquick, LLC" },
- { 33802, "Xensor Systems Incorporated" },
- { 33803, "Manor AG" },
- { 33804, "Chrisalys" },
- { 33805, "Peak Drive Solutions Ltd" },
- { 33806, "UTILISE IT LIMITED" },
- { 33807, "Internexo Ltda." },
- { 33808, "Jim Montague Software LLC" },
- { 33809, "Topomaro" },
- { 33810, "Masterhost, CJSC" },
- { 33811, "Idendego Inc." },
- { 33812, "Goodus, Inc." },
- { 33813, "Invenso" },
- { 33814, "IProNet Sistemas, S.A." },
- { 33815, "Archean Technologies" },
- { 33816, "PROFILAX, s.r.o." },
- { 33817, "CopyKnight Technologies Ltd" },
- { 33818, "asco" },
- { 33819, "StreetGeek" },
- { 33820, "DECOIT GmbH" },
- { 33821, "Proliphix, Inc." },
- { 33822, "Computer Task Group, Inc." },
- { 33823, "comspace GmbH & Co. KG" },
- { 33824, "Spirent Communications of Rockville, Inc. " },
- { 33825, "ECHO KEISOKUKI Co.,Ltd." },
- { 33826, "Lutong Network Technology Co., ltd" },
- { 33827, "Dan Hirsch " },
- { 33828, "NTT Plala Inc." },
- { 33829, "Novel Communication Co., LTD." },
- { 33830, "One97 Communication (P) Limited" },
- { 33831, "noFilis AutoID GmbH" },
- { 33832, "Biologische Heilmittel Heel GmbH" },
- { 33833, "Nettare Srl" },
- { 33834, "Salford" },
- { 33835, "REGS DE CATALUNYA, S.A." },
- { 33836, "Alliaria, S.L." },
- { 33837, "GESTI\0303\0223 D'INFRAESTRUCTURES, S.A." },
- { 33838, "Voxline Contact Center" },
- { 33839, "CONFESOL" },
- { 33840, "LEDZGO" },
- { 33841, "ArenaNet" },
- { 33842, "SIBIO" },
- { 33843, "ProIS d.o.o." },
- { 33844, "Blastwave.org, Inc." },
- { 33845, "Microlab Snc" },
- { 33846, "DISA CSD MONTGOMERY" },
- { 33847, "maXan Pty Ltd" },
- { 33848, "Hot Solder Ltd" },
- { 33849, "Universidad Aut\0303\0263noma de Colombia" },
- { 33850, "Capgemini Spain SLU" },
- { 33851, "Combilent A/S" },
- { 33852, "Tractis" },
- { 33853, "\"STM\" Co., Ltd" },
- { 33854, "RP Compounds GmbH" },
- { 33855, "ADVtools" },
- { 33856, "Ansgar Jonietz" },
- { 33857, "SECONS s.r.o." },
- { 33858, "Aveco s.r.o." },
- { 33859, "JRD" },
- { 33860, "The Insitu Group" },
- { 33861, "CONGUIDE" },
- { 33862, "Large Binocular Telescope Observatory" },
- { 33863, "Mantaro Networks, Inc." },
- { 33864, "Praktiker Services GmbH" },
- { 33865, "Atukorala Holdings Ltd. (formerly 'Squad 17 Limited')" },
- { 33866, sminmpec_unknown }, /* (Added by Wireshark) */
- { 33867, "Infrascape Technologies Limited" },
- { 33868, "DOSIsoft" },
- { 33869, "Kompas Xnet d.o.o." },
- { 33870, "EXXOSS S.P.R.L." },
- { 33871, "ZIBImed GmbH" },
- { 33872, "Alpha Technologies, Inc. (formerly 'Cheetah Technologies L.P.')" },
- { 33873, "ARC Cr\0303\0251ations" },
- { 33874, "Novita" },
- { 33875, "National Bank of Ukraine" },
- { 33876, "Van Hameren ICT diensten" },
- { 33877, "Publications Office" },
- { 33878, "Children's Miracle Network" },
- { 33879, "Global IT Bilisim Hizmetleri Ltd." },
- { 33880, "Isca Networks Corporation Ltd" },
- { 33881, "ETM Electromatic Inc." },
- { 33882, "Four Color Studio" },
- { 33883, "The Bank of Lithuania" },
- { 33884, "NSG" },
- { 33885, "Abhineet Singh Chauhan" },
- { 33886, "UNICEF" },
- { 33887, "Integrasul Solucoes em Informatica Ltda." },
- { 33888, "Aqua Cooler Pty Ltd" },
- { 33889, "Do-Style,INC." },
- { 33890, "KUB Ltd." },
- { 33891, "goettert.net Internet Service" },
- { 33892, "Be IP s.a." },
- { 33893, "Specialized Information Systems Ltd." },
- { 33894, "Aulof\0303\0251e" },
- { 33895, "The Joint Commission" },
- { 33896, "DDO Organisation sarl" },
- { 33897, "GSA" },
- { 33898, "Synovel Software Technologies Pvt. Ltd." },
- { 33899, "rahmn.com, llc" },
- { 33900, "Next Level Security Systems, Inc." },
- { 33901, "ezwww.ch" },
- { 33902, "Tiju Paul" },
- { 33903, "nenunic" },
- { 33904, "Sergei Butakov" },
- { 33905, "iVoltaire.org" },
- { 33906, "WANTS Inc." },
- { 33907, "SECURITAS DIRECT ESPA\0303\0221A S.A.U." },
- { 33908, "Seowonintech Co., Ltd" },
- { 33909, "Open Joint Stock Company Belvnesheconombank" },
- { 33910, "BSN Medical GmbH" },
- { 33911, "Cerillion Technologies Limited" },
- { 33912, "FULLSEE Electronics Co., Ltd. Beijing" },
- { 33913, "ClusterDB.com" },
- { 33914, "Monmouth Telecom" },
- { 33915, "Middle East Number Thirteen -Financial Services" },
- { 33916, "Freeman Decorating Services, Inc." },
- { 33917, "Intact Financial Corporation" },
- { 33918, "Top Producer Systems" },
- { 33919, "ImmediaTV Corporation (formerly 'Magenta Video Networks')" },
- { 33920, "DLT Limited (formerly 'Remote Management Systems Limited')" },
- { 33921, "Molowa" },
- { 33922, "Byzoro Networks Ltd." },
- { 33923, "Axione" },
- { 33924, "Ebor Computing Pty Ltd" },
- { 33925, "Progetto 3000 srl" },
- { 33926, "buzzword.org.uk" },
- { 33927, "Cambridge Leaning Center" },
- { 33928, "Ibuildings" },
- { 33929, "Universitat Jaume I" },
- { 33930, "Contineo Systems" },
- { 33931, "IK-TECH" },
- { 33932, "MEDIACAST CO., LTD." },
- { 33933, "QOX,Inc" },
- { 33934, "XenData Limited" },
- { 33935, "RedFox Communications Ltd" },
- { 33936, "Sentilla Corporation" },
- { 33937, "LinuxBox.cz" },
- { 33938, "Ordina" },
- { 33939, "Bolt Court Consulting" },
- { 33940, "Wuhan Hongxin Telecommunication Technologies Co.,Ltd" },
- { 33941, "Business Logic Systems" },
- { 33942, "NakedApe" },
- { 33943, "Faculty of Electrical Engineering Banja Luka" },
- { 33944, "Compower Systems Inc." },
- { 33945, "OHO Interactive" },
- { 33946, "Vencomm" },
- { 33947, "MAGICONLINE" },
- { 33948, "Azienda USL Ferrara" },
- { 33949, "Geotech Ltda" },
- { 33950, "Zilogic Systems Pvt. Ltd." },
- { 33951, "taunusstein.net" },
- { 33952, "ZimZahm Productions" },
- { 33953, "DLT Limited" },
- { 33954, "International School of Beijing" },
- { 33955, "Better Place " },
- { 33956, "Oversun" },
- { 33957, "NCHOVY Inc." },
- { 33958, "Skytap" },
- { 33959, "The Egyptian Company for Networks and Computer Security Services" },
- { 33960, "Nordnet AB" },
- { 33961, "enCentro Systems Inc" },
- { 33962, "icuetv" },
- { 33963, "OCCN Ltd." },
- { 33964, "ParaVolve Development Corporation" },
- { 33965, "R-DATA Sp. z o.o." },
- { 33966, "FUNAI ELECTRIC CO., LTD. " },
- { 33967, "The Now Factory" },
- { 33968, "Puleo Electronics Inc." },
- { 33969, "Canfield Research Group" },
- { 33970, "TradeHelm, Inc." },
- { 33971, "VanceInfo Technologies Inc." },
- { 33972, "RFPA" },
- { 33973, "Net Entertainment NE AB" },
- { 33974, "Agency.com" },
- { 33975, "GnomishThoughts" },
- { 33976, "HackThisSite" },
- { 33977, "BLIP" },
- { 33978, "YAGI ANTENNA INC. " },
- { 33979, "Hong Kong Trade Development Council" },
- { 33980, "DDB Link" },
- { 33981, "Tek-Ops.com" },
- { 33982, "New Internet Technologies Sp. z o. o." },
- { 33983, "Total Tel International Pty Ltd" },
- { 33984, "Spark::red LLC" },
- { 33985, "MigraTech" },
- { 33986, "Universidade Federal de Pernambuco" },
- { 33987, "Lakstins Family, LLC" },
- { 33988, "Comm.SEC di Valter Foresto" },
- { 33989, "Hyette S.A." },
- { 33990, "Cassandra Research Center" },
- { 33991, "Beaumaris Networks" },
- { 33992, "Louisiana Community and Technical College System" },
- { 33993, "Coalinga State Hospital" },
- { 33994, "Nei til EU" },
- { 33995, "Pixip.net Gmbh" },
- { 33996, "Diateam" },
- { 33997, "OneMedNet Corporation" },
- { 33998, "Agily Networks Inc." },
- { 33999, "Xiangmin Technology Co.,Ltd" },
- { 34000, "BYNE (formerly 'SIMB Tecnologia')" },
- { 34001, "ingrifo" },
- { 34002, "WriteX ltd" },
- { 34003, "AdRiver" },
- { 34004, "PETROFAC INT LTD" },
- { 34005, "Community Technology" },
- { 34006, "Number Kuus Konsultatsioonid O\0303\0234" },
- { 34007, "SKYSOFT ATM" },
- { 34008, "Tech Mahindra" },
- { 34009, "YGOMI Europe Ltd." },
- { 34010, "Paraflux, Inc." },
- { 34011, "Donet, Inc." },
- { 34012, "Internet Doorway, Inc." },
- { 34013, "CBTS" },
- { 34014, "B1 Systems GmbH" },
- { 34015, "Pinghu Feihong Technology Co.,LTD" },
- { 34016, "management of procurement for state needs of Krasnodar Region" },
- { 34017, "telecommunication software gmbh" },
- { 34018, "MAC GUFF LIGNE" },
- { 34019, "Agrokor" },
- { 34020, "OpenHTTPD" },
- { 34021, "Hosteam" },
- { 34022, "ITG SOLUTIONS S.A.C." },
- { 34023, "zumbi" },
- { 34024, "Department of Homeland Security" },
- { 34025, "Accelerated Data LLC" },
- { 34026, "Alphalink" },
- { 34027, "Qumu, Inc." },
- { 34028, "Idaho Power Company" },
- { 34029, "TLSPU (formerly 'HaqaSoft')" },
- { 34030, "metatux.net" },
- { 34031, "ViewStor Pty Ltd" },
- { 34032, "Amateur Radio Club (ARC) ITB" },
- { 34033, "Unix Linux Authority Kft" },
- { 34034, "Active Web Solutions Ltd" },
- { 34035, "IPsoTV" },
- { 34036, "Benchmark Group" },
- { 34037, "European Nazarene College" },
- { 34038, "USGN" },
- { 34039, "Conversant Solutions Pte Ltd" },
- { 34040, "OrgLDAP Project" },
- { 34041, "unattended-gui" },
- { 34042, "T-Mobile Hrvatska d.o.o." },
- { 34043, "Suffolk University ITS" },
- { 34044, "Adesta LLC" },
- { 34045, "Vex" },
- { 34046, "Midwatch Systems Inc." },
- { 34047, "THENEWPASTAWAVE.COM" },
- { 34048, "Novell Consulting Ukraine Ltd" },
- { 34049, "Spirtech" },
- { 34050, "Cloudhopper, Inc." },
- { 34051, "Universidade Estadual de Ponta Grossa" },
- { 34052, "Mount Desert Island Biological Laboratory" },
- { 34053, "Associa\0303\0247\0303\0243o Hospitalar Santa Ros\0303\0241lia" },
- { 34054, "Australian Nursing Federation" },
- { 34055, "Vietnam National University, Hanoi" },
- { 34056, "Tranquil Hosting" },
- { 34057, "Beehive Security" },
- { 34058, "Babicom" },
- { 34059, "NII \"Vektor\"" },
- { 34060, "Nexgen Technologies" },
- { 34061, "COS-CRPF" },
- { 34062, "Mosart Medialab AS" },
- { 34063, "Hyves / StartPhone Ltd" },
- { 34064, "B\0303\0266cherer Angewandte Informatik" },
- { 34065, "Ricoh Europe PLC" },
- { 34066, "Interpublic Group of Companies, Inc." },
- { 34067, "OWVAT" },
- { 34068, "GAI-Tronics Corporation" },
- { 34069, "Information Security Services Association" },
- { 34070, "TeachMKs" },
- { 34071, "Hearst Communications Inc." },
- { 34072, "NBEE Embedded Systems S.L." },
- { 34073, "ISS" },
- { 34074, "IDP Co.,Ltd." },
- { 34075, "Deltatec - Tecnologia de Sistemas Lda" },
- { 34076, "Datakom Ltd" },
- { 34077, "BRVZ Bau- Rechen und Verwaltungszentrum GmbH" },
- { 34078, "Informtekhnika & Communication, LLC" },
- { 34079, "Axios Systems" },
- { 34080, "rtCamp Solutions Pvt. Ltd." },
- { 34081, "INSYS Microelectronics GmbH" },
- { 34082, "CitySync Limited" },
- { 34083, "Erayd LTD" },
- { 34084, "Universidade Federal de Juiz de Fora" },
- { 34085, "AWeber Communications, Inc." },
- { 34086, "Talari Networks" },
- { 34087, "Ultra Electronics, Nuclear Sensors & Process Instrumentation" },
- { 34088, "Visioneer Inc" },
- { 34089, "Newport Electronics, Inc." },
- { 34090, "TFB Technology Ltd." },
- { 34091, "Benchlabs Limited" },
- { 34092, "MyMail PLC" },
- { 34093, "UAB Profimus" },
- { 34094, "Fanamoj (JSC)" },
- { 34095, "Gymnazium Jaroslava Seiferta" },
- { 34096, "Trilogical" },
- { 34097, "Racktivity" },
- { 34098, "farbwahl GbR" },
- { 34099, "Palestine Polytechnic University" },
- { 34100, "Tompkins Cortland Community College" },
- { 34101, "Aimetis Corp" },
- { 34102, "Perversia Networking" },
- { 34103, "BV-Tech S.p.A. (formerly 'Bluestone S.r.l.')" },
- { 34104, "Ceton Corp" },
- { 34105, "Local Website Consulting" },
- { 34106, "TESCOMA s.r.o." },
- { 34107, "SELEX ES LTD (formerly 'SELEX GALILEO')" },
- { 34108, "IAM Solutions GmbH & Co. KG" },
- { 34109, "G&G Fitness Equipment Inc." },
- { 34110, "Code Blue Corporation" },
- { 34111, "Confamiliares de Caldas" },
- { 34112, "NetServe365" },
- { 34113, "CertifiCall" },
- { 34114, "Mitchell International" },
- { 34115, "NIW Solutions" },
- { 34116, "EhangCommucation & Technology Ltd." },
- { 34117, "Information System Products Co.,Ltd." },
- { 34118, "HL komm Telekommunikations GmbH" },
- { 34119, "Max Planck Institute for Human Cognitive and Brain Sciences" },
- { 34120, "Laketec Communications Inc." },
- { 34121, "Alias" },
- { 34122, "Retrix Hosting, Inc." },
- { 34123, "Akitogo Internet and Media Applications GmbH" },
- { 34124, "Digital Measures" },
- { 34125, "Beyond Semiconductor" },
- { 34126, "Infocon S. A." },
- { 34127, "Allgemeiner Deutscher Fahrrad-Club Landesverband Nordrhein-Westfalen e.V. " },
- { 34128, "Fabri" },
- { 34129, "TUBITAK BILGEM BTE" },
- { 34130, "ALCEA" },
- { 34131, "United In Song" },
- { 34132, "Cash America International, Inc." },
- { 34133, "Safety Vision, L.P." },
- { 34134, "OpenTTD" },
- { 34135, "Forever Home Improvement" },
- { 34136, "VeNMSOL Technologies" },
- { 34137, "Athens Wireless Metropolitan Network (AWMN)" },
- { 34138, "CER FRANCE POITOU-CHARENTES" },
- { 34139, "Vasista Systems Inc" },
- { 34140, "MAISONNEUVE Informatique" },
- { 34141, "EXPRESS" },
- { 34142, "Bank of Thailand" },
- { 34143, "Netrounds Solutions AB (formerly 'Absilion AB')" },
- { 34144, "B\0303\0266hler Edelstahl GmbH & CoKG" },
- { 34145, "K\0303\0241roly R\0303\0263bert College, Gy\0303\0266ngy\0303\0266s, Hungary" },
- { 34146, "Telogic Ltd." },
- { 34147, "MANGO" },
- { 34148, "PRESENSE Technologies GmbH" },
- { 34149, "IMATRIX Corp." },
- { 34150, "Syndicat IT & Internet" },
- { 34151, "Peppe-Certification" },
- { 34152, "esd electronic system design gmbh" },
- { 34153, "P\0303\0244iv\0303\0266l\0303\0244n Kansanopisto" },
- { 34154, "Texprezzo Group BV" },
- { 34155, "Tendril Networks" },
- { 34156, "Orel Analytics" },
- { 34157, "Instituto Nacional de Matem\0303\0241tica Pura e Aplicada" },
- { 34158, "Gouvernement de la Polyn\0303\0251sie Fran\0303\0247aise" },
- { 34159, "Pelican Engineering, Inc." },
- { 34160, "Certichron Inc" },
- { 34161, "CUSI(China unicom system integration limited corporation)" },
- { 34162, "Symplified Inc." },
- { 34163, "ITMemphis" },
- { 34164, "Fubra Limited" },
- { 34165, "Convergence CT, Inc." },
- { 34166, "Stellar Switches, Inc." },
- { 34167, "Power Admin LLC" },
- { 34168, "Richer link co.ltd" },
- { 34169, "Northsun.net" },
- { 34170, "TTK S.A.S." },
- { 34171, "Wingpath Ltd." },
- { 34172, "Fixme Internet-k\0303\0244ytt\0303\0244j\0303\0244t ry" },
- { 34173, "PD Software s.r.o." },
- { 34174, "FastOnlinePM" },
- { 34175, "Advanced Navigation & Positioning Corporation" },
- { 34176, "Hedgehog Oy Ltd" },
- { 34177, "Bond Technical Management" },
- { 34178, "Paragon Electronic Design Limited" },
- { 34179, "Inland Revenue Department of Sri Lanka" },
- { 34180, "Photop Technologies, Inc." },
- { 34181, "DARSHAN DUDHORIA" },
- { 34182, "Area SX" },
- { 34183, "Global Data Logistix (Pty) Ltd" },
- { 34184, "Universit\0303\0244t Hohenheim" },
- { 34185, "EBANK ONLINE (BEIJING) TECHNOLOGY Co., LTD" },
- { 34186, "TEAMCAST" },
- { 34187, "WAGNER Group GmbH" },
- { 34188, "Klocktornet AB" },
- { 34189, "Max Planck Institute for the science of light" },
- { 34190, "SSCANRFK54425" },
- { 34191, "Human Factors International" },
- { 34192, "Sikjur" },
- { 34193, "McKinney Identity Management Solutions, LLC" },
- { 34194, "Jerusalem College of Technology" },
- { 34195, "ZID, Vienna University of Technology" },
- { 34196, "Catchy.net BV" },
- { 34197, "EXANE" },
- { 34198, "Pragmatic Source SARL" },
- { 34199, "West Virginia University" },
- { 34200, "Planet-Work" },
- { 34201, "Neuberger Berman" },
- { 34202, "Thing in the Corner Enterprises, LLC" },
- { 34203, "TrustAlert" },
- { 34204, "Netweb Technologies" },
- { 34205, "Altrusoft AB" },
- { 34206, "Penguin Solutions" },
- { 34207, "tmira solutions" },
- { 34208, "Telefin S.p.A." },
- { 34209, "Vamed Management und Service GmbH & CO KG" },
- { 34210, "Evangelische Kirche von Kurhessen-Waldeck" },
- { 34211, "Hanil Display" },
- { 34212, "Function International" },
- { 34213, "ooVoo, LLC" },
- { 34214, "ACEnet" },
- { 34215, "Acksen Ltd" },
- { 34216, "Izmir University Of Economics" },
- { 34217, "SKY Network Television Ltd" },
- { 34218, "DEW Industrial Electronics (Pty) Ltd, t/a SOS Industrial Electronics" },
- { 34219, "wer-kennt-wen.de" },
- { 34220, "CreAim B.V." },
- { 34221, "TELEFRANG AB" },
- { 34222, "SOLTENLAR, S. L." },
- { 34223, "chaos Studio" },
- { 34224, "OpenSpirit S.A." },
- { 34225, "S30LABS IT ADVANCED SYSTEMS" },
- { 34226, "EION Inc" },
- { 34227, "Software Machine S.r.l." },
- { 34228, "Radialpoint SafeCare General Partnership" },
- { 34229, "Codewalker Solutions" },
- { 34230, "GCI Science & Technology Co. ,Ltd." },
- { 34231, "Open Cobalt Project" },
- { 34232, "Lucian-Alexandru Stanescu" },
- { 34233, "Kruger" },
- { 34234, "Land Srl" },
- { 34235, "Cork IT" },
- { 34236, "Pixie" },
- { 34237, "AssureTec Systems, Inc." },
- { 34238, "NewsWatch, Inc." },
- { 34239, "Innovating Distributed Systems S.L." },
- { 34240, "DARS d.d." },
- { 34241, "Competella AB" },
- { 34242, "PerspecSys Inc." },
- { 34243, "Rob Sims" },
- { 34244, "Media Capital - Editora Multimedia S.A." },
- { 34245, "Circle Software Group B.V." },
- { 34246, "Hacktor" },
- { 34247, "Stationtostation" },
- { 34248, "Cykor Systems Ltd" },
- { 34249, "Triada d.o.o." },
- { 34250, "Arkadin" },
- { 34251, "FREESTONE INTERNATIONAL GROUP LIMITED" },
- { 34252, "XPS ELETR\0303\0224NICA LTDA" },
- { 34253, "VIAFIRMA, S.L." },
- { 34254, sminmpec_unknown }, /* (Added by Wireshark) */
- { 34255, "Corner Bowl Software Corporation" },
- { 34256, "HUMICOM co,. ltd" },
- { 34257, "Defense Systems Group, NTT DATA Corporation" },
- { 34258, "Otip Office" },
- { 34259, "The State Higher School of Vocational Education in Elblag" },
- { 34260, "Apttsoft" },
- { 34261, "MeVis Medical Solutions AG" },
- { 34262, "Joinville Eau Vive" },
- { 34263, "picoChip Designs Ltd" },
- { 34264, "I.C.E. Logic Ltd." },
- { 34265, "OMNITECH SECURITY" },
- { 34266, "Unochapeco" },
- { 34267, "Swedbank AB" },
- { 34268, "Martin Luther College" },
- { 34269, "SLA Corporation" },
- { 34270, "Bamag GmbH" },
- { 34271, "Geomidi Informatica Ltda." },
- { 34272, "JSC NCC" },
- { 34273, "TMNS B.V." },
- { 34274, "Sipwise GmbH" },
- { 34275, "Boyne Resorts" },
- { 34276, "Signaturgruppen A/S" },
- { 34277, "Jens Mei\0303\0237ner" },
- { 34278, "Janitza electronics GmbH" },
- { 34279, "JoutCon Oy" },
- { 34280, "Metva" },
- { 34281, "Taiwan Dichen Co, Ltd." },
- { 34282, "MEON-yamaguchi" },
- { 34283, "CA-Jinchen Software Co.,Ltd" },
- { 34284, "Elisa Oyj" },
- { 34285, "S.C. DigiSign S.A." },
- { 34286, "Feusi Bildungszentrum AG" },
- { 34287, "Raiffeisen Bank Kosovo JSC" },
- { 34288, "Centralna banka Crne Gore" },
- { 34289, "IRE Rayos X S.A." },
- { 34290, "RS2i" },
- { 34291, "xrow GmbH" },
- { 34292, "Spring Street Storage" },
- { 34293, "Coyote Creek" },
- { 34294, "C-Cron GmbH" },
- { 34295, "Dalian Gigatec Electronics Co.,Ltd" },
- { 34296, "Dalian Maritime University" },
- { 34297, "Mobistar sa/nv" },
- { 34298, "ConteXtream" },
- { 34299, "Datavalet Technologies Inc." },
- { 34300, "Croix Rouge Francaise" },
- { 34301, "NEON, Inc." },
- { 34302, "NetIntegrate Solutions Inc" },
- { 34303, "Skyline Network Engineering" },
- { 34304, "Feynman Group, Inc." },
- { 34305, "Developing Solutions, Inc." },
- { 34306, "Canodus (formerly 'Decre')" },
- { 34307, "Deckland" },
- { 34308, "Ford & Mason Ltd" },
- { 34309, "Archimedes Solutions GmbH" },
- { 34310, "UBINETSYS.CO., LTD." },
- { 34311, "Data Net Solutions Group, Inc." },
- { 34312, "Accanto Systems S.r.l." },
- { 34313, "iDMS" },
- { 34314, "Datanomic Ltd." },
- { 34315, "Broadband United GmbH" },
- { 34316, "PDSG" },
- { 34317, "Fabric Technologies" },
- { 34318, "iEARN-USA" },
- { 34319, "Inveneo Inc." },
- { 34320, "Octo Wireless LLC" },
- { 34321, "ICP DAS Co., Ltd" },
- { 34322, "Hoojima Ltd" },
- { 34323, "Zolfo Cooper" },
- { 34324, "Ministry for Information Society of Montenegro" },
- { 34325, "Investec" },
- { 34326, "Nokia Technologies" },
- { 34327, "Farmacia Valentini" },
- { 34328, "Tmcpcorp" },
- { 34329, "DOCOMO interTouch" },
- { 34330, "Webyog Softworks Pvt Ltd" },
- { 34331, "Vilant Systems Oy" },
- { 34332, "Forex Club International Ltd" },
- { 34333, "Streamit BV" },
- { 34334, "Psylock GmbH" },
- { 34335, "Javahar Private Limited" },
- { 34336, "Shenzhen Meikai Electronics Co., Ltd." },
- { 34337, "Batracomiomachia" },
- { 34338, "Bredbandstelefoni i Sverige AB" },
- { 34339, "Asesor\0303\0255a CTDATA" },
- { 34340, "hoip.org" },
- { 34341, "Globalinx" },
- { 34342, "Prime Creation Technology Limited" },
- { 34343, "Saint-Petersburg Industrial Joint-Stock Bank" },
- { 34344, "PNI Digital Media Inc." },
- { 34345, "Bloodhound Technologies Inc" },
- { 34346, "Astral Media Radio inc." },
- { 34347, "ATX Innovation, Inc." },
- { 34348, "AKC Solutions" },
- { 34349, "miraclesoft beijing co.ltd" },
- { 34350, "Bingley Grammar School" },
- { 34351, "iseemedia Inc." },
- { 34352, "Kamailio.ORG" },
- { 34353, "ClairMail" },
- { 34354, "CGS, LLC" },
- { 34355, "sol4.net" },
- { 34356, "Inepex Ltd." },
- { 34357, "Plaid Tie Software" },
- { 34358, "Servicios t\0303\0251cnico comerciales en Internet S.C.P" },
- { 34359, "Nucleus Connect Pte Ltd" },
- { 34360, "Silmor.de Projects" },
- { 34361, "Matrixware Information Services GmbH" },
- { 34362, "FH Aachen" },
- { 34363, "Illallangi Enterprises" },
- { 34364, "geinitz.info" },
- { 34365, "Beijing Eastcat Information Technology Company" },
- { 34366, "Erwin Peters Systemtechnik GmbH" },
- { 34367, "Fire Check Consultants Pty Ltd" },
- { 34368, "General Dynamics Mediaware" },
- { 34369, "NanoSoft AG" },
- { 34370, "Papier- und Kartonfabrik Varel GmbH & Co KG" },
- { 34371, "A1 Systems Ltd." },
- { 34372, "Tubedale Limited" },
- { 34373, "ESCAUX" },
- { 34374, "Paki Shells Internet Services" },
- { 34375, "Mevio" },
- { 34376, "Autom\0303\0241tica y Regulaci\0303\0263n S.A." },
- { 34377, "Locaweb Ltda" },
- { 34378, "q1cc.net" },
- { 34379, "Cheers Co.,Ltd" },
- { 34380, "Puppet Labs, Inc. (formerly 'Reductive Labs, Inc.')" },
- { 34381, "Inixa - Security & Communication" },
- { 34382, "Bigdogs Bros & Co." },
- { 34383, "INEX/ZAMIR" },
- { 34384, "Sipoon kunta" },
- { 34385, "Hinge Software Co.,Ltd." },
- { 34386, "Intelligent Mechatronic Systems Inc. " },
- { 34387, "Component Engineering, Inc" },
- { 34388, "O'Reilly Automotive, Inc." },
- { 34389, "Geofront" },
- { 34390, "BlackGinger" },
- { 34391, "Owens Corning" },
- { 34392, "3 Rivers Communications" },
- { 34393, "blau Mobilfunk GmbH" },
- { 34394, "Whiplashcentret" },
- { 34395, "OMESH Networks" },
- { 34396, "Metropolitan Government of Nashville & Davidson County" },
- { 34397, "Cloud Scope Technologies, Inc." },
- { 34398, "LANCARD.COM\0343\0200\0200inc," },
- { 34399, "coravy. Ltd." },
- { 34400, "Research electronics AB" },
- { 34401, "Studio Moderna d.o.o." },
- { 34402, "Siskiyou County" },
- { 34403, "unseregedanken.de" },
- { 34404, "skyenet" },
- { 34405, "City of Cape Town" },
- { 34406, "Generals Network, OZ" },
- { 34407, "nexus AG" },
- { 34408, "WANET s.r.o." },
- { 34409, "Bebidas Gaseosas del Noroeste S.A." },
- { 34410, "Foss-on-line" },
- { 34411, "Playtech Estonia O\0303\0234" },
- { 34412, "Mutina Technology S.r.l." },
- { 34413, "Global Substation Solutions Inc." },
- { 34414, "Beijing Galaxy Golden Star Technology & Development Ltd." },
- { 34415, "Superna Analytics Inc." },
- { 34416, "Ottawa Area Intermediate School District" },
- { 34417, "eGestalt Technologies Pvt. Ltd." },
- { 34418, "Santa Clara University" },
- { 34419, "Regis University" },
- { 34420, "Hochschule RheinMain - University of Applied Sciences" },
- { 34421, "Benoit Eletrodomesticos LTDA" },
- { 34422, "Kingley Health" },
- { 34423, "Jamtlands County Council - Sweden" },
- { 34424, "Lansen Technology" },
- { 34425, "Archant Limited" },
- { 34426, "Wind Telecomunicazioni S.p.a" },
- { 34427, "Czeh Consultants" },
- { 34428, "UAB Lema" },
- { 34429, "Less Rain GmbH" },
- { 34430, "www.fiber-space.de" },
- { 34431, "ForceFive AG" },
- { 34432, "Lescom AG" },
- { 34433, "UniControls a.s." },
- { 34434, "HongTEC (BeiJing) Co., Ltd" },
- { 34435, "North Loop Networks" },
- { 34436, "TS-Associates plc" },
- { 34437, "Consequor Consulting AG" },
- { 34438, "DOHMEN, HERZOG & Partner GmbH" },
- { 34439, "West Virginia State University" },
- { 34440, "Velocix Limited" },
- { 34441, "NTT Basic Research Laboratories" },
- { 34442, "e-utile S.p.A." },
- { 34443, "Narinet Inc." },
- { 34444, "STS Studi Tecnologie Sistemi S.r.l." },
- { 34445, "Capgemini Nederland B.V. ( Netherlands )" },
- { 34446, "Hasenohr Consulting" },
- { 34447, "Beijing Huoohuoo Technology Co., Ltd" },
- { 34448, "G-Bits Network Technology Co., Ltd." },
- { 34449, "Laguna Ventures, Inc." },
- { 34450, "JCNetwork e.V." },
- { 34451, "OS3 srl" },
- { 34452, "EDV-Service Oliver Strucken" },
- { 34453, "OPT Tahiti" },
- { 34454, "VIS Visual Information Systems Limited" },
- { 34455, "Primex Family of Companies" },
- { 34456, "Dashwire, Inc." },
- { 34457, "Rex Wheeler" },
- { 34458, "K.S.Transplaneta Ltd" },
- { 34459, "Network Box Corporation Ltd" },
- { 34460, "xplo.re IT Services" },
- { 34461, "Ithaxis" },
- { 34462, "init AG" },
- { 34463, "Corey Farrell" },
- { 34464, "Pragma Securities" },
- { 34465, "CyPace, Inc." },
- { 34466, "polyformal System- & Formarbeit" },
- { 34467, "REPOTEC CO., LTD." },
- { 34468, "Open Source Solution Technology Corporation " },
- { 34469, "LOGIT CORPORATION" },
- { 34470, "Institute of Cybernetics at Tallinn University of Technology" },
- { 34471, "Trust-iD BV" },
- { 34472, "Hogeschool van Amsterdam" },
- { 34473, "DOKOM Gesellschaft f\0303\0274r Telekommunikation mbH" },
- { 34474, "ALT-LAN" },
- { 34475, "Polytronics Engineering Ltd." },
- { 34476, "BIA-Net GmbH" },
- { 34477, "K & V spol. s r.o." },
- { 34478, "CMS Hasche Sigle" },
- { 34479, "DWEB SOLU\0303\0207\0303\0225ES PARA INTERNET" },
- { 34480, "iModules" },
- { 34481, "World Fuel Services" },
- { 34482, "Lambdazero IT" },
- { 34483, "Himalaya networks" },
- { 34484, "Toolio Systems" },
- { 34485, "R2Meton AB" },
- { 34486, "Hanno.dk" },
- { 34487, "Kemi Shipping Oy" },
- { 34488, "Kryptiq Corporation" },
- { 34489, "Nikon AG" },
- { 34490, "Teliwave Pte Ltd" },
- { 34491, "Almaz-Antey Telecom" },
- { 34492, "Aryaka Networks" },
- { 34493, "CPSG" },
- { 34494, "HSQ Technology" },
- { 34495, "Streetcar Ltd" },
- { 34496, "Cision US Inc." },
- { 34497, "LinSec Consulting" },
- { 34498, "IRBIS-T" },
- { 34499, "Martin Merkel" },
- { 34500, "LAOLA1 Multimedia GmbH" },
- { 34501, "S. C. Null Team Impex SRL." },
- { 34502, "Millikin University" },
- { 34503, "WMI Computer" },
- { 34504, "GuangZhou Comble Information Technology Co.,Ltd." },
- { 34505, "SIEGNETZ-IT GmbH" },
- { 34506, "Twinfalls Technologies" },
- { 34507, "Safe Consulting AS" },
- { 34508, "Wyatt Tarrant & Combs LLP" },
- { 34509, "Portland State University" },
- { 34510, "Optimum Path Systems, Inc" },
- { 34511, "Trinity County Office of Education" },
- { 34512, "graphische Informationstechnik Beratungsgesellschaft mbH (grit)" },
- { 34513, "RMT INC" },
- { 34514, "Australian College of Remote and Rural Medicine" },
- { 34515, "Whitemice Consulting" },
- { 34516, "Network Applied Communication Laboratory" },
- { 34517, "Eastcom Systems Pte Ltd" },
- { 34518, "Movianto GmbH" },
- { 34519, "UK Border Agency" },
- { 34520, "Mudra Communications Pvt. Ltd." },
- { 34521, "Comlink Telecommunication Services Inc" },
- { 34522, "Pinnacle Wireless " },
- { 34523, "BlueKrypt" },
- { 34524, "RIS2048, Lda" },
- { 34525, "Yesin.NET" },
- { 34526, "Techsologic" },
- { 34527, "Matrix Telecom Pvt. Ltd." },
- { 34528, "SecureWare" },
- { 34529, "Iuniperus S.r.l." },
- { 34530, "Netpioneer GmbH" },
- { 34531, "landofnever.net" },
- { 34532, "mkbdoos" },
- { 34533, "Compuvisor Lab" },
- { 34534, "Trimble MRM" },
- { 34535, "JetTek LLC" },
- { 34536, "fdXtended" },
- { 34537, "The Moses H. Cone Memorial Hospital" },
- { 34538, "s.a. D'Ieteren n.v." },
- { 34539, "Netcom XXI Informatica y Comunicaciones, S.L." },
- { 34540, "azeti Networks GmbH" },
- { 34541, "Bematech S.A." },
- { 34542, "kindwind technological ltd." },
- { 34543, "Susquehanna International Group" },
- { 34544, "Certant" },
- { 34545, "Cistera Networks" },
- { 34546, "RedZinc Ltd" },
- { 34547, "Glory Global Solutions (formerly 'Talaris')" },
- { 34548, "Badischer Landwirtschaftlicher Hauptverband e.V." },
- { 34549, "University of Saskatchewan" },
- { 34550, "Austin Hughes Electronics Ltd." },
- { 34551, "Zettacon Systems Inc." },
- { 34552, "IP SQUARE Softwareerzeuger GmbH" },
- { 34553, "Spryware" },
- { 34554, "GrandPower" },
- { 34555, "Eurasian energy corporation JSC" },
- { 34556, "EDAN INSTRUMENTS CO., LTD." },
- { 34557, "Ministerio de Justicia" },
- { 34558, "Unassigned" },
- { 34559, "Maschinenfabrik Reinhausen GmbH" },
- { 34560, "Marquise Technologies" },
- { 34561, "VITALATIV, s.r.o." },
- { 34562, "FUHST MEHRENS" },
- { 34563, "Calame" },
- { 34564, "Hoseo telecom Co., Ltd." },
- { 34565, "KVARTA Ltd." },
- { 34566, "Tradar Limited" },
- { 34567, "Micronetics, Inc." },
- { 34568, "Synectics" },
- { 34569, "KB \"Uniastrumbank\"" },
- { 34570, "Netdeep Tecnologia" },
- { 34571, "SIGNION SYSTEMS" },
- { 34572, "NARI-RELAYS Electric Co., Ltd." },
- { 34573, "Finaf S.p.A" },
- { 34574, "Blackbit Studio" },
- { 34575, "Kent Imaging Inc." },
- { 34576, "HS Emden/Leer" },
- { 34577, "Correlation Systems Ltd" },
- { 34578, "OpenNMS Sans Effort (OSE)" },
- { 34579, "SYM Technology, Inc." },
- { 34580, "Need Solutions" },
- { 34581, "J3TEL" },
- { 34582, "Tuenti Technologies" },
- { 34583, "V-Private AG" },
- { 34584, "unterberg-electronic Gmbh" },
- { 34585, "REWE-Informations-Systeme GmbH" },
- { 34586, "Ontario Teachers Pension Plan Board" },
- { 34587, "Hiive Systems" },
- { 34588, "Beijing office of International Air Transport Association" },
- { 34589, "Adnovate " },
- { 34590, "Novus Produtos Eletronicos Ltda" },
- { 34591, "JSC Proryv-Komplekt" },
- { 34592, "Shenzhen C-Data Technology Co.,Ltd." },
- { 34593, "Zhilabs" },
- { 34594, "Growing Opportunity Finance India Private Limited" },
- { 34595, "Xteam Network(Beijing) Co.,Ltd " },
- { 34596, "Casalogic A/S" },
- { 34597, "CADT Software and Drafting, S.L." },
- { 34598, "Cable Sense Ltd" },
- { 34599, "3SI Security Systems NV" },
- { 34600, "TECSEM Tecnologia em Sistemas Embarcados" },
- { 34601, "MongoDB" },
- { 34602, "Bomgar Corporation" },
- { 34603, "Seria AS" },
- { 34604, "Fibernetics Corp" },
- { 34605, "SL Corporation" },
- { 34606, "Wayne RESA" },
- { 34607, "Newdaysoft Co., Ltd" },
- { 34608, "American Society for Microbiology" },
- { 34609, "Vine Telecom Co., Ltd" },
- { 34610, "Grand Future Beijing Info-Tech Co., Ltd." },
- { 34611, "Berufsf\0303\0266rderungswerk Oberhausen" },
- { 34612, "Alteris Sp. z o.o." },
- { 34613, "iKron Ltd." },
- { 34614, "Technocats GmbH" },
- { 34615, "Magyar \0303\0201llamkincst\0303\0241r / Hungarian State Treasury" },
- { 34616, "ActualWeb Soluciones Informaticas" },
- { 34617, "RCDevs" },
- { 34618, "Gruppo TNT S.r.l." },
- { 34619, "3Dicom, S.L." },
- { 34620, "Asuerus van Tuijl" },
- { 34621, "imacab" },
- { 34622, "Heimore Group AB" },
- { 34623, "USF1" },
- { 34624, "Tokavuh Technologies oy" },
- { 34625, "Actavis Group hf" },
- { 34626, "A-Real Consulting LLC" },
- { 34627, "Digifix Ltda" },
- { 34628, "Citrus Networks" },
- { 34629, "MP Advanced Multimedia" },
- { 34630, "Tigron BVBA" },
- { 34631, "Janelia Farm Research Campus/HHMI" },
- { 34632, "Cohort Technology Ltd" },
- { 34633, "norgie.net" },
- { 34634, "Graduate School of Education and Information Studies" },
- { 34635, "Pi-Systemprogrammierungs-GmbH" },
- { 34636, "Contact Center Compliance Corporation" },
- { 34637, "Revenue Solutions, Inc" },
- { 34638, "Memphis Network Service Ltd." },
- { 34639, "Conformity Inc" },
- { 34640, "Nodnet" },
- { 34641, "Dimac Hosting AB" },
- { 34642, "Rugged Information Technology Equipment Corporation" },
- { 34643, "Garmin International" },
- { 34644, "Potomac & Bluebonnet Technolgy LLC" },
- { 34645, "Adael Wireless SARL" },
- { 34646, "HellermannTyton Data Ltd" },
- { 34647, "KAMOME Engineering, Inc." },
- { 34648, "The-Box Development" },
- { 34649, "netvisiontel" },
- { 34650, "P2Cache Pte Ltd" },
- { 34651, "agama co,ltd " },
- { 34652, "IPF Technology Ltd" },
- { 34653, "Irisys" },
- { 34654, "La Gentz KG" },
- { 34655, "Berthold Boeser Ingenieurbuero" },
- { 34656, "ATS, Applicazione Tecnologie Speciali " },
- { 34657, "Seifert mtm Systems (Malta) Ltd." },
- { 34658, "Sysadmins LV" },
- { 34659, "EPLAN Software & Service GmbH & Co. KG" },
- { 34660, "SIA Datu Sistemas" },
- { 34661, "Islandsbanki" },
- { 34662, "Ajuntament de Sant Adria de Besos" },
- { 34663, "Lavinia Interactiva" },
- { 34664, "Trident Micro Systems" },
- { 34665, "ENTEL S.A. BOLIVIA" },
- { 34666, "Lava Business Solutions" },
- { 34667, "DSP LABS S.r.l." },
- { 34668, "Koine Servizi S.r.l." },
- { 34669, "Encarnate, LLC" },
- { 34670, "Scott Shen" },
- { 34671, "Anoop Aryal" },
- { 34672, "MicroAqua Network system" },
- { 34673, "The FreeDHCP Project" },
- { 34674, "FLIR Systems, Inc." },
- { 34675, "blackcase.pl" },
- { 34676, "Vox Telecom" },
- { 34677, "informationpartners GmbH & Co. KG" },
- { 34678, "Anticept" },
- { 34679, "forcont business technology gmbh" },
- { 34680, "RUAG Holding AG" },
- { 34681, "DATAGROUP IT Services Holding AG" },
- { 34682, "ATP Management & Technology s.r.l." },
- { 34683, "Seacliff Associates, LLC" },
- { 34684, "Rosado Beheer BV" },
- { 34685, "Accipiter Systems, Inc." },
- { 34686, "Sunet Technology LLC" },
- { 34687, "Gale" },
- { 34688, "King Abdullah University of Science and Technology" },
- { 34689, "Tekron International Ltd" },
- { 34690, "National Gypsum Company" },
- { 34691, "EON Co.,Ltd" },
- { 34692, "DICOM Grid, Inc" },
- { 34693, "Netsoft Lund Development AB" },
- { 34694, "eleven GmbH" },
- { 34695, "EXTENSION, Inc." },
- { 34696, "RIOD Technologies" },
- { 34697, "AfirmTrust, LLC" },
- { 34698, "Studio Caccia" },
- { 34699, "France D\0303\0251veloppement Conseil" },
- { 34700, "Beijing Hongdexin Information Technology Co, Ltd." },
- { 34701, "BTCentral" },
- { 34702, "Parity Energy Inc." },
- { 34703, "Stefan Sieber" },
- { 34704, "H. Lundbeck A/S" },
- { 34705, "ZAO GU NPO \"Stroytechautomatika\"" },
- { 34706, "Aprius Inc." },
- { 34707, "Centro Federal de Educa\0303\0247\0303\0243o Tecnol\0303\0263gica de Minas Gerais" },
- { 34708, "Etrafficers, Inc." },
- { 34709, "Lightner Engineering" },
- { 34710, "Advance Communication Technologies" },
- { 34711, "Jamaica Broilers Group" },
- { 34712, "Fujian Newland Auto-ID Tech. Co., Ltd." },
- { 34713, "lc4ever.net" },
- { 34714, "OCULUS Optikger\0303\0244te GmbH" },
- { 34715, "ITVT GmbH" },
- { 34716, "Vizimax Inc." },
- { 34717, "bhold" },
- { 34718, "FUENSO" },
- { 34719, "Cronon AG" },
- { 34720, "mFoundry" },
- { 34721, "Magyar Waldorf Sz\0303\0266vets\0303\0251g / Hungarian Waldorf Fellowship" },
- { 34722, "FastSoft, Inc." },
- { 34723, "Conxx" },
- { 34724, "netInsight ITLabs" },
- { 34725, "Vasc-Alert" },
- { 34726, "Works Systems" },
- { 34727, "Burda Digital Systems GmbH" },
- { 34728, "INSA de Lyon" },
- { 34729, "OOO PS Yandex.Dengi" },
- { 34730, "FRANCILIENNE D'INGENIERIE ET DE SERVICES INFORMATIQUES SAS" },
- { 34731, "Sloan Valve Company" },
- { 34732, "Spb Software Inc." },
- { 34733, "Zinnia Systems" },
- { 34734, "University of Macerata" },
- { 34735, "Cellfish" },
- { 34736, "Universidade Estadual Vale do Acara\0303\0272 - UVA" },
- { 34737, "CIMNE" },
- { 34738, "MassiveSolutions Ltd" },
- { 34739, "lihnidos.org" },
- { 34740, "University of Ottawa" },
- { 34741, "Binet R\0303\0251seau" },
- { 34742, "LevelMobile, Inc." },
- { 34743, "Teleperformance" },
- { 34744, "QC Technology B.V." },
- { 34745, "METADYS" },
- { 34746, "Kevinsnet Limited" },
- { 34747, "Infineta Systems, Inc" },
- { 34748, "Twitter, Inc." },
- { 34749, "SubscriberMail, LLC" },
- { 34750, "Truenorthlogic" },
- { 34751, "Shanghai Meridian Technologies, Co. Ltd." },
- { 34752, "ITDiv.com" },
- { 34753, "OnTime Networks AS" },
- { 34754, "PowerTrunk Inc." },
- { 34755, "Res Ingenium s.r.l." },
- { 34756, "Inoa" },
- { 34757, "Gorilla Concept GmbH" },
- { 34758, "Univerza v Ljubljani" },
- { 34759, "Thames Valley Police" },
- { 34760, "AMiT s.r.o." },
- { 34761, "SSC-IT" },
- { 34762, "DartIT" },
- { 34763, "People Power Company" },
- { 34764, "ProStructure Consulting " },
- { 34765, "forVNs Group" },
- { 34766, "Invities" },
- { 34767, "ISPIN AG" },
- { 34768, "S+P LION AG" },
- { 34769, "ACORDE TECHNOLOGIES" },
- { 34770, "Cardiff University" },
- { 34771, "Altmann Software" },
- { 34772, "Automat Limited" },
- { 34773, "Hx Engineering, LLC" },
- { 34774, "Huawei Symantec Technologies Co.,Ltd" },
- { 34775, "Canford Software Consultancy Limited" },
- { 34776, "TODO BPO E SOLUCOES EM TECNOLOGIA S.A." },
- { 34777, "Capek Consulting" },
- { 34778, "American Customer Care, Inc." },
- { 34779, "DeltaGlobal Co. LTD" },
- { 34780, "IT One" },
- { 34781, "Unassigned" },
- { 34782, "dcm4che.org" },
- { 34783, "Gordian Knot Limited" },
- { 34784, "Hurtig DataComm" },
- { 34785, "University of Craiova" },
- { 34786, "Hartwick Services" },
- { 34787, "Sunflower Broadband" },
- { 34788, "Ministerio de Hacienda de El Salvador" },
- { 34789, "Northgate Information Solutions PLC" },
- { 34790, "Vtkom d.o.o." },
- { 34791, "Centre Hospitalier de P\0303\0251ronne" },
- { 34792, "Gouvernement de Nouvelle-Caledonie" },
- { 34793, "Azblink" },
- { 34794, "JSC Commercial Bank \"Center-invest\"" },
- { 34795, "DATA-PKS Ltd." },
- { 34796, "MBS GmbH" },
- { 34797, "AM-GmbH" },
- { 34798, "Tribunal Regional Eleitoral do Maranh\0303\0243o" },
- { 34799, "ACTi Corporation" },
- { 34800, "Polizei Baden-W\0303\0274rttemberg" },
- { 34801, "sublab e.V." },
- { 34802, "HomeNet" },
- { 34803, "Gubkin Russian State University" },
- { 34804, "Wideband Semiconductor, Inc." },
- { 34805, "Zivillian Software" },
- { 34806, "Optical Systems Design Pty Ltd" },
- { 34807, "Q-TECH INFORMATION CO.,LTD" },
- { 34808, "Jiangsu broadcasting television network corporation limited" },
- { 34809, "Parsons Brinckerhoff" },
- { 34810, "Intermountain Healthcare" },
- { 34811, "Stollmann E+V GmbH" },
- { 34812, "Mirifice Ltd" },
- { 34813, "Multilink " },
- { 34814, "Zpend Pty. Ltd." },
- { 34815, "Angry Dog Business Sytems" },
- { 34816, "Icon Power Solutions Pvt. Ltd." },
- { 34817, "Tamtron Oy" },
- { 34818, "CPI Corporation" },
- { 34819, "Nacka kommun" },
- { 34820, "Satcom Technologies EMC" },
- { 34821, "Lafayette Consolidated Government" },
- { 34822, "Calet, Inc." },
- { 34823, "VersaForm Systems Corp" },
- { 34824, "Texas A&M University System" },
- { 34825, "Pareto Networks Inc." },
- { 34826, "Tayana Software Solutions Pvt Ltd" },
- { 34827, "RT-RK" },
- { 34828, "Pannon GSM T\0303\0241vk\0303\0266zl\0303\0251si Zrt." },
- { 34829, "GraphLogic Inc" },
- { 34830, "Forers, s. r. o." },
- { 34831, "The Freecycle Network" },
- { 34832, "Intelibs, Inc" },
- { 34833, "DrivenDown.com" },
- { 34834, "BermudaTriangle.com" },
- { 34835, "Hypercable" },
- { 34836, "Denkosha Co.,Ltd." },
- { 34837, "Arrive Technologies" },
- { 34838, "Innovative SCADA Solutions Pty Ltd" },
- { 34839, "abakus IT AG" },
- { 34840, "Shanghai Huaheng Telecom Equipment Co.,Ltd" },
- { 34841, "Gordon Food Service, Inc." },
- { 34842, "TERASAKI ELECTRIC CO.,LTD" },
- { 34843, "NASCENT Technology, LLC" },
- { 34844, "Gennet S.A." },
- { 34845, "Facult\0303\0251 des Sciences et Techniques de Tanger" },
- { 34846, "SERTRES del Norte " },
- { 34847, "Spacetime Studios, LLC" },
- { 34848, "Shibasoku" },
- { 34849, "Security Code Ltd." },
- { 34850, "EldoS Corporation" },
- { 34851, "Adalia Oy" },
- { 34852, "Roeften" },
- { 34853, "RainStor" },
- { 34854, "indeni" },
- { 34855, "Votiro Ltd. (formerly 'MobileTick Ltd')" },
- { 34856, "ALTAVIA SA" },
- { 34857, "BaiY Studio" },
- { 34858, "Wireless Networks Association (WNA.gr)" },
- { 34859, "jgfs.net" },
- { 34860, "Finalist IT Group" },
- { 34861, "Rajant Corporation" },
- { 34862, "Fundamo" },
- { 34863, "Leopold Kostal GmbH & Co. KG" },
- { 34864, "Mito Europe Ltd" },
- { 34865, "World Evolved Services, LLC" },
- { 34866, "Suffolk County Council (formerly 'Customer Service Direct')" },
- { 34867, "Universitaet Greifswald" },
- { 34868, "Winnerstek Inc." },
- { 34869, "Ian Hine Consulting" },
- { 34870, "Megabyte Doctor (Pty) Ltd" },
- { 34871, "trovicor GmbH" },
- { 34872, "ETM Communications AB" },
- { 34873, "Klein & Partner KG" },
- { 34874, "Automasjon og Data as" },
- { 34875, "Alpikom SpA" },
- { 34876, "Informatics Corporation of America" },
- { 34877, "Masergy Communications, Inc." },
- { 34878, "Advanstar Communications Inc." },
- { 34879, "BlueCross BlueShield of Minnesota" },
- { 34880, "Cortina Systems" },
- { 34881, "EVT Technologies LTD" },
- { 34882, "Kolektor Group" },
- { 34883, "House Arkko" },
- { 34884, "David Wozny Limited" },
- { 34885, "SSI (US) Inc" },
- { 34886, "Compagnie des Alpes" },
- { 34887, "Iariss" },
- { 34888, "Gatix" },
- { 34889, "McKnight Insight" },
- { 34890, "Aizkraukles Banka A/S" },
- { 34891, "Croatia Control Ltd." },
- { 34892, "Kedros, a.s." },
- { 34893, "Leeds City Council" },
- { 34894, "Global Strategies Group, Mission Systems" },
- { 34895, "ITaM Services" },
- { 34896, "Gorilla Logic, Inc." },
- { 34897, "Centro Brasileiro de Pesquisas Fisicas" },
- { 34898, "CESEC-SFF" },
- { 34899, "H5 audits" },
- { 34900, "Informations Technologie Service und Consulting GmbH" },
- { 34901, "Fortunaglobal (Pvt) Limited" },
- { 34902, "IT Industry LTD" },
- { 34903, "M247 Ltd" },
- { 34904, "KRC OOO" },
- { 34905, "G-Lab" },
- { 34906, "RadiantGrid Technologies, LLC" },
- { 34907, "TELEVIC N.V." },
- { 34908, "CareCloud Corp" },
- { 34909, "RHD Research Ltd" },
- { 34910, "Geeknet, Inc." },
- { 34911, "Nanjing Jiajian Network Co. Ltd." },
- { 34912, "PT. Nyra" },
- { 34913, "TDM Ing\0303\0251nierie" },
- { 34914, "Creative Consulting GmbH" },
- { 34915, "Free Software Foundation Europe e.V." },
- { 34916, "Walki Group Oy" },
- { 34917, "Car Chase Workshop Inc." },
- { 34918, "Syncapse Corp." },
- { 34919, "Sky Wisdom Technology Limited" },
- { 34920, "Allen Lund Company" },
- { 34921, "EvoStor Inc." },
- { 34922, "Epic Advertising Inc" },
- { 34923, "KOOLING" },
- { 34924, "Augustine Consulting" },
- { 34925, "Nantes Systems Private Limited" },
- { 34926, "Limited Liability Company \"Wild Orchid\"" },
- { 34927, "DL Sant\0303\0251" },
- { 34928, "ACVITAS" },
- { 34929, "SURGIDEX" },
- { 34930, "Caneris Inc" },
- { 34931, "ShangHai DynamiCode Company Limited" },
- { 34932, "CMS Affiliate" },
- { 34933, "CPO Partners" },
- { 34934, "CirclePrinters" },
- { 34935, "marmira" },
- { 34936, "Creowave Oy" },
- { 34937, "UniversitaetsSpital Zurich" },
- { 34938, "F\0303\0251d\0303\0251ration fran\0303\0247aise d'\0303\0251quitation" },
- { 34939, "SURMEI MIHAI-EUGEN" },
- { 34940, "Roman V. Kiseliov" },
- { 34941, "DiegoLima.org" },
- { 34942, "Cambrium BV." },
- { 34943, "Sumisho Computer Systems Corporation" },
- { 34944, "Amplus Communication PTE LTD" },
- { 34945, "Albert Ziegler GmbH & Co. KG" },
- { 34946, "Independent Project Engineering Ltd" },
- { 34947, "chill-n-go, Inc" },
- { 34948, "NORMHOST" },
- { 34949, "Electronics Source Co.,Ltd." },
- { 34950, "Herrmann & Lenz Solutions GmbH" },
- { 34951, "Komercijalna Banka AD Skopje" },
- { 34952, "nxtControl GmbH" },
- { 34953, "Concentric Circle Consulting" },
- { 34954, "Novtis do Brasil S/A" },
- { 34955, "Roland Gruber Softwareentwicklung" },
- { 34956, "Shanghai Transform IT Co. Ltd" },
- { 34957, "TTC Next-generation Home Network System WG" },
- { 34958, "Logilin" },
- { 34959, "Ingenieurbuero Berghofer KG" },
- { 34960, "SuperHost.pl s.c." },
- { 34961, "H&S Hochfrequenztechnik GmbH" },
- { 34962, "Falco Networks B.V." },
- { 34963, "Idle Pattern Communications, LLC" },
- { 34964, "Carbones del Cerrejon Ltd." },
- { 34965, "Ricardo I. Vieitez Parra" },
- { 34966, "Global Rail Systems, Inc" },
- { 34967, "Sichuan Hongguan Communication Technology Co., Ltd." },
- { 34968, "Airimba Wireless, Inc." },
- { 34969, "REGNIA,Inc." },
- { 34970, "Institut Teknologi Nasional (ITENAS)" },
- { 34971, "Ethereal Information Technology, Ltd." },
- { 34972, "Eric Huss" },
- { 34973, "MIANYANG NETOP TELECOM EQUIPMENT LTD.CO." },
- { 34974, "alentogroup.org" },
- { 34975, "IPROAD, Inc." },
- { 34976, "Mathew Systems Inc." },
- { 34977, "Node-Nine, Inc." },
- { 34978, "Laysis Consulting Inc." },
- { 34979, "Scientis Solutions Ltd" },
- { 34980, "linexus" },
- { 34981, "cramif" },
- { 34982, "Eye Pea Ltd. (formerly 'exaStack Limited')" },
- { 34983, "013Netvision" },
- { 34984, "ER Technology Ltda." },
- { 34985, "kylimar.com" },
- { 34986, "Bookmans" },
- { 34987, "OneWire " },
- { 34988, "Clearstone Central Laboratories" },
- { 34989, "appventure GmbH" },
- { 34990, "Vodafone Czech Republic a.s." },
- { 34991, "SooperCreations" },
- { 34992, "Microlynx Systems Ltd" },
- { 34993, "Cymfony" },
- { 34994, "d3v Systems" },
- { 34995, "DBMJ Rehabilitation Services, PLLC" },
- { 34996, "Richard D. Ball, MD, PhD" },
- { 34997, "Kyoto University of Education" },
- { 34998, "CILogon Project" },
- { 34999, "JSC \0302\0253Institute of infotelecommunications\0302\0273" },
- { 35000, "OptXware Research&Development Ltd." },
- { 35001, "NERINFORMATICA DI NERI LUCIANO (formerly 'APTASYS S.R.L.')" },
- { 35002, "dcux Co.Ltd." },
- { 35003, "ADP ESI" },
- { 35004, "Bahia Software SL" },
- { 35005, "IMS Nanofabrication AG" },
- { 35006, "Vivio World" },
- { 35007, "mPAY24 GmbH" },
- { 35008, "Corporation Service Company" },
- { 35009, "Techno Factory Desenvolvimento de Software Ltda." },
- { 35010, "ATK-tehdas Oy" },
- { 35011, "Toyota Finance Australia Ltd." },
- { 35012, "StorSimple" },
- { 35013, "Sweet Briar College" },
- { 35014, "Fenzke Netzwerktechnik GmbH" },
- { 35015, "PWM Project" },
- { 35016, "Bank-Pedersen" },
- { 35017, "Western Range Maintenance" },
- { 35018, "GoMidjets" },
- { 35019, "Decho Corporation" },
- { 35020, "nangu.TV" },
- { 35021, "TranSoft a.s." },
- { 35022, "Sueddeutscher Verlag" },
- { 35023, "Heirich IT Dienste GmbH" },
- { 35024, "Hospital Sierrallana - Servicio C\0303\0241ntabro de Salud" },
- { 35025, "Lachlan Gunn" },
- { 35026, "PRODIST CONSULTORIA INFORMATICA E PRODUCOES ARTISTICAS LTDA." },
- { 35027, "liuxiangbupt.com" },
- { 35028, "netPark LLC" },
- { 35029, "K.C.Innovations Co.,Ltd." },
- { 35030, "Run Technologies Co.,Ltd.Beijing" },
- { 35031, "GP NPF \"Ratex\"" },
- { 35032, "BelTechInfo" },
- { 35033, "Global Net Commerce, Inc." },
- { 35034, "Sentai Digital, LLC" },
- { 35035, "interCLICK" },
- { 35036, "ASKO-IT" },
- { 35037, "Onesource" },
- { 35038, "XYMA-SONDEO" },
- { 35039, "Denva ApS" },
- { 35040, "Xiamen Helios Telecom Equipment Manufacture Inc." },
- { 35041, "Electro Power Systems SpA" },
- { 35042, "Sporting Index Ltd" },
- { 35043, "Tripower" },
- { 35044, "CJSC Schelkovo Agrochim" },
- { 35045, "Mathieu Malaterre Consulting" },
- { 35046, "Intucell" },
- { 35047, "Sangfor Technologies Co.,Ltd." },
- { 35048, "ShenZhen GreatFirst Technology Co., Ltd." },
- { 35049, "Marler Media" },
- { 35050, "topdog.ru.net" },
- { 35051, "Systemnoe Modelirovanie i Analiz LLC" },
- { 35052, "Condrey Corporation" },
- { 35053, "LLC \"Promo Interactive\"" },
- { 35054, "Jan Schampera" },
- { 35055, "Gameloft" },
- { 35056, "whiteroad" },
- { 35057, "UNESP" },
- { 35058, "NikB-Soft" },
- { 35059, "VarnaNet" },
- { 35060, "IGI Mobile, Inc." },
- { 35061, "Normation" },
- { 35062, "AiN-Tech. Corp." },
- { 35063, "Ukraine Property Group, Ltd." },
- { 35064, "Jderobot" },
- { 35065, "Sinequa" },
- { 35066, "HLRN" },
- { 35067, "mail.de GmbH" },
- { 35068, "Virgo Systems Kft." },
- { 35069, "Worldwide Trust Asia Pte Ltd" },
- { 35070, "Plausible Labs Cooperative, Inc." },
- { 35071, "Q & M Inform\0303\0241tica Ltda" },
- { 35072, "NGK Houten" },
- { 35073, "GateWare Communications GmbH" },
- { 35074, "MaxMara Fashion Group s.r.l." },
- { 35075, "BlueTech Technology Co., Ltd." },
- { 35076, "synfin.de" },
- { 35077, "Gracenote Inc." },
- { 35078, sminmpec_unknown }, /* (Added by Wireshark) */
- { 35079, "Terminal Quequen S.A" },
- { 35080, "KDH" },
- { 35081, "Sarana Tunggal Pratama" },
- { 35082, "Amaranten (ASIA) Network Co. Ltd." },
- { 35083, "TOSS GmbH" },
- { 35084, "RBS Coutts International" },
- { 35085, "EURO-INFORMATION" },
- { 35086, "ReliabilityFirst Corporation" },
- { 35087, "BD Consult A/S" },
- { 35088, "SRA International, Inc" },
- { 35089, "Bluebird Electronics Ltd" },
- { 35090, "CTI" },
- { 35091, "Mitec Telecom Inc" },
- { 35092, "Made IT" },
- { 35093, "AT Testing" },
- { 35094, "iDevices Industria e Comercio de Produtos Eletronicos Ltda" },
- { 35095, "OFFICE24 Co.,Ltd." },
- { 35096, "SmartEquip Inc." },
- { 35097, "BlueWater Communication Group" },
- { 35098, "Pica8 Technologies, Inc" },
- { 35099, "E-Mice Solutions (H.K.) Limited" },
- { 35100, "Globelinks Technologies Limited" },
- { 35101, "SHENZHEN SHENXUN INFORMATION TECHNOLOGY DEVELOPMENT CO.,LID" },
- { 35102, "Guangdong Huada Integrated Technology Co.,ltd." },
- { 35103, "Sichuan Cybercamera Information Technology Co.,Ltd" },
- { 35104, "Oerlikon Textile" },
- { 35105, "Mason Brown Development, LLC" },
- { 35106, "Reale Mutua Assicurazioni" },
- { 35107, "Prosol Group (Pty) Ltd" },
- { 35108, "tocore education" },
- { 35109, "Scienta Media s.r.o" },
- { 35110, "443 Pty Ltd" },
- { 35111, "NBank - Investitions und F\0303\0266rderbank" },
- { 35112, "Vem Sistemi SpA" },
- { 35113, "OpTier" },
- { 35114, "Robert Wood Johnson University Hospital" },
- { 35115, "SqueakSoft.com, LLC" },
- { 35116, "Trover Solutions" },
- { 35117, "BamNet" },
- { 35118, "Korestone Technologies" },
- { 35119, "Belhard Group JSC" },
- { 35120, "SIDN" },
- { 35121, "BULiGL" },
- { 35122, "Wayob" },
- { 35123, "Clear Channel Radio Digital" },
- { 35124, "FilesAnywhere.com" },
- { 35125, "Helmut Ritter" },
- { 35126, "Vodafone Group Services GmbH" },
- { 35127, "Japan Communication Inc." },
- { 35128, "KWS-Electronic GmbH" },
- { 35129, "Rahn & Bodmer Co." },
- { 35130, "fipscode" },
- { 35131, "London Underground Ltd" },
- { 35132, "IFProject" },
- { 35133, "Gobierno de la Republica NeuKarthago" },
- { 35134, "4Access Communications Company, Inc." },
- { 35135, "Personal Software Company" },
- { 35136, "BlueStripe Software" },
- { 35137, "Chris Clayson" },
- { 35138, "PK Verkkotaito Oy" },
- { 35139, "AZWUL" },
- { 35140, "CableHD Radio Network" },
- { 35141, "PSIGlenmere" },
- { 35142, "VX4.NET" },
- { 35143, "Helpo Systems" },
- { 35144, "Power Quadrant" },
- { 35145, "Gearbit" },
- { 35146, "China Net Cloud" },
- { 35147, "Wishfi Pte. Ltd" },
- { 35148, sminmpec_unknown }, /* (Added by Wireshark) */
- { 35149, "NPO Lisco Ltd." },
- { 35150, "inno-networks" },
- { 35151, "Raiffeisen Bank Aval" },
- { 35152, "AvroRAID" },
- { 35153, "Kynetics srl" },
- { 35154, "PowerShield Ltd." },
- { 35155, "IP Cube Co.,Ltd" },
- { 35156, "Unbit " },
- { 35157, "University of Manitoba" },
- { 35158, "Osaka International Educational Institution" },
- { 35159, "ITC MIKS, LLC" },
- { 35160, "Equicom" },
- { 35161, "Venturi S.R.L." },
- { 35162, "TeleOSS Consulting Ltd." },
- { 35163, "OOO InfoTechService" },
- { 35164, "Black Earth Consulting Ltd" },
- { 35165, "Barid Al Maghrib" },
- { 35166, "E2E Networks Private Limited" },
- { 35167, "MPI Bremen" },
- { 35168, "NT Services Ltd." },
- { 35169, "Sven Christel" },
- { 35170, "Bioptic Co., Ltd." },
- { 35171, "Cloudeva" },
- { 35172, "Nordex" },
- { 35173, "Automobile Association \"DreamCar\"" },
- { 35174, "PBS&J" },
- { 35175, "TamKang University - Information Management Network Association" },
- { 35176, "Asavie Technologies Ltd." },
- { 35177, "Control4" },
- { 35178, "MJV Tecnologia Ltda" },
- { 35179, "danzuck" },
- { 35180, "Mark Domansky Consulting" },
- { 35181, "Techubs Network" },
- { 35182, "Aggregate Knowledge, Inc" },
- { 35183, "Rob Haverkort BV" },
- { 35184, "Kontorsplatsen Business Group AB" },
- { 35185, "PlainText s.r.o." },
- { 35186, "Hiromasa Nara" },
- { 35187, "kunming ucrown network system (china) ltd. co" },
- { 35188, "Eventide" },
- { 35189, "Thermo Fisher Scientific Inc (formerly 'Thermo Electron LED GmbH')" },
- { 35190, "Trice Imaging, Inc. (formerly 'Great Connection')" },
- { 35191, "Applied Software Control Ltd." },
- { 35192, "Miracle Tan" },
- { 35193, "MicroNet Video Technology Ltd.," },
- { 35194, "Barclays Capital" },
- { 35195, "Rudraksha Technology Private Limited" },
- { 35196, "Demonware Limited" },
- { 35197, "INTEGRA Software Systems" },
- { 35198, "Al-Madinah International University" },
- { 35199, "DynCorp International LLC" },
- { 35200, "ARIAL" },
- { 35201, "Ochanomizu University" },
- { 35202, "TechniData AG" },
- { 35203, "squatlabs" },
- { 35204, "Younicos AG" },
- { 35205, "SIAG-OMC" },
- { 35206, "AllDSP GmbH & Co. KG" },
- { 35207, "Dynamica s.r.l" },
- { 35208, "Trubiquity GmbH" },
- { 35209, "Fomento de Construcciones y Contratas, S.A" },
- { 35210, "Bechtle AG" },
- { 35211, "North Point Technology LLC" },
- { 35212, "dealnews.com, Inc." },
- { 35213, "Sandbox Solutions" },
- { 35214, "Agence pour l'Enseignement Fran\0303\0247ais \0303\0240 l'Etranger" },
- { 35215, "ZAO \"Begun\"" },
- { 35216, "w-Ha" },
- { 35217, "Adknowledge Inc" },
- { 35218, "Beemaster ICT" },
- { 35219, "FttX.nu" },
- { 35220, "Ioannes Co., LTD" },
- { 35221, "S.C. InterData Systems S.R.L." },
- { 35222, "NewYork-Presbyterian Hospital - Radiation Oncology" },
- { 35223, "Insight International Corporation" },
- { 35224, "Langara College" },
- { 35225, "Shanghai HOWZONE Network Communication Device Co.,LTD" },
- { 35226, "Bureau Software Development Corporation" },
- { 35227, "OOO Nika Motors Holding" },
- { 35228, "Commsquare BVBA" },
- { 35229, "Intercard Services AD" },
- { 35230, "Generic Sweden AB" },
- { 35231, "Arca Sistemi SCARL" },
- { 35232, "Imaging In Motion LLC" },
- { 35233, "WHITEBEARSOLUTIONS" },
- { 35234, "Computerized Assessments & Learning, LLC" },
- { 35235, "Hargrove & Associates, Inc." },
- { 35236, "Florian Rupp Ingenieur" },
- { 35237, "KBJ JEDYNAK I WSP\0303\0223LNICY SP\0303\0223\0305\0201KA JAWNA" },
- { 35238, "Novgorod Information and Analitical Centre" },
- { 35239, "NetSieben Technologies INC." },
- { 35240, "Beehivetesting" },
- { 35241, "Betz Stefan -- Webdesign & Computerservice" },
- { 35242, "Cygnus Networks GmbH" },
- { 35243, "Dorna Sports" },
- { 35244, "Wojo" },
- { 35245, "Railcar Management, Inc" },
- { 35246, "OS Qingdao University" },
- { 35247, "OpenDL Pty Ltd" },
- { 35248, "Serendio Inc" },
- { 35249, "ALTAMYS - Tiers de Confiance" },
- { 35250, "Simply-Info" },
- { 35251, "AWIND Inc" },
- { 35252, "SAM Electronics" },
- { 35253, "AixSolve GmbH" },
- { 35254, "ZON Multim\0303\0251dia" },
- { 35255, "Mind Candy Ltd" },
- { 35256, "Iondale Information Services Limited" },
- { 35257, "Brisa Inova\0303\0247\0303\0243o e Tecnologia, SA" },
- { 35258, "HEHA.ORG" },
- { 35259, "Televersions LLC." },
- { 35260, "Rotkraut" },
- { 35261, "Norwegian Defence" },
- { 35262, "Versorgungs- und Verkehrsgesellschaft Saarbr\0303\0274cken mbH" },
- { 35263, "Araneo Limited" },
- { 35264, "TetraStorm Technologies " },
- { 35265, "Eltex Enterprise, Ltd." },
- { 35266, "EJJE, Lda" },
- { 35267, "Eten Technologies Inc." },
- { 35268, "ORESCO" },
- { 35269, "Siemens AG \0303\0226sterreich, CMT (formerly 'Siemens AG \0303\0226sterreich, SIS SDE SVI OSS SAC')" },
- { 35270, "Samji Eletronics Co., Ltd." },
- { 35271, "micallef.fr" },
- { 35272, "DEBID" },
- { 35273, "Jah'Z Interactive" },
- { 35274, "CHU Angers" },
- { 35275, "SMARIS s.r.o." },
- { 35276, "TopCoder, Inc." },
- { 35277, "ZZ Dats Ltd" },
- { 35278, "Texas Communications Inc." },
- { 35279, "Singlenesia Software" },
- { 35280, "QuickPlay Media, Inc." },
- { 35281, "METRACOM" },
- { 35282, "Community Health Network" },
- { 35283, "Pacific Blue Cross" },
- { 35284, "UROEP.COM" },
- { 35285, "Ministry of Administration and Interior - General Directorate for IT & C" },
- { 35286, "Johanniter-Unfall-Hilfe e. V. - Landesverband Baden-Wuerttemberg" },
- { 35287, "Mobile Metrics" },
- { 35288, "Deep Web GmbH & Co KG" },
- { 35289, "Quative Limited" },
- { 35290, "ptman.name" },
- { 35291, "Embvue" },
- { 35292, "Embedded Solutions Group" },
- { 35293, "Collegium Josephinum Bonn" },
- { 35294, "INETJ Communications, LTD" },
- { 35295, "ExitPi" },
- { 35296, "Cyclone Microsystems Inc." },
- { 35297, "orainf" },
- { 35298, "dvsAnalytics, Inc." },
- { 35299, "Universidad del Valle de Guatemala" },
- { 35300, "REGISTRO NACIONAL DE IDENTIFICACI\0303\0223N Y ESTADO CIVIL " },
- { 35301, "Kvazar Test" },
- { 35302, "Outblaze Limited" },
- { 35303, "Velocity" },
- { 35304, "Procube Ltd." },
- { 35305, "DB ELETTRONICA TELECOMUNICAZIONI SPA" },
- { 35306, "Equinox Software, Inc." },
- { 35307, "Screwgun Logic" },
- { 35308, "Koukaam a.s." },
- { 35309, "am-cor inc." },
- { 35310, "Gaggle.Net, Inc." },
- { 35311, "ARANZ Medical Ltd" },
- { 35312, "gabosh" },
- { 35313, "Spinnaker Web Design & Hosting LLC" },
- { 35314, "Conergos GmbH & Co. KG" },
- { 35315, "Wave Creative Technologies" },
- { 35316, "Schauer Hungaria Kft." },
- { 35317, "Kolibri Systems B.V." },
- { 35318, "Kutztown University" },
- { 35319, "Ingenu, Inc. (formerly 'On-Ramp Wireless, Inc.')" },
- { 35320, "Universit\0303\0240 degli Studi di Torino" },
- { 35321, "Profitcomputing s.r.o." },
- { 35322, "PJRC.COM, LLC" },
- { 35323, "Kliniken Nordoberpfalz AG" },
- { 35324, "Edutel B.V." },
- { 35325, "Universit\0303\0244t Witten/Herdecke" },
- { 35326, "University of Music and Drama Hannover" },
- { 35327, "SMABTP" },
- { 35328, "BlueCrest Capital Management" },
- { 35329, "S. Walter Packaging" },
- { 35330, "RRsat Global Communications Network " },
- { 35331, "Faculdade Natalense para o Desenvolvimento do Rio Grande do Norte" },
- { 35332, "Alticast Corp." },
- { 35333, "pk0" },
- { 35334, "Lamda Networks" },
- { 35335, "Alion Science and Technology" },
- { 35336, "Lime Labs, LLC" },
- { 35337, "Primitives.lv" },
- { 35338, "IMFirewall Software" },
- { 35339, "Yambay Technologies Pty Ltd" },
- { 35340, "dustOS" },
- { 35341, "Bundesamt f. Eich- und Vermessungswesen" },
- { 35342, "American HomePatient" },
- { 35343, "Cairo University Hospitals" },
- { 35344, "Thales Defence Deutschland GmbH" },
- { 35345, "SRC d.o.o." },
- { 35346, "Northern Ireland Housing Executive" },
- { 35347, "WuHan RenTang Information Limited" },
- { 35348, "RTQA Medical Limited" },
- { 35349, "Takahashi Yusuke" },
- { 35350, "DS-Department" },
- { 35351, "Silver Sky Soft" },
- { 35352, "A&R Carton" },
- { 35353, "Entry Point" },
- { 35354, "Nintendo of America Inc." },
- { 35355, "Intelliresponse Systems Inc" },
- { 35356, "Telezygology, inc." },
- { 35357, "Garden State Health Systems" },
- { 35358, "Syntervision" },
- { 35359, "Fensom System S.L." },
- { 35360, "ZODIAC Data Systems GmbH" },
- { 35361, "Newtel Engineering S.r.l." },
- { 35362, "Quill Training Systems Ltd" },
- { 35363, "University of Huddersfield" },
- { 35364, "Seattle Children's Hospital" },
- { 35365, "Schroff Technologies International, Inc" },
- { 35366, "ChengDu OuRuan Corp., Ltd." },
- { 35367, "ITL, LLC" },
- { 35368, "doubango" },
- { 35369, "3iMedia GmbH" },
- { 35370, "natnat inc." },
- { 35371, "Infocore.Inc" },
- { 35372, "Daniel Clark" },
- { 35373, "Slovak Telekom, a.s." },
- { 35374, "Universidade Federal do Espirito Santo" },
- { 35375, "UAB \"Mano numeris\"" },
- { 35376, "SOFTWAY MEDICAL" },
- { 35377, "Funkwerk IP-Appliances GmbH" },
- { 35378, "Antwerpse Waterwerken" },
- { 35379, "ISiS Papyrus Software AG" },
- { 35380, "Rogers Broadcasting Ltd. - Vancouver Television" },
- { 35381, "Informatikos ir rysiu departamentas prie Lietuvos Respublikos vidaus reikalu ministerijos" },
- { 35382, "EuPathDB Bioinformatics Resource Center" },
- { 35383, "Swissfram SRL" },
- { 35384, "International Social Security Association" },
- { 35385, "Far Systems SpA" },
- { 35386, "Neverfail Group" },
- { 35387, "Ning" },
- { 35388, "Beyel" },
- { 35389, "KIWIGRID" },
- { 35390, "Credoc services CVBA" },
- { 35391, "HealthTrio, LLC" },
- { 35392, "sepox.de" },
- { 35393, "Blue Vervet Ltd" },
- { 35394, "SuKaiTek" },
- { 35395, "PT. Prima Teknologi" },
- { 35396, "ZAO Intercross" },
- { 35397, "x-fabric GmbH" },
- { 35398, "IDKAYA" },
- { 35399, "CeNetMon" },
- { 35400, "Noumenon, LLC" },
- { 35401, "ElectroLink Srl" },
- { 35402, "Internet Connectivity Group, Inc" },
- { 35403, "Hochschule Mittweida" },
- { 35404, "Beijing C&W Optical Communication Technology Co.,Ltd." },
- { 35405, "Default Deny Security" },
- { 35406, "RADiflow" },
- { 35407, "BOUYGUES IMMOBILIER" },
- { 35408, "Ing. Roman T\0304\0233\0305\0241\0303\0255k" },
- { 35409, "AccelOps, Inc." },
- { 35410, "SOLIS - Cooperativa de Solu\0303\0247\0303\0265es Livres Ltda" },
- { 35411, "Fortium Technologies Ltd" },
- { 35412, "CZ-MAN s.r.o." },
- { 35413, "GlideAround LLC" },
- { 35414, "Molisoft grupo empresarial S.L." },
- { 35415, "Universitas Surabaya" },
- { 35416, "DHD Deubner Hoffmann Digital GmbH" },
- { 35417, "Randstad Deutschland" },
- { 35418, "icub3d" },
- { 35419, "Electron, Ltd." },
- { 35420, "rtron" },
- { 35421, "ChinaScope Financial Limited" },
- { 35422, "Schweizer Paraplegiker-Zentrum" },
- { 35423, "berolina Schriftbild GmbH & Co. KG" },
- { 35424, "Viprinet GmbH" },
- { 35425, "Mastery Technologies, Inc." },
- { 35426, "The OpenSSH Project" },
- { 35427, "Data Turbine, Inc." },
- { 35428, "Sterling Computer Systems" },
- { 35429, "Limis" },
- { 35430, "IntelligentWorks Co., Ltd." },
- { 35431, "KAMFU Infomation & Technology Co., LTD." },
- { 35432, "Superblock, LLC" },
- { 35433, "Connexion Technologies" },
- { 35434, "Quadrant Newmedia Corp." },
- { 35435, "Anabasis Consulting Ltd." },
- { 35436, "01.com, Inc." },
- { 35437, "SERPRO - Servi\0303\0247o Federal de Processamento de Dados" },
- { 35438, "ekom21 - KGRZ Hessen" },
- { 35439, "App B.V." },
- { 35440, "Faivre et Mahon" },
- { 35441, "corporacion empresarial iunka" },
- { 35442, "deZem GmbH" },
- { 35443, "Cat Consulting, Inc" },
- { 35444, "Spectralnet Sollutions, LLC" },
- { 35445, "Information Security Service Digital United" },
- { 35446, "Connaught FactsLine Ltd." },
- { 35447, "SeeByte Ltd." },
- { 35448, "Video Location Service" },
- { 35449, "Keytech BVBA" },
- { 35450, "Storagedata" },
- { 35451, "Incenp" },
- { 35452, "Commercial Bank DeltaCredit" },
- { 35453, "DREAM TRAIN INTERNET, INC." },
- { 35454, "Niometrics Pte Ltd" },
- { 35455, "Tokyo Metropolitan Organization for Medical Research" },
- { 35456, "Westway Nominees" },
- { 35457, "Infocomm Development Authority Of Singapore" },
- { 35458, "Dossot Networks" },
- { 35459, "LEMKO Corporation" },
- { 35460, "EDAXI UG (haftungsbeschraenkt)" },
- { 35461, "Bernhard Dick" },
- { 35462, "Qingdao Hisense Media Networks LTD" },
- { 35463, "EfiCode Oy" },
- { 35464, "Blues Point Partners Pty Ltd" },
- { 35465, "Bank Julius Baer & Co. Ltd." },
- { 35466, "Forsway Scandinavia AB" },
- { 35467, "OOO\"SpinBrain\"" },
- { 35468, "Kaunas University of Technology" },
- { 35469, "Seamless Distribution AB" },
- { 35470, "First-Matrix" },
- { 35471, "Johns Byrne Company" },
- { 35472, "blichmann.de" },
- { 35473, "UNETCONVERGENCE" },
- { 35474, "TransMIT GmbH" },
- { 35475, "Sprengnetter GmbH" },
- { 35476, "The Overtis Group Limited" },
- { 35477, "Dataram Corporation" },
- { 35478, "The UNIX Man Consulting, LLC" },
- { 35479, "Academic Medical Center" },
- { 35480, "Kutak Rock LLP" },
- { 35481, "LightningIO" },
- { 35482, "Image Soft Oy" },
- { 35483, "Exagate" },
- { 35484, "Alphacom LLC." },
- { 35485, "Derrick & Associates, Inc" },
- { 35486, "Television New Zealand Ltd" },
- { 35487, "The Salvation Army USA Western Territory" },
- { 35488, "The Corosync Cluster Engine Project" },
- { 35489, "Radiofid Ltd" },
- { 35490, "AGEPS - APHP" },
- { 35491, "M.S. Projekt Management + Vertrieb GmbH" },
- { 35492, "RheinLand Versicherungen" },
- { 35493, "EMBED-IT OG" },
- { 35494, "act750" },
- { 35495, "Arjo Wiggins Chartham Limited" },
- { 35496, "Interface Devices Ltd" },
- { 35497, "GenLan d.o.o." },
- { 35498, "VDG Security BV" },
- { 35499, "Stratos NZ Ltd" },
- { 35500, "Aim co., Ltd." },
- { 35501, "Access General Insurance Holdings" },
- { 35502, "BIGSSS" },
- { 35503, "CybersCube" },
- { 35504, "Eitelwein Net" },
- { 35505, "Lindenbaum GmbH" },
- { 35506, "Streamezzo S.A." },
- { 35507, "Ben Clifford" },
- { 35508, "Addiva Engineering AB" },
- { 35509, "C Squared Systems, LLC" },
- { 35510, "Tecnicas De Soft, S.A." },
- { 35511, "VirtualScopics" },
- { 35512, "OSSEra, Inc" },
- { 35513, "AixConcept GmbH" },
- { 35514, "Liquidweb Inc" },
- { 35515, "KJ3 Elektronik" },
- { 35516, "Suomen Teollisuusosa Oy" },
- { 35517, "Shernet" },
- { 35518, "Bay Talkitec Private Limited" },
- { 35519, "Maldives Monetary Authority" },
- { 35520, "Video Clarity" },
- { 35521, "Entimo AG" },
- { 35522, "Comelit Group SpA" },
- { 35523, "Phillips and Jordan, Inc." },
- { 35524, "phgamers" },
- { 35525, "DirectStreams" },
- { 35526, "Foundata GmbH (formerly 'ikt.werk GbR')" },
- { 35527, "FlexRadio Systems" },
- { 35528, "ADLANTIA" },
- { 35529, "Evony LLC" },
- { 35530, "TJK Tietolaite Oy" },
- { 35531, "Contato Global Solutions" },
- { 35532, "ACSYS BSC Sp. z o.o." },
- { 35533, "Axecta Inc." },
- { 35534, "ettex GmbH" },
- { 35535, "NanVPN" },
- { 35536, "Systems in Progress GmbH" },
- { 35537, "TeMeno GmbH" },
- { 35538, "TeleTrader Software AG" },
- { 35539, "Micros Systems, Inc." },
- { 35540, "M/s. Varun Infosys" },
- { 35541, "Oesterreichische Elektrizitaetswirtschafts-AG" },
- { 35542, "Lucas sarl" },
- { 35543, "Novaworx" },
- { 35544, "Jas. Quinn & Son" },
- { 35545, "Robot Lda." },
- { 35546, "EBS S.R.L." },
- { 35547, "CA DiKey Ltd" },
- { 35548, "KNI Technical Consulting Ltd." },
- { 35549, "E-Disp DA" },
- { 35550, "Leith Brandeland" },
- { 35551, "Conchus" },
- { 35552, "COMGuide Co.,Ltd." },
- { 35553, "Internet Hypermarket Ltd." },
- { 35554, "CorSsys" },
- { 35555, "Infinities Within" },
- { 35556, "OdysSloot" },
- { 35557, "Nyadendis Enterprices" },
- { 35558, "IT-INTEGRATION - SOLU\0303\0207\0303\0225ES INTEGRADAS EM TECNOLOGIA DA INFORMA\0303\0207\0303\0203O LTDA ME" },
- { 35559, "Shanda Interactive Entertainment Limited " },
- { 35560, "Dnspod" },
- { 35561, "NetDialog International B.V." },
- { 35562, "Service Elements" },
- { 35563, "saladisdead.com" },
- { 35564, "Universidad Catolica Andres Bello" },
- { 35565, "Koozyt, Inc." },
- { 35566, "trammell.ch" },
- { 35567, "CME Group" },
- { 35568, "Beth Israel Deaconess Medical Center" },
- { 35569, "A-dec Inc." },
- { 35570, "Travel Tripper LLC" },
- { 35571, "LU-Hosting" },
- { 35572, "Arends IT+TK" },
- { 35573, "sitel" },
- { 35574, "Dambach-Werke GmbH" },
- { 35575, "ByteSource Technology Consulting GmbH" },
- { 35576, "Ailux S.r.l." },
- { 35577, "LivingData Gesellschaft f\0303\0274r angewandte Informationstechnologien mbH" },
- { 35578, "Southern Telecommunications Company" },
- { 35579, "Super Group Trading (Pty) Ltd" },
- { 35580, "Technisys, Inc." },
- { 35581, "Linct" },
- { 35582, "mTrust, s. r. o. " },
- { 35583, "Drizzle" },
- { 35584, "BANK AL MAGHRIB" },
- { 35585, "Intelcan Technosystems Inc." },
- { 35586, "Competentum" },
- { 35587, "White Birch Paper division Papier Masson" },
- { 35588, "ndl.kiev.ua" },
- { 35589, "Confederaci\0303\0263n Pirata (formerly 'Partido PIRATA')" },
- { 35590, "Convergent Communications, Inc" },
- { 35591, "Limited Liability Company \"Mejregiongaz \"" },
- { 35592, "FiberSensing S.A." },
- { 35593, "Thales / Rockwell Collins" },
- { 35594, "iCOMcept GmbH" },
- { 35595, "distributedmatter.net" },
- { 35596, "Innovid Co., Ltd." },
- { 35597, "\"TeleMiks\" UE" },
- { 35598, "PIWorks Inc" },
- { 35599, "Marketware" },
- { 35600, "TCC R&D GmbH" },
- { 35601, "TransCanada Pipelines Ltd" },
- { 35602, "Syndetic Pty Ltd" },
- { 35603, "TIANJIN DEVISER ELECTRONICS INSTRUMENT CO.,LTD" },
- { 35604, "Compal Broadband Networks Inc." },
- { 35605, "Montani Webdevelopment + Strategie" },
- { 35606, "ZAO NPC \"KOMPYUTERNYE TECHNOLOGII\"" },
- { 35607, "Wireless eSystems" },
- { 35608, "Answer Quick" },
- { 35609, "AXIe Consortium, Inc." },
- { 35610, "Itel snc" },
- { 35611, "SOFT PROJECT C.A." },
- { 35612, "Digital Mages" },
- { 35613, "Linktrust" },
- { 35614, "ITK-Engineering" },
- { 35615, "Basilea Pharmaceutica Ltd" },
- { 35616, "Deltanet AG" },
- { 35617, "XtcN" },
- { 35618, "Beanfield Technologies Inc." },
- { 35619, "Mittwald CM Service" },
- { 35620, "William Beaumont Hospitals" },
- { 35621, "Patrick Kobly" },
- { 35622, "Akaflieg Stuttgart" },
- { 35623, "stwalkerster.co.uk (formerly 'Albino Slug Studios')" },
- { 35624, "tuxad.com" },
- { 35625, "Vembu Technologies Private Limited" },
- { 35626, "CHONGQING JINGHONG HI-TECH CO.,LTD" },
- { 35627, "Atera Networks LTD" },
- { 35628, "Unitas Network GmbH" },
- { 35629, "PL-Grid" },
- { 35630, "Qube Technologies Sp. z o.o." },
- { 35631, "CyberTrans Japan" },
- { 35632, "ntop" },
- { 35633, "Open Sistemas" },
- { 35634, "Karl W\0303\0266rwag Lack- und Farbenfabrik GmbH & Co. KG" },
- { 35635, "GFR Software Solutions AG" },
- { 35636, "KION GROUP GmbH" },
- { 35637, "ubiqu access b.v." },
- { 35638, "Flughafen Wien AG" },
- { 35639, "Wydawnictwo Naukowe PWN S.A." },
- { 35640, "Appareo Systems, LLC" },
- { 35641, "Universidad de los Andes" },
- { 35642, "Paneda AS" },
- { 35643, "EURIX srl" },
- { 35644, "Olson Consulting" },
- { 35645, "ZiChen Tech. Co. Ltd." },
- { 35646, "Arca Technologies S.r.l." },
- { 35647, "Deposita Systems (Pty) Ltd" },
- { 35648, "Broadband Solutions Technology Pty Ltd" },
- { 35649, "Direct Payment Solutions Limited" },
- { 35650, "Piratenpartei Schweiz" },
- { 35651, "IHM P/S" },
- { 35652, "Informatique de S\0303\0251curit\0303\0251" },
- { 35653, "DeltaWare Systems Inc." },
- { 35654, "HAUT COMMISSARIAT POUR LES REFUGIES HCR (UNHCR)" },
- { 35655, "Peak Solution GmbH" },
- { 35656, "Brian Delaney" },
- { 35657, "PT. Bank BRI Syariah" },
- { 35658, "Health Info Net AG" },
- { 35659, "\0302\0253Baker Tilly Russaudit\0302\0273 Ltd." },
- { 35660, "3Way Solutions" },
- { 35661, "NetworkIP" },
- { 35662, "Optrak Distribution Software Ltd" },
- { 35663, "State of Hawaii" },
- { 35664, "PI-Embedded - Building Automation Community" },
- { 35665, "BroadBand Security, Inc." },
- { 35666, "Joint Stock Commercial Bank INVESTBANK Open-end JSC" },
- { 35667, "Elimco Sistemas S.L." },
- { 35668, "PEAK6 Investments, L.P." },
- { 35669, "Advanced Integration Technology" },
- { 35670, "Alberta Health Services" },
- { 35671, "im3D S.p.A." },
- { 35672, "Bitnethic Srl" },
- { 35673, "Bank Saint Petersburg" },
- { 35674, "Johan De Wit" },
- { 35675, "ZAP S/A Internet" },
- { 35676, "ComPughTerWorx" },
- { 35677, "Envisionier Medical Technologies, Inc." },
- { 35678, "Clayster AB" },
- { 35679, "GRITA" },
- { 35680, "AdGear Technologies Inc. (formerly 'Bloom Digital Platforms')" },
- { 35681, "Zenith System Solutions" },
- { 35682, "Technical University of Liberec" },
- { 35683, "Hofmann-IT-Systeme Ingenieurbuero" },
- { 35684, "Proserve B.V." },
- { 35685, "HELLUG" },
- { 35686, "Brian Desmond Consulting, LLC" },
- { 35687, "Proware Technologies Co., LTD" },
- { 35688, "Hochschule Wismar - University of Applied Sciences - Technology, Business and Design" },
- { 35689, "Betfair" },
- { 35690, "Indaal Information Management GmbH" },
- { 35691, "Matthias Bonn it-consult" },
- { 35692, "Headweb AB" },
- { 35693, "Open-Future BVBA" },
- { 35694, "Choosehelp.com" },
- { 35695, "SITEM S.r.l." },
- { 35696, "NetScout Systems, Inc. (formerly 'Avvasi')" },
- { 35697, "Ystrad Mynach College of Further Education" },
- { 35698, "Ldap.com.br" },
- { 35699, "Cummins Power Generation" },
- { 35700, "Tyrian Technical Consulting" },
- { 35701, "phpcoms" },
- { 35702, "NTO IRE-Polus, Ltd. (formerly 'Optical Components & Systems')" },
- { 35703, "JSC DevLab" },
- { 35704, "SALUC" },
- { 35705, "HWS Informationssysteme GmbH" },
- { 35706, "Guangzhou KingTeller Technology Co.,Ltd" },
- { 35707, "S&P" },
- { 35708, "BOUYGUES CONSTRUCTION " },
- { 35709, "Unassigned" },
- { 35710, "Alcatel-Lucent, 4ESS" },
- { 35711, "Sopinspace" },
- { 35712, "Master Translation and Technology Services Co.,Ltd." },
- { 35713, "Information Management Services" },
- { 35714, "kommtnoch.com" },
- { 35715, "Video Gaming Technologies" },
- { 35716, "Action Without Borders" },
- { 35717, "DI Michael Kuen" },
- { 35718, "Mississippi Gulf Coast Community College" },
- { 35719, "Shopping.com" },
- { 35720, "Infotrend Development" },
- { 35721, "Institute of Corporate Law and Corporate Governance" },
- { 35722, "Digital Nirvana" },
- { 35723, "SENSAIR Pty Ltd" },
- { 35724, "Chenega Corporation" },
- { 35725, "China Beijing TV Station" },
- { 35726, "China Guangdong Telepower Communication Technology Co.,Ltd." },
- { 35727, "First Horizon National Corporation" },
- { 35728, "Scallable Technologies, Inc." },
- { 35729, "Forssan Seudun Puhelin Oy / SurffiNET" },
- { 35730, "iAd GmbH" },
- { 35731, "abtis GmbH" },
- { 35732, "Ajuntament de Benicarl\0303\0263" },
- { 35733, "VIDA Diagnostics Inc" },
- { 35734, "Lennart J\0303\0274tte" },
- { 35735, "A9 SAS" },
- { 35736, "BZCToOn'S Network / RedJuice.fr SARL" },
- { 35737, "QA Cafe LLC" },
- { 35738, "abcwxy.com" },
- { 35739, "Bowline Network Consulting, Inc" },
- { 35740, "SACD" },
- { 35741, "Chi-X Europe Ltd" },
- { 35742, "Neurosearch, Inc." },
- { 35743, "Workonline Communications (Pty) Ltd" },
- { 35744, "D-Media Communication Tech" },
- { 35745, "Marine Harvest ASA" },
- { 35746, "Passepartout sa" },
- { 35747, "FEDERALNOE AGENTSTVO ZhELEZNODOROZhNOGO TRANSPORTA" },
- { 35748, "Switch++" },
- { 35749, "Alsim" },
- { 35750, "Spring Wireless" },
- { 35751, "Linux Lunatix" },
- { 35752, "Supra net d.o.o." },
- { 35753, "Les D\0303\0251veloppements Durables" },
- { 35754, "ON-AIR Systems Ltd." },
- { 35755, "P-21 GmbH" },
- { 35756, "inett GmbH" },
- { 35757, "Sonnection B.V." },
- { 35758, "Stichting Diagnose Kanker" },
- { 35759, "Welkin Sciences, LLC" },
- { 35760, "Optical Access Networks Lab, Shanghai University" },
- { 35761, "Center Parcs Europe" },
- { 35762, "FMLOG, Swedish Armed Forces Logistics" },
- { 35763, "Groupe Laurent" },
- { 35764, "St. Lawrence College" },
- { 35765, "zbits Unternehmensberatung GmbH" },
- { 35766, "Killermann GdbR" },
- { 35767, "University of Lodz" },
- { 35768, "GetWellNetwork, Inc." },
- { 35769, "Wellogic" },
- { 35770, "USIL Technology" },
- { 35771, "Hightech Payment Systems" },
- { 35772, "n@work Internet Informationssysteme GmbH" },
- { 35773, "Arcturus Networks Inc." },
- { 35774, "Universal Electric Corporation" },
- { 35775, "Rachitskiy Research and Development LLC" },
- { 35776, "BlueNote Communications SA" },
- { 35777, "Unique Solutions SA" },
- { 35778, "RTC-LEASING OJSC" },
- { 35779, "ican solutions private limited" },
- { 35780, "OAO Tatneft" },
- { 35781, "Matej Bel University Banska Bystrica" },
- { 35782, "Universidad de Extremadura" },
- { 35783, "Nika Ltd" },
- { 35784, "ECKD GmbH" },
- { 35785, "Xcira, Inc." },
- { 35786, "Continuant Inc" },
- { 35787, "Computaris" },
- { 35788, "Xolido Systems,S.A." },
- { 35789, "Despegar.com, Inc." },
- { 35790, "ClearCorp " },
- { 35791, "IES Systems, Inc." },
- { 35792, "Rygl" },
- { 35793, "Hirotech, Inc." },
- { 35794, "Java Verified" },
- { 35795, "Actifio" },
- { 35796, "Burda:IC GmbH" },
- { 35797, "Polska Telefonia Cyfrowa Sp. z o.o." },
- { 35798, "shack e.V." },
- { 35799, "Phmb Consulting" },
- { 35800, "Uniconsult" },
- { 35801, "EIX Ltd" },
- { 35802, "Mobango Ltd" },
- { 35803, "Eucalyptus Systems Inc." },
- { 35804, "Allgood Networks" },
- { 35805, "Athonet s.r.l." },
- { 35806, "Paul Milliken" },
- { 35807, "AJR Development" },
- { 35808, "SAR Elektronik A.S." },
- { 35809, "Hosting Community" },
- { 35810, "CDL PMO" },
- { 35811, "AMTANGEE Aktiengesellschaft" },
- { 35812, "CANCOM IT Solutions GmbH" },
- { 35813, "LinuxRulz" },
- { 35814, "Cordier Networks" },
- { 35815, "QUADStor Systems" },
- { 35816, "Shenzhen HY Amplitec Technology Co.,Ltd" },
- { 35817, "Giorik spa" },
- { 35818, "Azienda Feltrina s.p." },
- { 35819, "Digithurst Bildverarbeitungssysteme" },
- { 35820, "RCS Kladno, s.r.o." },
- { 35821, "FBComputers s.r.l." },
- { 35822, "V-Internet Operations, Inc." },
- { 35823, "HANGZHOU RICH INFO-TECH CO.,LTD" },
- { 35824, "Boll und Partner Software GmbH" },
- { 35825, "INAX Corporation" },
- { 35826, "THALES AIR OPERATION" },
- { 35827, "Invengo Information Technology Co.,Ltd" },
- { 35828, "Entropia e.V." },
- { 35829, "United Natural Foods, Inc." },
- { 35830, "ROFFET.com" },
- { 35831, "ATECH MICROELECTRONIC SYSTEMS" },
- { 35832, "Open Horizont.Ltd" },
- { 35833, "Deva Broadcast Ltd." },
- { 35834, "Gozaimass" },
- { 35835, "iB Solution Corporation" },
- { 35836, "China BraveFly Technology Co., Ltd." },
- { 35837, "Mamat GmbH" },
- { 35838, "Matrixx Software Inc." },
- { 35839, "Imagine One Technology & Management" },
- { 35840, "Gyrus ACMI, Inc." },
- { 35841, "Agecodagis SARL" },
- { 35842, "RamVZ" },
- { 35843, "Sebastian Muszytowski" },
- { 35844, "Stormont-Vail HealthCare" },
- { 35845, "Heraklion Wireless" },
- { 35846, "Parsons" },
- { 35847, "Greenbone Networks GmbH" },
- { 35848, "Multipolaris Ltd." },
- { 35849, "Telefonica International Wholesale Services" },
- { 35850, "Horns And Hooves" },
- { 35851, "Abix Tecnologia" },
- { 35852, "Spire Sciences LLC" },
- { 35853, "Remote Enterprise Monitoring, Inc." },
- { 35854, "American Modern" },
- { 35855, "Dialog Semiconductor" },
- { 35856, "Berchtold Holding GmbH" },
- { 35857, "AMARON BVBA" },
- { 35858, "The Goodyear Tire & Rubber Co." },
- { 35859, "Georgia-Pacific LLC." },
- { 35860, "Kvadroteh Ltd." },
- { 35861, "CRAWFORD COMMUNICATIONS, INC" },
- { 35862, "Mobile Integration Workgroup" },
- { 35863, "WAMAJU LLC" },
- { 35864, "Ales Hakl" },
- { 35865, "Trivia Solutions B.V." },
- { 35866, "Eno, Inc." },
- { 35867, "Prior srl" },
- { 35868, "Ater Belluno" },
- { 35869, "STB Broadcast" },
- { 35870, "OpsWise Software Inc." },
- { 35871, "Cloupia" },
- { 35872, "huggla.com" },
- { 35873, "JDS Uniphase Corporation" },
- { 35874, "Action Packed Networks" },
- { 35875, "JX2 Technology Pty Ltd" },
- { 35876, "WHITECODE,.LTD" },
- { 35877, "High Technology Industries B.V. (formerly 'LEITNER AG - S.p.A')" },
- { 35878, "Conseil g\0303\0251n\0303\0251ral de l'Aube" },
- { 35879, "WellDoc, Inc." },
- { 35880, "JSC \"Mediafon\"" },
- { 35881, "Ionis group" },
- { 35882, "NTT DATA KYUSHU CORPORATION" },
- { 35883, "VisualSoft Private Limited" },
- { 35884, "Nethost s.r.o." },
- { 35885, "VZ Holding AG" },
- { 35886, "Arise Telecommunications Ltd." },
- { 35887, "Lucierna SLNE" },
- { 35888, "DeadInkVinyl" },
- { 35889, "ColumbiaSoft Corporation" },
- { 35890, "Video-Flow ltd" },
- { 35891, "punctum Gesellschaft fuer Software mbH" },
- { 35892, "ELMEH GIU" },
- { 35893, "Xelmo" },
- { 35894, "Cognimatics AB" },
- { 35895, "Slackarea Internet Services" },
- { 35896, "Concord Energy" },
- { 35897, "Violin Memory, Inc." },
- { 35898, "SYSTEREL" },
- { 35899, "Prism Clinical Imaging, Inc." },
- { 35900, "DuMont Net GmbH & Co. KG" },
- { 35901, "Al-Quds University" },
- { 35902, "OpenHeadend" },
- { 35903, "Bartonia Domain and Enterprises" },
- { 35904, "MacroSAN" },
- { 35905, "ACME-Cebul inc." },
- { 35906, "Unister" },
- { 35907, "CRV Natural" },
- { 35908, "Embrane, Inc." },
- { 35909, "Horace Mann Educators Corporation" },
- { 35910, "overnet.qc.ca" },
- { 35911, "Mrezne Tehnologije Verso" },
- { 35912, "Makedonijalek" },
- { 35913, "Diputacion Provincial de C\0303\0241ceres" },
- { 35914, "Borea, Ltd." },
- { 35915, "SERLI" },
- { 35916, "Orangehead Software" },
- { 35917, "kobisun.org Surdurulebilir Sunucu Sistemleri" },
- { 35918, "ETON International co. ltd" },
- { 35919, "Funkwerk plettac electronics GmbH" },
- { 35920, "Sebastian Himberger Software" },
- { 35921, "Alpha-Bit GmbH" },
- { 35922, "Backbase B.V." },
- { 35923, "Enthusia Consulting Ltd" },
- { 35924, "IET-International Empire Traders" },
- { 35925, "Warsaw Stock Exchange" },
- { 35926, "Aguas de la Cuenca del Norte, S.A." },
- { 35927, "Softfinan\0303\0247a S.A." },
- { 35928, "Wheaton College" },
- { 35929, "Prodata Mobility Systems NV" },
- { 35930, "Radeks Medical Information Technologies Ltd" },
- { 35931, "Woasis Telecommunications Ltd." },
- { 35932, "JM Technology Inc." },
- { 35933, "Semiocast" },
- { 35934, "OOO CPCR-Express" },
- { 35935, "RAU-Stromversorgungen GmbH" },
- { 35936, "Iconmobile GmbH" },
- { 35937, "Unassigned" },
- { 35938, "Omnibond Systems LLC." },
- { 35939, "Original1 GmbH" },
- { 35940, "Neuhalfen" },
- { 35941, "Mitsubishi UFJ Securities (USA), Inc." },
- { 35942, "Uralchem" },
- { 35943, "Boerse Stuttgart" },
- { 35944, "Selecom" },
- { 35945, "Swid" },
- { 35946, "SMG Co., Ltd." },
- { 35947, "SME Soluciones" },
- { 35948, "Phoneytunes.com" },
- { 35949, "Vienna Symphonic Library GmbH" },
- { 35950, "eFolder, Inc." },
- { 35951, "XConnect Global Networks" },
- { 35952, "Sleevewerks BV" },
- { 35953, "Chargetek, Inc." },
- { 35954, "VOD Pty Ltd" },
- { 35955, "Niigata University" },
- { 35956, "china wing technologies co.,ltd." },
- { 35957, "Donjin Communication Technology Co.Ltd" },
- { 35958, "Vedekon" },
- { 35959, "TECHWAY S.A.S" },
- { 35960, "Drotposta Consulting Ltd" },
- { 35961, "Christian Arnold" },
- { 35962, "Pumpkin\0343\0200\0200Heads Co.,Ltd." },
- { 35963, "k12 ITC, Inc." },
- { 35964, "BeiJing CS&S HuaTech Info Tech Ltd" },
- { 35965, "Control Risks Group Ltd" },
- { 35966, "MBDA Italia SPA" },
- { 35967, "AutoZone" },
- { 35968, "TrustFabric" },
- { 35969, "Vidyo, Inc." },
- { 35970, "Planetsgroup" },
- { 35971, "Zaha Hadid Architects" },
- { 35972, "Audaxis S.A." },
- { 35973, "Fenazari" },
- { 35974, "SnmpSoft Company" },
- { 35975, "Healthsense, Inc." },
- { 35976, "Herrmann EDV-Beratung" },
- { 35977, "Reddog Chili" },
- { 35978, "Clearleap, Inc." },
- { 35979, "Gonow Tecnologia" },
- { 35980, "vMonitor LLC" },
- { 35981, "isigma asesor\0303\0255a tecnol\0303\0263gica, S.L." },
- { 35982, "HUMANNIX co., Ltd" },
- { 35983, "MADS B.V." },
- { 35984, "Simbrella" },
- { 35985, "SM CNS Corporation" },
- { 35986, "KALKITECH" },
- { 35987, "Sangoma Technologies" },
- { 35988, "Hiport srl" },
- { 35989, "Maranatha Christian University" },
- { 35990, "UK MOD DE&S" },
- { 35991, "Chesapeake Systems" },
- { 35992, "Christian Hain" },
- { 35993, "Syrus, Ltd." },
- { 35994, "Intuix LLC" },
- { 35995, "quidecco.de" },
- { 35996, "Datatek Applications Inc." },
- { 35997, "Kath. Jugend St. Bruno" },
- { 35998, "Universitat d'Andorra" },
- { 35999, "E-Flamingo LLC" },
- { 36000, "Host-Consultants" },
- { 36001, "PJB Consulting" },
- { 36002, "Taiji Computer Corporation Ltd." },
- { 36003, "Techlan s.r.l." },
- { 36004, "Vitracom AG" },
- { 36005, "CSE s.c.a.r.l. Consorzio Servizi Bancari" },
- { 36006, "VFT Telecom" },
- { 36007, "Logikos, Inc." },
- { 36008, "Kelly Services, Inc." },
- { 36009, "6connect, Inc." },
- { 36010, "lordgandalf" },
- { 36011, "Commontime Ltd" },
- { 36012, "Oxford Life Insurance Company" },
- { 36013, "SMA Solar Technology AG" },
- { 36014, "Radio Free Asia" },
- { 36015, "SavillTech " },
- { 36016, "PROCERGS - Rio Grande do Sul State IT Company, Brazil" },
- { 36017, "Huntsman Cancer Institute at the University of Utah" },
- { 36018, "RAAF Technology" },
- { 36019, "die tageszeitung" },
- { 36020, "PoC Oy Ltd." },
- { 36021, "IT Research Center LLP" },
- { 36022, "rku.it GmbH" },
- { 36023, "Stichting Christelijke Hogeschool Windesheim" },
- { 36024, "AltaSoft s.c." },
- { 36025, "Videopolis France" },
- { 36026, "GoldZone Web" },
- { 36027, "Methode Electronics" },
- { 36028, "NoconaGeek" },
- { 36029, "Medical Micrographics LLC" },
- { 36030, "Happyserver Ltd" },
- { 36031, "Techsense Solutions Sdn Bhd" },
- { 36032, "Promsvjazdizajn, OOO" },
- { 36033, "Pak eVentures" },
- { 36034, "Kelvin Connect Ltd" },
- { 36035, "Signe S.A." },
- { 36036, "DNA Oy" },
- { 36037, "Folia a/s" },
- { 36038, "Adif, Administrador de Infraestructuras Ferroviarias" },
- { 36039, "Estonian Internet Foundation" },
- { 36040, "Ibetor, S.L." },
- { 36041, "KAMAZ Inc." },
- { 36042, "LIAB ApS" },
- { 36043, "Athena Wireless Communications Inc." },
- { 36044, "UCC Pro GmbH (formerly 'NSSR.neT')" },
- { 36045, "Uma Electrotechnical Services" },
- { 36046, "tdvine Co., Ltd" },
- { 36047, "Kadme AS" },
- { 36048, "PUISSANCE +" },
- { 36049, "GGG Kft." },
- { 36050, "Feed Your Head" },
- { 36051, "TDM Consult GmbH" },
- { 36052, "EdgeCast Networks, Inc." },
- { 36053, "Azka National for Information Technology" },
- { 36054, "eVigilo Ltd" },
- { 36055, "RadLogix Pty Ltd" },
- { 36056, "AIDev LLC" },
- { 36057, "FreeSInno Network Technology Co.,Ltd" },
- { 36058, "Beijing TopLink Technology Development Co., Ltd" },
- { 36059, "International Electric Supply Corp. (IESC)" },
- { 36060, "geek!daily" },
- { 36061, "Amonics Ltd." },
- { 36062, "Integrius AB" },
- { 36063, "NKIA Co.,Ltd." },
- { 36064, "Zappware" },
- { 36065, "Pionier - Polish Optical Internet" },
- { 36066, "Invensys/Triconex" },
- { 36067, "Timo Gerke" },
- { 36068, "UBIMET GesmbH" },
- { 36069, "Carbofos RU" },
- { 36070, "Power Standards Lab" },
- { 36071, "HerpEco LLC" },
- { 36072, "Antares 611 LLC" },
- { 36073, "ETECSA s.a." },
- { 36074, "Dark Matter Labs Inc." },
- { 36075, "TBWA\\Chiat\\Day" },
- { 36076, "SAPO" },
- { 36077, "Xilocore" },
- { 36078, "RFVISION Co.,LTD" },
- { 36079, "Audaxis" },
- { 36080, "National Information Technology and Internet Agency" },
- { 36081, "Clare Controls, Inc." },
- { 36082, "Electronic Tele-Communications, Inc." },
- { 36083, "Agility Logistics Pvt Ltd" },
- { 36084, "Electronic Classroom Of Tomorrow" },
- { 36085, "L-Card" },
- { 36086, "lamehost.it" },
- { 36087, "MCIO Incorporated" },
- { 36088, "LinowSat" },
- { 36089, "SPARF" },
- { 36090, "Remote Instruments" },
- { 36091, "SIS Group Pty Ltd" },
- { 36092, "NPP Ugpromavtomatizaciya" },
- { 36093, "Weifang Dongsheng Electronics Co., Ltd." },
- { 36094, "VVDN Technologies" },
- { 36095, "Insighteck" },
- { 36096, "Adama University" },
- { 36097, "Unixwiz.net" },
- { 36098, "GoodForBusiness" },
- { 36099, "Hangmat" },
- { 36100, "WWF-UK" },
- { 36101, "South Patron (formerly 'SMK Software')" },
- { 36102, "Paramatrix Technologies Pvt. Ltd." },
- { 36103, "Lan ETS" },
- { 36104, "TraceSpan Communications" },
- { 36105, "Blue Corss Blue Shield of Massachusetts" },
- { 36106, "Wraptastic, LLC (for http://rpm5.org)" },
- { 36107, "Helen Marks Marketing Ltd" },
- { 36108, "Cooperative Resources International" },
- { 36109, "stellaware.de" },
- { 36110, "Wannet Tecnologia da Informa\0303\0247\0303\0243o LTDA." },
- { 36111, "INNOS Co., Ltd." },
- { 36112, "Perceptive Software, Inc" },
- { 36113, "IQinVision" },
- { 36114, "Automazione e Sicurezza Ferroviaria" },
- { 36115, "True Access Consulting SA" },
- { 36116, "Akrometrix, LLC" },
- { 36117, "Gustav R. Jansen" },
- { 36118, "Offshore Systems Ltd." },
- { 36119, "Zer0.Tools IT Solutions" },
- { 36120, "Lemnisys" },
- { 36121, "Ebruit Ltd." },
- { 36122, "Designskolen Kolding" },
- { 36123, "KORATEK" },
- { 36124, "Vinzenz Gruppe Krankenhausbeteiligungs- und Management GmbH" },
- { 36125, "secadm GmbH" },
- { 36126, "CCBill" },
- { 36127, "The Ulyanovsk reg. Dept. of Treasury" },
- { 36128, "MobileTech Limited" },
- { 36129, "Institution des Chartreux" },
- { 36130, "INDUSTEX S.L." },
- { 36131, "Orafol Europe GmbH" },
- { 36132, "woernhard.NET" },
- { 36133, "Cartagena as" },
- { 36134, "Tristan Navikrvicius" },
- { 36135, "Yet Another Linux Distro" },
- { 36136, "Central Bank of the UAE" },
- { 36137, "Rising Sun Pictures" },
- { 36138, "CENTRON COMMUNICATIONS TECHNOLOGIES FUJIAN CO.,LTD" },
- { 36139, "Fl\0303\0244kt Woods Group SA" },
- { 36140, "Funkwerk Information Technologies Karlsfeld GmbH" },
- { 36141, "Ubiquoss" },
- { 36142, "ASTREA LA INFOPISTA JURIDICA SL" },
- { 36143, "dipswitch networks" },
- { 36144, "NovaSparks" },
- { 36145, "Alliance Healthcare" },
- { 36146, "Five Colleges, Incorporated" },
- { 36147, "Simrex Corporation" },
- { 36148, "Webproduce Corporation" },
- { 36149, "Argox Information Co., Ltd." },
- { 36150, sminmpec_unknown }, /* (Added by Wireshark) */
- { 36151, "HM EI Zrt." },
- { 36152, "Kulczyk Tradex" },
- { 36153, "Beijing InHand Networks Technology Co,.Ltd" },
- { 36154, "Factor Power Inc." },
- { 36155, "US Army Surface Deployment and Distribution Command" },
- { 36156, "m.a.x. Informationstechnologie AG" },
- { 36157, "gooseman.cz" },
- { 36158, "CoBlitz LLC" },
- { 36159, "Inphoria Corporation" },
- { 36160, "OR-CZ spol. s r. o." },
- { 36161, "Hills-Cook Outcomes Consulting Company" },
- { 36162, "Hardata" },
- { 36163, "CC Services, Inc" },
- { 36164, "Videoswitch S.R.L." },
- { 36165, "Learning Objects, Inc." },
- { 36166, "Cabela's" },
- { 36167, "BEWATEC Kommunikationstechnik GmbH" },
- { 36168, "Jurkiewicz" },
- { 36169, "RSG Model Works" },
- { 36170, "KeeperOS" },
- { 36171, "Host Group of Companies Pty Ltd" },
- { 36172, "Gorenje, d.d." },
- { 36173, "Bob.sh" },
- { 36174, "Chengdu Ethercom Information Tech.Co.Ltd" },
- { 36175, "Sunspeedy Technology Co.,Ltd" },
- { 36176, "Huayuan Technology CO.,LTD" },
- { 36177, "AirSage Inc" },
- { 36178, "Minetec Pty Ltd" },
- { 36179, "Celerity Systems (Pty) Ltd" },
- { 36180, "Baltic Amadeus infrastrukturos paslaugos" },
- { 36181, "PM Microwave Srl" },
- { 36182, "ENYCA" },
- { 36183, "VMK RAUSCHER" },
- { 36184, "Wright Line LLC" },
- { 36185, "LVM Works" },
- { 36186, "Hangzhou Prevail Optoelectronic Equipment Co.,LTD" },
- { 36187, "LogicFactor" },
- { 36188, "Plandata Datenverarbeitungsgesellschaft m.b.H." },
- { 36189, "BILGI GIS" },
- { 36190, "Jiang Wenkai's Own LDAP" },
- { 36191, "otop AG" },
- { 36192, "xtendx AG" },
- { 36193, "KenBIT Koenig i Wsp\0303\0263lnicy Sp.J." },
- { 36194, "it-proserv Projects & Services Ing. Karl Liepold" },
- { 36195, "Hedera Technology" },
- { 36196, "Kai-Media Co." },
- { 36197, "Movius Interactive Corporation" },
- { 36198, "TheSpidersProject" },
- { 36199, "Open Finance" },
- { 36200, "Valtech" },
- { 36201, "NTV Broadcasting Company" },
- { 36202, "Thomson Reuters" },
- { 36203, "Namirial S.p.A." },
- { 36204, "Sysinforg Kft." },
- { 36205, "xhombee studios" },
- { 36206, "Stichting Revelation Space" },
- { 36207, "SYNERGY INFORMATION SYSTEMS INC." },
- { 36208, "Karl Storz" },
- { 36209, "RGazdi Kft." },
- { 36210, "Centre hospitalier de l'Universit\0303\0251 de Montr\0303\0251al" },
- { 36211, "The Catholic University of America" },
- { 36212, "Research and Education Bridge Certification Authority, Inc." },
- { 36213, "SIA \"INBOKSS\"" },
- { 36214, "Galaxy Telecom Technologies Ltd" },
- { 36215, "Greek Academic Network - GUnet" },
- { 36216, "GoliathDNS ENK" },
- { 36217, "Ladela Interactive" },
- { 36218, "Open Cloud Consultants, Inc" },
- { 36219, "Pipe Coaters Nigeria Limited" },
- { 36220, "FLACSO" },
- { 36221, "Internet Brands, Inc." },
- { 36222, "QBS - Quality Business Software" },
- { 36223, "BeST (Closed Joint-Stock Company \0302\0253Belarusian Telecommunications Network\0302\0273)" },
- { 36224, "Playphone Entretenimento LTDA" },
- { 36225, "Secure Forward, LLC" },
- { 36226, "Securus Technologies Inc." },
- { 36227, "bookmark.com" },
- { 36228, "Dellus communication technologies Ltd." },
- { 36229, "TechStudio Solutions Pte Ltd" },
- { 36230, "Axco Insurance Information Services" },
- { 36231, "semantics GmbH" },
- { 36232, "Stig Johnsen IKT" },
- { 36233, "Security Industry Supplies Pty. Ltd." },
- { 36234, "The Otto von Guericke University of Magdeburg" },
- { 36235, "Livedrive Internet Ltd" },
- { 36236, "PointSharp" },
- { 36237, "Application Solutions (Electronics And Vision) Ltd" },
- { 36238, "oocero microsystems Unternehmergesellschaft (haftungsbeschr\0303\0244nkt)" },
- { 36239, "Live Oak Technologies LLC" },
- { 36240, "ProBuild Holdings LLC" },
- { 36241, "Bankinter" },
- { 36242, "mep srl" },
- { 36243, "Hollan Family" },
- { 36244, "Linguamatics Solutions Ltd." },
- { 36245, "EBO Group Inc." },
- { 36246, "\0303\0204rztekammer Schleswig-Holstein" },
- { 36247, "ACAMS AS" },
- { 36248, "HeadHunter" },
- { 36249, "Green Cloud srl" },
- { 36250, "New York State Division of Criminal Justice Services" },
- { 36251, "Allgoodbits.org" },
- { 36252, "PHARMATECHNIK GmbH & Co. KG" },
- { 36253, "Customized InformSystems, Ltd" },
- { 36254, "Brandon Associates" },
- { 36255, "Geek Central" },
- { 36256, "PRIMA Cinema, Inc." },
- { 36257, "Givaudan SA" },
- { 36258, "ThreatGuard Inc." },
- { 36259, "Callino" },
- { 36260, "BioMarin Pharmaceutical Inc." },
- { 36261, "BD2000 Ltd" },
- { 36262, "Meyertech Ltd." },
- { 36263, "EUROP ASSISTANCE SERVICIOS INTEGRALES DE GESTION S.A." },
- { 36264, "Evaldo Gardenali" },
- { 36265, "MAXBERT" },
- { 36266, "Golden Gekko" },
- { 36267, "Torsten Franke" },
- { 36268, "ComAbility " },
- { 36269, "Servicios de Consultoria Independiente S.L." },
- { 36270, "JAEA" },
- { 36271, "StreamOcean inc." },
- { 36272, "Protacon Solutions Oy" },
- { 36273, "Haas Elektro GmbH" },
- { 36274, "Embedded Systems Technology Group" },
- { 36275, "Communitake" },
- { 36276, "North Island Credit Union" },
- { 36277, "UOL S.A." },
- { 36278, "Protality Ltd" },
- { 36279, "Uno Web Informa\0303\0247\0303\0243o e Tecnologia Ltda" },
- { 36280, "Basda Medical Apparatus Co.,Ltd" },
- { 36281, "Beijing Boomsense Technology CO.,LTD." },
- { 36282, "Monico Monitoring inc." },
- { 36283, "Lilee Systems, Inc." },
- { 36284, "Centre Psychoth\0303\0251rapique de l'Ain" },
- { 36285, "Alliance Design WorkGroup" },
- { 36286, "MIKROKLIMA s.r.o." },
- { 36287, "wTVision" },
- { 36288, "Editora del Mar S.A." },
- { 36289, "AVM Informatique" },
- { 36290, "VeEX Inc" },
- { 36291, "Signalion GmbH" },
- { 36292, "kulthauskante e.V." },
- { 36293, "Smartlink Network Systems Limited" },
- { 36294, "MSO Link" },
- { 36295, "Marubeni-Itochu Tubulars America, Inc." },
- { 36296, "Mentor Solutions" },
- { 36297, "DVM ITS" },
- { 36298, "Baustem Technologies Ltd." },
- { 36299, "Ronix Systems" },
- { 36300, "Intervale JSC" },
- { 36301, "URS Federal Services" },
- { 36302, "ARTiiS GROUP a.s." },
- { 36303, "AuthenTec Inc." },
- { 36304, "Kandcnet Inc." },
- { 36305, "WoSign CA Limited (formerly 'WoSign eCommerce Services Ltd.')" },
- { 36306, "University of Teesside" },
- { 36307, "SONUMA" },
- { 36308, "txtNation Ltd." },
- { 36309, "Circadence Corporation" },
- { 36310, "Firelands Regional Medical Center" },
- { 36311, "exthex GmbH" },
- { 36312, "Alert Logic, inc." },
- { 36313, "GL Communications, Inc." },
- { 36314, "Regional Court in Lublin" },
- { 36315, "Joel Riedesel" },
- { 36316, "Polar Power Inc" },
- { 36317, "AVCOM Of Virginia, Inc." },
- { 36318, "Marathon Petroleum Company" },
- { 36319, "iT-CUBE SYSTEMS GmbH" },
- { 36320, "4Tel Pty Ltd" },
- { 36321, "Direcci\0303\0263n Ejecutiva de la Magistratura" },
- { 36322, "semanticlab" },
- { 36323, "WynnIT Ltd" },
- { 36324, "OpenRT" },
- { 36325, "IMAQLIQ Ltd." },
- { 36326, "T. Gipp" },
- { 36327, "9Netics Inc." },
- { 36328, "Parvus Corporation" },
- { 36329, "Ohio Farmers Insurance Company" },
- { 36330, "Comwired, Inc." },
- { 36331, "Social & Scientific Systems" },
- { 36332, "Coast360 Federal Credit Union" },
- { 36333, "Wilshire Media Group" },
- { 36334, "Dialog Information Technology" },
- { 36335, "aceway telecom co.,Ltd" },
- { 36336, "Arxscan Inc." },
- { 36337, "St. Antonius Ziekenhuis" },
- { 36338, "RESI Informatik & Automation GmbH" },
- { 36339, "Neurosearch A/S" },
- { 36340, "Phonographic Performance Limited" },
- { 36341, "Optiver" },
- { 36342, "Erlyvideo" },
- { 36343, "CoreCodec, Inc." },
- { 36344, "Skyfiber Inc" },
- { 36345, "Benchbee co., Ltd." },
- { 36346, "X-TRANS, Inc." },
- { 36347, "Prosodie" },
- { 36348, "Compass-EOS" },
- { 36349, "ANSEC Group, s.r.o." },
- { 36350, "New Zealand Ministry of Education" },
- { 36351, "CESI S.p.A." },
- { 36352, "Just IT s.r.l." },
- { 36353, "Bridgewater" },
- { 36354, "globo.com" },
- { 36355, "BIRUNI Grid Computing Centre" },
- { 36356, "Zycomm Electronics Limited" },
- { 36357, "NOMOS-BANK Open Joint-Stock Company" },
- { 36358, "Whole Foods Market Services, Inc" },
- { 36359, "Securus Software Ltd" },
- { 36360, "ASTELNET" },
- { 36361, "APTEC, LLC" },
- { 36362, "OT Bioelettronica snc" },
- { 36363, "NRT LLC" },
- { 36364, "Stefan Reinhold" },
- { 36365, "OTJ Tecnologia" },
- { 36366, "Kaminario" },
- { 36367, "E-SONDE NETWORK MONITORING, S.L." },
- { 36368, "Shenzhen Hexicom Technology Co., Ltd." },
- { 36369, "Cirrascale Corporation" },
- { 36370, "Growth Curve Technologies Ltd." },
- { 36371, "Solium Capital Inc." },
- { 36372, "Flygprestanda U.S. Inc." },
- { 36373, "HHO_Automation" },
- { 36374, "MIG" },
- { 36375, "Neota Logic Inc." },
- { 36376, "VersaSuite" },
- { 36377, "Schmidt electronic" },
- { 36378, "Nordic AkkaSource AB" },
- { 36379, "Mesto Prostejov" },
- { 36380, "Internet Applications Research and Development, LLC" },
- { 36381, "TeleMate.Net Software" },
- { 36382, "Damballa, Inc." },
- { 36383, "VDC Display Company" },
- { 36384, "Designfusion Inc." },
- { 36385, "NMS Unlimited" },
- { 36386, "Digia cc" },
- { 36387, "Scorpion Holding Company Limited" },
- { 36388, "Sanctuary Group" },
- { 36389, "Infospectrum India Pvt. Ltd." },
- { 36390, "Nice Thoughts" },
- { 36391, "Beijing JinYuanXin Technology Co.,Ltd." },
- { 36392, "Taxcom Ltd." },
- { 36393, "Bohemia Interactive" },
- { 36394, "Benco Dental" },
- { 36395, "Hochschule Wilhelmshaven/Oldenburg/Elsfleth" },
- { 36396, "OAO \"FSK EES\" MES Siberian" },
- { 36397, "Plurk Inc." },
- { 36398, "Ingenieria GBR, C.A." },
- { 36399, "39th Studios, LLC" },
- { 36400, "Neo Silurian Technologies (NS-Technologies)" },
- { 36401, "Dax Networks Ltd" },
- { 36402, "Chunichi Denshi Co.,LTD." },
- { 36403, "sentiam, inc." },
- { 36404, "Mako Networks Ltd" },
- { 36405, "Department of Information System, Hanoi National university of Education, Vietnam" },
- { 36406, "PopTarantula" },
- { 36407, "Peer Review Mediation and Arbitration" },
- { 36408, "Norges Bank Investment Management" },
- { 36409, "Foyer Assurances S.A." },
- { 36410, "gokuraku.it" },
- { 36411, "Zhejiang Chuangyi Technology Co., Ltd" },
- { 36412, "Scientific manufacturing firm Stalenergo Limited" },
- { 36413, "LUMIPLAN SAS " },
- { 36414, "Espial Group Inc." },
- { 36415, "INRS Custom Data Inc" },
- { 36416, "Harritronics LLC" },
- { 36417, "KDE e.V" },
- { 36418, "Qwilt Inc." },
- { 36419, "Path Intelligence" },
- { 36420, "Trinet Co., Ltd." },
- { 36421, "geniegate.com" },
- { 36422, "Gaikai, Inc." },
- { 36423, "Warped Reality Studios" },
- { 36424, "Roberto De Duro" },
- { 36425, "Fladi.at" },
- { 36426, "AT Software und Rechnertechnik GmbH" },
- { 36427, "Soneco d.o.o." },
- { 36428, "Inreal Technologies Ltd" },
- { 36429, "TOOLS.LV SIA" },
- { 36430, "Piarista Gimn\0303\0241zium, V\0303\0241c" },
- { 36431, "Cobham" },
- { 36432, "Proteco Industria Eletrotecnica Ltda." },
- { 36433, "Station to Station BV" },
- { 36434, "Inovit GmbH" },
- { 36435, "Rathravane LLC" },
- { 36436, "Beijing GuoTie HuaChen Communication & Information Technology Co.,Ltd." },
- { 36437, "ASAHI ELECTRONICS CO.,LTD." },
- { 36438, "Shanghai XZ-COM. Co.,Ltd." },
- { 36439, "Telenetik Corporation" },
- { 36440, "RICH RIGHT TECHNOLOGY LIMITED" },
- { 36441, "G-FIT GmbH & Co. KG" },
- { 36442, "comune di Jesi" },
- { 36443, "eikju: AG" },
- { 36444, "Sana IT Services GmbH Berlin-Brandenburg" },
- { 36445, "fotocom" },
- { 36446, "netkey information technology gmbh" },
- { 36447, "Colliers International" },
- { 36448, "Verkehrsautomatisierung Berlin GmbH" },
- { 36449, "Computation Institute" },
- { 36450, "DFZ" },
- { 36451, "CNP Assurances" },
- { 36452, "Samara Institute of Open Education" },
- { 36453, "Vanguardia Liberal" },
- { 36454, "RGI, Inc" },
- { 36455, "synertronixx GmbH" },
- { 36456, "Freiwillige Feuerwehr Strasshof" },
- { 36457, "APL software, SL" },
- { 36458, "Triumfant, Inc." },
- { 36459, "SURVISION" },
- { 36460, "PangyreSoft" },
- { 36461, "Squeep" },
- { 36462, "1st Source Bank" },
- { 36463, "DNW Technologies" },
- { 36464, "henrich" },
- { 36465, "Data Center Manageability Interface Forum" },
- { 36466, "H2 PowerTech (formerly 'Ballard Fuel Cell Systems' and 'IdaTech LLC')" },
- { 36467, "adesso AG" },
- { 36468, "Cornastone Infrastructure Services (Pty) Ltd" },
- { 36469, "Through IP Pty. Ltd." },
- { 36470, "Sofdela Inc." },
- { 36471, "Beijing SureKAM Technology Co., Ltd." },
- { 36472, "Ilait" },
- { 36473, "Direct One S.A." },
- { 36474, "Lifespan Corporation" },
- { 36475, "Fujian Etim Information & Technology Co,.Ltd." },
- { 36476, "Academia de Inform\0303\0241tica Brava, Engenharia de Sistema, Lda" },
- { 36477, "Ministry Of Health, Saudi Arabia" },
- { 36478, "WareValley" },
- { 36479, "Fastbooking" },
- { 36480, "Driving Growth International GmbH" },
- { 36481, "eqqon GmbH" },
- { 36482, "First Businesspost GmbH" },
- { 36483, "Lowe Enterprises and Destination Hotels and Resorts" },
- { 36484, "JaReVo" },
- { 36485, "nCk Research LLC" },
- { 36486, "Ecator Ltd" },
- { 36487, "Shanghai Xinmin Telecom Technologies Co.,Ltd" },
- { 36488, "Brimrose Technology Corporation" },
- { 36489, "Geovan Salvato Borges" },
- { 36490, "MassHousing" },
- { 36491, "California State University, Long Beach" },
- { 36492, "JUNet (Jordanian Network Universities) " },
- { 36493, "IDIS Co.,Ltd." },
- { 36494, "Fixmo Inc" },
- { 36495, "Systemfive" },
- { 36496, "TeamBox SARL" },
- { 36497, "Buzzinbees SAS" },
- { 36498, "Asurea Insurance Services" },
- { 36499, "West Penn Allegheny Health Systems" },
- { 36500, "Behavioreal Ltd." },
- { 36501, "Ever-Team Software" },
- { 36502, "NetBoss Technologies, Inc." },
- { 36503, "waldmeisda.com" },
- { 36504, "Joint Stock Company \0302\0253Arkhangelsk Sale Company\0302\0273" },
- { 36505, "Viatel" },
- { 36506, "Com N S Ltd." },
- { 36507, "chgauert" },
- { 36508, "Unica Corporation" },
- { 36509, "BeiJing testor techniqual Ltd" },
- { 36510, "TechnoServ A/S" },
- { 36511, "MKB Unionbank AD" },
- { 36512, "CITILOG" },
- { 36513, "SOGELINK SAS" },
- { 36514, "Ipeer Internet Network" },
- { 36515, "Suprema Corte de Justicia de la Rep\0303\0272blica Oriental del Uruguay" },
- { 36516, "Beaufort Delta Education Council" },
- { 36517, "Estalea, L.P." },
- { 36518, "RF Technology Pty Ltd" },
- { 36519, "bsdn" },
- { 36520, "SIGI" },
- { 36521, "Global RadioData Communications Ltd" },
- { 36522, "Simples Consultoria" },
- { 36523, "SippySoft" },
- { 36524, "Locus Telecommunications, Inc." },
- { 36525, "Imatia Innovation S.L." },
- { 36526, "Blackhawk Computer Services" },
- { 36527, "Mark Pr\0303\0266hl" },
- { 36528, "WMZ Engenharia" },
- { 36529, "BlueSpace Software" },
- { 36530, "Frukttr\0303\0244det" },
- { 36531, "netford" },
- { 36532, "State Agency of Medicines of Latvia" },
- { 36533, "Danaher Corporation" },
- { 36534, "Bitartists" },
- { 36535, "Der Beck GmbH" },
- { 36536, "Eprinsa" },
- { 36537, "Beijing NeTopChip Technology Co.,LTD" },
- { 36538, "ExperTeach Gesellschaft f\0303\0274r Netzwerkkompetenz mbH" },
- { 36539, "smart SNMP" },
- { 36540, "Innofinity GmbH" },
- { 36541, "FIVES" },
- { 36542, "St.Petersburg Out-patient department N106" },
- { 36543, "Sascha Silbe" },
- { 36544, "Universidade Federal do ABC" },
- { 36545, "ii2P, LLC" },
- { 36546, "Towers Watson" },
- { 36547, "Heimatverein Elte e.V." },
- { 36548, "Virtualmin Inc" },
- { 36549, "Medienzentrum Kassel" },
- { 36550, "AnthonyVinhPham" },
- { 36551, "RAADIUS LLC" },
- { 36552, "Cora Informatique" },
- { 36553, "Altos Solutions" },
- { 36554, "Moocom Corporation" },
- { 36555, "TimeTools Limited" },
- { 36556, "Triad Semiconductor, Inc." },
- { 36557, "Positive Software sprl" },
- { 36558, "Actus Digital" },
- { 36559, "Bitnet.hu Ltd." },
- { 36560, "Entr'ouvert" },
- { 36561, "Nwork Co.,Ltd." },
- { 36562, "Green Resource Inc." },
- { 36563, "Remsdaq Limited" },
- { 36564, "Daniel Fernandes" },
- { 36565, "Washington State Patrol" },
- { 36566, "new frontiers software GmbH" },
- { 36567, "Teva Pharmaceutical Industries Ltd." },
- { 36568, "Anixter" },
- { 36569, "Gridstore" },
- { 36570, "Gem\0303\0274sering Stuttgart GmbH" },
- { 36571, "Picoware Ltd" },
- { 36572, "NET4GAS, s.r.o." },
- { 36573, "Harney" },
- { 36574, "SCI Group" },
- { 36575, "MerLar" },
- { 36576, "APB PRODATA LTDA." },
- { 36577, "Starscriber Corporation" },
- { 36578, "Kron Telekomunikasyon Hizmetleri A.S" },
- { 36579, "Erste Bank Hungary Nyrt." },
- { 36580, "DVG Deutsche Vertriebsgesellschaft f\0303\0274r Publikationen und Filme mbH " },
- { 36581, "BSTECNOLOGIA" },
- { 36582, "Arduino (http://www.arduino.cc/)" },
- { 36583, "Tom Aafloen" },
- { 36584, "vmkid.com" },
- { 36585, "Logan Technologies" },
- { 36586, "NET IDEA d.o.o." },
- { 36587, "NFB Consulting" },
- { 36588, "Satellink, Inc" },
- { 36589, "Pier 1 Imports" },
- { 36590, "Rb Datensysteme GmbH" },
- { 36591, "Prefeitura Municipal de Fortaleza" },
- { 36592, "The CBORD Group, Inc." },
- { 36593, "Paul De Audney" },
- { 36594, "Certi Networks Sdn Bhd (formerly 'Telistar Solutions Pte Ltd')" },
- { 36595, "Ena Tecnologia, S.L." },
- { 36596, "Dachser GmbH & Co. KG" },
- { 36597, "PRDS" },
- { 36598, "SELEX Systems Integration Inc" },
- { 36599, "Bremer Landesbank" },
- { 36600, "Nashire AG (startup) (http://www.nashire.com)" },
- { 36601, "OTPasswd" },
- { 36602, "Observium" },
- { 36603, "ITechnical" },
- { 36604, "Media Service Provider Ltd" },
- { 36605, "Hannover R\0303\0274ckversicherung AG " },
- { 36606, "Littlehall Corporation" },
- { 36607, "Johnny Abrahamsson" },
- { 36608, "whty" },
- { 36609, "Universita' del Salento" },
- { 36610, "August Moon LLC" },
- { 36611, "Ziborski KG" },
- { 36612, "AngloGold Ashanti" },
- { 36613, "United Europe Holding OJSC" },
- { 36614, "itl Institut f\0303\0274r technische Literatur AG" },
- { 36615, "Identity Networks" },
- { 36616, "Arcatem" },
- { 36617, "RooX" },
- { 36618, "Alceo s.r.l." },
- { 36619, "Beatport, LLC" },
- { 36620, "8086 Limited" },
- { 36621, "Krithia Ltd" },
- { 36622, "WELLHAT,INC" },
- { 36623, "Swedish Orphan Biovitrum" },
- { 36624, "Senath Pty Ltd" },
- { 36625, "Allesklar.com AG" },
- { 36626, "State of Montana" },
- { 36627, "COMPLUS CZ, a.s." },
- { 36628, "Inphosoft Pte Ltd" },
- { 36629, "Assens Kommune" },
- { 36630, "3stylestudio srl" },
- { 36631, "Portalify Ltd" },
- { 36632, "Scalr Inc." },
- { 36633, "Ivoclar Vivadent Corporation" },
- { 36634, "LinkORB" },
- { 36635, "Kirchliche Paedagogische Hochschule Wien/Krems" },
- { 36636, "AMS Ltd." },
- { 36637, "Delaware Department of Education" },
- { 36638, "Planphoria, LLC" },
- { 36639, "TimedOut Services" },
- { 36640, "Benjamin Tietz" },
- { 36641, "Famos, LLC" },
- { 36642, "FireID" },
- { 36643, "ANNAX Schweiz AG (formerly 'ANNAX passenger electronics AG')" },
- { 36644, "WiseMo A/S" },
- { 36645, "cybertronixx consulting services GmbH" },
- { 36646, "San Diego State University" },
- { 36647, "STV Electronic GmbH" },
- { 36648, "Netherlands Institute for Neuroscience" },
- { 36649, "Traficon International n.v." },
- { 36650, "Joh. Ensched\0303\0251 IT & Consultancy" },
- { 36651, "Sportvision, Inc" },
- { 36652, "denkagenten GbR" },
- { 36653, "Copenhagen Business School" },
- { 36654, "CHU de Nantes" },
- { 36655, "Innovative Energies" },
- { 36656, "Unger, Welsow & Company GmbH" },
- { 36657, "Axept AG" },
- { 36658, "OMGPOP" },
- { 36659, "ATRUST COMPUTER CORPORATION" },
- { 36660, "PAUL Consultants e.V." },
- { 36661, "MailCleaner" },
- { 36662, "MTU Friedrichshafen GmbH (formerly 'Tognum AG')" },
- { 36663, "Aish Technologies Limited" },
- { 36664, "Stadt Warburg" },
- { 36665, "Egress Software Technologies Ltd" },
- { 36666, "Golden Frog, Inc." },
- { 36667, "Orange County Container Group LLC" },
- { 36668, "Canadian Standards Association" },
- { 36669, "Medicom Health Interactive" },
- { 36670, "Bundesministerium f\0303\0274r Inneres - Republik \0303\0226sterreich" },
- { 36671, "Guangzhou Changyue Electronic Technology Ltd." },
- { 36672, "FieldView Solutions" },
- { 36673, "IP Infusion Inc" },
- { 36674, "Moving Impressions" },
- { 36675, "Cossette" },
- { 36676, "E-Prime Co., Ltd." },
- { 36677, "Nejla" },
- { 36678, "Barmherzige Br\0303\0274der \0303\0226sterreich" },
- { 36679, "eo Networks S.A." },
- { 36680, "B&W Software GmbH" },
- { 36681, "IsoBeef GbR" },
- { 36682, "Reaonix, LLC" },
- { 36683, "ApexIdentity Inc." },
- { 36684, "NetCom Consulting GmbH" },
- { 36685, "Mozdell Inc," },
- { 36686, "iSencia AB" },
- { 36687, "JaxMP L.L.C." },
- { 36688, "DOORSolutions" },
- { 36689, "J&T Systems" },
- { 36690, "HCS - HES Cabling Systems" },
- { 36691, "Dolphin Speed Networks Ltd" },
- { 36692, "Open Certification Centre" },
- { 36693, "SGI Japan, Ltd." },
- { 36694, "The Revenue Department" },
- { 36695, "Cognitive Security, Ltd." },
- { 36696, "Natural History Museum" },
- { 36697, "Neo Telecoms" },
- { 36698, "Toyon" },
- { 36699, "The Engle Group" },
- { 36700, "Defferrari Sistemas de Inform\0303\0241tica Ltda" },
- { 36701, "Cogeco Cable" },
- { 36702, "Cerbini" },
- { 36703, "ABR Innovations, LLC." },
- { 36704, "My Ways, Org." },
- { 36705, "National Time Service Center,Chinese Academy of Sciences" },
- { 36706, "Fundaci\0303\0263n Centro Oncol\0303\0263gico de Galicia \"Jos\0303\0251 Antonio Quiroga y Pi\0303\0261eyro\"" },
- { 36707, "SpiderCloud Wireless, Inc." },
- { 36708, "Sensus Informatika Kft." },
- { 36709, "Mezeo Software Corporation" },
- { 36710, "Anoigo Services Ltd." },
- { 36711, "Micromodje Industries" },
- { 36712, "The Cell" },
- { 36713, "Alepo USA" },
- { 36714, "jackl0phty, LLC" },
- { 36715, "SEAS-NVE" },
- { 36716, "Jiu Info & Tech" },
- { 36717, "Studentenwerk M\0303\0274nchen" },
- { 36718, "Futurice Ltd" },
- { 36719, "onedrous.com" },
- { 36720, "Evax S.A.R.L." },
- { 36721, "Cuker Interactive" },
- { 36722, "TSC Technologies" },
- { 36723, "ILT Innovations AB" },
- { 36724, "Kaplan Research and Application Prototyping" },
- { 36725, "Artisan Computer Services LLC" },
- { 36726, "Centered Logic, LLC" },
- { 36727, "Benchmark Systems, LLC" },
- { 36728, "Ellerines" },
- { 36729, "EAS Schaltanlagen GmbH" },
- { 36730, "TAGSYS RFID" },
- { 36731, "Agorabox" },
- { 36732, "PDR Network" },
- { 36733, "ForgeRock" },
- { 36734, "Leibniz Center for Marine Tropical Ecology (ZMT)" },
- { 36735, "Regione Emilia Romagna" },
- { 36736, "Balance of Nature" },
- { 36737, "Po\0305\0241ta Crne Gore" },
- { 36738, "BLINQ Networks Inc." },
- { 36739, "Christophe Garault" },
- { 36740, "Sinicnet Technology Co., Ltd." },
- { 36741, "CV Rekatama Elektronika Persada" },
- { 36742, "Provincial Government of the Western Cape" },
- { 36743, "GESTICUMPRE" },
- { 36744, "mcclishingramcatering service" },
- { 36745, "ninjo-workstation, EuMetSys c/o Ernst Basler + Partner GmbH" },
- { 36746, "Papendorf Software Engineering GmbH" },
- { 36747, "Vertica A/S" },
- { 36748, "Leine & Linde AB" },
- { 36749, "European Media Laboratory GmbH" },
- { 36750, "JaCoTec" },
- { 36751, "RPC Scandinavia" },
- { 36752, "Datasinc" },
- { 36753, "Engineering with IT" },
- { 36754, "BZK GROUP Sp. z o.o." },
- { 36755, "stocker-schmid.ch" },
- { 36756, "Fossmart Pvt Limited" },
- { 36757, "GuanFang Technologies Co., Ltd" },
- { 36758, "FORTRUST LLC" },
- { 36759, "eks Engel GmbH & Co. KG" },
- { 36760, "Ancitel S.p.A." },
- { 36761, "Datera S.A." },
- { 36762, "Actisis GmbH" },
- { 36763, "Riverside Health System" },
- { 36764, "Linuxstar DE" },
- { 36765, "Herff Jones Inc" },
- { 36766, "Ixolit GmbH" },
- { 36767, "Rockyou" },
- { 36768, "IT Prof Service Ltd." },
- { 36769, "Originity" },
- { 36770, "Redmark" },
- { 36771, "Learning Unlimited, Inc." },
- { 36772, "Funk-Electronic Piciorgros GmbH" },
- { 36773, "SecurActive" },
- { 36774, "op5 AB" },
- { 36775, "Akera S.r.l." },
- { 36776, "Washington State University Extension Energy Program" },
- { 36777, "sedOSS AB" },
- { 36778, "Leap Power " },
- { 36779, "University Corporation for Atmospheric Research" },
- { 36780, "Format Computing" },
- { 36781, "Monument Systems LLC" },
- { 36782, "Premier Wireless, Inc." },
- { 36783, "Tasco Sales (Aust) Pty Ltd" },
- { 36784, "FMS Software Ltd." },
- { 36785, "Diino AB" },
- { 36786, "TechMA s.r.l." },
- { 36787, "Futurex, LLC" },
- { 36788, "Autoridade Nacional de Seguran\0303\0247a Rodovi\0303\0241ria" },
- { 36789, "BONET Group" },
- { 36790, "POWERVAR INC" },
- { 36791, "eac easy automation components GmbH" },
- { 36792, "ZyTrust SA" },
- { 36793, "Kiwibank" },
- { 36794, "Web4U s.r.o." },
- { 36795, "Allgemeine Baugesellschaft - A. Porr Aktiengesellschaft" },
- { 36796, "Norbit" },
- { 36797, "No Limits Software" },
- { 36798, "Teamup Technology Limited" },
- { 36799, "Codeworx3 Pty Ltd" },
- { 36800, "DONGGUANG APTECH ELECTRONICS CO., LTD" },
- { 36801, "kokii" },
- { 36802, "Cazoodle, Inc." },
- { 36803, "Flughafen Stuttgart GmbH" },
- { 36804, "UCN GmbH" },
- { 36805, "RideCharge Inc." },
- { 36806, "Great River Energy" },
- { 36807, "NetWitness" },
- { 36808, "The Sherwin-Williams Company" },
- { 36809, "ITERANET Ltd" },
- { 36810, "237 Solutions Pty Ltd " },
- { 36811, "Consendo Systems A/S" },
- { 36812, "CSP, Inc." },
- { 36813, "SafeTek USA, LLC" },
- { 36814, "DEFFAYET" },
- { 36815, "Savings Society Inc" },
- { 36816, "Beijing Abloomy Technologies Co., Ltd (formerly 'Beijing Yunshengfa Technologies Co., Ltd')" },
- { 36817, "Bohemia Interactive Simulations" },
- { 36818, "Accelya France SAS" },
- { 36819, "Yare Objects AB" },
- { 36820, "Updata Infrastructure UK Limited" },
- { 36821, "Local Matters, Inc." },
- { 36822, "Adaffix GmbH" },
- { 36823, "Conference Plus, Inc." },
- { 36824, "UFPS \"Tatarstan pochtasy\" - filial FGUP \"Pochta Rossii\"" },
- { 36825, "Grenada Lake Medical Center" },
- { 36826, "Control Zero" },
- { 36827, "Message Solution" },
- { 36828, "CEZ, a. s." },
- { 36829, "LAGARDERE ACTIVE" },
- { 36830, "WHATEVER MOBILE GmbH" },
- { 36831, "Ratio Consulta" },
- { 36832, "Pocket Kings Ltd" },
- { 36833, "Authenware Corporation" },
- { 36834, "Omnis Cloud" },
- { 36835, "Solimar Systems, Inc." },
- { 36836, "Brian Carlson" },
- { 36837, "Hangzhou Future Technology Co.,Ltd" },
- { 36838, "GK Software AG" },
- { 36839, "Connect Informatica S.r.l." },
- { 36840, "Peter Kutting IT-Services " },
- { 36841, "Thor DMS" },
- { 36842, "CSR Ltd" },
- { 36843, "Valley Telegence Private Ltd" },
- { 36844, "Sozialhilfeverband Kirchdorf an der Krems" },
- { 36845, "ABACOM-Ingenieurgesllschaft" },
- { 36846, "OOO \"SMU OFISSTROY\"" },
- { 36847, "International Game Technology, Inc." },
- { 36848, "CRE-DO GmbH" },
- { 36849, "Hanwha Techwin Co., Ltd. (formerly 'Samsung Techwin Co., Ltd.')" },
- { 36850, "Dharma Drum Buddhist College (DDBC)" },
- { 36851, "OutputLinks, Inc." },
- { 36852, "Bnei Baruch" },
- { 36853, "axilaris GmbH" },
- { 36854, "BURGO GROUP SPA" },
- { 36855, "Ge.Si.ass scrl" },
- { 36856, "GEDIA Gebr\0303\0274der Dingerkus GmbH" },
- { 36857, "Holztechnikum Kuchl" },
- { 36858, "THQ Inc." },
- { 36859, "Ixia (formerly 'BreakingPoint Systems')" },
- { 36860, "True Value Company" },
- { 36861, "Pacmed International Inc" },
- { 36862, "Mitrol SRL" },
- { 36863, "sankai" },
- { 36864, "South Stream" },
- { 36865, "delight software gmbh" },
- { 36866, "Zott GmbH & Co. KG" },
- { 36867, "Zam\0304\0233stnanci.com s.r.o." },
- { 36868, "SignGuard Europe Ab" },
- { 36869, "Sofium" },
- { 36870, "Walter Parr" },
- { 36871, "Daylife, Inc." },
- { 36872, "Tekno Telecom, L.L.C." },
- { 36873, "Wideportal IT Solutions UG (haftungsbeschr\0303\0244nkt)" },
- { 36874, "Anerma Electronics b.v.b.a" },
- { 36875, "TOYO Corporation" },
- { 36876, "Chongqing Rural Commercial Bank" },
- { 36877, "Sundale Garden Village" },
- { 36878, "Insta Group Ltd." },
- { 36879, "New Mexico Consortium" },
- { 36880, "tolj.org system architecture" },
- { 36881, "Simon Josefsson Datakonsult AB" },
- { 36882, "Texas Department of Transportation" },
- { 36883, "Modernizing Medicine, Inc." },
- { 36884, "ESE (Mod-Electronics Inc.)" },
- { 36885, "CImbal Inc." },
- { 36886, "Oliver Wyman Group" },
- { 36887, "ArtPlant" },
- { 36888, "E-Formation GmbH" },
- { 36889, "China Bluedon information security technology co., ltd" },
- { 36890, "future Training & Consulting GmbH" },
- { 36891, "Nomadic Technologies Inc." },
- { 36892, "Axel Springer SE" },
- { 36893, "Takacom Corporation" },
- { 36894, "Compagnie Europ\0303\0251enne des Emballages Robert Schisler" },
- { 36895, "Guangdong Newstart Technology Service Co.,Ltd" },
- { 36896, "Quality Manager Plus AS" },
- { 36897, "OEConnection LLC" },
- { 36898, "Finning (Canada)" },
- { 36899, "CEVA Sante Animale" },
- { 36900, "Atricore, Inc." },
- { 36901, "Art Is Rebellion" },
- { 36902, "OneWaiheke" },
- { 36903, "Osyris" },
- { 36904, "Legion Telekommunikation GmbH" },
- { 36905, "MedCentral Health System" },
- { 36906, "Institute for Internet Technologies and Applications" },
- { 36907, "Luggage Pros" },
- { 36908, "Research Industrial Systems Engineering (RISE) Forschungs-, Entwicklungs- und Gro\0303\0237projektberatung GmbH" },
- { 36909, "Bison IT Services AG" },
- { 36910, "Pacific Communications" },
- { 36911, "EEtrust" },
- { 36912, "Lenglet imprimeurs" },
- { 36913, "Asociaci\0303\0263n Cooperativa Sutronix, R.L." },
- { 36914, "Square, Inc." },
- { 36915, "ALFATRUST CERTIFICATION S.A." },
- { 36916, "Gemeente Groningen" },
- { 36917, "Tunz.com" },
- { 36918, "Altran" },
- { 36919, "Mentana - Claimsoft GmbH" },
- { 36920, "Yearsun Industrial Co., Ltd." },
- { 36921, "LLC SIBUR" },
- { 36922, "Eurohueco S.A." },
- { 36923, "schlott gruppe Aktiengesellschaft" },
- { 36924, "Doosan Power Systems Limited" },
- { 36925, "Heinrich Schmid Systemhaus GmbH & Co. KG" },
- { 36926, "Prime Therapeutics" },
- { 36927, "Innovasic Semiconductor Inc" },
- { 36928, "Technical University of Lodz Computer Center" },
- { 36929, "Vitri Solutions Private Limited" },
- { 36930, "Zoe Evangelistische Vereinigung" },
- { 36931, "Aboagye Okyere Emmanuel" },
- { 36932, "Zetetic LLC" },
- { 36933, "PXL S.C. ARL" },
- { 36934, "Lemco Electronics" },
- { 36935, "Kentuckiana Pride Foundation" },
- { 36936, "Clinical Software Solutions" },
- { 36937, "Alphasoft Nederland" },
- { 36938, "Profweb" },
- { 36939, "Sentinela Security Ltda." },
- { 36940, "TLO" },
- { 36941, "Solekai Systems Corporation" },
- { 36942, "KAVECO-Workflow" },
- { 36943, "Venice International University" },
- { 36944, "ANO \"TV-Novosti\"" },
- { 36945, "Advance Milles System Co.,Ltd." },
- { 36946, "Web Technology Projects ltd." },
- { 36947, "Multilab AS" },
- { 36948, "OpenIT GmbH" },
- { 36949, "GFI" },
- { 36950, "D\0303\0251dalo Helicolor S.A." },
- { 36951, "Southern Illinois Univeristy" },
- { 36952, "Kunming Railway Signalling And Telecommunications Department" },
- { 36953, "VOX - Norwegian Agency for Lifelong Learning" },
- { 36954, "42 Units - IT, Ltd." },
- { 36955, "ELSIST Srl" },
- { 36956, "SEMATECH" },
- { 36957, "libvirt" },
- { 36958, "Receptive IT" },
- { 36959, "The Cellars Group LLC" },
- { 36960, "TPH Acquisitions LLLP" },
- { 36961, "BOC GmbH" },
- { 36962, "Advertiser Technologies" },
- { 36963, "Communications Supply & Support Limited" },
- { 36964, "Arkodia Technologies, LLC" },
- { 36965, "CriptoTec" },
- { 36966, "CCDMD" },
- { 36967, "FNet" },
- { 36968, "Ocom Communications, Inc." },
- { 36969, "NELLS Electronic Systems, Inc." },
- { 36970, "FinanceScout24 GmbH" },
- { 36971, "Transcend Communication Beijing Co.,Ltd" },
- { 36972, "Banco Central de Honduras" },
- { 36973, "Phoenix Capital" },
- { 36974, "Costain Group PLC (formerly 'Simulation Systems Ltd')" },
- { 36975, "UrgentCare Works, LLC" },
- { 36976, "Critter bvba" },
- { 36977, "Eloqua Corporation" },
- { 36978, "Pico Digital Inc" },
- { 36979, "accumio GmbH" },
- { 36980, "Steinle Solution-Factory GmbH" },
- { 36981, "Kindersprachscreening" },
- { 36982, "UNESCO-IHE" },
- { 36983, "Kiwilight.com Limited" },
- { 36984, "TAO Beratungs- und Management GmbH" },
- { 36985, "Sewar Technologies" },
- { 36986, "Piratenpartei Oesterreichs" },
- { 36987, "OnVPS" },
- { 36988, "host4u.at" },
- { 36989, "BEIJING XINGHUA BRAINRUST TECHNOLOGY CO.,LTD" },
- { 36990, "Prinovis Nuernberg GmbH" },
- { 36991, "CASTEL" },
- { 36992, "SystemGroup" },
- { 36993, "Lucid Design Group" },
- { 36994, "Fastnet" },
- { 36995, "akrido.net" },
- { 36996, "Fordingbridge Computer Services" },
- { 36997, "XuZhou Medical College" },
- { 36998, "MTek Enterprises, LLC" },
- { 36999, "Instituto de Tecnologia Qu\0303\0255mica e Biol\0303\0263gica" },
- { 37000, "Joel Hatcher" },
- { 37001, "MindShift Corp" },
- { 37002, "Diversified Control, Inc." },
- { 37003, "Vertu" },
- { 37004, "VMTurbo" },
- { 37005, "Medizinische Einrichtungen des Bezirks Oberpfalz GmbH" },
- { 37006, "Koger, Inc." },
- { 37007, "LOGIWAYS" },
- { 37008, "Cleopatra" },
- { 37009, "CHIP-N LLC" },
- { 37010, "Saguna Networks LTD" },
- { 37011, "KFSoftware" },
- { 37012, "Bestgo.pl Sp. Z O.O." },
- { 37013, "eoswan" },
- { 37014, "Hanming Technology Co., Ltd" },
- { 37015, "Harms Consulting Pty Ltd" },
- { 37016, "Unicredit S.P.A." },
- { 37017, "NATION Technologies Group, Inc" },
- { 37018, "Phabrix" },
- { 37019, "LANOS Computer GmbH & Cie KG" },
- { 37020, "Dichotomia" },
- { 37021, "ScandFibre Logistics AB" },
- { 37022, "Scientific and Production Company Granch Ltd." },
- { 37023, "KazTransCom JSC" },
- { 37024, "edv neubrand" },
- { 37025, "Maverick Wireless Solutions Private Limited" },
- { 37026, "Mylab Oy" },
- { 37027, "rc-tec GmbH" },
- { 37028, "Fernwaerme Ulm GmbH" },
- { 37029, "Technology On Demand, Inc." },
- { 37030, "G4S Technology Limited" },
- { 37031, "Studio MekTek, Inc" },
- { 37032, "RR Donnelley Europe Sp. z o.o. " },
- { 37033, "Eden Rock Communications" },
- { 37034, "Goatrace Ltd" },
- { 37035, "Kitami Institute of Technology" },
- { 37036, "Geekerati" },
- { 37037, "America First Federal Credit Union" },
- { 37038, "ComplexNet Ltd." },
- { 37039, "EtherWorks Pty. Ltd." },
- { 37040, "GoldCard spol. s r. o." },
- { 37041, "Thales Alenia Space Espa\0303\0261a" },
- { 37042, "Bee Software Inc." },
- { 37043, "Irkutsk regional clinical hospital" },
- { 37044, "DINEC International" },
- { 37045, "LexisNexis Univentio B.V." },
- { 37046, "Fjord Technology UG (haftungsbeschr\0303\0244nkt)" },
- { 37047, "InterCard Kartensyteme GmbH" },
- { 37048, "Tetra Tech Inc." },
- { 37049, "UFCSPA" },
- { 37050, "Techyond Inc." },
- { 37051, "Oliver Roll" },
- { 37052, "and One Inc." },
- { 37053, "MMR Network Management Science & Technology Co., Ltd " },
- { 37054, "AirP Systems LLC" },
- { 37055, "JM Properties" },
- { 37056, "ATM Japan, Ltd." },
- { 37057, "Quickpay Ltd. (formerly 'MPS Quickpay')" },
- { 37058, "thockar IT consulting" },
- { 37059, "Command and Control Systems" },
- { 37060, "Silicon & Software Systems Ltd." },
- { 37061, "Sargento Foods Inc." },
- { 37062, "RigNet, Inc." },
- { 37063, "SARL AEGLE INFORMATIQUE MEDICALE" },
- { 37064, "The University of Kitakyushu" },
- { 37065, "COTEK ELECTRONIC IND.CO.,LTD" },
- { 37066, "OE INVESTMENTS LIMITED" },
- { 37067, "Centrum Rozwoju Szk\0303\0263\0305\0202 Wy\0305\0274szych TEB Akademia sp. z o.o." },
- { 37068, "Arizona Coppersoft" },
- { 37069, "Broadband Antenna Tracking Systems" },
- { 37070, "RadioOpt GmbH" },
- { 37071, "Sofistone Oy" },
- { 37072, "Lantech Communications Global, Inc." },
- { 37073, "BEIJING JETSEN TECHNOLOGY CO.,LTD" },
- { 37074, "Assam Electronics Development Corporation Limited (AMTRON)" },
- { 37075, "rootsys" },
- { 37076, "IPETRIK" },
- { 37077, "Albuquerque Public Schools" },
- { 37078, "Nor1, Inc." },
- { 37079, "Wofford College" },
- { 37080, "3VR Security, Inc." },
- { 37081, "Wicked Trickster LLC" },
- { 37082, "Ministry of Finance " },
- { 37083, "Blok Software Development (BlokSoft)" },
- { 37084, "9h37" },
- { 37085, "KDS" },
- { 37086, "Elemental Technologies, Inc." },
- { 37087, "Holy Cross Energy" },
- { 37088, "Teamsourcing Cia. Ltda." },
- { 37089, "Mediengruppe Pressedruck Dienstleistungs-GmbH & Co. OHG" },
- { 37090, "OUVREZLABOITE" },
- { 37091, "Orion Virtualisation Solutions Pty Limited" },
- { 37092, "CJ Computers" },
- { 37093, "Consolidated Edison Company of New York Inc" },
- { 37094, "MadPilot Productions" },
- { 37095, "GH-Informatik GmbH. " },
- { 37096, "Dongnian Networks Inc" },
- { 37097, "UkSATSE" },
- { 37098, "Ingenieursbureau Ebatech BV" },
- { 37099, "Itautec S.A." },
- { 37100, "Endai Worldwide" },
- { 37101, "Quelltext AG" },
- { 37102, "Wind mobile" },
- { 37103, "Infinetix Corp." },
- { 37104, "Pebble Beach System Ltd" },
- { 37105, "Secure Systems and Technologies Ltd" },
- { 37106, "RazorThreat, Inc." },
- { 37107, "Manitoba Telecom Services" },
- { 37108, "DonbassInformCommunicationService" },
- { 37109, "SMS Data Products Group, Inc." },
- { 37110, "Altera Corporation" },
- { 37111, "Institute for Clinical and Experimental Medicine" },
- { 37112, "Infosol d.o.o." },
- { 37113, "Chita State University" },
- { 37114, "Christian Aid" },
- { 37115, "VIVA SOFT LTD" },
- { 37116, "Instituto Nacional de Seguros" },
- { 37117, "Industrial Thinking Ltd" },
- { 37118, "Panoramic Data" },
- { 37119, "Object ECM AG" },
- { 37120, "Velocent Systems Inc." },
- { 37121, "Eiritu Equipment Technology Co.,Ltd" },
- { 37122, "EVOTRIX SYSTEMS" },
- { 37123, "BYTIS Ltd." },
- { 37124, "beatandmusic media GmbH" },
- { 37125, "Omega Cube" },
- { 37126, "syn2cat a.s.b.l." },
- { 37127, "SuperLumin Networks" },
- { 37128, "bo.lt" },
- { 37129, "Project 76" },
- { 37130, "Miroslav Mrakota" },
- { 37131, "Unioncast Network Technology Co.,LTD,BeiJing" },
- { 37132, "Friedrich Kuhnt GmbH" },
- { 37133, "Reverse-Logic Ltd." },
- { 37134, "MackTECH GmbH" },
- { 37135, "oscardijkhoff.nl" },
- { 37136, "Crawford and Company" },
- { 37137, "Reilly Telecom Inc." },
- { 37138, "tibra" },
- { 37139, "Deep-Secure Ltd" },
- { 37140, "Guavus Inc" },
- { 37141, "MUWA-Spelle" },
- { 37142, "Actua" },
- { 37143, "in-put GbR - Das Linux-Systemhaus" },
- { 37144, "Viktor Gruber" },
- { 37145, "MedicVision" },
- { 37146, "Unitrin Services Group" },
- { 37147, "Alveole Studio" },
- { 37148, "burak \0303\0266zen" },
- { 37149, "OnLineDB ltd" },
- { 37150, "Surtronic International B.V." },
- { 37151, "Cross Domain Technical Forum" },
- { 37152, "France Net Com" },
- { 37153, "srnjak.com" },
- { 37154, "Junction Software Ltd" },
- { 37155, "ByteActive AB" },
- { 37156, "Hangzhou Lancable Technology Co.,ltd" },
- { 37157, "NetentSec Inc. " },
- { 37158, "cynix.org" },
- { 37159, "SCK-CEN" },
- { 37160, "Continium Ltd." },
- { 37161, "Mobis Ltd" },
- { 37162, "Softperience" },
- { 37163, "IPS - International Power Supply" },
- { 37164, "IMage INTelligence (IMINT)" },
- { 37165, "Kivanc Oskay" },
- { 37166, "Seillac Co., Ltd." },
- { 37167, "Infrafuture Inc." },
- { 37168, "CorpGenie" },
- { 37169, "Xeirius Solutions" },
- { 37170, "SoftwareMind" },
- { 37171, "Dipl.-Ing. (BA) Thomas Knoblauch" },
- { 37172, "Wired Inform\0303\0241tica e Sistemas Lda" },
- { 37173, "Kluwer" },
- { 37174, "STEP Networks Inc" },
- { 37175, "NovoLink Communications" },
- { 37176, "Integrated Products Inc" },
- { 37177, "Southern Oregon University" },
- { 37178, "Alquist Consulting Ltd" },
- { 37179, "Ab Ovo Nederland BV" },
- { 37180, "Centric Corporation" },
- { 37181, "IP Technology Labs" },
- { 37182, "Viewteq Corp." },
- { 37183, "Cipherdyne" },
- { 37184, "Aptus Interactive Ltd" },
- { 37185, "AMERSPORTS" },
- { 37186, "Perfecto Mobile" },
- { 37187, "Premier Manufacturing Support Services Poland Sp. z o.o." },
- { 37188, "eTellicom Pty Ltd" },
- { 37189, "Audit Grup Ltd." },
- { 37190, "Tecisa74 S.L." },
- { 37191, "Androscoggin Valley Hospital" },
- { 37192, "INSTITUTO FEDERAL DO PAR\0303\0201 - IFPA" },
- { 37193, "REACH Global Services" },
- { 37194, "Gaba Corporation" },
- { 37195, "connect co.Ltd" },
- { 37196, "Tieline Technology" },
- { 37197, "Oberfinanzdirektion Niedersachsen" },
- { 37198, "SoftAgency Co., Ltd." },
- { 37199, "Zentrum fuer Informationstechnologie kreuznacher diakonie" },
- { 37200, "S&L ITcompliance GmbH" },
- { 37201, "S&L Netzwerktechnik GmbH" },
- { 37202, "United Network for Organ Sharing" },
- { 37203, "Global Telecom Tools, LLC" },
- { 37204, "Maxxess Systems, Inc." },
- { 37205, "SAMPENSION KP LIVSFORSIKRING A/S" },
- { 37206, "FEMSWISS AG" },
- { 37207, "Astrium Services - GEO-Information division" },
- { 37208, "Embedded Planet" },
- { 37209, "San Francisco Department of Public Health" },
- { 37210, "The Monkeysphere Project" },
- { 37211, "Fontana Unified School District" },
- { 37212, "Yamaha motor solutions xiamen" },
- { 37213, "RS Automation Co.,Ltd." },
- { 37214, "Aeromaritime Systembau GmbH" },
- { 37215, "MicroWorld Technologies Inc." },
- { 37216, "Clickstream Technologies Plc" },
- { 37217, "Entanet International Ltd." },
- { 37218, "SZM.com s.r.o." },
- { 37219, "Wandertec" },
- { 37220, "cPacket Networks Inc." },
- { 37221, "TerraVision Pty Ltd" },
- { 37222, "ALLCLEAR" },
- { 37223, "Integra-S" },
- { 37224, "international west trading ltd" },
- { 37225, "eParadeigma, LLC" },
- { 37226, "Polizei Saarland" },
- { 37227, "INC Technologies" },
- { 37228, "HandcraftIT" },
- { 37229, "Applied-Intelligence GmbH" },
- { 37230, "Modulo Consulting" },
- { 37231, "University of Plovdiv" },
- { 37232, "GTS-Thaumat XXI, S.A." },
- { 37233, "Void Sistemas S.L" },
- { 37234, "Xuzhou Normal University" },
- { 37235, "Gen Energija d.o.o." },
- { 37236, "Stantech Communications Solutions, Inc." },
- { 37237, "Metabolon" },
- { 37238, "Bateau Limited" },
- { 37239, "MKM Bilgisayar Danismanlik ve Egitim Hizmetleri San. ve Tic. Ltd. Sti." },
- { 37240, "Joerg Riesmeier" },
- { 37241, "Grupo Soares da Costa SA" },
- { 37242, "Zerolag Communications" },
- { 37243, "Everyone Counts, Inc." },
- { 37244, "ZigBee Alliance, Inc." },
- { 37245, "Fusion Crypto" },
- { 37246, "Zerfowski" },
- { 37247, "Thales Solutions Asia" },
- { 37248, "JoongboTech Co, LTD." },
- { 37249, "Amicon Ltd" },
- { 37250, "Grid2Home" },
- { 37251, "eVent Medical Inc" },
- { 37252, "Image Video" },
- { 37253, "Energy Aware Technology Inc." },
- { 37254, "Intronis, Inc." },
- { 37255, "Mirada" },
- { 37256, "Mendeley Ltd" },
- { 37257, "die | brueckenschlaeger" },
- { 37258, "Telekomunikacije RS AD Banja Luka" },
- { 37259, "Netic A/S" },
- { 37260, "XIAN ZIKING NETWORK COMMUNICATIONS CO.,LTD." },
- { 37261, "University of Shkodra" },
- { 37262, "Sabrefin Limited" },
- { 37263, "Catholic Education Office, Lismore" },
- { 37264, "Tularosa Communications" },
- { 37265, "Delovoy Partner Ltd." },
- { 37266, "Schindler Elevator Ltd" },
- { 37267, "Tecnobit" },
- { 37268, "Gira Giersiepen GmbH & Co. KG" },
- { 37269, "Rosa-Luxemburg-Stiftung Gesellschaftsanalyse und politische Bildung e. V. " },
- { 37270, "Farell Instruments SL" },
- { 37271, "COESYS s.r.l." },
- { 37272, "Westvik" },
- { 37273, "Acision Ltd" },
- { 37274, "Infratel, Inc." },
- { 37275, "Skyfire Labs, Inc." },
- { 37276, "System of Modular Technologies - ICC" },
- { 37277, "Universidad TecMilenio" },
- { 37278, "Hanselmann Consulting GmbH" },
- { 37279, "eco-ged" },
- { 37280, "jTendo Sp. z o.o." },
- { 37281, "Signatec ltd." },
- { 37282, "Barloworld Power" },
- { 37283, "SPF FInances" },
- { 37284, "Energy Sector Security Consortium, Inc." },
- { 37285, "NationalField" },
- { 37286, "Congressional Budget Office" },
- { 37287, "christopher d del riesgo" },
- { 37288, "AXGATE CO., LTD (formerly 'AXAN Networks Co.,LTD.')" },
- { 37289, "Inco-Service Ltd." },
- { 37290, "Gridmerge Limited" },
- { 37291, "BRITZE Elektronik und Geraetebau GmbH" },
- { 37292, "Arcanum Communications Ltd" },
- { 37293, "Rusteletech Ltd." },
- { 37294, "netzquadrat GmbH" },
- { 37295, "Stadt Muenster - citeq" },
- { 37296, "nanoLogika GmbH" },
- { 37297, "LiteCore Networks India Pvt Ltd" },
- { 37298, "PAGANI INFORMATIQUE sarl" },
- { 37299, "Quanxi Technologies, LLC" },
- { 37300, "Neoware s.r.o." },
- { 37301, "metaVentis GmbH" },
- { 37302, "Daniel Adam" },
- { 37303, "Ignesco Software" },
- { 37304, "Stonegate Instruments Ltd" },
- { 37305, "Beijing Utility Software Core Technology Co., Ltd" },
- { 37306, "Hintz" },
- { 37307, "Vod\0303\0251a" },
- { 37308, "GSMK mbH" },
- { 37309, "P\0303\0211T\0303\0201V P\0303\0251csi T\0303\0241vf\0305\0261t\0305\0221 Kft." },
- { 37310, "NetAcademia Kft." },
- { 37311, "Leibniz-Gymnasium Remscheid (formerly 'N@team Leibniz-Gymnasium Remscheid')" },
- { 37312, "ULC Systems Inc." },
- { 37313, "peers@play" },
- { 37314, "40 North LLC" },
- { 37315, "Greenshift" },
- { 37316, "Yuvad Technologies" },
- { 37317, "Ruby Rocket (Chengdu) Consulting Co., Ltd" },
- { 37318, "Datacenter Services, Inc." },
- { 37319, "GERNY" },
- { 37320, "Inneasoft" },
- { 37321, "Really Helsinki Oy" },
- { 37322, "ERNW GmbH" },
- { 37323, "Yasashi Matsuo" },
- { 37324, "Albany Medical Center" },
- { 37325, "York College of Pennsylvania" },
- { 37326, "Datasat Digital Entertainment" },
- { 37327, "Student Satellite Initiative Munich SSIMUC e.V." },
- { 37328, "Peninsula Regional Medical Center" },
- { 37329, "Community Care Physicians, P.C." },
- { 37330, "OpenMarket" },
- { 37331, "Frey Textilreinigung GmbH" },
- { 37332, "CPS Power Systems GmbH" },
- { 37333, "CADENAS GmbH" },
- { 37334, "Norsk Hydro ASA" },
- { 37335, "DimpleDough" },
- { 37336, "Identity Solutions Pty Ltd" },
- { 37337, "RandomStorm Ltd" },
- { 37338, "C3" },
- { 37339, "Open IPTV Forum, e.V." },
- { 37340, "Teclo Networks" },
- { 37341, "Plexxi, Inc." },
- { 37342, "uCIRRUS Corp" },
- { 37343, "InterScot Network" },
- { 37344, "Express TeleCom JSC" },
- { 37345, "it suits IT" },
- { 37346, "Medicity" },
- { 37347, "IT-Services der Oesterreichischen Sozialversicherungs GmbH" },
- { 37348, "Compact Software International SA" },
- { 37349, "Family Trach" },
- { 37350, "SkyOnline Argentina" },
- { 37351, "Agile Europe s. r. o." },
- { 37352, "Ministerio de Relaciones Exteriores, Comercio Internacional y Culto" },
- { 37353, "Euroports" },
- { 37354, "Arawat Inc" },
- { 37355, "Norris Communications" },
- { 37356, "Deutschmann Automation GmbH & Co. KG" },
- { 37357, "Auderis" },
- { 37358, "Regionalmedien Austria AG" },
- { 37359, "PaperlinX Europe" },
- { 37360, "Hypace Technology Co.,Ltd" },
- { 37361, "EquiVox Inc." },
- { 37362, "Center Information Technologies of Amur Region" },
- { 37363, "Viishanke Oy" },
- { 37364, "Likewise Software" },
- { 37365, "AeCS Aeroclub Saar e.V." },
- { 37366, "Network Application Engineering Laboratories LTD." },
- { 37367, "UNIVISION SRL" },
- { 37368, "AND Technology Research Ltd." },
- { 37369, "CyberCit\0303\0251" },
- { 37370, "Mark White" },
- { 37371, "Idibri" },
- { 37372, "University of San Diego" },
- { 37373, "MitraStar Technology Corporation" },
- { 37374, "Brainstorm Mobile Solutions Ltd" },
- { 37375, "DATA 5 Ingenieurbuero fuer Datentechnik GmbH" },
- { 37376, "Gerhard Messer" },
- { 37377, "Chaos Creations" },
- { 37378, "Dansk Kabel TV" },
- { 37379, "Charles Schwab & Co., Inc." },
- { 37380, "Computer Output Print & Internet (COPI)" },
- { 37381, "Balidev.com" },
- { 37382, "Danateq PTE Ltd" },
- { 37383, "Infocom Network Limited" },
- { 37384, "Onze Lieve Vrouw Ziekenhuis Aalst" },
- { 37385, "Centrum Informatyki ZETO S.A. w Bia\0305\0202ymstoku" },
- { 37386, "CEGES/SOMA" },
- { 37387, "NAVUM GmbH" },
- { 37388, "Lietuvos Respublikos Seimo kanceliarija" },
- { 37389, "BYO NETWORKS" },
- { 37390, "Adyton Systems AG" },
- { 37391, "Ministry of health Republic of Macedonia" },
- { 37392, "PROBE Inc." },
- { 37393, "Tazarv Afzar Co." },
- { 37394, "Farsinet" },
- { 37395, "kaspian sanat co." },
- { 37396, "Us\0305\0202ugi Informatyczne ITS Mariusz Kry\0305\0204ski" },
- { 37397, "MMB Research Inc." },
- { 37398, "ThreatMetrix" },
- { 37399, "Oceans Edge Inc" },
- { 37400, "Topsoft ZRt" },
- { 37401, "FancyFon Software" },
- { 37402, "neverpanic.de" },
- { 37403, "Marmiko IT-Solutions GmbH" },
- { 37404, "Rischioto Corp" },
- { 37405, "HeBei FarEast Harries comunication company" },
- { 37406, "AHASWARE s.r.o." },
- { 37407, "Comcraft" },
- { 37408, "Callis Technologies" },
- { 37409, "Home Credit International, a. s." },
- { 37410, "Opus VFX" },
- { 37411, "L-S-B Broadcast Technologies GmbH" },
- { 37412, "Cable Manufacturing Business, Inc" },
- { 37413, "Smile SA" },
- { 37414, "Tipjar L.L.C." },
- { 37415, "International Radio and Electronics Corp." },
- { 37416, "Rivet Software" },
- { 37417, "EFM s.r.l." },
- { 37418, "Mobile People" },
- { 37419, "Bonprix sp. z.o.o" },
- { 37420, "Virtual Bit di Lucio Crusca" },
- { 37421, "Factum IT BV" },
- { 37422, "Start Norge" },
- { 37423, "DynaMITe Services" },
- { 37424, "MDL29" },
- { 37425, "Ericsson-LG Enterprise Co., Ltd. (formerly 'LG-Ericsson Co., Ltd.')" },
- { 37426, "Travelzen Group Ltd." },
- { 37427, "ENTE" },
- { 37428, "B\0303\0274rkert Werke GmbH" },
- { 37429, "Grand Canyon University" },
- { 37430, "Electronic Power And Market Sp. z o.o." },
- { 37431, "Montalbano Technology SPA" },
- { 37432, "Carbon Mountain LLC" },
- { 37433, "Custom Radio Network, Inc." },
- { 37434, "ZenRobotics Ltd." },
- { 37435, "Gensler IT-Support" },
- { 37436, "Maritime Broadband Inc." },
- { 37437, "Softec Integrations AG" },
- { 37438, "networks direkt Gesellschaft f\0303\0274r Informationstechnologie mbH" },
- { 37439, "Computer Network Limited" },
- { 37440, "Digitalwatt S.r.L" },
- { 37441, "OCI Nitrogen" },
- { 37442, "ANFAC Autoridad de Certificaci\0303\0263n Ecuador C.A." },
- { 37443, "Centina Systems" },
- { 37444, "Digital Products Limited" },
- { 37445, "Atlantic Intertrade Ltd." },
- { 37446, "Andrey Klyachkin" },
- { 37447, "Nimble Storage" },
- { 37448, "ENBLINK" },
- { 37449, "Opzoon Technology Co., Ltd." },
- { 37450, "Sodrugestvo Group of Companies" },
- { 37451, "Effdon Networks Ltd." },
- { 37452, "Delta Sistemi Srl" },
- { 37453, "B-Obvious" },
- { 37454, "Newsweb" },
- { 37455, "Abertis Autopistas Espa\0303\0261a" },
- { 37456, "The New School" },
- { 37457, "Medas S.R.L." },
- { 37458, "QualCare, Inc" },
- { 37459, "Yealink" },
- { 37460, "Nova banka AD" },
- { 37461, "Peakwork GmbH" },
- { 37462, "COGISTICS, INC." },
- { 37463, "Leitwelt GmbH" },
- { 37464, "Intelligrated, Inc" },
- { 37465, "DataDesign" },
- { 37466, "Digitactics, Inc." },
- { 37467, "Arpeggio Software Inc" },
- { 37468, "Educational Service Unit Coordinating Counsel" },
- { 37469, "Shenzhen Communication Technology Co.Ltd" },
- { 37470, "Power Internet Ltd" },
- { 37471, "QEES Aps." },
- { 37472, "Cuculus GmbH" },
- { 37473, "Used Car Dealers Association of Ontario" },
- { 37474, "sedkol" },
- { 37475, "OT Systems Limited" },
- { 37476, "ViaThinkSoft" },
- { 37477, "SIGNALIS" },
- { 37478, "The Karthikeyans" },
- { 37479, "Warimax Ltd." },
- { 37480, "SkySQL Ab" },
- { 37481, "Canyons School District" },
- { 37482, "Stewart McKelvey" },
- { 37483, "A.5 Security Consulting Group, SL" },
- { 37484, "PT. Teknologi Multimedia Indonesia" },
- { 37485, "Alico Graphic Web Designs" },
- { 37486, "OOO Verified Solutions" },
- { 37487, "Nicolas Ledez" },
- { 37488, "Ridgetop Group, Inc." },
- { 37489, "Scality" },
- { 37490, "ENCO Systems, Inc." },
- { 37491, "FTM Systems Kft." },
- { 37492, "Mindstorm Networks" },
- { 37493, "Cyberlink AG" },
- { 37494, "Vincent de Lau" },
- { 37495, "MARS Advanced Research Systems" },
- { 37496, "ZHEJIANG DAHUA TECHNOLOGY CO.,LTD" },
- { 37497, "Delphi Innovations" },
- { 37498, "NasuTek Enterprises" },
- { 37499, "NetSoft Distributed Solutions Pty Ltd" },
- { 37500, "Schmid Industrieholding" },
- { 37501, "Progetto Archivio S.r.l." },
- { 37502, "kyberna AG" },
- { 37503, "Seratel Technology SAL" },
- { 37504, "ONETASTIC S.r.l." },
- { 37505, "WSO2 Inc." },
- { 37506, "Biodec s.r.l." },
- { 37507, "Freenet Liberec, o.s." },
- { 37508, "AQUAPHOR" },
- { 37509, "DirectorySelfService" },
- { 37510, "SilentSystem" },
- { 37511, "Future Dynamics Interstellar" },
- { 37512, "Systems Corps" },
- { 37513, "Citkomm" },
- { 37514, "Raphael Frasch GmbH" },
- { 37515, "Avajadi Solutions" },
- { 37516, "Software Integration Development" },
- { 37517, "Sveriges Radio AB" },
- { 37518, "Firewall Services" },
- { 37519, "Draexlmaier Group" },
- { 37520, "Kassenaerztliche Vereinigung Baden-Wuerttemberg" },
- { 37521, "Network Pipeline Inc." },
- { 37522, "Kousec Software, Inc." },
- { 37523, "Alyrica Networks Inc" },
- { 37524, "Com1 Communication Solutions B.V." },
- { 37525, "Infovide-Matrix" },
- { 37526, "WellCentive, LLC" },
- { 37527, "Signalsky Communication Co., Ltd." },
- { 37528, "Crompton Greaves Limited" },
- { 37529, "A and A System Co., Ltd." },
- { 37530, "WebRadar" },
- { 37531, "Frank Moeller" },
- { 37532, "BBT Technology Corp." },
- { 37533, "Delta Electronics (Thailand) Public Co.,Ltd" },
- { 37534, "uher.info" },
- { 37535, "microDATA GIS, Inc." },
- { 37536, "NRG2 B.V." },
- { 37537, "JADE" },
- { 37538, "Big Switch Networks" },
- { 37539, "Code One GmbH" },
- { 37540, "N3 Labs Sdn. Bhd." },
- { 37541, "COMPUTER HI-TECH INC." },
- { 37542, "Depelmaan Ltd" },
- { 37543, "Crowe Horwath LLP" },
- { 37544, "UM Labs Ltd" },
- { 37545, "GFI Solutions Group inc." },
- { 37546, "BNP Paribas Fortis group" },
- { 37547, "Europapier International GmbH" },
- { 37548, "CenturyLink" },
- { 37549, "C&T sas" },
- { 37550, "Flexenclosure AB" },
- { 37551, "IFM Infomaster SpA" },
- { 37552, "RAYCORE TAIWAN CO., LTD." },
- { 37553, "FRDLWEB" },
- { 37554, "Archbold Medical Center" },
- { 37555, "Enabling Technologies Company, Inc." },
- { 37556, "Brandwatch" },
- { 37557, "Pathology Associates Medical Laboratories, LLC" },
- { 37558, "VM-DG Hemmert & Schuster GbR" },
- { 37559, "Socialcast" },
- { 37560, "Netscout Systems, Inc. (formerly 'Simena, LLC')" },
- { 37561, "Beijing KEMACOM technologies Co., Ltd." },
- { 37562, "Hangzhou Yuwan Technology Co., Ltd. " },
- { 37563, "NNS - Nigl Network Solutions" },
- { 37564, "Everest Display Inc." },
- { 37565, "Struck Innovative Systeme GmbH" },
- { 37566, "Discovery Reply S.r.l." },
- { 37567, "Orbital ATK, Inc (formerly 'Alliant Techsystems Inc.')" },
- { 37568, "Commend International GmbH" },
- { 37569, "Vocative Ltd." },
- { 37570, "ELFF Tech" },
- { 37571, "KVUC" },
- { 37572, "Panini s.p.a." },
- { 37573, "LightSoft Research Ltd." },
- { 37574, "Alberta Distance Learning Centre" },
- { 37575, "Infobip LTD" },
- { 37576, "NovelSat" },
- { 37577, "Branch of LLC \"Tabak-Invest\" Trade Center \"Korona\"" },
- { 37578, "Samworth Brothers Ltd" },
- { 37579, "Synetrix Holdings Limited" },
- { 37580, "Chao-Inn elementary school" },
- { 37581, "Mika timing GmbH" },
- { 37582, "Theobroma Systems Design und Consulting GmbH" },
- { 37583, "Surescripts, LLC" },
- { 37584, "Gary Hawkins" },
- { 37585, "QDIAGNOSTICA" },
- { 37586, "E-sektionens Teletekniska Avdelning" },
- { 37587, "QualVu, Inc." },
- { 37588, "QingDao Easytelecom Co., Ltd." },
- { 37589, "Institut de l'Ebre" },
- { 37590, "Meyer Burger Technology AG" },
- { 37591, "Reggiani" },
- { 37592, "Ev.-Luth. Br\0303\0274dergemeinde Enger e.V." },
- { 37593, "Platform-a Arastirma Gelistirme Koordinasyon Hizmetleri A. S." },
- { 37594, "Netmining LLC" },
- { 37595, "Geomarine Ltd" },
- { 37596, "Agri-hitech LLC" },
- { 37597, "Decatur Hospital Authority dba Wise Regional Health System" },
- { 37598, "CipherCloud, Inc." },
- { 37599, "Meontrust Inc." },
- { 37600, "ledeuns.org" },
- { 37601, "Xech S.r.l." },
- { 37602, "Spider Software GmbH" },
- { 37603, "Meami.org" },
- { 37604, "RMG Tech (Malaysia) Sdn Bhd" },
- { 37605, "MCX Telecom 2 Sp. z o.o." },
- { 37606, "\"SM Finance\",JSC" },
- { 37607, "Cascada Software & Consulting" },
- { 37608, "CareEvolution, Inc" },
- { 37609, "Dang Networks Inc." },
- { 37610, "The TuxClan" },
- { 37611, "CJSC TSI Service" },
- { 37612, "Kassen\0303\0244rztliche Vereinigung Niedersachsen " },
- { 37613, "ennovatis GmbH" },
- { 37614, "Siqura" },
- { 37615, "V Labs Informatica Ltda" },
- { 37616, "SATS Holding AB" },
- { 37617, "Ventek Sistemas e Automa\0303\0247\0303\0243o" },
- { 37618, "Tumblr" },
- { 37619, "SCHIEx" },
- { 37620, "Alegent Health" },
- { 37621, "Ename, S.A." },
- { 37622, "Chrysalis Utah, Inc." },
- { 37623, "Red Hound Software, Inc." },
- { 37624, "M & PI Software S.r.l." },
- { 37625, "Mike Johnson" },
- { 37626, "STC AKTOR" },
- { 37627, "ensemble" },
- { 37628, "NETRATOR Andrzej Dopierala" },
- { 37629, "COMTEC NET" },
- { 37630, "Iron Technology Solutions Ltd" },
- { 37631, "Plasmatronics Pty Ltd" },
- { 37632, "The Frontier Group" },
- { 37633, "Bolnisnica Golnik KOPA" },
- { 37634, "Achieve3000, Inc." },
- { 37635, "Awarepoint" },
- { 37636, "Catholic Health" },
- { 37637, "Henry County Hospital" },
- { 37638, "Infinitrum Co., Ltd" },
- { 37639, "ECYS S.A." },
- { 37640, "Federal Cardiovascular surgery center" },
- { 37641, "Neebula Systems" },
- { 37642, "GK \"SoftExpert\"" },
- { 37643, "IBM BTO Business Consulting Services Sp. z o.o." },
- { 37644, "Fuzhou Ucore Information Technologies Co,.Ltd" },
- { 37645, "Medical Data Express" },
- { 37646, "Wyoming Valley Health Care System" },
- { 37647, "Ministry of Interior - UAE (Governmental Entity)" },
- { 37648, "Kalmia Technology Co, LLC" },
- { 37649, "Helium Inc." },
- { 37650, "Shared Technology Services Group, Inc." },
- { 37651, "JoyStem Web Services Private Limited" },
- { 37652, "I-TECH" },
- { 37653, "Lamby" },
- { 37654, "Moccu GmbH" },
- { 37655, "Far South Networks" },
- { 37656, "Broxtowe Borough Council" },
- { 37657, "Erskine Design" },
- { 37658, "Czech National Bank" },
- { 37659, "ControlCircle Ltd." },
- { 37660, "Unit of Research of Technologies of Information and Communication (UTIC)" },
- { 37661, "Transcon Electronic Systems spol. s r. o." },
- { 37662, "Ablerex Electronic Co., Ltd." },
- { 37663, "nGen - Niagara Interactive Media Generator" },
- { 37664, "Zone de Police Midi" },
- { 37665, "R. W. Beckett Corporation" },
- { 37666, "Airebullas C.B." },
- { 37667, "Office of the Auditor General of Norway" },
- { 37668, "bit GmbH" },
- { 37669, "FONDEMI" },
- { 37670, "Barling Bay LLC" },
- { 37671, "The Biostatistics Center - GWU" },
- { 37672, "VERSCOM INTERNATIONAL HOLDING UK LLP" },
- { 37673, "Estech Systems, Inc." },
- { 37674, "Heineken International" },
- { 37675, "LoveBee" },
- { 37676, "Sutunam Co., Ltd." },
- { 37677, "Linuxsoft s.r.o." },
- { 37678, "Hall Research" },
- { 37679, "AGILiCOM" },
- { 37680, "Scott Ellis" },
- { 37681, "Sinefa Pty Ltd" },
- { 37682, "AlexxHost" },
- { 37683, "TimoCom Soft- und Hardware GmbH" },
- { 37684, "Grupo Alsa" },
- { 37685, "Online Marketing Solutions AG" },
- { 37686, "Lookout Mobile Security, Inc." },
- { 37687, "Bethesda Memorial Hospital" },
- { 37688, "ACE Computer bv" },
- { 37689, "unixtastic" },
- { 37690, "JOTATEC" },
- { 37691, "Broadcast Devices Inc." },
- { 37692, "StringIT" },
- { 37693, "Brattleboro Memorial Hospital" },
- { 37694, "Tsubakimoto Chain Co." },
- { 37695, "Quantum Data Systems (HK) Ltd" },
- { 37696, "WIKA Polska S.A." },
- { 37697, "Higher One" },
- { 37698, "Customs and Border Protection" },
- { 37699, "Implaneo Dental Clinic (formerly 'BolzWachtel Dental Clinic')" },
- { 37700, "Axed S.p.A." },
- { 37701, "energie-m.de" },
- { 37702, "Narodowy Fundusz Zdrowia - Centrala" },
- { 37703, "Mywindowslab.com" },
- { 37704, "Interconcept GmbH" },
- { 37705, "CommSoft RMS LLC" },
- { 37706, "Netmedia Systems e. K." },
- { 37707, "Rocrail" },
- { 37708, "Systola Forwarding GmbH" },
- { 37709, "S3 Satcom Ltd" },
- { 37710, "Dane E. Jones" },
- { 37711, "FileMaker Inc" },
- { 37712, "Eurosistemi" },
- { 37713, "Winextreme.org" },
- { 37714, "AppFolio, Inc." },
- { 37715, "FTN" },
- { 37716, "Ville de Lausanne" },
- { 37717, "Herbert Smith LLP" },
- { 37718, "Fresenius Vial" },
- { 37719, "PT. Multi Structure" },
- { 37720, "CSR ZHUZHOU INSTITUTE CO LTD" },
- { 37721, "OpenSys (M) Berhad" },
- { 37722, "Trusted Information Consulting Sp. z o.o." },
- { 37723, "ODIN technologies" },
- { 37724, "Chalet Technologies Inc." },
- { 37725, "Yupiq Corp" },
- { 37726, "Bertol, Alexander" },
- { 37727, "General Digital Corporation" },
- { 37728, "ADV Consulting" },
- { 37729, "ATS Group GmbH" },
- { 37730, "p-rimes.net" },
- { 37731, "MB S.p.A." },
- { 37732, "Ymif Engineering b.v." },
- { 37733, "Civil Registry Agency of Ministry of Justice of Georgia" },
- { 37734, "ASSA ABLOY AB" },
- { 37735, "St. Mary's Medical Center" },
- { 37736, "PinnacleHealth System" },
- { 37737, "GUANGDONG DONYAN NETWORK TECHNOLOGIES CO.,LTD." },
- { 37738, "Apadmi Ltd" },
- { 37739, "Braintree Payment Solutions, LLC" },
- { 37740, "Johannes Roith" },
- { 37741, "First Step Internet, LLC" },
- { 37742, "Iprio Corporation" },
- { 37743, "Robert Frank" },
- { 37744, "Centrify Corporation" },
- { 37745, "spampig.org.uk" },
- { 37746, "Security Data S.A." },
- { 37747, "Mercy Health Partners" },
- { 37748, "GIAVANEERS" },
- { 37749, "Wire e Wireless World, SA" },
- { 37750, "Quester Tangent" },
- { 37751, "E.I. du Pont de Nemours and Company" },
- { 37752, "NETS DENMARK A/S" },
- { 37753, "Robin Partington Architects" },
- { 37754, "Nextragen GmbH" },
- { 37755, "Radio Activity srl" },
- { 37756, "The Ministry of Interior of the Republic of Croatia" },
- { 37757, "Newton Graphics, Inc." },
- { 37758, "Actidata Company" },
- { 37759, "WXXR Network Technology Ltd. BEIJING" },
- { 37760, "Powertech Automation Solutions Pvt. Ltd" },
- { 37761, "Altitude Software" },
- { 37762, "Neotion R&D" },
- { 37763, "Bitxenio, S.L." },
- { 37764, "Portel Servicios Telem\0303\0241ticos" },
- { 37765, "LHERITIER" },
- { 37766, "Beijing Banggoo Networks Co,Ltd." },
- { 37767, "Gartner Inc." },
- { 37768, "Bundesministerium f\0303\0274r Arbeit und Soziales" },
- { 37769, "Koramis GmbH" },
- { 37770, "IDmachines LLC" },
- { 37771, "Linkwise Technology Private Limited" },
- { 37772, "AERODEV" },
- { 37773, "OAO NESK Novorossiyskenergosbit" },
- { 37774, "51.6 Noord B.V." },
- { 37775, "BaoBros Studio" },
- { 37776, "Co. Ltd. \"RCS Labs\"" },
- { 37777, "Cabinet Pierre Guerin" },
- { 37778, "Northern Design (Electronics) Ltd" },
- { 37779, "Nuvolas" },
- { 37780, "MicroRIGHT Corporation" },
- { 37781, "eZuce Inc" },
- { 37782, "KindleIT" },
- { 37783, "Wolf Pond Creative LLC" },
- { 37784, "IDC Solutions Pty Ltd" },
- { 37785, "Ingenieurbuero Jan F Westerkamp (IBW)" },
- { 37786, "Galtronics Telemetry, Inc." },
- { 37787, "Emirates Identity Authority" },
- { 37788, "Syslife" },
- { 37789, "Novapost SAS" },
- { 37790, "Gould International UK Ltd" },
- { 37791, "PortaOne, Inc." },
- { 37792, "Enfuse Inc" },
- { 37793, "Squirrel Solutions Ltd" },
- { 37794, "DVR Support Center" },
- { 37795, "Centre Hospitalier du Nord" },
- { 37796, "PTS Group AG" },
- { 37797, "Graylog2" },
- { 37798, "Pcmedic" },
- { 37799, "Coloriuris A.I.E." },
- { 37800, "Aster Data Systems, Inc" },
- { 37801, "Innovactive Engineering s.r.l." },
- { 37802, "Sypris Solutions, Inc" },
- { 37803, "California State University San Marcos" },
- { 37804, "Spirit Software Solutions" },
- { 37805, "Team Simoco Ltd." },
- { 37806, "North Power Coporation (EVN NPC)" },
- { 37807, "Instituto Tecnol\0303\0263gico de Canarias" },
- { 37808, "FIBCOM INDIA LIMITED" },
- { 37809, "Wnet Wisp S.r.l" },
- { 37810, "PCE SYSTEMS" },
- { 37811, "Glass Echidna" },
- { 37812, "Kotkamills Oy" },
- { 37813, "DSM Computer GmbH" },
- { 37814, "Infinidat LTD" },
- { 37815, "Friendly Runet Foundation" },
- { 37816, "skweez.net" },
- { 37817, "GMG Technologies" },
- { 37818, "LEGALBOX" },
- { 37819, "Technical Dabblings" },
- { 37820, "Telecore LTD." },
- { 37821, "untermStrich software gmbh" },
- { 37822, "Wolfplex Hackerspace ASBL" },
- { 37823, "Vimukti Technologies Private Limited" },
- { 37824, "ECOLE NATIONALE VETERINAIRE D'ALFORT" },
- { 37825, "Interregional Distribution Grid Company of Volga, JSC" },
- { 37826, "ISL Internet Sicherheitsloesungen GmbH" },
- { 37827, "WV Network for Educational Telecomputing (WVNet)" },
- { 37828, "LIL'SYSTEMS" },
- { 37829, "Puxlit" },
- { 37830, "InCampus Pte Ltd" },
- { 37831, "Techroutes Network" },
- { 37832, "Clifford Chance LLP" },
- { 37833, "Southern New Hampshire Medical Center" },
- { 37834, "No23" },
- { 37835, "Jerome Baum" },
- { 37836, "CCM Benchmark Group" },
- { 37837, "mikroVOX s.r.o." },
- { 37838, "Futurad S.r.l." },
- { 37839, "OneSystem S.A." },
- { 37840, "Veda Advantage" },
- { 37841, "Flughafen Z\0303\0274rich AG" },
- { 37842, "Aicox Soluciones S.A." },
- { 37843, "Adecco Group" },
- { 37844, "Eastern Upper Peninsula ISD" },
- { 37845, "VINCI S.A." },
- { 37846, "MEDIAPRINT Zeitungs und Zeitschriften Verlags GesmbH" },
- { 37847, "Business Information Intelligence Services" },
- { 37848, "ORSENNA" },
- { 37849, "Aris System" },
- { 37850, "Slavic Gospel Association" },
- { 37851, "YTY Enterprises" },
- { 37852, "ECCOS inzenjering" },
- { 37853, "OASIS Systems Pty Ltd" },
- { 37854, "Crozer-Keystone Health System" },
- { 37855, "The Reading Hospital and Medical Center" },
- { 37856, "Essential Enterprise Solutions Inc." },
- { 37857, "Veolia Environmental Services - North America" },
- { 37858, "Synegen" },
- { 37859, "Synerline sprl" },
- { 37860, "Source Trading Co., Ltd." },
- { 37861, "Austco Communication Systems" },
- { 37862, "Suntel S.A." },
- { 37863, "ETMC Regional Healthcare System" },
- { 37864, "Cape Cod Healthcare" },
- { 37865, "City and County of San Francisco, Department of Technology" },
- { 37866, "Bank of New Zealand" },
- { 37867, "APG" },
- { 37868, "VirtualSharp Software" },
- { 37869, "BruteCO Certificate Authority" },
- { 37870, "Sensometrix SA" },
- { 37871, "Digital Vision, s.r.o." },
- { 37872, "Neko Consulting Ltd." },
- { 37873, "J4care GmbH" },
- { 37874, "CebaTech Inc." },
- { 37875, "oogle Networks LLC" },
- { 37876, "Delta Management AB" },
- { 37877, "TITNC Alexander Seifarth" },
- { 37878, "WineSkills" },
- { 37879, "NetOrg LTD" },
- { 37880, "Qowisio" },
- { 37881, "ESCA" },
- { 37882, "RedeCamp Ind. Com. e Servi\0303\0247os de Telecomunica\0303\0247\0303\0265es S.A." },
- { 37883, "Vitaly Pashkov" },
- { 37884, "Perfect Home AS" },
- { 37885, "Renewable Funding, LLC" },
- { 37886, "Coraid Inc." },
- { 37887, "OraPharma, Inc." },
- { 37888, "PROGIRIS" },
- { 37889, "Accord Medical Management, LP DBA Nix Health Care System" },
- { 37890, "Quality Fiber and RF Inc" },
- { 37891, "Big Ant Studios Pty Ltd" },
- { 37892, "GCT Semiconductor, Inc." },
- { 37893, "BeyondTrust Software, Inc" },
- { 37894, "aylite" },
- { 37895, "LucidView" },
- { 37896, "IFD Kapital" },
- { 37897, "Maxwell Management Inc. (MMI)" },
- { 37898, "\0303\0211ric Larivi\0303\0250re" },
- { 37899, "Hahn Family" },
- { 37900, "International Information Programs IR, Deptartment of State" },
- { 37901, "Aeon Experienced Development" },
- { 37902, "Polynet Ltd." },
- { 37903, "CURUPIRA S/A" },
- { 37904, "UnixServices" },
- { 37905, "Beijing Jiaxun Feihong Electrical Co.,Ltd" },
- { 37906, "Beijing WingMax Technology Co.,Ltd" },
- { 37907, "Fusion Comm Solution Sdn Bhd" },
- { 37908, "A puissance 3" },
- { 37909, "Arantia 2010 S.L.U." },
- { 37910, "Modesat Communications" },
- { 37911, "CDP Communications Inc." },
- { 37912, "Locomotive Software & Consulting" },
- { 37913, "ZAO PTKB \"MERCURIY\"" },
- { 37914, "TECNOTEL s.r.l." },
- { 37915, "Shenzhen Zyeeda Information Technology Co. Ltd." },
- { 37916, "Volvo Car Corporation AB" },
- { 37917, "MarkitServ" },
- { 37918, "SAGE Dining Services" },
- { 37919, "NETMOON" },
- { 37920, "DEXUS Holdings Pty Limited" },
- { 37921, "Southwest Institute of Healing Arts" },
- { 37922, "TeleMedia Systems, Inc." },
- { 37923, "Freysteinn Alfredsson" },
- { 37924, "NokianTyres LLC " },
- { 37925, "mysql-cluster-snmp-monitor" },
- { 37926, "Pranveer Singh Institute of Technology" },
- { 37927, "RTLGroup" },
- { 37928, "Sheffield Teaching Hospitals NHS Foundation Trust" },
- { 37929, "PIPS Technology Ltd" },
- { 37930, "Virus Stopper Foundation Registered NGO No 348 -2010" },
- { 37931, "Bob Greene" },
- { 37932, "Jack Storm" },
- { 37933, "Westchester Medical Center" },
- { 37934, "Confident Technologies, Inc." },
- { 37935, "Danmarks Designskole" },
- { 37936, "Calendar42" },
- { 37937, "Schaffhausen Communication GmbH" },
- { 37938, "Lake Hospital System, Inc." },
- { 37939, "Reykjavik University" },
- { 37940, "WRD Technology Co., Ltd." },
- { 37941, "comForte 21 GmbH" },
- { 37942, "Futuver S.A. de C.V." },
- { 37943, "Medium Link System Technology CO., LTD" },
- { 37944, "megalo & company" },
- { 37945, "Inspur(BeiJing) Electronic Information Industry Co.,Ltd" },
- { 37946, "CJSC \"Dzetta\"" },
- { 37947, "Banco Central del Ecuador" },
- { 37948, "TOS.BG" },
- { 37949, "TenneT TSO" },
- { 37950, "v-solution" },
- { 37951, "DataONE" },
- { 37952, "MoCA by Design" },
- { 37953, "ControlNet International Inc." },
- { 37954, "Kentix GmbH" },
- { 37955, "Nierhaus" },
- { 37956, "EMH Healthcare" },
- { 37957, "Texas Regional Medical Center" },
- { 37958, "http://www.sentinel-engine.org" },
- { 37959, "paratio.com e.K." },
- { 37960, "MINIADMIN" },
- { 37961, "COCUS AG" },
- { 37962, "Mindbender Technologies" },
- { 37963, "Affirmed Networks, Inc." },
- { 37964, "CTI Digital" },
- { 37965, "Altoona Regional Health System" },
- { 37966, "Perth Linux Users Group" },
- { 37967, "Webra JSC" },
- { 37968, "Elma Electronic GmbH" },
- { 37969, "OKSEI" },
- { 37970, "Global Digital Inc." },
- { 37971, "EKILIA" },
- { 37972, "Dyalog Ltd" },
- { 37973, "Mountain View Systems, LLC." },
- { 37974, "Winthrop University Hospital" },
- { 37975, "imessage.de" },
- { 37976, "MetaFORM Bilisim Iletisim ve Danismanlik Ltd Sti" },
- { 37977, "XTO Energy, Inc" },
- { 37978, "TEB" },
- { 37979, "Panaram Ltd" },
- { 37980, "Bayer Business Services GmbH" },
- { 37981, "Solution Concept s.r.o." },
- { 37982, "Netstream AG" },
- { 37983, "Nux Ltd." },
- { 37984, "GsurfNET" },
- { 37985, "CCDI" },
- { 37986, "mCarbon Tech innovation pvt. ltd." },
- { 37987, "The Hong Kong Country Club" },
- { 37988, "Jack in the Box" },
- { 37989, "FASTEK ITALIA S.R.L." },
- { 37990, "Intellique" },
- { 37991, "Letechnic Ltd" },
- { 37992, "SYSM Systemmanagement Service & Konzepte GmbH" },
- { 37993, "Hokkaido Telecommunication Network Co., Inc." },
- { 37994, "i-free" },
- { 37995, "Initiative f\0303\0274r Netzfreiheit" },
- { 37996, "KTS GmbH" },
- { 37997, "4G Technology" },
- { 37998, "Greenwood Leflore Hospital" },
- { 37999, "TransPacket AS" },
- { 38000, "DELEC Audio- und Videotechnik GmbH " },
- { 38001, "DIgitata LTD" },
- { 38002, "Innovise IES (formerly 'Innovise ESM Software Ltd.')" },
- { 38003, "StorMagic Ltd" },
- { 38004, "Edenred SA" },
- { 38005, "REFLEXE Technologies" },
- { 38006, "Dietrich IT-Services" },
- { 38007, "Handy Networks" },
- { 38008, "ELECOM S.A.S" },
- { 38009, "FonSee Technology Inc." },
- { 38010, "CE Labs" },
- { 38011, "NTTM (Name to Telephone Mapping) Limited" },
- { 38012, "USL, Inc." },
- { 38013, "Ampex Data Systems" },
- { 38014, "NORICS GmbH" },
- { 38015, "DUHA system s.r.o." },
- { 38016, "Exicom Tele-Systems Limited" },
- { 38017, "SC EXIMTUR SRL" },
- { 38018, "guideye.de" },
- { 38019, "Special Systems Engineering Center LLC" },
- { 38020, "Franklin County Public Schools" },
- { 38021, "Cfengine AS" },
- { 38022, "HappyBooking UG (haftungsbeschr\0303\0244nkt)" },
- { 38023, "ultrachaos" },
- { 38024, "Logic Soft sas " },
- { 38025, "MindArray Systems (P) Ltd" },
- { 38026, "ACOME" },
- { 38027, "Ltd \"InfoTechnoService\"" },
- { 38028, "DANTECH Limited" },
- { 38029, "University of South Florida" },
- { 38030, "Conngame Co.Ltd." },
- { 38031, "NextGate" },
- { 38032, "EFOLIA" },
- { 38033, "TeamF1" },
- { 38034, "IHSE GmbH" },
- { 38035, "GS1 Sweden AB" },
- { 38036, "ChronoPay B.V." },
- { 38037, "St\0303\0245le Heb\0303\0246k \0303\0230deg\0303\0245rden" },
- { 38038, "Informacijsko svetovanje, Miha Valen\0304\0215i\0304\0215, s.p." },
- { 38039, "Klika d.o.o." },
- { 38040, "Reliable System Services Corporation" },
- { 38041, "Via Christi Health" },
- { 38042, "Unassigned" },
- { 38043, "Hear And See Systems O\0303\0234" },
- { 38044, "wu-way, inc." },
- { 38045, "Shenzhen Winhap Commucations Inc." },
- { 38046, "Joint Stock Company UniCredit Bank" },
- { 38047, "JSC STC Electron-Service" },
- { 38048, "Institut des Sciences de l'Homme" },
- { 38049, "Zaehlwerk GbR" },
- { 38050, "Lightbar Software Solutions LLC" },
- { 38051, "Boy Scouts of America" },
- { 38052, "Attackplan Software" },
- { 38053, "Avisit Solutions Limited" },
- { 38054, "Arellia Corporation" },
- { 38055, "Gforce Inc." },
- { 38056, "Nason Hospital" },
- { 38057, "D&B Germany GmbH" },
- { 38058, "Cyanide Studio" },
- { 38059, "Banking production center" },
- { 38060, "Sempla Srl" },
- { 38061, "Edistar Srl" },
- { 38062, "Marathon Oil Corporation" },
- { 38063, "Suomen Asiakastieto Oy" },
- { 38064, "SSL Corp" },
- { 38065, "Media Alliance, CJSC" },
- { 38066, "SC Romastru Trading SRL" },
- { 38067, "APPRO International, Inc." },
- { 38068, "Centrastate Medical Center, Inc." },
- { 38069, "Cetis, Inc." },
- { 38070, "Anode" },
- { 38071, "MaximaTelecom JSC" },
- { 38072, "Linear Photonics, LLC" },
- { 38073, "Defense Photonics Group" },
- { 38074, "Statropy Software LLC" },
- { 38075, "Sentaca Communications" },
- { 38076, "Radical Creations" },
- { 38077, "JetPay, LLC" },
- { 38078, "Nanjing Yxlink Information Technologies Co.,Ltd" },
- { 38079, "DEAC Medics S de RL de CV" },
- { 38080, "Pick n Pay" },
- { 38081, "Rank Group" },
- { 38082, "HD Vietnam Co." },
- { 38083, "SLG Broadcast AG" },
- { 38084, "Connecture, Inc." },
- { 38085, "Solo Cup Company" },
- { 38086, "Kordia" },
- { 38087, "Real I.T. Technicians, LLC" },
- { 38088, "Joshua Tree Software, LLC" },
- { 38089, "Prometheus Research" },
- { 38090, "GreenMojito.org" },
- { 38091, "SolidFire, Inc." },
- { 38092, "EtherDVB Pty Ltd" },
- { 38093, "wopoco.de" },
- { 38094, "Thales Optronics" },
- { 38095, "Cooperativa de Ensino Superior Politecnico e Universitario" },
- { 38096, "CyclopusCAD s.r.l." },
- { 38097, "Universidade Estadual de Goi\0303\0241s" },
- { 38098, "Rostov region office of Federal service of state registration cadaster and cartography" },
- { 38099, "Transglobal Secure Collaboration Participation Inc. (TSCP)" },
- { 38100, "CAMI Research Inc." },
- { 38101, "Roalter International" },
- { 38102, "Szechenyi Istvan University" },
- { 38103, "Dataport A\0303\0266R" },
- { 38104, "ProFIX Co." },
- { 38105, "Kit Digital" },
- { 38106, "Nebraska Furniture Mart, Inc." },
- { 38107, "Aviosys Inc." },
- { 38108, "MicroXel Networks, Inc." },
- { 38109, "Domtar" },
- { 38110, "Arkivum Ltd" },
- { 38111, "SHENZHEN DINSTAR TECHNOLOGIES Co.,Ltd." },
- { 38112, "Wuxi ZhongXun Technology Co.,ltd." },
- { 38113, "Red Lion Controls Inc." },
- { 38114, "Merseytravel" },
- { 38115, "Marist College" },
- { 38116, "ClearBUS" },
- { 38117, "University College Dublin" },
- { 38118, "BEI Electronics LLC" },
- { 38119, "Open Mobile Video Coalition" },
- { 38120, "UMass Memorial Medical Center" },
- { 38121, "IOD Incorporated.com" },
- { 38122, "Red Wire Services, LLC" },
- { 38123, "kinkajougames" },
- { 38124, "Harmonic France (formerly 'Thomson Video Networks')" },
- { 38125, "EuroDNS SA" },
- { 38126, "COGITOP SAS" },
- { 38127, "IES Doctor Balmis" },
- { 38128, "Laurentian University" },
- { 38129, "Akumen LTD" },
- { 38130, "Faith Regional Health Services" },
- { 38131, "RG Nets" },
- { 38132, "eTruhla s.r.o." },
- { 38133, "Ingnitia http://www.ingnitia.com" },
- { 38134, "National Document Custodians, LLC" },
- { 38135, "Shield Bridge Inc." },
- { 38136, "In Touch Pharmaceuticals, Inc" },
- { 38137, "Fusionskye" },
- { 38138, "Hochschule Regensburg" },
- { 38139, "pro parity IT-Service" },
- { 38140, "Imtech Marine" },
- { 38141, "Emich KsE - Kundenspezifische Elektronik" },
- { 38142, "BHE Bonn Hungary Electronics Ltd." },
- { 38143, "CloudBees, Inc." },
- { 38144, "Displaydata Ltd (formerly 'ZBD Displays Limited')" },
- { 38145, "ECG, Inc." },
- { 38146, "Access Now" },
- { 38147, "Mind Matters LLC" },
- { 38148, "EMCALI E.I.C.E. E.S.P." },
- { 38149, "Teknokala Ky" },
- { 38150, "Altia Consultores S.A." },
- { 38151, "Invendis Technologies" },
- { 38152, "Bauerfeind AG" },
- { 38153, "Dada S.p.A." },
- { 38154, "Autopart International, Inc." },
- { 38155, "EXATEQ Ltd." },
- { 38156, "Zepheira LLC" },
- { 38157, "Polic\0303\0254a Nacional de Colomb\0303\0254a" },
- { 38158, "Open Platform Trust Services" },
- { 38159, "Unity Global Corporation" },
- { 38160, "Datto Inc." },
- { 38161, "W.W. Grainger, Inc." },
- { 38162, "BNTPRO BILGI ve ILETISIM HIZ. LTD. STI." },
- { 38163, "Kiesel GmbH" },
- { 38164, "Ticket Monster Inc" },
- { 38165, "Kohlpharma GmbH" },
- { 38166, "nexurium.fr" },
- { 38167, "Albrecht Jung GmbH & Co. KG" },
- { 38168, "The Taubman Company" },
- { 38169, "Life Image Inc" },
- { 38170, "LocalNet Corp." },
- { 38171, "fischerwerke GmbH & Co. KG" },
- { 38172, "CustosMobile" },
- { 38173, "Adminia Sistemas" },
- { 38174, "Hamilton Medical Center" },
- { 38175, "Dali Wireless, Inc." },
- { 38176, "Marken Mehrwert AG" },
- { 38177, "iCue" },
- { 38178, "Skytide, Inc" },
- { 38179, "Bard College" },
- { 38180, "Kangaroo Media Inc." },
- { 38181, "Trinity Health" },
- { 38182, "CUBE. Corporate Release SA" },
- { 38183, "Pythagore FD" },
- { 38184, "Heidelberg Mobil International GmbH" },
- { 38185, "Detailresult Groep" },
- { 38186, "Xpandia Ltd." },
- { 38187, "Weidm\0303\0274ller Interface GmbH & Co. KG" },
- { 38188, "StormMQ Limited" },
- { 38189, "Telemedia LTD" },
- { 38190, "Magna" },
- { 38191, "Memjet, Inc." },
- { 38192, "Gravity R&D Limited" },
- { 38193, "Yuduan Mobile Co., Ltd." },
- { 38194, "Naga Concept" },
- { 38195, "Gameservers.com" },
- { 38196, "Flagship Facility Services" },
- { 38197, "Lacuna Systems, Inc." },
- { 38198, "Rincon Research Corporation" },
- { 38199, "Fraser Talbot Consulting Services; L.L.C" },
- { 38200, "Lib\0303\0251o" },
- { 38201, "Ronald Hummelink" },
- { 38202, "NETILITY GmbH & Co. KG" },
- { 38203, "Interactive Systems & Business Consulting" },
- { 38204, "Six DEE Telecom Solutions Pvt. Ltd." },
- { 38205, "University Teleinformatic Center - UTIC, University of Sarajevo" },
- { 38206, "Eloquera" },
- { 38207, "Fujian JinQianMao Electronic Technology Co.,Ltd." },
- { 38208, "meaganharris.net" },
- { 38209, "VMC Systems Ltd." },
- { 38210, "Xovis AG" },
- { 38211, "JSC 'Siberian Coal Energy Company'" },
- { 38212, "Derichebourg" },
- { 38213, "ACCENT-ELECTRONIC" },
- { 38214, "Vlatacom" },
- { 38215, "Hochschule Hamm-Lippstadt - University of Applied Sciences" },
- { 38216, "Blumenthal S.R.L." },
- { 38217, "gigatec GmbH" },
- { 38218, "Designer Systems Ltd" },
- { 38219, "Therap Services, LLC" },
- { 38220, "Private Unitary Enterprise on Rendering Services \"Greenwall Systems\" (formerly 'IZAO Greenwall Systems')" },
- { 38221, "IP Gorshkov Yuri Valerevich" },
- { 38222, "Philips Electronics North America Corporation" },
- { 38223, "definition six, inc." },
- { 38224, "Caromont Health" },
- { 38225, "Encell Technology, Inc." },
- { 38226, "AriadNEXT" },
- { 38227, "Wellington and King, Inc." },
- { 38228, "PICA GmbH" },
- { 38229, "GIVC" },
- { 38230, "Kostroma State Technological University" },
- { 38231, "Lyc\0303\0251e Sainte Marie du Port" },
- { 38232, "Onondaga Community College" },
- { 38233, "ARCHE Systeme GmbH" },
- { 38234, "TESSCO Technologies Incorporated" },
- { 38235, "ENTERSECT Technologies (PTY) LTD" },
- { 38236, "Colsys s.r.o." },
- { 38237, "Elverson Rod and Gun Club" },
- { 38238, "karnal talat private limited" },
- { 38239, "OARC, Inc." },
- { 38240, "Butte-Glenn Community College District" },
- { 38241, "Hanlong Technology Co.,Ltd." },
- { 38242, "Shenzhen 33e9 E-Business Co., Ltd" },
- { 38243, "Thecus Thecnology Corp." },
- { 38244, "TOKYO RADAR CORPORATION" },
- { 38245, "MIBUC-NET" },
- { 38246, "FSC International Center GmbH" },
- { 38247, "Charleston Area Medical Center, Inc." },
- { 38248, "Nebraska Heart Hospital" },
- { 38249, "Niagara Health System" },
- { 38250, "Proventa AG" },
- { 38251, "Zmanda, Inc." },
- { 38252, "EOSSOnline Limited" },
- { 38253, "Athenta Technologies (P) Ltd., India" },
- { 38254, "Resolan" },
- { 38255, "Khalid Shukri IT-Beratung" },
- { 38256, "ItsOn, Inc." },
- { 38257, "nuinno" },
- { 38258, "WhipTail Technologies" },
- { 38259, "ADD-Technology SRL" },
- { 38260, "4SMS ApS" },
- { 38261, "Brightstone" },
- { 38262, "Boxcar Press, Inc" },
- { 38263, "Thomas Memorial Hospital" },
- { 38264, "Midwest Health Systems Data Center" },
- { 38265, "Intendencia de Canelones" },
- { 38266, "Chinese Bible Church of Greater Boston" },
- { 38267, "UTS Programmers' Society" },
- { 38268, "Threeline LLC" },
- { 38269, "rrbone" },
- { 38270, "inTaligent Digital Consultants" },
- { 38271, "inTaligent Digital Consultants" },
- { 38272, "Liberti" },
- { 38273, "AvePoint, Inc." },
- { 38274, "Safirion GmbH" },
- { 38275, "3-IK" },
- { 38276, "CipSoft GmbH" },
- { 38277, "r-tec IT Systeme GmbH" },
- { 38278, "Memorial Hospital of South Bend" },
- { 38279, "Pilot Corporation of America" },
- { 38280, "Millennium Information Technologies (Private) Limited" },
- { 38281, "1st Setup" },
- { 38282, "Italtelec S.p.A." },
- { 38283, "MobiWork LLC" },
- { 38284, "PacketAccess" },
- { 38285, "Live-PA Ltd" },
- { 38286, "pki24.com" },
- { 38287, "D-TACQ Solutions Ltd" },
- { 38288, "Swiss public broadcasting organisation (SRG SSR)" },
- { 38289, "LeetGeek Pty Ltd" },
- { 38290, "IntelliVoice Co,Ltd." },
- { 38291, "G Data Software AG" },
- { 38292, "Damall Technologies Sas" },
- { 38293, "Dynamic Technical Solutions Inc." },
- { 38294, "IOMachine LLC" },
- { 38295, "Pro Broadband Inc." },
- { 38296, "Multi Sinergi Infrastruktur, PT " },
- { 38297, "ComMedia, Lda" },
- { 38298, "DaGo Solutions" },
- { 38299, "Dillard's Inc" },
- { 38300, "GrubHub" },
- { 38301, "hosthis.org" },
- { 38302, "ITSUMO s.c." },
- { 38303, "Pask" },
- { 38304, "CrossImaging Inc." },
- { 38305, "LybreDyne Technologies" },
- { 38306, "MASIBUS AUTOMATION AND INSTRUMENTATION PVT LTD" },
- { 38307, "OIS-Net" },
- { 38308, "Joint Stock Company \0302\0253Banking & Financial Network\0302\0273" },
- { 38309, "Cirquent GmbH" },
- { 38310, "PREMIER Bankcard, LLC" },
- { 38311, "OPTIM'HEXA" },
- { 38312, "CareView Communications" },
- { 38313, "STG (Stargazer)" },
- { 38314, "adjectivism.org" },
- { 38315, "National Land Survey of Iceland" },
- { 38316, "SEKONIC CORPORATION" },
- { 38317, "JR East Mechatronics Co.Ltd." },
- { 38318, "Ing. Buero Fischer GmbH" },
- { 38319, "Lantiq Deutschland GmbH" },
- { 38320, "Bubblephone Ltd" },
- { 38321, "Greatnet.de OHG" },
- { 38322, "Strangeloop Networks" },
- { 38323, "Stuart McGraw" },
- { 38324, "emagsoftware" },
- { 38325, "Precogen, LLC" },
- { 38326, "nepda" },
- { 38327, "Vokzal-infokom" },
- { 38328, "LvlUp e.V." },
- { 38329, "Three Laws of Mobility" },
- { 38330, "Datametrix AS" },
- { 38331, "Skeed Co., Ltd." },
- { 38332, "LeonIT GbR" },
- { 38333, "Network Solution Technologies Co., Ltd." },
- { 38334, "ArchOne" },
- { 38335, "AVIN Networks Private Limited" },
- { 38336, "Platte Valley Medical Center" },
- { 38337, "Power Instruments Pte Ltd." },
- { 38338, "Suntel Ltd" },
- { 38339, "Centrum Informatyki Statystycznej" },
- { 38340, "Broadcast Partners" },
- { 38341, "AGETO Innovation GmbH" },
- { 38342, "City of Hope" },
- { 38343, "Wilcom Technologies" },
- { 38344, "Maxwell Worthington" },
- { 38345, "S&T Ukraine" },
- { 38346, "Pallas GmbH" },
- { 38347, "Ing. G\0303\0274nther Vlaschits" },
- { 38348, "ISDEFE Ingenieria de Sistemas para la Defensa de Espa\0303\0261a S.A." },
- { 38349, "Firstcom A/S" },
- { 38350, "XtreemFS project" },
- { 38351, "net-lab GmbH" },
- { 38352, "National Information Technology Center" },
- { 38353, "Weebly, Inc." },
- { 38354, "Princeton Consultants" },
- { 38355, "TTTech Computertechnik AG" },
- { 38356, "Mike Becker" },
- { 38357, "ActualMed" },
- { 38358, "Peak Reliability (formerly 'Western Electricity Coordinating Council')" },
- { 38359, "Meissner" },
- { 38360, "Delled Company Ltd" },
- { 38361, "Exabre Ltd" },
- { 38362, "alpha dot net Australia" },
- { 38363, "PT Primatama Sentra Solusi" },
- { 38364, "Netsis Technology" },
- { 38365, "BKW FMB Energie AG" },
- { 38366, "Joint-Stock Bank \"Master-Bank\"" },
- { 38367, "KIS Information Services GmbH" },
- { 38368, "Radimetrics Inc." },
- { 38369, "ZiXi, LLC" },
- { 38370, "jetNEXUS Limited" },
- { 38371, "PT. Cahaya Barumas Sejahtera" },
- { 38372, "PT INPAR SAKA" },
- { 38373, "Greenville Hospital System University Medical Center" },
- { 38374, "Cloudera" },
- { 38375, "Linus van Geuns" },
- { 38376, "The Chester County Hospital" },
- { 38377, "Tohojo ApS" },
- { 38378, "FeedHenry Ltd." },
- { 38379, "Inter Media Group" },
- { 38380, "AMG.net S.A." },
- { 38381, "Unetvale Servicos e Equipamentos Ltda. EPP" },
- { 38382, "znt Zentren f\0303\0274r Neue Technologien GmbH" },
- { 38383, "WorldCare Clinical LLC" },
- { 38384, "DBAPP Security" },
- { 38385, "Svyazcom Ltd." },
- { 38386, "Coop Denmark A/S" },
- { 38387, "Smart Design sprl" },
- { 38388, "HANGZHOU LAYBEL ELECTRONIC TECHNOLOGY CO,. LTD" },
- { 38389, "Verisec AB" },
- { 38390, "Railinc Corporation" },
- { 38391, "iro\0303\0257d" },
- { 38392, "University of Dayton" },
- { 38393, "SJX Soft" },
- { 38394, "Interfibra Telecomunicaciones, S.L. (formerly 'Teleyecla, S.L.')" },
- { 38395, "Phillips Foods, Inc." },
- { 38396, "Flinders Christian Community College Inc" },
- { 38397, "TSB - Tiefdruck Schwann-Bagel GmbH & Co.KG" },
- { 38398, "ZAO TD BOVID" },
- { 38399, "Kloeckner & Co SE" },
- { 38400, "nfon AG" },
- { 38401, "Veridian Solutions Pty. Ltd" },
- { 38402, "C.I. Centro de Informacoes" },
- { 38403, "vacc.ch" },
- { 38404, "Maintainet AG" },
- { 38405, "Autotalks" },
- { 38406, "Roscom Ltd" },
- { 38407, "Chesapeake Ltd" },
- { 38408, "OKIT GmbH" },
- { 38409, "CargoSoft LLC" },
- { 38410, "Raikosoft GmbH" },
- { 38411, "Knology" },
- { 38412, "Fun & RelaX GmbH" },
- { 38413, "Lodgeistics Inc." },
- { 38414, "FusionDirectory" },
- { 38415, "Clavius-Gymnasium Bamberg" },
- { 38416, "Nordic ID Oy" },
- { 38417, "Kybeire Ltd" },
- { 38418, "UFMA - Universidade Federal do Maranh\0303\0243o" },
- { 38419, "Rauland Australia Pty Ltd" },
- { 38420, "Yottaa Inc" },
- { 38421, "ALL-RTP" },
- { 38422, "Tesync Technology Limited" },
- { 38423, "PBeaKK" },
- { 38424, "BalTstamp" },
- { 38425, "Private University College of Education of the Diocese of Linz" },
- { 38426, "State company \"Russian highways\"" },
- { 38427, "Gen\0303\0250ve A\0303\0251roport" },
- { 38428, "SlimPay" },
- { 38429, "Dryden Municipal Telephone System" },
- { 38430, "Irell & Manella LLP" },
- { 38431, "Communications & Power Industries, Satcom Division" },
- { 38432, "Oberon, Inc." },
- { 38433, "NetAxis Solutions" },
- { 38434, "OpenCSI" },
- { 38435, "IQantum GmbH" },
- { 38436, "ReiniNET" },
- { 38437, "Vlastimil Kupsky" },
- { 38438, "GTwins" },
- { 38439, "Aurenz GmbH" },
- { 38440, "HEROLD Business Data GmbH" },
- { 38441, "Blue-Sphere" },
- { 38442, "INRADIOS GmbH" },
- { 38443, "OrbiConnect GmbH & Co. KG" },
- { 38444, "Holiday Extras Limited" },
- { 38445, "VMC" },
- { 38446, "Enlogic Systems, LLC" },
- { 38447, "Ing. Viliam Or\0305\0241ula - iElectro" },
- { 38448, "NOLOGIN CONSULTING SL" },
- { 38449, "Nationwide Building Society" },
- { 38450, "DediPower Managed Hosting Ltd." },
- { 38451, "LanderNet Inc." },
- { 38452, "QQ2" },
- { 38453, "Indigo Dynamic Networks, LLC" },
- { 38454, "Adpuntum GmbH" },
- { 38455, "Cyberware Inc." },
- { 38456, "IC \"ISKRA\" Ltd." },
- { 38457, "ecvision" },
- { 38458, "Nachtwacht" },
- { 38459, "SBIT GmbH" },
- { 38460, "Gemtek Technology Co., Ltd." },
- { 38461, "ragenet llc" },
- { 38462, "Pt Magnar Nugraha" },
- { 38463, "Data Service Integration" },
- { 38464, "Snoerf.org" },
- { 38465, "Avalcom Sp. z o.o." },
- { 38466, "Max-Planck-Institut f\0303\0274r Molekulare Genetik" },
- { 38467, "Carl Edelmann GmbH" },
- { 38468, "Garage Center for Contemporary Culture" },
- { 38469, "Axtion Sdn Bhd" },
- { 38470, "Bison Schweiz AG" },
- { 38471, "Multimediakontor Hamburg GmbH" },
- { 38472, "Kevin Mullet" },
- { 38473, "Ellis Hospital" },
- { 38474, "Blackridge Technology" },
- { 38475, "Global SATCOM Technology, Inc." },
- { 38476, "prosozial GmbH" },
- { 38477, "Antaira Technologies, LLC. (formerly 'Aaxeon Technologies, LLC.')" },
- { 38478, "VerticalCue Design LLC" },
- { 38479, "Seluxit" },
- { 38480, "ABPM" },
- { 38481, "M Financial Group" },
- { 38482, "MetaStack Solutions Ltd." },
- { 38483, "netmonitor" },
- { 38484, "Innerdive Solutions, LLC." },
- { 38485, "Westchester Digestive Disease Group LLP" },
- { 38486, "Eurotec Information Systems K.K." },
- { 38487, "Quadro Systems" },
- { 38488, "Exceptional Innovation, LLC." },
- { 38489, "WD-40 Company" },
- { 38490, "Nebula, Inc." },
- { 38491, "Clean Communications Ltd" },
- { 38492, "WorldmingoSolutions" },
- { 38493, "VPT" },
- { 38494, "CLINTWORLD GmbH" },
- { 38495, "PERTIMM" },
- { 38496, "Digg, Inc." },
- { 38497, "Collins Systems" },
- { 38498, "Georgia-Cumberland Conference" },
- { 38499, "Versadial Solutions" },
- { 38500, "CareTech AB" },
- { 38501, "Funda\0303\0247\0303\0243o Parque Tecnol\0303\0263gico Itaipu" },
- { 38502, "BizNet Corporaci\0303\0263n Costa Rica" },
- { 38503, "Advtal52" },
- { 38504, "Skyworth" },
- { 38505, "OJSC OC ROSNEFT" },
- { 38506, "Plus Pack A/S" },
- { 38507, "Depalol Gesti\0303\0263 i Multim\0303\0250dia" },
- { 38508, "BW Broadcast Ltd" },
- { 38509, "DNS:NET Internet Service GmbH" },
- { 38510, "Colorcon, Inc." },
- { 38511, "Toyota Motor Corporation Australia" },
- { 38512, "St Mary's College" },
- { 38513, "PJSC Myronivsky Hliboproduct" },
- { 38514, "Fr. Sauter AG" },
- { 38515, "IXC" },
- { 38516, "Allworx" },
- { 38517, "St Joseph Healthcare" },
- { 38518, "ATMA Tecnologia Ltda." },
- { 38519, "DeltaVision Sp. Z o.o." },
- { 38520, "Semmle Ltd." },
- { 38521, "Ob\0304\0215ansk\0303\0251 sdru\0305\0276en\0303\0255 Ubuntu pro \0304\0214eskou republiku" },
- { 38522, "Zhejiang Post" },
- { 38523, "Samimrayaneh" },
- { 38524, "StorageCraft Technology Corporation" },
- { 38525, "City of Windhoek" },
- { 38526, "Paul Davison (consulting)" },
- { 38527, "GeekSoc" },
- { 38528, "PIKA Technologies" },
- { 38529, "AKA Computer Solution Inc." },
- { 38530, "Informationsdesign AG" },
- { 38531, "ICF International" },
- { 38532, "GroupScape.com" },
- { 38533, "ElphoTech" },
- { 38534, "L-ACOUSTICS" },
- { 38535, "Sierra Photonics Inc." },
- { 38536, "10ZiG Technology" },
- { 38537, "Texas Municipal League Intergovernmental Risk Pool" },
- { 38538, "Sify Technologies Ltd" },
- { 38539, "ANKABUT (UAE Advanced Network for Research and Education)" },
- { 38540, "Phoebus Vision" },
- { 38541, "Concentric Cloud Solutions, LLC (formerly 'XO Interactive, LLC')" },
- { 38542, "OpenIP" },
- { 38543, "Continental Lensa Ltd." },
- { 38544, "Asset Control International BV" },
- { 38545, "Advanced Medical X-Ray" },
- { 38546, "ORPHEUS" },
- { 38547, "Dignitas Technologies" },
- { 38548, "SHENZHEN UNIVERSAL INTELLISYS PTE LTD" },
- { 38549, "Netstor Technology Co., Ltd." },
- { 38550, "Security Pillar Ltd" },
- { 38551, "Pansardata AB" },
- { 38552, "Manfred Nagl - naglit.at" },
- { 38553, "Bureau of industrial automation LLC" },
- { 38554, "Mark & Space Telesystems (P) LTD." },
- { 38555, "Jeppesen" },
- { 38556, "Tradesignal GmbH" },
- { 38557, "Artvin Coruh University" },
- { 38558, "Innes Corporation Pty Ltd" },
- { 38559, "ITAC, IT APPLICATIONS CONSULTING S.A." },
- { 38560, "Denver International Airport (City and County of Denver)" },
- { 38561, "Appleton Coated llc" },
- { 38562, "KokelNET" },
- { 38563, "Ryan Systems, Inc." },
- { 38564, "Mark IV Indonesia" },
- { 38565, "Instrumentation Technologies d.d." },
- { 38566, "FirstPower a.s." },
- { 38567, "Hit the Sticks, LLC" },
- { 38568, "Syvea Technologies" },
- { 38569, "Uziek Pte. Ltd." },
- { 38570, "axn software UG (haftungsbeschr\0303\0244nkt)" },
- { 38571, "Health Information Technology Exchange of Connecticut" },
- { 38572, "TroSoft AB" },
- { 38573, "Zucchetti Axess SpA" },
- { 38574, "Facultad Regional Santa Fe, Universidad Tecnol\0303\0263gica Nacional." },
- { 38575, "TeraTron GmbH" },
- { 38576, "Lomond Paper Ltd" },
- { 38577, "Perfecta Aviation" },
- { 38578, "New York City Transit Authority " },
- { 38579, "Pike Aerospace Research Corporation" },
- { 38580, "i3 International inc." },
- { 38581, "Crouse Hospital" },
- { 38582, "Fryman and Associates, Inc" },
- { 38583, "MetroPCS Wireless, Inc." },
- { 38584, "Superior Communication Solutions Inc." },
- { 38585, "VEG Networks" },
- { 38586, "DoZeener Controls" },
- { 38587, "SmartKomm GmbH" },
- { 38588, "Tanuki Software, Ltd." },
- { 38589, "Egyptian Universities Network, EUN" },
- { 38590, "Islamic Republic Broadcasting of Iran" },
- { 38591, "Indusface Telecom Private Limited " },
- { 38592, "Cyan Technology" },
- { 38593, "Cloud 9 Business Analytics Limited" },
- { 38594, "Enel PS d.o.o." },
- { 38595, "Shanghai Zhongmi Communication Technology CO.,LTD." },
- { 38596, "University of Saint Joseph" },
- { 38597, "Sunfest " },
- { 38598, "Sunfest " },
- { 38599, "LTU Technologies" },
- { 38600, "kleinhans it-solutions und services" },
- { 38601, "ELIUM GmbH" },
- { 38602, "S&C Electric Company" },
- { 38603, "Applied Systems Engineering, Inc." },
- { 38604, "In And Out Cologne" },
- { 38605, "Calxeda, Inc." },
- { 38606, "Gusbeckers Development" },
- { 38607, "WITTENSTEIN AG" },
- { 38608, "Gymn\0303\0241zium, Plze\0305\0210" },
- { 38609, "lipple.jp" },
- { 38610, "PT Respati Solusi Rekatama" },
- { 38611, "Alan Baugher" },
- { 38612, "Itrix Incorporation" },
- { 38613, "Computer Technologes and Systems Ltd." },
- { 38614, "Nextest Systems" },
- { 38615, "Mettle Networks, Inc" },
- { 38616, "METEL s.r.o." },
- { 38617, "Callplus Services Limited" },
- { 38618, "Critical Software Ltd" },
- { 38619, "think digital GmbH" },
- { 38620, "Gamma 2000 Pte Ltd" },
- { 38621, "Merruk Technology, SARL." },
- { 38622, "Master Power Technologies" },
- { 38623, "bolay.co" },
- { 38624, "NETGRAPPLER Corporation" },
- { 38625, "SILOCOM Internacional Corp." },
- { 38626, "Bureau 14 SARL" },
- { 38627, "DLC Systems, Inc." },
- { 38628, "LivingSocial" },
- { 38629, "Connamara Systems, llc" },
- { 38630, "OneHealthPort" },
- { 38631, "Morgajel.com" },
- { 38632, "Mariana Consulting, LLC" },
- { 38633, "VOXLIBERTUM AG" },
- { 38634, "Hendrikx ITC B.V." },
- { 38635, "Falcon Steel Co." },
- { 38636, "Starfish Technologies Limited" },
- { 38637, "U2 Systems" },
- { 38638, "ista International GmbH" },
- { 38639, "bpost" },
- { 38640, "Novus Partners, Inc." },
- { 38641, "yate" },
- { 38642, "Net Trans Services AS" },
- { 38643, "SQISOFT Inc." },
- { 38644, "Armadino" },
- { 38645, "OCV CJSC" },
- { 38646, "StoniesHome" },
- { 38647, "KV-Telematik ARGE" },
- { 38648, "DOMENY.PL Ltd" },
- { 38649, "Mr Panquecito" },
- { 38650, "Western Australian Network Gaming Inc." },
- { 38651, "Observat\0303\0263rio Nacional" },
- { 38652, "Instituto Federal Catarinense Campus Videira" },
- { 38653, "Verlagsgruppe NEWS Ges.m.b.H" },
- { 38654, "BoostAeroSpace SAS" },
- { 38655, "NBU SK (NATIONAL SECURITY AUTHORITY)" },
- { 38656, "Energinet.dk" },
- { 38657, "Ministerio de Justicia y Paz" },
- { 38658, "Music for Humans" },
- { 38659, "The Criminal Defense Group" },
- { 38660, "Certipost n.v./s.a." },
- { 38661, "Wuxi Thinkyare Electronic Technology Co., Ltd." },
- { 38662, "Drachenfels Ltd" },
- { 38663, "ahd hellweg data GmbH & Co. KG" },
- { 38664, "Sky Area" },
- { 38665, "PUUR it (www.puur-it.nl)" },
- { 38666, "Silversands Limited" },
- { 38667, "Mindbean" },
- { 38668, "RahuNAS" },
- { 38669, "NIKKEY CO.,LTD." },
- { 38670, "BICS - Belgacom International Carrier Services" },
- { 38671, "Cellbusters LLC" },
- { 38672, "Zaeim Electronic Industries" },
- { 38673, "E-merchant" },
- { 38674, "West Virginia Health Information Network (WVHIN)" },
- { 38675, "NorCell Inc." },
- { 38676, "PDU EXPERT UK LTD" },
- { 38677, "ECOSIX" },
- { 38678, "Joyent, Inc." },
- { 38679, "idcell.co.ltd" },
- { 38680, "Nimbula, Inc" },
- { 38681, "HJBaier" },
- { 38682, "Mindlinx Technology Solutions" },
- { 38683, "Klinikum Ansbach" },
- { 38684, "LOGEMED" },
- { 38685, "Semptian Technologies Ltd." },
- { 38686, "CLS Argos" },
- { 38687, "The Online Backup Company Norway AS" },
- { 38688, "Educa.ch - Schweizer Medieninstitut f\0303\0274r Bildung und Kultur" },
- { 38689, "Old Mutual" },
- { 38690, "Corepoint Health" },
- { 38691, "Quanti s.r.o." },
- { 38692, "ONPATH Technologies Inc" },
- { 38693, "matthewv.com" },
- { 38694, "Alabama One Health Record (ALOHR) " },
- { 38695, "Joehl + Koeferli AG" },
- { 38696, "Hacking Networked Solutions Ltd." },
- { 38697, "DSM Inc" },
- { 38698, "Onebox Ticket Management" },
- { 38699, "Pulsar Consulting sa" },
- { 38700, "Sergey Kozlov" },
- { 38701, "ECBIZNET, INC." },
- { 38702, "Talisman Energy Inc" },
- { 38703, "Advancia Corporation" },
- { 38704, "Nvest., Inc" },
- { 38705, "Amplidata" },
- { 38706, "maceghost" },
- { 38707, "Zodiac Data Systems" },
- { 38708, "Shenzhen CTI Technology Co., Ltd." },
- { 38709, "Edison Global Circuits, LLC" },
- { 38710, "Ian Kristin" },
- { 38711, "Dolby Medical Home Respiratory Care Ltd" },
- { 38712, "St. Joseph's Healthcare System INC" },
- { 38713, "National Association of REALTORS\0302\0256" },
- { 38714, "RLH INDUSTRIES,INC." },
- { 38715, "jllin agricultural university" },
- { 38716, "Orbotech " },
- { 38717, "INSIEL \0342\0200\0223 Informatica per il Sistema degli Enti Locali S.p.A" },
- { 38718, "Zobele Instrument (Shenzhen) Co., Ltd." },
- { 38719, "Nextgen Innovation Labs LLC" },
- { 38720, "ENTLibre" },
- { 38721, "Hexaglobe" },
- { 38722, "Conseil G\0303\0251n\0303\0251ral du Calvados" },
- { 38723, "jusme.com" },
- { 38724, "3iSYS" },
- { 38725, "Florian Wagner" },
- { 38726, "bjoernskou" },
- { 38727, "banan s.r.o." },
- { 38728, "Kiez.Net" },
- { 38729, "GCCA Inc." },
- { 38730, "RadioAccess" },
- { 38731, "Wiscada s.r.l" },
- { 38732, "Sachsen DV GmbH" },
- { 38733, "VoiceRite, Inc." },
- { 38734, "Padilha com" },
- { 38735, "Stephen Timothy Perryman" },
- { 38736, "Promise Regional Medical Center - Hutchinson" },
- { 38737, "MyOwnFile BV" },
- { 38738, "NL Technologies" },
- { 38739, "Nebras Technology" },
- { 38740, "Attentec AB" },
- { 38741, "Mobile Frosting" },
- { 38742, "Les cr\0303\0251ations Snowflakes" },
- { 38743, "Gruden" },
- { 38744, "twootton" },
- { 38745, sminmpec_unknown }, /* (Added by Wireshark) */
- { 38746, "incelis" },
- { 38747, "SHENZHEN SUPLET CO., LTD." },
- { 38748, "2H ENERGY" },
- { 38749, "GNU Generation" },
- { 38750, "Neologic Sp. z o.o." },
- { 38751, "Marketwire" },
- { 38752, "New Jersey Manufacturers Insurance Company" },
- { 38753, "TECNOMEDSA" },
- { 38754, "Jinon Corporation" },
- { 38755, "\0304\0214eskomoravsk\0303\0251 informa\0304\0215n\0303\0255 syst\0303\0251my s.r.o." },
- { 38756, "TNG Technology Consulting" },
- { 38757, "Sigtec Pty Ltd" },
- { 38758, "GrandCapital Ltd." },
- { 38759, "Katholieke Hogeschool Limburg" },
- { 38760, "Vesel\0304\0253bas ekonomikas centrs (formerly 'ABC Software, Ltd')" },
- { 38761, "OSnode" },
- { 38762, "Deutsche Rentenversicherung Bund" },
- { 38763, "cenhare AG" },
- { 38764, "Boscad" },
- { 38765, "imirhil.fr" },
- { 38766, "Gosloto Ltd." },
- { 38767, "Martin Diener" },
- { 38768, "StreamBase Systems, Inc." },
- { 38769, "Holy Redeemer Hospital and Medical Center" },
- { 38770, "AGGREGATUM" },
- { 38771, "Internet Integration, Inc." },
- { 38772, "Mageia.Org" },
- { 38773, "Visionutveckling AB" },
- { 38774, "CONET Solutions GmbH" },
- { 38775, "Stream Labs" },
- { 38776, "Telarix" },
- { 38777, "NOU DPO UMC YARB" },
- { 38778, "Jeda Networks" },
- { 38779, "Noggin IT" },
- { 38780, "Gaertner" },
- { 38781, "trainline" },
- { 38782, "TAGHOS Tecnologia" },
- { 38783, "Teracom Ltd." },
- { 38784, "Systems Integration Specialists Company, Inc." },
- { 38785, "Dirdal-it" },
- { 38786, "Emirates Integrated Telecommunications Company, PJSC" },
- { 38787, "Nanjing Tunec Science & Technology Co., Ltd." },
- { 38788, "Oasis Telecommunication Technologies" },
- { 38789, "National TeleConsultants LLC" },
- { 38790, "EUROBANK EFG BULGARIA AD" },
- { 38791, "Atos IT Solutions and Services AG" },
- { 38792, "Operator Logistyczny Paliw P\0305\0202ynnych Sp. z o.o." },
- { 38793, "Universidade Federal Rural do Rio de Janeiro" },
- { 38794, "UQODE" },
- { 38795, "ASSOCIATION MENSA FRANCE" },
- { 38796, "Takashi Komatsubara" },
- { 38797, "Atlantis Computing Inc." },
- { 38798, "Compulink" },
- { 38799, "Dream Property GmbH" },
- { 38800, "Ecker & Partner" },
- { 38801, "Pythia Technologies" },
- { 38802, "CloudWare Co" },
- { 38803, "Woori-Net Inc." },
- { 38804, "SEVEN PRINCIPLES AG " },
- { 38805, "Envers AG" },
- { 38806, "Victor Technologies" },
- { 38807, "Lanka Education and Research Network" },
- { 38808, "University of Miyazaki" },
- { 38809, "4finance" },
- { 38810, "Anhui Asky Quantum Technology Co.,Ltd" },
- { 38811, "Ministry of Information" },
- { 38812, "Centerm Information Company" },
- { 38813, "Computer Systems Consulting s.r.o." },
- { 38814, "IFMOD GmbH & Co. KG" },
- { 38815, "ETHERPOWER S.R.L." },
- { 38816, "Partnerpedia Solutions, Inc." },
- { 38817, "University of Western Greece" },
- { 38818, "American National Insurance" },
- { 38819, "VCE Company, LLC" },
- { 38820, "Inside Lacrosse" },
- { 38821, "ThirdWave B.V." },
- { 38822, "Sport Voswinkel GmbH & Co. KG" },
- { 38823, "Grandvision" },
- { 38824, "LYNX spol. s r.o." },
- { 38825, "Huntsman International LLC" },
- { 38826, "Liberty Life" },
- { 38827, "orientscience" },
- { 38828, "AllDigital, Inc." },
- { 38829, "Sj\0303\0266fartsverket" },
- { 38830, "Sepialine Inc." },
- { 38831, "F\0303\0251d\0303\0251ration Nationale des Tiers de Confiance" },
- { 38832, "Clearfield Hospital" },
- { 38833, "TRANSPOREON GmbH" },
- { 38834, "Orad Hi Tec Systems Ltd." },
- { 38835, "Yota" },
- { 38836, "Western Oregon University" },
- { 38837, "First Interstate Bank" },
- { 38838, "Angstrem-Telecom JSC" },
- { 38839, "nPhase LLC." },
- { 38840, "Visual Click Software, Inc." },
- { 38841, "XCEL SOLUTIONS CORP" },
- { 38842, "ECM Inc" },
- { 38843, "Kinoton GmbH" },
- { 38844, "Astec IT Solutions Ltd." },
- { 38845, "DZ BANK AG" },
- { 38846, "Bong U.K. Ltd." },
- { 38847, "Prelert" },
- { 38848, "Susquehanna Health" },
- { 38849, "Intwine Energy" },
- { 38850, "Global MunnexTech SA de CV" },
- { 38851, "Izmir Institute of High Technology" },
- { 38852, "XCOM AG" },
- { 38853, "RIA Novosti (formerly 'Federal State Unitary Enterprise Russian Information Agency News')" },
- { 38854, "Ncurity" },
- { 38855, "Nagoya Institute of Technology" },
- { 38856, "Login People" },
- { 38857, "VASONA NETWORKS" },
- { 38858, "General Micro Systems, Inc" },
- { 38859, "Agile Communications, Inc." },
- { 38860, "comadot.net" },
- { 38861, "Rudy Gevaert" },
- { 38862, "Erstikalender.info" },
- { 38863, "SiChuan Andi industry co.LTD" },
- { 38864, "Virgin Holidays Ltd" },
- { 38865, "Squadra Technologies" },
- { 38866, "TRIMET Aluminium SE (formerly 'TRIMET ALUMINIUM AG')" },
- { 38867, "mecodia GmbH" },
- { 38868, "Comision Nacional de Bancos y Seguros" },
- { 38869, "Alexey S Khromov" },
- { 38870, "Mandiant" },
- { 38871, "Vostokcement Ltd." },
- { 38872, "JSC \"Prompribor\"" },
- { 38873, "Alex Bolgov" },
- { 38874, "ENABIL Solutions Ltd." },
- { 38875, "UnifiedPost S.A." },
- { 38876, "Mork" },
- { 38877, "BPM Advanced Technology Company" },
- { 38878, "s.d.i. s.p.a." },
- { 38879, "tradebridge Pty Ltd" },
- { 38880, "MicroAutomation" },
- { 38881, "Abelium d.o.o." },
- { 38882, "Barron McCann Technology" },
- { 38883, "Phenomic Business Systems Ltd" },
- { 38884, "Electrolux" },
- { 38885, "nPulse Technologies Inc." },
- { 38886, "Societe d'exploitation de Reseaux et de Services Securises (SER2S)" },
- { 38887, "VIS - Verein der Informatik Studierenden" },
- { 38888, "c3pb e.V." },
- { 38889, "Okuejina" },
- { 38890, "Blue Shield of California" },
- { 38891, "Jimma University" },
- { 38892, "Axiovista S.A." },
- { 38893, "Marc Luehr" },
- { 38894, "GROB-WERKE GmbH & Co. KG" },
- { 38895, "sig21 labs" },
- { 38896, "Findaway World" },
- { 38897, "Safegate International AB" },
- { 38898, "La France du Nord au Sud" },
- { 38899, "National Institute Of Weather And Atmospheric Research" },
- { 38900, "Fukuoka University" },
- { 38901, "Landsvirkjun" },
- { 38902, "NovAtel Inc." },
- { 38903, "Malin Space Science Systems" },
- { 38904, "School Specialty, Inc." },
- { 38905, "Timanetworks Inc." },
- { 38906, "Goethe-Universitaet Frankfurt am Main" },
- { 38907, "Zumbox, Inc." },
- { 38908, "Aon Corporation" },
- { 38909, "Linguistic Data Consortium" },
- { 38910, "Xicoy Electronica S.L." },
- { 38911, "McLeod Health" },
- { 38912, "psych0tik.net" },
- { 38913, "QXTN Pty Ltd" },
- { 38914, "JNT SOUND SYSTEM AB" },
- { 38915, "avono AG" },
- { 38916, "Shanghai ekingstar Digital Campus Co,.Ltd." },
- { 38917, "Guangxi Xinhai Communication Technology Co.,Ltd" },
- { 38918, "DEK Technologies Pty Ltd" },
- { 38919, "EPRONA, a.s." },
- { 38920, "SnapTV AS" },
- { 38921, "Capetti Elettronica srl" },
- { 38922, "Hypotecni banka, a.s." },
- { 38923, "iProfs" },
- { 38924, "Damarel Systems International Ltd." },
- { 38925, "PROCENTEC" },
- { 38926, "InnovAction srl" },
- { 38927, "Versile AS" },
- { 38928, "Powel Energy Management AB" },
- { 38929, "Fugro Geos Ltd" },
- { 38930, "@Planet Ltd" },
- { 38931, "Chaz6" },
- { 38932, "INSTART INC" },
- { 38933, "Ubilogix International, Inc." },
- { 38934, "35x.de" },
- { 38935, "MPM sas" },
- { 38936, "Enrico Rivarola" },
- { 38937, "ResMed SAS" },
- { 38938, "ISACO GmbH" },
- { 38939, "Flexera Software LLC" },
- { 38940, "Thales Communications and Security" },
- { 38941, "D. E. Shaw & Co, L.P." },
- { 38942, "Coca-Cola Enterprises, Inc." },
- { 38943, "Edgar Kittner GmbH & Co.KG" },
- { 38944, "Kamstrup A/S" },
- { 38945, "NASA Center for Climate Simulation (NCCS)" },
- { 38946, "Raja Consulting Ltd" },
- { 38947, "IREQ (Institut de recherche d'Hydro-Quebec)" },
- { 38948, "SureID, Inc. (formerly 'Eid Passport Inc.')" },
- { 38949, "Ballard Technology, Inc." },
- { 38950, "Mars Space Flight Facility" },
- { 38951, "Beijing Zigvine Tech. Co. Ltd." },
- { 38952, "Ferox Communications S.L." },
- { 38953, "coveragetools" },
- { 38954, "Informatio GmbH" },
- { 38955, "Wire and Wireless Co., Ltd." },
- { 38956, "HOERBIGER Deutschland Holding GmbH" },
- { 38957, "SWISS-ARTG" },
- { 38958, "Dynamic Technologies(Asia) Ltd" },
- { 38959, "K M Medicals" },
- { 38960, "E-VAL Tecnologia em Inform\0303\0241tica Ltd." },
- { 38961, "A&W Networks" },
- { 38962, "Oleksandr Moskalets" },
- { 38963, "WoodWing Software" },
- { 38964, "Coral Sea Enterprises, LLC" },
- { 38965, "TelePro, Inc." },
- { 38966, "Stryker" },
- { 38967, "Resal spol. s r.o." },
- { 38968, "Telino" },
- { 38969, "Intellipower, Inc." },
- { 38970, "Vilpra, UAB" },
- { 38971, "Guacamole Project" },
- { 38972, "Coordinate-System Transport Tech. Co.,Ltd" },
- { 38973, "k-blue" },
- { 38974, "ENDA GmbH & Co. KG" },
- { 38975, "Production Resource Group L.L.C." },
- { 38976, "Quortus Ltd" },
- { 38977, "Imayhem S.L.L." },
- { 38978, "Adriatic Solutions Corp." },
- { 38979, "SII Lille" },
- { 38980, "AGH University of Science and Technology" },
- { 38981, "Stradus" },
- { 38982, "Advanced Telecommunications Technology Research Sp. z o.o." },
- { 38983, "CompuRoot" },
- { 38984, "CampusIT" },
- { 38985, "ECM2" },
- { 38986, "SOCAR Georgia" },
- { 38987, "Nettbuss AS" },
- { 38988, "Ministry of Awqaf and Islamic Affairs - Kuwait" },
- { 38989, "Qtree BVBA" },
- { 38990, "Nova World International, LLC dba Nova Shipping" },
- { 38991, "Innoforma E-learning Technologies" },
- { 38992, "SCCT, Wilhelm Wimmreuter" },
- { 38993, "South Jersey Healthcare" },
- { 38994, "San Juan Software" },
- { 38995, "Connexon Telecom Inc." },
- { 38996, "Japan Aerospace Exploration Agency" },
- { 38997, "Telnetware Co.,Ltd" },
- { 38998, "i20" },
- { 38999, "Higher Light Communications" },
- { 39000, "LinuxMCE" },
- { 39001, "NetFlow Logic" },
- { 39002, "cibex gmbh" },
- { 39003, "Sub10 Systems Ltd." },
- { 39004, "Diaphanoscope" },
- { 39005, "Total Device" },
- { 39006, "VZTech Importacao Exportacao e Desenvolvimento de Tecnologia Ltda" },
- { 39007, "Armada Nacional - Uruguay" },
- { 39008, "Nouvelle s.r.l." },
- { 39009, "hub telecom" },
- { 39010, "GrupaA Sp. z o.o." },
- { 39011, "Fresco Logic, Inc." },
- { 39012, "INNOBAND TECHNOLOGIES, INC." },
- { 39013, "Assurity Trusted Solutions Pte Ltd" },
- { 39014, "Colina Participations" },
- { 39015, "MAXXING S.A.S.U." },
- { 39016, "Field Electronics Limited" },
- { 39017, "Object Trading Pty Ltd" },
- { 39018, "Dyna Healthcare Co., Ltd." },
- { 39019, "Techinfocom, Jsc" },
- { 39020, "Net To Net Co., Ltd" },
- { 39021, "pdv-systeme Sachsen GmbH" },
- { 39022, "Joint Stock Company SVYAZNOY BANK" },
- { 39023, "murtaza enterprizes" },
- { 39024, "Bjango" },
- { 39025, "Velleros, Inc." },
- { 39026, "Tritux" },
- { 39027, "www.duowan.com" },
- { 39028, "Enkata" },
- { 39029, "Lukse" },
- { 39030, "CloudGuard Software AG (formerly 'wlan-partner.com AG')" },
- { 39031, "Eastern Mennonite University" },
- { 39032, "Caldwell Memorial Hospital, Inc." },
- { 39033, "Quinstar Technology, Inc." },
- { 39034, "nesfile.org" },
- { 39035, "Orbital Systems, Ltd." },
- { 39036, "iMobile3, LLC" },
- { 39037, "Inocybe Technologies inc." },
- { 39038, "COMPNET Ltd" },
- { 39039, "Daniels Electronics, Ltd" },
- { 39040, "DigitalArts Inc." },
- { 39041, "Enthina" },
- { 39042, "E-ID internet strategies B.V." },
- { 39043, "EBRO ARMATUREN GMBH" },
- { 39044, "idefclub.ru" },
- { 39045, "Cubio Communications Oy" },
- { 39046, "Jimdo GmbH" },
- { 39047, "The Foundry" },
- { 39048, "Sayre Memorial Hospital" },
- { 39049, "Byte, SIA" },
- { 39050, "Forschungsgemeinschaft elektronische Medien (FeM) e.V." },
- { 39051, "g360apps.com" },
- { 39052, "Vutlan sro (formerly 'Sky Control sro')" },
- { 39053, "Rail & Sea" },
- { 39054, "NetUP Inc." },
- { 39055, "S2 Communications AB" },
- { 39056, "Samsung Electronics America, Inc." },
- { 39057, "SCAE Co. Ltd." },
- { 39058, "CET Electronics" },
- { 39059, "RTE" },
- { 39060, "Suster.net" },
- { 39061, "Analytica" },
- { 39062, "Mark Harlos, Software Engineering Consultant" },
- { 39063, "Delecon" },
- { 39064, "Eseye Ltd" },
- { 39065, "African Institute for Mathematical Sciences" },
- { 39066, "FTS DVL SRL" },
- { 39067, "Verba Technologies" },
- { 39068, "hostapd/wpa_supplicant project" },
- { 39069, "Japan Ballast Co." },
- { 39070, "STARK" },
- { 39071, "Konkurent Ltd." },
- { 39072, "Campai Business Solutions BV" },
- { 39073, "Blue Mind" },
- { 39074, "makabra" },
- { 39075, "HealthE Advocate LLP" },
- { 39076, "Zalaszam Kft" },
- { 39077, "Dorlet S.A" },
- { 39078, "Vimpex GmbH" },
- { 39079, "AdvaICT, a.s." },
- { 39080, "ITRS Group Limited" },
- { 39081, "ASACA Corporation" },
- { 39082, "PhoenixNAP" },
- { 39083, "Samodzielny Publiczny Centralny Szpital Kliniczny" },
- { 39084, "Texas A&M University - Kingsville" },
- { 39085, "MUJIN Inc." },
- { 39086, "FriendFinder Networks, Inc." },
- { 39087, "Astra Communication Service Co., Ltd" },
- { 39088, "Hochschule Deggendorf" },
- { 39089, "Krones AG" },
- { 39090, "subreport Verlag Schawe GmbH" },
- { 39091, "Good Link" },
- { 39092, "ChongQing Cable Network" },
- { 39093, "Basler AG" },
- { 39094, "Kambi" },
- { 39095, "iFlex Ltd." },
- { 39096, "Lohika ltd." },
- { 39097, "Maxeler Technologies Ltd" },
- { 39098, "Kyanmedia Limited" },
- { 39099, "RSA SaaS " },
- { 39100, "The Binary Workshop" },
- { 39101, "Frisbie Memorial Hospital" },
- { 39102, "Power Home Remodeling Group, Inc." },
- { 39103, "LS telcom AG" },
- { 39104, "Universidad Central de Las Villas" },
- { 39105, "Technet Systems" },
- { 39106, "ExpatJob.net GROUP" },
- { 39107, "ULHI - Urrutiko Lanbide Heziketa Institutua" },
- { 39108, "Trusteer Ltd." },
- { 39109, "Morpho Detection, Inc." },
- { 39110, "State of Colorado Judicial Department" },
- { 39111, "Eladian Partners, LLC" },
- { 39112, "Netsoc DIT" },
- { 39113, "IRT Technologies Inc." },
- { 39114, "Ittxa" },
- { 39115, "XACK,Inc." },
- { 39116, "Folkwang Universit\0303\0244t der K\0303\0274nste" },
- { 39117, "noax Technologies AG" },
- { 39118, "Amadeus s.a.s" },
- { 39119, "dm-drogerie markt GmbH + Co. KG " },
- { 39120, "itunic consulting" },
- { 39121, "ElringKlinger AG" },
- { 39122, "Framehawk Inc." },
- { 39123, "Two Degrees Mobile Ltd" },
- { 39124, "Kaweah Delta Health Care District" },
- { 39125, "Instituto Superior de Engenharia do Porto (ISEP)" },
- { 39126, "DCA Inc" },
- { 39127, "Mercury Insurance Group" },
- { 39128, "ALLIANZ LIFE INSURANCE OF NORTH AMERICA" },
- { 39129, "Reiknistofa i Vedurfraedi" },
- { 39130, "Century Software (M) Sdn Bhd " },
- { 39131, "Sistemas Informaticos Abiertos S.A." },
- { 39132, "Camair-Co" },
- { 39133, "Kamsoft S.A." },
- { 39134, "Apex" },
- { 39135, "U.S. Bancorp" },
- { 39136, "Adams State University (formerly 'Adams State College')" },
- { 39137, "ameria GmbH" },
- { 39138, "Santa Barbara County Education Office" },
- { 39139, "nPario Inc" },
- { 39140, "Interra Systems, Inc." },
- { 39141, "Qice Technology Co. Ltd" },
- { 39142, "Nian Electronic Company" },
- { 39143, "LARS" },
- { 39144, "Nextouch, Inc." },
- { 39145, "Innovative Circuit Technology Ltd." },
- { 39146, "Watchdog Software Pty Limited" },
- { 39147, "intratop" },
- { 39148, "Agjencia Kombetare e Shoqerise se Informacionit" },
- { 39149, "broadAngle, LLC" },
- { 39150, "B.O.S. Software Service und Vertrieb GmbH" },
- { 39151, "Autorit\0303\0251 des March\0303\0251s Financiers" },
- { 39152, "DVT - Daten-Verarbeitung-Tirol GmbH" },
- { 39153, "WAYF - Where Are You From" },
- { 39154, "SwiftStack" },
- { 39155, "Mango DSP, Inc." },
- { 39156, "PROSCOPE Corporation" },
- { 39157, "DERMALOG IDENTIFICATION SYSTEMS GMBH" },
- { 39158, "Akouto" },
- { 39159, "Redpoint Software" },
- { 39160, "PointRed Telecom Ltd." },
- { 39161, "Precision Infomatic" },
- { 39162, "WEOLO" },
- { 39163, "U-BTech Solutions" },
- { 39164, "Cires21 S.L." },
- { 39165, "Hikvision Digital Technology Co., Ltd." },
- { 39166, "Stadt Moenchengladbach" },
- { 39167, "kastel.net" },
- { 39168, "eneatec GmbH" },
- { 39169, "Softronics AG" },
- { 39170, "Koario" },
- { 39171, "alipay" },
- { 39172, "Paytronix Systems, Inc." },
- { 39173, "Datek Wireless AS" },
- { 39174, "Club M\0303\0251diterrann\0303\0251e S.A." },
- { 39175, "GoEast GmbH" },
- { 39176, "MiTek Inc." },
- { 39177, "Leuphana University of Lueneburg" },
- { 39178, "The IMS Company" },
- { 39179, "Accuoss" },
- { 39180, "MTICUBE, LLC" },
- { 39181, "International Development Council for Academic Studies (IDCAS)" },
- { 39182, "OJSC \"GT-TEC Energo\"" },
- { 39183, "Layered Logic, Inc." },
- { 39184, "xingplatform inc" },
- { 39185, "System Level Solutions (India) Pvt. Ltd" },
- { 39186, "Ministry of Foreign Affairs of Hungary" },
- { 39187, "Marmara Univesity" },
- { 39188, "Virtual Cable S.L." },
- { 39189, "King Pine" },
- { 39190, "Sergey I Mihailov" },
- { 39191, "Comfort Consulting" },
- { 39192, "IBSmm Engineering, spol. s r.o." },
- { 39193, "Vayosoft Network Technologies Ltd." },
- { 39194, "CSSS IUGS (Centre de Sante et des Services Sociaux - Institut Universitaire de Geriatrie de Sherbrooke)" },
- { 39195, "Spawngrid, Inc." },
- { 39196, "AltNet (formerly 'Oxynux')" },
- { 39197, "Xitek Design Ltd" },
- { 39198, "Brekeke Software, Inc." },
- { 39199, "EXPRESSTRAK - DATS" },
- { 39200, "KTB COMPUTER SERVICES Co.,Ltd" },
- { 39201, "redtoo ag" },
- { 39202, "ASP Alerce Tecnology SL" },
- { 39203, "Qualysoft Informatikai Zrt." },
- { 39204, "QuanticEvents" },
- { 39205, "Broadnet Telecom Inc" },
- { 39206, "EITV - Entretenimento e Interatividade para TV Digital" },
- { 39207, "SparkYard, Inc." },
- { 39208, "LivingObjects" },
- { 39209, "Plexus Corp." },
- { 39210, "Impulse Point LLC" },
- { 39211, "Positronics Enterprise Limited" },
- { 39212, "Prosyscor Ltd" },
- { 39213, "Datakonsult Magnus Sandberg" },
- { 39214, "MT2IT" },
- { 39215, "Kernun" },
- { 39216, "BroadForward B.V." },
- { 39217, "Triple T Broadband PCL" },
- { 39218, "Connection Electronics Ltd." },
- { 39219, "Overkiz" },
- { 39220, "Theoldmonk.net" },
- { 39221, "Pakedge Device and Software Inc" },
- { 39222, "Patrick Shuff Industries" },
- { 39223, "ADNET Systems, Inc." },
- { 39224, "Djipalo Junuz" },
- { 39225, "AVRO Electrics" },
- { 39226, "REWOO Technologies AG" },
- { 39227, "GIE Vauban Humanis" },
- { 39228, "Kemira Oyj" },
- { 39229, "Convergence Technologies" },
- { 39230, "lenic.eu" },
- { 39231, "Hosting.com, Inc." },
- { 39232, "Drogentherapiezentrum LAGO" },
- { 39233, "Saint John's Health System" },
- { 39234, "Mitroko Inc." },
- { 39235, "Exelis Inc." },
- { 39236, "TriFractal Studios (formerly 'Sacred Point Studios')" },
- { 39237, "FW-Systeme GmbH" },
- { 39238, "VelociData, Inc" },
- { 39239, "LittleJackal " },
- { 39240, "Atacama Large Millimeter/submillimeter Array" },
- { 39241, "volkszaehler.org" },
- { 39242, "Krki IT" },
- { 39243, "VNLI LTD CO." },
- { 39244, "CHINA NATIONAL SOFTWARE & SERVICE CO., LTD." },
- { 39245, "Linkra Networks" },
- { 39246, "MBDA Deutschland GmbH" },
- { 39247, "medInt Holdings LLC (formerly 'Imalogix')" },
- { 39248, "STEC" },
- { 39249, "Shango" },
- { 39250, "Dalian Xinyu Technology, Ltd" },
- { 39251, "NewSun Co., LTD" },
- { 39252, "RioCard Tecnologia da Informacao S/A" },
- { 39253, "Punto Com srl" },
- { 39254, "Consecom AG" },
- { 39255, "Yakaz" },
- { 39256, "laorim" },
- { 39257, "Medical Records LLC" },
- { 39258, "TZ Consulting UG" },
- { 39259, "Geoffroy PLANQUART" },
- { 39260, "Koeller Family" },
- { 39261, "Planungsb\0303\0274ro Ledermann" },
- { 39262, "MediaMelon, Inc." },
- { 39263, "Akademischer Verein" },
- { 39264, "New Rock Technologies, Inc." },
- { 39265, "Versino GmbH" },
- { 39266, "Runway International O\0303\0234" },
- { 39267, "ZAT a.s." },
- { 39268, "Fachhochschule Brandenburg" },
- { 39269, "BASE - Gesti\0303\0263 d'Ingressos" },
- { 39270, "CLUB PSCO" },
- { 39271, "Palisades Medical Center" },
- { 39272, "WCR EDV GesmbH" },
- { 39273, "ARC Wireless LLC" },
- { 39274, "INNOV@TIVE IT LTD" },
- { 39275, "Martello Technologies Corporation" },
- { 39276, "Intux" },
- { 39277, "Cape Regional Medical Center" },
- { 39278, "ZeXtras s.r.l." },
- { 39279, "Web Devices Ltd" },
- { 39280, "ARVOO Engineering B.V." },
- { 39281, "ST Enclosures for Electronics Systems LTD" },
- { 39282, "Infinet Financial Systems" },
- { 39283, "TeleWare PLC" },
- { 39284, "Mountain States Health Alliance" },
- { 39285, "Prime Engineering Ltd" },
- { 39286, "Wargaming.net LLP" },
- { 39287, "Unimed Litoral" },
- { 39288, "Fimasys" },
- { 39289, "SPAUN electronic GmbH & Co. KG" },
- { 39290, "Citibank, N.A." },
- { 39291, "SugarCRM, LLC" },
- { 39292, "Victoria's Secret" },
- { 39293, "MARS" },
- { 39294, "Rue La La" },
- { 39295, "Yakima Valley Memorial Hospital" },
- { 39296, "Salford Software Ltd" },
- { 39297, "Beijing YUKUAN Technology Co.,Ltd" },
- { 39298, "Banque du Bois AG" },
- { 39299, "McPherson Hospital, Inc" },
- { 39300, "Sherwood Compliance Services Ltd." },
- { 39301, "oikaze" },
- { 39302, "Essent NV" },
- { 39303, "Ospow" },
- { 39304, "Shine Data AB" },
- { 39305, "WiVDO, Lda" },
- { 39306, "Intellidesign" },
- { 39307, "Clealink Technology Co., Ltd." },
- { 39308, "Blinkenlichten Open Source Solutions" },
- { 39309, "Centrum Promocji i Rozwoju Inicjatyw Obywatelskich OPUS" },
- { 39310, "S\0303\0270nderborg Kommune" },
- { 39311, "Wellspan" },
- { 39312, "Brookhaven Memorial Hospital" },
- { 39313, "iFAX Solutions, Inc." },
- { 39314, "Efactures (JLEM)" },
- { 39315, "Xelion b.v." },
- { 39316, "Savtira" },
- { 39317, "Systems Solutions & Development Technologies Ltd" },
- { 39318, "QUALIS AUDIO, INC." },
- { 39319, "mr-brooks.com" },
- { 39320, "Canada Revenue Agency" },
- { 39321, "Schooneman.net" },
- { 39322, "Champlain Valley Physicians Hospital Medical Center" },
- { 39323, "E2E4 TECHNOLOGIES" },
- { 39324, "OS NEXUS, Inc" },
- { 39325, "SecuAvail, Inc." },
- { 39326, "University of Neuchatel" },
- { 39327, "ID Cyber-Identity Ltd" },
- { 39328, "SeaWell Networks" },
- { 39329, "Lesley University" },
- { 39330, "Dalian Jinghaofeng Techbology Co., Ltd" },
- { 39331, "SurGATE Labs" },
- { 39332, "Zuercher Lehrbetriebsverband ICT" },
- { 39333, "m3 bauprojektmanagement gmbh" },
- { 39334, "RADMOR S.A." },
- { 39335, "basis Volume Limited" },
- { 39336, "Kraus" },
- { 39337, "Elephant Bird Consulting" },
- { 39338, "Operate4all" },
- { 39339, "Bagsbug" },
- { 39340, "Kingsbrook Jewish Medical Center" },
- { 39341, "Soifdinfo" },
- { 39342, "CSF Sistemi S.r.l." },
- { 39343, "Vennetics Limited" },
- { 39344, "NextNav, LLC" },
- { 39345, "ConCen" },
- { 39346, "Communaute d'agglomeration Herault Mediterranee" },
- { 39347, "LeoNux" },
- { 39348, "Hochschule f\0303\0274r Telekommunikaton Leipzig" },
- { 39349, "National Observatory of Athens" },
- { 39350, "SuperNAS" },
- { 39351, "Voxbone SA" },
- { 39352, "Adirondack Community College" },
- { 39353, "Biogen Idec" },
- { 39354, "Oceus Networks, Inc." },
- { 39355, "Jeanes Hospital" },
- { 39356, "Showa University" },
- { 39357, "INSTITUTO FEDERAL DO CEAR\0303\0201 - IFCE" },
- { 39358, "Prospect Computer Systems Inc. (PCS)" },
- { 39359, "Supranetcom" },
- { 39360, "Welotec GmbH" },
- { 39361, "FraudBuster" },
- { 39362, "Activanos SAS" },
- { 39363, "Wessel Dankers" },
- { 39364, "The Basis Group, Inc." },
- { 39365, "Komar Consulting Inc." },
- { 39366, "href.net" },
- { 39367, "Theodore Productions" },
- { 39368, "Aqcua Electronics" },
- { 39369, "Silicon Valley Medical Instruments" },
- { 39370, "Reelway GmbH" },
- { 39371, "deron Consulting GmbH" },
- { 39372, "Teo Technologies, Inc." },
- { 39373, "Cooltech srl" },
- { 39374, "TDK Technologies, LLC" },
- { 39375, "Xtronix Ltd" },
- { 39376, "Gigalan" },
- { 39377, "g2b Holdings Inc." },
- { 39378, "WAO Corporation" },
- { 39379, "Lab M, llc" },
- { 39380, "Fysisch-Mathematische Faculteitsvereniging" },
- { 39381, "Daggerpoint Technologies" },
- { 39382, "JSC \"ZHASO\"" },
- { 39383, "Flex Valley srl" },
- { 39384, "CRYPTAS it-Security GmbH" },
- { 39385, "M.M. Elektrolab" },
- { 39386, "Ultra Electronics - Advanced Tactical Systems" },
- { 39387, "Alpha Direct Services" },
- { 39388, "Online Classifieds Australia" },
- { 39389, "Beaulaton" },
- { 39390, "Baycom Technology Co.,Ltd" },
- { 39391, "H&L Instruments, LLC" },
- { 39392, "jameskinnaird.ca" },
- { 39393, "Global Reach Technology Limited" },
- { 39394, "Direccion General de Escuela Nacional Preparatoria" },
- { 39395, "ELDIS Pardubice, s.r.o." },
- { 39396, "Zygma LLC" },
- { 39397, "amitego engineering GmbH (formerly 'ToolBox Solution GmbH')" },
- { 39398, "HvS-Consulting AG" },
- { 39399, "Gumilyov Eurasian National University" },
- { 39400, "Institut f\0303\0274r angewandte Funksystemtechnik GmbH" },
- { 39401, "Tilburg University" },
- { 39402, "B2F Concept" },
- { 39403, "GEBIT Solutions GmbH" },
- { 39404, "Keirex Technology Inc." },
- { 39405, "Yieldbroker Pty Limited" },
- { 39406, "Benu Networks, Inc." },
- { 39407, "Explorys" },
- { 39408, "Clark State Community College" },
- { 39409, "b3Lateral Ltd" },
- { 39410, "Ideco" },
- { 39411, "Ongoing Warehouse AB" },
- { 39412, "ALBEDO Telecom SL" },
- { 39413, "SD Worx VZW" },
- { 39414, "Domo, Inc." },
- { 39415, "MicroStep-MIS spol. s r.o." },
- { 39416, "Metropolitan Transportation Authority" },
- { 39417, "Kukinto" },
- { 39418, "Liberty Healthcare System Inc" },
- { 39419, "NETWORK PROCESS CONTROL SYSTEMS S.L." },
- { 39420, "Delta Information Systems, Inc." },
- { 39421, "Rising-Gods UG" },
- { 39422, "JazzHands Management System" },
- { 39423, "Joshua Morgan" },
- { 39424, "hilltonic" },
- { 39425, "Verein f\0303\0274r Menschen mit K\0303\0266rper- und Mehrfachbehinderung e.V." },
- { 39426, "Medical Mutual of Ohio" },
- { 39427, "Cyrrus Products Ltd" },
- { 39428, "Himilco" },
- { 39429, "G10 Transportes - LTDA" },
- { 39430, "ownCloud Inc." },
- { 39431, "BLT Italia srl" },
- { 39432, "devcoach GbR - Michael Willers & Partner" },
- { 39433, "T8, LLC" },
- { 39434, "Isthmus SARL" },
- { 39435, "Sistemas Dypsa S.R.L" },
- { 39436, "Just Commodity Software Solutions Pte Ltd" },
- { 39437, "Six Quarks" },
- { 39438, "CB10" },
- { 39439, "FACOS" },
- { 39440, "JELETL" },
- { 39441, "George Watson's College" },
- { 39442, "Fred Hutchinson Cancer Research Center" },
- { 39443, "Banco de la Provincia del Nequ\0303\0251n S.A." },
- { 39444, "Caucasus Online LLC" },
- { 39445, "Alameda County Medical Center" },
- { 39446, "RESEARCH CONCEPTS, INC." },
- { 39447, "Career Partner GmbH" },
- { 39448, "Swiss Mideast Finance Group AG" },
- { 39449, "UBI sistemi e Servizi S.c.p.a" },
- { 39450, "The Lampo Group, Inc." },
- { 39451, "Zarathustra Solucoes em Informatica" },
- { 39452, "Artemis Investment Management LLP" },
- { 39453, "Bequant S.L." },
- { 39454, "University of Scranton" },
- { 39455, "Reno A&E" },
- { 39456, "Denis Bondar" },
- { 39457, "pcsysteme.at IT Service Gmbh" },
- { 39458, "Lobster GmbH" },
- { 39459, "StoFey GbR" },
- { 39460, "CIPHERTELECOM" },
- { 39461, "Arachnocypher Web Services" },
- { 39462, "Damovo Belgium nv/sa" },
- { 39463, "Adaptive Networks, Inc." },
- { 39464, "Solid Instance, Inc" },
- { 39465, "ENBALA Power Networks" },
- { 39466, "NV Nederlandse Gasunie" },
- { 39467, "RISC Software Gmbh" },
- { 39468, "Kettering University" },
- { 39469, "Neosho Memorial Regional Medical Center" },
- { 39470, "MetaEmotion S.L" },
- { 39471, "El Centro Regional Medical Center" },
- { 39472, "Karsten Eberding" },
- { 39473, "TGW Limited" },
- { 39474, "Kaleva Oy" },
- { 39475, "TUIR WARTA S.A." },
- { 39476, "Antinea Software" },
- { 39477, "American Bureau of Shipping (ABS)" },
- { 39478, "Andi Miller Engineering Services" },
- { 39479, "sysangels e.U." },
- { 39480, "BC Hydro" },
- { 39481, "WWPass Corporation" },
- { 39482, "Pieceable Software, Inc." },
- { 39483, "Eneo Tecnologia S.L." },
- { 39484, "The University of Connecticut Health Center" },
- { 39485, "EUCAST Co., Ltd." },
- { 39486, "ChongQing TrunkSoft Technology Co., LTD." },
- { 39487, "Wavestore Limited" },
- { 39488, "Plexipi Kft." },
- { 39489, "EZYield" },
- { 39490, "Data Security Systems Solutions Pte Ltd" },
- { 39491, "Eleiss" },
- { 39492, "Steven Denzinger" },
- { 39493, "Br\0303\0274ckenkopf e.v." },
- { 39494, "comBerg Computersysteme" },
- { 39495, "CHU de Charleroi" },
- { 39496, "Arch Systems, Inc." },
- { 39497, "EMSYS Design Inc" },
- { 39498, "Peerpath" },
- { 39499, "Flowmon Networks a.s. (formerly 'INVEA-TECH a.s.')" },
- { 39500, "Sumatronic AG" },
- { 39501, "Bayerische Medien Technik (bmt) GmbH" },
- { 39502, "Aaron Wolfe" },
- { 39503, "Adsalsa Publicidad, S.L." },
- { 39504, "CTI Group (Holdings), Inc." },
- { 39505, "Lingo Systems SA de CV" },
- { 39506, "Qalixa Solutions AB" },
- { 39507, "Kreuzer-bb networking" },
- { 39508, "Schmitz RZ Consult GmbH" },
- { 39509, "Totemo AG" },
- { 39510, "Institut de Biologie Structurale" },
- { 39511, "Schiavone Org" },
- { 39512, "saman insurance" },
- { 39513, "MacAllister Software" },
- { 39514, "Associated Engineering" },
- { 39515, "J\0303\0265hvi Vallavalitsus" },
- { 39516, "Indisys" },
- { 39517, "Evernote Corp." },
- { 39518, "KAGE Systems Ltd" },
- { 39519, "HavenSec, Inc." },
- { 39520, "Qualycloud" },
- { 39521, "xG Technology" },
- { 39522, "Maldivica Inc" },
- { 39523, "Aliphcom" },
- { 39524, "Nacogdoches Memorial Hospital" },
- { 39525, "Creotech Instruments SA" },
- { 39526, "LogicLore Incorporation" },
- { 39527, "Motaavi, LLC" },
- { 39528, "ADDIT LTD" },
- { 39529, "Luga Technology Ltd." },
- { 39530, "6cure SAS" },
- { 39531, "n-Tier construct GmbH" },
- { 39532, "Quanex Building Products" },
- { 39533, "Armadillo Software" },
- { 39534, "Mobiata, LLC" },
- { 39535, "modusoft GmbH" },
- { 39536, "RBNetwork" },
- { 39537, "Supreme Education Council" },
- { 39538, "Bright Pattern, Inc" },
- { 39539, "Northwest Hospital & Medical Center" },
- { 39540, "Saphety Level - Trusted Services, S.A." },
- { 39541, "Blacklight IT UG" },
- { 39542, "Calgary Co-operative Association Limited" },
- { 39543, "GNUstep (gnu.org)" },
- { 39544, "igolgi Inc." },
- { 39545, "Winters Broadband LLC" },
- { 39546, "Infoage" },
- { 39547, "WakeMed Health and Hospitals" },
- { 39548, "Beijing TopShine Technology Co., Ltd. " },
- { 39549, "DataCore Systems Ltd" },
- { 39550, "KE2 Therm Solutions" },
- { 39551, "UAB SignDigi" },
- { 39552, "Dalian Co-Edifice Video Technology Co. Ltd." },
- { 39553, "Beijing Dynamic Power Co.,Ltd." },
- { 39554, "D'Crypt Private Limited" },
- { 39555, "gyselroth GmbH" },
- { 39556, "University of Zurich, Institute of Mathematics" },
- { 39557, "Horoquartz" },
- { 39558, "that's it gmbh" },
- { 39559, "derEDVdienst" },
- { 39560, "Lead Innovation System Technology Corp." },
- { 39561, "XSD Zrt." },
- { 39562, "Greenhills IT Ltd." },
- { 39563, "Smart Messaging Solution Pte Ltd" },
- { 39564, "Yunnan Technician College" },
- { 39565, "Birzeit University" },
- { 39566, "Idealo Internet GmbH" },
- { 39567, "DJIGZO" },
- { 39568, "Liberologico Srl" },
- { 39569, "max4G, Inc." },
- { 39570, "POOL4TOOL AG" },
- { 39571, "L33 NETWORKS" },
- { 39572, "TCPWave Inc" },
- { 39573, "Sauper Associates, Inc." },
- { 39574, "Guido Berhoerster" },
- { 39575, "Global Patient Identifiers, Inc." },
- { 39576, "ElvenStar Productions" },
- { 39577, "GlobeOSS Sdn. Bhd." },
- { 39578, "Sven van den Heuvel GmbH" },
- { 39579, "Hearst Business Media" },
- { 39580, "dual-PROJEKT Pawe\0305\0202 Szmidt" },
- { 39581, "ZPBE ENERGOPOMIAR-ELEKTRYKA" },
- { 39582, "WebSatMedia Pte Ltd" },
- { 39583, "Egemin Automation" },
- { 39584, "Hannoversche Volksbank eG" },
- { 39585, "Kleyling Spedition GmbH" },
- { 39586, "Datasiel Spa" },
- { 39587, "GuideStone Financial Resources of the Southern Baptist Convention" },
- { 39588, "SELECTRIC Nachrichten-Systeme GmbH" },
- { 39589, "eBackpack, Inc." },
- { 39590, "Fundaci\0303\0263 privada i2cat" },
- { 39591, "Aux Sable Liquid Products LP" },
- { 39592, "Sermotec Communications GmbH" },
- { 39593, "Suofeiya Home Collection Co., Ltd" },
- { 39594, "Point Of Pay Pty Ltd" },
- { 39595, "GuangZhou JoySim Network Technology Co.,Ltd." },
- { 39596, "Zhejiang Broadcast&Television Technology Co.,Ltd." },
- { 39597, "Chongqing Chongyou Communication Technologies Co,Ltd." },
- { 39598, "INFACOM S.L." },
- { 39599, "Mzinga, Inc." },
- { 39600, "Capital Bank" },
- { 39601, "Vector 3 S.A." },
- { 39602, "Regional Medical Center at Memphis" },
- { 39603, "DTTec Consulting" },
- { 39604, "Accuenergy (CANADA) Inc. " },
- { 39605, "GlobeCast France" },
- { 39606, "GoldKey Security Corporation" },
- { 39607, "NX Information Services" },
- { 39608, "Palosanto Solutions S.A." },
- { 39609, "next-pbx" },
- { 39610, "BITLANCER LLC" },
- { 39611, "Video Design Software Inc." },
- { 39612, "Stantec Consulting" },
- { 39613, "Sawridge Systems India Pvt Ltd" },
- { 39614, "Valid" },
- { 39615, "2008mcitp.com" },
- { 39616, "GlasgowNet" },
- { 39617, "PDT Partners, LLC" },
- { 39618, "Cloud Assist" },
- { 39619, "Institutul pentru Tehnologii Avansate" },
- { 39620, "JANUS srl" },
- { 39621, "SOPLEX Consult GmbH" },
- { 39622, "Intermas France S.A.S" },
- { 39623, "PCS Systemtechnik GmbH" },
- { 39624, "herold&sch\0303\0266nsteiner networks UG haftungsbeschr\0303\0244nkt " },
- { 39625, "Kraft Foods" },
- { 39626, "Hackerspace Warsaw" },
- { 39627, "Rhinobee" },
- { 39628, "Vegayan Systems" },
- { 39629, "Auxilium" },
- { 39630, "mailplus.co.at" },
- { 39631, "mocube" },
- { 39632, "Hyro Pty Ltd" },
- { 39633, "Dos Tek Group" },
- { 39634, "HighGrand Technology" },
- { 39635, sminmpec_unknown }, /* (Added by Wireshark) */
- { 39636, "Comet Computer GmbH" },
- { 39637, "IMP Solutions Network Operations" },
- { 39638, "Cornerstone Backup, Inc." },
- { 39639, "Vigilent Corporation" },
- { 39640, "Europalab Networks" },
- { 39641, "SPICE DIGITAL LIMITED " },
- { 39642, "S3 s.r.l." },
- { 39643, "WedaCon Informationstechnologien GmbH" },
- { 39644, "The University of North Carolina at Greensboro" },
- { 39645, "Anglo-American School of Moscow" },
- { 39646, "Mikro Odeme Sistemleri A.S" },
- { 39647, "iNic AS" },
- { 39648, "Enovacom" },
- { 39649, "General Data Technology Co. Ltd." },
- { 39650, "AEMO Ltd" },
- { 39651, "ComTecT " },
- { 39652, "The William Carter Company" },
- { 39653, "Imbio" },
- { 39654, "TISSOT" },
- { 39655, "Humbug Telecom Labs Limited" },
- { 39656, "Nationale Nederlanden (formerly 'ING Insurance /IM')" },
- { 39657, "Administration of the Vladimir Region" },
- { 39658, "TollNet a.s." },
- { 39659, "NSD CO., LTD." },
- { 39660, "Tarana Wireless Inc" },
- { 39661, "Allianz Managed Operations and Services SE - oneWeb" },
- { 39662, "metafinanz Informationssysteme GmbH" },
- { 39663, "RENK AG" },
- { 39664, "Lingua-IT Sp. z o.o." },
- { 39665, "Fat Mongoose Technologies, Inc." },
- { 39666, "Consult A Nerd" },
- { 39667, "CodeMettle, LLC" },
- { 39668, "Iridium Digital Systems Corporation" },
- { 39669, "Koning Corporation" },
- { 39670, "knaute.info" },
- { 39671, "NEXTDC Ltd" },
- { 39672, "Elite Automa\0303\0247\0303\0243o Com\0303\0251rcio e Servi\0303\0247os Ltda ME" },
- { 39673, "Talon Storage Solutions" },
- { 39674, "OctoGate GmbH" },
- { 39675, "Vast Array Corporation" },
- { 39676, "Pason Systems Corp." },
- { 39677, "Archdata SPRL" },
- { 39678, "American Domain Names LLC" },
- { 39679, "JSC Tekhdiagnostika" },
- { 39680, "Nozhup B.V." },
- { 39681, "Catalyst Repository Systems" },
- { 39682, "Exegin Technologies Limited" },
- { 39683, "Single Touch Interactive" },
- { 39684, "Genteel.org" },
- { 39685, "WTG Muenster" },
- { 39686, "Acquirente Unico" },
- { 39687, "JSC Aprelevka X-ray factory" },
- { 39688, "interactingstars.org" },
- { 39689, "BRF" },
- { 39690, "IPACCT Ltd." },
- { 39691, "embeddeers GmbH" },
- { 39692, "Ideal Mahdban Engineering Services" },
- { 39693, "N-Partner" },
- { 39694, "Diamont Equipamentos Especiais Ltda" },
- { 39695, "FRAFOS GmbH" },
- { 39696, "Banglalion Communications Limited" },
- { 39697, "Intelligent Security Systems" },
- { 39698, "Mianyang Netop Telecom Equipment Co.,Ltd" },
- { 39699, "Robustel Technologies" },
- { 39700, "Sonic Boom Wellness" },
- { 39701, "Mangelal & Sons" },
- { 39702, "Linux Solutions" },
- { 39703, "SASCO" },
- { 39704, "Unyonsys" },
- { 39705, "skslater.net" },
- { 39706, "ADTEK" },
- { 39707, "Cumbria Constabulary" },
- { 39708, "Telent GmbH * A division of euromicron Group" },
- { 39709, "Broadcast Graphics and Control Limited" },
- { 39710, "Wentworth-Douglass Hospital" },
- { 39711, "Radiobolaget Gunhamn och \0303\0205sbrink AB" },
- { 39712, "QSD Sistemi Srl" },
- { 39713, "Abertis telecom" },
- { 39714, "Associacio Cultural TGK" },
- { 39715, "DominionTech Computer Services" },
- { 39716, "University of South Alabama Health System" },
- { 39717, "Westerholt" },
- { 39718, "Silverflare Ltd" },
- { 39719, "TCF Financial Corporation" },
- { 39720, "Maryland Stadium Authority" },
- { 39721, "DUCSS" },
- { 39722, "Underpin Taiwan Ltd." },
- { 39723, "Logistics Energy Korea Co., Ltd." },
- { 39724, "[j]karef GmbH" },
- { 39725, "JeraSoft" },
- { 39726, "British National Party" },
- { 39727, "IT Ihme" },
- { 39728, "Bessels IT" },
- { 39729, "Cilutions, Digital Media Bridge" },
- { 39730, "SHANGHAI MEXON COMMUNICATION TECHNOLOGY.,LTD" },
- { 39731, "Emind Systems Ltd" },
- { 39732, "Shenzhen Smart Cube Intelligent Technology Co.,LTD" },
- { 39733, "Boss Info AG" },
- { 39734, "wujiman.net" },
- { 39735, "Main Street Softworks, Inc." },
- { 39736, "ACTIVE SYSTEM MANAGEMENT" },
- { 39737, "CommercePack" },
- { 39738, "IBS America, Inc." },
- { 39739, "Madscientistclub" },
- { 39740, "PSA Zeebrugge International Port nv" },
- { 39741, "Egnyte Inc." },
- { 39742, "Soci\0303\0251t\0303\0251 des ing\0303\0251nieurs Arts et M\0303\0251tiers" },
- { 39743, "Shanghai Dongzhou Lawton Telecom Technologies Co.,ltd" },
- { 39744, "EDESA" },
- { 39745, "OPower, Inc." },
- { 39746, "MEITSUDENSHI" },
- { 39747, "Zhejiang Uniview Technologies Co., Ltd." },
- { 39748, "Intesyn S.r.l." },
- { 39749, sminmpec_unknown }, /* (Added by Wireshark) */
- { 39750, "Union Hospital Health Group" },
- { 39751, "Mobintegro" },
- { 39752, "HootSuite Media Inc" },
- { 39753, "Vignold Workflow & New Media GmbH" },
- { 39754, "HAVI Logistics IS GmbH" },
- { 39755, "Saint Mondiale PTE LTD" },
- { 39756, "St. Johns County School District" },
- { 39757, "Schom\0303\0244cker GmbH" },
- { 39758, "imoxion" },
- { 39759, "LOREME" },
- { 39760, "New Cosmos Electric Co., Ltd." },
- { 39761, "Galiam Capital, LLC" },
- { 39762, "Radio Mobile Access, Inc" },
- { 39763, "Adams County School District 50" },
- { 39764, "Transoft (Shanghai) Inc." },
- { 39765, "Keydap" },
- { 39766, "Null Pointer Inc." },
- { 39767, "TomTom International BV" },
- { 39768, "UAB Technologiju ir inovaciju centras " },
- { 39769, "Italian Grid Infrastructure (IGI)" },
- { 39770, "Martin Neimeier" },
- { 39771, "SIP Express Media Server" },
- { 39772, "Melchinger Systemhaus UG" },
- { 39773, "Pannon Site Ltd." },
- { 39774, "Criena Network" },
- { 39775, "Capitol Lien Records & Research, Inc." },
- { 39776, "Andreas Strey" },
- { 39777, "Simon Arlott" },
- { 39778, "Young Master Supplies & General Enterprises Ltd" },
- { 39779, "UCLA Anderson School of Managemetn" },
- { 39780, "Pikopiko Network" },
- { 39781, "T&W" },
- { 39782, "Hangzhou I'converge Techonoloay Co.,Ltd" },
- { 39783, "ASB Bank Limited" },
- { 39784, "National Jewish Health" },
- { 39785, "DS/2 GbR" },
- { 39786, "Travelocity.com" },
- { 39787, "Suntrust Banks, Inc." },
- { 39788, "LogoDynamic Unit GmbH" },
- { 39789, "Southwest Texas Regional Advisory Council" },
- { 39790, "Church & Dwight Co., Inc." },
- { 39791, "Unified Microsystems" },
- { 39792, "YouDotNet Limited" },
- { 39793, "World Net" },
- { 39794, "FedeRez" },
- { 39795, "Cardiothink, Inc." },
- { 39796, "BkavCA" },
- { 39797, "Contract Kitting" },
- { 39798, "Republi\0304\0215ki fond za zdravstveno osiguranje" },
- { 39799, "TELE APOSTUAK" },
- { 39800, "MTU Aero Engines GmbH" },
- { 39801, "Imagicle SpA" },
- { 39802, "Urban Airship, Inc." },
- { 39803, "IT-Box GmbH" },
- { 39804, "Ctyle Corporation" },
- { 39805, "Ingenious Med" },
- { 39806, "PrJSC \"IC SEB LIFE UKRAINE\"" },
- { 39807, "Edgewater Wireless Systems Inc." },
- { 39808, "SHINE SYSTEM" },
- { 39809, "Lonely Planet" },
- { 39810, "KNET Co., Ltd." },
- { 39811, "ZaPOP (Pty) Ltd" },
- { 39812, "UC RUSAL" },
- { 39813, "Public Joint-Stock Company \"National Depository of Ukraine\"" },
- { 39814, "SOLYSTIC" },
- { 39815, "iphion B.V." },
- { 39816, "Accelatis" },
- { 39817, "cl0secall.net" },
- { 39818, "Anator" },
- { 39819, "VaporPunk, Inc." },
- { 39820, "Cyssea" },
- { 39821, "EDINEC SRL" },
- { 39822, "iSchemaView, Inc." },
- { 39823, "Consorci Administraci\0303\0263 Oberta de Catalunya" },
- { 39824, "Smart Grid Networks" },
- { 39825, "Public Safety canada" },
- { 39826, "Accelerated Servers, Inc" },
- { 39827, "Celal Bayar University" },
- { 39828, "ATP" },
- { 39829, "Asetek" },
- { 39830, "Greeve" },
- { 39831, "Museu de Astronomia e Ciencias Afins" },
- { 39832, "LogicMonitor Inc" },
- { 39833, "hangzhou e-vision electronic system engineering corp." },
- { 39834, "Fata Informatica" },
- { 39835, "JANTEQ CORPORATION" },
- { 39836, "Sindikat \0342\0200\0234Akademska solidarnost\0342\0200\0235" },
- { 39837, "A123 Systems, Inc." },
- { 39838, "University of Bahrain" },
- { 39839, "Gaftech" },
- { 39840, "ICAR CNR" },
- { 39841, "Danske Bank" },
- { 39842, "Communaut\0303\0251 Urbaine du Grand Toulouse" },
- { 39843, "Precogs Software SAS" },
- { 39844, "MAPPER Lithography" },
- { 39845, "Dr. Schenk IT-Consulting GmbH" },
- { 39846, "UNILINK SA" },
- { 39847, "ATS GRUP LTD" },
- { 39848, "Voximage" },
- { 39849, "Arbiter Systems" },
- { 39850, "Ross Opticians Inc." },
- { 39851, "HLT Software GmbH" },
- { 39852, "Clima-Tech Coporation" },
- { 39853, "BSI Business Systems Integration AG" },
- { 39854, "eVolution Networks" },
- { 39855, "FCP Fritsch, Chiari & Partner ZT GmbH" },
- { 39856, "Beijing Qibadian Information Technology CO., Ltd." },
- { 39857, "CYSM Ltd." },
- { 39858, "Kirin-gumi" },
- { 39859, "Clemax,Inc" },
- { 39860, "OGS IT-Solutions" },
- { 39861, "Orbitz Worldwide, LLC." },
- { 39862, "ComSonics,Inc." },
- { 39863, "World Vision US" },
- { 39864, "WEBeDoctor, Inc." },
- { 39865, "Slabinfo E.U." },
- { 39866, "Advanced Network Devices" },
- { 39867, "Linedata" },
- { 39868, "Miami International Holdings" },
- { 39869, "Illumina, Inc" },
- { 39870, "Telesis A.S." },
- { 39871, "Trans Industrias Electronicas" },
- { 39872, "CIPFP Ausias March" },
- { 39873, "Silicon Labs (formerly 'Ember Corporation')" },
- { 39874, "Asmlab Limited" },
- { 39875, "Beijing GuangXinYingKe Technology Co.,Ltd" },
- { 39876, "7-Technologies A/S" },
- { 39877, "VCE Vienna Consulting Engineers" },
- { 39878, "Le Aquile Unita' Cinofile da Soccorso Ravennate" },
- { 39879, "Amplitude Systemes" },
- { 39880, "Thomas Wiedstruck - Informationstechnik" },
- { 39881, "EyesOfNetwork" },
- { 39882, "Greater Pittsburgh Glass & Door" },
- { 39883, "Sysacom" },
- { 39884, "T-Platforms" },
- { 39885, "StorONE" },
- { 39886, "Kurt Kincaid Consulting" },
- { 39887, "localroot.de" },
- { 39888, "Ness Computing, Inc." },
- { 39889, "icecreek Software und Services" },
- { 39890, "Beijing Forsun Technology Co.,Ltd" },
- { 39891, "MNUCIB VNII PVTI" },
- { 39892, "v-ic" },
- { 39893, "Energierversorgung Mittelrhein GmbH" },
- { 39894, "Haley Technologies Inc. dba PC PitStop" },
- { 39895, "OpenX" },
- { 39896, "The Cleveland Clinic Foundation" },
- { 39897, "Ryder System, Inc. " },
- { 39898, "AtrilA GmbH" },
- { 39899, "Virginia Hospital Center" },
- { 39900, "INITE SC" },
- { 39901, "Crypto4A" },
- { 39902, "inqa.be" },
- { 39903, "Pivotal Technologies Pty Ltd" },
- { 39904, "Sascha Wolf" },
- { 39905, "eA-light Arbeitsgemeinschaft der \0303\0204KNO und \0303\0204KWL" },
- { 39906, "Zwissler Technologies, LLC" },
- { 39907, "LinkSquare" },
- { 39908, "china beijing koal Company" },
- { 39909, "OJSC GUTA-BANK" },
- { 39910, "Fusionex" },
- { 39911, "ltd Arhangelskoe predprijatie protivopozharnoj avtomatiki" },
- { 39912, "State Grid Electric Power Research Institute" },
- { 39913, "ELONG Corp" },
- { 39914, "ZPAS S.A." },
- { 39915, "wiba10" },
- { 39916, "KeyLemon SA" },
- { 39917, "KUFP \0342\0200\0234Medaparatura\0342\0200\0235, ALC" },
- { 39918, "Cardiocore" },
- { 39919, "hybris GmbH " },
- { 39920, "wintek System" },
- { 39921, "UKFast.Net Ltd" },
- { 39922, "SDN SPA" },
- { 39923, "Seres" },
- { 39924, "Chase Paymentech" },
- { 39925, "Excellent S.A." },
- { 39926, "Aspen Systems" },
- { 39927, "Voronezh Cityhall" },
- { 39928, "Dmitry Ponomarev" },
- { 39929, "Dingbox" },
- { 39930, "Rewired State" },
- { 39931, "openNetMon" },
- { 39932, "Mindware" },
- { 39933, "Technology Space Integration Limited" },
- { 39934, "TopHat Software" },
- { 39935, "Transas Marine International" },
- { 39936, "Cheshire Medical Center" },
- { 39937, "Netspective" },
- { 39938, "Inca Networks Inc." },
- { 39939, "Lansing Community College" },
- { 39940, "Oregon Scientific Global Distribution Limited" },
- { 39941, "KUZUMI Electronics,Inc." },
- { 39942, "eWorld Technologies Ltd." },
- { 39943, "University of Santo tomas" },
- { 39944, "shenzhen Catic Bit Communication Technology Co.LTD" },
- { 39945, "Tecblazer" },
- { 39946, "EV Group GmbH" },
- { 39947, "B PLUS TV a.s." },
- { 39948, "Ping Communication" },
- { 39949, "Beijing Arrays Medical Imaging Technology Development Co.,td" },
- { 39950, "Altersign, LLC." },
- { 39951, "Town Sports International" },
- { 39952, "SecurePKI" },
- { 39953, "SERVICE DEPARTEMENTAL D INCENDIE ET DE SECOURS DE LA DROME" },
- { 39954, "RWetc. s.r.o." },
- { 39955, "SMP Bank OJSC" },
- { 39956, "Vale" },
- { 39957, "Columbus Regional Heathcare System, Inc." },
- { 39958, "Withings" },
- { 39959, "CIRCUTOR, SA" },
- { 39960, "cktsoi.com" },
- { 39961, "Nicira, Inc." },
- { 39962, "Kern Scientific Co." },
- { 39963, "AGCO Corporation" },
- { 39964, "EIDEN Co,Ltd" },
- { 39965, "Trans Sped" },
- { 39966, "Luminoso, LLC" },
- { 39967, "Ethersex Project" },
- { 39968, "Toya Technologies Inc." },
- { 39969, "United Energy Pakistan Limited" },
- { 39970, "HandySolutions (CJSC)" },
- { 39971, "Shenzhen Skyee Optical Fiber Communication Technology Ltd." },
- { 39972, "TUV RHEINLAND IBERICA SA " },
- { 39973, "Janmedia Interactive Sp. z o.o." },
- { 39974, "Garland Technology LLC" },
- { 39975, "COGNEX" },
- { 39976, "Southwestern University" },
- { 39977, "Deltix, Inc." },
- { 39978, "Daniel Theodoro Consultoria em Informatica Ltd." },
- { 39979, "ConicIT Ltd." },
- { 39980, "Nocturnal Aviation" },
- { 39981, "OPT SP CO.,LTD." },
- { 39982, "Icareus Ltd" },
- { 39983, "Project Engineering srl" },
- { 39984, "Shenzhen Process Tech.Co.,Ltd." },
- { 39985, "GRZ IT Center Linz GmbH" },
- { 39986, "Florida Department of Education" },
- { 39987, "Pathmaker Group, Inc." },
- { 39988, "Reserved" },
- { 39989, "LINE SE\0303\0221ALIZACI\0303\0223N ELECTR\0303\0223NICA S.L." },
- { 39990, "Center of Information Technologies of Volgograd region (http:\\\\citvo.ru)" },
- { 39991, "Aitia International Inc." },
- { 39992, "davidhowland.com" },
- { 39993, "Owl Forestry" },
- { 39994, "Echo360" },
- { 39995, "Plymouth University" },
- { 39996, "sys4 AG" },
- { 39997, "Netsumo Ltd" },
- { 39998, "Beijing Lanxum New Technology" },
- { 39999, "Prodo Telecom (An OT Company)" },
- { 40000, "Kapsi Internet-k\0303\0244ytt\0303\0244j\0303\0244t ry" },
- { 40001, "WineSOFT" },
- { 40002, "Open System Co., Ltd." },
- { 40003, "Karjalan Paperi Oy" },
- { 40004, "Cargo Service Nord GmbH" },
- { 40005, "5p. GmbH & Co. KG" },
- { 40006, "Reevex, LLC" },
- { 40007, "Universal Research Solutions, LLC" },
- { 40008, "Virtual Connect Technologies, Inc" },
- { 40009, "Oasiswork SARL" },
- { 40010, "MSMC Informatica Ltda" },
- { 40011, "Fripost" },
- { 40012, "Hatomi Sp. z o.o." },
- { 40013, "lintloaf.net" },
- { 40014, "Progress Rail Services Inspection & Information Systems " },
- { 40015, "H\0303\0274ttner & Werfling Softwareentwicklung GbR" },
- { 40016, "MAS Technology" },
- { 40017, "ARKS LLC" },
- { 40018, "JSC Bank Vologzhanin" },
- { 40019, "Isbak A.S." },
- { 40020, "Gutenberg Networks" },
- { 40021, "Viscount Systems Inc" },
- { 40022, "Sirius Software, Inc." },
- { 40023, "LLC \" NPF DUKON\"" },
- { 40024, "iNovo Broadband, Inc." },
- { 40025, "Tym3" },
- { 40026, "Soci\0303\0251t\0303\0251 d\0342\0200\0231Informatique et de Syst\0303\0250mes" },
- { 40027, "Aki Network" },
- { 40028, "TAKOTA, LTD" },
- { 40029, "leadtone" },
- { 40030, "RADOM, s.r.o." },
- { 40031, "Oblako10, Ltd." },
- { 40032, "Ultra Electronics, Precision Air & Land Systems" },
- { 40033, "Radio Design" },
- { 40034, "DuraSpace" },
- { 40035, "CellSec Inc." },
- { 40036, "Vertafore PLM" },
- { 40037, "Inceptum d.o.o" },
- { 40038, "Livestream, LLC" },
- { 40039, "MySysAdmin.DE" },
- { 40040, "Stichting IFCAT Foundation" },
- { 40041, "\0320\0236\0320\0236\0320\0236 \0302\0253\0320\0255\0320\0273\0320\0265\0320\0272\0321\0202\0321\0200\0320\0276\0320\0275\0320\0275\0321\0213\0320\0265 \0320\0236\0321\0204\0320\0270\0321\0201\0320\0275\0321\0213\0320\0265 \0320\0241\0320\0270\0321\0201\0321\0202\0320\0265\0320\0274\0321\0213 (\0320\0277\0321\0200\0320\0276\0320\0265\0320\0272\0321\0202\0320\0270\0321\0200\0320\0276\0320\0262\0320\0260\0320\0275\0320\0270\0320\0265 \0320\0270 \0320\0262\0320\0275\0320\0265\0320\0264\0321\0200\0320\0265\0320\0275\0320\0270\0320\0265)\0302\0273 /OOO \0342\0200\0234Elektronnye Ofisnye Sistemy (proektirovanie i vnedrenie)/" },
- { 40042, "Stiftelsen Chalmers Studentbost\0303\0244der" },
- { 40043, "NewPace Technology Development Inc.\0342\0200\0216" },
- { 40044, "PC-Doctor, Inc." },
- { 40045, "Nexenta Systems, Inc." },
- { 40046, "CREDIT EUROPE BANK Ltd." },
- { 40047, "Korex Networks s.r.o." },
- { 40048, "Information Display Company" },
- { 40049, "Red Bend" },
- { 40050, "Microtech Andrzej Sokulski" },
- { 40051, "RELEASE14" },
- { 40052, "Energie AG Ober\0303\0266sterreich Data GmbH" },
- { 40053, "Sistemas Avanzados de Dise\0303\0261o" },
- { 40054, "4UR" },
- { 40055, "Yuchengtech" },
- { 40056, "AccuBeat Ltd" },
- { 40057, "Reserved" },
- { 40058, "Vitaliy Tokarev" },
- { 40059, "Datagram, Inc." },
- { 40060, "Leo-Li com." },
- { 40061, "Bay Area Hospital" },
- { 40062, "Trevor and Emily Mouat King" },
- { 40063, "Qintara, Inc." },
- { 40064, "Optima Lab srl" },
- { 40065, "Larch networks" },
- { 40066, "Saliens Information Systems Ltd." },
- { 40067, "LinTech JSC" },
- { 40068, "The Venus Project" },
- { 40069, "enprovia Software Engineering s. r. o." },
- { 40070, "RetailNext" },
- { 40071, "P. St. Onge" },
- { 40072, "techlab.jp (formerly 'scminfo.net')" },
- { 40073, "Lutron Electronics Company, Inc" },
- { 40074, "Energy Solutions Ltd." },
- { 40075, "SPL-Xdemat" },
- { 40076, "SiFox" },
- { 40077, "Austrian Red Cross" },
- { 40078, "Open Grid Computing" },
- { 40079, "Electronic Systems Protection, Inc." },
- { 40080, "IIHE - Inter-university Institute for High Energies" },
- { 40081, "Shanghai Myway Technology, Inc." },
- { 40082, "NuGardt Software UG (haftungsbeschr\0303\0244nkt)" },
- { 40083, "Accelerated Concepts, Inc." },
- { 40084, "Ingalls Memorial Hospital" },
- { 40085, "Stage Tec GmbH" },
- { 40086, "Inworx Group" },
- { 40087, "NIDO Informatica" },
- { 40088, "Voixtel Telecom" },
- { 40089, "NetAmbit Infosource & E-services Pvt. Ltd." },
- { 40090, "Netline Communications Technologies Ltd " },
- { 40091, "A.C.T.I.C asbl" },
- { 40092, "Wiwynn Corporation" },
- { 40093, "Zhuhai Seine Technology Co., Ltd" },
- { 40094, "SecuEnv" },
- { 40095, "G4S Engenharia e Sistemas S. A." },
- { 40096, "ROICX" },
- { 40097, "WorldPay" },
- { 40098, "update software" },
- { 40099, "North Carolina Healthcare Exchange" },
- { 40100, "TechNet" },
- { 40101, "EPB Fiber Optics" },
- { 40102, "Pinger, Inc." },
- { 40103, "Fashion Days" },
- { 40104, "BamseNet GmbH" },
- { 40105, "APN Promise S.A." },
- { 40106, "Polara Engineering, Inc." },
- { 40107, "Michael Reschly" },
- { 40108, "Amber Buddha" },
- { 40109, "SigAlgo Technology Ltd" },
- { 40110, "EGNATIA" },
- { 40111, "Deloitte Services & Investments nv" },
- { 40112, "Ethernix" },
- { 40113, "Blue Mountain Health System" },
- { 40114, "Guavatech" },
- { 40115, "V & B Ingenieria S.A. de C.V." },
- { 40116, "DCO4 Sp. z o.o." },
- { 40117, "Facult\0303\0251 des Sciences et Technologies - Universit\0303\0251 de Lorraine" },
- { 40118, "CNPC LOGGING Co.Ltc" },
- { 40119, "Terralink LLC" },
- { 40120, "Pamlock AB" },
- { 40121, "Methodia Inc" },
- { 40122, "Beijing Cyber Stone Information Technology Corp. Ltd." },
- { 40123, "Hangzhou dunchong Technology Co.,Ltd." },
- { 40124, "Kernkraftwerk Leibstadt AG" },
- { 40125, "Travelfusion Ltd" },
- { 40126, "real virtual GmbH" },
- { 40127, "Monolith Software" },
- { 40128, "Beijing Photon-Byte Technology Co., Ltd." },
- { 40129, "MarLukKi Centre" },
- { 40130, "Asguard Networks" },
- { 40131, "Nuvem Networks Inc" },
- { 40132, "Telemedia Argentina S.A." },
- { 40133, "FIX TELECOM" },
- { 40134, "Nexum, Inc" },
- { 40135, "Spawn Labs, Inc." },
- { 40136, "Comviva Technologies Limited" },
- { 40137, "University of Pardubice" },
- { 40138, "DataNET21 Solutions GmbH" },
- { 40139, "GRN Serveis Telematics" },
- { 40140, "AIRTEL ATN" },
- { 40141, "InterConnect Brasil" },
- { 40142, "MODULISTIC.NET" },
- { 40143, "CookieConcepts" },
- { 40144, "Understanding SharePoint LLC" },
- { 40145, "STRYME GmbH" },
- { 40146, "Ascent Communication Technology" },
- { 40147, "IT-Technology GmbH" },
- { 40148, "Thorsten Pape" },
- { 40149, "PFA Pension" },
- { 40150, "Kenium" },
- { 40151, "G\0302\0262mobility SA" },
- { 40152, "Trimtab.ca" },
- { 40153, "Abraxas Informatik AG" },
- { 40154, "North Caucasian Federal University" },
- { 40155, "Groundhog Technologies" },
- { 40156, "WVNET GmbH" },
- { 40157, "Medicalgorithmics" },
- { 40158, "Gage Marketing Group, LLC" },
- { 40159, "Paul Reinhart AG" },
- { 40160, "NJVC" },
- { 40161, "Canal Street Securities" },
- { 40162, "McCarthy Tetrault" },
- { 40163, "Kamidama Breedables" },
- { 40164, "OOO Avtomatizirovannye sistemy (Automated Systems, LTD)" },
- { 40165, "morrow.me.uk" },
- { 40166, "Omega Tech Consulting Group LLC" },
- { 40167, "NS Reizigers B.V." },
- { 40168, "Etransmedia Technology" },
- { 40169, "3xA Security AB" },
- { 40170, "NP Networks, Inc." },
- { 40171, "HF. Radio Communication Technology Co., Ltd " },
- { 40172, "Closed joint stock company \0342\0200\0234StandarTelecom\0342\0200\0235" },
- { 40173, "Hoermann Solutions" },
- { 40174, "BlueFinch" },
- { 40175, "RIPAS" },
- { 40176, "Consulfem" },
- { 40177, "Right&Above" },
- { 40178, "Noolitic" },
- { 40179, "aplicacionesYredes.com" },
- { 40180, "HTL Kaindorf - Mechatronik" },
- { 40181, "CyberCenter S.A." },
- { 40182, "Sichuan Cable TV Network Co., Ltd." },
- { 40183, "con terra GmbH" },
- { 40184, "NovInTeh LLC" },
- { 40185, "Esa Unggul University" },
- { 40186, "DA/Page, LLC" },
- { 40187, "Aclima, Inc." },
- { 40188, "United States Infrastructure Corporation" },
- { 40189, "Charlton Labs" },
- { 40190, "JCL-eCommerce GmbH" },
- { 40191, "Lylid Net Ltd." },
- { 40192, "ITQuality" },
- { 40193, "Institute of Electronic Music and Acoustics" },
- { 40194, "WaveCloud Corporation" },
- { 40195, "Zantek Pty. Ltd." },
- { 40196, "SANTOS" },
- { 40197, "JSC CROC POVOLZHYE" },
- { 40198, "Movirtu" },
- { 40199, "Szechenyi Istvan SZKI" },
- { 40200, "Anext" },
- { 40201, "Nexiway" },
- { 40202, "Primetech Ltd." },
- { 40203, "Golder Associates" },
- { 40204, "Availity, L.L.C." },
- { 40205, "Jackson Family Enterprises" },
- { 40206, "minivi" },
- { 40207, "Gerrit Beine GmbH" },
- { 40208, "S.J.M. Steffann" },
- { 40209, "Hiroshima University" },
- { 40210, "Matt-J.co.uk" },
- { 40211, "SHENZHEN MEGMEET ELECTRICAL CO.,LTD" },
- { 40212, "PHV - Confluances" },
- { 40213, "University College Northen Denmark" },
- { 40214, "ICEANS, Inventive Computer Engineering and Network Service" },
- { 40215, "ITF-EDV Froeschl GmbH" },
- { 40216, "Global Traffic Technologies, LLC" },
- { 40217, "Bertel S.p.A." },
- { 40218, "Witzig The Office Company AG" },
- { 40219, "Hirtle, Callaghan & Co." },
- { 40220, "Northwestern Michigan College" },
- { 40221, "Infrastructures Technologiques Gallium" },
- { 40222, "Family Home Care & Hospice, Inc." },
- { 40223, "molotov.ro" },
- { 40224, "Willem4Ever BV" },
- { 40225, "Image Data Systems" },
- { 40226, "xNet Solutions Inc. (formerly 'xNetBox Solutions')" },
- { 40227, "Digital One" },
- { 40228, "Valley ComputerWorks, Inc. DBA Paragus Strategic I.T. " },
- { 40229, "VizionR" },
- { 40230, "Medikon Polska Sp. z o.o." },
- { 40231, "Baptist St. Anthony's Health System" },
- { 40232, "Michel Messerschmidt" },
- { 40233, "Sanoma Media Netherlands B.V." },
- { 40234, "Andreas Zieschang" },
- { 40235, "Stadt Dortmund" },
- { 40236, "Diputaci\0303\0263 de Barcelona" },
- { 40237, "The Office of the Government Chief Information Officer of the Government of the Hong Kong Special Administrative Region" },
- { 40238, "RoutoMessaging" },
- { 40239, "Gruppo Editoriale L'Espresso spa" },
- { 40240, "OpenSky.com" },
- { 40241, "Ogden Technology Corporation" },
- { 40242, "GNS Science" },
- { 40243, "3U HOLDING AG" },
- { 40244, "SDAMO Group, LLC" },
- { 40245, "B\0303\0266ning Automationstechnologie GmbH & Co. KG" },
- { 40246, "OOO \"Laboratoriya Trehmernogo Zreniya\"" },
- { 40247, "GGS German Graduate School of Management and Law" },
- { 40248, "NPO Telecom JSC" },
- { 40249, "Vargyas Networks, Inc D/B/A Maxxwave" },
- { 40250, "Fiber Connections Inc." },
- { 40251, "coretanium.net" },
- { 40252, "Lonnie Mandigo" },
- { 40253, "RunStone Technology Co., Ltd." },
- { 40254, "Particle Software Industries" },
- { 40255, "Zhiway Technologies CO., Ltd." },
- { 40256, "EFG Bank SA" },
- { 40257, "Arcontia Technology AB" },
- { 40258, "REWAG Regensburger Energie- und Wasserversorgung AG & Co KG" },
- { 40259, "BruderhausDiakonie Stiftung" },
- { 40260, "Mongoose Metrics, LLC." },
- { 40261, "KeenSystems B.V." },
- { 40262, "Airbnb, Inc." },
- { 40263, "Bank of Latvia" },
- { 40264, "CIRTEC Medical Systems, LLC" },
- { 40265, "Derbyshire County Council" },
- { 40266, "zxc ltd" },
- { 40267, "Anite Travel Ltd." },
- { 40268, "KRZN" },
- { 40269, "Kenshoo ltd" },
- { 40270, "Flexagon GmbH" },
- { 40271, "Peconic Bay Medical Center" },
- { 40272, "SLAC National Accelerator Laboratory" },
- { 40273, "XeroAtom Group Ltd" },
- { 40274, "Spire Payments Holdings S.a.r.l." },
- { 40275, "blackholearchives.org" },
- { 40276, "Navy Federal Credit Union" },
- { 40277, "Cloudant, Inc." },
- { 40278, "Ocean-County Monmouth Amateur Radio Club, Inc. (OMARC)" },
- { 40279, "HAMILTON Bonaduz AG" },
- { 40280, "Sovtest-Internet Limited Company" },
- { 40281, "Bottega Verde Srl" },
- { 40282, "NSB AS" },
- { 40283, "Soporcel, Sociedade Portuguesa de Papel, SA" },
- { 40284, "Wavex Technology Ltd" },
- { 40285, "British Columbia International School, Bangkok" },
- { 40286, "Siclic SARL" },
- { 40287, "Perfectly Posh LLC" },
- { 40288, "Delta Power Solutions India Pvt Ltd" },
- { 40289, "TransLattice, Inc." },
- { 40290, "Government of Dane County, Wisconsin" },
- { 40291, "Central National Australia Pty Ltd" },
- { 40292, "Mekelle University" },
- { 40293, "TG Byte Software GmbH" },
- { 40294, "OOO \"Jewelry House \"Kristall\"" },
- { 40295, "dogado Internet GmbH" },
- { 40296, "stocka" },
- { 40297, "Hytera Communications Co.,Ltd." },
- { 40298, "Thad Touchton" },
- { 40299, "Peter Janke" },
- { 40300, "Radialogica, LLC" },
- { 40301, "Esis Enerji ve Elektronik San. Tic. A.S." },
- { 40302, "Oozlum" },
- { 40303, "Anix Networks, Inc." },
- { 40304, "Wacker Neuson SE" },
- { 40305, "Eletrosul Centrais El\0303\0251tricas S/A" },
- { 40306, "Pointstore" },
- { 40307, "Great River Technology" },
- { 40308, "Funda\0310\0233ia Ceata" },
- { 40309, "UNICART EOOD" },
- { 40310, "Cumulus Networks, inc" },
- { 40311, "ECHOES Technologies SAS" },
- { 40312, "Denbridge Marine Ltd." },
- { 40313, "goRill Solutions" },
- { 40314, "Universidad Europea de Madrid" },
- { 40315, "M&L Solution" },
- { 40316, "VastRiver Technology Co.,Ltd." },
- { 40317, "Alltech Group" },
- { 40318, "Budikom" },
- { 40319, "Canto GmbH" },
- { 40320, "Convene Networks" },
- { 40321, "Vitroconnect GmbH" },
- { 40322, "Jan Axelsson - DICOM2USB" },
- { 40323, "Big Nerd Ranch" },
- { 40324, "The Woman's Christian Association of Jamestown, N.Y." },
- { 40325, "Leon Gaming Limited" },
- { 40326, "Expertize" },
- { 40327, "Metal Expert LLC" },
- { 40328, "Yunohost" },
- { 40329, "Tanaza S.r.l." },
- { 40330, "KuVision Digital Technology Ltd" },
- { 40331, "Micronica srl" },
- { 40332, "Syn-Apps LLC" },
- { 40333, "Enthought" },
- { 40334, "Mercury Security Corp." },
- { 40335, "RMTech" },
- { 40336, "Mericle Technologies, LLC." },
- { 40337, "Centers for Medicare and Medicaid Services" },
- { 40338, "aizoOn Consulting s.r.l." },
- { 40339, "Anovio AG" },
- { 40340, "miersch-IT" },
- { 40341, "Dalmartin Ltd" },
- { 40342, "CronLab Ltd" },
- { 40343, "E-Sales Solu\0303\0247\0303\0265es de Intergra\0303\0247\0303\0243o" },
- { 40344, "Falk Online" },
- { 40345, "JRE & Associates, Inc." },
- { 40346, "Belarusian Universal Commodity Exchange" },
- { 40347, "DUIT GmbH" },
- { 40348, "Snmart Grid Norway AS" },
- { 40349, "EICSYS GmbH" },
- { 40350, "Health Sciences Libraries Consortium" },
- { 40351, "XO Communications LLC" },
- { 40352, "American Electric Power" },
- { 40353, "Cirrus Software Engineering LLC" },
- { 40354, "Suttle Apparatus" },
- { 40355, "Domantic" },
- { 40356, "IT-CE" },
- { 40357, "Michael Buth - IT Consulting" },
- { 40358, "Mercado Libre S.R.L." },
- { 40359, "Zeppelin GmbH" },
- { 40360, "IP Total Software S.A" },
- { 40361, "Xenya d.o.o." },
- { 40362, "Cambridge Communication Systems" },
- { 40363, "Galambos D\0303\0241niel" },
- { 40364, "Trinity Desktop Project" },
- { 40365, "Weichi Consulting LLC" },
- { 40366, "SHadrinsky Telephonny Zavod (SHTZ)" },
- { 40367, "Elcom International Pvt Ltd" },
- { 40368, "DATA-1 Ltd." },
- { 40369, "gruppenrichtlinien.de" },
- { 40370, "Socialbakers a. s." },
- { 40371, "Forcare B.V." },
- { 40372, "Celab Ltd" },
- { 40373, "HealthForce Partners" },
- { 40374, "ODYA Bilgisayar ve Teknoloji Urunleri San. ve Tic. Ltd. Sti." },
- { 40375, "Bayport Financial Services" },
- { 40376, "Astorex Corp" },
- { 40377, "Independence School District" },
- { 40378, "Innovative Technology Solutions, Inc." },
- { 40379, "Lower Bucks Hospital" },
- { 40380, "Arkologic, Inc." },
- { 40381, "Golub Capital" },
- { 40382, "Klimat prof Co." },
- { 40383, "CAME CANCELLI AUTOMATICI SPA" },
- { 40384, "Association of friends of japanese culture (SPJK)" },
- { 40385, "Rose Datasystems Inc." },
- { 40386, "Instituto Nacional de Seguran\0303\0247a Social" },
- { 40387, "Mediatree SAS" },
- { 40388, "Eurosel" },
- { 40389, "Facultad Regional Cordoba Universidad Tecnol\0303\0263gica Nacional" },
- { 40390, "Shale-Inland Holdings, LLC" },
- { 40391, "Ecks Three Ltd" },
- { 40392, "MDV Soft" },
- { 40393, "Phantasy Concepts" },
- { 40394, "Optogan Group " },
- { 40395, "25-Seven Systems" },
- { 40396, "LUMINO Licht Elektronik GmbH" },
- { 40397, "Piratepartei L\0303\0253tzebuerg" },
- { 40398, "Scout Trading LLC" },
- { 40399, "Huneed Technologies Co.,Ltd" },
- { 40400, "CortijoDelRio.net" },
- { 40401, "VidScale, Inc." },
- { 40402, "Cryptonector, LLC" },
- { 40403, "Detached" },
- { 40404, "Vestiaire Collective" },
- { 40405, "UAB Fortevento" },
- { 40406, "Cadis" },
- { 40407, "Smartbox Experience Limited" },
- { 40408, "Philip Cullen Ltd" },
- { 40409, "YEEJOIN (BEIJING) TECHNOLOGY COMPANY LIMITED" },
- { 40410, "boxEleven" },
- { 40411, "PaansNet" },
- { 40412, "Option Computers Ltd" },
- { 40413, "Concordus Applications Inc." },
- { 40414, "New England Baptist Hospital Inc." },
- { 40415, "symThoughts" },
- { 40416, "Hectronic GmbH" },
- { 40417, "SUNSEA OPMEX Technologies Co., Ltd." },
- { 40418, "NAG LLC" },
- { 40419, "PAWI Verpackungen AG" },
- { 40420, "Tuxum Secure Systems, S. L." },
- { 40421, "adorsys GmbH & Co. KG" },
- { 40422, "Solutionary, Inc." },
- { 40423, "Osceola County Board of County Comissioners" },
- { 40424, "TJ Samson Community Hospital" },
- { 40425, "Laird Technologies" },
- { 40426, "Unified Communications Inc." },
- { 40427, "Kodofon JSC" },
- { 40428, "SwiftServe Limited." },
- { 40429, "Utoolity GmbH" },
- { 40430, "ZinuSoft S.A. de C.V." },
- { 40431, "Dracal technologies inc." },
- { 40432, "SquareOne Networks, Inc" },
- { 40433, "Census Digital Inc." },
- { 40434, "Huntington National Bank" },
- { 40435, "Cyara Solutions Pty Ltd" },
- { 40436, "dba Glen Black" },
- { 40437, "Polcom Sp. z o.o." },
- { 40438, "Otto-Friedrich-Universit\0303\0244t Bamberg" },
- { 40439, "I M Skaugen SE" },
- { 40440, "restfarbe.de" },
- { 40441, "DarkDNA" },
- { 40442, "OnApp" },
- { 40443, "Computer Rehab" },
- { 40444, "ETEK TECHNOLOGY SHENZHEN CO., LTD." },
- { 40445, "TRADERS S.A." },
- { 40446, "Ordbogen A/S" },
- { 40447, "FAVITE Inc." },
- { 40448, "Ratocsystems, Inc." },
- { 40449, "Max-Planck-Institut fuer extraterrestrische Physik" },
- { 40450, "University of Ottawa Heart Institute" },
- { 40451, "Allens, Inc." },
- { 40452, "Care Team Connect Inc." },
- { 40453, "School District #59 (Peace River South)" },
- { 40454, "Jaguar Network" },
- { 40455, "TMM.CX" },
- { 40456, "Radio Systems Ltd" },
- { 40457, "Zen Entertainment, Inc." },
- { 40458, "East Tennessee State University" },
- { 40459, "Paymark Limited" },
- { 40460, "SHENZHEN SUPER RICH TECHNOLOGY CO.,LTD" },
- { 40461, "Mirzo Ulugbek Professional College of Informatics" },
- { 40462, "CIDEON" },
- { 40463, "TROY Group, Inc." },
- { 40464, "a4ESSOR SAS" },
- { 40465, "ZETA6 Computer Systems LLC" },
- { 40466, "West Monroe Partners, LLC" },
- { 40467, "Netronome Systems, Inc." },
- { 40468, "LSE Leading Security Experts GmbH" },
- { 40469, "Arkansas Heart Hospital" },
- { 40470, "Ecodota - Ecolo federal asbl." },
- { 40471, "Zimory GmbH" },
- { 40472, "Synapture" },
- { 40473, "Chiang Mai International School, CMIS" },
- { 40474, "ALAGAS NETWORK PTE LTD" },
- { 40475, "Earthworks inc. (formerly 'iWeave inc.')" },
- { 40476, "Winnertel" },
- { 40477, "geomedia" },
- { 40478, "LevelOne Communications GmbH" },
- { 40479, "40mm Holdings, LLC" },
- { 40480, "OTS Logistics Group, Ltd." },
- { 40481, "MiMedia.com, Inc." },
- { 40482, "Pure Storage" },
- { 40483, "Volta electronics srl" },
- { 40484, "Auroville Foundation" },
- { 40485, "Online.net" },
- { 40486, "State of Nevada Dept of Employment Training and Rehabilitation" },
- { 40487, "Timesafer Inc." },
- { 40488, "Staiger, Schwald & Partner AG" },
- { 40489, "Mintlab B.V." },
- { 40490, "The Dot Net Factory, LLC" },
- { 40491, "Uceem Networks Inc." },
- { 40492, "Balsec GmbH" },
- { 40493, "Toyota Adria d.o.o." },
- { 40494, "Ditenity Inc." },
- { 40495, "ADVANCEDDIGITAL INC." },
- { 40496, "Shanghai Aerospace Automobile Electromechanical Co.,LTD" },
- { 40497, "CROSS Zlin a.s." },
- { 40498, "Third Sight Pte. Ltd." },
- { 40499, "SOCEL VISIONOR" },
- { 40500, "DAN electronic Ltd" },
- { 40501, "MAF Consulting Ltd" },
- { 40502, "AT Consulting" },
- { 40503, "University of Louisville Hospital" },
- { 40504, "Kamil Bujniewicz" },
- { 40505, "OUTSCALE" },
- { 40506, "NSC corpration" },
- { 40507, "TravelSky Technology Limited" },
- { 40508, "Dynamic Telecom" },
- { 40509, "VoipSwitch" },
- { 40510, "Fourth Sector Innovations" },
- { 40511, "DoGi Enterprise" },
- { 40512, "Hamid Saeed" },
- { 40513, "weifang mingji technology co., LTD " },
- { 40514, "Shenzhen Howah Network Communication Co., Ltd" },
- { 40515, "Boivie Inc" },
- { 40516, "Staffordshire County Council" },
- { 40517, "Shenzhen Herotel Tech. Co.,Ltd." },
- { 40518, "Foresight " },
- { 40519, "sprd.net AG" },
- { 40520, "Novareto" },
- { 40521, "Metacloud, Inc" },
- { 40522, "myoscience Inc" },
- { 40523, "Eau De Web" },
- { 40524, "Realex Payments" },
- { 40525, "Business Intelligence Direct Limited" },
- { 40526, "REGISTRO PUBLICO DE PANAMA" },
- { 40527, "Bank of Canada" },
- { 40528, "Kod Integrations, LLC" },
- { 40529, "Massxess" },
- { 40530, "Agence universitaire de la Francophonie" },
- { 40531, "Dr. Stolyarenko Medical Center" },
- { 40532, "Zeptonics Pty. Ltd." },
- { 40533, "Voice of Russia" },
- { 40534, "Signamax, a.s." },
- { 40535, "SVYAZKOMPLEKTSERVICE, LLC" },
- { 40536, "Wieland-Werke AG" },
- { 40537, "Null Ventures LLC" },
- { 40538, "Seal Maker Produktions- und Vertriebs GmbH" },
- { 40539, "Aquto" },
- { 40540, "LPAR2RRD" },
- { 40541, "MecSys" },
- { 40542, "SDL Fredhopper" },
- { 40543, "Udruga P.O.I.N.T." },
- { 40544, "Impedance Mismatch LLC" },
- { 40545, "Insight Enterprises, Inc." },
- { 40546, "Tentixo NG AB" },
- { 40547, "Aadvanced Filtering Services" },
- { 40548, "id3as" },
- { 40549, "synchroad.com" },
- { 40550, "OZtell" },
- { 40551, "Bootable Cluster CD" },
- { 40552, "Salcininku rajono savivaldybes administracija" },
- { 40553, "\"Bulgartabac-Holding\" AD" },
- { 40554, "Tecom" },
- { 40555, "Garz & Fricke GmbH" },
- { 40556, "Moving Possibilities LLC" },
- { 40557, "Triodos Bank NV" },
- { 40558, "Elecmor" },
- { 40559, "BPCE" },
- { 40560, "Norsat International Inc." },
- { 40561, "Alloy Computer Products (Aust) Pty Ltd" },
- { 40562, "Open Broadcast Systems Ltd" },
- { 40563, "Christine Steup Unternehmensberatung" },
- { 40564, "StrikeAd LCC" },
- { 40565, "Berufsbildende Schulen Technik" },
- { 40566, "Forte Automation System, Inc." },
- { 40567, "Melodon Software Inc." },
- { 40568, "Tredegar Corporation" },
- { 40569, "HERNIS Scan Systems AS" },
- { 40570, "RFOptic" },
- { 40571, "SRT Communications, Inc." },
- { 40572, "Carlos Domingues" },
- { 40573, "vklop.com" },
- { 40574, "Ukrainian Computer Laboratory ltd." },
- { 40575, "Touro Infirmary" },
- { 40576, "NovaTech, LLC" },
- { 40577, "KOCH" },
- { 40578, "Computing Point Limited" },
- { 40579, "Vistula University" },
- { 40580, "GlobalSite UK" },
- { 40581, "Big Dutchman ltd." },
- { 40582, "iBlocks Ltd." },
- { 40583, "Federal Service State Registration, Cadastre and Cartography in Moscow" },
- { 40584, "Petersburg State University of Railways Transport" },
- { 40585, "Box UK, Limited" },
- { 40586, "Rocky Mountain College" },
- { 40587, "Neptec OS, Inc." },
- { 40588, "TrikeApps Pty Ltd" },
- { 40589, "Indochina Telecommunication Technology JSC (ITT)" },
- { 40590, "ClickBridge Inc" },
- { 40591, "Avateq Corp." },
- { 40592, "IDK CORPORATION" },
- { 40593, "Iberdrola USA Management Corporation" },
- { 40594, "ilogixx Limited" },
- { 40595, "NB Software" },
- { 40596, "ComTec!F\0303\0274tterer" },
- { 40597, "NetProbe, Llc" },
- { 40598, "Geopost UK Ltd" },
- { 40599, "Quick OID Registry (quick-oid.org) (Roman Rybalko)" },
- { 40600, "EWA Ltd" },
- { 40601, "Emaris Limited" },
- { 40602, "Vytautas Magnus University" },
- { 40603, "Harvard Pilgrim Health Care" },
- { 40604, "Geosync Microwave, Inc." },
- { 40605, "Younes Sleep Technologies" },
- { 40606, "Scripps Health" },
- { 40607, "Menara Netowrks" },
- { 40608, "Bars NPK Ltd." },
- { 40609, "Nordstrom" },
- { 40610, "Docstoc, INC" },
- { 40611, "Key Software Develpment" },
- { 40612, "SoftPro S.r.l." },
- { 40613, "Instituto Tecnol\0303\0263gico de Inform\0303\0241tica" },
- { 40614, "GUANGDONG EAST POWER CO.,LTD." },
- { 40615, "Olympus Corporation of the Americas" },
- { 40616, "Pragmatica, LLC" },
- { 40617, "WiMacTel, Inc" },
- { 40618, "Intechne Tecnologia da Informa\0303\0247\0303\0243o" },
- { 40619, "First Gulf Bank PJSC" },
- { 40620, "Welcome Italia spa" },
- { 40621, "Centrum Holdings, s.r.o." },
- { 40622, "Covea Insurance plc" },
- { 40623, "Morgowicz Inc" },
- { 40624, "Willops Management" },
- { 40625, "SBO \"Centre of Information Technology of the Orenburg region\"" },
- { 40626, "Web de Confianza Andaluza S.Coop.And." },
- { 40627, "Jefferson Regional Medical Center" },
- { 40628, "FormPipe Software A/S" },
- { 40629, "Lexington, S.L." },
- { 40630, "Crexendo, Inc." },
- { 40631, "AVA Communications" },
- { 40632, "Tr\0303\0274b AG" },
- { 40633, "\"Scan Engineering Telecom\" CJSC" },
- { 40634, "Willway, S.A." },
- { 40635, "opvizor GmbH" },
- { 40636, "Use System Engineering B.V." },
- { 40637, "Deliservice Punnitse & S\0303\0244\0303\0244st\0303\0244 Oy" },
- { 40638, "BSC Nutrition LTD" },
- { 40639, "PROFI-UC Ltd." },
- { 40640, "Polisnab JSC" },
- { 40641, "Dierichsweiler Unternehmens- und Prozessberatung GmbH" },
- { 40642, "Gardado s.r.o." },
- { 40643, "Broadpeak" },
- { 40644, "Formanek" },
- { 40645, "UFAL - Universidade Federal de Alagoas" },
- { 40646, "iNet Telecoms Ltd (Voipfone)" },
- { 40647, "HELVETAS Swiss Intercooperation" },
- { 40648, "AREAL" },
- { 40649, "Acumentrics Corporation" },
- { 40650, "InterMedia Enterprises" },
- { 40651, "Beijing Huasun Unicreate Technology LTD." },
- { 40652, "Illinois Wesleyan University" },
- { 40653, "Bittoo" },
- { 40654, "Cons\0303\0263rcio de Inform\0303\0241tica na Gest\0303\0243o P\0303\0272blica Municipal" },
- { 40655, "Nanjing Wlanease Co., Ltd." },
- { 40656, "State independent \0321\0203establishment Tula region center of information technologies" },
- { 40657, "experience4you GmbH" },
- { 40658, "Delta Meccanica S.r.l." },
- { 40659, "Oregano Systems \0342\0200\0223 Design & Consulting GesmbH" },
- { 40660, "Southern Record Distributors Ltd." },
- { 40661, "Airwave Solutions" },
- { 40662, "NISZ Co." },
- { 40663, "Kupson spol. s r.o." },
- { 40664, "Noblis, Inc." },
- { 40665, "Akron Group" },
- { 40666, "Zito Media" },
- { 40667, "BRToken Ind. e Com. de Produtos Eletr\0303\0264nicos Ltda." },
- { 40668, "NEC New Zealand Ltd" },
- { 40669, "Microlab RF Ltd" },
- { 40670, "Lanka Government Information Infrastucture" },
- { 40671, "Radinet Communications Inc." },
- { 40672, "Fiber SenSys, Inc." },
- { 40673, "Unigine Inc." },
- { 40674, "SAIT (formerly 'SAIT Zenitel')" },
- { 40675, "geiger BDT GmbH" },
- { 40676, "Microsemi Corporation" },
- { 40677, "RKF Engineering Solutions, LLC" },
- { 40678, "Nexura Internacional S.A" },
- { 40679, "Centre Hospitalier de Fougeres" },
- { 40680, "La Trobe University" },
- { 40681, "ELNO" },
- { 40682, "Thanis.org" },
- { 40683, "Open Grid Europe GmbH " },
- { 40684, "Appdynamics" },
- { 40685, sminmpec_unknown }, /* (Added by Wireshark) */
- { 40686, "Issac Systems Inc." },
- { 40687, "ezamber" },
- { 40688, "Kum and Go" },
- { 40689, "Digital Processing Systems" },
- { 40690, "MBTechnology Ltd" },
- { 40691, "Crosstel Inc" },
- { 40692, "The ZAP Group" },
- { 40693, "Inter Vehicle Communication" },
- { 40694, "antrou" },
- { 40695, "BitPlanet Inc." },
- { 40696, "IDENETWORK" },
- { 40697, "Alma Manu Oy" },
- { 40698, "TeliSwitch Solutions " },
- { 40699, "LexSoft, LTD" },
- { 40700, "M-Cube S.p.A." },
- { 40701, "Vitera Healthcare Solutions" },
- { 40702, "San Mateo Medical Center" },
- { 40703, "Hokkaido Tracks" },
- { 40704, "Amstar Creative Ltd" },
- { 40705, "Signal Processing Devices" },
- { 40706, "AGMF Pr\0303\0251voyance Union de mutuelles soumise au livre II du Code de la Mutualit\0303\0251 - Filiale de GPM" },
- { 40707, "Aleturo Group" },
- { 40708, "Rhythm Engineering, LLC" },
- { 40709, "Jiaheng Medical Technology Co., Ltd." },
- { 40710, "Grasshopper" },
- { 40711, "DSTA S.L." },
- { 40712, "DHCPCD Project" },
- { 40713, "Migame.org" },
- { 40714, "Accelera Mobile Broadband, Inc." },
- { 40715, "Innerworkings" },
- { 40716, "Kyle Brantley" },
- { 40717, "Conde Nast" },
- { 40718, "RelySys Technologies India Private Limited" },
- { 40719, "The Lubrizol Corporation" },
- { 40720, "Texas Department of Public Safety" },
- { 40721, "FormFactor, Inc." },
- { 40722, "HUVITZ" },
- { 40723, "New Zealand Defence Force" },
- { 40724, "Ubisoft Entertainment" },
- { 40725, "Intune Networks Limited" },
- { 40726, "CIPHRON GmbH" },
- { 40727, "Cosium" },
- { 40728, "Falck Danmark A/S" },
- { 40729, "LAND-DATA GmbH" },
- { 40730, "Neocom Software Ltd." },
- { 40731, "Elephant Talk Communications Corp." },
- { 40732, "Consortium for Smart Energy Profile 2 Interoperability" },
- { 40733, "Sabzfaam ICT" },
- { 40734, "Karina Mobile Solutions" },
- { 40735, "DoctuSoft Ltd." },
- { 40736, "Audeo, Inc." },
- { 40737, "National Labor Relations Board" },
- { 40738, "The Children's Institute of Pittsburgh" },
- { 40739, "Affirmative Insurance Holdings, Inc." },
- { 40740, "DirectOut GmbH" },
- { 40741, "Flying Horse Productions, LLC" },
- { 40742, "PDI Ninth House" },
- { 40743, "Reissmann IT-Services" },
- { 40744, "Center for Translational Molecular Medicine (CTMM TraIT)" },
- { 40745, "WiValley, Inc" },
- { 40746, "GOZUBUYUKOGLU" },
- { 40747, "Radiant Logic, Inc." },
- { 40748, "IONODES Inc." },
- { 40749, "Corfire (SK C&C USA) Inc." },
- { 40750, "Synrc Research Center" },
- { 40751, "Homemail - Ross Johnson" },
- { 40752, "Barricane Technology Ltd." },
- { 40753, "Beijing Time Antaeus Media Technology Co.,Ltd" },
- { 40754, "Liikennevirasto TVT" },
- { 40755, "Acticom" },
- { 40756, "K.W.Doggett Fine Paper" },
- { 40757, "MOSCOW COMMERCIAL BANK MOSCOMPRIVATBANK ZAO" },
- { 40758, "Eltek Polska" },
- { 40759, "EGRIMA BuisnessCenter" },
- { 40760, "TOMRA Systems ASA" },
- { 40761, "Mideye AB" },
- { 40762, "Hitec Electric b.v." },
- { 40763, "Kennedy University Hospitals, Inc." },
- { 40764, "Resonate Insights" },
- { 40765, "hSenid Software (Singapore) PVT Limited" },
- { 40766, "Xenode Co. Ltd." },
- { 40767, "Reporting Est\0303\0241ndar S.L." },
- { 40768, "Hotwords Tecnologia" },
- { 40769, "VendScreen" },
- { 40770, "Partheas" },
- { 40771, "VISUAPPS GmbH" },
- { 40772, "SuperMedia, LLC" },
- { 40773, "The Prosecutor General`s Office of Ukraine" },
- { 40774, "NagSNMP" },
- { 40775, "TripodWorks CO.,LTD." },
- { 40776, "Kalyan Kadiyala" },
- { 40777, "Qin Technology SpA" },
- { 40778, "Unassigned" },
- { 40779, "2reallife" },
- { 40780, "Smartpipe Solutions" },
- { 40781, "Cynaptica" },
- { 40782, "Dyne System Co., Ltd" },
- { 40783, "icoMetrix" },
- { 40784, "Kumahira Co., Ltd." },
- { 40785, "Optro Co.,Ltd" },
- { 40786, "Unassigned" },
- { 40787, "Compumatica secure networks" },
- { 40788, "Abegglen Management Consultants AG" },
- { 40789, "Logix" },
- { 40790, "Simple Solution Technologies LLC" },
- { 40791, "Beijing OMATE Digital Technology CO.,Ltd" },
- { 40792, "Express-Interfracht Internationale Spedition GmbH" },
- { 40793, "Andelskassen JAK" },
- { 40794, "IG Metall Vorstandsverwaltung" },
- { 40795, "otaku-realm.net" },
- { 40796, "ICBPI S.p.A." },
- { 40797, "Sidion" },
- { 40798, "3D-P" },
- { 40799, "Swiss International Air Lines Ltd." },
- { 40800, "Smart Refill i Helsingborg AB" },
- { 40801, "FiveCo" },
- { 40802, "Indra Navia as" },
- { 40803, "netRapid GmbH & Co. KG" },
- { 40804, "ULTEO" },
- { 40805, "Nimbus Directory Services" },
- { 40806, "ICBTECH d.o.o." },
- { 40807, "semyon.org" },
- { 40808, "Wi-Fi Alliance" },
- { 40809, "Tohoku Gakuin University" },
- { 40810, "BUPT-GUOAN Broadband Network Technology Co.Ltd" },
- { 40811, "WebSistem" },
- { 40812, "Die Firma GmbH" },
- { 40813, "Agenturadmin.de" },
- { 40814, "Garden City Hospital " },
- { 40815, "Dr. Thalmair" },
- { 40816, "Ecodigi Tecnologia e Servi\0303\0247os Ltda." },
- { 40817, "Dr. Martin Froehlich" },
- { 40818, "CYG SUNRI CO.,LTD" },
- { 40819, "Provident Solutions LLC" },
- { 40820, "OpenIPMI" },
- { 40821, "Public Protector South Africa" },
- { 40822, "Hagedorn Informationssysteme GmbH" },
- { 40823, "NVable Limited" },
- { 40824, "Qore Technologies, sro" },
- { 40825, "VeriTeknik" },
- { 40826, "Short Films 4 U Limited" },
- { 40827, "Lifelan Technology Co., LTD." },
- { 40828, "CHIeru Co., Ltd." },
- { 40829, "Cambridge Industries Group (CIG)" },
- { 40830, "Qiaoy.info" },
- { 40831, "Domenikss SIA" },
- { 40832, "MicroNova AG" },
- { 40833, "Hytec Electronics Ltd" },
- { 40834, "K\0303\0274bler IT" },
- { 40835, "Department of Microelectronics and Computer Science, Lodz University of Technology" },
- { 40836, "Blackbird Group, Inc." },
- { 40837, "iTech Com\0303\0251rcio Importa\0303\0247\0303\0243o e Exporta\0303\0247\0303\0243o de Componentes Eletr\0303\0264nicos LTDA" },
- { 40838, "Commune de Niort" },
- { 40839, "SARDA South Wales" },
- { 40840, "Rainydayz" },
- { 40841, sminmpec_unknown }, /* (Added by Wireshark) */
- { 40842, "A10 Networks" },
- { 40843, "Chatmongers, LLC" },
- { 40844, "MAC&C LLC" },
- { 40845, "Veris Industries" },
- { 40846, "Endurance Services (formerly 'Montpelier Technical Resources Ltd')" },
- { 40847, "CRDP de l'Acad\0303\0251mie de Versailles" },
- { 40848, "VeriFyle, Inc." },
- { 40849, "Ceiec Electric Technology Inc." },
- { 40850, "Kongsberg Spacetec AS" },
- { 40851, "IPContact Software" },
- { 40852, "Main Line Health Inc." },
- { 40853, "ATOSS CSD Software GmbH" },
- { 40854, "WH Ireland Limited" },
- { 40855, "University of Pittsburgh" },
- { 40856, "Tofino Security" },
- { 40857, "Mira Soft" },
- { 40858, "ModemTec, spol. s r. o." },
- { 40859, "VOSGELIS" },
- { 40860, "Protocom Technology" },
- { 40861, "Silent Softwares Pvt. Ltd." },
- { 40862, "Systema Technologies SA" },
- { 40863, "UP-nxt" },
- { 40864, "Larcan Inc" },
- { 40865, "Majorpower Corporation" },
- { 40866, "Arcusys Oy" },
- { 40867, "Boardroom Pty Limited" },
- { 40868, "Genew Technologies Co.,Ltd" },
- { 40869, "TAIWAN-CA Inc." },
- { 40870, "Closed Joint Stock Company Interfax" },
- { 40871, "poweroasis" },
- { 40872, "Pardazeshgaran Saman Banking Solutions" },
- { 40873, "Semafone Limited" },
- { 40874, "LL Control Solutions International (PTY) Ltd" },
- { 40875, "OfficeCore" },
- { 40876, "Pressens F\0303\0246llesindk\0303\0270b" },
- { 40877, "myprocurement" },
- { 40878, "Venere Net Srl" },
- { 40879, "VERION TEKNOLOJI A.S." },
- { 40880, "DBI Software, Inc." },
- { 40881, "Mutualink Inc" },
- { 40882, "Step One AS" },
- { 40883, "Beijing CangLang TV Technologies Co., Ltd." },
- { 40884, "Instituto Federal Fluminense - IFF" },
- { 40885, "ELCUS" },
- { 40886, "Kommunales Rechenzentrum Minden-Ravensberg/Lippe" },
- { 40887, "Edeka Minden-Hannover IT-/logistic service GmbH" },
- { 40888, "Universitaetsklinikum Tuebingen" },
- { 40889, "Global Invacom Ltd" },
- { 40890, "Hardomo" },
- { 40891, "RDC, Inc. dba LynTec" },
- { 40892, "abimus" },
- { 40893, "University of the Arts Helsinki" },
- { 40894, "Cory-Net" },
- { 40895, "VRVis Zentrum f\0303\0274r Virtual Reality und Visualisierung Forschungs-GmbH" },
- { 40896, "Pearson Technology" },
- { 40897, "C.S. Veritas" },
- { 40898, "Cirries Technologies Inc." },
- { 40899, "Evo Group Technologies, Inc." },
- { 40900, "Cybersmart Ltd" },
- { 40901, "Courtney.org.za" },
- { 40902, "TransLink - South Coast British Columbia Transportation Authority" },
- { 40903, "Thongfforong.cyf" },
- { 40904, "Brisbane City Council" },
- { 40905, "Altronix Corporation" },
- { 40906, "Divitel Development Lda" },
- { 40907, "OOO Adicom" },
- { 40908, "Autoritatea Na\0305\0243ional\0304\0203 pentru Administrare \0305\0237i Reglementare \0303\0256n Comunica\0305\0243ii - ANCOM" },
- { 40909, "BigBrother Security Systems" },
- { 40910, "Bradley University" },
- { 40911, "Freedompay, Inc." },
- { 40912, "Kulcs-Soft Nyrt." },
- { 40913, "QEM Software Ltd." },
- { 40914, "Symanitron" },
- { 40915, "WANdisco, Inc" },
- { 40916, "Berico Technologies" },
- { 40917, "Lender Processing Service" },
- { 40918, "ResponseTap Limited" },
- { 40919, "Vnomics" },
- { 40920, "Icahn School of Medicine at Mount Sinai" },
- { 40921, "MikroM Mikroelektronik f\0303\0274r Multimedia GmbH" },
- { 40922, "Telydata C\0303\0255a. Ltda." },
- { 40923, "Isle of Capri Casinos, Inc." },
- { 40924, "aYaline" },
- { 40925, "Trenkwlader Solutions, s.r.o." },
- { 40926, "Majic" },
- { 40927, "SID Solutions Inc." },
- { 40928, "Esprit Digital Ltd" },
- { 40929, "Barrett Consulting Group Pty Ltd" },
- { 40930, "MAGREX Co. Ltd." },
- { 40931, "Victorian Electoral Commission" },
- { 40932, "SuccWare (Beijing) Software System Co., Ltd" },
- { 40933, "QiZhi Technologies" },
- { 40934, "LIG Nex1" },
- { 40935, "LTD \"MedScann\"" },
- { 40936, "St. Elisabeth Convent" },
- { 40937, "Axelprod GSM Transmission" },
- { 40938, "MobileIron Inc." },
- { 40939, "Alphonso" },
- { 40940, "ROYAL NEW ZEALAND PLUNKET SOCIETY INCORPORATED" },
- { 40941, "Tamara Elektronik Ltd.Sti." },
- { 40942, "logic-base GmbH" },
- { 40943, "XHONIA" },
- { 40944, "Bitlomat LLC" },
- { 40945, "Oak Solucoes em Informatica LTDA EPP" },
- { 40946, "Yuriy Moskovets" },
- { 40947, "Metromatics Pty Ltd" },
- { 40948, "BiTMICRO Networks, Inc." },
- { 40949, "Smart Grid Billing, Inc" },
- { 40950, "JSC Stock Company OZNA" },
- { 40951, "uAnywhere" },
- { 40952, "S3 ID Ltd" },
- { 40953, "Unassigned" },
- { 40954, "Ivar Jacobson International AB" },
- { 40955, "Campbell County Hospital District" },
- { 40956, "SEAKR Engineering Inc" },
- { 40957, "Dexa Systems, Inc" },
- { 40958, "Geneity Ltd" },
- { 40959, "Optical Zonu Corporation" },
- { 40960, "Witelcom AS" },
- { 40961, "Axxes" },
- { 40962, "SDL - Language Weaver" },
- { 40963, "Jacques Ledoux" },
- { 40964, "Stone Fifteen Design Group" },
- { 40965, "Louisiana State Board of Medical Examiners" },
- { 40966, "Ronald.ORG" },
- { 40967, "SVIAT Ltd." },
- { 40968, "Nirvanix, Inc." },
- { 40969, "Tobila Systems, Inc." },
- { 40970, "LRD23 Consulting LLC" },
- { 40971, "Audioptic Trade Services" },
- { 40972, "SFR" },
- { 40973, "Freeside Atlanta" },
- { 40974, "Kim Johnsson" },
- { 40975, "Applied Communication Sciences" },
- { 40976, "Videotrec Industrial Co. Ltd." },
- { 40977, "Inter-M" },
- { 40978, "AZElectronic" },
- { 40979, "Newell Rubbermaid - DYMO Corp." },
- { 40980, "creatale GmbH" },
- { 40981, "Facebook, Inc." },
- { 40982, "ROARING FORK SCHOOL DISTRICT" },
- { 40983, "Trinity Solutions, Inc." },
- { 40984, "Fastback Networks" },
- { 40985, "Clearview Systems, LLC" },
- { 40986, "JVL Ventures / Isis Mobile Commerce" },
- { 40987, "Quality Software Works" },
- { 40988, "Justin Obernier" },
- { 40989, "GLsun Science and Tech Co.Ltd" },
- { 40990, "Domain Name Services" },
- { 40991, "tedox KG" },
- { 40992, "vijay. Pvt. Ltd" },
- { 40993, "HD Vest Inc." },
- { 40994, "LLC \"AIS Gorod\"" },
- { 40995, "DLG Automacao Industrial Ltda" },
- { 40996, "SilverRail Technologies, Inc." },
- { 40997, "Armonti Digital Services" },
- { 40998, "DomaCom Pty Ltd" },
- { 40999, "Ribose Inc" },
- { 41000, "mykarte.com" },
- { 41001, "Cuattro, LLC." },
- { 41002, "Biotest AG" },
- { 41003, "Workers' Compensation Board - Alberta" },
- { 41004, "Clackamas County" },
- { 41005, "IntelliBatt, Inc." },
- { 41006, "Ineluctable Designs" },
- { 41007, "IMBC GmbH" },
- { 41008, "EMTS Telecom Services Ltd." },
- { 41009, "Info-M Ltd." },
- { 41010, "FlyingVoice Technology Ltd." },
- { 41011, "LanPro Inc." },
- { 41012, "tmakinen.com" },
- { 41013, "Miyagi University of Education" },
- { 41014, "Attam Ltd" },
- { 41015, "Intelligenza" },
- { 41016, "H\0303\0251onium SARL" },
- { 41017, "EDV-Studio Stephan Konheiser" },
- { 41018, "WaldiNetwork Ltd. Home" },
- { 41019, "Acuntia S.A." },
- { 41020, "GetOnline Ltd" },
- { 41021, "Gensicke" },
- { 41022, "van Rens IT Consultancy" },
- { 41023, "BAITS Global" },
- { 41024, "BG Unfallklinik Murnau" },
- { 41025, "Lorillard Tobacco Company" },
- { 41026, "DealerTrack" },
- { 41027, "Direct Line Insurance Group PLC" },
- { 41028, "Delphix Corp" },
- { 41029, "The Orvis Company Inc." },
- { 41030, "JAI Inc." },
- { 41031, "Axeos Services B.V." },
- { 41032, "VeriCom AB" },
- { 41033, "Amor Group" },
- { 41034, "Systems With Intelligence Inc." },
- { 41035, "TM Systems, LLC" },
- { 41036, "Corero Network Security" },
- { 41037, "Edgepoint IT Services" },
- { 41038, "Gridcore AB" },
- { 41039, "adidas AG" },
- { 41040, "Scientific & Research Center Epsilon" },
- { 41041, "Fairpersonal GmbH" },
- { 41042, "tinNet - Lukas Barth" },
- { 41043, "Radius, LLC" },
- { 41044, "SohnTech Solutions, LLC." },
- { 41045, "Rover Apps, LLC" },
- { 41046, "Driven Technical Solutions" },
- { 41047, "Sestek Communications Inc." },
- { 41048, "NETIFY" },
- { 41049, "Erudio Solutions" },
- { 41050, "Raspmon" },
- { 41051, "MBIA Inc." },
- { 41052, "IntraFind Software AG" },
- { 41053, "musicute project - Rouven Raudzus" },
- { 41054, "Dinamo Networks" },
- { 41055, "Esquisse Software Studio" },
- { 41056, "telco Management & Service GmbH" },
- { 41057, "FANCYRABBIT.ORG" },
- { 41058, "Loggly Inc." },
- { 41059, "Petromoc" },
- { 41060, "M-D Technology" },
- { 41061, "SOLUTI Certificacao Digital" },
- { 41062, "NuScale Power LLC" },
- { 41063, "Asynchrony, Inc." },
- { 41064, "CheckMySystems Ltd." },
- { 41065, "Alea Iacta Est" },
- { 41066, "Shaanxi Tians Information & Technology Co.,Ltd." },
- { 41067, "Quantitative Risk Research, S.L." },
- { 41068, "Shenzhen RHC technology Co.,Ltd" },
- { 41069, "insystem" },
- { 41070, "WhereGroup Gmbh & Co. KG" },
- { 41071, "Servicios Electr\0303\0263nicos Universitarios, S.A.S." },
- { 41072, "Domogik" },
- { 41073, "Openreach" },
- { 41074, "voestalpine group-IT GmbH" },
- { 41075, "Edge S.A." },
- { 41076, "The Probe Project Ltd" },
- { 41077, "iOWA AB" },
- { 41078, "Apteka Alpi Farm" },
- { 41079, "autocrash.info" },
- { 41080, "IT-EASY Berlin" },
- { 41081, "LLC Okey" },
- { 41082, "Altarix-Samara" },
- { 41083, "Shanghai Ruiyuan Information Technologies Co.,Ltd." },
- { 41084, "ALTELL Ltd." },
- { 41085, "Isida-Informatica, Ltd" },
- { 41086, "Trafikselskabet Movia" },
- { 41087, "Automation NV/SA" },
- { 41088, "TCUBE" },
- { 41089, "Neptune Internet Service" },
- { 41090, "Shanghai HEADING Information Engineering Co., Ltd." },
- { 41091, "Libra Srl" },
- { 41092, "Dynamic Systems, Inc." },
- { 41093, "Bareos GmbH & Co. KG" },
- { 41094, "iS5 Communications Inc." },
- { 41095, "Evrisko Systems" },
- { 41096, "Metadosis GP" },
- { 41097, "Magnus LTD" },
- { 41098, "ESPEC CORP." },
- { 41099, "COMPTA - EQUIPAMENTOS E SERVI\0303\0207OS DE INFORM\0303\0201TICA S.A." },
- { 41100, "Fon Wireless LTD" },
- { 41101, "Simply Business" },
- { 41102, "NS Solutions Corporation" },
- { 41103, "Global Radio Services Limited" },
- { 41104, "Transway Ltd." },
- { 41105, "Lognet Billing LTD" },
- { 41106, "Institute of Photonics and Electronics AS CR, v.v.i." },
- { 41107, "Transact Technologies Inc" },
- { 41108, "Mill Software" },
- { 41109, "TriVu Media" },
- { 41110, "Good Dog Design" },
- { 41111, "66 VISION TECH CO.,LTD" },
- { 41112, "Ubiquiti Networks, Inc." },
- { 41113, "Barnfind Technologies AS" },
- { 41114, "S2 Factory, Inc." },
- { 41115, "Glarner Kantonalbank" },
- { 41116, "DEBES ENGINEERING" },
- { 41117, "Richard Wolf GmbH" },
- { 41118, "Stadt Duisburg" },
- { 41119, "3 Stack Technologies" },
- { 41120, "CMosaix" },
- { 41121, "Terminal plus, LLC" },
- { 41122, "Pindrop Security" },
- { 41123, "Sumo Logic, Inc." },
- { 41124, "KfW" },
- { 41125, "Mystic Video, Inc." },
- { 41126, "SFERA" },
- { 41127, "Linux Router Systems" },
- { 41128, "Knorst Consulting LTDA" },
- { 41129, "WideNet" },
- { 41130, "Mint Medical GmbH" },
- { 41131, "LUGO TERMINAL SPA" },
- { 41132, "V\0303\0244stra G\0303\0266talandsregionen" },
- { 41133, "Alinean, Inc." },
- { 41134, "Ronal AG" },
- { 41135, "Salsbury Engineering, Inc." },
- { 41136, "Ryan Spinuzzi" },
- { 41137, "Autotoll Limited" },
- { 41138, "10gen, Inc." },
- { 41139, "NextGenTel AS" },
- { 41140, "nplawes" },
- { 41141, "Southeast Health" },
- { 41142, "Instant Solutions LTDA" },
- { 41143, "Goodloe Consulting Group, LLC" },
- { 41144, "Initra d.o.o." },
- { 41145, "Industrial Control Communications, Inc" },
- { 41146, "VertiCloud" },
- { 41147, "The Southampton Hospital Association" },
- { 41148, "Binary Software Indy, llc" },
- { 41149, "Shandong New Beiyang Information Technology Co., Ltd. (SNBC)" },
- { 41150, "Acelis SARL" },
- { 41151, "dev.ncds.eu" },
- { 41152, "Cyfrowy Polsat SA" },
- { 41153, "Status Nobilis SA" },
- { 41154, "trojniak.net" },
- { 41155, "Oberlin College" },
- { 41156, "Solmate Group" },
- { 41157, "JEFFREY WALTER HEISEY" },
- { 41158, "Special Services Division, NCISS" },
- { 41159, "Media Group LLC" },
- { 41160, "Copper Systems Ltd" },
- { 41161, "Bentsen Electronics" },
- { 41162, "Software Daten Service" },
- { 41163, "INVAP S.E." },
- { 41164, "Tulsa Technology Center" },
- { 41165, "SKYERA Inc" },
- { 41166, "streibelt.net" },
- { 41167, "Pomona Valley Hospital Medical Center" },
- { 41168, "Excelitas" },
- { 41169, "Scorpio IT" },
- { 41170, "NOVXTEL" },
- { 41171, "MECC CO., LTD." },
- { 41172, "HEC Paris" },
- { 41173, "Dream Chip Technologies GmbH" },
- { 41174, "Mount Vernon Hospital Physics (UK)" },
- { 41175, "Aartesys AG" },
- { 41176, "Energy X Systems Ltd." },
- { 41177, "Ocean Interactive (Beijing) Technology Co. Ltd" },
- { 41178, "Proftal Oy" },
- { 41179, "DirectTrust.org Inc." },
- { 41180, "Process Query Systems, LLC" },
- { 41181, "conversis technologies GmbH" },
- { 41182, "Digital Imaging Lab." },
- { 41183, "Contim Automa\0303\0247\0303\0243o de Sistemas Ltda" },
- { 41184, "FreedomVoice Systems" },
- { 41185, "Norwia AS" },
- { 41186, "QuantuMatriX Technologies" },
- { 41187, "Video Tech Laboratories" },
- { 41188, "University of California Hastings College of the Law" },
- { 41189, "Sika Informationssysteme AG" },
- { 41190, "Invensys Rail" },
- { 41191, "Educastream" },
- { 41192, "VICTORY Standards Support Office" },
- { 41193, "TELETOR, LLC" },
- { 41194, "Piratenpartei Deutschland Landesverband Saarland" },
- { 41195, "Imecon Engineering srl" },
- { 41196, "SimpliVity Corporation" },
- { 41197, "Epicard SA" },
- { 41198, "Ryan J. Geyer" },
- { 41199, "OPTEYA SAS" },
- { 41200, "Vision Microsystems Co.,ltd." },
- { 41201, "ZeroSpace ICT Services B.V." },
- { 41202, "Intigua Inc." },
- { 41203, "Swiss Bankers Prepaid Services AG" },
- { 41204, "AVASAD" },
- { 41205, "Col\0303\0251gio T\0303\0251cnico Industrial de Santa Maria (CTISM)" },
- { 41206, "Travelex Limited" },
- { 41207, "Yospace Technologies Ltd" },
- { 41208, "Gorodissky & Partners, Ltd." },
- { 41209, "Qpay Inc." },
- { 41210, "Santa Fe College" },
- { 41211, "CherryRoad Technologies Inc." },
- { 41212, "Providigm" },
- { 41213, "bitagentur GmbH & Co. KG" },
- { 41214, "Cloud Concepts" },
- { 41215, "INFOMARK CO., LTD." },
- { 41216, "Monitise Group Limited" },
- { 41217, "Xcision Medical Systems, LLC" },
- { 41218, "Vera Networks, LLC" },
- { 41219, "Lytzen IT A/S" },
- { 41220, "PS-IT-Consulting" },
- { 41221, "IMDIT GmbH" },
- { 41222, "Jnsys" },
- { 41223, "ASC-TEC AG" },
- { 41224, "MobileVaults, Inc. (formerly 'CloudVaults, LLC')" },
- { 41225, "JSC Volga" },
- { 41226, "Ennetix" },
- { 41227, "Voice Conferencing Systems for Misson Control Centers (vocsmcc)" },
- { 41228, "CoreMeda" },
- { 41229, "Friulia SPA" },
- { 41230, "Usharesoft" },
- { 41231, "IntelliMagic B.V." },
- { 41232, "ZFSoft" },
- { 41233, "HubSpot, Inc." },
- { 41234, "RNelson Consulting" },
- { 41235, "Schalter Eletr\0303\0264nica" },
- { 41236, "Telepoint Global Hosting Services, LLC." },
- { 41237, "Great Lakes Data Systems Inc." },
- { 41238, "Shane Spinuzzi" },
- { 41239, "Charles County Goverment " },
- { 41240, "Mijares Consultor\0303\0255a y Sistemas SL" },
- { 41241, "ARC Document Solutions, Inc" },
- { 41242, "Shanghai PPLive Media Tech. Co.,Ltd" },
- { 41243, "Desoma GmbH" },
- { 41244, "ABAK Syst\0303\0250mes" },
- { 41245, "Sadara Internet" },
- { 41246, "2600hz" },
- { 41247, "Rakennusliitto ry" },
- { 41248, "IETFNG.org" },
- { 41249, "Silent Circle LLC" },
- { 41250, "Globosat Programadora LTDA" },
- { 41251, "Simple Software Solutions" },
- { 41252, "Wicked Software" },
- { 41253, "Millry Telephone Co" },
- { 41254, "Wroclaw School of Applied Informatics \"Horyzont\"" },
- { 41255, "Maui Systems Ltd" },
- { 41256, "NormanStudios" },
- { 41257, "SignOn" },
- { 41258, "Jason R. Gonsalves" },
- { 41259, "Lullabot Consulting, Inc." },
- { 41260, "Critical Link, LLC" },
- { 41261, "TraceVector" },
- { 41262, "Institut National de Physique Nucl\0303\0251aire et de Physique des Particules" },
- { 41263, "Nutanix Inc." },
- { 41264, "Kent and Essex Police IT Directorate" },
- { 41265, "infOpen" },
- { 41266, "Igor Posledov" },
- { 41267, "Benbro Electronics Pty Ltd" },
- { 41268, "Elsicom Ltd." },
- { 41269, "Dr. V.M.Ponzoni ICT Outsourcing" },
- { 41270, "Vibicom Communications Inc." },
- { 41271, "Ondot Systems, Inc." },
- { 41272, "Cascade Microtech, Inc." },
- { 41273, "Lakehead University" },
- { 41274, "Bluwan S.A" },
- { 41275, "Kapsch Telematic Services Sp. z o.o." },
- { 41276, "BCi Limited" },
- { 41277, "Computer System Corp." },
- { 41278, "Stateless Networks" },
- { 41279, "Danish Broadcasting Corporation" },
- { 41280, "Neul Limited" },
- { 41281, "tols.org" },
- { 41282, "SpeechStorm Ltd." },
- { 41283, "IEX Group, LLC" },
- { 41284, "Celestech, Inc" },
- { 41285, "Clemex Technologies Inc" },
- { 41286, "The Libreswan Project" },
- { 41287, "Red Bull GmbH" },
- { 41288, "J.D. Irving, Limited, IT Division" },
- { 41289, "Lanaccess Telecom" },
- { 41290, "o3, d.o.o." },
- { 41291, "LEO Pharma A/S" },
- { 41292, "LSU Health System" },
- { 41293, "Taylor Innovations, LLC" },
- { 41294, "Datafrog" },
- { 41295, "Andalusia Group" },
- { 41296, "E-Gate Communications Inc." },
- { 41297, "Nextech Co.,Ltd" },
- { 41298, "BRGFrauengasse" },
- { 41299, "Infodom d.o.o." },
- { 41300, "Deganius" },
- { 41301, "CSF Scientific Computing Core" },
- { 41302, "Unified Technology Ltd" },
- { 41303, "Six Degrees Managed Data Ltd" },
- { 41304, "QiNet SRL" },
- { 41305, "Schoch-IT UG" },
- { 41306, "Columbus College of Art & Design" },
- { 41307, "LDS Technology Group" },
- { 41308, "ALCO Aircraft" },
- { 41309, "Inter Dimensional Space Port" },
- { 41310, "dwApi, Ltd." },
- { 41311, "Missouri Western State University" },
- { 41312, "Netscreens LTD." },
- { 41313, "OLTRI LLC" },
- { 41314, "A.E.Q. Aplicaciones Electr\0303\0263nicas Quasar" },
- { 41315, "Recording Enterprise Solution (R.E.S.)" },
- { 41316, "Velocimetrics Ltd" },
- { 41317, "DAC Beachcroft LLP" },
- { 41318, "Adaptavist" },
- { 41319, "Netbuilder S.r.l." },
- { 41320, "Diagnosoft" },
- { 41321, "Commsky Technologies(HangZhou)Co.,Ltd." },
- { 41322, "Time-O-Matic, Inc." },
- { 41323, "Reid Hospital & Health Care Services" },
- { 41324, "Centre de services partag\0303\0251s du Qu\0303\0251bec" },
- { 41325, "Uber Technologies, Inc." },
- { 41326, "Dangerous Linux" },
- { 41327, "Radiology.io, Inc" },
- { 41328, "blackned GmbH" },
- { 41329, "Soncatec Oy" },
- { 41330, "Eurotoll" },
- { 41331, "NxtGrid Ltd" },
- { 41332, "Fourth Watch Business Continuity Services LC" },
- { 41333, "ShenZhen Great Electronic Technology Co., LTD" },
- { 41334, "Feldhaus - Uhlenbrock Sicherheit &Technik GmbH " },
- { 41335, "AMPEG GmbH" },
- { 41336, "UEL - Universidade Estadual de Londrina" },
- { 41337, "WingSystem Rst. inc." },
- { 41338, "Imagination Team" },
- { 41339, "Duons" },
- { 41340, "Friedrich Miescher Institute for Biomedical Research" },
- { 41341, "Knobbe, Martens, Olson & Bear, LLP." },
- { 41342, "IMAIOS SAS" },
- { 41343, "Qihong Computer Science & Technology Co. Ltd" },
- { 41344, "FirmWin software technology Co. Ltd" },
- { 41345, "Nectar Services Corporation" },
- { 41346, "Certiwise" },
- { 41347, "Comsys B\0303\0244rtsch AG" },
- { 41348, "Ronyo" },
- { 41349, "Enigmedia" },
- { 41350, "ITManx Ltd" },
- { 41351, "FJM Security Solutions, LLC" },
- { 41352, "Paychex, Inc." },
- { 41353, "Waukegan Public Schools" },
- { 41354, "Parker Poe Adams and Bernstein, LLP" },
- { 41355, "Optic Cloud Technology Co,.Ltd" },
- { 41356, "Tufts Clinical and Translational Science Institute" },
- { 41357, "Groupe Clarins" },
- { 41358, "JSC \0302\0253AMB Bank\0302\0273" },
- { 41359, "Triax AS" },
- { 41360, "Prodrive B.V." },
- { 41361, "KYOS SARL" },
- { 41362, "Transport Department, HKSARG" },
- { 41363, "Naunet Corporation" },
- { 41364, "MIRACLE Information Systems GmbH" },
- { 41365, "Avon and Wiltshire Mental Health Partnership NHS Trust" },
- { 41366, "Citelum" },
- { 41367, "A.T.WORKS, Inc." },
- { 41368, "Nilsoft Janko Debenjak s.p." },
- { 41369, "Burri IT Systems" },
- { 41370, "JHome Consulting, Ltd." },
- { 41371, "2ndQuadrant" },
- { 41372, "ConVista Consulting AG" },
- { 41373, "Seawind Sud America" },
- { 41374, "Fachschaftsrat Elektrotechnik an der TU Dresden" },
- { 41375, "Switching Power Inc." },
- { 41376, "Hivecast Corporation" },
- { 41377, "IONHT CO.,LTD" },
- { 41378, "Rodnik SPE, Inc." },
- { 41379, "Miros AS" },
- { 41380, "KORUS Consulting SNG Ltd" },
- { 41381, "CJSC NEC Neva Communications Systems" },
- { 41382, "Fundacion Social Camara Chilena de la Construccion" },
- { 41383, "DURR Systems GmbH" },
- { 41384, "Zak\0305\0202ad Us\0305\0202ug Informatycznych OTAGO Sp. z o.o." },
- { 41385, "Deep Sea Electronics plc" },
- { 41386, "SYBORG Informationssysteme b.h. OHG" },
- { 41387, "Nest Labs" },
- { 41388, "IRIS Analytics GmbH" },
- { 41389, "Smarsh Inc" },
- { 41390, "Suzhou Anke Medical System Co., LTD" },
- { 41391, "OOO TFPK" },
- { 41392, "Livesport s.r.o." },
- { 41393, "Oh Leck!" },
- { 41394, "quarxConnect" },
- { 41395, "Codiac GmbH" },
- { 41396, "V-Nova Ltd" },
- { 41397, "ARAG SE" },
- { 41398, "Micaela Gasper LMT" },
- { 41399, "Groupe Dynamite Inc." },
- { 41400, "ECCEL CORP" },
- { 41401, "Northwest Savings Bank" },
- { 41402, "NMS Guru, Inc" },
- { 41403, "Apcera, Inc." },
- { 41404, "Rayan Roshd Electronic" },
- { 41405, "FrontRange Solutions" },
- { 41406, "focom limited" },
- { 41407, "Commune de Blonay" },
- { 41408, "Strix d.o.o." },
- { 41409, "CDJEM" },
- { 41410, "NTS Netzwerk Telekom Service AG" },
- { 41411, "ThinkSkink S.A. de C.V" },
- { 41412, "Innovative Technical Decisions LTD" },
- { 41413, "Xetawave, LLC" },
- { 41414, "Systeme-U (GIE Iris)" },
- { 41415, "Lucile Packard Children's Hospital at Stanford" },
- { 41416, "Futura Retail Solution AG" },
- { 41417, "rosemann software GmbH" },
- { 41418, "Toopher, Inc" },
- { 41419, "Schlenkermann" },
- { 41420, "Comunicaci\0303\0263n y Tecnolog\0303\0255a Araos LTDA" },
- { 41421, "Arizona Engineered Products LLC" },
- { 41422, "Vello Systems Inc." },
- { 41423, "Horasphere Inc." },
- { 41424, "National Computer Board" },
- { 41425, "iQsim" },
- { 41426, "Flexlab Ltd." },
- { 41427, "Benbria" },
- { 41428, "Otter Tail Power Company" },
- { 41429, "Incoax Networks Europe AB" },
- { 41430, "New Zealand Ministry of Business, Innovation and Employment" },
- { 41431, "Tahiti Nui Arena" },
- { 41432, "Bernhard Czech" },
- { 41433, "GROWMARK, Inc." },
- { 41434, "Rolamasao.org" },
- { 41435, "Smart Associates Limited" },
- { 41436, "Allwin Telecommunication Co., Ltd." },
- { 41437, "Geoffroy Gramaize" },
- { 41438, "HITOTEK Co.,Ltd" },
- { 41439, "Moscow Psychological and Social University" },
- { 41440, "Stabilus GmbH" },
- { 41441, "Tohoku University" },
- { 41442, "Berger Gunkel IT Systeme GmbH" },
- { 41443, "Evotope AS" },
- { 41444, "Syslore Oy" },
- { 41445, "Broadcast Over cellular" },
- { 41446, "APEX Medicus UAB" },
- { 41447, "INGECOM" },
- { 41448, "Electronic Tolling Soci\0303\0251t\0303\0251 Habilit\0303\0251e fournissant un service de T\0303\0251l\0303\0251p\0303\0251age (toll service provider) Front End" },
- { 41449, "Teranga-Software" },
- { 41450, "SheepDip Project" },
- { 41451, "Candid Color Systems, Inc." },
- { 41452, "LUISLAIN.COM" },
- { 41453, "Decura IM LLP" },
- { 41454, "Globig Consulting" },
- { 41455, "International Radio and Electronics Corporation (formerly 'Chrisso Technologies, LLC')" },
- { 41456, "Tintri Inc." },
- { 41457, "Bauman Moscow State Technical University (BMSTU)" },
- { 41458, "Ensoft Ltd" },
- { 41459, "Cofely Zuid Nederland BV" },
- { 41460, "Bundesnotarkammer" },
- { 41461, "ELMITEL d.o.o." },
- { 41462, "Actiontec Electronics Inc." },
- { 41463, "Air Internet Service Co.,Ltd." },
- { 41464, "MAXIOL Ltd." },
- { 41465, "DiceLock Security, SL" },
- { 41466, "JAKE Pty Ltd" },
- { 41467, "Shanghai iComhome Co., Ltd." },
- { 41468, "Zak\0305\0202ad Ubezpiecze\0305\0204 Spo\0305\0202ecznych" },
- { 41469, "Lactalis Danmark" },
- { 41470, "IMAGiNA Visi\0303\0263n Artificial S. L." },
- { 41471, "Basware (formerly 'Basware Belgium')" },
- { 41472, "PKP CARGO S.A." },
- { 41473, "Overseas Private Investment Corporation" },
- { 41474, "Pascagoula School District" },
- { 41475, "Shenzhen Tencent computer system Co., Ltd." },
- { 41476, "LightSquared" },
- { 41477, "Computer Systems Institute" },
- { 41478, "ExtremFarm Ltd." },
- { 41479, "Koenig & Bauer AG Werk Bielefeld" },
- { 41480, "LA DETECTION ELECTRONIQUE FRANCAISE - DEF" },
- { 41481, "MedischeGegevens.nl" },
- { 41482, "Yubico" },
- { 41483, "4Safe Advanced Solutions" },
- { 41484, "VidOvation - Moving Video Forward" },
- { 41485, "FPX, LLC" },
- { 41486, "Sargent & Lundy, L.L.C." },
- { 41487, "Ostrovok.ru" },
- { 41488, "City of Naperville " },
- { 41489, "Hakwerk IT B.V." },
- { 41490, "SUNGSAM CO., Ltd." },
- { 41491, "KDDI Web Communications Inc." },
- { 41492, "Mobtechonline" },
- { 41493, "Bangkok Pacific Steel Co., Ltd." },
- { 41494, "Hydac Verwaltung GmbH" },
- { 41495, "Northgas" },
- { 41496, "Dedicated Network Partners" },
- { 41497, "Optimus S.A." },
- { 41498, "SCHOTT AG" },
- { 41499, "Orgacomm international S.A." },
- { 41500, "faboleon bonaparte" },
- { 41501, "Afghanistan Root Certification Authority (ARCA)" },
- { 41502, "Balogh SA" },
- { 41503, "St. Tammany Parish Hospital" },
- { 41504, "Les solutions Asentri inc" },
- { 41505, "ALLIANCE AVIA" },
- { 41506, "Maniilaq Association" },
- { 41507, "Cloud21" },
- { 41508, "Rest Network" },
- { 41509, "SPING" },
- { 41510, "NAS Recruitment Communications" },
- { 41511, "Municipality of Athens" },
- { 41512, "DENSAN.CO.,LTD." },
- { 41513, "Autonomy Systems Limited" },
- { 41514, "LiHAS - Adrian Reyer" },
- { 41515, "QUADRAC Co. Ltd." },
- { 41516, "SaitecSrl" },
- { 41517, "Eagle Electronics" },
- { 41518, "Ingram Content Group" },
- { 41519, "OpenADR Alliance" },
- { 41520, "Jakub Juszczakiewicz" },
- { 41521, "Zebsys Ltd" },
- { 41522, "www.info-x.org" },
- { 41523, "Cloudseed" },
- { 41524, "Neratec Solutions AG" },
- { 41525, "Hubject GmbH" },
- { 41526, "MJP Communications Ltd" },
- { 41527, "Paperless" },
- { 41528, "Dunder Mifflin" },
- { 41529, "Zenerji, LLC " },
- { 41530, "USIX Co., Ltd." },
- { 41531, "Basic., INC." },
- { 41532, "Quick2Wire Limited" },
- { 41533, "CDS Call Dispatch Scholz GmbH" },
- { 41534, "VoiceHost Ltd" },
- { 41535, "Cleo Communications US, LLC" },
- { 41536, "Vix Technology" },
- { 41537, "U.P. Joven Club de Computaci\0303\0263n y Electr\0303\0263nica" },
- { 41538, "DARC e.V. OV Freiburg" },
- { 41539, "RAGged Software" },
- { 41540, "Intelligent Software Solutions, Inc." },
- { 41541, "Ardral Co." },
- { 41542, "Monnit Corporation" },
- { 41543, "Advanced Power Laboratories" },
- { 41544, "Fish Eagle Limited" },
- { 41545, "Gravity Networks" },
- { 41546, "Innologica JSC" },
- { 41547, "MOVASIM" },
- { 41548, "Laimbock Consulting" },
- { 41549, "runtastic GmbH" },
- { 41550, "Interlogica" },
- { 41551, "Navayo Research Kft." },
- { 41552, "Compagnie Nationale des Commissaires aux Comptes" },
- { 41553, "Spellpoint Oy" },
- { 41554, "ITX Secrurity" },
- { 41555, "ECOIT" },
- { 41556, "Fexco Merchant Services LTD" },
- { 41557, "AutoUplink Tech" },
- { 41558, "DigitalSignal" },
- { 41559, "GRUP SERHS, S.A." },
- { 41560, "Landesforsten Rheinland-Pfalz" },
- { 41561, "Inteligo Financial Services SA" },
- { 41562, "Nexiens" },
- { 41563, "BioLink Solutions Ltd." },
- { 41564, "Selectel LLC." },
- { 41565, "Ministry of Taxes of the Republic of Azerbaijan" },
- { 41566, "amagical.net" },
- { 41567, "A B Gensets Inc." },
- { 41568, "Sokuda Technologies(Beijing), Inc." },
- { 41569, "Mobile Interactiva S.L." },
- { 41570, "9bit, Borut Mrak s.p." },
- { 41571, "Global Linking Solutions" },
- { 41572, "BRS Labs" },
- { 41573, "ITRun Consulting Sp. z o.o." },
- { 41574, "UNI\0303\0203O BRASILEIRA DOS ESTUDANTES SECUNDARISTAS" },
- { 41575, "Modern Woodmen of America" },
- { 41576, "Uniao Nacional dos Estudantes" },
- { 41577, "Car Connectivity Consortium" },
- { 41578, "MAC IT Solutions" },
- { 41579, "Teraoka Seiko Co., Ltd." },
- { 41580, "Homer Electric Association, Inc." },
- { 41581, "RB Generalekonomik" },
- { 41582, "Maksat Tech Pvt Ltd" },
- { 41583, "ZAO NHK" },
- { 41584, "GCC Ltd." },
- { 41585, "EILEO" },
- { 41586, "ENSTEAM Sp. z o.o. (c/o E-FISH Sp. z o.o.)" },
- { 41587, "HOLLY&Co.,Ltd." },
- { 41588, "Shumilov Nikita Sergeevich" },
- { 41589, "Jolokia" },
- { 41590, "Wirtschaftsagentur Wien. Ein Fonds der Stadt Wien." },
- { 41591, "Sipi srl" },
- { 41592, "Evanti" },
- { 41593, "Sard Verbinnen & Co" },
- { 41594, "LLC \"Ekb-Info\"" },
- { 41595, "Genesis Technical Systems Corp" },
- { 41596, "HornersCorners, LLC" },
- { 41597, "RFEvolution s.r.l." },
- { 41598, "Instituto Federal Catarinense - Campus Conc\0303\0263rdia" },
- { 41599, "University of the Philippines - Diliman" },
- { 41600, "ABDUL KHALEK STORE" },
- { 41601, "Myriad Group AG" },
- { 41602, "Links Global Services, C.A." },
- { 41603, "SOMANSA Co., Ltd" },
- { 41604, "Monitor Electric Joint Stock Company" },
- { 41605, "Georgia's Own Credit Union" },
- { 41606, "centrotherm photovoltaics AG" },
- { 41607, "One IP" },
- { 41608, "EFP Rotenberg LLP" },
- { 41609, "Kjempekjekt AS" },
- { 41610, "Aspectra AG" },
- { 41611, "Bank Vontobel AG" },
- { 41612, "Swisscom Energy Solution AG" },
- { 41613, "Controles S.A." },
- { 41614, "Eagleville Hospital" },
- { 41615, "Manhattan College" },
- { 41616, "Weeo Group" },
- { 41617, "Sparta Consulting" },
- { 41618, "OJSC Bank SGB" },
- { 41619, "Hospitality Alliance AG" },
- { 41620, "Eric Lakin" },
- { 41621, "Ministerio de Gobierno y Reforma del Estado" },
- { 41622, "XOR Media, Inc." },
- { 41623, "One Tech Inc." },
- { 41624, "Bell Aliant" },
- { 41625, "Mended Duck Computer Services" },
- { 41626, "Geller & Company LLC" },
- { 41627, "Cenwell LTD" },
- { 41628, "Learning Media Ltd" },
- { 41629, "Chakra Network Solutions Private Limited" },
- { 41630, "SENSEMATIX" },
- { 41631, "Tasneem electronics LLC" },
- { 41632, "PT.Bina Buana Raya" },
- { 41633, "Certivox Ltd." },
- { 41634, "EDV Beratung Haag" },
- { 41635, "NBC Elettronica Group Srl" },
- { 41636, "Tolaris.com" },
- { 41637, "Talia Ltd" },
- { 41638, "Socus networks" },
- { 41639, "SVSI" },
- { 41640, "Laconisoft LLC" },
- { 41641, "Colglazier Clinic" },
- { 41642, "ThinKom Solutions, Inc." },
- { 41643, "RCG Creations Limited" },
- { 41644, "Cinegy GmbH" },
- { 41645, "Sinogram Technology (Beijing) Co., Ltd." },
- { 41646, "QUADROtech Solutions AG" },
- { 41647, "SpectrAp" },
- { 41648, "Shenzhen SDGI Optical Network Technologies Co,. Ltd." },
- { 41649, "Schnoor Industrieelektronik GmbH & Co. KG" },
- { 41650, "Engisoft" },
- { 41651, "Dapesco S.A." },
- { 41652, "IdentSign" },
- { 41653, "KCG Europe Ltd (formerly 'GETCO Europe Ltd')" },
- { 41654, "EAL (Apeldoorn) BV" },
- { 41655, "CardSmart Technologies" },
- { 41656, "2024Sight INC." },
- { 41657, "Bressner Technology" },
- { 41658, "United Business Media" },
- { 41659, "Datasat Technologies Ltd" },
- { 41660, "SciVisum Ltd" },
- { 41661, "SEKAS GmbH" },
- { 41662, "Capio S:t G\0303\0266rans Sjukhus AB" },
- { 41663, "Philippe Bonatti" },
- { 41664, "Costaneira - Arno Johann S/A Com\0303\0251rcio de Material de Constru\0303\0247\0303\0243o" },
- { 41665, "George Flemming LLC" },
- { 41666, "Government of Yukon" },
- { 41667, "Park Bench Software" },
- { 41668, "The Evergreen State College" },
- { 41669, "Spiros Iliadis" },
- { 41670, "AddOn Holding Gmbh" },
- { 41671, "Atelier WW Architekten SIA AG" },
- { 41672, "TECMASUR CIA. LTDA." },
- { 41673, "Lapsum" },
- { 41674, "WAS.ch GmbH" },
- { 41675, "ArmOwl LAB (Roman V. Kosinskiy)" },
- { 41676, "Gordon Broom" },
- { 41677, "Nicholas Brown" },
- { 41678, "SIBOAVANCE" },
- { 41679, "OVNETAP" },
- { 41680, "Media Netwerk AS" },
- { 41681, "Chudyk Cloud Services" },
- { 41682, "ASSEMBLY Organizing Oy" },
- { 41683, "Nebula Media Solutions Ltd." },
- { 41684, sminmpec_unknown }, /* (Added by Wireshark) */
- { 41685, "nfotex Informationstechnologie Dienstleistungs GmbH" },
- { 41686, "Uzin Utz AG" },
- { 41687, "Cold Crossing" },
- { 41688, "EOS Sistemi s.r.l." },
- { 41689, "Th\0303\0274ga Aktiengesellschaft" },
- { 41690, "Dension Audio Systems" },
- { 41691, "Horizon Forest Products, LLP " },
- { 41692, "Renee Marie Jones" },
- { 41693, "Nyingma Association of Mangalam Organizations - Communications And Network Infrastructure" },
- { 41694, "Christians Against Poverty" },
- { 41695, "Translational Centre for Regenerative Medicine (TRM)" },
- { 41696, "Actia Systems Espa\0303\0261a SAU" },
- { 41697, "European Central Bank" },
- { 41698, "Lucas-Consulting" },
- { 41699, "LGS Innovations" },
- { 41700, "eyeReturn Marketing Inc." },
- { 41701, "Jarvis Ford" },
- { 41702, "Levart Distribution Systems Pty. Ltd." },
- { 41703, "ATM-12" },
- { 41704, "Neoflow. Co., Ltd." },
- { 41705, "Institutul de Dezvoltare a Societatii Informationale" },
- { 41706, "Trollhattan Stad IT" },
- { 41707, "Solbox Inc." },
- { 41708, "Superior Access Solutions, Inc." },
- { 41709, "EAP Technologies, Inc." },
- { 41710, "ATES Networks" },
- { 41711, "Dossia" },
- { 41712, "ISTHARI" },
- { 41713, "Melet.com" },
- { 41714, "Azuki Systems, Inc." },
- { 41715, "Universal Cinema Services Co., Ltd." },
- { 41716, "Rational Retention, LLC" },
- { 41717, "Blekinge Institute of Technology" },
- { 41718, "Ouroboros" },
- { 41719, "Qosmotec GmbH" },
- { 41720, "Saisei Networks Inc" },
- { 41721, "International Communications Corporation INC" },
- { 41722, "Information Networks Ltd." },
- { 41723, "XGEN - Web Business" },
- { 41724, "Chengdu SKSpruce Technology Inc." },
- { 41725, "Tere.com Networks O\0303\0234" },
- { 41726, "Dr. Sulaiman Al Habib Medical Group" },
- { 41727, "Sabatier Geolocalisation" },
- { 41728, "athenahealth, Inc." },
- { 41729, "United Equitable Group, Ltd." },
- { 41730, "Arab States Research and Education Network, GmbH" },
- { 41731, "Prodware Deutschland AG" },
- { 41732, "Mathias Haimerl 3S" },
- { 41733, "Parallel Wireless" },
- { 41734, "V10 Networks" },
- { 41735, "Teletech Pty. Ltd." },
- { 41736, "Beatrice Wireko IT" },
- { 41737, "Bryan Health" },
- { 41738, "Algo Communication Products Ltd." },
- { 41739, "Five9, Inc." },
- { 41740, "TheGunns.net" },
- { 41741, "Ittim Technology Co.Ltd" },
- { 41742, "IMEC" },
- { 41743, "eKing Technology Co., Ltd." },
- { 41744, "Z3 Technology" },
- { 41745, "FrozenWarrior.com" },
- { 41746, "Chengdu Kingtype Digital TV Equipment Co., Ltd." },
- { 41747, "Oliver Solutions" },
- { 41748, "CensorNet Ltd" },
- { 41749, "Owens State Community College" },
- { 41750, "Head Department for Statistics and Information Technologies of State Customs Committee" },
- { 41751, "ROBIN'S" },
- { 41752, "ZAO \"NPK Rotek\"" },
- { 41753, "Greg Waterhouse" },
- { 41754, "Daniel Sage" },
- { 41755, "Lastline, Inc." },
- { 41756, "REVCORD - Revolutionizing Voice Recording" },
- { 41757, "Prism Systems, Inc." },
- { 41758, "Axham Corporation" },
- { 41759, "Open Computing Facility" },
- { 41760, "TibetSystem Co.,Ltd." },
- { 41761, "Atea Sverige AB" },
- { 41762, "Mayak LTD" },
- { 41763, "JSC \0302\0253BystroBank\0302\0273" },
- { 41764, "ETAT DE FRIBOURG" },
- { 41765, "Troyer AG" },
- { 41766, "Flow-Data, Inc" },
- { 41767, "IDSS AB" },
- { 41768, "Beijing Telesound Electronics Co., Ltd." },
- { 41769, "IS4IT GmbH" },
- { 41770, "Ascendi" },
- { 41771, "Fundamental Games" },
- { 41772, "Auth-servers" },
- { 41773, "TelVue Corporation" },
- { 41774, "Health Research, Inc." },
- { 41775, "Global Solutions Tecnologia da Informa\0303\0247\0303\0243o LTDA" },
- { 41776, "IACIT Solu\0303\0247\0303\0265es Tecnol\0303\0263gicas LTDA" },
- { 41777, "GSE Environmental, LLC" },
- { 41778, "Lake Avenue Congregational Church of Pasadena" },
- { 41779, "QualityLogic Inc." },
- { 41780, "Telesphere Networks Ltd" },
- { 41781, "Digby Wells Environmental" },
- { 41782, "Pacific Design Enginering" },
- { 41783, "Geolink Satellite Services" },
- { 41784, "ifbyphone, Inc." },
- { 41785, "Mary Washington Healthcare" },
- { 41786, "Ryu project" },
- { 41787, "HyperMatrix Solutions Ltd." },
- { 41788, "kuederli.net" },
- { 41789, "AlTaysir for Information Systems Security Consulting LLC" },
- { 41790, "I-CONCEPT" },
- { 41791, "eSPe" },
- { 41792, "Alrayyan for media and marketing co" },
- { 41793, "North East Independent School District" },
- { 41794, "High Point PC Solutions" },
- { 41795, "Net Consulting UK Ltd" },
- { 41796, "EleSy" },
- { 41797, "STC Systema" },
- { 41798, "astozi" },
- { 41799, "William Hill" },
- { 41800, "GaHIN (Georgia Health Information Network)" },
- { 41801, "Prattville Water Works Board" },
- { 41802, "Talkpath LLC" },
- { 41803, "On Center Software, Inc." },
- { 41804, "Austrian Federal Ministry of Science and Research" },
- { 41805, "Guidance Solutions, Inc." },
- { 41806, "Viastorage" },
- { 41807, "GuiZhou BC&TV Information Network Co.,LTD" },
- { 41808, "Administration of Municipal Formation of the City-Hero of Novorossiysk" },
- { 41809, "Dismuntel S.A.L." },
- { 41810, "Credit Agricole Bank, PJSC" },
- { 41811, "Spital M\0303\0244nnedorf AG" },
- { 41812, "Rouis Labs" },
- { 41813, "Anhui comhigher tech co.,ltd" },
- { 41814, "Hubei University Of Automotive Technology" },
- { 41815, "Fraunhofer-Institut fuer Software- und Systemtechnik ISST" },
- { 41816, "Blissful Living Foundation" },
- { 41817, "Cooper Gitiesse" },
- { 41818, "Quotient, Inc." },
- { 41819, "IPNetwork" },
- { 41820, "Kanton Basel-Landschaft" },
- { 41821, "Frantovo.cz" },
- { 41822, "Project FiFo" },
- { 41823, "Miaozhen Systems" },
- { 41824, "Universit\0303\0251 Gaston Berger" },
- { 41825, "Agilord Ltd." },
- { 41826, "Prognus Solu\0303\0247\0303\0265es Livres em TI" },
- { 41827, "Novantum BV" },
- { 41828, "NySoft Argentina SRL" },
- { 41829, "MEDDATA" },
- { 41830, "PicoCELA Inc." },
- { 41831, "Bitbase AS" },
- { 41832, "Private Entrepreneur Kutsevol Maxym" },
- { 41833, "Paree BV - Elektro Telecom" },
- { 41834, "BRAM Technologies" },
- { 41835, "JDL Digital Systems Inc." },
- { 41836, "Commend International GmbH (formerly 'bct electronic GesmbH')" },
- { 41837, "Evan-Moor Corp" },
- { 41838, "Dynamic Network Services Inc." },
- { 41839, "Prism-IPX Systems, LLC" },
- { 41840, "University of the Philippines Manila" },
- { 41841, "Zhuhai Bluemax Broadband Electronic Co.,Ltd" },
- { 41842, "Novosibirsk State University" },
- { 41843, "Uni-Film-Club Dortmund" },
- { 41844, "PERF-IT B.V." },
- { 41845, "Bitcarrier S.L." },
- { 41846, "Chinasoft International Co., Ltd." },
- { 41847, "EDALab s.r.l." },
- { 41848, "TOVEK" },
- { 41849, "CIDON" },
- { 41850, "DaySequerra Corporation" },
- { 41851, "zeb/rolfes.schierenbeck.associates gmbh" },
- { 41852, "Peregrine Capital Management" },
- { 41853, "RAMI" },
- { 41854, "W.J. Bradley" },
- { 41855, "Logol" },
- { 41856, "Grand Valley State University" },
- { 41857, "AGENCE NATIONALE DES INFRASTRUCTURES NUMERIQUES ET DES FREQUENCES" },
- { 41858, "The Trade Desk, Inc." },
- { 41859, "Hidden Design Kft." },
- { 41860, "Oryon TI" },
- { 41861, "Tucker Ellis LLP" },
- { 41862, "Metawell" },
- { 41863, "Mongoose GFX" },
- { 41864, "EyeKor LLC." },
- { 41865, "Monitor Business Machines Ltd" },
- { 41866, "Hitachi-LG Data Storage, Inc." },
- { 41867, "yinyuetai" },
- { 41868, "elecom co., ltd." },
- { 41869, "Selex Gematronik GmbH" },
- { 41870, "Notartel S.p.A" },
- { 41871, "Sonifex Ltd" },
- { 41872, "Masdar PV GmbH" },
- { 41873, "Institut Superieur d'Electronique de Paris (ISEP)" },
- { 41874, "LLC \"ANTE-MEDIAM\"" },
- { 41875, "Esselte IPR AB" },
- { 41876, "FOXCOMM NETWORKS" },
- { 41877, "Orban" },
- { 41878, "Tobias & Tobias" },
- { 41879, "Mind Labs" },
- { 41880, "MIcrotel Innovation S.r.l." },
- { 41881, "Korbitec (Pty) Ltd." },
- { 41882, "KLU Consulting / K\0305\0215kua Lolo Uila" },
- { 41883, "Trojan Technologies" },
- { 41884, "Katherine Shaw Bethea Hospital" },
- { 41885, "NDsoftware" },
- { 41886, "Beijing Sapling Technology Co.,Ltd" },
- { 41887, "ENSCO, Inc." },
- { 41888, "URZ Friedrich-Schiller-Universit\0303\0244t Jena" },
- { 41889, "Nine Internet Solutions AG" },
- { 41890, "Cuyahoga Community College District" },
- { 41891, "Holland LP" },
- { 41892, "BIFIT Service" },
- { 41893, "DBM S.r.l." },
- { 41894, "Logistica Integral" },
- { 41895, "Alliance Data" },
- { 41896, "Alberta Electric System Operator" },
- { 41897, "Inovar" },
- { 41898, "Australian Nuclear Science Technology Organization" },
- { 41899, "YU JYA TECHNOLOGY CO., LTD." },
- { 41900, "Ministry of Interior, Bulgaria" },
- { 41901, "CSG SCIENCE&TECHNOLOGY CO., LTD.HEFEI" },
- { 41902, "Gemeindeverwaltung Landquart" },
- { 41903, "ETL Solutions Ltd." },
- { 41904, "Impala Editores, SA" },
- { 41905, "Great-West Life " },
- { 41906, "VeriSign, Inc." },
- { 41907, "LoudCell Technologies Pvt Ltd." },
- { 41908, "HanKeInfo" },
- { 41909, "AventuraHQ, Inc" },
- { 41910, "Zentyal" },
- { 41911, "Great Plains Manufacturing, Inc." },
- { 41912, "International Electrotechnical Commission" },
- { 41913, "Tecsys do Brasil Industrial Ltda" },
- { 41914, "Bradford Robotic Telescope" },
- { 41915, "Southwestern Energy Co." },
- { 41916, "vIPtela Inc." },
- { 41917, "Leica Geosystems AG" },
- { 41918, "CIT Telecom-Service JSC" },
- { 41919, "Ugobame Uchibeke" },
- { 41920, "Shenzhen Integrated Electronic Systerms Lab Co.,Ltd." },
- { 41921, "Beijing Infomedia Electronic Technology Co., Ltd" },
- { 41922, "GuangDong Super Telecom Co,Ltd." },
- { 41923, "Patrick Sczepanski" },
- { 41924, "Digital Value SL" },
- { 41925, "Nufarm Limited" },
- { 41926, "Finecom Telecommunications AG" },
- { 41927, "FORO-tele" },
- { 41928, "Muir Matheson Ltd" },
- { 41929, "Jung, DMS & Cie. AG" },
- { 41930, "Nautronix Limited" },
- { 41931, "CMC Electronics" },
- { 41932, "HSC Brasil" },
- { 41933, "Aligera" },
- { 41934, "NKI AS" },
- { 41935, "Indian River County Sheriff" },
- { 41936, "Marway Power Solutions" },
- { 41937, "Escola Agricola de Jundiai - EAJ/UFRN" },
- { 41938, "INCEPTRUM Technologies Inc." },
- { 41939, "Tralix M\0303\0251xico S. de R.L. de C.V." },
- { 41940, "Bradbury School" },
- { 41941, "StuStaNet e. V." },
- { 41942, "Lettergen" },
- { 41943, "Bartec GmbH" },
- { 41944, "Virginia Department of Behavioral Health and Developmental Services" },
- { 41945, "Institution Solutions" },
- { 41946, "The Information Architecture Institute" },
- { 41947, "Unidem Sales Inc" },
- { 41948, "Job Snijders" },
- { 41949, "Danmagi" },
- { 41950, "DTI Solutions" },
- { 41951, "Quarles & Brady, LLP" },
- { 41952, "Asad Ahmed" },
- { 41953, "JSC \"ESC of EVRAAS\"" },
- { 41954, "Polewall Norge AS" },
- { 41955, "Jansen AG" },
- { 41956, "Fellig e.V." },
- { 41957, "Olfeo" },
- { 41958, "Prime Rate Ltd." },
- { 41959, "Earlham College" },
- { 41960, "easygo" },
- { 41961, "IntraCom Systems, LLC" },
- { 41962, "3ZTelecom Inc." },
- { 41963, "WebAmphibian.Com" },
- { 41964, "Ozona Consulting, S.L." },
- { 41965, "Mano Namai UK" },
- { 41966, "Applied Card Technologies Ltd." },
- { 41967, "Pivot Point Security" },
- { 41968, "EPCOTS" },
- { 41969, "Enero Solutions, inc." },
- { 41970, "Orion Networks International, Inc." },
- { 41971, "Touch Tecnologia e Inform\0303\0241tica LTDA" },
- { 41972, "Poznan University of Life Sciences" },
- { 41973, "Generation Tech" },
- { 41974, "Auf nach Mallorca GmbH" },
- { 41975, "ALNET ELEKTROMEKANIK LTD" },
- { 41976, "Turvasana Tmi" },
- { 41977, "Oakland County, Michigan" },
- { 41978, "BEIJING DING QING TECHNOLOGY LTD." },
- { 41979, "Mitsubishi Electric TOKKI Systems Corporation" },
- { 41980, "Neo-Renaissance Studios" },
- { 41981, "AerVox" },
- { 41982, "zetVisions AG" },
- { 41983, "Vorboss Limited" },
- { 41984, "meterriblecrew.net" },
- { 41985, "Desvaux Labs" },
- { 41986, "deepearth.co.uk" },
- { 41987, "BMO Capital Markets" },
- { 41988, "Van Wert County Hospital" },
- { 41989, "Alphatron Security Systems" },
- { 41990, "Pelagicore AG" },
- { 41991, "Super-Visions" },
- { 41992, "HOPPE Holding AG" },
- { 41993, "Redactia" },
- { 41994, "Jonas Kopp Systems Trust Network" },
- { 41995, "SIA-CE" },
- { 41996, "COM-TECH Italia S.p.A." },
- { 41997, "Silversky Inc." },
- { 41998, "Bumicom Telecommunicatie B.V. " },
- { 41999, "e2x Ltd." },
- { 42000, "National Mineral Resource University" },
- { 42001, "TechDivision GmbH" },
- { 42002, "Hurrikane Systems" },
- { 42003, "Akron Public Schools" },
- { 42004, "Gertec" },
- { 42005, "NHST MEDIA GROUP AS" },
- { 42006, "netis korea" },
- { 42007, "nikolakoco" },
- { 42008, "BumeBox, Inc." },
- { 42009, "Riava Networks Inc." },
- { 42010, "Luxul Corporation" },
- { 42011, "ISAAC Software Solutions B.V." },
- { 42012, "Mangold Technologies" },
- { 42013, "Registro General de la Propiedad de Guatemala" },
- { 42014, "Francois Trahan" },
- { 42015, "Weilhammer Networks" },
- { 42016, "Kingman Regional Medical Center" },
- { 42017, "MailMak ApS" },
- { 42018, "numo labs Pty. Ltd." },
- { 42019, "Fort-Telecom" },
- { 42020, "Piter Gaz JSC." },
- { 42021, "VoiceCom SA" },
- { 42022, "ITUS JAPAN Co.,Ltd." },
- { 42023, "Thetus Corporation" },
- { 42024, "Cibertec Internacional" },
- { 42025, "Koji Komatsuzaki" },
- { 42026, "TSTREAM CO.,LTD." },
- { 42027, "Sanctum Networks (P) Ltd." },
- { 42028, "Arnel limited" },
- { 42029, "Amigo Software" },
- { 42030, "Ghost Software" },
- { 42031, "42" },
- { 42032, "swisspartners Investment Network AG" },
- { 42033, "IslaLink" },
- { 42034, "Intemo Technologies" },
- { 42035, "Zedge" },
- { 42036, "LOYTEC electronics GmbH" },
- { 42037, "Stadt Augsburg" },
- { 42038, "Sanquin Bloedvoorziening" },
- { 42039, "Laboratoire Jacques Louis Lions" },
- { 42040, "Nasuni Corporation" },
- { 42041, "V\0303\0244nerhamn AB" },
- { 42042, "Inca Telecom S.A.C." },
- { 42043, "DingLi Communications Corp., Ltd." },
- { 42044, "GMQ Consulting AB" },
- { 42045, "Logical Tools s.r.l." },
- { 42046, "DigitalSign - Certifica\0303\0247\0303\0243o Digital Ltda" },
- { 42047, "twis.la (Clement Martin)" },
- { 42048, "Circle of Life Hospice" },
- { 42049, "Achkey Ltd" },
- { 42050, "China Security & Surveillance Technology,Inc." },
- { 42051, "Skyward Information System Co.,LTD." },
- { 42052, "vitapublic GmbH" },
- { 42053, "MEDvision360" },
- { 42054, "Stadler Bussnang AG" },
- { 42055, "West Lothian Council" },
- { 42056, "MultiToll Solutions SAS" },
- { 42057, "cegedim" },
- { 42058, "Lomnido, s.r.o." },
- { 42059, "MED2020 Health Care Software Inc." },
- { 42060, "Egon Braun" },
- { 42061, "SquareTwo Financial" },
- { 42062, "CyberTransJapan Co., Ltd." },
- { 42063, "Guidoon SAS" },
- { 42064, "Royse City ISD" },
- { 42065, "Iberia" },
- { 42066, "dbSpectra" },
- { 42067, "Bayerische Staatsforsten AoeR" },
- { 42068, "UBM Drecker GmbH" },
- { 42069, "The Comptroller General\0342\0200\0231s Department " },
- { 42070, "German Aerospace Center; Institute of Communications and Navigation" },
- { 42071, "Sprecher Automation GmbH" },
- { 42072, "Homes and Communities Agency" },
- { 42073, "DatASE" },
- { 42074, "Deltenna Limited" },
- { 42075, "BAFO Technologies Corp" },
- { 42076, "saltation GmbH & Co. KG" },
- { 42077, "sRatio" },
- { 42078, "Recursoft.org" },
- { 42079, "Army Emergency Relief " },
- { 42080, "Dajar" },
- { 42081, "TravailPrive" },
- { 42082, sminmpec_unknown }, /* (Added by Wireshark) */
- { 42083, "JS Networking Lab" },
- { 42084, "Mike Mackintosh" },
- { 42085, "Prolateral Consulting Ltd" },
- { 42086, "Vossloh Cogifer" },
- { 42087, "Business Insurance Direct" },
- { 42088, "Legal & General Nederland" },
- { 42089, "Rambler Internet Holding LLC" },
- { 42090, "Aleat shpk" },
- { 42091, "Tritech International Limited" },
- { 42092, "Serttel LTDA" },
- { 42093, "Expand" },
- { 42094, "Bfabric.org" },
- { 42095, "NII SOKB Ltd" },
- { 42096, "IQnet Ltd" },
- { 42097, "IT2u Czech s.r.o." },
- { 42098, "Fahrzeugsystemdaten GmbH" },
- { 42099, "Smart Green Labs S.L." },
- { 42100, "DV Industrial Computer Ltd." },
- { 42101, "iTEL" },
- { 42102, "Communications Audit UK Ltd" },
- { 42103, "hmcw gmbh" },
- { 42104, "wi2be Tecnologia S/A" },
- { 42105, "WebControl" },
- { 42106, "'MIGHTY APPARATUS FOR RADIOBRODCASTING AND TV\" Joint-Stock Company" },
- { 42107, "South Carolina Department of Revenue" },
- { 42108, "HRSoftworks" },
- { 42109, "Linux Based Systems Design, Ltd" },
- { 42110, "API Digital Communications Group, LLC" },
- { 42111, "Inovonics, Inc." },
- { 42112, "Kakapo Technologies Ltd." },
- { 42113, "STAsoft.net" },
- { 42114, "Finnish Institute of Occupational Health" },
- { 42115, "CommerceWest Bank" },
- { 42116, "AIG" },
- { 42117, "Oman Telecommunications Company (S.A.O.G)" },
- { 42118, "IDentAcc" },
- { 42119, "TRACT cjsc" },
- { 42120, "Multimatic Inc." },
- { 42121, "Michigan Public Health Institute" },
- { 42122, "Yurur" },
- { 42123, "Shanghai Xinyou Information Technology Co., Ltd." },
- { 42124, "YN-IT" },
- { 42125, "CK Engineering Ltd" },
- { 42126, "NOVARCHIVE" },
- { 42127, "SYMCOM INC" },
- { 42128, "KUL Elektronik Teknolojileri Ltd." },
- { 42129, "Continental Graphics Corp" },
- { 42130, "Skylink Technology Inc." },
- { 42131, "Westmont College" },
- { 42132, "Applied Security GmbH" },
- { 42133, "GoS Networks Ltd." },
- { 42134, "ScaleArc" },
- { 42135, "TRUSTe" },
- { 42136, "Ultra Electronics Airport Systems" },
- { 42137, "Unipagos S. de R.L. de C.V." },
- { 42138, "Virtualmaster, s.r.o." },
- { 42139, "Internet Corporation for Assigned Names and Numbers" },
- { 42140, "Bitfabrik GmbH & Co. KG" },
- { 42141, "Laboratoire d'Informatique Paris Nord" },
- { 42142, "The Faculty of Advocates" },
- { 42143, "Moose Beast Software" },
- { 42144, "cycos AG" },
- { 42145, "PRIME Apparatus" },
- { 42146, "EntobilSoft, Inc." },
- { 42147, "Pepperl+Fuchs GmbH" },
- { 42148, "The Geneva Foundation" },
- { 42149, "Cloud Life Software, LLC" },
- { 42150, "AffiniInternational B.V." },
- { 42151, "Net Business Pty Ltd" },
- { 42152, "Itransition" },
- { 42153, "Chuden CTI Co.,Ltd." },
- { 42154, "oak3 GmbH" },
- { 42155, "Evolution Racingteam Saar" },
- { 42156, "NeoLab-Systems S.A.R.L." },
- { 42157, "CERTIFIRMA, SOCIEDAD ANONIMA" },
- { 42158, "NetAgent Co., Ltd." },
- { 42159, "AT-Biotech Traceability Information Systems, S.L.U." },
- { 42160, "Iverdahl Systems" },
- { 42161, "GIE AGIRC-ARRCO" },
- { 42162, "NAKAYO ELECTRONICS CO.,LTD" },
- { 42163, "EBS Service Company Limited" },
- { 42164, "Minist\0303\0251rio P\0303\0272blico do RS" },
- { 42165, "Pi-Coral Inc." },
- { 42166, "Saint Josephs Hospital, Yonkers" },
- { 42167, "Data Tote" },
- { 42168, "blackchair Ltd" },
- { 42169, "The Coca-Cola Company" },
- { 42170, "Tiger Computing Ltd." },
- { 42171, "Gravitate" },
- { 42172, "Strencom" },
- { 42173, "Adiczion SARL" },
- { 42174, "ThiemoNet" },
- { 42175, "REFER Telecom, S.A." },
- { 42176, "eBernd" },
- { 42177, "Anuta Networks, Inc." },
- { 42178, "Nym Networks" },
- { 42179, "Sonora Quest Laboratories" },
- { 42180, "Kantonsspital Winterthur" },
- { 42181, "Wavecom - Solu\0303\0247\0303\0265es R\0303\0241dio S.A." },
- { 42182, "Speed and Function" },
- { 42183, "Digitus Biometrics" },
- { 42184, "ECG Management Consultants, Inc." },
- { 42185, "DEMTECH" },
- { 42186, "National Cement Company, Inc." },
- { 42187, "Podomatic, Inc" },
- { 42188, "MATRIXGROUP (CMS) PTY LTD" },
- { 42189, "JRTwine Software, LLC" },
- { 42190, "Genowise" },
- { 42191, "TotalServe Pty Ltd" },
- { 42192, "IDF Connect, Inc." },
- { 42193, "Alpha Networks S.A." },
- { 42194, "Matthews Midrange Consulting, Inc." },
- { 42195, "Tektorque, Lda" },
- { 42196, "Cauldron Development LLC" },
- { 42197, "Coffee Bean Software Pty Ltd" },
- { 42198, "IO-Power Technology Co., Ltd." },
- { 42199, "Foothills Rural Telephone Cooperative Corporation Inc." },
- { 42200, "Ecil Inform\0303\0241tica Ind\0303\0272stria e Comercio LTDA" },
- { 42201, "Schenker, Inc." },
- { 42202, "FreeTel, s.r.o." },
- { 42203, "TRA\0303\0207OTOP\0303\0201ZIO - INFORM\0303\0201TICA UNIPESSOAL LDA" },
- { 42204, "Kumoya Network" },
- { 42205, "Dooks Computer Services Ltd." },
- { 42206, "Proelse" },
- { 42207, "Commission Scolaire de la Pointe-de-l'Ile" },
- { 42208, "itecPlus GmbH" },
- { 42209, "CharlesRead Dot Com" },
- { 42210, "Beenius d.o.o. " },
- { 42211, "SHENZHEN HUAXUNARK TECHNOLOGY Co. Ltd." },
- { 42212, "CareCenter Software GmbH" },
- { 42213, "troydenton.ca" },
- { 42214, "Kaplan Bilisim Teknolojileri Yazilim ve Ticaret Ltd." },
- { 42215, "Alerant Inc." },
- { 42216, "BlueCorner" },
- { 42217, "Khoo Software Solutions" },
- { 42218, "ValleyCare Health System" },
- { 42219, "UniCredit Luxembourg S.A." },
- { 42220, "TELEDATA IT-L\0303\0266sungen GmbH" },
- { 42221, "Syl Research Limited" },
- { 42222, "Integrated Systems Technology, Inc." },
- { 42223, "Archive Analytics Ltd" },
- { 42224, "Fraunhofer Portugal Research Center for Assistive Information and Communication Solutions (Fraunhofer AICOS)" },
- { 42225, "Amco Marketing" },
- { 42226, "Evolve Media LLC" },
- { 42227, "Max-Planck-Institut fuer Mikrostrukturphysik" },
- { 42228, "Center Group" },
- { 42229, "Coriant R&D GmbH" },
- { 42230, "HiProCall GmbH" },
- { 42231, "AlfaTrein Ltd" },
- { 42232, "Fanzz" },
- { 42233, "Sigma Designs Inc." },
- { 42234, "Knotice, Ltd." },
- { 42235, "Tresorit Kft." },
- { 42236, "RDT Ltd" },
- { 42237, "Texas A&M University-Central Texas" },
- { 42238, "Grenville Mutual Insurance Company" },
- { 42239, "Aspira Networks, Inc" },
- { 42240, "Keyano College" },
- { 42241, "Geoquip Worldwide" },
- { 42242, "znets" },
- { 42243, "DLA Piper LLP (US)" },
- { 42244, "ITS Express, Inc." },
- { 42245, "Tagged, Inc." },
- { 42246, "OnePIN, Inc." },
- { 42247, "Aleph01" },
- { 42248, "SAIV" },
- { 42249, "Claritech SRL" },
- { 42250, "HFC Technics Ltd." },
- { 42251, "FutureTek, Inc." },
- { 42252, "Pflegeheim Alexander Beer GmbH & Co KG" },
- { 42253, "Zalando GmbH" },
- { 42254, "Inline Telecom Solutions" },
- { 42255, "The All England Lawn Tennis Club (Championships) Limited" },
- { 42256, "McGuireWoods LLP" },
- { 42257, "Cambridge Major Laboratories, Inc." },
- { 42258, "ooblick.com" },
- { 42259, "Green Energy Options Ltd" },
- { 42260, "Bent Vector" },
- { 42261, "Sayegh & John e-Trolley GbR" },
- { 42262, "TechRede, LLC" },
- { 42263, "Servas" },
- { 42264, "Fabien Debuire" },
- { 42265, "Thunder Software Technology Co., Ltd." },
- { 42266, "Otto (GmbH & Co KG)" },
- { 42267, "SARL Mixcom" },
- { 42268, "MEWA Textil-Service AG & Co. Management OHG" },
- { 42269, "Rigspolitiet (Danish National Police)" },
- { 42270, "Azienda Unita' Sanitaria Locale di Parma" },
- { 42271, "Fixious Global Indonesia" },
- { 42272, "Howard University Hospital" },
- { 42273, "AMPER" },
- { 42274, "Nexusguard Limited" },
- { 42275, "Advanced MR Analytics AB" },
- { 42276, "Infragear Inc" },
- { 42277, "CSW.IO" },
- { 42278, "Precitel SA" },
- { 42279, "SensMaster S/B" },
- { 42280, "SatExpander" },
- { 42281, "InfoBridge Solutions " },
- { 42282, "Pragmatix Services Private Limited" },
- { 42283, "Berwick Area School District" },
- { 42284, "Kai van Es" },
- { 42285, "FCS Computer Systems Sdn Bhd" },
- { 42286, "Connectem Inc." },
- { 42287, "UAP inc." },
- { 42288, "Sportech Inc." },
- { 42289, "NetTech Associates LLC" },
- { 42290, "LLC Sysvisor" },
- { 42291, "DWANGO MOBILE Co., Ltd." },
- { 42292, "SL Audio A/S" },
- { 42293, "North-West Customs-Logistical Service Co. Ltd." },
- { 42294, "S. & A.S. Ltd." },
- { 42295, "imzadi.de Network" },
- { 42296, "Impero Solutions Ltd" },
- { 42297, "Fraunhofer-Institut fuer Kommunikation, Informationsverarbeitung und Ergonomie FKIE" },
- { 42298, "Smoothwall Ltd" },
- { 42299, "Johnson Financial Group" },
- { 42300, "Minist\0303\0250re de la sant\0303\0251 et des serveurs sociaux" },
- { 42301, "turleyclan.com" },
- { 42302, "Beijing ForEase Times Technology Co., Ltd." },
- { 42303, "TE-SYSTEMS GmbH" },
- { 42304, "it & synergy GmbH" },
- { 42305, "Lupus alpha Asset Management" },
- { 42306, "CANARIE Inc." },
- { 42307, "Wildcard UK Ltd" },
- { 42308, "IndexUniverse, LLC" },
- { 42309, "Skale, Inc." },
- { 42310, "Matrix Switch Corporation" },
- { 42311, "X-Centric Solutions" },
- { 42312, "Hangzhou Zailing Electronic Technology Co., LTD" },
- { 42313, "Synergy Tecnologia" },
- { 42314, "D2D Technologies, LLC" },
- { 42315, "Mobisante, INC" },
- { 42316, "Pragmatech" },
- { 42317, "inVentia" },
- { 42318, "Recognition Technologies, Ltd" },
- { 42319, "777 Technology Solutions Limited" },
- { 42320, "Unassigned" },
- { 42321, "Mother Lode Holding Company" },
- { 42322, "TrakSystems" },
- { 42323, "Demma" },
- { 42324, "Powercode LLC" },
- { 42325, "Dialight, Inc." },
- { 42326, "ICON Americas" },
- { 42327, sminmpec_unknown }, /* (Added by Wireshark) */
- { 42328, "Nementis" },
- { 42329, "ipowertec" },
- { 42330, "Deltapath Commerce And Technology Limited" },
- { 42331, "Polarlink" },
- { 42332, "Vaillant Group" },
- { 42333, "Aliter Technologies, a.s." },
- { 42334, "Relmek co., Ltd" },
- { 42335, "iQ Consult Pty Ltd" },
- { 42336, "ADITO Software GmbH" },
- { 42337, "New York State Workers' Compensation Board" },
- { 42338, "Anywhere.24 Technologies GmbH" },
- { 42339, "Sabtech" },
- { 42340, "Open Standard Digital-IF Interface" },
- { 42341, "Tucson Airport Authority" },
- { 42342, "Guangdong Cable Corporation Limited" },
- { 42343, "James Hurley" },
- { 42344, "Puli Space Technologies Ltd." },
- { 42345, "Fluidic, Inc., d/b/a Fluidic Energy" },
- { 42346, "E-SIGN S.A." },
- { 42347, "Toyou Feiji Electronics Co., Ltd." },
- { 42348, "RUSNANO" },
- { 42349, "Noack Group" },
- { 42350, "Trebing & Himstedt Prozessautomation GmbH & Co. KG" },
- { 42351, "Champs Libres SCRLFS" },
- { 42352, "Hanweck Associates LLC" },
- { 42353, "LottSpot" },
- { 42354, "Trackprotect B.V." },
- { 42355, "ABCTec" },
- { 42356, "Electronic Media Services Ltd" },
- { 42357, "CHILLI MINT LABS LIMITED" },
- { 42358, "IP2I" },
- { 42359, "Versa Networks, Inc" },
- { 42360, "Skybox Imaging, Inc." },
- { 42361, "rahont" },
- { 42362, "spacefrogg.net" },
- { 42363, "Dematis" },
- { 42364, "Optoscape Optical Electronic Tech.Co.,Ltd " },
- { 42365, "H & M Hennes & Mauritz AB" },
- { 42366, "WxBR Wireless Broadband Soluctions" },
- { 42367, "Gedomo GmbH" },
- { 42368, "Azuru Networks" },
- { 42369, "Softel ltd" },
- { 42370, "ADRIATIC SLOVENICA d.d." },
- { 42371, "PA CSS (Pennsylvania eHealth Partnership Authority\0342\0200\0231s Community Shared Services)" },
- { 42372, "Banterra" },
- { 42373, "Kliniken des MTK GmbH" },
- { 42374, "Inmar Enterprises" },
- { 42375, "Unassigned" },
- { 42376, "Riverbed Technology Labs GmbH (formerly 'Ocedo GmbH')" },
- { 42377, "MBD Consulting, LLC" },
- { 42378, "FOSS-Group GmbH" },
- { 42379, "Danske Fragtm\0303\0246nd A/S" },
- { 42380, "IDFocus" },
- { 42381, "Human Brain Project" },
- { 42382, "iSystems e.U." },
- { 42383, "Horizon Fuel Cell Technologies" },
- { 42384, "Tecnolog\0303\0255as Inteligentes y Modelaci\0303\0263n de Sistemas, S.A de C.V." },
- { 42385, "AIC Inc." },
- { 42386, "dylanharris.org" },
- { 42387, "CompuTEK Industries" },
- { 42388, "TEL-STER sp. z o.o." },
- { 42389, "Ital-Mec s.r.l." },
- { 42390, "Oslo KFUMs Sj\0303\0270korps" },
- { 42391, "Eastern Informatics, Inc." },
- { 42392, "FOXTER Cia Imobili\0303\0241ria" },
- { 42393, "Teledata Comunicaciones S.A." },
- { 42394, "Synapse" },
- { 42395, "EPM" },
- { 42396, "xsinfosol pvt ltd" },
- { 42397, "Grandstream Networks, Inc." },
- { 42398, "KnCMiner AB" },
- { 42399, "Garuda Permata Saputra, CV." },
- { 42400, "TD Tech Ltd." },
- { 42401, "CanTech s.r.o." },
- { 42402, "Spec S.A." },
- { 42403, "Ivane Javakhishvili Tbilisi State University" },
- { 42404, "Vadacom Limited" },
- { 42405, "Roambotics, Inc." },
- { 42406, "SATO Corporation " },
- { 42407, "iGrid S.L." },
- { 42408, "HealthSafe24" },
- { 42409, "TopMenu.com" },
- { 42410, "Blue Denim Consulting Group Inc." },
- { 42411, "Niklaus Ltd." },
- { 42412, "Osorno Enterprises Inc." },
- { 42413, "PACSHealth, LLC" },
- { 42414, "Cloudacc Interactive, Inc." },
- { 42415, "Prince Rupert Grain Ltd." },
- { 42416, "Software Engineering Center (SEC)" },
- { 42417, "A2Zlogix" },
- { 42418, "GovSource Pty Ltd" },
- { 42419, "NICEUC Communication Tech CO., LTD" },
- { 42420, "Hebei SICON-EMI Power System Co., Ltd." },
- { 42421, "OpenVox Ltd." },
- { 42422, "ALLWIN Network Corp." },
- { 42423, "Republic of Azerbaijan Ministry of Foreign Affairs" },
- { 42424, "International Card Services BV (ICS)" },
- { 42425, "Thiesen Hardware- & Software-Design GmbH" },
- { 42426, "Institut Paul Bocuse" },
- { 42427, "New York Community Bancorp" },
- { 42428, "Bharti Airtel Limited" },
- { 42429, "Hidden Authentication and Trust service" },
- { 42430, "University of Massachusetts" },
- { 42431, "Chelyabinsk palace of pioneers and pupils named after Krupskaya N.K." },
- { 42432, "lepassepresent.com" },
- { 42433, "Parliamentary Commissioner for Administrative Investigations" },
- { 42434, "BOMATEC AG" },
- { 42435, "LEONHARD KURZ Stiftung & Co. KG" },
- { 42436, "Ojsc NIAEP" },
- { 42437, "Deltek, Inc." },
- { 42438, "Saratoga Speed Inc." },
- { 42439, "Stephan Seitz" },
- { 42440, "IQ Devices" },
- { 42441, "Uniscon universal identity control GmbH" },
- { 42442, "Hochschule der Medien Stuttgart" },
- { 42443, "Genesis Integration" },
- { 42444, "Oriental Cambridge Education Group" },
- { 42445, "InterASIA Solutions Inc." },
- { 42446, "Beijing Hesun Technologies Co.Ltd." },
- { 42447, "FreeSoft Nyrt." },
- { 42448, "Taisis Integration And Consulting Services sl" },
- { 42449, "InvestLab Technology, LLC" },
- { 42450, "Mutual Aid Labs, LLC" },
- { 42451, "Rizotec" },
- { 42452, "IRIS-RFID" },
- { 42453, "Drawersteak Research" },
- { 42454, "Funkring.net" },
- { 42455, "FOBAS Consulting, Inc." },
- { 42456, "VM Farms" },
- { 42457, "Palluc TIC SL" },
- { 42458, "TigerLead Solutions" },
- { 42459, "Esdenera Networks GmbH" },
- { 42460, "SYS'TRONICS Co., Ltd." },
- { 42461, "Innosonix GmbH" },
- { 42462, "David Ouagne" },
- { 42463, "TLS Corp." },
- { 42464, "binarycube" },
- { 42465, "Xerx Software Ltd" },
- { 42466, "Kratos Defense and Security Solutions, Inc." },
- { 42467, "Lucipher" },
- { 42468, "Jorge Cavallin" },
- { 42469, "Infobahn SA" },
- { 42470, "Voippartners s.r.l." },
- { 42471, "HOTCITY S.A." },
- { 42472, "SC-IT GmbH" },
- { 42473, "Action Technology Ltd." },
- { 42474, "Toro Development Ltd." },
- { 42475, "Dewar Electronics Pty Ltd" },
- { 42476, "Border 6" },
- { 42477, "OneNeck IT Services Corporation" },
- { 42478, "Proteus Sensor" },
- { 42479, "Metropolitan Wireless International Pte Ltd" },
- { 42480, "Grenland Data as" },
- { 42481, "Teletronix" },
- { 42482, "DocuSign, Inc." },
- { 42483, "Pioneer Bank" },
- { 42484, "Ultrix Sistemas de Informa\0303\0247\0303\0243o" },
- { 42485, "Christian Scholz" },
- { 42486, "Nuolezio" },
- { 42487, "Shenzhen Philorise co.ltd." },
- { 42488, "Element d.o.o" },
- { 42489, "Preferred Credit, Inc." },
- { 42490, "Intesi Group SpA" },
- { 42491, "Racktop Systems" },
- { 42492, "Far Bank Enterprises" },
- { 42493, "City of Waukesha" },
- { 42494, "Beckwith Electric Co. Inc" },
- { 42495, "O2 Systems Limited" },
- { 42496, "GlobalNaz IT" },
- { 42497, "Brookhaven Retreat, LLC" },
- { 42498, "Guenter Zimmermann" },
- { 42499, "Orlov-Miller" },
- { 42500, "Deoca Ltd." },
- { 42501, "Oto IT Limited" },
- { 42502, "CellOS Software Limited" },
- { 42503, "XJ Group Corporation" },
- { 42504, "SOKRAT Ltd." },
- { 42505, "Denkovi Assembly Electronics LTD" },
- { 42506, "Gostcomp Oliwer Godlewski" },
- { 42507, "HeuleSoft" },
- { 42508, "Shepherd Group Built Environment Information Systems (SGBE IS)" },
- { 42509, "net4home GmbH" },
- { 42510, "Cape Fear Valley Health System" },
- { 42511, "maxrosin.com" },
- { 42512, "Suchocki IT" },
- { 42513, "Ymax Communications" },
- { 42514, "SHENZHEN HXWK TECHNOLOGIES,CO LTD" },
- { 42515, "Liberty Global Services B.V." },
- { 42516, "Orderman GmbH" },
- { 42517, "Fundaci\0303\0263n Centro de Estudios de F\0303\0255sica del Cosmos de Arag\0303\0263n" },
- { 42518, "ZPE Systems, Inc" },
- { 42519, "BrainLogical Software Development" },
- { 42520, "LifeSafety Power, Inc." },
- { 42521, "Assystem France" },
- { 42522, "Velin V. Pavlov" },
- { 42523, "Leibniz-Institut fuer Analytische Wissenschaften -ISAS- e.V." },
- { 42524, "Townet srl" },
- { 42525, "Werkbank Multimedia GmbH" },
- { 42526, "elgris UG" },
- { 42527, "WTG Technologies Ltd" },
- { 42528, "Slovak Hydrometeorological Institute (SHMU)" },
- { 42529, "New Jersey Office of Information Technology" },
- { 42530, "SSQ Financial Group" },
- { 42531, "Security Industry Association" },
- { 42532, "Holysee Vatican Library" },
- { 42533, "BIOVELA, UAB" },
- { 42534, "CAFAT" },
- { 42535, "ictjob" },
- { 42536, "Hanover Displays Ltd." },
- { 42537, "SnmpStack" },
- { 42538, "artnet world wide" },
- { 42539, "Trumpet, Inc" },
- { 42540, "Zimpel Events And Communications PTY Ltd." },
- { 42541, "My Telecom Holdings Pty Ltd" },
- { 42542, "Voillo Solutions Ltd." },
- { 42543, "Simpson University" },
- { 42544, "ALLENGERS GLOBAL HEALTHCARE PRIVATE LIMITED" },
- { 42545, "CSC Telecom" },
- { 42546, "tyntec GmbH" },
- { 42547, "OrecX LLC" },
- { 42548, "gloops, Inc." },
- { 42549, "F.S.P. Filofarm" },
- { 42550, "SFS services AG" },
- { 42551, "CRFS Limited" },
- { 42552, "Hrvatski zavod za telemedicinu" },
- { 42553, "TeknoUnit" },
- { 42554, "Dynamic Quest, INC" },
- { 42555, "Faculty of Information Technology and Applied Mathematics, BelSU" },
- { 42556, "Visao Tecnologia em Transmissao de Dados Ltda" },
- { 42557, "Unico Data AG" },
- { 42558, "Canis Lupus LLC" },
- { 42559, "AppEnsure" },
- { 42560, "Kirovohrad Volodymyr Vynnychenko State Pedagogical University" },
- { 42561, "ZAO \"MD Project 2000\"" },
- { 42562, "Universidad P\0303\0272blica de Navarra (UPNA)" },
- { 42563, "Kaleidescape, Inc." },
- { 42564, "KO4BB Electronics" },
- { 42565, "Weirton Medical Center" },
- { 42566, "ClearBearing, Inc." },
- { 42567, "David Spinella" },
- { 42568, "Andreas Vavra" },
- { 42569, "Miesepies" },
- { 42570, "Independent Bank Corporation" },
- { 42571, "Cybera, Inc" },
- { 42572, "SAFELYLOCKED, LLC" },
- { 42573, "Sun Nuclear Corporation" },
- { 42574, "Sydestep Ltd" },
- { 42575, "e-business-systems SARL" },
- { 42576, "Linpow SRL" },
- { 42577, "Crosspoint SRL Romania" },
- { 42578, "Xcel Energy" },
- { 42579, "sysmocom - systems for mobile communications GmbH" },
- { 42580, "Statseeker" },
- { 42581, "Regional Digital Telecommunication Company" },
- { 42582, "Interlink Ltd." },
- { 42583, "DPII TELECOM & SERVICES" },
- { 42584, "ROWA Group Holding GmbH" },
- { 42585, "TRIKOM Ltd." },
- { 42586, "DAG System" },
- { 42587, "Investigaciones Medicas S.A." },
- { 42588, "AGST Controles e Automa\0303\0247\0303\0243o Ltda" },
- { 42589, "Swifttrip LLC" },
- { 42590, "AVB GmbH Wind Engineering" },
- { 42591, "Forlani Impianti s.r.l." },
- { 42592, "TV 2/Danmark A/S" },
- { 42593, "Gas Natural Inform\0303\0241tica, S.A." },
- { 42594, "Fox Technologies" },
- { 42595, "Right Systems Inc" },
- { 42596, "ATNet Services" },
- { 42597, "Norberto Bensa - ENEABE" },
- { 42598, "Tibero" },
- { 42599, "NIPPON TELEGRAPH AND TELEPHONE WEST CORPORATION" },
- { 42600, "Rejlers Oy" },
- { 42601, "Sycada" },
- { 42602, "Performr B.V." },
- { 42603, "Vorston" },
- { 42604, "Springfield Technical Community College" },
- { 42605, "PLC International Inc" },
- { 42606, "Urban-Software.de" },
- { 42607, "Brekford International" },
- { 42608, "Alan Seedhouse" },
- { 42609, "Boundary, Inc." },
- { 42610, "Superior Power solutions (HK) Co.,Ltd" },
- { 42611, "Valdrea, LLC" },
- { 42612, "Koninklijke BAM Groep nv" },
- { 42613, "POLYONE CORPORATION" },
- { 42614, "Tribal Chicken Australia" },
- { 42615, "eTRUST co., ltd." },
- { 42616, "Pannonia Technologies" },
- { 42617, "Alphion India Private Limited" },
- { 42618, "Kaaos Unlimited Oy" },
- { 42619, "PRYSM SARL" },
- { 42620, "Katalix Systems Ltd" },
- { 42621, "Elecdan" },
- { 42622, "Hernic Ferro Chrome Pty Ltd" },
- { 42623, "Open Compute Project" },
- { 42624, "Whatever s.a." },
- { 42625, "Technology Toolbox LLC" },
- { 42626, "Blue Fire Capital" },
- { 42627, "Vermont Department of Labor" },
- { 42628, "Shenzhen HD Digital Tech Co., Ltd." },
- { 42629, "WaveNT Co.,Ltd. " },
- { 42630, "Dona Ana County, New Mexico" },
- { 42631, "Xellia Pharmaceuticals ApS" },
- { 42632, "Kompanija Dunav Osiguranje a.d.o. Beograd" },
- { 42633, "VOXXL" },
- { 42634, "PSW GROUP GmbH & Co. KG" },
- { 42635, "RudiNet Ltd." },
- { 42636, "SecuriPax" },
- { 42637, "Cloudhouse Technologies" },
- { 42638, "ARD-Sternpunkt" },
- { 42639, "Cellcrypt Ltd" },
- { 42640, "Derek Lambert (CrEOF)" },
- { 42641, "Tri-State Generation and Transmission" },
- { 42642, "Stage Entertainment" },
- { 42643, "NetSavia SA" },
- { 42644, "New Leaf Publishing Group, Inc." },
- { 42645, "Ros Vicente (ITComp)" },
- { 42646, "Etherlive Ltd" },
- { 42647, "Alliance Spacesystems, LLC" },
- { 42648, "Blue Global Media" },
- { 42649, "The LaSalle Technology Group" },
- { 42650, "Parque Tecnol\0303\0263gico Itaipu - Paraguay" },
- { 42651, "willisss.com" },
- { 42652, "Sichuan Bihong Broadcast&Television New Technologies Co.,Ltd" },
- { 42653, "Netcloud AG" },
- { 42654, "RCS & RDS SA" },
- { 42655, "On the Cusp Ltd." },
- { 42656, "Clear-Com" },
- { 42657, "Mixpo" },
- { 42658, "Lakra Sintez Ltd." },
- { 42659, "Robert Maxwell Professional Consulting" },
- { 42660, "Wildman & Morris" },
- { 42661, "Asian Pacific Telecommunications" },
- { 42662, "Wuerzburger Versorgungs- und Verkehrs-GmbH" },
- { 42663, "Zhengwei-tech Co.,Ltd." },
- { 42664, "Iromedica AG" },
- { 42665, "WIRD AG" },
- { 42666, "Affiliated Managers Group, Inc." },
- { 42667, "Northwest Multiple Listing Service" },
- { 42668, "ZIMT University of Siegen" },
- { 42669, "HangZhou Chenxiao Technologies Co.,ltd" },
- { 42670, "SICE Tecnolog\0303\0255a y Sistemas, S.A. (formerly 'Sociedad Ib\0303\0251rica de Construcciones El\0303\0251ctricas, S.A.')" },
- { 42671, "Pinetron Co.,Ltd" },
- { 42672, "G. X. Clarke & Co." },
- { 42673, "SAIC, Inc." },
- { 42674, "TVH Group NV" },
- { 42675, "Comit\0303\0251 Permanent des M\0303\0251decins Europ\0303\0251ens" },
- { 42676, "Servergy, Inc" },
- { 42677, "Altertech s.r.o." },
- { 42678, "Lakra Sibir Ltd." },
- { 42679, "cne.at" },
- { 42680, "Randstad Espa\0303\0261a, S.L." },
- { 42681, "Freeport of Riga Authority" },
- { 42682, "Cyviz AS" },
- { 42683, "Trans Data Management (TDM)" },
- { 42684, "Bump Networks, Inc." },
- { 42685, "Benjamin Huepeden IT" },
- { 42686, "Siempelkamp Maschinen- und Anlagenbau GmbH & Co. KG" },
- { 42687, "Meridian Health System" },
- { 42688, "STABILO International GmbH" },
- { 42689, "Southern Methodist University" },
- { 42690, "nGeniux LLC" },
- { 42691, "Australia and New Zealand Banking Group Limited" },
- { 42692, "Philotech" },
- { 42693, "AcroRed Technologies, Inc." },
- { 42694, "LoopPay, Inc." },
- { 42695, "Beijing QTS Networks Technologies Co., Ltd" },
- { 42696, "Indian Hotels Company Limited" },
- { 42697, "Activsolar" },
- { 42698, "Qualitis Kft." },
- { 42699, "Dorwin Enterprises" },
- { 42700, "ESP Credit Management" },
- { 42701, "thepickle.com, Inc." },
- { 42702, "Altairis, s. r. o." },
- { 42703, "Locatrix Communications" },
- { 42704, "Marco Displays" },
- { 42705, "HVR Software" },
- { 42706, "Ministry of Internal Affairs - Kosova" },
- { 42707, "Corvinus University of Budapest" },
- { 42708, "Teachers Assurance" },
- { 42709, "CarWoo! Inc." },
- { 42710, "Designs for Health, Inc." },
- { 42711, "MEIRYO DENSHI CORPORATION" },
- { 42712, "Hanvit SI, Inc." },
- { 42713, "HPS ICT&Mobile Solutions" },
- { 42714, "Beijing Joy and Success Technology Co., Ltd." },
- { 42715, "tanum consult GmbH" },
- { 42716, "LzLabs GmbH" },
- { 42717, "Prefeitura Municipal de Cachoeirinha - RS - Brasil" },
- { 42718, "Vema, a.s." },
- { 42719, "CyberFX, Inc." },
- { 42720, "Bilgibim Bilgisayar Teknolojileri" },
- { 42721, "Teck Resources Limited" },
- { 42722, "Miraj Technology and Consulting Corporation" },
- { 42723, "Shouting Ground Technologies, Inc." },
- { 42724, "Kernel Electronics Co Ltd" },
- { 42725, "Institut Teknologi Sepuluh Nopember" },
- { 42726, "ArcSoft Hangzhou CO.,LTD." },
- { 42727, "X-Company Pty Ltd" },
- { 42728, "Tomaxx GmbH" },
- { 42729, "Private Iron and Steel Joint Stock Company \"Donetsksteel\"" },
- { 42730, "Croda International Plc" },
- { 42731, "Statkraft SF" },
- { 42732, "Southern Power Systems, Inc." },
- { 42733, "FSMLabs" },
- { 42734, "Nextmove Technologies" },
- { 42735, "dParadig" },
- { 42736, "Haus der Barmherzigkeit" },
- { 42737, "Zends" },
- { 42738, "Vivint Wireless" },
- { 42739, "Veolia Water Solutions & Technologies" },
- { 42740, "MaerdnGaming GbR" },
- { 42741, sminmpec_unknown }, /* (Added by Wireshark) */
- { 42742, "Winix Solutions LLC" },
- { 42743, "Nieder\0303\0266sterreichische Gebietskrankenkasse" },
- { 42744, "Falabella" },
- { 42745, "Jamdeo" },
- { 42746, "InterNetX GmbH" },
- { 42747, "Kik Interactive" },
- { 42748, "MyOrg.at (Johannes Hackl)" },
- { 42749, "Utilidata, Inc" },
- { 42750, "Umbrella ID" },
- { 42751, "Neowatt Energy Solutions Co. Pvt. Ltd." },
- { 42752, "AMEDTEC Medizintechnik Aue GmbH" },
- { 42753, "University of The Philippines Los Ba\0303\0261os" },
- { 42754, "Enel Energy Electronic" },
- { 42755, "ATON GmbH" },
- { 42756, "Purdue Research Foundation" },
- { 42757, "Encana Corporation" },
- { 42758, "C4B Com For Business AG" },
- { 42759, "Practicom B.V." },
- { 42760, "PHOENIX PHARMA " },
- { 42761, "Imavis srl" },
- { 42762, "ipex telecom LLC" },
- { 42763, "ShangHai Jeelan Information Technology Inc." },
- { 42764, "Smith College" },
- { 42765, "Muzeum Historii Zydow Polskich" },
- { 42766, "Typomedia Foundation" },
- { 42767, "Queensland Motorways Limited" },
- { 42768, "Marcelo Leal" },
- { 42769, "Supermathie Networks" },
- { 42770, "Totalpost Services PLC" },
- { 42771, "DGQoS" },
- { 42772, "Galkam PTY LTD" },
- { 42773, "Transport for London" },
- { 42774, "Semtech Corporation" },
- { 42775, "Linx ICT Solutions" },
- { 42776, "one2many BV" },
- { 42777, "Gosuncn Technology Group Co., Ltd" },
- { 42778, "Michael Offel (mflour.com)" },
- { 42779, "CJSC \"NORSI-TRANS\"" },
- { 42780, "SEB DEVELOPPEMENT SAS" },
- { 42781, "Bragg Communications Inc." },
- { 42782, "Ekrompt, JSC" },
- { 42783, "workvslife.com" },
- { 42784, "Pinnacle Foods Group, LLC" },
- { 42785, "Syntaxjockey" },
- { 42786, "CNS Engineering" },
- { 42787, "Concentric Sky" },
- { 42788, "artec technologies AG" },
- { 42789, "SynQor, Inc." },
- { 42790, "Rebasoft" },
- { 42791, "Geo-Comm, Inc." },
- { 42792, "Near East University" },
- { 42793, "IntCache Technology Co.,Ltd" },
- { 42794, "LEX Media Concepts SRL" },
- { 42795, "mrByte Tech Solutions" },
- { 42796, "IQ Solutions S.A." },
- { 42797, "Freie ArbeiterInnen Union" },
- { 42798, "HUENGSBERG AG" },
- { 42799, "Alfstore" },
- { 42800, "Co-Nexus Communications Systems, Inc." },
- { 42801, "Essai Inc" },
- { 42802, "Rigel Engineering" },
- { 42803, "Valialsoft LLC" },
- { 42804, "New Singularity International Technical Development Co.,Ltd." },
- { 42805, "Cloudy IT" },
- { 42806, "WINFO Corp." },
- { 42807, "City West Country Ltd" },
- { 42808, "Arachnid Labs Ltd" },
- { 42809, "netbreaker IT-Service" },
- { 42810, "Telesis, S.A. de C.V." },
- { 42811, "Enyx" },
- { 42812, "ISD Dunaferr Co. Ltd." },
- { 42813, "Polskie Sieci Elektroenergetyczne S.A." },
- { 42814, "Inveo " },
- { 42815, "Tussa IKT AS" },
- { 42816, "HACENTER" },
- { 42817, "IBM Platform Firmware Division " },
- { 42818, "Relative Variable Software" },
- { 42819, "Carante Groep" },
- { 42820, "Techsun" },
- { 42821, "ACXIO" },
- { 42822, "Tesc" },
- { 42823, "Spilsby Internet Solutions" },
- { 42824, "Web.Cloud.Apps. GmbH" },
- { 42825, "vArmour Networks" },
- { 42826, "ChengDu Network Security Technology Corporation" },
- { 42827, "rm-netproject UG (haftungsbeschr\0303\0244nkt)" },
- { 42828, "US Army Electronic Provings Ground (USAEPG) Instrumentation Management System (IMS)" },
- { 42829, "QuartzDesk.com" },
- { 42830, "Landis+Gyr" },
- { 42831, "Kickass Systems" },
- { 42832, "Tata Institute Fundamental Research " },
- { 42833, "Nimbus Technologieberatung GmbH" },
- { 42834, "TechniData IT-Service GmbH" },
- { 42835, "ZELITRON SA" },
- { 42836, "eXtreme IT Development" },
- { 42837, "Westpac New Zealand Ltd" },
- { 42838, "FAST DISTRIBUTED CLOUD COMPUTING INC.," },
- { 42839, "Tactical Communications Corporation" },
- { 42840, "Reporo" },
- { 42841, "Kraftanlagen Muenchen GmbH" },
- { 42842, "iQSpot" },
- { 42843, "TWIN Engineering S.r.l." },
- { 42844, "SPI GmbH" },
- { 42845, "TOKYO SYSTEM HOUSE Co., Ltd." },
- { 42846, "Corhoma SRL" },
- { 42847, "2H Offshore Engineering Ltd" },
- { 42848, "NETIXIA" },
- { 42849, "Fabrecode" },
- { 42850, "LocalTV LLC of Alabama" },
- { 42851, "Fidelity Voice Services" },
- { 42852, "Bank Gospodarstwa Krajowego" },
- { 42853, "DunnCox" },
- { 42854, "EMPRESA DE TECNOLOGIA DA INFORMA\0303\0207\0303\0203O E COMUNICA\0303\0207\0303\0203O DO MUNIC\0303\0215PIO DE S\0303\0203O PAULO" },
- { 42855, "techsoup.net" },
- { 42856, "Kreis Warendorf" },
- { 42857, "Family Madera of Switzerland" },
- { 42858, "Linux Szerver Kft." },
- { 42859, "Shanghai SHR Automation Co.,Ltd" },
- { 42860, "Asul IT Consulting LLP" },
- { 42861, "Ophylink Communication Technology Co., Ltd. " },
- { 42862, "AITA-Soft" },
- { 42863, "IOS Health Systems" },
- { 42864, "Mobius Embedded Systems Ltd" },
- { 42865, "Hoza Logistic Solutions" },
- { 42866, "Frontend.biz GmbH" },
- { 42867, "BestSolution.at" },
- { 42868, "Association of American Railroads" },
- { 42869, "UNE EPM Telecomunicaciones S.A." },
- { 42870, "Unither Manufacturing LLC" },
- { 42871, "IMRIS" },
- { 42872, "Unomaly AB" },
- { 42873, "Comune di Ascoli Piceno" },
- { 42874, "Hospedia Ltd" },
- { 42875, "ACISA" },
- { 42876, "SGSITES Technologies" },
- { 42877, "Sundvor" },
- { 42878, "Credit-Moscow Bank" },
- { 42879, "Sielaff GmbH & Co. KG" },
- { 42880, "Uwe Disch" },
- { 42881, "No Limit Network" },
- { 42882, "Jiangsu Fablesoft Co.,Ltd" },
- { 42883, "CARC (C-DOT Alcatel-Lucent Research Centre Pvt Ltd)" },
- { 42884, "Anderson Morgan Kelowna Inc." },
- { 42885, "S P I R I T - informa\0304\0215n\0303\0251 syst\0303\0251my, a.s. " },
- { 42886, "InMotion Hosting" },
- { 42887, "One Call Now" },
- { 42888, "Canadian Museum for Human Rights" },
- { 42889, "IO Data Centers, LLC" },
- { 42890, "Renkus Heinz Incorporated" },
- { 42891, "Santechkomplekt Ltd." },
- { 42892, "TOYGA" },
- { 42893, "Funkfeuer Wien - Verein zur F\0303\0266rderung freier Netze" },
- { 42894, "CAROL JEANNE MACK CORPORATION" },
- { 42895, "Securiton GmbH" },
- { 42896, "The O'Gara Group" },
- { 42897, "Evan Edstrom" },
- { 42898, "IM Service Lab Srl" },
- { 42899, "kiloWattsol" },
- { 42900, "Elcom Innovations Private Limited" },
- { 42901, "Chaos Computer Club Cologne" },
- { 42902, "J.R. Torralba" },
- { 42903, "IT Innovations Ukraine LLC" },
- { 42904, "Nemik Consulting Inc" },
- { 42905, "Trihedral Engineering Ltd." },
- { 42906, "Shift Workforce Management" },
- { 42907, "PLUTEX GmbH" },
- { 42908, "Megadevices" },
- { 42909, "Tver State University" },
- { 42910, "latticeware.com" },
- { 42911, "Metiri Systems, LLC" },
- { 42912, "locate solution GmbH" },
- { 42913, "Exatech bv" },
- { 42914, "Wimsey" },
- { 42915, "MCATSYSTEMS LLC" },
- { 42916, "Arcerm" },
- { 42917, "Adcubum AG" },
- { 42918, "Trafigura" },
- { 42919, "Max-Planck-Institut fuer Astrophysik" },
- { 42920, "Slaughter and May" },
- { 42921, "Dropbox, Inc." },
- { 42922, "Ministarstvo odbrane Republike Srbije" },
- { 42923, "Stefan Ebert" },
- { 42924, "The Molecule" },
- { 42925, "SYLEB SARL" },
- { 42926, "NSC Communications Siberia Ltd" },
- { 42927, "Fidelio Cruise Software" },
- { 42928, "Galleon Systems Ltd" },
- { 42929, "securedeviceaccess.com" },
- { 42930, "GEKO.NET di Mena Giuseppe" },
- { 42931, "Vladimir Mihajlovi\0304\0207 pr, ra\0304\0215unarsko programiranje, METACODE, Beograd" },
- { 42932, "Infolink Global" },
- { 42933, "iArtemis" },
- { 42934, "APRS World, LLC" },
- { 42935, "Axcelera" },
- { 42936, "Anhui Telehome Digital Technology Co. Ltd" },
- { 42937, "VP (Video Privacy) Forum" },
- { 42938, "Moviri S.p.a." },
- { 42939, "Applied Informatics for Health Society" },
- { 42940, "City of Smyrna" },
- { 42941, "2XWIRELESS, INC" },
- { 42942, "kayzan" },
- { 42943, "CopperPoint Mutual Insurance Company" },
- { 42944, "Seenov Inc." },
- { 42945, "Seeser Datentechnik" },
- { 42946, "Utel Systems" },
- { 42947, "Network Technologies International, Inc." },
- { 42948, "Methodist Home for Children" },
- { 42949, "Bol.com b.v." },
- { 42950, "Hangzhou Joson Technology Co.,Ltd" },
- { 42951, "Highlands Technologies Solutions" },
- { 42952, "SOREDI touch systems GmbH" },
- { 42953, "\"Runet Business Systems\"" },
- { 42954, "Bizerba GmbH & Co. KG" },
- { 42955, "Louisville-Jefferson County Metro Government" },
- { 42956, "HumanIT Inc." },
- { 42957, "Wave Advanced Technology Applications s.r.l." },
- { 42958, "Central Office for Administrative and Electronic Public Services" },
- { 42959, "Snap Limited" },
- { 42960, "Garn Contracting & Consulting Pty Ltd" },
- { 42961, "EH-electronics GmbH" },
- { 42962, "Blitznote e.K." },
- { 42963, "UltraMED Systems, Inc." },
- { 42964, "Abelsoft Inc" },
- { 42965, "ec3 Networks GmbH" },
- { 42966, "ECHO LLC" },
- { 42967, "liedloff.org" },
- { 42968, "Wertsch\0303\0274tz GmbH i.Gr. (formerly 'ME Engineering M2M GmbH')" },
- { 42969, "Iorga Group" },
- { 42970, "RP SIA \"Rigas satiksme\"" },
- { 42971, "ONELAN LIMITED" },
- { 42972, "IT Business Solutions and Services (ITBSS)" },
- { 42973, "COMDOK GmbH" },
- { 42974, "Willis-Knighton Health System" },
- { 42975, "Iridium Thought" },
- { 42976, "Key Source International" },
- { 42977, "Matta Consulting Limited" },
- { 42978, "CSN Groep BV" },
- { 42979, "Wellington Security Systems" },
- { 42980, "EZ e-TRAK" },
- { 42981, "Heuristic Systems Pty Ltd" },
- { 42982, "Leafsprout" },
- { 42983, "SAS Nexylan" },
- { 42984, "Toyohashi University of Technology" },
- { 42985, "Cnofe" },
- { 42986, "Beijing MicroColor Corp., LTD." },
- { 42987, "Gida Technology Services" },
- { 42988, "Nanjing Huamai Technology Co., Ltd" },
- { 42989, "Teleg\0303\0244rtner Karl G\0303\0244rtner GmbH" },
- { 42990, "VTSL Ltd" },
- { 42991, "Marylhurst University" },
- { 42992, "Vektron Energy (Pty) Ltd" },
- { 42993, "Cornerstone Health Care, P.A." },
- { 42994, "Institut de Physique de Rennes" },
- { 42995, "AvertIT" },
- { 42996, "NOMASYSTEMS, S.L." },
- { 42997, "Red Giant Inc" },
- { 42998, "Progdence Co.,Ltd." },
- { 42999, "Parse Software Development B.V." },
- { 43000, "Service Ontario" },
- { 43001, "Nextbeacon" },
- { 43002, "RootService (Markus Kohlmeyer)" },
- { 43003, "TribalGroup" },
- { 43004, "Xinguard, Inc." },
- { 43005, "University of Technology and Life Sciences in Bydgoszcz" },
- { 43006, "root-a.net" },
- { 43007, "Gipen Systems" },
- { 43008, "FRTek" },
- { 43009, "Vilnius Gallery" },
- { 43010, "Two Sigma Investments, LLC" },
- { 43011, "S\0303\0244ngerschaft Erato" },
- { 43012, "Aldo Group Inc." },
- { 43013, "ISC8, Inc." },
- { 43014, "En Garde Systems, Inc." },
- { 43015, "Quinyx AB" },
- { 43016, "R\0303\0251seau en sc\0303\0250ne Languedoc-Roussillon" },
- { 43017, "Albaad" },
- { 43018, "P\0303\0244dagogisches Landesinstitut" },
- { 43019, "Digital Human Identity S.L" },
- { 43020, "Angel Lane" },
- { 43021, "i-storm" },
- { 43022, "OneSearch Direct Ltd." },
- { 43023, "Tuxpower.dk" },
- { 43024, "InfoGoose.Inc" },
- { 43025, "Nomadconnection, Inc." },
- { 43026, "Mostlucky Ltd." },
- { 43027, "Fujian Great Power PLC Equipment Co.,Ltd" },
- { 43028, "Office of Immigration and Nationality" },
- { 43029, "Netco Ltda. Network Solutions Co." },
- { 43030, "ROCK YOUR LIFE! gGmbH" },
- { 43031, "RaumZeitLabor e.V." },
- { 43032, "Live It - Nerd" },
- { 43033, "TVV lippu- ja maksuj\0303\0244rjestelm\0303\0244 Oy" },
- { 43034, "K and P Business Solutions" },
- { 43035, "Feinschliff" },
- { 43036, "Bay Of Plenty District Health Board" },
- { 43037, "Newcastle-under-Lyme College" },
- { 43038, "Creative Electronic Systems SA" },
- { 43039, "OASYS Healthcare Corporation" },
- { 43040, "Davra Networks" },
- { 43041, "ATREM S.A." },
- { 43042, "Definition Networks Inc." },
- { 43043, "Information System Assiociaties" },
- { 43044, "Gran Investimentos" },
- { 43045, "Banco Exterior C.A. Banco Universal" },
- { 43046, "Andrey Fedorov" },
- { 43047, "H&W Computer Systems" },
- { 43048, "CB7 Systems LLC" },
- { 43049, "Stewart Bryant" },
- { 43050, "Vobile Co., Ltd." },
- { 43051, "SHENZHEN SENSEGRID CO.,LTD." },
- { 43052, "Shenzhen Tendzone Intelligent Technology Co; Ltd" },
- { 43053, "I.T. SYNERGY LIMITED" },
- { 43054, "Crown Prince Court" },
- { 43055, "American Kybernetik (Juan Daugherty)" },
- { 43056, "ENVISTACOM" },
- { 43057, "PrAT CENTRAVIS PRODUCTION UKRAINE" },
- { 43058, "Synergy Sky AS" },
- { 43059, "iteracon GmbH" },
- { 43060, "Leepfrog Technologies, Inc." },
- { 43061, "Global System & Network Services BVBA" },
- { 43062, "Ingenieure ohne Grenzen e.V." },
- { 43063, "Digital Multimedia Technology Co.,Ltd." },
- { 43064, "Embedded Wireless Labs" },
- { 43065, "Shanghai Onezero Electronic Commerce Co., Ltd." },
- { 43066, "Stiebel Eltron GmbH & Co. KG" },
- { 43067, "VFI SYSTEM" },
- { 43068, "AVG Technologies" },
- { 43069, "Markus Ruecker (mr-consult.net)" },
- { 43070, "Hrvatska narodna banka" },
- { 43071, "NABB Gaming Community" },
- { 43072, "Privlo, Inc." },
- { 43073, "roskakori.fi" },
- { 43074, "WRH Inc" },
- { 43075, "SKY Interactive" },
- { 43076, "Greiner Holding AG" },
- { 43077, "TUI Marine" },
- { 43078, "Lindvik" },
- { 43079, "Zimmer GmbH" },
- { 43080, "Atlantic Corporation of Wilmington, Inc." },
- { 43081, "intellec" },
- { 43082, "Informatik Service Gesellschaft mbH" },
- { 43083, "IMEN RAYANE SHRGH Co." },
- { 43084, "Webtown Informatika Kft." },
- { 43085, "Detroit R & D, Inc." },
- { 43086, "NHS Sistemas Eletronicos" },
- { 43087, "xCelor LLC" },
- { 43088, "Measurlogic Inc." },
- { 43089, "Dualog AS" },
- { 43090, "KVADOS, a.s." },
- { 43091, "SAP integrator Ltd." },
- { 43092, "Habermehl" },
- { 43093, "Xiamen Faratronic Co., Ltd." },
- { 43094, "HyperWallet Systems Inc" },
- { 43095, "Service2Media B.V." },
- { 43096, "James Guse (JAG Enterprises)" },
- { 43097, "ROTH + WEBER GmbH" },
- { 43098, "Martem AS" },
- { 43099, "Embrionix Design inc." },
- { 43100, "Strata Decision Technology, L.L.C." },
- { 43101, "Alphavida" },
- { 43102, "Regional Municipality of Peel" },
- { 43103, "Caradigm" },
- { 43104, "CyberSecure IPS" },
- { 43105, "CyberFlow Analytics, Inc." },
- { 43106, "PERK Innovation GmbH" },
- { 43107, "Waclaw Schiller (Torinthiel)" },
- { 43108, "Attend Systems, LLC" },
- { 43109, "dataFASCIA Corporation" },
- { 43110, "LTD \0302\0253Bradbury Lab\0302\0273" },
- { 43111, "VNT Software" },
- { 43112, "Picsearch AB (publ)" },
- { 43113, "Screen9 AB" },
- { 43114, "Kantonsapotheke Zuerich" },
- { 43115, "For\0303\0252ts & Bois de l'Est" },
- { 43116, "Berghof Automation GmbH" },
- { 43117, "National Stock Exchange Of India Limited" },
- { 43118, "NORDSYS GmbH" },
- { 43119, "Altibox AS" },
- { 43120, "Peshawar Business School" },
- { 43121, "Ypsomed AG" },
- { 43122, "Summit Networks" },
- { 43123, "Instituto Nacional para la Evaluaci\0303\0263n de la Educaci\0303\0263n" },
- { 43124, "PasswordBox Inc." },
- { 43125, "System Studies Incorporated" },
- { 43126, "US Fire Insurance Company" },
- { 43127, "Oliver Manz (ips manz consulting)" },
- { 43128, "TangentOrg" },
- { 43129, "Meijo University" },
- { 43130, "Amplesky Communication Technologies Ltd." },
- { 43131, "Ternopil State Medical University" },
- { 43132, "CJSC Svyaz engineering" },
- { 43133, "mailgarant (Meint Post)" },
- { 43134, "Advanced Fiber Products LLC" },
- { 43135, "adis.ca" },
- { 43136, "Digital Footprints International, LLC; DBA Internet Identity" },
- { 43137, "Raven Rocks Computer Services Group, Inc." },
- { 43138, "Multapplied Networks, Inc." },
- { 43139, "Glutonus SRL" },
- { 43140, "Xora, Inc." },
- { 43141, "RVTN.org" },
- { 43142, "St. Mary's International School" },
- { 43143, "Nanjing Sinovatio Technology Co. ltd" },
- { 43144, "HMS Industrial Networks" },
- { 43145, "Vasily Nushtakin (Home Router)" },
- { 43146, "VanWesten.net" },
- { 43147, "Best Theratronics Ltd." },
- { 43148, "Det Norske Oljeselskap" },
- { 43149, "RUBYCAT-Labs" },
- { 43150, "Stenbock Systems Inc." },
- { 43151, "AltaSteel Ltd" },
- { 43152, "Kristoffer Berdal (cognitive.io)" },
- { 43153, "Gerriko S-E-T Technology Solutions Ltd." },
- { 43154, "NexLabs Pte Ltd" },
- { 43155, "ION Trading Srl" },
- { 43156, "WEY Elektronik AG" },
- { 43157, "Tatung Technology Inc." },
- { 43158, "Skytech.lt" },
- { 43159, "Hartley Consultants Limited" },
- { 43160, "EnStream LP" },
- { 43161, "Riverside County Regional Medical Center" },
- { 43162, "Flash Services" },
- { 43163, "Cloud Technologies Inc." },
- { 43164, "Eruditor Group Ltd." },
- { 43165, "Strike Technologies, LLC" },
- { 43166, "Thai Citrus, Inc." },
- { 43167, "NaSys Inc." },
- { 43168, "ALFRED E. TIEFENBACHER (Gmbh & Co. KG)" },
- { 43169, "Tiroler Versicherung" },
- { 43170, "Banco Bilbao Vizcaya Argentaria S.A" },
- { 43171, "Datwyler Holding AG" },
- { 43172, "Atrium - Region PACA" },
- { 43173, "Elesta Ltd." },
- { 43174, "Ubiquity Srl" },
- { 43175, "Dorsey Racing" },
- { 43176, "Swiss Mobility Solutions" },
- { 43177, "Positron srl" },
- { 43178, "Main Line HealthCare" },
- { 43179, "Lendy LLC" },
- { 43180, "Ole Virginia Hams Amateur Radio Club" },
- { 43181, "VFA INC" },
- { 43182, "Minor Inf.Tech." },
- { 43183, "Renfe Viajeros, S.A." },
- { 43184, "The Floow" },
- { 43185, "FINN Sp. z o.o." },
- { 43186, "Zweite Heimat GmbH" },
- { 43187, "LIM college." },
- { 43188, "INDIWAN GmbH" },
- { 43189, "J.B. Hunt Transport Services, Inc." },
- { 43190, "Arket Srl" },
- { 43191, "Metamako" },
- { 43192, "Automation & Integration Global Security Group, LLC." },
- { 43193, "GRG International LTD" },
- { 43194, "ABB Oy " },
- { 43195, "Management of finance of the Administration of Tchaikovsky municipal district Perm region" },
- { 43196, "Evintia SL" },
- { 43197, "BCS Technologies" },
- { 43198, "stepins.com" },
- { 43199, "Rubisco Ltd (formerly 'Aitch-Pea Limited')" },
- { 43200, "CLAAS KGaA mbH " },
- { 43201, "bytemine GmbH" },
- { 43202, "Zeta Storage Systems Ltd (formerly 'Digital Networks UK Ltd')" },
- { 43203, "TSS COMPANY" },
- { 43204, "Hard 'n Software Consulting GmbH" },
- { 43205, "Aloxa.eu" },
- { 43206, "American Cancer Society, Inc." },
- { 43207, "Real-Time by Design, LLC" },
- { 43208, "Cybersavants,LLC" },
- { 43209, "Bliik" },
- { 43210, "Prominic.NET, Inc." },
- { 43211, "Atostek Oy" },
- { 43212, "space150, Inc." },
- { 43213, "Aveillant Ltd" },
- { 43214, "Programa Interlegis" },
- { 43215, "PC Users Group (ACT) Incorporated" },
- { 43216, "Fukushima Prefectural Government. Japan" },
- { 43217, "Ultimate Europe Transportation Equipment GmbH" },
- { 43218, "tecalor" },
- { 43219, "Sallie Mae" },
- { 43220, "DB Netz AG" },
- { 43221, "Bemobi Midia e Entretenimento LTDA." },
- { 43222, "Oxfam" },
- { 43223, "Wireless Telecom Group, Inc" },
- { 43224, "Netyard Pawel Jenner" },
- { 43225, "Unitymedia KabelBW" },
- { 43226, "Ashe Cosgrove Corporation" },
- { 43227, "ossmail.de" },
- { 43228, "Shanghai MRDcom Co., Ltd." },
- { 43229, "SOFTEH PLUS SRL" },
- { 43230, "Betrust N.V." },
- { 43231, "GSI Helmholtzzentrum f\0303\0274r Schwerionenforschung GmbH" },
- { 43232, "Bank of Nova Scotia" },
- { 43233, "Scheink\0303\0266nig & Co." },
- { 43234, "Enistek LLC" },
- { 43235, "Stadt Chur" },
- { 43236, "Pilz GmbH & Co. KG" },
- { 43237, "AOC Oost" },
- { 43238, "Compass Plus Ltd." },
- { 43239, "MindMade sp. z o.o." },
- { 43240, "Day & Zimmermann" },
- { 43241, "Guidance Ltd." },
- { 43242, "Universal Switching Corporation" },
- { 43243, "ShinyByte Web Agency, LLC." },
- { 43244, "Open Information Security Foundation" },
- { 43245, "G421 Networks" },
- { 43246, "Bennington-Rutland Supervisory Union" },
- { 43247, "Rui Pereira (netcloud.pt)" },
- { 43248, "3 Turn Productions LLC" },
- { 43249, "THM Consulting Ltd" },
- { 43250, sminmpec_unknown }, /* (Added by Wireshark) */
- { 43251, "Planet Erde" },
- { 43252, "CosDay e. V." },
- { 43253, "ASGraphics" },
- { 43254, "Geonov" },
- { 43255, "FISBA Optik AG" },
- { 43256, "FlouLab (Ioannis Angelakopoulos)" },
- { 43257, "webs.bz" },
- { 43258, "D'Youville College" },
- { 43259, "Cambridge Health Alliance" },
- { 43260, "WireGeo.com" },
- { 43261, "Pontis Research Inc." },
- { 43262, "ABVI-Goodwill" },
- { 43263, "SolarCity" },
- { 43264, "Opanga Networks, Inc." },
- { 43265, "HongKong Yunlink Technology Co., Ltd" },
- { 43266, "S.Toraighyrov Pavlodar State University" },
- { 43267, "JAMESON MEMORIAL HOSPITAL" },
- { 43268, "TELECO Spa" },
- { 43269, "DI Kurt Renauer" },
- { 43270, "Yoshitaka Yamane" },
- { 43271, "Justus-Liebig-Universit\0303\0244t Gie\0303\0237en" },
- { 43272, "Austria Card Plastikkarten und Ausweissysteme Ges.m.b.H" },
- { 43273, "Control Center Apps GmbH" },
- { 43274, "\"Group of Companies \"RosIntegracija\" LLC." },
- { 43275, "Alex Eggenberger" },
- { 43276, "Coreline Soft Co.,Ltd" },
- { 43277, "AE Telelink System Limited" },
- { 43278, "zalio" },
- { 43279, "R. L. Drake Holdings, LLC" },
- { 43280, "Vereniging Ons Middelbaar Onderwijs" },
- { 43281, "PAUL HARTMANN AG" },
- { 43282, "PROVIDENTIA SYSTEMS" },
- { 43283, "Vado Security" },
- { 43284, "Dream Solutions Ltd" },
- { 43285, "Quanzhou Karassn Security Protection Electronics Co., Ltd." },
- { 43286, "Keysight Technologies, Inc." },
- { 43287, "Mocomsoft Inc." },
- { 43288, "Lugansk State Academy Culture and Arts" },
- { 43289, "W3Security" },
- { 43290, "DLP Networks" },
- { 43291, "Frank Loepthien (Loeppi)" },
- { 43292, "Applifier Oy" },
- { 43293, "Diakonie Deutschland" },
- { 43294, "M2M Telemetria Ltda" },
- { 43295, "Kreel LLC" },
- { 43296, "Exablaze" },
- { 43297, "BASSANO & ASSOCIATES" },
- { 43298, "fnordspace.net" },
- { 43299, "Das Kartell (German Star Citizen Organization)" },
- { 43300, "PDC Corporation" },
- { 43301, "xiamen diksoft Co.,Ltd." },
- { 43302, "Bank Of Stockton" },
- { 43303, "1st Choice Tax Service, Inc." },
- { 43304, "Davenport University" },
- { 43305, "Hey Communications" },
- { 43306, "Bitclear, LLC" },
- { 43307, "Keyprocessor" },
- { 43308, "Appcara Inc" },
- { 43309, "Sweratel AB" },
- { 43310, "Konak Solutions Pty Ltd" },
- { 43311, "Belcity Software" },
- { 43312, "ZRO Kvant" },
- { 43313, "zerolatency ltd" },
- { 43314, "Tecteo Group SA" },
- { 43315, "PowerDNS.COM BV" },
- { 43316, "Information Factory" },
- { 43317, "Stadtwerke Bonn GmbH" },
- { 43318, "PERSON to PERSON Analysis CA" },
- { 43319, "Secure Meters Limited" },
- { 43320, "NetSTAR inc" },
- { 43321, "Polaris Networks" },
- { 43322, "Kenya Education Network" },
- { 43323, "Trans4mation IT GmbH" },
- { 43324, "FARSENS S.L." },
- { 43325, "Shoreland Inc." },
- { 43326, "Triple Canopy Inc." },
- { 43327, "Toronto Public Library " },
- { 43328, "Exscribe, Inc" },
- { 43329, "OneConfig Pty Ltd" },
- { 43330, "Sonavation, Inc." },
- { 43331, "Madhat Technical Solutions LLC" },
- { 43332, "DialogSoft inc." },
- { 43333, "Gangwon EMbedded Software Cooperative Research Center" },
- { 43334, "iDocTrust" },
- { 43335, "Union des Bois de Champagne" },
- { 43336, "GOERLITZ AG" },
- { 43337, "ZENON MEDIA GmbH" },
- { 43338, "Yottabyte" },
- { 43339, "efComs UG" },
- { 43340, "Traffic Technologies, Inc." },
- { 43341, "Dashlink" },
- { 43342, "SnailProof Computer Services" },
- { 43343, "Contactless Devices LLC" },
- { 43344, "Maven Inventing Solutions" },
- { 43345, "Aktietrykkeriet AS" },
- { 43346, "Douglas County School District, Colorado" },
- { 43347, "ValueDatum Systems, Inc. Ltd" },
- { 43348, "EmbeddedSoft Ltd" },
- { 43349, "Nigerian Research and Education Network (NgREN)" },
- { 43350, "Arikel.net Enterprises, LLC" },
- { 43351, "Advania" },
- { 43352, "Hangzhou Huaxing Chuangye Communication Technology CO.,LTD." },
- { 43353, "Beijing Certificate Authority" },
- { 43354, "OBI Smart Technologies GmbH" },
- { 43355, "VTI Instruments Corporation" },
- { 43356, "Mimosa Networks, Inc" },
- { 43357, "Thomas Fagart (Brozs)" },
- { 43358, "candiansolar.com" },
- { 43359, "China Guodian Corporation" },
- { 43360, "Binhai Online Information Technology Company Limited" },
- { 43361, "IT Voimala Oy" },
- { 43362, "Zak\0305\0202ad Automatyki i Urz\0304\0205dze\0305\0204 Pomiarowych AREX Sp. z o.o." },
- { 43363, "B2B.CZ, s.r.o." },
- { 43364, "Vision Box, S.A." },
- { 43365, "Qi ict" },
- { 43366, "N-Tools.de" },
- { 43367, "Suedzucker AG" },
- { 43368, "Oradian d.o.o." },
- { 43369, "BrightSign LLC" },
- { 43370, "Giordano Bruno Stiftung" },
- { 43371, "Moegui S.p.A" },
- { 43372, "Embedded Access Inc" },
- { 43373, "Associa\0303\0247\0303\0243o dos Registradores Imobili\0303\0241rios de S\0303\0243o Paulo " },
- { 43374, "Belton IT" },
- { 43375, "Baer & Karrer AG" },
- { 43376, "Ladybird Cranes Ltd." },
- { 43377, "GDV-IT" },
- { 43378, "Holger Genth (HGD)" },
- { 43379, "R.J. O'Brien and Associates" },
- { 43380, "Counterpoint Networking, Inc." },
- { 43381, "GEMATICA SRL" },
- { 43382, "Dreamket Co., Ltd." },
- { 43383, "Commercial Bank \0342\0200\0234Severo-Vostochny Alliance\0342\0200\0235 (Joint-Stock \0321\0201ompany)" },
- { 43384, "Pelle Olsson (Raholmen)" },
- { 43385, "Proyectos-IP" },
- { 43386, "Expkits" },
- { 43387, "city of Sioux City, IA " },
- { 43388, "aeworld.co.uk" },
- { 43389, "Eko-konnect Research and Education Initiative" },
- { 43390, "BEIJING FOREVER COMMUNICATION ELECTRONICS CO.,LTD" },
- { 43391, "UTT Co., Ltd." },
- { 43392, "Agile Digital Engineering Pty Ltd" },
- { 43393, "S-Net" },
- { 43394, "Intrinium, Inc" },
- { 43395, "The City of Amsterdam" },
- { 43396, "earthlab (daichi makino)" },
- { 43397, "NET MEDIA SERVICES a.s." },
- { 43398, "WILDIX" },
- { 43399, "Tiscali Italia SpA" },
- { 43400, "IT storitve, Gregor Jer\0305\0241e, s.p." },
- { 43401, "TRData Limited" },
- { 43402, "Layer-7 Technologies" },
- { 43403, "CareerHub Pty Ltd" },
- { 43404, "SOCIEDAD ESTATAL CORREOS Y TELEGRAFOS SA" },
- { 43405, "SA Water Corporation" },
- { 43406, "Universiti Putra Malaysia" },
- { 43407, "David Martin (ReaperLegion)" },
- { 43408, "HDmessaging Inc" },
- { 43409, "Reith IT-L\0303\0266sungen GmbH" },
- { 43410, "Joseph Williams" },
- { 43411, "Graeser Development" },
- { 43412, "Genius Digital Limited" },
- { 43413, "Fairview Health Services" },
- { 43414, "Molson Coors Brewing Company" },
- { 43415, "Deepblue Informatikai Kft" },
- { 43416, "Multigenregameworld LLC" },
- { 43417, "South Side Hackerspace Chicago, NFP" },
- { 43418, "Khakham Sayavong (Nticks)" },
- { 43419, "Microsoft Unified Communications and Collaboration User Group" },
- { 43420, "Proximic Inc" },
- { 43421, "SysMa.cz" },
- { 43422, "ADTEC Communications" },
- { 43423, "KeyONet" },
- { 43424, "Securitas FINLAND" },
- { 43425, "Aduno Gruppe" },
- { 43426, "Noction" },
- { 43427, sminmpec_unknown }, /* (Added by Wireshark) */
- { 43428, "The William and Flora Hewlett Foundation" },
- { 43429, "Strata Information Technology, Inc" },
- { 43430, "Systems Definition, Inc." },
- { 43431, "Tate, Inc." },
- { 43432, "MICROMED BIOTECNOLOGIA LTDA" },
- { 43433, "Sreevidya Aravind" },
- { 43434, "Metacom Pty Ltd" },
- { 43435, "Nutsrange Technologies" },
- { 43436, "Accumuli PLC" },
- { 43437, "City of Montclair" },
- { 43438, "County Of Bruce" },
- { 43439, "J.J. Downs Industrial Plastics Inc." },
- { 43440, "royal holloway, university of london" },
- { 43441, "royal holloway, university of london" },
- { 43442, "Niles Radio Communications" },
- { 43443, "Transacciones y Servicios Mobile" },
- { 43444, "Inspire Living, Inc." },
- { 43445, "4th Layer Integrated Solutions S.r.l." },
- { 43446, "Hartmann Electronic GmbH" },
- { 43447, "LoadFront, S.L." },
- { 43448, "THEFEINERS.COM" },
- { 43449, "mobilcom-debitel GmbH" },
- { 43450, "Agencja Restrukturyzacji i Modernizacji Rolnictwa" },
- { 43451, "Australian Customs and Border Protection Service" },
- { 43452, "Pragtec inc." },
- { 43453, "Visiometrics S.L." },
- { 43454, "Wiccess" },
- { 43455, "LFT Solutions" },
- { 43456, "KHS GmbH" },
- { 43457, "Warp Software Ltda." },
- { 43458, "Nvizible Ltd" },
- { 43459, "Virsae Group Ltd" },
- { 43460, "university college Leuven Limburg (UCLL)" },
- { 43461, "DGIT INTERNATIONAL PTE. LTD" },
- { 43462, "Universidade Federal Rural de Pernambuco" },
- { 43463, "Kyoto-University Microcomputer Club" },
- { 43464, "Ten Cities Media" },
- { 43465, "Communication Federal Credit Union" },
- { 43466, "CMS Central Media Solutions GmbH" },
- { 43467, "Evolv, Inc." },
- { 43468, "Cacto Internet Ltda" },
- { 43469, "Sysnove" },
- { 43470, "G + H Netzwerk-Design Gesellschaft f\0303\0274r IT-Consulting mbH" },
- { 43471, "Sun Trading Solutions" },
- { 43472, "APC Integrated Services Group, Inc." },
- { 43473, "YHGfL Foundation" },
- { 43474, "Coca-Cola Hellenic Bottling Company" },
- { 43475, "XNX S\0303\0240rl" },
- { 43476, "LeanDev" },
- { 43477, "Bioss Consulting SRL" },
- { 43478, "Jonathon Anderson (civilfritz)" },
- { 43479, "Ecole nationale Sup\0303\0251rieure d'Informatique" },
- { 43480, "Canine Creche" },
- { 43481, "Innovaatik O\0303\0234 " },
- { 43482, "GlobalSensing Technologies" },
- { 43483, "AIPHONE CO., LTD." },
- { 43484, "Fundaci\0303\0263n Fulgor" },
- { 43485, "Trillium Teamologies, Inc." },
- { 43486, "Fuse Networks, LLC" },
- { 43487, "Guangzhou Woxiang Information Technology Co., Ltd" },
- { 43488, "Schletter GmbH" },
- { 43489, "GOOD FIRST GROUP . " },
- { 43490, "Rite-Tech Industrial Co., Ltd." },
- { 43491, "ITR Service GmbH" },
- { 43492, "Bernhard Trinnes (microdots)" },
- { 43493, "Online Linjeforening" },
- { 43494, "Clarity Ltd" },
- { 43495, "Taide Enterprise Co.,Ltd." },
- { 43496, "QSC AG" },
- { 43497, "Weavesys UK" },
- { 43498, "SENSORBOX LTDA (formerly 'SENSORBOX DO BRASIL LTDA')" },
- { 43499, "Youncta" },
- { 43500, "4D Security Solutions" },
- { 43501, "Boston Financial Data Services Inc" },
- { 43502, "HighRes Biosolutions" },
- { 43503, "Jay Ridgeway (beekling.com)" },
- { 43504, "Judd Storrs" },
- { 43505, "Plugh Studios Ltd" },
- { 43506, "Beats by Dre" },
- { 43507, "ti&m AG" },
- { 43508, "EDT SAS - Electronic Data Transfer" },
- { 43509, "BITPRO AS" },
- { 43510, "Juan Jose Rodriguez Ponce" },
- { 43511, "E7 Solutions" },
- { 43512, "BEIJING SIFANG AUTOMATION CO., LTD" },
- { 43513, "SDIS68" },
- { 43514, "kt telecop" },
- { 43515, "NISCOM,Inc." },
- { 43516, "Auvik Networks Inc." },
- { 43517, "CoolMinds Technologies (P) Ltd" },
- { 43518, "Smartconnect NV / SA" },
- { 43519, "Tranwall" },
- { 43520, "pteam gmbh" },
- { 43521, "RSE Informationstechnologie GmbH" },
- { 43522, "VoltServer, Inc." },
- { 43523, "Alberta Investment Management Corporation" },
- { 43524, "Vanteon Corp." },
- { 43525, "Wavecon GmbH" },
- { 43526, "Signal Bredb\0303\0245nd AS" },
- { 43527, "Presidio Networked Solutions" },
- { 43528, "SHODEN CORPORATION" },
- { 43529, "Istituto Radiologico e Fisioradioterapico Valdarno" },
- { 43530, "HYTEC INTER Co.,Ltd." },
- { 43531, "Atomic Object LLC" },
- { 43532, "Yafeng Shan (kokonur)" },
- { 43533, "Beijing National Railway Research & Design Institude of Signal & Communication Co, Ltd. (CRSCD)" },
- { 43534, "Alstom Grid" },
- { 43535, "Luxottica North America Distribution LLC" },
- { 43536, "AO K-Dorstroy" },
- { 43537, "Solumed" },
- { 43538, "EXA-TMR" },
- { 43539, "Dwarf Animation Studio" },
- { 43540, "Federal Agricultural Marketing Authority" },
- { 43541, "LSY Inc" },
- { 43542, "DENT Instruments" },
- { 43543, "ID Business Solutions Ltd" },
- { 43544, "DigiComm GmbH" },
- { 43545, "Omnitracs, LLC" },
- { 43546, "Tariox Limited" },
- { 43547, "SCOOP Software GmbH" },
- { 43548, "Trasis sa" },
- { 43549, "IT Competence Group SE" },
- { 43550, "CAMEA spol. s r. o." },
- { 43551, "Mavari-IT bvba" },
- { 43552, "Whitesky Communications" },
- { 43553, "Rapid Focus Security, Inc." },
- { 43554, "IGC" },
- { 43555, "LayeredDefense" },
- { 43556, "Rigas domes Informacijas tehnologiju centrs" },
- { 43557, "Nick Fender" },
- { 43558, "GitHub, Inc" },
- { 43559, "ENKOM AG" },
- { 43560, "New Orleans East Hospital" },
- { 43561, "Micro-Research Finland Oy" },
- { 43562, "ZepMed, LLC" },
- { 43563, "pedro paulo medeiros" },
- { 43564, "TSC AUTO ID Technology Co., Ltd." },
- { 43565, "Reliance Jio Infocomm Limited" },
- { 43566, "Engineering Center REGIONAL SYSTEMS, Limited" },
- { 43567, "Yongjia County Board of Education" },
- { 43568, "EMICON" },
- { 43569, "Hong Yun Technology" },
- { 43570, "Coop\0303\0251rative Foresti\0303\0250re Bourgogne Limousin (CFBL)" },
- { 43571, "SOCIETE DES TRANSPORTS ROCHATTE" },
- { 43572, "Foundation for Research and Technology Hellas" },
- { 43573, "VSAT-SERVICE" },
- { 43574, "Lansing Makers Network" },
- { 43575, "OpenPeak" },
- { 43576, "IntSec.NET" },
- { 43577, "CNPC Beijing Richfit Information Technology Co.,LTD." },
- { 43578, "42technology AG" },
- { 43579, "EASYPROTO di Giacomo Cesari" },
- { 43580, "SutherlandGlobalServices" },
- { 43581, "Ooyala Inc." },
- { 43582, "Document Centric Solutions Ltd" },
- { 43583, "ReMake Electric" },
- { 43584, "Trizetto Provider Solutions" },
- { 43585, "SAMSON AG" },
- { 43586, "SVS TELEKOM\0303\0234N\0304\0260KASYON H\0304\0260Z. T\0304\0260C. SAN. A.\0305\0236. " },
- { 43587, "Roave, LLC." },
- { 43588, "SAA Topnet GmbH" },
- { 43589, "KEKLOLWTF AS" },
- { 43590, "HAL9k hackerspace" },
- { 43591, "Erlang Solutions LTD" },
- { 43592, "Campbell Scientific, Incorporated" },
- { 43593, "Crimson Innovative" },
- { 43594, "Interhyp AG" },
- { 43595, "MolinoSoft (Julian Bourne)" },
- { 43596, "Carnegie Fitness " },
- { 43597, "Comprehensive Health Management, Inc." },
- { 43598, "STORM" },
- { 43599, "Paneidos Desu" },
- { 43600, "Beijing Easesky Netcom Technology Co.,Ltd" },
- { 43601, "Nuri Technology Co., Ltd." },
- { 43602, "Rossiya Segodnya" },
- { 43603, "The Twelve Tribes" },
- { 43604, "Arkansas Educational Television Network (AETN)" },
- { 43605, "Metatrust" },
- { 43606, "nobaq.net" },
- { 43607, "Funda Real Estate B.V." },
- { 43608, "Raben Group" },
- { 43609, "NetCracker Technology Corp." },
- { 43610, "ColosseoEAS, a.s." },
- { 43611, "Power Ethernet" },
- { 43612, "IOLAN" },
- { 43613, "Skylife Engineering" },
- { 43614, "phaenovum Sch\0303\0274lerforschungszentrum L\0303\0266rrach-Dreil\0303\0244ndereck e.V." },
- { 43615, "VonRoll" },
- { 43616, "Aventura Technologies Inc." },
- { 43617, "Vidant Health" },
- { 43618, "Camtrace" },
- { 43619, "LianYunGang E-Port Information Development Co.,Ltd" },
- { 43620, "Shenzhen Headsun Technology" },
- { 43621, "Medical Effect" },
- { 43622, "WebPerative LLC" },
- { 43623, "Umensis - Guillaume Pannatier" },
- { 43624, "Jaroslav Sendler (xsendl00)" },
- { 43625, "Core Technology" },
- { 43626, "NewB" },
- { 43627, "Devani Creative" },
- { 43628, "The Rubicon Project" },
- { 43629, "PSITEX, LLC" },
- { 43630, "Duxoft, Inc." },
- { 43631, "Heijmans N.V." },
- { 43632, "Celtex Works" },
- { 43633, "AIES Advanced Industrial Electronic Systems" },
- { 43634, "Metrellis, Inc." },
- { 43635, "Practice Velocity, LLC" },
- { 43636, "LES.NET" },
- { 43637, "Zymer Inc." },
- { 43638, "ITS Korea" },
- { 43639, "Evoluta Interactive" },
- { 43640, "THROUGHOTHEREYES (Jonathan Platzer)" },
- { 43641, "netplus.ch SA" },
- { 43642, "Linde Engineering" },
- { 43643, "TEQ SA" },
- { 43644, "Infra Services" },
- { 43645, "FEIG ELECTRONIC GmbH" },
- { 43646, "Datatal AB" },
- { 43647, "Rimbach IT Systems UG" },
- { 43648, "Naudit High Performance Computing and Networking S.L." },
- { 43649, "Raritan Bay Medical Center" },
- { 43650, "United Health Services" },
- { 43651, "INTTRA Inc" },
- { 43652, "GoBICS" },
- { 43653, "UNIVERSITAT OBERTA DE CATALUNYA" },
- { 43654, "marcsi.ch" },
- { 43655, "University Ecclesiastical Academy of Thessaloniki" },
- { 43656, "Consortium" },
- { 43657, "Kanton St.Gallen" },
- { 43658, "Seacloud" },
- { 43659, "Hochschule f\0303\0274r Technik und Wirtschaft des Saarlandes (htw saar)" },
- { 43660, "Zadara Storage Ltd" },
- { 43661, "Columbus Business Solutions" },
- { 43662, "Simpson Housing LLLP" },
- { 43663, "eTouch Federal Systems" },
- { 43664, "Unzane" },
- { 43665, "rioxo GmbH" },
- { 43666, "Hackerspace Brussels" },
- { 43667, "Sunwire Inc" },
- { 43668, "Andreas Kreisel" },
- { 43669, "The Institute of Mathematical Sciences" },
- { 43670, "Epic Code Pty. Ltd." },
- { 43671, "EMSEAS Teknik AB" },
- { 43672, "INTELLECT MODULE" },
- { 43673, "Federal State Unitary Enterprise CentrInform" },
- { 43674, "Robonect" },
- { 43675, "Accenture CAS GmbH" },
- { 43676, "57North Hacklab" },
- { 43677, "ICT Plus srl" },
- { 43678, "Michael Kramer" },
- { 43679, "SETTE" },
- { 43680, "Chorus Limited" },
- { 43681, "ELESTER-PKP Sp. z o.o." },
- { 43682, "ITSA Consulting, LLC" },
- { 43683, "ALDEIS" },
- { 43684, "NOVASIB GmbH" },
- { 43685, "biz:Consult Unternehmensberatung GmbH" },
- { 43686, "Jefferson County" },
- { 43687, "Christoph Knott - IT-Sicherheitstechnik" },
- { 43688, "GERMEN ELEKTRONIK LTD" },
- { 43689, "schugart" },
- { 43690, "The Active Network" },
- { 43691, "Michael Kettner" },
- { 43692, "haberberger.com" },
- { 43693, "Fotolia LLC" },
- { 43694, "Omega Intelligence Systems Ltd" },
- { 43695, "5nine Software" },
- { 43696, "LLC Info-Kontent" },
- { 43697, "JSC Tyumen Electricity sale company" },
- { 43698, "Joint Electronic Teller Services Ltd." },
- { 43699, "EasyData, LLC" },
- { 43700, "PathCore" },
- { 43701, "HySecurity, Inc." },
- { 43702, "Dom-Daniel" },
- { 43703, "Wacom Company Ltd." },
- { 43704, "Accutron Instruments Inc" },
- { 43705, "F!nTcH.org" },
- { 43706, "Statnett SF" },
- { 43707, "Australian Rail Tecchnology" },
- { 43708, "SimonMed Imaging" },
- { 43709, "AirDSL (Pty) Ltd" },
- { 43710, "GAMESA" },
- { 43711, "mySupply ApS" },
- { 43712, "Universidad Central de Venezuela" },
- { 43713, "Code 42" },
- { 43714, "Mega Soft Computaci\0303\0263n, C.A." },
- { 43715, "Data Infrastructure Technologies Ltd. " },
- { 43716, "Veterinary Nurse Solutions Pty Ltd" },
- { 43717, "imensup" },
- { 43718, "\0303\0226sterreichisches Weltraum Forum" },
- { 43719, "Telvio LLC" },
- { 43720, "Creat0r.pro" },
- { 43721, "Cyberoam Technologies Pvt. Ltd." },
- { 43722, "DAC Systems, Inc." },
- { 43723, "Stancil Corporation" },
- { 43724, "Japan Prime Computing" },
- { 43725, "Casair, Inc" },
- { 43726, "GO! Express & Logistics Deutschland GmbH" },
- { 43727, "Valeo Comfort ans Driving assitance" },
- { 43728, "Sinergise Ltd." },
- { 43729, "Teckids e.V." },
- { 43730, "Ernst Klett AG" },
- { 43731, "FooxTek Co., LTD." },
- { 43732, "Netmag Technology Corporation" },
- { 43733, "East Photonics, Inc." },
- { 43734, "IQUO Ltd" },
- { 43735, "STI-Tassimco" },
- { 43736, "Standard Imaging, Inc." },
- { 43737, "MedAllies" },
- { 43738, "Doshisha University" },
- { 43739, "Concept Smoke screen Ltd" },
- { 43740, "ASB-Technology Sp. z o.o." },
- { 43741, "Cerqueira & Marcos, Lda" },
- { 43742, "Microx Computer GmbH" },
- { 43743, "Open Systems Technology, Pty." },
- { 43744, "airberlin" },
- { 43745, "CONSEJO DE LA JUDICATURA" },
- { 43746, "Ulterius Technologies, LLC" },
- { 43747, "MaterialApps" },
- { 43748, "ARES Conocimiento de Negocio, SL" },
- { 43749, "Country Bright Company Ltd." },
- { 43750, "Jabil Circuit, Inc" },
- { 43751, "Shenzhen TG-NET Botone Technology CO. Ltd." },
- { 43752, "China Film Equipment Co. Ltd." },
- { 43753, "Kyriasis" },
- { 43754, "Philipp Wagner Softwareentwicklung" },
- { 43755, "BG-Phoenics GmbH" },
- { 43756, "Schwarz Dienstleistung KG" },
- { 43757, "QOSIT AG" },
- { 43758, "Clique Intelligence Inc." },
- { 43759, "Big White Network Technologies,Ltd." },
- { 43760, "Atlas Networks" },
- { 43761, "Our School Ltd" },
- { 43762, "PlazaLotusGroup" },
- { 43763, "ChinaFilm Global (Beijing) Technology limited" },
- { 43764, "Tallac Networks" },
- { 43765, "Color Print" },
- { 43766, "MBSys LLC Azerbaijan" },
- { 43767, "Eastern Long Island Hospital" },
- { 43768, "GatesAir, Inc." },
- { 43769, "Vezea" },
- { 43770, "Addat s.r.o." },
- { 43771, "Behlman Electronics" },
- { 43772, "K+S IT-Services GmbH" },
- { 43773, "The Vancouver Clinic Inc." },
- { 43774, "Hortonworks Inc" },
- { 43775, "Quotepro Inc" },
- { 43776, "Symbiotic System Design" },
- { 43777, "Maikel de Boer" },
- { 43778, "Hampshire Controls Corporation" },
- { 43779, "Finnova AG" },
- { 43780, "Paradox Networks, Inc" },
- { 43781, "Moshel Kamadu Records" },
- { 43782, "UPS Solutions INC." },
- { 43783, "WaveNet Communications Private Limited" },
- { 43784, "IFOM" },
- { 43785, "Magellium" },
- { 43786, "Factual Inc" },
- { 43787, "Leviathan Security Technologies" },
- { 43788, "Comita d.d." },
- { 43789, "Trading & Consulting 'H.P.C.' GmbH" },
- { 43790, "becker-aero" },
- { 43791, "Cine Digital Service" },
- { 43792, "Now Wireless Limited" },
- { 43793, "Tom Gundersen (systemd)" },
- { 43794, "Chris Thomson" },
- { 43795, "Guangzhou Andea Electronics Technology Co.,Ltd" },
- { 43796, "Rasing IT Solutions" },
- { 43797, "Croz d.o.o." },
- { 43798, "NANJING SAND TECHNOLOGY CO., LTD" },
- { 43799, "TRUMPF GmbH + Co. KG" },
- { 43800, "OraSentry" },
- { 43801, "Dolphin Systems AG" },
- { 43802, "Avaloq Evolution AG" },
- { 43803, "University of South Wales" },
- { 43804, "Bombardier Aerospace" },
- { 43805, "Metalogix International GmbH" },
- { 43806, "Shape Security, Inc" },
- { 43807, "CENTRI Technology, Inc." },
- { 43808, "Spincat Studios" },
- { 43809, "University of the Philippines" },
- { 43810, "Li Hongnan (LiHN)" },
- { 43811, "University of the Philippines Mindanao" },
- { 43812, "Corscience GmbH & Co. KG" },
- { 43813, "Centraal Justitieel Incassobureau" },
- { 43814, "GNU Networks Ltd." },
- { 43815, "The University of Texas M.D. Anderson Cancer Center" },
- { 43816, "Tran Industries LLC" },
- { 43817, "Vertex Business Services" },
- { 43818, "Featurespace Limited" },
- { 43819, "pulse technologies" },
- { 43820, "Mozy, Inc." },
- { 43821, "Suwannee County School Board" },
- { 43822, "Nok Nok Labs, Inc." },
- { 43823, "VAS Experts" },
- { 43824, "ConectaIP Tecnologia S.L." },
- { 43825, "Earnest Products, Inc. dba Southern Manufacturing" },
- { 43826, "TEXKA LABS" },
- { 43827, "Ideosoft C.B." },
- { 43828, "Bosoft" },
- { 43829, "Ifield School" },
- { 43830, "eWater Pty Ltd" },
- { 43831, "Ezvoicetek Co., Ltd." },
- { 43832, "Beijing D&S FieldBus Technology Co.,Ltd" },
- { 43833, "LIVECREATION" },
- { 43834, "Urban Systems Design Institute" },
- { 43835, "HOCHTIEF CZ, a.s." },
- { 43836, "C Tech Bilisim Teknolojileri San.ve Tic. A.S" },
- { 43837, "DTI Group Ltd" },
- { 43838, "Genex Hellas L.T.D" },
- { 43839, "RailComm LLC" },
- { 43840, "Sumitomo Mitsui Banking Corporation" },
- { 43841, "Eatel" },
- { 43842, "Zero Waste Scotland" },
- { 43843, "Alter Trading Corporation, LLC" },
- { 43844, "GuangDong Big Banian Info Tech Co., Ltd. " },
- { 43845, "Toshiba Tec Solution Services Corporation" },
- { 43846, "University of the Philippines - Baguio" },
- { 43847, "A Hagedoorn Electronics" },
- { 43848, "INoTHINGS GmbH" },
- { 43849, "LiiON, LLC" },
- { 43850, "Doxcelerate Corporation" },
- { 43851, "danieLLegal.Net - Rechtsanw\0303\0244lte" },
- { 43852, "Truseco, s.r.o." },
- { 43853, "Academy of Economic Studies of Moldova" },
- { 43854, "TU Investment Club e.V." },
- { 43855, "ezIX.org" },
- { 43856, "UNIT4 Business Software Spain S.L.U." },
- { 43857, "mITra data" },
- { 43858, "Grigorivska International School" },
- { 43859, "Harbor Freight Tools" },
- { 43860, "Groenewoud" },
- { 43861, "New York Genome Center" },
- { 43862, "Drei Banken EDV Ges.m.b.H." },
- { 43863, "Valour Security Ltd" },
- { 43864, "Breeze Innovations Private Limited" },
- { 43865, "Matthias Krause (spectre-net)" },
- { 43866, "beijing huafei technology co.,ltd" },
- { 43867, "Rename it" },
- { 43868, "Conjur Inc" },
- { 43869, "Yatharth Gupta" },
- { 43870, "Precyse Technologies" },
- { 43871, "Metricell Ltd." },
- { 43872, "Q'ligent.inc" },
- { 43873, "TA Associates" },
- { 43874, "pmacct" },
- { 43875, "TeKnowledgy, Inc." },
- { 43876, "Centre Hospitalier Universitaire Sainte-Justine" },
- { 43877, "Dalian Rural Commercial Bank Co.,Ltd." },
- { 43878, "Embross Group" },
- { 43879, "Chengdu Fuhuaxin Technology Co.,Ltd." },
- { 43880, "FRAKO Kondensatoren- und Anlagenbau GmbH " },
- { 43881, "Informatics Services Corporation (ISC)" },
- { 43882, "DHBW Villingen Schwenningen" },
- { 43883, "NiVo Engineering BV" },
- { 43884, "AnyCode Kft." },
- { 43885, "WCC Group BV" },
- { 43886, "Anjary Pty Ltd" },
- { 43887, "\0316\0222\0316\0245\0316\0244\0316\0225 COMPUTER S.A" },
- { 43888, "Agiloo S.r.l. Semplificata" },
- { 43889, "datenkollektiv.net" },
- { 43890, "Thotaka Technologies Private Limited" },
- { 43891, "SMY.com" },
- { 43892, "NerySEC" },
- { 43893, "Hope Bay Technologies, Inc." },
- { 43894, "HedoN electronic developments B.V." },
- { 43895, "Institut f\0303\0274r Holztechnologie Dresden gemeinn\0303\0274tzige GmbH" },
- { 43896, "Emercit" },
- { 43897, "Amped Wireless" },
- { 43898, "Hudson City Savings Bank" },
- { 43899, "atlantis software" },
- { 43900, "Teramatrix Technologies Private Limited" },
- { 43901, "Talisman Sinopec Energy UK Limited" },
- { 43902, "Enkel Tecnologia" },
- { 43903, "LIons Clubs International - Multi District 111 (Germany)" },
- { 43904, "BitronikLab " },
- { 43905, "MelRok LLC" },
- { 43906, "Tegile Systems, Inc." },
- { 43907, "CloudThing Ltd." },
- { 43908, "Hawking Technology, Inc." },
- { 43909, "Association PauLLA" },
- { 43910, "Pravala Inc." },
- { 43911, "Thureon Limited" },
- { 43912, "FUJI FURUKAWA ENGINEERING & CONSTRUCTION Co.Ltd. " },
- { 43913, "Zhejiang Science Electronic Technology Co., Ltd" },
- { 43914, "The Administrative Committee of Jiangning Development Zone" },
- { 43915, "Wallace Kroeker" },
- { 43916, "Van Lanschot" },
- { 43917, "Sant\0303\0251Link SAS" },
- { 43918, "Marina Del Rey Hospital" },
- { 43919, "Neoteck Grup" },
- { 43920, "Shandong Chaoyue Digital Control Electronics Co., Ltd." },
- { 43921, "CJSC STC SIMOS" },
- { 43922, "Equra Health Trust" },
- { 43923, "Ivan Leonardi" },
- { 43924, "Standard Transfer Specification Association" },
- { 43925, "EastWind" },
- { 43926, "CSI.NET, Inc." },
- { 43927, "ID.me, Inc." },
- { 43928, "Vantage Communications" },
- { 43929, "WellerNET" },
- { 43930, "Radlink Communications" },
- { 43931, "IFB Institut f\0303\0274r Bahntechnik GmbH" },
- { 43932, "Bluwireless Technology Limited" },
- { 43933, "Exploros inc." },
- { 43934, "V\0303\0265rumaa Kutsehariduskeskus" },
- { 43935, "Keen IO" },
- { 43936, "zhong yuan hua dian" },
- { 43937, "Tieto Signaling Solutions" },
- { 43938, "Memorable Images" },
- { 43939, "invliD" },
- { 43940, "WISAG Dienstleistungsholding GmbH" },
- { 43941, "Event Store LLP" },
- { 43942, "Luma Pictures" },
- { 43943, "VOLTRONIC POWER TECHNOLOGY CORP." },
- { 43944, "VOLTRONIC POWER TECHNOLOGY CORP." },
- { 43945, "Telenia Software srl" },
- { 43946, "Vanilla.no" },
- { 43947, "LichtBlick SE" },
- { 43948, "Taiwan Intelligent Home" },
- { 43949, "Aceyus, Inc." },
- { 43950, "NexxCom Wireless" },
- { 43951, "Denovo Ventures LLC" },
- { 43952, "LRAD Corporation" },
- { 43953, "closerlook, inc." },
- { 43954, "Seno Medical Instruments Inc." },
- { 43955, "Radiology Associates LLP" },
- { 43956, "Total Restyling di Tola Rosa" },
- { 43957, "Multitone Electronic plc" },
- { 43958, "University of Innsbruck" },
- { 43959, "Torraspapel SA" },
- { 43960, "SaF GmbH" },
- { 43961, "OKTAL, SAS" },
- { 43962, "Utena University of Applied Sciences" },
- { 43963, "Thruput Ltd" },
- { 43964, "Silpakorn University" },
- { 43965, "akraas.de" },
- { 43966, "J4SYSTEMS SOLUCOES TECNOLOGICAS LTDA." },
- { 43967, "Manthorpe Ltd" },
- { 43968, "California University of Pennsylvania" },
- { 43969, "NIPPON FIELD ENGINEERING Co.,Ltd." },
- { 43970, "B\0303\0244chtold & Moor AG" },
- { 43971, "Map59" },
- { 43972, "DriveWorks Ltd" },
- { 43973, "Universidad Nacional de C\0303\0263rdoba - UNC" },
- { 43974, "Elcoma" },
- { 43975, "DaedaFusion, LLC" },
- { 43976, "University of the Philippines Cebu" },
- { 43977, "HomeSend SCRL" },
- { 43978, "IKATA NETWORKS" },
- { 43979, "IMED Engineering s.r.o." },
- { 43980, "Cerritos College" },
- { 43981, "Partnet, Inc." },
- { 43982, "Analytical Flavor Systems" },
- { 43983, "Colibri Technologies Inc." },
- { 43984, "MPL Technology Group" },
- { 43985, "WebINTENSIVE Software" },
- { 43986, "Privredna Banka Zagreb d. d." },
- { 43987, "ALVA IT-Solutions" },
- { 43988, "Bichara Tecnologia Ltd" },
- { 43989, "EEMRA Inc." },
- { 43990, "Tropo, Inc." },
- { 43991, "Elektrum, S.A.R.L" },
- { 43992, "Power Assure, Inc" },
- { 43993, "Security First Corp." },
- { 43994, "QuanTemplate Technologies Limited" },
- { 43995, "Axentia Technologies AB" },
- { 43996, "Bloomington Medical Services" },
- { 43997, "Cellwize wireless technologies PTE LTD" },
- { 43998, "Computerwork GmbH" },
- { 43999, "Agencija za komercijalnu djelatnost d.o.o." },
- { 44000, "PointSecure Technologies Inc" },
- { 44001, "Shenzhen Envicool Technology Co., Ltd." },
- { 44002, "Gridwiz, Inc." },
- { 44003, "AutoGrid Systems" },
- { 44004, "BYKING INC." },
- { 44005, "Wadi Chadli" },
- { 44006, "Xunlei Networking Technologies,Ltd." },
- { 44007, "Informatica Bancaria Trentina" },
- { 44008, "SYSTECH" },
- { 44009, "WebPKI.org" },
- { 44010, "OadisCorp" },
- { 44011, "eMortgage Logic" },
- { 44012, "Tata advanced systems limited (TASL)" },
- { 44013, "MPEC Technology Ltd" },
- { 44014, "Tyco Fire & Integrated Solutions (UK) Ltd." },
- { 44015, "DataInfo" },
- { 44016, "Baikal Electronics" },
- { 44017, "SmartGuard, LLC" },
- { 44018, "exiztec" },
- { 44019, "MAXIMA GROUP, UAB" },
- { 44020, "Router Networking Ltd." },
- { 44021, "Alliance Resource Partners, L.P. (ARLP)" },
- { 44022, "Advanced Publishing Technology" },
- { 44023, "Karther Ingenier\0303\0255a " },
- { 44024, "ConnectSolutions" },
- { 44025, "Foobar Development LLC" },
- { 44026, "Smart4Aviation Group" },
- { 44027, "Shop Airlines, Ltd." },
- { 44028, "Extreme-Access.com" },
- { 44029, "Nestl\0303\0251 Operational Services Worldwide SA" },
- { 44030, "WooshCom Corporation" },
- { 44031, "TrustCor Systems S. de R.L." },
- { 44032, "Cloud Utility District" },
- { 44033, "Mobitech" },
- { 44034, "S Broker AG & Co. KG" },
- { 44035, "Wojskowe Zaklady Lacznosci nr 1 S.A." },
- { 44036, "OPENNETEUROPE" },
- { 44037, "De\0305\0276elna banka Slovenije d. d." },
- { 44038, "Filmakademie Baden-W\0303\0274rttemberg GmbH" },
- { 44039, "Wind Mobile SA" },
- { 44040, "IEI Integration Corp." },
- { 44041, "Conntrack Technologies" },
- { 44042, "Instituto Nacional de Tecnologias de Informacao e Comunicacao (INTIC)" },
- { 44043, "BSG-IT Kft." },
- { 44044, "SETCCE" },
- { 44045, "Dos al Cubo" },
- { 44046, "POK Power of Knowledge" },
- { 44047, "Schreiber Foods Inc" },
- { 44048, "Instytut Hodowli i Aklimatyzacji Roslin - Panstwowy Instytut Badawczy" },
- { 44049, "Cloud2Ground Technologies Div. Digital Multimedia, LLC" },
- { 44050, "Cryptografree (David Hoyle)" },
- { 44051, "Sapporo Gakuin University" },
- { 44052, "Beijing Cloud Core Network Technology Co., Ltd." },
- { 44053, "ELFTECH Co., Ltd." },
- { 44054, "H\0303\0266rmann KG Verkaufsgesellschaft" },
- { 44055, "Identity And Access Management Technologies (IAM Tec)" },
- { 44056, "Aktif M\0303\0274hendislik" },
- { 44057, "predata.org" },
- { 44058, "Avalanche Cloud Corporation" },
- { 44059, "School District #63 (Saanich)" },
- { 44060, "Iridium Communications Inc" },
- { 44061, "Tippecanoe County Government" },
- { 44062, "FlightStats Inc." },
- { 44063, "ACCESS CO., LTD." },
- { 44064, "Quobyte Inc." },
- { 44065, "PROGSTAR" },
- { 44066, "Fachschaftinformatik, WHS" },
- { 44067, "McStas project" },
- { 44068, "Major League Baseball Advanced Media" },
- { 44069, "Groupe Citypassenger Inc" },
- { 44070, "IFTER" },
- { 44071, "New Relic, Inc" },
- { 44072, "Lee County Schools" },
- { 44073, "Data People Pty Ltd" },
- { 44074, "Servyou" },
- { 44075, "Beijing Nan Bao Technology Co., Ltd." },
- { 44076, "Landtag von Baden-W\0303\0274rttemberg" },
- { 44077, "PST AG" },
- { 44078, "Taiwan Mobile Payment Co." },
- { 44079, "NPO SISTEMI S.p.A." },
- { 44080, "TNTNET" },
- { 44081, "UNI LEADER INTERNATIONAL LTD" },
- { 44082, "Beijing DTLT Technology CO., LTD." },
- { 44083, "GuiLin HYGJ communication technology co., Ltd" },
- { 44084, "B. Metzler seel. Sohn & Co. KGaA" },
- { 44085, "Display Quality Equipment, S.L" },
- { 44086, "E-T-A Elektrotechnische Apparate GmbH" },
- { 44087, "Hammond Consulting Services" },
- { 44088, "CODESA - Grupo Empresarial de la Construcci\0303\0263n, Santiago de Cuba, Cuba" },
- { 44089, "ABit Consulting" },
- { 44090, "CSG Global LLC" },
- { 44091, "Agilion GmbH" },
- { 44092, "Sigel GmbH" },
- { 44093, "Bell Ambulance, Inc." },
- { 44094, "Aser Secury" },
- { 44095, "Kagoshima University" },
- { 44096, "Shenzhen Zhong Yuan Tong Power Supply Technology Co., Ltd." },
- { 44097, "db-central GmbH" },
- { 44098, "Patchman B.V." },
- { 44099, "CyberSeal LTD" },
- { 44100, "SLASH16" },
- { 44101, "Radiss s.c." },
- { 44102, "GRC Advisory Solutions" },
- { 44103, "Agora Con GmbH" },
- { 44104, "Groupe Alsatis" },
- { 44105, "BHS tabletop AG" },
- { 44106, "IMSWorkX, Inc." },
- { 44107, "Rivada Networks, LLC" },
- { 44108, "Telecom Argentina S.A." },
- { 44109, "FAA National Airspace Systems" },
- { 44110, "Nowa Era Sp. z o.o." },
- { 44111, "Guangzhou Younghead Electronic Technology Co.,Ltd" },
- { 44112, "Rabobank International" },
- { 44113, "Villeroy & Boch AG" },
- { 44114, "RealVNC Ltd" },
- { 44115, "Height8 Technologies Pvt. Ltd" },
- { 44116, "RosBusinessConsulting, CJSC" },
- { 44117, "Cross Borders Trust Services O\0303\0234" },
- { 44118, "Noakes" },
- { 44119, "Creighton" },
- { 44120, "Avairis, Inc." },
- { 44121, "HRK Soft Group Ltd." },
- { 44122, "T17R (Martin Treusch von Buttlar)" },
- { 44123, "Business-intelligence of Oriental Nations Corporation, Ltd." },
- { 44124, "bit media e-solutions gmbh." },
- { 44125, "Lanyo Networks Co., LTD." },
- { 44126, "Lookhere Design" },
- { 44127, "Borderlight AB" },
- { 44128, "MapGear" },
- { 44129, "beijing yunzheng telecommunication technology Co, LTD" },
- { 44130, "Michael Ghazi" },
- { 44131, "Nanjing DunLei Network Technology Co.,Ltd." },
- { 44132, "OpsVision Solutions" },
- { 44133, "Commerce Technologies, Inc." },
- { 44134, "Bless Information & Communication Inc." },
- { 44135, "Jonkoping Energi AB" },
- { 44136, "Data Controls Inc." },
- { 44137, "KaiXiang" },
- { 44138, "NodeForge" },
- { 44139, "Vizury Interactive Solutions Pvt. Ltd" },
- { 44140, "Rapp Management AG" },
- { 44141, "Rosbank" },
- { 44142, "Edidin Group, Inc" },
- { 44143, "kazalo GmbH" },
- { 44144, "Symbolic IO" },
- { 44145, "Pokazz sp. z o.o." },
- { 44146, "INSYS K.Bartkowski, P.Czekala sp.j." },
- { 44147, "Diagnostic Imaging Associates" },
- { 44148, "Nanjing Tsinghua Novel Network Technology Co.,Ltd." },
- { 44149, "KouXianglong" },
- { 44150, "Intermarketing Oy" },
- { 44151, "Metrovision" },
- { 44152, "Kambio Company" },
- { 44153, "DreamCode S.A.S." },
- { 44154, "InfoStreet, Inc." },
- { 44155, "Sacred Heart Hospital of Allentown" },
- { 44156, "Computer Applications & Technical Services" },
- { 44157, "Stadtverwaltung Duebendorf" },
- { 44158, "Mediterranean Broadband Infrastructure s.r.l." },
- { 44159, "DK-Technologies" },
- { 44160, "Contra Costa Oncology" },
- { 44161, "Tri-County Hematology & Oncology Assoc." },
- { 44162, "CHAMPLAIN VALLEY HEMATOLOGY ONCOLOGY, PC" },
- { 44163, "University of SS. Cyril and Methodius in Trnava" },
- { 44164, "OutSmart Power Systems LLC" },
- { 44165, "Eduardo Miranda MD" },
- { 44166, "Andrews & Patel Associates, P.C" },
- { 44167, "North Texas Gynecologic Oncology" },
- { 44168, "NetCraft Australia Pty Ltd" },
- { 44169, "FIDA INTERNATIONAL (S) PTE LTD" },
- { 44170, "Decision Group Inc." },
- { 44171, "RogSibAl LLC" },
- { 44172, "Hangzhou Kuaiyue Mobile Technologies, Ltd." },
- { 44173, "InPhoSys Ltd" },
- { 44174, "Baptist Health Cancer Care & Blood Disorders" },
- { 44175, "Urology Cancer Center" },
- { 44176, "SOCIETE REUNIONNAISE DU RADIOTELEPHONE" },
- { 44177, "INSTITUTO DE HEMATOLOGIA Y ONCOLOGIA MEDICA, SRL" },
- { 44178, "Cancer Clinic" },
- { 44179, "Daniel Stensnes" },
- { 44180, "Oncology & Hematology Associates of West Broward, P.A." },
- { 44181, "Chitra Venkatraman, M.D., P.A." },
- { 44182, "Associates in Oncology/Hematology" },
- { 44183, "Security Confidence Corporation" },
- { 44184, "Ma-Ya IT Consult, e.U." },
- { 44185, "Horizon Medical Group, Inc" },
- { 44186, "Keats, Connelly & Associates, LLC" },
- { 44187, "Zirtual Inc" },
- { 44188, "Cancer Center Oncology Medical Group" },
- { 44189, "Pacific Cancer Care" },
- { 44190, "PostAR" },
- { 44191, "CLG Enterprises" },
- { 44192, "Remego Ltd." },
- { 44193, "Beijing DATAX Technology Co., Ltd." },
- { 44194, "EnGenius Networks, Inc." },
- { 44195, "Southern Oncology Specialists, PLLC" },
- { 44196, "SecureRF Corporation" },
- { 44197, "Piedmont Cancer Institute" },
- { 44198, "Cancer and Hematology Centers of Western Michigan" },
- { 44199, "University of New South Wales" },
- { 44200, "Markit Ltd" },
- { 44201, "Micromation.Net" },
- { 44202, "American Energy Partners, LP" },
- { 44203, "Global 3R Ltd." },
- { 44204, "Medical Oncology Associates of Long Island, PC" },
- { 44205, "BandRich, Inc." },
- { 44206, "Fujitsu Isotec Limited" },
- { 44207, "Proxee Solutions" },
- { 44208, "Telecom Personal Paraguay" },
- { 44209, "fsis GmbH" },
- { 44210, "Robadey Network" },
- { 44211, "GGR Communications Ltd" },
- { 44212, "Oncology Hematology Care of Connecticut, LLC" },
- { 44213, "Happy Gears Inc" },
- { 44214, "Erie Indemnity Company" },
- { 44215, "Arsslensoft" },
- { 44216, "FUYOH VIDEO INDUSTRY CO.,LTD." },
- { 44217, "FiberRoad" },
- { 44218, "Buffalo Boots GmbH" },
- { 44219, "Beijing Raytight Technologies, Co" },
- { 44220, "Netzin Technology Corporation,.Ltd." },
- { 44221, "Primary Oncology Network, PLLC" },
- { 44222, "Fox Valley Hematology Oncology/Illinois Cancer Specialists" },
- { 44223, "GE AVIC Civil Avionics Systems Company Limited" },
- { 44224, "MATTHEW TAUB MD PA" },
- { 44225, "Mr.yassine hamraoui" },
- { 44226, "sonoran hematology oncology" },
- { 44227, "Pulse Secure" },
- { 44228, "port GmbH" },
- { 44229, "Wanco Inc" },
- { 44230, "Bundesamt f\0303\0274r Seeschifffahrt und Hydrographie" },
- { 44231, "Queens Medical Associates, PC" },
- { 44232, "Ing. B\0303\0274ro Mann" },
- { 44233, "Balluff GmbH" },
- { 44234, "VIT S.A." },
- { 44235, "Ospero Pty. Ltd." },
- { 44236, "Compassionate Oncology Medical Group" },
- { 44237, "Allegro Packets GmbH" },
- { 44238, "Esense Embeded" },
- { 44239, "Centro de cancer de la mujer de Puerto Rico" },
- { 44240, "Rocket Internet AG" },
- { 44241, "LotusCom Inc." },
- { 44242, "Radomir LLC" },
- { 44243, "NSTEK Inc." },
- { 44244, "Gardens Regional Hospital and Medical Center, Inc." },
- { 44245, "Fazion Sistemas Ltda" },
- { 44246, "St. Louis Cancer Care, LLC" },
- { 44247, "CLEAR SRL" },
- { 44248, "Simula Research Laboratory" },
- { 44249, "Florida Cancer Specialists & Research Institute" },
- { 44250, "Coastal Integrative Cancer Care" },
- { 44251, "IMT Services Corp" },
- { 44252, "Iceotope" },
- { 44253, "HANKYUNG I-NET" },
- { 44254, "LuckyBulldozer" },
- { 44255, "Medical Oncology Associates of San Diego" },
- { 44256, "Kootenai Cancer Center" },
- { 44257, "Teraoka Weigh-System Pte Ltd" },
- { 44258, "Hello World Ltd" },
- { 44259, "Xstream Flow (Pty) Ltd" },
- { 44260, "BALLY WULFF Games & Entertainment GmbH" },
- { 44261, "CARBOGEN AMCIS AG" },
- { 44262, "BJ's Wholesale Club" },
- { 44263, "Cancer Center of Sarasota Manatee" },
- { 44264, "SurfCrew, Inc." },
- { 44265, "Grotex OOO" },
- { 44266, "Luna-78 LLC" },
- { 44267, "Hematology & Oncology Associates of Alabama, LLC" },
- { 44268, "DynaScan Technology, Inc." },
- { 44269, "Beamly" },
- { 44270, "Barnardsoft Co., Ltd." },
- { 44271, "Nuage Networks" },
- { 44272, "PRO-PflegeBeratung" },
- { 44273, "Gernert-Net" },
- { 44274, "Trit Networks LLC" },
- { 44275, "Illumio, Inc." },
- { 44276, "TANABIKI Inc." },
- { 44277, "Mike Tennant" },
- { 44278, "ShangHai RealCom Communication Technology Co.,Ltd." },
- { 44279, "ZheJiang University PRESS" },
- { 44280, "F E T Elettronica snc" },
- { 44281, "Blood & Marrow Transplant Group of Georgia" },
- { 44282, "Microware Computing & Consulting Pvt Ltd" },
- { 44283, "Appnovation Technologies Inc" },
- { 44284, "Time4 Systems Ltd." },
- { 44285, "New England Cancer Specialists" },
- { 44286, "Working Distributors, Inc." },
- { 44287, "JConcept Open Solutions" },
- { 44288, "greaty" },
- { 44289, "Beijing Cyber Greatwall Information Technology Co., Ltd." },
- { 44290, "Sajeev Anand, M.D., LLC" },
- { 44291, "New London Cancer Center" },
- { 44292, "emplus Networks Inc." },
- { 44293, "Unwired Networks GmbH" },
- { 44294, "Quanta-Computing" },
- { 44295, "SSE - Stuellein Software Engineering" },
- { 44296, "HelmetHub" },
- { 44297, "Alliance Cancer Specialists, PC" },
- { 44298, "CogVis GmbH" },
- { 44299, "I.M. Dauntless" },
- { 44300, "Cyber1st R&D Ltd." },
- { 44301, "Alexander Maier GmbH" },
- { 44302, "Clearview Cancer Institute" },
- { 44303, "Netz-AG Emil-Figgestra\0303\0237e 15-39" },
- { 44304, "HEMATOLOGY ONCOLOGY LIFE CENTER LLC" },
- { 44305, "Oncology Hematology Associates of Springfield, MD, PC" },
- { 44306, "CAROLINA ONCOLOGY ASSOCIATES, P.A." },
- { 44307, "LP Technologies, Inc." },
- { 44308, "Centripetal Networks, Inc." },
- { 44309, "Center for Cancer Care" },
- { 44310, "SiteSpect, Inc." },
- { 44311, "Budapesti Fazekas Mihaly Gyakorlo Altalanos Iskola es Gimnazium" },
- { 44312, "Amundson Partners, Inc." },
- { 44313, "Johan Grip (ogun.org)" },
- { 44314, "Democritus University of Thrace" },
- { 44315, "Guido Di Fazio" },
- { 44316, "Softneta UAB" },
- { 44317, "Kanton Zug (www.zg.ch)" },
- { 44318, "PT. Telekomunikasi Indonesia" },
- { 44319, "Oklahoma Cancer Specialists and Research Institute" },
- { 44320, "Lake Norman Hematology Oncology" },
- { 44321, "TrilioData, Inc" },
- { 44322, "Shenzhen Mailian Electronics Co.,Ltd" },
- { 44323, "SmartRG, Inc." },
- { 44324, "EstiNet Technologies Inc." },
- { 44325, "TangoME, Inc." },
- { 44326, "Kwartzlab Makerspace" },
- { 44327, "Ardexa Pty Ltd" },
- { 44328, "tmon" },
- { 44329, "Elektronik Art" },
- { 44330, "Xeneta AS" },
- { 44331, "ZHAW Z\0303\0274rcher Hochschule f\0303\0274r Angewandte Wissenschaften" },
- { 44332, "Wallarm, Inc" },
- { 44333, "artdecode.de" },
- { 44334, "Saint Vincent Physician Services, Inc." },
- { 44335, "Waverules LLC" },
- { 44336, "Oncology Hematology Associates of Saginaw Valley, P.C." },
- { 44337, "ONCOLOGY ASSOCIATES OF MONROE" },
- { 44338, "Low Country Cancer Care Associates, P.C." },
- { 44339, "Low Country Cancer Care Associates, P.C." },
- { 44340, "Mid-Illinois Hematology & Oncology Associates, Ltd." },
- { 44341, "GreatCall, Inc." },
- { 44342, "Regional Cancer Care Associates LLC" },
- { 44343, "Jackson Oncology Associates, PLLC" },
- { 44344, "CANCER CENTER ASSOCIATES" },
- { 44345, "LLC, Sintek" },
- { 44346, "JSC \"Promstroikontrakt\"" },
- { 44347, "IK SATPROF LLC" },
- { 44348, "NIL KSA" },
- { 44349, "Highland Clinic, APMC" },
- { 44350, "Cancer Care Centers of Brevard" },
- { 44351, "greglearns (Greg Edwards)" },
- { 44352, "North Shore Hematology & Oncology Associates P.C." },
- { 44353, "Cancer Center of Central Connecticut, LLC" },
- { 44354, "Grace Hematology and Oncology" },
- { 44355, "Oncology Hematology Associates of Northern PA, PC" },
- { 44356, "Trust Medical and Oncology Center" },
- { 44357, "Birchbox Inc." },
- { 44358, "Nashat Y Gabrail, MD Inc " },
- { 44359, "Frederick P. Smith, MD PC" },
- { 44360, "EAST SIDE ONCOLOGY ASSOCIATES, PLLC" },
- { 44361, "Dabas Cancer Institute, P.A." },
- { 44362, "Universidade Federal de Uberlandia" },
- { 44363, "CloudFlare" },
- { 44364, "AVEA" },
- { 44365, "DR. CHRISTOPHER T. SOPRENUK, M.D. P.A." },
- { 44366, "Essex Oncology of North Jersey PA" },
- { 44367, "Highland Solutions" },
- { 44368, "Unmukti Technology Private Limited" },
- { 44369, "NeoTerra Systems Inc." },
- { 44370, "Utelisys Communications B.V." },
- { 44371, "Jay Steel" },
- { 44372, "Valley Medical Oncology Consultants, A Medical Group, A Professional Corp" },
- { 44373, "Regional Cancer Care Associates- Central Jersey Division" },
- { 44374, "New England Hematology Oncology Associatesd" },
- { 44375, "Eastern Long Island Hematology Oncology " },
- { 44376, "Opus One Winery, LLC" },
- { 44377, "Hudson Hematology Oncology " },
- { 44378, "Stephan Gogler" },
- { 44379, "Meanwave GmbH" },
- { 44380, "Desert Hematology Oncology Medical Group Inc." },
- { 44381, "Medical Oncology Associates, PS" },
- { 44382, "Intec Pacific Pty. Ltd." },
- { 44383, "Ascent Co.,Ltd" },
- { 44384, "Harbour IT Pty Ltd" },
- { 44385, "BONSONINFO SYSTEM CO.,LTD" },
- { 44386, "3 Gen d.o.o." },
- { 44387, "Conway Hematology Oncology" },
- { 44388, "Medical and Surgical Clinic of Irving" },
- { 44389, "Max Planck Institute for Metabolism Research" },
- { 44390, "Skootr.com" },
- { 44391, "Polytechnic West" },
- { 44392, "Xperterra" },
- { 44393, "Pinellas Hematology &Oncology PA." },
- { 44394, "Province Nord - Nouvelle Cal\0303\0251donie" },
- { 44395, "Pierre Decazes" },
- { 44396, "Hilberling GmbH" },
- { 44397, "OTP Bank Plc." },
- { 44398, "SAITEL Telecomunicazioni s.r.l." },
- { 44399, "Masgalor" },
- { 44400, "Eagle Investment Systems LLC" },
- { 44401, "Meeting House Lane Medical Practice PC" },
- { 44402, "Singh & Arora Oncology/Hematology, P.C." },
- { 44403, "STUART ONCOLOGY ASSOCIATES" },
- { 44404, "Climate-control NN, Ltd." },
- { 44405, "Shenzhen Wintop Photoelectric Technology Co., Ltd" },
- { 44406, "SMT S.A." },
- { 44407, "Vidder, Inc." },
- { 44408, "Ventus Technologies S.L." },
- { 44409, "OSNA Research" },
- { 44410, "Versilis Inc" },
- { 44411, "Universidad Mariano G\0303\0241lvez de Guatemala" },
- { 44412, "Markus Froehlich" },
- { 44413, "Studievereniging A-Eskwadraat" },
- { 44414, "Aldazar LLC" },
- { 44415, "Mikeji d.o.o." },
- { 44416, "China Electronics Technology Group Corporation No.7 Research Institute" },
- { 44417, "Lazy Mountain Computers" },
- { 44418, "Shenzhen Haipengxin Electronics Co., Ltd." },
- { 44419, "South County Hematology Oncology" },
- { 44420, "Fairfax Media" },
- { 44421, "Shen zhen huaptec co.,ltd" },
- { 44422, "CloudGate Systems India Pvt Ltd" },
- { 44423, "Frederick G. Barr, MD" },
- { 44424, "Nelson G.N. Kalil, MD PC" },
- { 44425, "goldenTech SA" },
- { 44426, "ek-soft GmbH" },
- { 44427, "Hills Road Sixth Form College" },
- { 44428, "ZAO Severo-Zapad" },
- { 44429, "Great Lakes Cancer Management Specialists" },
- { 44430, "AGF Management Limited" },
- { 44431, "Panhandle Cancer Center" },
- { 44432, "CanDeal" },
- { 44433, "Tri-Tech Manufacturing, Inc" },
- { 44434, "Junta de Comunidades de Castilla-La Mancha" },
- { 44435, "Staatliches Berufsschulzentrum Hermsdorf" },
- { 44436, "IdentKey Sicherheitsverbund (Ithamar Garbe)" },
- { 44437, "CommBox Pty. Ltd." },
- { 44438, "Thomas A. York" },
- { 44439, "FOP Kagarlickij D.V." },
- { 44440, "INFUSION ASSOCIATES, PC" },
- { 44441, "Radford University" },
- { 44442, "iSysBus" },
- { 44443, "Stelo - Companhia Brasileira de Pag Eletr" },
- { 44444, "iWelcome B.V." },
- { 44445, "Corrado Mulas Enterprise Root CA" },
- { 44446, "GovComm, Inc." },
- { 44447, "Fairchild Medical Center" },
- { 44448, "Apica" },
- { 44449, "Xiamen University" },
- { 44450, "Synapsys Solutions Ltd." },
- { 44451, "Schessner IT-Consulting" },
- { 44452, "Evgeny Artemyev (XART)" },
- { 44453, "Arizona Oncology/Saguaro Cancer Center" },
- { 44454, "Globalstar, Inc." },
- { 44455, "CHINA HUALU GROUP CO., LTD" },
- { 44456, "tuxwave.net" },
- { 44457, "Biamp Systems" },
- { 44458, "IT WATANA COMPANY" },
- { 44459, "Bluepunkt Networks, Inc." },
- { 44460, "Alumina Elit 2003 Ltd." },
- { 44461, "Rainus" },
- { 44462, "K2E" },
- { 44463, "BTS TECH S.r.l." },
- { 44464, "Edgeguide AB" },
- { 44465, "Cataleya Pte Ltd" },
- { 44466, "FOP Tumakha Yuriy Volodymyrovych" },
- { 44467, "Sigmacom Broadcast" },
- { 44468, "Streamline, Lda." },
- { 44469, "ARPA2" },
- { 44470, "Intermediate Engineering GmbH" },
- { 44471, "Kryptos Security" },
- { 44472, "BAMBR Information, Inc." },
- { 44473, "CSTx GmbH" },
- { 44474, "Murata Manufacturing Co.,Ltd" },
- { 44475, "init.at informationstechnologie GmbH" },
- { 44476, "Middlesex Oncology" },
- { 44477, "Washington Metropolitan Area Transit Authority" },
- { 44478, "BIN-Control GmbH" },
- { 44479, "Gikos Networks" },
- { 44480, "Beijing Liuhe Intelligence Technology Ltd." },
- { 44481, "CentrAlert" },
- { 44482, "Oncare-Hawaii Hematology Oncology" },
- { 44483, "Los Angeles Cancer Network" },
- { 44484, "YIXUN Technology Co., Ltd." },
- { 44485, "WIBU-SYSTEMS AG" },
- { 44486, "Diabolocom" },
- { 44487, "Ineos Manufacturing Koeln GmbH" },
- { 44488, "Reichle & De-Massari AG" },
- { 44489, "possybility" },
- { 44490, "Beward R&D Co., Ltd " },
- { 44491, "Cherry Creek Mortgage Co., Inc." },
- { 44492, "MEDIAHOUND, INC." },
- { 44493, "STARMON s.r.o." },
- { 44494, "TrustAsia Technologies, Inc." },
- { 44495, "PAIO co.,ltd." },
- { 44496, "Bender GmbH & Co. KG" },
- { 44497, "CHINA AERONAUTICAL RADIO ELECTRONICS RESEARCH INSTITUTE" },
- { 44498, "IT Solutions Roland Breitschaft" },
- { 44499, "BLOOD AND CANCER CENTER OF EAST TEXAS" },
- { 44500, "CHRONOTRACK SYSTEMS CORP." },
- { 44501, "NuLEDs, Inc." },
- { 44502, "SmartCast GmbH" },
- { 44503, "MDLIVE Inc." },
- { 44504, "Evilcats Organization" },
- { 44505, "Ideum Group, Inc" },
- { 44506, "Consulta Network Security AB" },
- { 44507, "Northwest Alabama Cancer Center, PC" },
- { 44508, "Vigilant Applications Limited" },
- { 44509, "CompTek" },
- { 44510, "FJ Consultant" },
- { 44511, "Rudolf Wild GmbH & Co. KG" },
- { 44512, "iptronix srl" },
- { 44513, "Essener Versorgungs- und Verkehrsgesellschaft mbH (EVV)" },
- { 44514, "bremersee.org" },
- { 44515, "Griesson - de Beukelaer GmbH & Co. KG" },
- { 44516, "ETES GmbH" },
- { 44517, "Virgil Grigoras" },
- { 44518, "EUROSELL SPA" },
- { 44519, "US Railroad Retirement Board" },
- { 44520, "Consolidated Information Systems" },
- { 44521, "WUNDERVOLL NETWORKS" },
- { 44522, "Information Technology Solutions Laboratory" },
- { 44523, "NetBeez" },
- { 44524, "Research & Development Center \"Vulkan\" LLC" },
- { 44525, "Breast Surgery of Tulsa" },
- { 44526, "Carta Solutions Processing Services Corp" },
- { 44527, "Marco Dominguez" },
- { 44528, "Uriel Technologies" },
- { 44529, "One Call Care Management" },
- { 44530, "Alphapower Ltd." },
- { 44531, "Renfell Engineering Pty Ltd" },
- { 44532, "Sage Electronic Engineering, LLC" },
- { 44533, "Digital Barriers" },
- { 44534, "Weybourne Partners LLP" },
- { 44535, "TSAT AS" },
- { 44536, "True Partners Consulting LLC" },
- { 44537, "Elauwit Networks, LLC" },
- { 44538, "Providius Corp" },
- { 44539, "Safe Patient Systems Ltd" },
- { 44540, "Bond Enterprises" },
- { 44541, "FeiTian United (Beijing) System Technology Co.,Ltd." },
- { 44542, "VdS Schadenverh\0303\0274tung GmbH" },
- { 44543, "Viesti Networks Oy" },
- { 44544, "SANEF-ITS" },
- { 44545, "K-LAGAN Espa\0303\0261a S.L." },
- { 44546, "Harp Visual Communications Ltd" },
- { 44547, "YMOR Group B.V." },
- { 44548, "Centrale Ashton Inc." },
- { 44549, "ELECTRIS" },
- { 44550, "Avature USA LLC" },
- { 44551, "NetCredit Group" },
- { 44552, "Night Corporation" },
- { 44553, "Oncology/Hematology of Loudoun and Reston" },
- { 44554, "Primevation Ltd." },
- { 44555, "CICS AB" },
- { 44556, "Universitas Al Azhar Indonesia" },
- { 44557, "WorNet AG" },
- { 44558, "Derixx GmbH" },
- { 44559, "Tribunal Regional do Trabalho da 13a. Regiao" },
- { 44560, "International Black Sea University" },
- { 44561, "Alachua County Library District" },
- { 44562, "aixtools (Michael Felt)" },
- { 44563, "Irkutsk Diagnostic Centre" },
- { 44564, "CJSC \"ENERGOMERA\"" },
- { 44565, "LECKERBEEF.de" },
- { 44566, "OOO Komandor-holding" },
- { 44567, "Agencja Rozwoju Przemyslu S.A." },
- { 44568, "newnet Marketing (formerly 'Topik Business Services GmbH')" },
- { 44569, "Regional Networks, Ltd." },
- { 44570, "Lancaster Cancer Center" },
- { 44571, "Solinea, Inc" },
- { 44572, "Abington Hematology Oncology Associates" },
- { 44573, "MGI1" },
- { 44574, "Jilin Yuxin Technology Co. Ltd" },
- { 44575, "3S PocketNet" },
- { 44576, "PERNOD-RICARD" },
- { 44577, "Proxion Solutions Oy" },
- { 44578, "Spectra Engineering Pty Ltd" },
- { 44579, "Sonnenburg Electronic AG" },
- { 44580, "Johann Sperber GMBH & Co. KG" },
- { 44581, "Regional Hematology Oncology Associates,P.C" },
- { 44582, "Inversion Software O\0303\0234" },
- { 44583, "Obicis Ltd." },
- { 44584, "JumpCloud, Inc" },
- { 44585, "Servato Corp" },
- { 44586, "CommDev, LLC" },
- { 44587, "InMechaSol" },
- { 44588, "Kryptus Information Security Ltd." },
- { 44589, "becker-ikt.de - Jochen Becker" },
- { 44590, "Kevin Niehage" },
- { 44591, "Morgan Hunt Ltd" },
- { 44592, "Fininvest Sp. z o.o." },
- { 44593, "Jan B\0304\0233t\0303\0255k (\0303\0232dol\0303\0255 Svin\0303\0255)" },
- { 44594, "DTS INSIGHT CORPORATION (formerly 'Yokogawa Digital Computer Corporation')" },
- { 44595, "indigo Consulting GmbH" },
- { 44596, "DILO Armaturen und Anlagen GmbH" },
- { 44597, "BigBoards" },
- { 44598, "Gosford IT" },
- { 44599, "Vuzix Corporation" },
- { 44600, "e-Paper Ltd." },
- { 44601, "Sunware s.r.o." },
- { 44602, "Systems Mechanics Ltd." },
- { 44603, "u-form Testsysteme GmbH & Co KG" },
- { 44604, "Beijing Jinhong Xi-Dian Information Technology Corp." },
- { 44605, "Lighthouse IVM GmbH" },
- { 44606, "Siraya Networks Co., Ltd." },
- { 44607, "GreenField Software Private Limited" },
- { 44608, "Net at Work Netzwerksysteme GmbH" },
- { 44609, "PRONIX s.r.o." },
- { 44610, "Elvis-Telecom JSC" },
- { 44611, "Dumee.fr" },
- { 44612, "Beijing Tonlier Energy Technology Co., Ltd." },
- { 44613, "Sunkaisens(Beijing) Technology Co.,Ltd." },
- { 44614, "Lingualeo LLC." },
- { 44615, "Bluehouse Technology Ltd" },
- { 44616, "University Transilvania of Brasov" },
- { 44617, "GLOBTECH spol. s r.o." },
- { 44618, "Philter, LLC" },
- { 44619, "Ziften Technologies" },
- { 44620, "Integrated Service Company LLC" },
- { 44621, "OLeary Computers Inc" },
- { 44622, "Instituto Colegio de Todos los Santos" },
- { 44623, "Iomnis Surveillance Solutions" },
- { 44624, "Blood & Cancer Center (Ohio)" },
- { 44625, "Electre" },
- { 44626, "Captive.net" },
- { 44627, "National Instruments Corporation" },
- { 44628, "Canva, Inc." },
- { 44629, "Australian Department of Infrastructure and Regional Development" },
- { 44630, "JSC Platron" },
- { 44631, "TechFu (Pty) Ltd." },
- { 44632, "EBlink SA" },
- { 44633, "Squire Technologies" },
- { 44634, "markentier (Christoph Grabo)" },
- { 44635, "Degeetia O\0303\0234" },
- { 44636, "NewCashel Inc." },
- { 44637, "CB&I Federal Services" },
- { 44638, "ONEDC" },
- { 44639, "Hermes Europe GmbH" },
- { 44640, "UpdateLogic, Inc." },
- { 44641, "VyOS" },
- { 44642, "National Knowledge Network" },
- { 44643, "Fujikura Automotive Europe S.A." },
- { 44644, "Vopium A/S" },
- { 44645, "Infrabel NV" },
- { 44646, "Emko Elektronik Sanayi ve Ticaret A.\0305\0236." },
- { 44647, "Argus der Presse AG" },
- { 44648, "Manet Ltd" },
- { 44649, "Alma Technologies" },
- { 44650, "Hemotology Oncology Care of Northern VA" },
- { 44651, "University of Detroit Jesuit High School and Academy" },
- { 44652, "LaMarche Mfg. Company" },
- { 44653, "Unassigned" },
- { 44654, "Hochschule f\0303\0274r Musik Freiburg" },
- { 44655, "Heartland Hematology & Oncology" },
- { 44656, "Sound Choice Communications LLC" },
- { 44657, "Bow Valley College" },
- { 44658, "Northwest Medical Specialties PLLC" },
- { 44659, "Burlington County Hematology-Oncology Associates, P.A." },
- { 44660, "Landspitali" },
- { 44661, "Boyce Technologies, Inc." },
- { 44662, "CodeChase" },
- { 44663, "Wuhan GreeNet Information Service Co., Ltd." },
- { 44664, "IRCOS JSC" },
- { 44665, "1&1 Internet AG" },
- { 44666, "Ville de Saint Andr\0303\0251" },
- { 44667, "Pardic Systems , Ltd." },
- { 44668, "Securosys SA" },
- { 44669, "First Capital Payments" },
- { 44670, "Prism Software Corporation" },
- { 44671, "Sysctl AB" },
- { 44672, "Naucra Co., Ltd" },
- { 44673, "SitePen, Inc." },
- { 44674, "FUSED NETWORK CORP" },
- { 44675, "Spillman Technologies Inc." },
- { 44676, "Glenn McGurrin" },
- { 44677, "Dreamhack Network" },
- { 44678, "Loopia AB" },
- { 44679, "Plansee Group Service GmbH" },
- { 44680, "Iudex" },
- { 44681, "Ajuntament de Valencia" },
- { 44682, "CompliSpace Technology Pty Ltd" },
- { 44683, "Intern-net" },
- { 44684, "Corsa Technology Inc." },
- { 44685, "NTENT" },
- { 44686, "ROI Development Corp., DBA Newmar" },
- { 44687, "Hebeo" },
- { 44688, "WorldWide Supply LLC (aka \"WWS\")" },
- { 44689, "Groupe Simplinet inc." },
- { 44690, "Sonavox Canada Inc." },
- { 44691, "GRUPO ONCOLOGICO COMUNITARIO DE SAN JUAN" },
- { 44692, "Sedus Stoll AG" },
- { 44693, "Microwave Photonic Systems, Inc." },
- { 44694, "Adams County Cancer Center" },
- { 44695, "Wolfgang Erlenkoetter IT" },
- { 44696, "apl.io" },
- { 44697, "Charles University in Prague, Faculty of Mathematics and Physics" },
- { 44698, "Baxter Planning System" },
- { 44699, "BiLL GmbH" },
- { 44700, "Kuss IT-Solutions" },
- { 44701, "Hearsay Social" },
- { 44702, "Voiceworks B.V." },
- { 44703, "Danville Hematology and Oncology" },
- { 44704, "BlackSip Development" },
- { 44705, "Hack12" },
- { 44706, "Hostopia.com Inc." },
- { 44707, "SAI Technology Inc." },
- { 44708, "Crews Banking corporation " },
- { 44709, "Xolphin B.V." },
- { 44710, "Ensured B.V." },
- { 44711, "T-Mobile Nederland BV" },
- { 44712, "AGAT-System" },
- { 44713, "COSMOS-SOFT.net" },
- { 44714, "Transdata" },
- { 44715, "Ezitherm" },
- { 44716, "University of the Sunshine Coast" },
- { 44717, "CO-Sol Inc." },
- { 44718, "Loews Hotels Inc" },
- { 44719, "UniversalCard Sibiria LLC" },
- { 44720, "Shanghai BEIDIAN Industry Group" },
- { 44721, "Okaki Health Intelligence Inc" },
- { 44722, "WALLMEDIEN AG" },
- { 44723, "Unassigned" },
- { 44724, "LLC \"ITTech\"" },
- { 44725, "BADTRONIC sarl" },
- { 44726, "Radionika Sp. z o.o." },
- { 44727, "Y2S Corporation" },
- { 44728, "I3 CZ s.r.o." },
- { 44729, "Fixmon" },
- { 44730, "Elkomtech S.A." },
- { 44731, "Palestine Monetary Authority " },
- { 44732, "OOO bella-Don" },
- { 44733, "Forbes Technosys Ltd" },
- { 44734, "Menlo Security" },
- { 44735, "Electronic Commerce Inc." },
- { 44736, "JERRA Soft GmbH" },
- { 44737, "Raindrop Laboratories (Alan Batie)" },
- { 44738, "ASUSTOR Inc." },
- { 44739, "Miele & Cie. KG" },
- { 44740, "Innovapuglia S.p.A." },
- { 44741, "IAV GmbH" },
- { 44742, "Aunigma Network Security Corp." },
- { 44743, "POMA" },
- { 44744, "Scanline VFX LA Inc." },
- { 44745, "Tremor Video" },
- { 44746, "Sea Surveillance AS" },
- { 44747, "VoiceTrust" },
- { 44748, "Wild Kilt Pty Ltd" },
- { 44749, "Malwarebytes Corporation" },
- { 44750, "Edifecs Inc" },
- { 44751, "Tell International Inc." },
- { 44752, "Quamatik doo" },
- { 44753, "UniQ-CA B.V." },
- { 44754, "Patent Agency Tegas Llc" },
- { 44755, "Online Development Inc." },
- { 44756, "AgNO3 GmbH & Co. KG" },
- { 44757, "ANIMO LIMITED." },
- { 44758, "ACTRONICS K.K." },
- { 44759, "Turbo Systems Co., Ltd." },
- { 44760, "Vsoft Colombia Ltda." },
- { 44761, "VoxIdea" },
- { 44762, "IBS PROJECT LLC" },
- { 44763, "Steven Sloane" },
- { 44764, "bacq.ru" },
- { 44765, "PTL Limited" },
- { 44766, "Katao Ops" },
- { 44767, "Tieto Sweden AB" },
- { 44768, "Grayson bvba" },
- { 44769, "Tsinghua University" },
- { 44770, "NYNEX satellite OHG" },
- { 44771, "Apsidis" },
- { 44772, "West Genesee Central School District" },
- { 44773, "Sistemas de Seguridade A1" },
- { 44774, "Alameda Health Services" },
- { 44775, "City Network Hosting AB" },
- { 44776, "Hedberg Produtions" },
- { 44777, "MEAZON SA" },
- { 44778, "thinkindifferent.net" },
- { 44779, "Unity Health Insurance" },
- { 44780, "BikePics" },
- { 44781, "Connetos Company" },
- { 44782, "Xiamen Kehua Hengsheng Co.,Ltd" },
- { 44783, "Push To Talk International Ltd" },
- { 44784, "Hitzigrath" },
- { 44785, "IS2 Intelligent Solution Services AG" },
- { 44786, "Stadtwerke Jena GmbH " },
- { 44787, "Corporate Business Systems LLP." },
- { 44788, "Goethe-Institut e. V." },
- { 44789, "Sarah Cannon Research Institute" },
- { 44790, "Ingenium Automation + Engineering Pte Ltd" },
- { 44791, "Chengdu Global Capsheaf Solution Technology Co., Ltd." },
- { 44792, "AzuriteUK (Valerij Prusakov)" },
- { 44793, "GAMING1 SPRL" },
- { 44794, "Chickasaw Holding Company" },
- { 44795, "Tridigy, LLC" },
- { 44796, "SFO Technologies Pvt. Ltd." },
- { 44797, "Stoat Works" },
- { 44798, "TechsMix Networks" },
- { 44799, "audioalgorithms" },
- { 44800, "it7 s.r.o." },
- { 44801, "Sole proprietorship Ilya Gruzinov" },
- { 44802, "IT-Labor" },
- { 44803, "Whatson-Web" },
- { 44804, "FCM TECHNOLOGY S.r.l." },
- { 44805, "Sea Island Cancer Center" },
- { 44806, "Universidade Federal da Integra\0303\0247\0303\0243o Latino-Americana" },
- { 44807, "Infor*Med" },
- { 44808, "tsblog.org" },
- { 44809, "HealthStream, Inc." },
- { 44810, "arales.org" },
- { 44811, "Funambolo Technologies Private Limited" },
- { 44812, "JSC \"Institute of Automation of Energy Systems\" " },
- { 44813, "Beijing Easynetworks Technology Co.,Ltd." },
- { 44814, "Genexyx Srl" },
- { 44815, "Mauro Altamura" },
- { 44816, "South Carolina Oncology Associates" },
- { 44817, "Idaho Division of Veterans Services" },
- { 44818, "CADMO CONOCIMIENTO S.L." },
- { 44819, "Store Electronic Systems S.A." },
- { 44820, "Chlorine Hilarva" },
- { 44821, "Beijer Electronics AB" },
- { 44822, "DC Matrix Internet S/A" },
- { 44823, "Airborne Interactive" },
- { 44824, "Opravil" },
- { 44825, "Lautersoft" },
- { 44826, "Fire Protection Service Corporation" },
- { 44827, "epcan GmbH" },
- { 44828, "SilverNet Ltd." },
- { 44829, "Ganymed Pharmaceuticals AG" },
- { 44830, "Trio Motion Technology Ltd" },
- { 44831, "Nuvotex Solutions GmbH & Co KG" },
- { 44832, "Product Ventures Ltd" },
- { 44833, "peteheilig.com" },
- { 44834, "SYSTEMS AND TECHNOLOGIES, ZAO" },
- { 44835, "Oncology & Hematology Consultants of Houston" },
- { 44836, "Breqwatr, Inc." },
- { 44837, "Absec Malaysia Sdn Bhd" },
- { 44838, "chinasoft-tokyo corporation " },
- { 44839, "Mega Designs Pvt. Ltd." },
- { 44840, "Intrasonics Ltd" },
- { 44841, "Lyngmo.Net" },
- { 44842, "Fairbanks North Star Borough School District" },
- { 44843, "Hasin Technology" },
- { 44844, "Nobel Biocare Services AG" },
- { 44845, "Dillert" },
- { 44846, "SuperNetwork s.r.o." },
- { 44847, "Yuri Bugelli" },
- { 44848, "COSYLVAL" },
- { 44849, "Five Below, Inc." },
- { 44850, "United States Antarctic Program" },
- { 44851, "WINK Streaming" },
- { 44852, "Energy Communications Management Exchange, sub-division of Future DOS Research & Development Inc. " },
- { 44853, "KVL COMP Kft." },
- { 44854, "linmaonline.de" },
- { 44855, "h-dy's Home" },
- { 44856, "Art Developers Corporation" },
- { 44857, "Broadsound Corporation" },
- { 44858, "Elkj\0303\0270p Nordic AS" },
- { 44859, "Mobik d.o.o." },
- { 44860, "Emanomedia GmbH" },
- { 44861, "Catoctin Systems" },
- { 44862, "IT SYSTEMS srl" },
- { 44863, "Unitow Services (1978) Ltd." },
- { 44864, "Bethel Blood and Cancer Center" },
- { 44865, "Bay Area Regional Medical Center" },
- { 44866, "Benedikt Frenzel Systems" },
- { 44867, "Etic Telecom" },
- { 44868, "Earthling Interactive" },
- { 44869, "Zen Solutions Limited" },
- { 44870, "JSC \"SKB Electronmash\"" },
- { 44871, "Universidad de Cuenca" },
- { 44872, "FiberLabs Inc." },
- { 44873, "CJSC \0302\0253INTERSET\0302\0273" },
- { 44874, "Instytut Matematyczny Polskiej Akademii Nauk" },
- { 44875, "Reykjavikurborg" },
- { 44876, "Hrvatska po\0305\0241tanska banka, dioni\0304\0215ko dru\0305\0241tvo" },
- { 44877, "IMMA Inc." },
- { 44878, "Datcent Technology Co.,Ltd. " },
- { 44879, "Cunz RaD Ltd." },
- { 44880, "Harte & Lyne Limited" },
- { 44881, "ikara" },
- { 44882, "Techno-com" },
- { 44883, "Iw1BI" },
- { 44884, "OneVision Software AG" },
- { 44885, "Baltech AG" },
- { 44886, "Gainspeed, Inc." },
- { 44887, "The Kansas City Southern Railway Company" },
- { 44888, "klolik.org" },
- { 44889, "Denver Public Library" },
- { 44890, "BKtel Photonics SAS" },
- { 44891, "Xero" },
- { 44892, "Primum Health IT S.L." },
- { 44893, "Software Diversions, Inc." },
- { 44894, "Napatech" },
- { 44895, "Bitcraze AB" },
- { 44896, "Secureloin" },
- { 44897, "Vista Oncology" },
- { 44898, "Insignis" },
- { 44899, "Code L7" },
- { 44900, "ReminderMedia" },
- { 44901, "Xiamen Sunwe Technology CO.,Ltd" },
- { 44902, "ShareTech Information Co., LTD." },
- { 44903, "Stratech Systems Limited" },
- { 44904, "Media Stream Co., LTD." },
- { 44905, "NightTrade Group, Inc." },
- { 44906, "TBDD, LTD" },
- { 44907, "nVisionIT Pty Ltd" },
- { 44908, "CARTIERE DEL GARDA" },
- { 44909, "sys-pro GmbH" },
- { 44910, "ST-Vitrinen Trautmann GmbH & Co. KG" },
- { 44911, "Alpha ENGINEERING Tunisia" },
- { 44912, "2Be-FFICIENT" },
- { 44913, "RedSocks B.V." },
- { 44914, "Genting Casinos UK" },
- { 44915, "Silex Industrial Automation Ltd." },
- { 44916, "MJog Limited" },
- { 44917, "LMpro GmbH" },
- { 44918, "Nethix S.r.l" },
- { 44919, "Avisi B.V" },
- { 44920, "Argyle Security Inc" },
- { 44921, "Exele" },
- { 44922, "Echo Technology Solutions" },
- { 44923, "Remco ICT" },
- { 44924, "AllSeen Alliance, Inc." },
- { 44925, "East Kent Hospitals University Foundation Trust" },
- { 44926, "Amdocs Network Solutions" },
- { 44927, "SyS LLC." },
- { 44928, "Caligare, s.r.o." },
- { 44929, "NetKnights GmbH" },
- { 44930, "Fisher Investments" },
- { 44931, "SyncWise Systems & Technology" },
- { 44932, "Panasonic System Communications Company of North America" },
- { 44933, "In Ardua Petit" },
- { 44934, "G-RAY" },
- { 44935, "Digital Telecommunication Systems WA PTY LTD" },
- { 44936, "Stratech iVision Pte. Ltd" },
- { 44937, "Inoventica technologies" },
- { 44938, "Charit\0303\0251 - Universit\0303\0244tsmedizin Berlin" },
- { 44939, "AVA-PETER Ltd." },
- { 44940, "Nemiroff" },
- { 44941, "GCP German Cathodic Protection GmbH & Co. KG" },
- { 44942, "Stadt Duelmen" },
- { 44943, "Inlink O\0303\0234" },
- { 44944, "Rock Flow Dynamics" },
- { 44945, "TEKTELIC Communications Inc." },
- { 44946, "Danish Railway (DSB)" },
- { 44947, "Internet Security Research Group" },
- { 44948, "Pacific Institute for the Mathematical Sciences" },
- { 44949, "NJK Aviation AG" },
- { 44950, "automation-engineering" },
- { 44951, "SSR Engineering, Inc." },
- { 44952, "AC/ BC Electrical Company" },
- { 44953, "Flat World Resource Technologies Limited." },
- { 44954, "Keweon" },
- { 44955, "Connexo Tecnologia e Comunica\0303\0247\0303\0243o EIRELI" },
- { 44956, "Savvi Inc." },
- { 44957, "Robotron Datenbank-Software GmbH" },
- { 44958, "mse GmbH" },
- { 44959, "Carl Berberich GmbH" },
- { 44960, "Craltech Electr\0303\0263nica, S.L." },
- { 44961, "Valley Medical Center, PLLC" },
- { 44962, "Foreman Instrumentation And Controls " },
- { 44963, "gueux.org" },
- { 44964, "Vivid Orange Limited" },
- { 44965, "pascher.IT" },
- { 44966, "Jingtu Printing Systems Co., Ltd" },
- { 44967, "Beijing Heweinet Technology Co.,Ltd (\0345\0214\0227\0344\0272\0254\0345\0222\0214\0347\0273\0264\0347\0275\0221\0351\0200\0232\0347\0247\0221\0346\0212\0200\0346\0234\0211\0351\0231\0220\0345\0205\0254\0345\0217\0270)" },
- { 44968, "May China" },
- { 44969, "CLINICA DE CANCER Y ENFERMEDADES DE LA SANGRE, CSP" },
- { 44970, "Thread Group, Inc." },
- { 44971, "Compen Embedded Software" },
- { 44972, "Alameda Hospital" },
- { 44973, "Kantar Media France SAS" },
- { 44974, "Sonos, Inc." },
- { 44975, "FlexCoders Ltd" },
- { 44976, "Onegini B.V." },
- { 44977, "Reduxio Systems" },
- { 44978, "Istria, soluciones de criptograf\0303\0255a, S. A." },
- { 44979, "Tsmart Inc." },
- { 44980, "MEDiA LiNK Co.,Ltd." },
- { 44981, "LLC \"PromIT\"" },
- { 44982, "INNEXIV, INC." },
- { 44983, "ARTIS GmbH" },
- { 44984, "EPAM Systems" },
- { 44985, "Tecnologias Corporativas SC" },
- { 44986, "Taglio LLC" },
- { 44987, "Temple University" },
- { 44988, "Nxtera Ltd" },
- { 44989, "Multi Parts Supply USA, Inc." },
- { 44990, "TONGFANG INDUSTRIAL CO.,LTD" },
- { 44991, "Ameriprise Financial" },
- { 44992, "Amscreen Group Limited" },
- { 44993, "BCP Co." },
- { 44994, "Umbrellium Ltd." },
- { 44995, "Regional Cancer Care Associates, Little Silver Division" },
- { 44996, "JMP Group Inc." },
- { 44997, "Emery Telcom" },
- { 44998, "Sichuan Zero Gravity Technology CO.LTD" },
- { 44999, "Ltd GoldLans" },
- { 45000, "Symbicon Ltd" },
- { 45001, "Northern Virginia Hematology Oncology Associates" },
- { 45002, "CompuGroup Medical Polska sp. z o.o." },
- { 45003, "Egag, LLC" },
- { 45004, "SMARTRAC N.V. " },
- { 45005, "Advanced Alloy Processing" },
- { 45006, "Wuestenrot poistovna, a.s. " },
- { 45007, "Trial Software Laboratories, Inc." },
- { 45008, "Things.Expert LLC" },
- { 45009, "Thomas Hassall Anglican College" },
- { 45010, "Youhua" },
- { 45011, "Ming Dynasty AvantLexa Firm" },
- { 45012, "Miraeson" },
- { 45013, "Beijing Gehua CATV Network Co.,Ltd." },
- { 45014, "Andra sp. z o. o." },
- { 45015, "foo.sh" },
- { 45016, "Kouba & Partner" },
- { 45017, "I3 Com\0303\0251rcio de Computadores Ltda Epp" },
- { 45018, "QualiStream" },
- { 45019, "Infinite AI, Inc." },
- { 45020, "Bitnasium Co., Ltd." },
- { 45021, "Health Plan Partners LLC" },
- { 45022, "digivod gmbh" },
- { 45023, "Chair Four Development Group LLC" },
- { 45024, "BTS Software Solutions, LLC" },
- { 45025, "Fujitsu Hokuriku Systems Limited" },
- { 45026, "Mynavi Corporation" },
- { 45027, "The Center For Mental Health" },
- { 45028, "Debugo" },
- { 45029, "Fengyz Technology CO.,Ltd." },
- { 45030, "Lagopus switch project" },
- { 45031, "Engineering Centre Energoservice LLC" },
- { 45032, "JustNow" },
- { 45033, "synyx GmbH & Co. KG" },
- { 45034, "Millimetrica s.r.l." },
- { 45035, "TelSIP Communication" },
- { 45036, "NIC Hosting" },
- { 45037, "Hauke Bartsch" },
- { 45038, "Enman" },
- { 45039, "Central Bank of the Republic of Azerbaijan" },
- { 45040, "BBH Media" },
- { 45041, "Vieira Filho Tecnologia Eletronica" },
- { 45042, "Officeworks Ltd" },
- { 45043, "Argus Hosting, LLC" },
- { 45044, "TangoRythm" },
- { 45045, "DELNET" },
- { 45046, "lpk" },
- { 45047, "Crypto Software Chryselius" },
- { 45048, "MARIA - DEBORA" },
- { 45049, "Gudok LLC" },
- { 45050, "Bj\0303\0270rn Ludvig Langaas Johansen" },
- { 45051, "Finalsite" },
- { 45052, "SequoiaDB Ltd." },
- { 45053, "Information and Telecom Systems India Pvt. Ltd." },
- { 45054, "Tony Ditchfield" },
- { 45055, "ISAE" },
- { 45056, "Kassen\0303\0244rztliche Vereinigung Schleswig-Holstein" },
- { 45057, "COPALP" },
- { 45058, "CCP Games" },
- { 45059, "Bauduin Rapha\0303\0253l" },
- { 45060, "Otis R Bowen Center for Human Services, Inc" },
- { 45061, "Gymnasium Geretsried" },
- { 45062, "Southern Cancer Center" },
- { 45063, "SEAtech Technology Inc" },
- { 45064, "China Mobile Hong Kong Company Limited" },
- { 45065, "Insyde" },
- { 45066, "SIP Cantabria S.L." },
- { 45067, "Dude Solutions Inc." },
- { 45068, "PROTECH SYSTEMS PRIVATE LIMITED" },
- { 45069, "TOMinf Tomasz Tomaszewski" },
- { 45070, "Reservoir Labs, Inc." },
- { 45071, "tetraguard systems GmbH" },
- { 45072, "Catalyst Paper" },
- { 45073, "Pacific Seafood Group" },
- { 45074, "TTSSB corp " },
- { 45075, "Electron Jungle, LLC" },
- { 45076, "HamLogin.com" },
- { 45077, "Sestek Ses ve Iletisim Bilgisayar Teknolojileri San. ve Tic. A.S." },
- { 45078, "QoS Solutions" },
- { 45079, "i2p informatikai kft." },
- { 45080, "Kerio Technologies, Inc." },
- { 45081, "Increase Qingdao Information Technology Co., Ltd." },
- { 45082, "PT. Tekno Inovasi Asia" },
- { 45083, "Intility AS" },
- { 45084, "Arbeitsgemeinschaft Dresdner Studentennetz" },
- { 45085, "Bibliotheca Alexandrina" },
- { 45086, "Advanced Imaging Technologies (Pty) Ltd" },
- { 45087, "Institut Catala de Finances" },
- { 45088, "Volkswagen M\0303\0270ller Bilfinans AS" },
- { 45089, "ICANN" },
- { 45090, "Mushroom Networks, Inc." },
- { 45091, "Cisco Sera" },
- { 45092, "Silectica" },
- { 45093, "SUMOMO Computer Association" },
- { 45094, "UAB \"VAATC\"" },
- { 45095, "INAF - Osservatorio Astrofisico di Arcetri" },
- { 45096, "INTERNATIONAL MEDICAL SOLUTIONS INC." },
- { 45097, "Graphite Systems, Inc." },
- { 45098, "Ex Cathedra Solutions Ltd." },
- { 45099, "Pentaho Corporation" },
- { 45100, "Cloud Vision Networks Technology Co.,Ltd. (cvn)" },
- { 45101, "Yew Tree Services, Inc." },
- { 45102, "Yawns.com Limited" },
- { 45103, "Satel Spain, S.L." },
- { 45104, "infoworxx GmbH" },
- { 45105, "Samsung Poland R&D Center" },
- { 45106, "Subsentio" },
- { 45107, "IntegraOptics Inc" },
- { 45108, "Jetmobile" },
- { 45109, "Chaos Labs OOD" },
- { 45110, "IzumoBASE, Inc." },
- { 45111, "Elbrus-RW" },
- { 45112, "Christian Wilhelmi" },
- { 45113, "OPTIMANS" },
- { 45114, "PALS Elektronik" },
- { 45115, "Ajenti Solutions" },
- { 45116, "LoJack Corp." },
- { 45117, "University of North Carolina at Charlotte" },
- { 45118, "ehaaihee" },
- { 45119, "SBONGILE PROJECT" },
- { 45120, "iba AG" },
- { 45121, "Hangzhou Guangwei Technology Co., Ltd" },
- { 45122, "M & T Bank Corporation" },
- { 45123, "Suzhou Industrial Park Kejia Automation Co., Ltd" },
- { 45124, "De Haan" },
- { 45125, "Netcom Europa S.L." },
- { 45126, "Sarada Gummadi MD PA" },
- { 45127, "ProfitBricks GmbH" },
- { 45128, "Infotrage Limited" },
- { 45129, "BID Initiative Tanzania - PATH" },
- { 45130, "r3k" },
- { 45131, "Onelogin, Inc." },
- { 45132, "ADD-Engineering BV" },
- { 45133, "Kristian S\0303\0266derholm" },
- { 45134, "XCore Company Limited" },
- { 45135, "AQUASOFT spol. s r.o." },
- { 45136, "e-Cop Pte Ltd." },
- { 45137, "Nanoha Project" },
- { 45138, "Huwomobility Inc." },
- { 45139, "Maruganzer" },
- { 45140, "Green Vict Technology Co., Ltd" },
- { 45141, "Onomichi ikakikai Co., Ltd." },
- { 45142, "Corporate West Computer Systems, Inc." },
- { 45143, "Datawise Systems, Inc." },
- { 45144, "American Airlines Federal Credit Union" },
- { 45145, "Hivemind Engineering" },
- { 45146, "Primestone Network" },
- { 45147, "Datu Health" },
- { 45148, "Universit\0303\0244t Koblenz-Landau" },
- { 45149, "NoisyPeak" },
- { 45150, "WAGNER AG" },
- { 45151, "MEISLAB" },
- { 45152, "Parchment Inc." },
- { 45153, "Drillinginfo" },
- { 45154, "ELES, d.o.o., sistemski operater prenosnega elektroenergetskega omrezja " },
- { 45155, "Democratic Alliance" },
- { 45156, "The IcedTea project (HeapStats)" },
- { 45157, "Medgate AG" },
- { 45158, "Infracom S.p.A." },
- { 45159, "Heinz Nixdorf MuseumsForum GmbH" },
- { 45160, "Jabatan Ketua Menteri Melaka" },
- { 45161, "YouCo Srl" },
- { 45162, "GUANG DONG SMART ELECTRIC INFORMATION INDUSTRY CO.,LTD." },
- { 45163, "Hafen-Entwicklungsgesellschaft Rostock mbH" },
- { 45164, "Brulli Energia" },
- { 45165, "IT Services, Loughborough University" },
- { 45166, "Itaipu Binacional" },
- { 45167, "Redgates.com" },
- { 45168, "krumedia GmbH" },
- { 45169, "Tahoe Forest Health System" },
- { 45170, "The Baupost Group, L.L.C." },
- { 45171, "Gareth Morgan Investments" },
- { 45172, "Stronghold, Ltd." },
- { 45173, "The Furukawa Battery Co.,Ltd" },
- { 45174, "Eyecom Telecommunication Equipments Ltd" },
- { 45175, "NGI SpA" },
- { 45176, "Mirantis Inc" },
- { 45177, "Sapientier Development" },
- { 45178, "Direktion der Justiz und des Innern des Kantons Zuerich" },
- { 45179, "Jablotron Alarms a.s." },
- { 45180, "Rolls-Royce Marine" },
- { 45181, "AVSystem" },
- { 45182, "bkaiser GmbH" },
- { 45183, "Access Control Services Ltd" },
- { 45184, "Patrick Kalkman" },
- { 45185, "SCA Skog AB" },
- { 45186, "frazz.se" },
- { 45187, "Amber Technical Solutions Ltd" },
- { 45188, "Vzajemna, d.v.z." },
- { 45189, "Genplus Pte Ltd" },
- { 45190, "Peaxy, Inc." },
- { 45191, "Simple Finance Technology Corp" },
- { 45192, "Lonmin" },
- { 45193, "TeraStream" },
- { 45194, "Oryx Embedded" },
- { 45195, "Beijing 35one Technology Development Co., Ltd" },
- { 45196, "Of Modems and Men" },
- { 45197, "C.S.C.D.G.R" },
- { 45198, "Weichert Lead Network, Inc" },
- { 45199, "Lite-On Power System Solutions" },
- { 45200, "Reserve Bank Of Australia" },
- { 45201, "BBright" },
- { 45202, "Fachhochschule Potsdam" },
- { 45203, "Synergy Consulting Ltd." },
- { 45204, "Four Horsemen" },
- { 45205, "Richard Frostell" },
- { 45206, "Quintron Systems, Inc" },
- { 45207, "healcerion" },
- { 45208, "GSS International Group" },
- { 45209, "Altostratus Oy" },
- { 45210, "DigiSeq Limited" },
- { 45211, "Data Control Ltd" },
- { 45212, "Vecture Inc." },
- { 45213, "Municipal Parking Services, Inc." },
- { 45214, "Community Campaign (Hart)" },
- { 45215, "Matchpoint Systems, Inc." },
- { 45216, "Cyprus Telecommunications Authority (CYTA)" },
- { 45217, "Large Display Solutions International ltd." },
- { 45218, "Mesosphere" },
- { 45219, "Telecomax" },
- { 45220, "eGO Travel & Leisure AG" },
- { 45221, "AMP" },
- { 45222, "XpoLog Ltd." },
- { 45223, "FASII Information Technology" },
- { 45224, "Wireless Sensors LLC" },
- { 45225, "Guangzhou Netzone Inc." },
- { 45226, "Allicient" },
- { 45227, "Okinawa Institute of Science and Technology Graduate University" },
- { 45228, "Lumagate AB" },
- { 45229, "nyantec UG (haftungsbeschr\0303\0244nkt)" },
- { 45230, "RCD Radiokomunikace spol. s r. o." },
- { 45231, "Liverock Technologies" },
- { 45232, "Hellenic Ministry of Foreign Affairs" },
- { 45233, "Guangzhou Tongrui Electronic Electronic Technology Co.,Ltd" },
- { 45234, "Pennsylvania State Education Association" },
- { 45235, "ConfirmSign S.L." },
- { 45236, "Ferz corp." },
- { 45237, "Context Relevant" },
- { 45238, "City of Oregon City" },
- { 45239, "RosReserv" },
- { 45240, "International Capital & Management Company" },
- { 45241, "fuzzcat.net" },
- { 45242, "INGEBI" },
- { 45243, "La Boulgour Compagnie" },
- { 45244, "IJM Systems" },
- { 45245, "SAS CALVI C\0303\0251lestin" },
- { 45246, "EcoCooling Ltd" },
- { 45247, "Triple Domain Vision Co., Ltd." },
- { 45248, "NetOcean" },
- { 45249, "Banco Macro S.A." },
- { 45250, "Habr LLC" },
- { 45251, "axelIT \0303\0234zletfejleszt\0303\0251si Kft. " },
- { 45252, "mDAKS GmbH" },
- { 45253, "RMB Capital Management, LLC" },
- { 45254, "Shouei Denshi Kenkyuusho Co.,Ltd." },
- { 45255, "Dallas Delta Corp" },
- { 45256, "Foreks Bilgi Iletisim Hiz. A.S." },
- { 45257, "InterConnectData" },
- { 45258, "Lazaros Economou" },
- { 45259, "Billo Systems Ltd. Co." },
- { 45260, "FYLDE MICRO LTD" },
- { 45261, "inAere Holdings" },
- { 45262, "Raven" },
- { 45263, "VTAS GmbH & Co. KG" },
- { 45264, "Schaeffler Technologies AG & Co. KG" },
- { 45265, "GMAURER" },
- { 45266, "bootix Technology GmbH" },
- { 45267, "ISSENDIS" },
- { 45268, "RusHydro" },
- { 45269, "Rivasense Technologies Ltd" },
- { 45270, "Electronic Certification Services SL" },
- { 45271, "Beco" },
- { 45272, "Szallas.hu Ltd." },
- { 45273, "independIT Integrative Technologies GmbH" },
- { 45274, "EyaSys" },
- { 45275, "Energy Essentials Group B.V." },
- { 45276, "iTEAM (Instituto de Telecomunicaciones y Aplicaciones Multimedia, Grupo COMM)" },
- { 45277, "Five Monkeys Code Factory" },
- { 45278, "OpenCloud SL" },
- { 45279, "Strategy Object" },
- { 45280, "Premise Health" },
- { 45281, "Generac Power Systems Inc." },
- { 45282, "LinkUp Networks" },
- { 45283, "T-Systems International GmbH" },
- { 45284, "ax86.net" },
- { 45285, "Salience Systems Pty Ltd" },
- { 45286, "Morning Project Samurai" },
- { 45287, "GEOPRAEVENT AG" },
- { 45288, "Compania Logistica de Hidrocarburos CLH, S.A." },
- { 45289, "unixadm.org" },
- { 45290, "Agentia pentru Agenda Digitala a Romaniei" },
- { 45291, "DOCTORS CENTER HEMATOLOGY & ONCOLOGY GROUP, PSC" },
- { 45292, "DOCTORS' CENTER HEMATOLOGY & ONCOLOGY GROUP BAYAMON, PSC" },
- { 45293, "Transport Network llc" },
- { 45294, "ANEAC Co., Ltd." },
- { 45295, "BTT Bilgi Teknoloji Tasarim Ltd" },
- { 45296, "Mazars" },
- { 45297, "T-21 Technologies, LLC" },
- { 45298, "Alea s.r.l." },
- { 45299, "AMRTEC TECNOLOGIA IMPORTA\0303\0207\0303\0202O E EXPORTA\0303\0207\0303\0202O LTDA" },
- { 45300, "WatchDox LTD" },
- { 45301, "Double B - Business, s.r.o." },
- { 45302, "SOIN Soluciones Integrales S.A," },
- { 45303, "Industrial Software Co" },
- { 45304, "ByteLogix" },
- { 45305, "Asyne inc." },
- { 45306, "DE-CIX Management GmbH" },
- { 45307, "Tracsis plc" },
- { 45308, "Born Inventors BV" },
- { 45309, "Needham Public Schools" },
- { 45310, "Universidade Estadual de Santa Cruz" },
- { 45311, "GHT Co., Ltd" },
- { 45312, "Instituto para os Assuntos C\0303\0255vicos e Municipais Macau" },
- { 45313, "iiPAY Ltd" },
- { 45314, "CCV Deutschland GmbH" },
- { 45315, "KRKA, tovarna zdravil, d. d., Novo mesto" },
- { 45316, "devlab" },
- { 45317, "SAU" },
- { 45318, "Rosa Khutor LLC" },
- { 45319, "NGENIX" },
- { 45320, "ActiStuff" },
- { 45321, "Triumph Bancorp, Inc." },
- { 45322, "GigaEnergy Inc." },
- { 45323, "BIORETICS SRL" },
- { 45324, "Business Solutions Adviser" },
- { 45325, "roo.ch" },
- { 45326, "Yves Durce ent." },
- { 45327, "NATAJA Maciej Kozuch" },
- { 45328, "KOSHIN DENKI KOGYO CO., LTD." },
- { 45329, "Kristin School" },
- { 45330, "Fineline Solutions Ltd." },
- { 45331, "San Fernando Valley Community Mental Health Center, Inc." },
- { 45332, "East Side Oncology Clinic PLLC" },
- { 45333, "NeatApps, Inc." },
- { 45334, "Nextys" },
- { 45335, "Matthias Bl\0303\0274mel IT-Dienstleistungen" },
- { 45336, "Microbase" },
- { 45337, "voria.net" },
- { 45338, "Tableau Software, Inc." },
- { 45339, "JSC \"Housing Construction Savings Bank of Kazakhstan\"" },
- { 45340, "Half-Baked Software" },
- { 45341, "NEXT Srl" },
- { 45342, "IWD Ltd." },
- { 45343, "Thum+Mahr GmbH" },
- { 45344, "ZhenJiang College" },
- { 45345, "Smithee, Spelvin, Agnew & Plinge, Inc." },
- { 45346, "Velocloud Networks, Inc." },
- { 45347, "The Centers for Families and Children" },
- { 45348, "Megvii Inc." },
- { 45349, "VGNet Networking" },
- { 45350, "jorde.it" },
- { 45351, "XPSoft sas" },
- { 45352, "AMERGINT Technologies Inc." },
- { 45353, "BRS Sistemas Eletr\0303\0264nicos" },
- { 45354, "E2G srl" },
- { 45355, "Staffordshire Police" },
- { 45356, "Liveblock Auctions International" },
- { 45357, "CUBENet GmbH" },
- { 45358, "Integral Business Solutions" },
- { 45359, "ARC Informatique" },
- { 45360, "Valley Christian School" },
- { 45361, "OC Software Engineering" },
- { 45362, "Coca-Cola Erfrischungsgetraenke AG" },
- { 45363, "Advanced Training LLC" },
- { 45364, "TRIADE InformationSystems GmbH" },
- { 45365, "Om Vindhyavasini College of IT & Management" },
- { 45366, "Cohere Technologies" },
- { 45367, "SilverTip Marine Inc." },
- { 45368, "Amida Technology Solutions" },
- { 45369, "MVZ Labor Dr. Quade und Kollegen" },
- { 45370, "ID TECH" },
- { 45371, "AV" },
- { 45372, "Professional Software Design Pty Ltd" },
- { 45373, "Speech Technology Center Limited" },
- { 45374, "i-SOLUTIONS HEALTH GmbH" },
- { 45375, "Znuny GmbH" },
- { 45376, "PT. Mahardika Putra Mahkota" },
- { 45377, "Air Liquide IT" },
- { 45378, "Beijing Uxsino software CO.,Ltd" },
- { 45379, "iCRCo, Inc" },
- { 45380, "Happy Crow Enterprises, LLC" },
- { 45381, "iCode Global, LLC" },
- { 45382, "Huf Secure Mobile" },
- { 45383, "SHARP Corporation Communication Systems Division" },
- { 45384, "SERgroup Holding Europe GmbH" },
- { 45385, "4GTSS Corporation W.L.L." },
- { 45386, "PeopleLogic Corporation" },
- { 45387, "NCC Group PLC." },
- { 45388, "SSV Software Systems GmbH" },
- { 45389, "LV=" },
- { 45390, "Alef Mobitech Inc." },
- { 45391, "PLC Group" },
- { 45392, "Quadro Group LLC" },
- { 45393, "OSM GmbH" },
- { 45394, "Mangstor Inc" },
- { 45395, "Secr\0303\0251tariat g\0303\0251n\0303\0251ral de l'enseignement catholique" },
- { 45396, "Dejero Labs. Inc" },
- { 45397, "ASFINAG Maut Service GmbH" },
- { 45398, "Segmint, Inc." },
- { 45399, "Omemee Engineering Group" },
- { 45400, "Candid Security Solutions LLC" },
- { 45401, "Unitron NV" },
- { 45402, "Arvet Bank Operations, INC." },
- { 45403, "ExchangeCore LLC" },
- { 45404, "TightVideo Ltd." },
- { 45405, "Lee County School System" },
- { 45406, sminmpec_unknown }, /* (Added by Wireshark) */
- { 45407, "Northwest Kits" },
- { 45408, "Octavian Technology Ltd" },
- { 45409, "OneSoft Tecnologia S/A" },
- { 45410, "ISAMBERT" },
- { 45411, "Ultra Electronics - Varisys" },
- { 45412, "HGH SYSTEMES INFRAROUGES" },
- { 45413, "Global IQX" },
- { 45414, "SHUYSKIY ZAVOD AKVARIUS LLC" },
- { 45415, "Repheka Haiti, Inc." },
- { 45416, "Chengdu Chengxun Network Technologies Co., Ltd." },
- { 45417, "HCO Computer Products /dba ZGO Tech Hosting" },
- { 45418, "ABAST systems" },
- { 45419, "PhirePhly Design" },
- { 45420, "Strike XII Development" },
- { 45421, "Nico Boehr" },
- { 45422, "powerbrand marketing GmbH" },
- { 45423, "Match.com L.L.C." },
- { 45424, "The Ghosh Center for Oncology & Hematology" },
- { 45425, "Kadlec Health System" },
- { 45426, "Soltec Technology Co., Ltd." },
- { 45427, "Xiamen Winer Technology Co.,Ltd" },
- { 45428, "UrtheCast" },
- { 45429, "Instituto Federal Catarinense Campus Sombrio" },
- { 45430, "Atlas Copco Rock Drills AB (Business Area MR)" },
- { 45431, "Nanjing Lopu Co., Ltd." },
- { 45432, "Cirrato Technologies AB" },
- { 45433, "Finivation Software" },
- { 45434, "Accel Frontline Ltd" },
- { 45435, "Cyprus University of Technology" },
- { 45436, "THALES Services Lab DT" },
- { 45437, "TEOCO Corporation" },
- { 45438, "AI2M srl" },
- { 45439, "Esterline Belgium bvba" },
- { 45440, "BISS d.o.o." },
- { 45441, "Safe Internet, LLC" },
- { 45442, "Wroc\0305\0202aw University of Technology" },
- { 45443, "Arca Sistemi Scarl" },
- { 45444, "ecg.local" },
- { 45445, "Kuantic SAS" },
- { 45446, "Ministerio Publico de la Acusaci\0303\0263n " },
- { 45447, "SOCIETE DU FIGARO" },
- { 45448, "UF Health Oncology - Baymeadows" },
- { 45449, "Blue Krait Consulting Inc." },
- { 45450, "Parsec (Pty) Ltd" },
- { 45451, "reBTSOFT" },
- { 45452, "Instituto Medico Alexander Fleming" },
- { 45453, "Banff Cyber Technologies Pte Ltd" },
- { 45454, "Shanghai Digigrid Technology Co.,Ltd" },
- { 45455, "John Wason" },
- { 45456, "Galaxia Electronics Co., Ltd." },
- { 45457, "Kanton Thurgau" },
- { 45458, "VKBit Betrieb GmbH" },
- { 45459, "Lonix Oy" },
- { 45460, "Comfact AB" },
- { 45461, "Pocos bv" },
- { 45462, "Delvag Luftfahrtversicherungs-AG" },
- { 45463, "Federal Public Service Justice, Belgium" },
- { 45464, "Verband Christlicher Pfadfinderinnen und Pfadfinder in W\0303\0274rttemberg " },
- { 45465, "Clear2Pay NV/SA" },
- { 45466, "PIXEL Sp. z o.o." },
- { 45467, "Vidat" },
- { 45468, "Avi Networks" },
- { 45469, "IQ Messenger" },
- { 45470, "Azienda Ospedaliero-Universitaria di Bologna" },
- { 45471, "Triangle Wholefoods Collective Ltd." },
- { 45472, "Ebee Smart Technologies GmbH" },
- { 45473, "Excelfore Corporation" },
- { 45474, "HfMT Hamburg" },
- { 45475, "MEYTEC GmbH" },
- { 45476, "StreamVue Ltd" },
- { 45477, "ZOO Digital Group plc." },
- { 45478, "DIVA IT SIA" },
- { 45479, "PXP Solutions Ltd" },
- { 45480, "Packetwerk GmbH" },
- { 45481, "Galore Networks Private Limited" },
- { 45482, "St Jude Medical" },
- { 45483, "FusionLayer, Inc." },
- { 45484, "Siama Systems Inc." },
- { 45485, "SCUBI" },
- { 45486, "ACSS Communications Pty Ltd" },
- { 45487, "Polydata Corporate" },
- { 45488, "KONAR" },
- { 45489, "groupe-alpha" },
- { 45490, "Nexperteam" },
- { 45491, "Gainde 2000" },
- { 45492, "Connexin Software, Inc." },
- { 45493, "Media System Technologies Srl" },
- { 45494, "GISTEC" },
- { 45495, "Konneka Information Technologies (formerly 'Konneka Bilgi ve Iletisim Teknolojileri Imalat Tic. Ltd. Sti.')" },
- { 45496, "Groupe ESB" },
- { 45497, "Qucell" },
- { 45498, "Novella-R SIA" },
- { 45499, "Janos" },
- { 45500, "Virgin Technologies Inc" },
- { 45501, "Micro Instruments" },
- { 45502, "nterra integration GmbH" },
- { 45503, "42 Solutions B.V." },
- { 45504, "Synaptive Medical Inc." },
- { 45505, "Tox Foundation" },
- { 45506, "Mida Solutions s.r.l." },
- { 45507, "iMapData.com" },
- { 45508, "Strich Labs" },
- { 45509, "YourMembership" },
- { 45510, "BBMRI-ERIC" },
- { 45511, "Cogent Technologies Limited" },
- { 45512, "Entergate AB" },
- { 45513, "Hekatron Technik GmbH" },
- { 45514, "ShenZhen SNMP Link Electronics Co., Ltd." },
- { 45515, "Econocom-osiatis" },
- { 45516, "Valid Soluciones Tecn\0303\0263gicas S.A.U." },
- { 45517, "GarantPlus Ltd" },
- { 45518, "Macnica Inc." },
- { 45519, "Diamedica Sp. z o.o." },
- { 45520, "Actility" },
- { 45521, "OPENBASE" },
- { 45522, "xipki.org" },
- { 45523, "RFE Broadcast srl" },
- { 45524, "Advancapp" },
- { 45525, "Ubiqam LTD" },
- { 45526, "Snapper Services" },
- { 45527, "Diehl AKO Stiftung & Co. KG" },
- { 45528, "Joerg-Peter Hempel" },
- { 45529, "vishmail.net" },
- { 45530, "Medien Service Untermain GmbH" },
- { 45531, "M.A.D.A." },
- { 45532, "Infinicore inc" },
- { 45533, "Red Arrow (Southampton) Group Limited" },
- { 45534, "WestNet" },
- { 45535, "Information Systems Dynamics" },
- { 45536, "Rheinmetall Defence Electronics GmbH" },
- { 45537, "NUAZ" },
- { 45538, "PHARMAGEST INTERACTIVE" },
- { 45539, "Domain fritze.org" },
- { 45540, "Rueval S.A." },
- { 45541, "Schneider Elektronik GmbH" },
- { 45542, "Orlando Utilities Commission" },
- { 45543, "Mekansal Yazilim" },
- { 45544, "IT Kimmig" },
- { 45545, "Ormazabal" },
- { 45546, "SECUWAVE CO,. LT" },
- { 45547, "Wirtgen (China) Machinery Co., Ltd." },
- { 45548, "Asian Hope Inc" },
- { 45549, "Shenzhen Zontele Technologies Co., Ltd" },
- { 45550, "Webstudio Information Technology Inc." },
- { 45551, "VIPP" },
- { 45552, "Unisys " },
- { 45553, "GE Healthcare - Engineering" },
- { 45554, "Grupo JAMPIG S.A.S." },
- { 45555, "RDP" },
- { 45556, "Triadic Industries, LLC" },
- { 45557, "SHENZHEN CAN TECHNOLOGY CO.,LTD" },
- { 45558, "CJSC GROUP OF COMPANIES RENOVA" },
- { 45559, "Prevoty, Inc." },
- { 45560, "Inovapar Solu\0303\0247\0303\0265es LTDA." },
- { 45561, "Masterclock, Inc." },
- { 45562, "Capella Aerospace Systems Engineering Inc." },
- { 45563, "SOMNOmedics GmbH" },
- { 45564, "Beijing SplendidTel Co.,Ltd." },
- { 45565, "INTERBYSS S.R.L" },
- { 45566, "INTELMA CONSULTING Inc." },
- { 45567, "Ticom Geomatics, Inc." },
- { 45568, "GoCardless Ltd" },
- { 45569, "Core Network Dynamics" },
- { 45570, "IQ Tel d.o.o." },
- { 45571, "Midfin Systems" },
- { 45572, "awelten" },
- { 45573, "Western Michigan University Homer Stryker M.D. School of Medicine" },
- { 45574, "Hellea SPRL" },
- { 45575, "China Beijing Stegosaurus Technology Laboratory" },
- { 45576, "Hulu LLC" },
- { 45577, "Shenzhen Sundray Technologies Company Limited" },
- { 45578, "BroadQuest" },
- { 45579, "Guangdong Nenkingtech Development Co,Ltd." },
- { 45580, "DENTCAT" },
- { 45581, "YICHUN YILIAN PRINT TECH CO.,LTD" },
- { 45582, "paysafecard.com Wertkarten GmbH" },
- { 45583, "Puminsoft Co.,Ltd." },
- { 45584, "OJSC \"RIRT\"" },
- { 45585, "Space Imaging Middle East (SIME)" },
- { 45586, "Mythic Network" },
- { 45587, "Software & Service Center,Sichuan Changhong Electric Co.,Ltd" },
- { 45588, "OLSPS" },
- { 45589, "Doc-Soft Ltd." },
- { 45590, "Mutesah General Investments ltd" },
- { 45591, "Shenzhen Sungreat Communication Co.,LTD" },
- { 45592, "Julius Clinical" },
- { 45593, "OpenREM" },
- { 45594, "Universit\0303\0240 Iuav di Venezia" },
- { 45595, "Reaktor 23" },
- { 45596, "ICloud Innovation (Beijing) ltd." },
- { 45597, "TESA Assa Abloy" },
- { 45598, "Mckinney Independent School District" },
- { 45599, "Network RADIUS SARL" },
- { 45600, "OX Service AG" },
- { 45601, "Wikimedia Deutschland e.V." },
- { 45602, "Corvus Energy" },
- { 45603, "Rieker, Inc." },
- { 45604, "BeiJing SmartWell Info&Tech Co.,Ltd." },
- { 45605, "Wi-SUN Alliance, Inc" },
- { 45606, "Carillon Federal Services Inc." },
- { 45607, "Sysco Foods" },
- { 45608, "Atlan dynamic group" },
- { 45609, "Centralschweizerische Kraftwerke AG" },
- { 45610, "EAM GmbH & Co. KG" },
- { 45611, "EOSPACE Inc." },
- { 45612, "Under Armour Connected Fitness" },
- { 45613, "Universiti Malaysia Terengganu" },
- { 45614, "RegEd Inc." },
- { 45615, "CityNet" },
- { 45616, "Healthcare Information and Management System Society (HIMSS) " },
- { 45617, "The Institute of Computational Technologies of the Siberian Branch of the Russian Academy of Sciences" },
- { 45618, "Ferdinand Malcher" },
- { 45619, "Oei Family Office" },
- { 45620, "Steampunk Island Inc" },
- { 45621, "Tycon Systems Inc." },
- { 45622, "Netrix LLC." },
- { 45623, "Hughey & Phillips, LLC" },
- { 45624, "Brain Sense" },
- { 45625, "hahnefeld.net" },
- { 45626, "Sapientia Systems" },
- { 45627, "X NET" },
- { 45628, "HANFORD (DOE)" },
- { 45629, "Ritron" },
- { 45630, "Regional Medical Oncology Center" },
- { 45631, "Perimind Corporation" },
- { 45632, "br0.fr" },
- { 45633, "The Hershey Company" },
- { 45634, "XeeMetric Inc." },
- { 45635, "Cornerstone Health Enablement Strategic Solutions, LLC" },
- { 45636, "Robit SAS" },
- { 45637, "Dicks Garage" },
- { 45638, "AVOLITES LTD" },
- { 45639, "Chen-Hung Chen" },
- { 45640, "Fujitsu Taiwan Ltd." },
- { 45641, "SOARNEX Technology Corporation" },
- { 45642, "SITRINICS CAMS, JSC" },
- { 45643, "MARETON d.o.o." },
- { 45644, "Tom Maher" },
- { 45645, "thinkCSC, Inc" },
- { 45646, "UK Shared Business Services Ltd" },
- { 45647, "Grant Thornton UK LLP" },
- { 45648, "Bridgeway Software, Inc." },
- { 45649, "Sousou Industries" },
- { 45650, "Fibersystem AB" },
- { 45651, "Layer3 TV, Inc." },
- { 45652, "New Jersey State Government (Office of Information Technology)" },
- { 45653, "Compression Services" },
- { 45654, "LogicVein, Inc." },
- { 45655, "CHUNG-HSIN ELECTRIC & MACHINERY MFG. CORP." },
- { 45656, "Vector-V, Law Firm" },
- { 45657, "Syncbak" },
- { 45658, "P3 GmbH & Co KG" },
- { 45659, "LPO OUI Dev Teams" },
- { 45660, "Pentandra Research Solutions, Inc." },
- { 45661, "Instec Inc." },
- { 45662, "Intelligence Ambiante" },
- { 45663, "Hochschule Merseburg" },
- { 45664, "Guangzhou Hugen Electronic Technology Co .Ltd" },
- { 45665, "Biroteh Ltd" },
- { 45666, "Ebiid Product and Solutions, S.L." },
- { 45667, "Single Digits" },
- { 45668, "Midwest Microwave Solutions Inc." },
- { 45669, "CBR Systems Limited" },
- { 45670, "tcc construction " },
- { 45671, "Nick Sverdel" },
- { 45672, "HARVL" },
- { 45673, "Smith & Nephew" },
- { 45674, "Redbird Advanced Learning, LLC" },
- { 45675, "Evolve IP, LLC" },
- { 45676, "OCHIN" },
- { 45677, "Parashift" },
- { 45678, "Department of Primary Industries and Mines" },
- { 45679, "AGR Abfallentsorgungs-Gesellschaft Ruhrgebiet mbH" },
- { 45680, "ORISOFT" },
- { 45681, "Polska Spolka Gazownictwa sp. z o.o." },
- { 45682, "Michigan Education Special Services Association" },
- { 45683, "Flexpay AB (Benify)" },
- { 45684, "Ingenieurb\0303\0274ro D\0303\0274bon" },
- { 45685, "AllCreator Co., Ltd." },
- { 45686, "Ratel Technologies" },
- { 45687, "oneM2M" },
- { 45688, "Limone Fresco Limited" },
- { 45689, "Evolveum" },
- { 45690, "bitbone AG" },
- { 45691, "Javacraft LLC" },
- { 45692, "Dantherm Power A/S" },
- { 45693, "arvato Systems S4M GmbH" },
- { 45694, "Comvergence Pty Ltd" },
- { 45695, "CHAPS spol. s r.o." },
- { 45696, "Mitchel Berberich Software GmbH" },
- { 45697, "Computer Sciences Corporation" },
- { 45698, "E-KENT Teknoloji ve Odeme Sistemleri San. ve Tic A.S" },
- { 45699, "JazzHR (formerly 'Hireku, Inc.')" },
- { 45700, "Transylvania University" },
- { 45701, "IntegraCore, LLC" },
- { 45702, "China Transinfo Technology" },
- { 45703, "Gemeindewerke Ga.-Pa." },
- { 45704, "Landstinget i Kalmar L\0303\0244n" },
- { 45705, "FINT AB" },
- { 45706, "Bluer Medical Technology" },
- { 45707, "ITCEG S.A.S" },
- { 45708, "Lively Arts Productions LLC" },
- { 45709, "Seibels" },
- { 45710, "Mobie Oy" },
- { 45711, "Matrix Electronica S.L." },
- { 45712, "SERFIM T.I.C. (formerly 'SERELEC SAS')" },
- { 45713, "CONSULDATA Advisors di Massimo Del Barba" },
- { 45714, "Logitravel SL" },
- { 45715, "Empresa Municipal de Inform\0303\0241tica S.A. - IPLANRIO" },
- { 45716, "ARGE Rundfunk-Betriebstechnik" },
- { 45717, "Sensu Enterprise" },
- { 45718, "TJH Systems Pty Limited" },
- { 45719, "inQool a.s." },
- { 45720, "Chaos Computer Club Mainz e.V." },
- { 45721, "Shenzhen SONTU Medical Imaging Equipment Co.,LTD" },
- { 45722, "Hamburg Port Authority AoeR" },
- { 45723, "Cirrent" },
- { 45724, "FIDO Alliance, Inc." },
- { 45725, "ABB Xiamen Low Voltage Equipment Co.,Ltd" },
- { 45726, "ecava sdn bhd" },
- { 45727, "HDWIFI TECHNOLOGIES" },
- { 45728, "JunoTele Solutions Pvt. Ltd" },
- { 45729, "Roedl IT Operation GmbH" },
- { 45730, "Geneberg" },
- { 45731, "WOOBE s.a.s." },
- { 45732, "TIM AG" },
- { 45733, "Frank Wagner Holding Hanseatische Management GmbH" },
- { 45734, "STARNET s.r.o." },
- { 45735, "easyset " },
- { 45736, "Utilisoft Ltd" },
- { 45737, "shah-network.com" },
- { 45738, "Aspirational Cognition LLC" },
- { 45739, "winfonet.eu" },
- { 45740, "Cirrus Identity, Inc" },
- { 45741, "Entensys" },
- { 45742, "ImageWare Components GmbH" },
- { 45743, "FIBERLAB" },
- { 45744, "GGExo" },
- { 45745, "Care Zone Inc." },
- { 45746, "University of Rochester Medical Center" },
- { 45747, "Wuhan Rui Ying Tong Network Technology Co., Ltd(China)" },
- { 45748, "Th\0303\0274ga MeteringService GmbH" },
- { 45749, "Evolving Models" },
- { 45750, "gerthoux" },
- { 45751, "Hibernating Rhinos" },
- { 45752, "connecT EDV-Vertriebs GmbH" },
- { 45753, "winterdrache.de" },
- { 45754, "VoipOtago Ltd" },
- { 45755, "2memory LTD" },
- { 45756, "MicroLAB Systems" },
- { 45757, "FUCOM" },
- { 45758, "IPCOMM GmbH" },
- { 45759, "Signicat AS" },
- { 45760, "Kove IO Inc." },
- { 45761, "Celab Communications AB" },
- { 45762, "Platan sp\0303\0263\0305\0202ka z ograniczon\0304\0205 odpowiedzialno\0305\0233ci\0304\0205 sp.k." },
- { 45763, "EMG Systems Sp. z o.o." },
- { 45764, "CH Des pays de Morlaix" },
- { 45765, "nohl.eu" },
- { 45766, "Serval CA" },
- { 45767, "Succeed Management Solutions, LLC" },
- { 45768, "telecoms forensics equipment ltd" },
- { 45769, "Farm House Technologies, LLC." },
- { 45770, "Digital Loggers, Inc." },
- { 45771, "weatherlights.com" },
- { 45772, "TauRes Gesellschaft f\0303\0274r Investmentberatung mbH" },
- { 45773, "Liebherr-IT Services GmbH" },
- { 45774, "SHS SERVICES GmbH" },
- { 45775, "Tornado Network Operating System" },
- { 45776, "Belden Deutschland GmbH" },
- { 45777, "Fingerprint Technologies SAS" },
- { 45778, "exp Services Inc." },
- { 45779, "Mosaic Life Care at St. Joseph Medical Oncology" },
- { 45780, "Norsk Sykepleierforbund" },
- { 45781, "Masaryk Memorial Cancer Institute" },
- { 45782, "Metacores Sp. z o.o." },
- { 45783, "TEKIN" },
- { 45784, "Novarad, Corp" },
- { 45785, "bangj, LLC" },
- { 45786, "SAT-AN CableNet SE" },
- { 45787, "WISTE" },
- { 45788, "Agustus & Ahab, Inc." },
- { 45789, "Vicon" },
- { 45790, "Crystal GmbH" },
- { 45791, "Neos Ventures GmbH" },
- { 45792, "Flohr IT" },
- { 45793, "Joint Stock Company \"PK Kupchino\"" },
- { 45794, "Safe Creative" },
- { 45795, "Primo1D SA" },
- { 45796, "Umea Municipality" },
- { 45797, "Viettel Group" },
- { 45798, "Enovae BV" },
- { 45799, "Csaw BV" },
- { 45800, "Zorgdoc Nederland BV" },
- { 45801, "TARASOFT SRL" },
- { 45802, "Ubee Interactive Corp." },
- { 45803, "netcruz inc." },
- { 45804, "ERICA" },
- { 45805, "OCMW Temse" },
- { 45806, "genealogie.com" },
- { 45807, "Starbucks Coffee Company" },
- { 45808, "Global Tecnologia LTDA." },
- { 45809, "Beijing Mipay Technology Co., Ltd." },
- { 45810, "Binary Rock" },
- { 45811, "Istvan Puzsar e.v." },
- { 45812, "ILoca Services, Inc." },
- { 45813, "PI '97 Bt." },
- { 45814, "Waukesha-Pearce Industries, Inc." },
- { 45815, "Sourcewise" },
- { 45816, "Bruce R. Smith Limited" },
- { 45817, "Inacomp Consultores SA" },
- { 45818, "Passaic County Technical Institute" },
- { 45819, "Sven Anders" },
- { 45820, sminmpec_unknown }, /* (Added by Wireshark) */
- { 45821, "21st century Oncology, LLC-Gabriel Domenech MD" },
- { 45822, "Les Ambassadeurs Club" },
- { 45823, "Orient Technologies LTD" },
- { 45824, "System One Noc & Development Solutions" },
- { 45825, "One-Click Softworks" },
- { 45826, "Singlewire Software, LLC" },
- { 45827, "Beijing JN TASS Technology Co.,Ltd." },
- { 45828, "Kanhan Technologies Limited" },
- { 45829, "preis24.de GmbH" },
- { 45830, "Dynniq UK Ltd (formerly 'Imtech Traffic & Infra UK Ltd')" },
- { 45831, "Argo Technologie SA" },
- { 45832, "I-ROSE d.o.o." },
- { 45833, "Hoffmann Foerdertechnik GmbH" },
- { 45834, "Tieto Finland Oy" },
- { 45835, "Tangara Tagentis Inc." },
- { 45836, "Varonis System inc." },
- { 45837, "Orage.io" },
- { 45838, "BELIMO Automation AG" },
- { 45839, "NETEVEN" },
- { 45840, "Lester Electrical of Nebraska, Inc." },
- { 45841, "System One Noc & Development Solutions S.A" },
- { 45842, "Andrew Stemen" },
- { 45843, "WebNet Broadband" },
- { 45844, "Uwe Stoppel" },
- { 45845, "EchoPixel, Inc." },
- { 45846, "StorPool Storage AD" },
- { 45847, "ComputerTel LTD" },
- { 45848, "VISHMAIL" },
- { 45849, "MMCVEN Mail" },
- { 45850, "Eternity's Touch, Inc." },
- { 45851, "Unfallkasse Baden-Wuerttemberg" },
- { 45852, "Miami Hematology and Oncology Associates" },
- { 45853, "Jaguar Land Rover Limited" },
- { 45854, "Cell Technology Ltd." },
- { 45855, "Intracom Asia Co., Ltd." },
- { 45856, "Mie Prefectural Government" },
- { 45857, "Kailow Graphic A/S" },
- { 45858, "Cifernet Inc." },
- { 45859, "Pylo.Net" },
- { 45860, "Exel Technology Group" },
- { 45861, "Research Associates of Syracuse, Inc." },
- { 45862, "Apost Ltd." },
- { 45863, "La Folie Boutique" },
- { 45864, "Direction Generale de l'Education et des Enseignements" },
- { 45865, "Shouei electric,co" },
- { 45866, "GlobalPME" },
- { 45867, "LUKOIL Bulgaria Ltd." },
- { 45868, "Skywire Technologies" },
- { 45869, "POET GmbH" },
- { 45870, "Fraunhofer Institute for Secure Information Technology SIT" },
- { 45871, "FATECH Electronic" },
- { 45872, "Institut National de l'Audiovisuel" },
- { 45873, "Instituto Federal Catarinense" },
- { 45874, "Coencorp" },
- { 45875, "Edward H. Kaplan,M.D. and Assoc." },
- { 45876, "Jetson Systems, LLC" },
- { 45877, "Intelligent Homes" },
- { 45878, "vesperal.eu" },
- { 45879, "Universit\0303\0251 de Lille" },
- { 45880, "West-Ward Pharmaceuticals Corp" },
- { 45881, "2Lconsult" },
- { 45882, "Global Voice Group, S.A." },
- { 45883, "EagleBurgmann Germany GmbH & Co. KG" },
- { 45884, "AuthClub Inc" },
- { 45885, "Cesbo Ltd." },
- { 45886, "Connect-Omsk, Ltd." },
- { 45887, "Arke Telekom Ltd. Sti." },
- { 45888, "Jawset Visual Computing" },
- { 45889, "TechMIC electronics" },
- { 45890, "Sys-City Co., Ltd." },
- { 45891, "Pandora A/S" },
- { 45892, "Combination AB" },
- { 45893, "PSTech" },
- { 45894, "SysAdmin-CR Sociedad Anonima" },
- { 45895, "SysAdmin-CR Sociedad Anonima" },
- { 45896, "Paperless Pipeline, LLC." },
- { 45897, "M H Corbin Inc" },
- { 45898, "KEYLOGIC AB" },
- { 45899, "CASwell Inc" },
- { 45900, "Weber Schraubautomaten GmbH" },
- { 45901, "Kellerman Networks" },
- { 45902, "Kellerman Networks" },
- { 45903, "dachsbau" },
- { 45904, "National Foods Ltd." },
- { 45905, "Obihai Technology, Inc." },
- { 45906, "Selinko S.A." },
- { 45907, "PolyVirtual Corporation" },
- { 45908, "ITDO Inc." },
- { 45909, "SHENZHEN ANKKI TECHNOLOGIES CO., LTD" },
- { 45910, "haiyi" },
- { 45911, "SynerMed Labs" },
- { 45912, "Universitas Brawijaya" },
- { 45913, "M2 Group Pty Ltd" },
- { 45914, "Cetera Financial Group" },
- { 45915, "PromonLogicalis" },
- { 45916, "Quest Payment Systems" },
- { 45917, "NFRI" },
- { 45918, "Network Canary" },
- { 45919, "Planevision Systems GmbH" },
- { 45920, "Humble Carrier" },
- { 45921, "Ministry of Agriculture Latvia" },
- { 45922, "DunaNet-DeviceManagement LLC" },
- { 45923, "TVN S.A." },
- { 45924, "NOU IPAP" },
- { 45925, "MPS GmbH" },
- { 45926, "OpenZAB.com" },
- { 45927, "Ahsay Systems Corporation Limited" },
- { 45928, "MORU Industrial Systems Co.,LTD." },
- { 45929, "Plum Sp. z o.o." },
- { 45930, "Landwirtschaftskammer Niedersachsen" },
- { 45931, "Patterson Companies" },
- { 45932, "Walcoe" },
- { 45933, "Kuratorium f\0303\0274r Dialyse und Nierentransplantation e.V." },
- { 45934, "Fiber Mountain Inc" },
- { 45935, "Main Line Oncology Hematology Associates" },
- { 45936, "Das Kommunalunternehmen des Landkreises Wuerzburg" },
- { 45937, "M & C Enterprises, Ltd." },
- { 45938, "Intelligent Visibility, Inc." },
- { 45939, "TRIMET S.A." },
- { 45940, "Beckman Library" },
- { 45941, "Papa Malick MBOW" },
- { 45942, "ezVoice Telecom" },
- { 45943, "Londelec UK Ltd" },
- { 45944, "IT Telecom co.,Ltd" },
- { 45945, "Friedrich-von-Bodelschwingh-Schule" },
- { 45946, "dynexo GmbH" },
- { 45947, "Kartal Belediye Baskanligi" },
- { 45948, "FitnessFirst Germany " },
- { 45949, "RF elements s.r.o." },
- { 45950, "Cogo Labs" },
- { 45951, "RDK Management LLC" },
- { 45952, "CTRLTECH S.A." },
- { 45953, "CyberData Corporation" },
- { 45954, "Truven Health Analytics Inc." },
- { 45955, "Big Daddy Games, LLC" },
- { 45956, "128 Technology" },
- { 45957, "Cryptographic Information Services" },
- { 45958, "aisubp" },
- { 45959, "Zhongyunwangan Technology (Beijing) Co.,Ltd" },
- { 45960, "IMS, TU Wien" },
- { 45961, "ATGEN SOFTWARE SOLUTIONS LLP" },
- { 45962, "SHOWA TSUSHIN KOGYO INC." },
- { 45963, "HHnet" },
- { 45964, "Dispersive Technologies" },
- { 45965, "Aleris International Inc" },
- { 45966, "GURI SOFTHOUSE LTDA" },
- { 45967, "SWAN Analytische Instrumente AG" },
- { 45968, "perinova IT-Management GmbH" },
- { 45969, "perinova IT-Management GmbH" },
- { 45970, "B\0303\0266ttcher & Collin GbR" },
- { 45971, "CJSC \"Transinfoset\"" },
- { 45972, "Baptist School of Health Professions" },
- { 45973, "Playground Global" },
- { 45974, "SPINNER GmbH" },
- { 45975, "Securities Finance Trust Company" },
- { 45976, "Intema Comunicaciones" },
- { 45977, "Platform.sh" },
- { 45978, "Vision 95 Ltd." },
- { 45979, "Intevac, Inc." },
- { 45980, "S.Network Communications Ltd." },
- { 45981, "DroidInActu" },
- { 45982, "Goletas" },
- { 45983, "Airbus DS Limited - MIPN" },
- { 45984, "OOO Stels" },
- { 45985, "CyberStream Ltd" },
- { 45986, "Kramer Electronics Ltd." },
- { 45987, "Rete telematica del CNR di Pisa" },
- { 45988, "SKYCOM" },
- { 45989, "SKYCOM" },
- { 45990, "Brueckner-Werke KG" },
- { 45991, "KLENK HOLZ AG" },
- { 45992, "Grabeuh Corp." },
- { 45993, "ITSMOS" },
- { 45994, "Prink s.r.l" },
- { 45995, "Posteo e.K." },
- { 45996, "Chora A/S" },
- { 45997, "Colorado Center for Gynecologic Oncology" },
- { 45998, "JENSEN-GROUP" },
- { 45999, "The Dysongang" },
- { 46000, "Third Light Ltd." },
- { 46001, "Vektra Advanced Engineering" },
- { 46002, "6Harmonics Inc." },
- { 46003, "NAUTILUS INFOTECH Co., Ltd." },
- { 46004, "50Hertz Transmission GmbH" },
- { 46005, "SAG Services AG (formerly 'SAG Informatik AG')" },
- { 46006, "Greetz BV" },
- { 46007, "Augustinum gGmbH" },
- { 46008, "Codan A/S" },
- { 46009, "Advanced Hematology & Oncology Group of PR" },
- { 46010, "Westfalen Weser Netz GmbH" },
- { 46011, "cloudVM Inc." },
- { 46012, "Redhot OOO" },
- { 46013, "Yhat, Inc." },
- { 46014, "KCA Deutag" },
- { 46015, "PrimoTechSolution S.R.L." },
- { 46016, "Leonton Technologies, Co. Ltd." },
- { 46017, "Research Institute of Systems Planning, Inc. / ISP" },
- { 46018, "Thoralf Tietboehl (ttcn)" },
- { 46019, "DSPG Ltd." },
- { 46020, "Cardio Sistemas Coml. Indl. Ltda." },
- { 46021, "Thales Belgium SA" },
- { 46022, "Deep S.R.L" },
- { 46023, "High Desert Oncology" },
- { 46024, "W&W-AFCO STEEL LLC" },
- { 46025, "Kahana Technology, LLC" },
- { 46026, "Southern Oncology Hematology Associates" },
- { 46027, "OFICINA NACIONAL DE PROCESOS ELECTORALES" },
- { 46028, "Play Consulting" },
- { 46029, "Serenergy A/S" },
- { 46030, "iRespond" },
- { 46031, "Taconza LLC" },
- { 46032, "AccelStor, Inc." },
- { 46033, "Cavium Inc." },
- { 46034, "Ramakrishna Mission Vivekananda University" },
- { 46035, "Company Crypton Ltd." },
- { 46036, "IT CARD Centrum Technologii Platniczych SA" },
- { 46037, "City of Pearland" },
- { 46038, "Layer8" },
- { 46039, "Dynamist AB" },
- { 46040, "Freestyle Technology Pty. Ltd." },
- { 46041, "W.B. Hunt Co., Inc." },
- { 46042, "SpacePath Communications" },
- { 46043, "element j" },
- { 46044, "Cloudbyte" },
- { 46045, "BYTEDANCE LTD." },
- { 46046, "Branislav Manic Law Office" },
- { 46047, "paulista informatica ltd" },
- { 46048, "Attivo Networks" },
- { 46049, "SMSEagle" },
- { 46050, "Remod Oy" },
- { 46051, "STAGE2015" },
- { 46052, "Neotys" },
- { 46053, "AVEBE U.A." },
- { 46054, "NBS Ltd." },
- { 46055, "Hytera Broadband Products" },
- { 46056, "OOO\"NPF MULTIOBRABOTKA\"" },
- { 46057, "Hong Kong Community Athletic Development" },
- { 46058, "Panda Sports" },
- { 46059, "Vidamin Ltd" },
- { 46060, "central florida cancer and blood center" },
- { 46061, "Ognios GmbH" },
- { 46062, "YAVEON AG" },
- { 46063, "Broala" },
- { 46064, "AddApptr GmbH" },
- { 46065, "Cannabis Credit" },
- { 46066, "The DiameterTech Project" },
- { 46067, "Union College - Computer Science Department " },
- { 46068, "Take-Two Interactive Software, Inc." },
- { 46069, "Deutsches Rotes Kreuz Ortsverein Suedlicher Wonnegau e. V." },
- { 46070, "NDP, LLC (NVEA)" },
- { 46071, "Chista Ltd." },
- { 46072, "B2B-SOFT" },
- { 46073, "Imbasoft" },
- { 46074, "ROAMData, Inc." },
- { 46075, "Freshmind Sp. z o. o." },
- { 46076, "Edward A Eichler, Jr., M.D., P.A." },
- { 46077, "Inventive IT Services Ltd" },
- { 46078, "Beijing ForceControl-Huacon Technology Co., Ltd." },
- { 46079, "HM Electronics, Inc." },
- { 46080, "Yara SA/NV" },
- { 46081, "INFODAS Gesellschaft f\0303\0274r Systementwicklung und Informationsverarbeitung mbH" },
- { 46082, "AVI" },
- { 46083, "F&F Computer Anwendungen und Unternehmensberatung GmbH" },
- { 46084, "FACTORYNET AUGUSTA, S.L." },
- { 46085, "INFORMATICA Y PROCESOS DE GESTION, S.L." },
- { 46086, "Infoteam Technique SA" },
- { 46087, "IT Scharschinger" },
- { 46088, "Sylvain\0302\0240Girod" },
- { 46089, "DB.Studio" },
- { 46090, "namotronic GmbH" },
- { 46091, "ICM University of Warsaw" },
- { 46092, "Ingenieurgesellschaft f\0303\0274r Geb\0303\0244udeautomation mbH" },
- { 46093, "Sistelbanda S.A." },
- { 46094, "Brampton College" },
- { 46095, "otrisPROJECTS GmbH" },
- { 46096, "bitbert.com" },
- { 46097, "IPiFony Systems, Inc." },
- { 46098, "Ericsson Canada Inc." },
- { 46099, "Community Health Systems-CHS14" },
- { 46100, "Maxwell Paper Canada Inc" },
- { 46101, "Belar Electronics Laboratory Inc" },
- { 46102, "Art Van Furniture, Inc." },
- { 46103, "VoIP Integration Inc" },
- { 46104, "TVM Capital" },
- { 46105, "Alexion Pharmaceuticals, Inc." },
- { 46106, "1-800 Contacts Inc." },
- { 46107, "Medivation, Inc." },
- { 46108, "Medivation, Inc." },
- { 46109, "Credomatic" },
- { 46110, "smartTrade Technologies" },
- { 46111, "Document Knowledge Business Solutions (DKB Solutions SA)" },
- { 46112, "All Russian Institute for Scientific and Technical Information (VINITI) of the Russian Academy of Sciences" },
- { 46113, "The Moscow Chamber of Advocates" },
- { 46114, "\0302\0253SUMYOBLENERGO\0302\0273 PJSC" },
- { 46115, "Progi-m\0303\0251dia inc." },
- { 46116, "CRYPTONEO" },
- { 46117, "SMP Solutions GmbH" },
- { 46118, "SwissMediaPartners AG" },
- { 46119, "Eden Rock Communications, LLC" },
- { 46120, "Alliance-Electronics, Ltd." },
- { 46121, "The Stahura-Brenner Group Inc." },
- { 46122, "WrightCCS" },
- { 46123, "Wiener Boerse AG" },
- { 46124, "MICI Network Co,.Ltd" },
- { 46125, "Canadian Pacific" },
- { 46126, "Blockstream" },
- { 46127, "Rock Solid Solutions LLC" },
- { 46128, "City of Biel" },
- { 46129, "MechanicaPark LLC" },
- { 46130, "Informa Sistemi S.P.A." },
- { 46131, "Hackerspace Krak\0303\0263w" },
- { 46132, "Amdatu" },
- { 46133, "ostermeyer.de" },
- { 46134, "Uprava za indirektno oporezivanje" },
- { 46135, "MSS Managed Security Services GmbH" },
- { 46136, "Steinbeis Embedded Systems Technologies GmbH" },
- { 46137, "Association Clandestine" },
- { 46138, "HTU H\0303\0244rtetechnik Uhldingen-M\0303\0274hlhofen GmbH" },
- { 46139, "Baseventure Investing" },
- { 46140, "Laboratoire d'Analyse et de Math\0303\0251matiques Appliqu\0303\0251es" },
- { 46141, "Ysance" },
- { 46142, "ShenZhen Sinexcel Electric Co.Ltd." },
- { 46143, "Lazada South East Asia (formerly 'Lazada Tech Hub')" },
- { 46144, "Schmidt & Co., (H.K.) Ltd. Taiwan Branch " },
- { 46145, "A. Baggenstos & Co. AG" },
- { 46146, "INFORM GmbH" },
- { 46147, "American Prepaid VAS LLC" },
- { 46148, "Beijing Yoxon Smart Technology Co.,Ltd." },
- { 46149, "ZAO Citibank" },
- { 46150, "spornkuller.de" },
- { 46151, "Brett A. Lewis" },
- { 46152, "MCHV Software" },
- { 46153, "Budafony" },
- { 46154, "xMob" },
- { 46155, "TAKAOKA TOKO CO.,LTD." },
- { 46156, "SB Systems Co.,Ltd" },
- { 46157, "NARI Technology Co., Ltd." },
- { 46158, "Ohanae" },
- { 46159, "TselinTransStroy Ltd." },
- { 46160, "GDV Dienstleistungs-GmbH & Co. KG" },
- { 46161, "Mobile Viewpoint" },
- { 46162, "Tuna Technologies Limited" },
- { 46163, "Neuberger Gebaeudeautomation GmbH" },
- { 46164, "AS-PC Sarl" },
- { 46165, "Politeknik Negeri Ujung Pandang" },
- { 46166, "JETR Consulting" },
- { 46167, "Toptranslation GmbH" },
- { 46168, "NewGen Interactive Software Corporation" },
- { 46169, "International Capital Investment Company" },
- { 46170, "Runetwister Publishing" },
- { 46171, "HashPlex, Inc" },
- { 46172, "Redcello Ltd." },
- { 46173, "PayPal Inc" },
- { 46174, "SecuLynx Corporation" },
- { 46175, "NEWIND Sp. z o.o." },
- { 46176, "SensorLink" },
- { 46177, "KYOSAN ELECTRIC MFG. CO., LTD." },
- { 46178, "Faculty of Informatics, TU Wien" },
- { 46179, "Pikkatech Software Development & Consulting" },
- { 46180, "Gables Engineering, Inc." },
- { 46181, "sanscomp" },
- { 46182, "Golden Grid Systems" },
- { 46183, "Dansk Medicinsk DataCenter ApS" },
- { 46184, "Lumentum.com" },
- { 46185, "Intelity" },
- { 46186, "cyontec solutions GmbH" },
- { 46187, "AGRAVIS Raiffeisen AG" },
- { 46188, "MarketFactory Inc" },
- { 46189, "John Cianfarani" },
- { 46190, "Phoenyxcode" },
- { 46191, "21st Century Oncology - Crestview" },
- { 46192, "ToastCoders" },
- { 46193, "Distributed Hacker Maker Network Inc." },
- { 46194, "arara inc. (formerly 'repica Inc.')" },
- { 46195, "sdc world group co." },
- { 46196, "Narodowy Fundusz Ochrony Srodowiska i Gospodarki Wodnej" },
- { 46197, "Telensa Limited" },
- { 46198, "Equinox Holdings LLC" },
- { 46199, "DENTSPLY International" },
- { 46200, "Matthew Martin" },
- { 46201, "Business Telecommunications Services Europe" },
- { 46202, "Avigilon Corporation" },
- { 46203, "Strictly Monitoring Limited" },
- { 46204, "Hutchison Drei Austria GmbH" },
- { 46205, "MIT Dynamic Technologies Limited" },
- { 46206, "Stamm" },
- { 46207, "Kasisto, Inc." },
- { 46208, "Knjaz Milos a.d." },
- { 46209, "deepin" },
- { 46210, "Shanghai Koal Software" },
- { 46211, "Fernfachhochschule Schweiz (FFHS)" },
- { 46212, "e2E Satcom Limited" },
- { 46213, "Atmos Sistemas Ltda." },
- { 46214, "COGIT MATIDA UK LTD" },
- { 46215, "Shandong Senter Electronic Co., Ltd." },
- { 46216, "Rocken am Brocken UG" },
- { 46217, "VINCI Energies Schweiz AG" },
- { 46218, "SilverTours GmbH" },
- { 46219, "Migros Bank AG" },
- { 46220, "Minist\0303\0251rio P\0303\0272blico do Estado de Santa Catarina" },
- { 46221, "iconectiv" },
- { 46222, "On IP 46 Limited" },
- { 46223, "Cyber Medical Imaging, Inc." },
- { 46224, "Inner Range Pty. Ltd." },
- { 46225, "tehasdf.com" },
- { 46226, "Apigee Corporation" },
- { 46227, "Guangxi radio and television information network corporation limited" },
- { 46228, "Nikko Graphic Arts Co.,Ltd." },
- { 46229, "igus GmbH" },
- { 46230, "Cleverlance Enterprise Solutions a.s." },
- { 46231, "Eikeo" },
- { 46232, "Ergatel" },
- { 46233, "Mundo Digital Inform\0303\0241tica Redes y Comunicaci\0303\0263n S.L." },
- { 46234, "SpaceTeamLab, Ltd." },
- { 46235, "RCNTEC" },
- { 46236, "Multisoft S.A." },
- { 46237, "Ayuntamiento de Alcobendas" },
- { 46238, "Immobilien Hilgers e.K" },
- { 46239, "InviNets" },
- { 46240, sminmpec_unknown }, /* (Added by Wireshark) */
- { 46241, "Bionic Fuel Knowledge Partners Inc. " },
- { 46242, "Netonix" },
- { 46243, "Programize" },
- { 46244, "South African Air Force" },
- { 46245, "Reo3" },
- { 46246, "88.io" },
- { 46247, "Supertel-DALS" },
- { 46248, "Pole/Zero Corporation" },
- { 46249, "SITES" },
- { 46250, "Amsted Rail" },
- { 46251, "POSBANK" },
- { 46252, "Z-ROUTER TECHNOLOGY" },
- { 46253, "Plusserver GmbH" },
- { 46254, "Vector Informatik GmbH" },
- { 46255, "Ovenden Papers Limited" },
- { 46256, "Hokkaido University" },
- { 46257, "Wlbe Deutschland" },
- { 46258, "VENISO SOLUTIONS PRIVATE LIMITED" },
- { 46259, "Hauseigent\0303\0274merverband Z\0303\0274rich" },
- { 46260, "IQ-Media B.V." },
- { 46261, "Universidad Nacional del Litoral" },
- { 46262, "Zscaler Inc" },
- { 46263, "LPL Financial" },
- { 46264, "FinnHEMS Oy" },
- { 46265, "AlBikar.net" },
- { 46266, "Wood County Telephone Company dba Solarus" },
- { 46267, "Development Gateway" },
- { 46268, "bleim.net GmbH" },
- { 46269, "Dynasys Technology Co.,LTD" },
- { 46270, "NBOO-RU" },
- { 46271, "PaloVerde Cancer Specialists" },
- { 46272, "DataStax, Inc." },
- { 46273, "informalogique" },
- { 46274, "Heartware" },
- { 46275, "EBPI" },
- { 46276, "Linux Lab" },
- { 46277, "Ministerio dos Petroleos" },
- { 46278, "T\0303\0234V NORD AG" },
- { 46279, "Thomas Hellstr\0303\0266m" },
- { 46280, "Enterprise Computing " },
- { 46281, "WRITESYS Traffic Systems" },
- { 46282, "uGo3D LLC" },
- { 46283, "Inmotion Data, LLC." },
- { 46284, "ENERGEX" },
- { 46285, "Trimble Navigation Ltd." },
- { 46286, "RUDIMENTS" },
- { 46287, "yaxunhongda" },
- { 46288, "Tedas B.V." },
- { 46289, "gluIT Software GmbH" },
- { 46290, "VS XXI JSC" },
- { 46291, "IES srl" },
- { 46292, "Koiossian Inc." },
- { 46293, "Monroe County Hospital Oncology Clinic" },
- { 46294, "inView GmbH" },
- { 46295, "City of Huntsville" },
- { 46296, "SHI" },
- { 46297, "Agrarmarkt Austria" },
- { 46298, "ISPM Servi\0303\0247os em Inform\0303\0241tica LTDA" },
- { 46299, "Birmingham Hematology and Oncology Associates, LLC d/b/a Alabama Oncology" },
- { 46300, "MicroKnight Business Systems Ltd." },
- { 46301, "CARRA, Inc." },
- { 46302, "Urmet Sistemi S.p.A." },
- { 46303, "ITSUDE" },
- { 46304, "GSMA" },
- { 46305, "OSDE" },
- { 46306, "Institute for Traffic Safety Management and Research" },
- { 46307, "Briskhome" },
- { 46308, "GDC Communications" },
- { 46309, "Delft Solutions" },
- { 46310, "BCons Argentina S.A." },
- { 46311, "Baufest" },
- { 46312, "Jack Kingsman" },
- { 46313, "Level 8 Aps" },
- { 46314, "SongMovers" },
- { 46315, "Silicon Valley Bank" },
- { 46316, "AERTiCKET AG" },
- { 46317, "VRSG Verwaltungsrechenzentrum AG St.Gallen" },
- { 46318, "Mils Electronic Gesmbh & CoKG" },
- { 46319, "Traffic Tech Inc." },
- { 46320, "BNC National Bank" },
- { 46321, "Sensignal Co.,Ltd." },
- { 46322, "Gareth Williams" },
- { 46323, "F. KLUCZNIK & SON LIMITED" },
- { 46324, "HAYSYS Ltd" },
- { 46325, "Firstwan Delivery Network Services " },
- { 46326, "IUT de VALENCE" },
- { 46327, "Niagara Regional Police Service" },
- { 46328, "DDS Wireless International Inc" },
- { 46329, "Security Indemnity Insurance Company In Liquidation" },
- { 46330, "Vubiq Networks" },
- { 46331, "NightSteam Solutions" },
- { 46332, "Lacuna Software LTDA - EPP" },
- { 46333, "American Express Global Business Travel" },
- { 46334, "HRM Systems AG" },
- { 46335, "Bruce A. Hayton, M.D." },
- { 46336, "Live Niaga" },
- { 46337, "Meisei Electric Co., Ltd." },
- { 46338, "CTO Balzuweit GmbH" },
- { 46339, "National Archives, Czech Republic" },
- { 46340, "The Opole University of Technology" },
- { 46341, "Dansk Metalarbejderforbund" },
- { 46342, "Anoop Sukumaran" },
- { 46343, "mazou kitchen" },
- { 46344, "PricewaterhouseCoopers AG" },
- { 46345, "Clear Government Solutions, Inc." },
- { 46346, "Vail Software Solutions" },
- { 46347, "Ovapro" },
- { 46348, "Providence Health & Services" },
- { 46349, "Deepfield" },
- { 46350, "NorCERT - Norwegian Computer Emergency Response Team " },
- { 46351, "Laubheimer Networks" },
- { 46352, "Premier Business Centers" },
- { 46353, "Schwackenberg Consulting" },
- { 46354, "Kooperativa pojistovna, a.s." },
- { 46355, "Expert-Team Pte Ltd" },
- { 46356, "Grupo de Tecnologia Cibernetica, S.A. de C.V." },
- { 46357, "NBS System" },
- { 46358, "Zwick GmbH & Co KG" },
- { 46359, "Robert P. Fein and David A. Richards" },
- { 46360, "West and Central African Research and Education Network (WACREN)" },
- { 46361, "Richard Scranton" },
- { 46362, "Digital Data Technologies Inc." },
- { 46363, "BGProtect" },
- { 46364, "Halmstad University" },
- { 46365, "arvato IT Support GmbH" },
- { 46366, "Technicolor" },
- { 46367, "UPSINVERTER.COM" },
- { 46368, "The Job Planet" },
- { 46369, "Miskolci Egyetem Informatikai Intezet" },
- { 46370, "eshore" },
- { 46371, "Japan Canada Oil Sands Limited" },
- { 46372, "Uber Operations, LLC" },
- { 46373, "Bypass Network Services" },
- { 46374, "Zizaike Inc." },
- { 46375, "eCommistry Ltd" },
- { 46376, "Nullroute" },
- { 46377, "Star Media (Beijing) CO.,LTD" },
- { 46378, "Centre Hospitalier M\0303\0251morial Saint-L\0303\0264" },
- { 46379, "LunaticIsland.net" },
- { 46380, "Enghouse Interactive AB" },
- { 46381, "Imterra" },
- { 46382, "Berolina-autolacke" },
- { 46383, "Ministry Division, Church of England" },
- { 46384, "DUCA Financial Services Credit Union Ltd." },
- { 46385, "Walnut Hill Physicians\0342\0200\0231 Hospital, LLC" },
- { 46386, "Shenzhen GL-COM Technology Co.,Ltd." },
- { 46387, "Drift" },
- { 46388, "Taygeta Scientific Inc." },
- { 46389, "VESTA" },
- { 46390, "Clarke Technical Services, Inc." },
- { 46391, "jddev" },
- { 46392, "Donostian Belgie" },
- { 46393, "Programlabbet AB" },
- { 46394, "BLITSC" },
- { 46395, "FirstRand Group" },
- { 46396, "Marotta Controls, Inc." },
- { 46397, "iSecway Inc." },
- { 46398, "Regional Cancer Care Associates Hope Community Cancer Center Division" },
- { 46399, "iSIGHT Partners" },
- { 46400, "NorQuest College" },
- { 46401, "Marshall B. Ketchum University" },
- { 46402, "NSF Telecom Ab" },
- { 46403, "QA2" },
- { 46404, "DOT Systems Sp. z o.o." },
- { 46405, "superChic" },
- { 46406, "Foundation P\0303\0244rnu Hospital" },
- { 46407, "TECNOLOGIAS EOS SA DE CV" },
- { 46408, "PKP Polskie Linie Kolejowe S.A." },
- { 46409, "BSP Consulting spol. s r.o. " },
- { 46410, "SEGGER Microcontroller GmbH & Co. KG" },
- { 46411, "Art2Wave Canada Inc." },
- { 46412, "Andrew Sheret Ltd." },
- { 46413, "Table25, Inc." },
- { 46414, "William Oliver" },
- { 46415, "Open Banking Foundation" },
- { 46416, "The National Archives of Latvia" },
- { 46417, "Emerald Coast Cancer Center" },
- { 46418, "Agile Ingenier\0303\0255a y Consultor\0303\0255a Ltda." },
- { 46419, "Araknis Networks" },
- { 46420, "Knauf Information Services GmbH" },
- { 46421, "B/E Aerospace" },
- { 46422, "UTEK TECHNOLOGY(SHENZHEN)CO,LTD" },
- { 46423, "Osirium Ltd" },
- { 46424, "Otterbein Homes" },
- { 46425, "DTSV, Inc." },
- { 46426, "Salinas Valley Medical Clinic Cancer Care" },
- { 46427, "LISI AEROSPACE" },
- { 46428, "Mobicare" },
- { 46429, "Universidad Nacional de San Martin" },
- { 46430, "RTEC" },
- { 46431, "Alaf Organization" },
- { 46432, "Modula Shop Systems" },
- { 46433, "Fern Ridge School District 28J" },
- { 46434, "consulter net GmbH" },
- { 46435, "LEW AG" },
- { 46436, "Infoprocess" },
- { 46437, "TTI NORTE SL" },
- { 46438, "Bartec-Vodec" },
- { 46439, "Bolsas y Mercados Espa\0303\0261oles Innova, S.A.U. (BME Innova)." },
- { 46440, "Cloud Electronics Ltd." },
- { 46441, "AKROS AG" },
- { 46442, "PIHI Media" },
- { 46443, "intec GmbH" },
- { 46444, "Zhejiang Huanshun Network Science & Technology Co., Ltd." },
- { 46445, "Unitel Engineering" },
- { 46446, "OV Corporation SAS" },
- { 46447, "Embedict " },
- { 46448, "Telewizja Polsat Spolka z o. o." },
- { 46449, "Collibra" },
- { 46450, "Opsmate, Inc." },
- { 46451, "InfoRelay Online Systems, Inc" },
- { 46452, "Lanworld Finland Oy" },
- { 46453, "McKesson IWS" },
- { 46454, "Goldberg and Mathew Medical Assc P.L.L.C." },
- { 46455, "Coral Active" },
- { 46456, "AttoCore Ltd" },
- { 46457, "Gerrie Electric Wholesale Limited" },
- { 46458, "ENow, inc." },
- { 46459, "Mairie de Canteleu" },
- { 46460, "Veterinary Specialists of North Texas" },
- { 46461, "Outhwaite Technologies" },
- { 46462, "Sicoob Confedera\0303\0247\0303\0243o" },
- { 46463, "Radio Gigabit Inc." },
- { 46464, "Knowledgeloop, Inc." },
- { 46465, "EKE-Electronics Ltd." },
- { 46466, "Rossbach Systems" },
- { 46467, "CellSens" },
- { 46468, "Coho Data, Inc." },
- { 46469, "149W Managed Services LLC" },
- { 46470, "Man Technology Co, Ltd." },
- { 46471, "Illusive Networks Ltd." },
- { 46472, "infraView GmbH" },
- { 46473, "Otterbein Homes" },
- { 46474, "Kiwox Soluciones Tecnol\0303\0263gicas" },
- { 46475, "OSTEC Business Security" },
- { 46476, "Martijn van Hoof" },
- { 46477, "HealthNow New York Inc" },
- { 46478, "DIAL GmbH" },
- { 46479, "Unidesk Corporation" },
- { 46480, "Modular Mining Systems, Inc." },
- { 46481, "Desjardins Groupe Technologies" },
- { 46482, "Netki, Inc." },
- { 46483, "ERLPhase Power Technologies Ltd" },
- { 46484, "HERE North America, LLC" },
- { 46485, "Guy's and St Thomas' NHS Foundation Trust" },
- { 46486, "Dedrone GmbH" },
- { 46487, "Stripe, Inc." },
- { 46488, "WALSER-NET" },
- { 46489, "TGR - Tecnologia para Gest\0303\0243o de Redes, S.A." },
- { 46490, "Captel" },
- { 46491, "Valerio Morozzo" },
- { 46492, "Conevity Solutions Inc" },
- { 46493, "UAB \"GKF\"" },
- { 46494, "Assimil8 Limited" },
- { 46495, "European Dynamics SA" },
- { 46496, "DEPARTAMENTO ADMINISTRATIVO DE CIENCIA, TECNOLOGIA E INNOVACION - COLCIENCIAS" },
- { 46497, "ISS BRASIL LTDA" },
- { 46498, "Jiangsu Sinolte Wireless Technology Co., Ltd. " },
- { 46499, "ICD CO.,LTD" },
- { 46500, "Trukai Industries Limited" },
- { 46501, "Didactum\0302\0256 Ltd. Deutschland (formerly 'Vutlan sro')" },
- { 46502, "TASS" },
- { 46503, "Quench Worldwide Limited" },
- { 46504, "Stolt-Nielsen Limited" },
- { 46505, "PLAS-TEK Ltd." },
- { 46506, "Systems Integrated" },
- { 46507, "Simpress Comercio Locacao e Servicos" },
- { 46508, "Glen Raven, Inc." },
- { 46509, "Oncology and Hematology Specialists" },
- { 46510, "Wake County Public School System" },
- { 46511, "New Telecom Solutions LLC" },
- { 46512, "Times Internet Limited" },
- { 46513, "ZorgNed Automatisering BV" },
- { 46514, "Mhashim Ltd" },
- { 46515, "Wolf-Medizintechnik GmbH" },
- { 46516, "Ante Grup Elektrik Elektronik Bili\0305\0237im \0304\0260n\0305\0237aat Dan\0304\0261\0305\0237manl\0304\0261k San. ve Tic. Ltd. \0305\0236ti." },
- { 46517, "FitX Deutschland GmbH" },
- { 46518, "SPD Electrical Engineers (Pty) Ltd" },
- { 46519, "Albertslund Kommune" },
- { 46520, "Hitachi Industry & Control Solutions, Ltd." },
- { 46521, "PMC - PERIPHERIQUES ET MATERIELS DE CONTROLE" },
- { 46522, "Dino Occhialini" },
- { 46523, "Bridgetec Corp." },
- { 46524, "Linkbroad Technology Beijing Corporation Limited" },
- { 46525, "Hedvig Inc." },
- { 46526, "Moldeo AB" },
- { 46527, "Trans Link Systems B.V." },
- { 46528, "Shanghai Chuxun Information Technology Co.,Ltd." },
- { 46529, "ldap4mail" },
- { 46530, "R-SYS s.r.o." },
- { 46531, "PGE Polska Grupa Energetyczna S.A." },
- { 46532, "Hinchingbrooke Hospital NHS Health Care Trust" },
- { 46533, "Open Source System" },
- { 46534, "Arx One" },
- { 46535, "CosmoKey GmbH & Co. KG" },
- { 46536, "Textel Marimon s.a." },
- { 46537, "Yodel Delivery Network Limited" },
- { 46538, "Pioneers Memorial Healthcare" },
- { 46539, "Virtual Network Element, Inc." },
- { 46540, "VSSUT" },
- { 46541, "Seneca Data Distributors, Inc." },
- { 46542, "Mountain Blue Cancer Care Center " },
- { 46543, "CNIAP - Guinea Ecuatorial" },
- { 46544, "Axion Technologies Ltd." },
- { 46545, "Rechtsanwaltskanzlei Schaalo" },
- { 46546, "Impavid LLC" },
- { 46547, "BILD GmbH & Co. KG" },
- { 46548, "Secvice Information Technologies Private Limited" },
- { 46549, "Messer Information Services GmbH" },
- { 46550, "Dufoort" },
- { 46551, "Amprion GmbH" },
- { 46552, "Eltham College" },
- { 46553, "Amsterdamtelecom Ltd." },
- { 46554, "Anthon Romanov" },
- { 46555, "Kostya.Pro" },
- { 46556, "L.D. Lutum" },
- { 46557, "Scale Genius Inc." },
- { 46558, "FutoIn" },
- { 46559, "ESC - Electronic Service Center GbR" },
- { 46560, "Cox Communications Inc - Engineering" },
- { 46561, "BHS Sonthofen GmbH" },
- { 46562, "Revenue Management Solutions, LLC" },
- { 46563, "Virgin Islands Oncology & Hematology,PC" },
- { 46564, "Entera AS" },
- { 46565, "Wiollo Sp. z o.o." },
- { 46566, "Holb\0303\0246k Kommune" },
- { 46567, "DIROX" },
- { 46568, "Moqom Limited" },
- { 46569, "HybridDigital" },
- { 46570, "Mithril Informatique" },
- { 46571, "Fruit of the Loom" },
- { 46572, "Comact Equipment Inc." },
- { 46573, "Stefan van Someren" },
- { 46574, "Encore Systems, LLC" },
- { 46575, "WorkCover Queensland" },
- { 46576, "NFWare Inc." },
- { 46577, "Cloudstead, Inc." },
- { 46578, "Gereltei Systems" },
- { 46579, "Pivotal Cloud Foundry" },
- { 46580, "Braincoolant Oy" },
- { 46581, "MalariaGEN" },
- { 46582, "Robert-Bosch-Krankenhaus GmbH" },
- { 46583, "Linoma Software" },
- { 46584, "French Lick Resort" },
- { 46585, "StrathTech" },
- { 46586, "ProSiebenSat.1 Media SE" },
- { 46587, "Institute of Low Temperature and Structure Research, Polish Academy of Sciences" },
- { 46588, "Aptitude Technologies" },
- { 46589, "Stifel Financial Corp" },
- { 46590, "suretap wallet lp" },
- { 46591, "Auditoria y Consultoria de Privacidad y Seguridad, S.L." },
- { 46592, "Gebr. Hoffmann Werkzeugmaschinen GmbH" },
- { 46593, "JuntoTelecom" },
- { 46594, "Matthew Wynn" },
- { 46595, "smartbits" },
- { 46596, "Hazelnut Software Ltd" },
- { 46597, "OW2 Consortium" },
- { 46598, "Industrielle Alliance Valeurs mobili\0303\0250res inc." },
- { 46599, "UAB Erisata" },
- { 46600, "Mersoft Corporation" },
- { 46601, "Inform-Mobil" },
- { 46602, "kt Corporation" },
- { 46603, "Xeron Universal Technologies" },
- { 46604, "NetIndia Private Limited" },
- { 46605, "WALLYS COMMUNICATIONS SDN BHD" },
- { 46606, "Cisco Systems India Private Limited" },
- { 46607, "VetRay N" },
- { 46608, "SoftLab\0342\0200\0223NSK Co., Ltd." },
- { 46609, "The Wireless Innovation Forum" },
- { 46610, "Sensorpoint, LLC" },
- { 46611, "St Vincents Health Australia (NSW)" },
- { 46612, "DV Impex, Ltd" },
- { 46613, "JSC \"SPO Angstrem\"" },
- { 46614, "BBM spol. s r. o." },
- { 46615, "WirelessCar" },
- { 46616, "Anghel F. Dan-Alexandru PFA" },
- { 46617, "Helse Nord IKT" },
- { 46618, "AXEL" },
- { 46619, "Centre Hospitalier Emile Mayrisch" },
- { 46620, "Wolseley plc" },
- { 46621, "Thales Services France Toulouse" },
- { 46622, "FLAG Solutions S.L." },
- { 46623, "Trunomi, Inc." },
- { 46624, "Flexoptix GmbH" },
- { 46625, "wingtop co., ltd" },
- { 46626, "zibernetics" },
- { 46627, "Init Corporation" },
- { 46628, "SC 4 WAVE BRO SRL" },
- { 46629, "Joe Pitt" },
- { 46630, "Dominique Dor" },
- { 46631, "DeviousOps" },
- { 46632, "Encinitas Country Day School" },
- { 46633, "Oncology San Antonio" },
- { 46634, "NIvetti Systems Private Limited" },
- { 46635, "INTERSCHALT maritime systems AG" },
- { 46636, "Honorardozent Peter Kruse" },
- { 46637, "RaulWalter LLC" },
- { 46638, "City of Sunrise" },
- { 46639, "Jan Skogqvist" },
- { 46640, "Caixa Economica Federal" },
- { 46641, "MeterBee" },
- { 46642, "National Documentation Centre" },
- { 46643, "kittenberger.org" },
- { 46644, "ZettaLogs" },
- { 46645, "Aeronix" },
- { 46646, "Wavelab Inc." },
- { 46647, "Michael G. Sullivan (MGS)" },
- { 46648, "Brain4Net, Inc." },
- { 46649, "PTPd project" },
- { 46650, "Humboldt Solutions Ltd" },
- { 46651, "Dantherm Cooling A/S" },
- { 46652, "Sertel Electronics UK Ltd" },
- { 46653, "Raymond Chung Industries Corporation" },
- { 46654, "Future Infrastructures Online Ltd." },
- { 46655, "Innofidei Technologies Inc." },
- { 46656, "Polskie Koleje Pa\0305\0204stwowe S.A." },
- { 46657, "EKCR" },
- { 46658, "AssetOwl" },
- { 46659, "BBR Verkehrstechnik GmbH" },
- { 46660, "Volvo Group Telematics" },
- { 46661, "Bucherer AG" },
- { 46662, "Pointek " },
- { 46663, "TORRING SYSTEMS CORP" },
- { 46664, "Novatronic" },
- { 46665, "Reshin" },
- { 46666, "NPF Modem, Ltd." },
- { 46667, "Limited Liability Company \0302\0253ICBCOM\0302\0273" },
- { 46668, "ENX Association" },
- { 46669, "Job Corps" },
- { 46670, "OCTAGON computer&communication" },
- { 46671, "Medical Specialists of Fairfield, LLC." },
- { 46672, "PrimeDesign" },
- { 46673, "Minoris" },
- { 46674, "cantaa GmbH" },
- { 46675, "Essential Energy" },
- { 46676, "Weir Shared Services Ltd" },
- { 46677, "XATU" },
- { 46678, "naksitrallid.com" },
- { 46679, "Bistum W\0303\0274rzburg" },
- { 46680, "Control Techniques" },
- { 46681, "SV Informatik GmbH" },
- { 46682, "Applied Optoelectronics, Inc." },
- { 46683, "OkAlfred (formerly 'Zdravec Bulgaria Ltd')" },
- { 46684, "Nazessen" },
- { 46685, "Maag Informatik" },
- { 46686, "Document Storage Systems, Inc." },
- { 46687, "Qualicorp SA" },
- { 46688, "Karl Camilleri" },
- { 46689, "Entria LLC" },
- { 46690, "12Sided Technology, LLC" },
- { 46691, "IDOBJECT" },
- { 46692, "Ripple" },
- { 46693, "BestCAS Ltd" },
- { 46694, "KoreLogic, Inc." },
- { 46695, "Cancer Care of West Central Ohio" },
- { 46696, "MastMinder Ltd" },
- { 46697, "Unimar, Inc." },
- { 46698, "Cybersales a.s." },
- { 46699, "HCit Consultant" },
- { 46700, "ICTrex" },
- { 46701, "State Historical Museum" },
- { 46702, "Control Service do Brasil Ltda." },
- { 46703, "aBjorne" },
- { 46704, "Salib Oncology Hematology" },
- { 46705, "Maestria en Seguridad Informatica Aplicada - ESPOL" },
- { 46706, "Wowza Media Systems, LLC" },
- { 46707, "Neocoretech SAS" },
- { 46708, "Action for Children" },
- { 46709, "BDO Canada LLP" },
- { 46710, "Network Time Foundation" },
- { 46711, "DoubleNegative.eu" },
- { 46712, "Open Infrastructure" },
- { 46713, "Datahealth" },
- { 46714, "Cesa Inc" },
- { 46715, "Bioptick\0303\0241 laborato\0305\0231 s.r.o." },
- { 46716, "TARGOBANK AG & Co. KGaA" },
- { 46717, "Ibys Technologies S.A." },
- { 46718, "Sea Island Systems, Inc." },
- { 46719, "dtsi" },
- { 46720, "LightFactor" },
- { 46721, "Cancer Care Center, PC" },
- { 46722, "Merge Security" },
- { 46723, "United Educators Credit Union" },
- { 46724, "Ferrograph Limited" },
- { 46725, "Swift MT" },
- { 46726, "U.S. Anesthesia Partners, Inc." },
- { 46727, "SOFTEK GLOBAL EDESIGN S DE RL DE CV" },
- { 46728, "Heksagon Group Cy Ltd" },
- { 46729, "Growing Energy Labs, Inc." },
- { 46730, "Route Weaver LLC" },
- { 46731, "Institut fuer medizinische und pharmazeutische Pruefungsfragen" },
- { 46732, "Vedang Radio Technology Pvt. Limited" },
- { 46733, "DOM-P Zrt" },
- { 46734, "TCCC" },
- { 46735, "Silhouette International Schmied AG" },
- { 46736, "Powertech IT Services S.R.L." },
- { 46737, "Amphinicy Technologies" },
- { 46738, "Beeler IT Services" },
- { 46739, "RONIT. N.THAKOR " },
- { 46740, "Zendesk, Inc" },
- { 46741, "Aspect Enterprise Solutions Inc." },
- { 46742, "Global Biodiversity Information Facility (GBIF)" },
- { 46743, "Technology Architects LLC" },
- { 46744, "Transaction Technologies Pte Ltd" },
- { 46745, "Joe Thielen" },
- { 46746, "Weill Cornell Medicine" },
- { 46747, "The Christ Hospital Hem Onc " },
- { 46748, "Alliance Technology Group, LLC" },
- { 46749, "121 Marketing Services Group, Inc." },
- { 46750, "MobilSign Ltd." },
- { 46751, "Carrizo Oil & Gas, Inc." },
- { 46752, "THE MINNITI CENTER FOR MEDICAL ONCOLOGY & HEMATOLOGY" },
- { 46753, "Hematology Oncology Clinic, LLP" },
- { 46754, "NETFOX AG" },
- { 46755, "Nexgen Oncology" },
- { 46756, "Michael Oberdorf IT-Consulting" },
- { 46757, "DeMoulas Market Basket, Inc." },
- { 46758, "CarMax" },
- { 46759, "CoverMyMeds" },
- { 46760, "Teksush.com" },
- { 46761, "Groupe JVS" },
- { 46762, "Atos IT Solutions and Services GmbH" },
- { 46763, "alfer aluminium Gesellschaft mbH" },
- { 46764, "HealthInsight" },
- { 46765, "Sviaz-Bank" },
- { 46766, "Creatcomm Technology" },
- { 46767, "CarMax, Inc" },
- { 46768, "Symphony Communication Services LLC" },
- { 46769, "St. Leonard's Community Services" },
- { 46770, "Benz Dataconsulting" },
- { 46771, "Atos IT Services Sp. z o.o." },
- { 46772, "Brig Center for Cancer Care and Survivorship" },
- { 46773, "Voss Kommunikasjon AS" },
- { 46774, "K4Connect" },
- { 46775, "Bourgeois Bits LLC" },
- { 46776, "Westchester Cancer Care" },
- { 46777, "Air New Zealand" },
- { 46778, "NTx Back Office Consulting Group" },
- { 46779, "Belgian Supreme Administrative Court" },
- { 46780, "Leo Angelo" },
- { 46781, "Sasola Limited" },
- { 46782, "John Holland PTY LTD" },
- { 46783, "Nephos6" },
- { 46784, "COSMOVISION Co., Ltd." },
- { 46785, "Comark Communications LLC" },
- { 46786, "blue-beam.de" },
- { 46787, "Sony Computer Entertainment Shanghai Ltd." },
- { 46788, "Xabyss Inc." },
- { 46789, "Rains Corp." },
- { 46790, "TOYOTA MOTOR CORPORATION" },
- { 46791, "Stephan Fiebrandt" },
- { 46792, "ISON Technology Co., Ltd" },
- { 46793, "ASAT Co., Ltd." },
- { 46794, "Decision Detective Corporation" },
- { 46795, "Organization for Security and Co-operation in Europe" },
- { 46796, "Bedrock Automation Platforms, Inc." },
- { 46797, "The self-financing Science Information Center for New Technologies under State Tax Committee of the Republic of Uzbekistan" },
- { 46798, "RBS Services (Switzerland) Ltd " },
- { 46799, "Interblock d.d." },
- { 46800, "Digitoll Information Technology and Servicing Ltd." },
- { 46801, "The Hut Group" },
- { 46802, "The Business Clinic Ltd" },
- { 46803, "BROCELIA" },
- { 46804, "Himnark CJSC" },
- { 46805, "Oncology Consultants" },
- { 46806, "Mid Florida Hematology Oncology " },
- { 46807, "Motiv Telecom Group" },
- { 46808, "Fall River School District" },
- { 46809, "KB PROMSVYAZ" },
- { 46810, "Stockton University" },
- { 46811, "L'Imprimerie" },
- { 46812, "Konsortium ICT Pantai Timur" },
- { 46813, "Sunbird Software, Inc." },
- { 46814, "SC3 Technologies O\0303\0274" },
- { 46815, "Third Point LLC" },
- { 46816, "HELM AG" },
- { 46817, "Atam Holdings" },
- { 46818, "Systemhaus Scheuschner GmbH" },
- { 46819, "Attenda Ltd." },
- { 46820, "Telekom Malaysia Berhad" },
- { 46821, "Commandus" },
- { 46822, "Zhuhai Kingsoft Office Software Co Ltd" },
- { 46823, "Siselectron Technology Ltd" },
- { 46824, "Certly, Inc." },
- { 46825, "Loop Technologies Limited" },
- { 46826, "OptimalMethods Ltd." },
- { 46827, "Affix Technology Co., Ltd." },
- { 46828, "Sea and Air Technology, S.L." },
- { 46829, "GLOCK Ges.m.b.H." },
- { 46830, "LearnConsult - DI Meitz & Ing. Pock OG" },
- { 46831, "GRAUPNER medical solutions GmbH" },
- { 46832, "Heylige FRau Latte" },
- { 46833, "Synapses Technologies, LLC" },
- { 46834, "Martin GmbH f\0303\0274r Umwelt- und Energietechnik" },
- { 46835, "rf152" },
- { 46836, "Bilfinger GreyLogix GmbH" },
- { 46837, "AZD Praha s.r.o." },
- { 46838, "Swaffer Consulting Ltd." },
- { 46839, "RED ELECTRICA DE ESPA\0303\0221A SAU" },
- { 46840, "Christophorus Club e.V." },
- { 46841, "Hwacheon Machinery Europe GmbH" },
- { 46842, "Hamburger Software GmbH & Co. KG" },
- { 46843, "Newfield Automation Ltd." },
- { 46844, "Dreamtime.net (Thailand) Co., Ltd." },
- { 46845, "Interlink INC" },
- { 46846, "FLOPNET" },
- { 46847, "VALLEY MEDICAL & SURGICAL CLINIC" },
- { 46848, "Lavelle Networks India Private Limited" },
- { 46849, "Irving Independent School District" },
- { 46850, "Tula State Center of Information Technology" },
- { 46851, "Terremark" },
- { 46852, "viagogo AG" },
- { 46853, "PAC Enterprises" },
- { 46854, "Hagenberger Kreis zur F\0303\0266rderung der digitalen Sicherheit" },
- { 46855, "ShowCase PRO Tecnologia LTDA" },
- { 46856, "ZPEG, Inc." },
- { 46857, "Park Controls & Communications (P) Ltd." },
- { 46858, "Dgoujard" },
- { 46859, "Guangdong Quantum Technology Co., Ltd" },
- { 46860, "Bittacle Consulting Limited" },
- { 46861, "JVCKENWOOD Corporation" },
- { 46862, "Digital Life Promotion Association" },
- { 46863, "Bosch Thermotechnik GmbH" },
- { 46864, "Embedtronics Oy" },
- { 46865, "IS4U, s.r.o." },
- { 46866, "Virdata NV" },
- { 46867, "Synthetel Corporation" },
- { 46868, "Secure Energy Services" },
- { 46869, "Torchmind" },
- { 46870, "relaxt confusion labs e.U." },
- { 46871, "Magic Mike, Ltd" },
- { 46872, "Bimex Energy AG" },
- { 46873, "y1s2" },
- { 46874, "Wavenet sprl" },
- { 46875, "prodot GmbH" },
- { 46876, "GE Lighting" },
- { 46877, "ATB Financial" },
- { 46878, "PermaGreen Supreme, Inc." },
- { 46879, "Lengvarsky.com" },
- { 46880, "Technology Kitchen Corporation" },
- { 46881, "henz.co" },
- { 46882, "LSTI" },
- { 46883, "Capsicum Business Architects" },
- { 46884, "Freie ev. Gemeinde Giessen" },
- { 46885, "TwoFive, Inc." },
- { 46886, "Beken Learning Systems, Inc." },
- { 46887, "Bulletin.net Ltd" },
- { 46888, "KRDS" },
- { 46889, "Gravity Academy Engineering " },
- { 46890, "SOLUM Co., Ltd." },
- { 46891, "fmad engineering llc" },
- { 46892, "TwelveBaud Studios, LLC" },
- { 46893, "Antelope Enterprises" },
- { 46894, "Hanwha S&C" },
- { 46895, "NexDefense, Inc." },
- { 46896, "UNIACC Electronic Technology Ltd. of Suzhou" },
- { 46897, "Virtual Hold Technology, LLC" },
- { 46898, "Hewlett-Packard (Schweiz) GmbH" },
- { 46899, "TDK LAMBDA LTD" },
- { 46900, "TiePie engineering" },
- { 46901, "Wilhelmsen Loom Consulting" },
- { 46902, "Keegan Moodley Ltd " },
- { 46903, "DE-CIX Management GmbH" },
- { 46904, "Sepura plc" },
- { 46905, "KTI R\0303\0201DIO, spol. s r.o." },
- { 46906, "Enghouse Networks Nordics AB" },
- { 46907, "Qognify LTD" },
- { 46908, "Ascot Industrial" },
- { 46909, "Centric Housing & Healthcare" },
- { 46910, "AIC S.A." },
- { 46911, "KERLINK" },
- { 46912, "Nassauische Heimstaette Wohnungs- und Entwicklungsgesellschaft mbH" },
- { 46913, "Hotspot Tiefenort" },
- { 46914, "Administration des Ponts et Chauss\0303\0251es" },
- { 46915, "raffel.biz" },
- { 46916, "Aviva Voice Systems and Services SL" },
- { 46917, "PC-TipTop" },
- { 46918, "GRUPO REVENGA " },
- { 46919, "Aadi Network Tools" },
- { 46920, "DEVISE FUTURES - IT SOLUTIONS, LDA" },
- { 46921, "Universidade Federal de Sao Joao del-Rei" },
- { 46922, "Wolf GmbH" },
- { 46923, "LG&E-KU LLC" },
- { 46924, "Oncology Specialists of Charlotte, PA" },
- { 46925, "EEBus Initiative e.V." },
- { 46926, "Midas Green Technologies" },
- { 46927, "INVITE Networks Incorporated" },
- { 46928, "r0ck.net" },
- { 46929, "Uzma Iqbal MD PA" },
- { 46930, "Sandelman Software Works" },
- { 46931, "Welch Allyn Singapore Pte Ltd" },
- { 46932, "OAO NEFAZ" },
- { 46933, "Business&Decision" },
- { 46934, "AFSOC" },
- { 46935, "Provinzial NordWest" },
- { 46936, "Ingenieurb\0303\0274ro Eggimann" },
- { 46937, "jduprat.net" },
- { 46938, "Frederick Oncology Hematology Associates" },
- { 46939, "Sentinel Technologies" },
- { 46940, "Quantic Telecom" },
- { 46941, "Noom, Inc." },
- { 46942, "L\0303\0266wenfelsen UG (haftungsbeschr\0303\0244nkt)" },
- { 46943, "STC Systems" },
- { 46944, "Beijing Yanglian technology co., LTD" },
- { 46945, "Rafako S.A." },
- { 46946, "Transports Publics Genevois" },
- { 46947, "Meplan GmbH" },
- { 46948, "United Airlines, Inc." },
- { 46949, "Moore Family" },
- { 46950, "FRZ Uni Leipzig" },
- { 46951, "\0344\0270\0255\0345\0261\0261\0345\0244\0247\0345\0255\0246\0351\0231\0204\0345\0261\0236\0347\0254\0254\0344\0270\0200\0345\0214\0273\0351\0231\0242 (First Affiliated Hospital of Sun Yat-sen)" },
- { 46952, "SecureAuth Corporation " },
- { 46953, "Active8" },
- { 46954, "Institut Puig Castellar" },
- { 46955, "Wolfnet" },
- { 46956, "Institute of Cosmophysical Research and Aeronomy of the Siberian Branch of the Russian Academy of Sciences" },
- { 46957, "setelsa" },
- { 46958, "New Cloud Technologies Ltd." },
- { 46959, "Jaxageto" },
- { 46960, "mrn sa (formerly 'mrn lda')" },
- { 46961, "emineo AG" },
- { 46962, "Novaris Ltd." },
- { 46963, "Shenzhen United Innovation Automatic Control System Co., Ltd." },
- { 46964, "Yandik" },
- { 46965, "Wordery" },
- { 46966, "KIRACON Ltd." },
- { 46967, "Thompson Rivers University" },
- { 46968, "Triad RF Systems" },
- { 46969, "R&D Software Solutions srl" },
- { 46970, "Borealis" },
- { 46971, "GKeS" },
- { 46972, "ICS Industries Pty Ltd" },
- { 46973, "Datalab Software GmbH" },
- { 46974, "EdgeTheory LLC" },
- { 46975, "MediGroup" },
- { 46976, "Rhebo AG" },
- { 46977, "ELTEC Elektronik AG" },
- { 46978, "The Akron Holding" },
- { 46979, "Q&D Solutions" },
- { 46980, "Ondics GmbH" },
- { 46981, "Netclient as" },
- { 46982, "Smart Concepts B.V." },
- { 46983, "inIT - Institute Industrial IT, Ostwestfalen-Lippe University of Applied Sciences" },
- { 46984, "SABO Elektronik GmbH" },
- { 46985, "Marcus Portmann" },
- { 46986, "Meister Rechtsanwaelte" },
- { 46987, "Cancer & Blood Disorders Treatment Center" },
- { 46988, "CGI Deutschland" },
- { 46989, "Systemservice Nordfriesland" },
- { 46990, "ACCOLADE ELECTRONICS PVT. LTD." },
- { 46991, "Universitaetsmedizin Goettingen" },
- { 46992, "IP CINT" },
- { 46993, "TDP s.r.o." },
- { 46994, "ETS Schick" },
- { 46995, "Tantalus Systems" },
- { 46996, "Claus Queck GmbH" },
- { 46997, "MyQuickCloud" },
- { 46998, "CEHL" },
- { 46999, "RAK" },
- { 47000, "Converling Group B.V." },
- { 47001, "LCS Co.Ltd" },
- { 47002, "System Controls Technology Solutions Private Limited" },
- { 47003, "JSC VELAN" },
- { 47004, "Secucloud Network GmbH" },
- { 47005, "Fort Lewis College" },
- { 47006, "TransneftEnergy, LLC" },
- { 47007, "Ascent Resources" },
- { 47008, "MBDA France" },
- { 47009, "ISIS Bilisim Teknolojileri San. Tic. Ltd. Sti." },
- { 47010, "UK Ministry of Defence" },
- { 47011, "Ozarks Community Hospital" },
- { 47012, "SIMP" },
- { 47013, "APTVISION LIMITED" },
- { 47014, "BBS1 Mainz" },
- { 47015, "Zeye Solutions" },
- { 47016, "BlackSands Inc" },
- { 47017, "Qumulo Inc." },
- { 47018, "ZeuSWarE GmbH" },
- { 47019, "ApexSQL LLC" },
- { 47020, "Flor Szoftver Ltd." },
- { 47021, "Real Time Automation, Inc." },
- { 47022, "TSI Automacao" },
- { 47023, "Xolarsoft" },
- { 47024, "Catalyze" },
- { 47025, "Charles River Analytics, Inc." },
- { 47026, "Paraqum Technologies (Private) Limited" },
- { 47027, "Quavant Networks, Inc." },
- { 47028, "Bund der Pfadfinderinnen und Pfadfinder e.V." },
- { 47029, "Thomas Tague" },
- { 47030, "HAN Networks Co., Ltd" },
- { 47031, "Shenzhen Eunicum Electric Co., Ltd." },
- { 47032, "Shanghai Yamu Technology Limited" },
- { 47033, "LLC \"66 Parallel\"" },
- { 47034, "CARS" },
- { 47035, "trash.net" },
- { 47036, "Ecosoft B.V. (trademark is Vidicode)" },
- { 47037, "Jubic Oy" },
- { 47038, "Universit\0303\0251 de Namur (UNamur)" },
- { 47039, "312Telephony" },
- { 47040, "ChuckStarter" },
- { 47041, "gurtzick.net" },
- { 47042, "Neragon Networks LTD" },
- { 47043, "Illusion Ltd." },
- { 47044, "Charter Court Financial Services" },
- { 47045, "MartinLefebvre.com" },
- { 47046, "Bucks New University" },
- { 47047, "Phoenix Home" },
- { 47048, "Webnii" },
- { 47049, "EndFirst LLC" },
- { 47050, "The AREDN Project" },
- { 47051, "Virtu Financial LLC" },
- { 47052, "SK Planet" },
- { 47053, "SOUTHEAST ASIA JOINT STOCK COMMERCIAL BANK (SeABank)" },
- { 47054, "CJSC Transmashholding" },
- { 47055, "GouldFLP" },
- { 47056, "SunEdison Inc" },
- { 47057, "CityLink Data Co,.Ltd" },
- { 47058, "AlfaSix Tecnologia" },
- { 47059, "Earth2 Software Pty Ltd." },
- { 47060, "elementmedia GmbH" },
- { 47061, "Shenzhen headsun technology co.,ltd." },
- { 47062, "Isha Foundation" },
- { 47063, "ZWAY CO.,LTD." },
- { 47064, "St. Joseph's Anglo-Chinese Primary School" },
- { 47065, "TACACS.net, Inc." },
- { 47066, "VISQUAL Technologies" },
- { 47067, "xlea.se GmbH" },
- { 47068, "Optelix (Pty) Ltd" },
- { 47069, "Economia per i Cittadini" },
- { 47070, "Orell Fuessli Holding AG" },
- { 47071, "Flash Systems" },
- { 47072, "567.dk" },
- { 47073, "Layka Soluciones" },
- { 47074, "TRONTEQ Electronic" },
- { 47075, "PROJECT-M" },
- { 47076, "Bridgeway Security Solutions" },
- { 47077, "Device Insight GmbH" },
- { 47078, "JAPAN TELECOMMUNICATION ENGINEERING SERVICE CO., LTD." },
- { 47079, "Mott MacDonald" },
- { 47080, "EDV-Beratung Baumgarten GmbH" },
- { 47081, "Aragon Institute of Engineering Research" },
- { 47082, "Mobiquithings" },
- { 47083, "Advanced Vision Technology LTD" },
- { 47084, "Stade Toulousain Rugby" },
- { 47085, "Controles Inteligentes S.A.S" },
- { 47086, "Olmsted County Minnesota" },
- { 47087, "Masonic Villages of the Grand Lodge of PA" },
- { 47088, "Pro-hosting s.r.o." },
- { 47089, sminmpec_unknown }, /* (Added by Wireshark) */
- { 47090, "Exdev" },
- { 47091, "Cancer and Blood Specialist of Northern Virginia, PC" },
- { 47092, "Tangible Trade" },
- { 47093, "DeMaTech HB" },
- { 47094, "Sielte S.p.A." },
- { 47095, "Subtopia Ltd" },
- { 47096, "Unisphone" },
- { 47097, "ARDIAN" },
- { 47098, "Lloyd Industries Inc." },
- { 47099, "G4S Security Systems (Hungary) Ltd." },
- { 47100, "Linkscreens SRL" },
- { 47101, "DAS-Online" },
- { 47102, "Global Technology Solutions" },
- { 47103, "PLC Technology, LLC" },
- { 47104, "Agentia pentru Agenda Digitala a Romaniei" },
- { 47105, "Together Bulgaria" },
- { 47106, "Spearline Labs" },
- { 47107, "Shaw Academy" },
- { 47108, "Beeper Communications Ltd." },
- { 47109, "Abaco Systems" },
- { 47110, "Agenzia per l'Italia Digitale" },
- { 47111, "Baker Hill Solutions, LLC" },
- { 47112, "Louisiana Division of Administration" },
- { 47113, "Aviacomm Inc." },
- { 47114, "WOM Engineering" },
- { 47115, "The Star Entertainment Group Limited" },
- { 47116, "NPL Management Ltd" },
- { 47117, "Spaulding Clinical" },
- { 47118, "Asian Arts Talents Foundation" },
- { 47119, "SCIFI" },
- { 47120, "Solustic - Solucoes em Tecnologia" },
- { 47121, "TDCH A/S" },
- { 47122, "BVL Group Ltd" },
- { 47123, "CODEC CO.,LTD." },
- { 47124, "Schmied Elektronik & Software" },
- { 47125, "IDEAS S.R.L." },
- { 47126, "earthTV network GmbH" },
- { 47127, "Yoti Ltd" },
- { 47128, "Insobis GmbH" },
- { 47129, "SECURA Insurance Companies" },
- { 47130, "Al Yah Satellite Communication Company PJSC (Yahsat)" },
- { 47131, "ViktorBalogh" },
- { 47132, "Thinking Automation, Inc." },
- { 47133, "Research Capital Group, Inc." },
- { 47134, "FROG CELLSAT LIMITED" },
- { 47135, "MotionLED Technology Ltd. " },
- { 47136, "4S Information Technologies" },
- { 47137, "Andre Grosse Bley" },
- { 47138, "Noble 3D Printers, LLC" },
- { 47139, "MaTelSo GmbH" },
- { 47140, "DSG Systems AS" },
- { 47141, "PT. WIRAKY NUSA TELEKOMUNIKASI" },
- { 47142, "CoralTree Systems" },
- { 47143, "iSnapp" },
- { 47144, "CommerceHub" },
- { 47145, "Telonic Berkeley Inc" },
- { 47146, "Unassigned" },
- { 47147, "Avionics Interface Technologies" },
- { 47148, "Winston Brands Inc." },
- { 47149, "Adaptrum Inc." },
- { 47150, "Virginia Cancer Institute" },
- { 47151, "CoinBau GmbH" },
- { 47152, "Dovecot Oy" },
- { 47153, "Brunke electronic" },
- { 47154, "Stabilitas" },
- { 47155, "VINTEGRIS SL" },
- { 47156, "Haus Michael auf Draht e.V." },
- { 47157, "Boston Scientific Corporation" },
- { 47158, "Clipcomm Inc." },
- { 47159, "Jevons Global Pty Ltd" },
- { 47160, "Centorrino Technologies" },
- { 47161, "Stuttgarter Haus- und Grundbesitzerverein e. V." },
- { 47162, "Ote SA (Hellenic Telecommunications Organisation)" },
- { 47163, "Banka Koper d.d." },
- { 47164, "Ciudad del Motor de Aragon, SA" },
- { 47165, "Self Esteem Brands" },
- { 47166, "Digital Insyte, LLC" },
- { 47167, "AB LITGRID" },
- { 47168, "Guangzhou Yinxun Comm. Tech. Co., LTD" },
- { 47169, "JSS Technologies, LLC" },
- { 47170, "Skylark Technology Inc." },
- { 47171, "Maximus, Inc." },
- { 47172, "OMNITEC SOLUTIONS, Inc." },
- { 47173, "Openwave Messaging" },
- { 47174, "Compute Canada" },
- { 47175, "Cosylab d.d." },
- { 47176, "gbltech.net" },
- { 47177, "Diplomat Pharmacy, Inc." },
- { 47178, "Seneca Mortgage Servicing LLC" },
- { 47179, "Infosec Global Inc" },
- { 47180, "Unite Control Sp. z o.o." },
- { 47181, "Capella Systems, LLC" },
- { 47182, "Applied Micro Design Inc." },
- { 47183, "Studer Innotec SA" },
- { 47184, "LifeTech" },
- { 47185, "TOPCON CORPORATION" },
- { 47186, "CryoWerx" },
- { 47187, "Global Blue Service Company Austria GmbH" },
- { 47188, "Slovenske elektrarne, a.s." },
- { 47189, "EPICT Italy" },
- { 47190, "HCMI datasharing consortium" },
- { 47191, "Bulat LLC" },
- { 47192, "Central Bank of Ireland" },
- { 47193, "ATICEL - Advanced Tech Cell" },
- { 47194, "Asesoria Telematica Canarias SL" },
- { 47195, "Gradkell Systems, Inc." },
- { 47196, "Hewlett Packard Enterprise" },
- { 47197, "Rainbow Crow" },
- { 47198, "IVALUA SAS" },
- { 47199, "ISEC7" },
- { 47200, "realraum - Verein f\0303\0274r Technik in Kultur und Gesellschaft" },
- { 47201, "Vivid-Hosting, LLC" },
- { 47202, "Top Down Systems Corporation" },
- { 47203, "Flipit Marketing Ltd (formerly 'Reactiv Media Ltd')" },
- { 47204, "\0302\0253\0320\0232\0320\0222\0320\0220\0320\0235\0320\0242\0320\0255\0320\0232\0320\0241\0302\0273 Limited liability partnership (\0302\0253QUANTEX\0302\0273)" },
- { 47205, "Lake Superior State University" },
- { 47206, "Brnit" },
- { 47207, "DAVID Systems GmbH" },
- { 47208, "Ensinger GmbH" },
- { 47209, "MonkZ" },
- { 47210, "ug consult" },
- { 47211, "Ecole Polytechnique F\0303\0251d\0303\0251rale de Lausanne" },
- { 47212, "MailInBlack" },
- { 47213, "Nechi Group" },
- { 47214, "4all Tecnologia" },
- { 47215, "Markus Losco" },
- { 47216, "Mundio Mobile Holding Limited" },
- { 47217, "Einstein Medical Center" },
- { 47218, "websix GmbH" },
- { 47219, "Primary Data" },
- { 47220, "IUT de BEZIERS" },
- { 47221, "\0302\0265E Kunst" },
- { 47222, "Megapath" },
- { 47223, "IQlunch" },
- { 47224, "Maersk Oil" },
- { 47225, "David Garner NZ" },
- { 47226, "Walker Digital Table Systems" },
- { 47227, "EPI-USE Systems" },
- { 47228, "Evolution Gaming, Ltd." },
- { 47229, "SIPO Global" },
- { 47230, "Gafachi, Inc." },
- { 47231, "Foxconn Corporation" },
- { 47232, "RodNoc" },
- { 47233, "TELENT TECHNOLOGY SERVICES LIMITED" },
- { 47234, "Suffolk County Scouts" },
- { 47235, "QXIP" },
- { 47236, "MarSoftware" },
- { 47237, "SYSTEMES INFORMATION HARMONIE MUTUELLE SIHM GIE" },
- { 47238, "AIS Advanced Info Service" },
- { 47239, "Braincarta" },
- { 47240, "Vision Solutions, Inc." },
- { 47241, "DZIECIECY SWIAT Krzysztof Pytko" },
- { 47242, "CoreOS, Inc" },
- { 47243, "Steelcase, Inc." },
- { 47244, "Roku Inc. " },
- { 47245, "Shar3d Interactive" },
- { 47246, "JF Zwobada" },
- { 47247, "SILKAN SA" },
- { 47248, "Ramarc Innovations" },
- { 47249, "Pjano Consulting AB" },
- { 47250, "ProMDM d.o.o." },
- { 47251, "WEBSPH" },
- { 47252, "City of West Lafayette" },
- { 47253, "secureNET Switzerland Inc." },
- { 47254, "Western Australian Internet Association Inc." },
- { 47255, "T&T sistemi srl" },
- { 47256, "INSTER Tecnologia y Comunicaciones" },
- { 47257, "DBC A/S" },
- { 47258, "The Automobile Association (AA PLC)" },
- { 47259, "LUNATICANET" },
- { 47260, "Electrontechnika" },
- { 47261, "OBI Smart Technologies mbH" },
- { 47262, "LSware Inc." },
- { 47263, "HEITZ Jean-Marie" },
- { 47264, "New Zealand Customs Service" },
- { 47265, "HWADAR Technologies Co., Ltd." },
- { 47266, "Prochista Irsa Tech Ltd." },
- { 47267, "OpenSwitch " },
- { 47268, "FARMING BITS, UNIPESSOAL LDA" },
- { 47269, "Pluribus Networks, Inc" },
- { 47270, "Felixfound" },
- { 47271, "Dreamlab Onet.pl SA" },
- { 47272, "Evrotrust JSC" },
- { 47273, "LLAMMA SK" },
- { 47274, "CPK Interior Products" },
- { 47275, "Hirschmann Multimedia B.V." },
- { 47276, "Helsana Versicherungen AG" },
- { 47277, "Hochschule Weihenstephan-Triesdorf" },
- { 47278, "TeskaLabs Ltd" },
- { 47279, "ITCENTER" },
- { 47280, "Imagen Technologies" },
- { 47281, "Auloce S.A." },
- { 47282, "The LinchPinGroup, LLC" },
- { 47283, "PJSC SOLLERS" },
- { 47284, "Cyber IT Solutions" },
- { 47285, "LLC \"Smartbrood\"" },
- { 47286, "UANATACA S.A." },
- { 47287, "Brabbler Secure Message and Data Exchange Aktiengesellschaft" },
- { 47288, "COMMUNITHINGS S.A." },
- { 47289, "Tango Wave" },
- { 47290, "Johnson Computers" },
- { 47291, "Deep Groups" },
- { 47292, "Luxar Tech Inc" },
- { 47293, "STILLITS" },
- { 47294, "NPort Networks, Inc." },
- { 47295, "Marvin G\0303\0274lker" },
- { 47296, "Arctic Paper Kostrzyn S.A." },
- { 47297, "hotelleriesuisse" },
- { 47298, "Pastem Solutions, Ltd." },
- { 47299, "P2 Wireless Technologies Limited" },
- { 47300, "itelligence AG" },
- { 47301, "\"NR\"WEB US" },
- { 47302, "Alnatura Produktions- und Handels GmbH" },
- { 47303, "Moratua Solutions" },
- { 47304, "Ivnosys Soluciones S.L." },
- { 47305, "FoxGuard Solutions" },
- { 47306, "Jasper" },
- { 47307, "IgniteNet" },
- { 47308, "Lanbowan Technology Ltd." },
- { 47309, "Sofia Digital, Ltd." },
- { 47310, "botanic" },
- { 47311, "Seacomp s.r.o." },
- { 47312, "Searidge Technologies" },
- { 47313, "Adenon Bilisim ve Iletisim Tek. San. ve Tic. Ltd. Sti." },
- { 47314, "Torrential Data Solutions, Inc." },
- { 47315, "Wahsega Labs" },
- { 47316, "True Manufacturing" },
- { 47317, "University of Warsaw" },
- { 47318, "Optigo Networks" },
- { 47319, "Riella Systems" },
- { 47320, "Advanced Enterprise Solutions Limited" },
- { 47321, "memit.de" },
- { 47322, "Office IT-Partner Bor\0303\0245s" },
- { 47323, "TrustKo" },
- { 47324, "Mokop, Bartosz Rebe\0305\0233" },
- { 47325, "Suzhou Robot Information Technology Co.,Ltd." },
- { 47326, "yanyuxieyang" },
- { 47327, "Kassen\0303\0244rztliche Vereinigung Nordrhein" },
- { 47328, "Simulity Labs" },
- { 47329, "Stancke Transporte GmbH & Co. KG" },
- { 47330, "Murrelektronik GmbH" },
- { 47331, "Pro:Atria Ltd." },
- { 47332, "Current, powered by GE" },
- { 47333, "Asintel, S.L." },
- { 47334, "trendytech" },
- { 47335, "Superwave Group LLC" },
- { 47336, "Iguana Comunicacions SL" },
- { 47337, "Security On-Demand, Inc." },
- { 47338, "Bob Ziuchkovski Free/Libre and Open Source Software" },
- { 47339, "Hessware GmbH" },
- { 47340, "Handysoft,co.ltd." },
- { 47341, "Syllaba Press International Inc." },
- { 47342, "VITAL WILLIAM CONSEIL" },
- { 47343, "ElektronIT GmbH" },
- { 47344, "COMSYS Communications Systems Service GmbH" },
- { 47345, "Variant" },
- { 47346, "Laurenz Wagner" },
- { 47347, "MIRACL" },
- { 47348, "Centro de Tradi\0303\0247\0303\0265es Nordestinas" },
- { 47349, "Rockwell Automation" },
- { 47350, "Securian Financial Group" },
- { 47351, "Premium Security Broadband" },
- { 47352, "AMPAREX GmbH" },
- { 47353, "Hornasj\0303\0266v\0303\0244genIT" },
- { 47354, "Avista Corporation" },
- { 47355, "Metamarkets" },
- { 47356, "Cress Enterprises" },
- { 47357, "Technology Concepts & Design, Inc." },
- { 47358, "HenzHome Services" },
- { 47359, "stary tec" },
- { 47360, "MAX-TECH" },
- { 47361, "KT&C CO., LTD." },
- { 47362, "Woningstichting Haag Wonen" },
- { 47363, "SYSTEM Development Inc." },
- { 47364, "SIRIETA" },
- { 47365, "Wabtec Railway Electronics" },
- { 47366, "Arturs Plisko" },
- { 47367, "Transport for New South Wales" },
- { 47368, "dainox GmbH" },
- { 47369, "Canal Digital AS" },
- { 47370, "Lorindus" },
- { 47371, "Shine Security Ltd" },
- { 47372, "MariaDB Corporation Ab" },
- { 47373, "Octopod Technology Company Limited" },
- { 47374, "Sitex Inc." },
- { 47375, "Turpeinen" },
- { 47376, "Taqniat Ltd" },
- { 47377, "International Software Systems Inc. (ISSI)" },
- { 47378, "Threema GmbH" },
- { 47379, "iot.nxt" },
- { 47380, "Zagrebacka banka d.d." },
- { 47381, "Omnitelecom" },
- { 47382, "UMAITEK" },
- { 47383, "Kaessbohrer Gel\0303\0244ndefahrzeug AG" },
- { 47384, "Sartorius Mechatronics T+H GmbH" },
- { 47385, "Sveaskog F\0303\0266rvaltnings AB" },
- { 47386, "US Signal" },
- { 47387, "0xBEDA, LLC" },
- { 47388, "SeGuru Corp." },
- { 47389, "State Universities Retirement System" },
- { 47390, "Affinity Credit Union 2013" },
- { 47391, "Green Cubes Technology Corporation" },
- { 47392, "FAWONG" },
- { 47393, "Koalephant Co., Ltd." },
- { 47394, "BKT Elektronik Sp. z o.o." },
- { 47395, "East Central Oncology" },
- { 47396, "CJSC TransProektInzhiniring" },
- { 47397, "IT-Wissen.org" },
- { 47398, "AVP Technology" },
- { 47399, "AMAG Technology" },
- { 47400, "Cottonwood Creek Technologies, Inc." },
- { 47401, "Hotel Internet Services" },
- { 47402, "VALID CERTIFICADORA DIGITAL LTDA" },
- { 47403, "Connect Managed Services" },
- { 47404, "Coligo AB" },
- { 47405, "Brukarkooperativet JAG" },
- { 47406, "Tactic Code AB" },
- { 47407, "Forester IT" },
- { 47408, "Pankraz Elektronik" },
- { 47409, "Javier Pastor" },
- { 47410, "InfraSource Inc." },
- { 47411, "Esferize Comunicaciones SL" },
- { 47412, "SAIFER ASSOCIATES LTD" },
- { 47413, "Caprica Limited" },
- { 47414, "Burgstaller" },
- { 47415, "Voxaware Ltd." },
- { 47416, "3Shape Medical A/S" },
- { 47417, "Associazione La Nostra Famiglia" },
- { 47418, "Key Bridge LLC" },
- { 47419, "Halter AG" },
- { 47420, "2scale GmbH" },
- { 47421, "Cohesity Inc." },
- { 47422, "imito AG" },
- { 47423, "Viamericas Corporation" },
- { 47424, "RPCI Oncology, PC" },
- { 47425, "BASYS Bartsch EDV-Systeme GmbH" },
- { 47426, "Triolan Limited Inc." },
- { 47427, "PULLNET TECHNOLOGY, S.L." },
- { 47428, "Taras Shevchenko National University of Kyiv" },
- { 47429, "NOWMEDIA TECHNOLOGIES" },
- { 47430, "Ifixmail.com" },
- { 47431, "CrowdStrike Inc." },
- { 47432, "Diamond Technologies Inc." },
- { 47433, "DAC System SA" },
- { 47434, "COUNT+CARE GmbH & Co. KG" },
- { 47435, "Roksnet Solutions LTD" },
- { 47436, "Lufthansa Systems GmbH & Co. KG" },
- { 47437, "Vagaro Inc." },
- { 47438, "tofutown gmbh" },
- { 47439, "Alexander Zaigraev" },
- { 47440, "Stellus Technologies" },
- { 47441, "Lagard\0303\0250re Ressources" },
- { 47442, "Highlands Oncology Group" },
- { 47443, "Jockulator Studios North" },
- { 47444, "Milwaukee School of Engineering" },
- { 47445, "Telestream LLC" },
- { 47446, "443 IT" },
- { 47447, "UniqCast" },
- { 47448, "Intis d.o.o." },
- { 47449, "Ryanair Ltd" },
- { 47450, "Cloud Foundry Foundation" },
- { 47451, "OmegaStar" },
- { 47452, "QMS Capital Management LP" },
- { 47453, "Gobierno de Santa Fe" },
- { 47454, "Area d'Inxenieria Telematica - University of Oviedo" },
- { 47455, "Sydved AB" },
- { 47456, "Vodafone NZ Limited" },
- { 47457, "SAS Orbitracs" },
- { 47458, "GIGANET NETWORKING SOLUTIONS LTD" },
- { 47459, "BKM-Micronic Richtfunkanlagen GmbH" },
- { 47460, "LiquidCool Solutions" },
- { 47461, "Lit Consulting" },
- { 47462, "ChangZhou Taiping Communication Technology Co.Ltd" },
- { 47463, "bestrun nanjing, co.ltd" },
- { 47464, "IN WIN Development Inc." },
- { 47465, "CDB Monolit" },
- { 47466, "Lab3 e.V." },
- { 47467, "Allianz Insurance Company Russia OJSC" },
- { 47468, "Trueverit" },
- { 47469, "Presence Technology" },
- { 47470, "CGI Sverige" },
- { 47471, sminmpec_unknown }, /* (Added by Wireshark) */
- { 47472, "Purkinje Inc." },
- { 47473, "Resurs-Komplekt LLC" },
- { 47474, "Sonn & Partner Patentanw\0303\0244lte" },
- { 47475, "ShenZhen Smart Imaging Healthcare Co.,Ltd. " },
- { 47476, "medi.com sp. z o.o." },
- { 47477, "CGS Tower Networks Ltd." },
- { 47478, "NetSection Security" },
- { 47479, "Artec Design LLC" },
- { 47480, "TECO Ltd" },
- { 47481, "RADD Web Studio" },
- { 47482, "ATVIRTUAL.NET KG" },
- { 47483, "Mcallen Oncology" },
- { 47484, "Quest Medical Imaging B.V." },
- { 47485, "ArmySr" },
- { 47486, "Factorial Advance Systems Ltd" },
- { 47487, "Leroy Merlin Polska Sp. z o.o." },
- { 47488, "Nedam ENG. Co., ltd." },
- { 47489, "Techonline Consulting Ltd" },
- { 47490, "Nordea AEP Luxembourg" },
- { 47491, "Feenix Communications" },
- { 47492, "Carnelutti Studio Legale Associato" },
- { 47493, "SHENZHEN GYE TECH CO.,LTD" },
- { 47494, "AO-27 Control Operators Association" },
- { 47495, "alfaleasing" },
- { 47496, "Binary Kitchen e.V." },
- { 47497, "KIZIL Elektronik" },
- { 47498, "Dirk Rossmann GmbH" },
- { 47499, "Beijing NewDigit Technology Co., Ltd." },
- { 47500, "PB Design & Developments Limited" },
- { 47501, "Hargreaves Lansdown Plc" },
- { 47502, "Hiawatha Valley Education District" },
- { 47503, "Ralph Lauren Center for Cancer Care " },
- { 47504, "Zellkraftwerk GmbH" },
- { 47505, "Numonix" },
- { 47506, "AOSense, Inc." },
- { 47507, "CT LAB" },
- { 47508, "Incosys SAS" },
- { 47509, "Herz Group" },
- { 47510, "Signifai, Inc" },
- { 47511, "GPC Asia Pacific" },
- { 47512, "linuxmuster.net e.V." },
- { 47513, "venetex corporation" },
- { 47514, "RAK SYSTEM CO,;LTD" },
- { 47515, "Spectrum Controls, Inc." },
- { 47516, "Certego s.r.l." },
- { 47517, "Nekomit" },
- { 47518, "Openflexo" },
- { 47519, "Fincons SpA" },
- { 47520, "NES Technology Inc" },
- { 47521, "S+T Service & Technique S.A." },
- { 47522, "BTECO LIMITED" },
- { 47523, "VDE Pr\0303\0274f- und Zertifizierungsinstitut GmbH" },
- { 47524, "Rubicon Labs, Inc." },
- { 47525, "Wuliang" },
- { 47526, "A. Farber & Partners Inc." },
- { 47527, "Charbonnier" },
- { 47528, "Softhum" },
- { 47529, "NATIONAL BANK OF GREECE" },
- { 47530, "Softwaretechnik Ges.m.b.H." },
- { 47531, "Analytik Jena AG" },
- { 47532, "Arhides d.o.o." },
- { 47533, "Balyasny Asset management L.P." },
- { 47534, "AutoAlert" },
- { 47535, "Autoridad Certificante de la Oficina Nacional de Tecnolog\0303\0255as de Informaci\0303\0263n" },
- { 47536, "PJSC \"Sumykhimprom\"" },
- { 47537, "SATT PACA Corse" },
- { 47538, "knoefel.xyz" },
- { 47539, "Greendoc Systems Kft." },
- { 47540, "QuadraNet, Inc" },
- { 47541, "Admino LLC" },
- { 47542, "Tianyi iMusic culture & technology Co. Ltd." },
- { 47543, "MWR InfoSecurity" },
- { 47544, "JTKJ.com" },
- { 47545, "Jingtong Technology Co. Ltd." },
- { 47546, "HANGZHOU CHANGER TECHNOLOGY.,LTD" },
- { 47547, "Takta Co." },
- { 47548, "Tvip Ltd" },
- { 47549, "iniLINE Co., Ltd." },
- { 47550, "AVENTICS GmbH" },
- { 47551, "USGS National Wildlife Health Center" },
- { 47552, "Marcone Supply" },
- { 47553, "Hochschule Koblenz" },
- { 47554, "Total Highspeed" },
- { 47555, "EA Games FireMonkeys" },
- { 47556, "Barrcode Ltd" },
- { 47557, "Hangzhou Telin Technologies Company limited" },
- { 47558, "General Dynamics SATCOM Technologies, Inc." },
- { 47559, "Crypto-Pro" },
- { 47560, "Westinghouse Electric Sweden AB" },
- { 47561, "System-on-Chip engineering (SoC-e)" },
- { 47562, "Chengdu Emfuture Automation Engineering Co., Ltd" },
- { 47563, "Falcon Critical Care Transport" },
- { 47564, "Permian Resources, LLC" },
- { 47565, "Forcepoint LLC" },
- { 47566, "Uniper AG" },
- { 47567, "Seifert Logistics GmbH" },
- { 47568, "Pantel International" },
- { 47569, "FIAMM SoNick S.A." },
- { 47570, "Ennnot" },
- { 47571, "Glowpoint" },
- { 47572, "University of Keele" },
- { 47573, "McFarland Clinic" },
- { 47574, "City of Harker Heights" },
- { 47575, "AUTEC Gesellschaft fuer Automationstechnik mbH" },
- { 47576, "CapSenze Biosystems AB" },
- { 47577, "Newell Rubbermaid" },
- { 47578, "Vantiv Inc" },
- { 47579, "Open Software S.r.l." },
- { 47580, "Liechtensteinische Landesverwaltung" },
- { 47581, "Styevko Attila" },
- { 47582, "Timothy Boronczyk" },
- { 47583, "Gentrack" },
- { 47584, "Hirealton network technology co., LTD" },
- { 47585, "\0344\0270\0212\0346\0265\0267\0345\0205\0206\0350\0266\0212\0351\0200\0232\0350\0256\0257\0346\0212\0200\0346\0234\0257\0346\0234\0211\0351\0231\0220\0345\0205\0254\0345\0217\0270 (Shanghai Communication Technology Co., Ltd. trillion more)" },
- { 47586, "Alfing Kessler Sondermaschinen GmbH" },
- { 47587, "Rack2Cloud Limited" },
- { 47588, "StatPro Group Plc." },
- { 47589, "Route443 LLP" },
- { 47590, "iik" },
- { 47591, "aidounix" },
- { 47592, "NJATECH" },
- { 47593, "Shenzhen Electrical Co." },
- { 47594, "Allwaywin Co., Ltd" },
- { 47595, "cluster" },
- { 47596, "INSS" },
- { 47597, "christmann informationstechnik + medien GmbH & Co. KG" },
- { 47598, "Weiss Klimatechnik GmbH" },
- { 47599, "Changzhou Wisdom Intelligent Technology CO.,LTD." },
- { 47600, "LLC \"Commercial Bank\" Bank Talmenka \"" },
- { 47601, "Novo Nordisk A/S" },
- { 47602, "pandoranorge" },
- { 47603, "eClinicalWorks" },
- { 47604, "OOO NPP ETRA-Plus (Ltd, Research and Production Enterprise)" },
- { 47605, "OOO BALTSTAR" },
- { 47606, "ocuro" },
- { 47607, "Lopez Foods, Inc." },
- { 47608, "WIRTGEN GROUP Holding GmbH" },
- { 47609, "Escola Nacional de Administra\0303\0247\0303\0243o P\0303\0272blica (Enap)" },
- { 47610, "Bitwiseshift Ltd." },
- { 47611, "CENAPAD" },
- { 47612, "Gurtsoft" },
- { 47613, "Esbjerg Kommune" },
- { 47614, "Pranas.NET" },
- { 47615, "WRELMS Networking" },
- { 47616, "HangZhou AOBO TELECOM Corp" },
- { 47617, "NTSystems" },
- { 47618, "SEFIRA spol. s r.o." },
- { 47619, "D&K Technologies GmbH" },
- { 47620, "DOMIS/SOMFY" },
- { 47621, "RiverWeb IT Solutions" },
- { 47622, "nicos Research & Development GmbH" },
- { 47623, "schaetz cro" },
- { 47624, "Sysdat Turismo s.r.l." },
- { 47625, "Gek\0303\0245s Ullared AB" },
- { 47626, "Datelstream Limited" },
- { 47627, "kapptivate" },
- { 47628, "krauth technology GmbH" },
- { 47629, "AAEON Technology Inc." },
- { 47630, "Ontario English Catholic Teachers Association" },
- { 47631, "University of South Alabama" },
- { 47632, "HC APMC ONCOLOGY" },
- { 47633, "International Airlines Group" },
- { 47634, "Blue Labs" },
- { 47635, "Skogsutveckling Syd AB" },
- { 47636, "Stora Enso Bioenergi AB" },
- { 47637, "gehrigmobi" },
- { 47638, "Crescend Technologies" },
- { 47639, "KpXX" },
- { 47640, "Tangible Security Inc" },
- { 47641, "gruenewald-clan.de" },
- { 47642, "Istituto Clinico Citt\0303\0240 Studi " },
- { 47643, "Asahi Net, Inc." },
- { 47644, "Robin Systems" },
- { 47645, "Harman Intl." },
- { 47646, "Beijing Qianxin Technology Co., LTD." },
- { 47647, "barox Kommunikation" },
- { 47648, "Aireon LLC" },
- { 47649, "World Economic Forum" },
- { 47650, "Arkin Net Inc." },
- { 47651, "Accessnord AB" },
- { 47652, "D.C.Orbital LLC" },
- { 47653, "Lanbowan Technology Ltd." },
- { 47654, "News India Today Trust" },
- { 47655, "Nufront co.ltd" },
- { 47656, "Conval, Inc." },
- { 47657, "Shanghai Golden Bridge InfoTech Co.,Ltd" },
- { 47658, "ZITH" },
- { 47659, "Actions-Micro" },
- { 47660, "Cookpad Inc." },
- { 47661, "H&K International" },
- { 47662, "weroSoft AG" },
- { 47663, "Baruwa Enterprise Edition" },
- { 47664, "IP Rozduhov M.E." },
- { 47665, "InformInvestGroup" },
- { 47666, "Qualica Technologies (Pty) Ltd" },
- { 47667, "Init AB" },
- { 47668, sminmpec_unknown }, /* (Added by Wireshark) */
- { 47669, "IHI Charging Systems International GmbH" },
- { 47670, "Hitachi, Ltd., Defense Systems Business Unit" },
- { 47671, "Intra" },
- { 47672, "findsolutions" },
- { 47673, "IHI Charging Systems International Germany GmbH" },
- { 47674, "University POLITEHNICA of Bucharest" },
- { 47675, "IHI Charging Systems International Sp A" },
- { 47676, "Social Native" },
- { 47677, "Point of Presence Technologies" },
- { 47678, "Intuity Consultants, Inc." },
- { 47679, "DigitalX" },
- { 47680, "Weimann - IT Consulting" },
- { 47681, "Endeavor Air, Inc." },
- { 47682, "Rocket Lab Ltd." },
- { 47683, "MSCH" },
- { 47684, "Babcock Power" },
- { 47685, "SimuOne ApS" },
- { 47686, "Switzerland Global Enterprise " },
- { 47687, "Filetress" },
- { 47688, "Itential" },
- { 47689, "Chop-Chop Sp. z o.o." },
- { 47690, "Linton Enterprise I (LEI)" },
- { 47691, "Krogh-Consult" },
- { 47692, "Tribunal Supremo de Elecciones de Costa Rica" },
- { 47693, "Monroe Tool and Manufacturing" },
- { 47694, "CANATAL" },
- { 47695, "McKesson Corporation" },
- { 47696, "MedicusTek Inc" },
- { 47697, "Nanjing Tian Hua Zhong An Communication Technology CO.LTD " },
- { 47698, "aroba Inc." },
- { 47699, "Avon Products Inc" },
- { 47700, "Systrome Networks" },
- { 47701, "BDO Audit SRL" },
- { 47702, "SECLAB" },
- { 47703, "cadilinea, slu" },
- { 47704, "BEIT Systemhaus GmbH" },
- { 47705, "Norra Skogs\0303\0244garna Ek F\0303\0266r" },
- { 47706, "Silion Technology Co., Ltd" },
- { 47707, "Zynx" },
- { 47708, "Di-Nikko Engineering Co.,Ltd." },
- { 47709, "GE Healthcare on behalf of ACRIM hospital" },
- { 47710, "RIBS - Registration and Imaging of Brain Systems" },
- { 47711, "KECK MEDICINE OF USC" },
- { 47712, "Treegital" },
- { 47713, "Charlieuniformtango" },
- { 47714, "qsx" },
- { 47715, "EZTrader" },
- { 47716, "Devdot B.V." },
- { 47717, "OrbiWise SA" },
- { 47718, "Zetes" },
- { 47719, "Videology" },
- { 47720, "LAWO Informationssysteme GmbH" },
- { 47721, "Avaleris" },
- { 47722, "Hansoft AB" },
- { 47723, "Michigan Open Carry, Inc." },
- { 47724, "Cuyahoga County" },
- { 47725, "Konke Online" },
- { 47726, "Slots Machines S.A." },
- { 47727, "Assistance Publique des H\0303\0264pitaux de Paris" },
- { 47728, "Tobias Buchloh" },
- { 47729, "Niagara Networks Inc" },
- { 47730, "R\0303\0251publique et Canton du Jura" },
- { 47731, "Leidos, Inc." },
- { 47732, "Kopano B.V." },
- { 47733, "Beijing Lehe Innovation Information Technology Co.,Ltd." },
- { 47734, "Nomura Holdings, Inc." },
- { 47735, "Toyam Cox" },
- { 47736, "L2M Solutions doo" },
- { 47737, "BLUETOWN" },
- { 47738, "MilDef AB" },
- { 47739, "Fam.Andersson Skog AB" },
- { 47740, "Holmen Skog AB" },
- { 47741, "Vista Group Limited (formerly 'Vista Entertainment Solutions')" },
- { 47742, "V-Key Pte Ltd" },
- { 47743, "Atelios Communication Systems GmbH" },
- { 47744, "Tomra ASA" },
- { 47745, "Monmouth Hematology Oncology" },
- { 47746, "Celgene" },
- { 47747, "Oakwood Controls" },
- { 47748, "Rubricall, SL" },
- { 47749, "GemTalk Systems" },
- { 47750, "Bring Dialog Norge AS" },
- { 47751, "Mattersight Corporation" },
- { 47752, "Lycee Louis Armand" },
- { 47753, "Aperi Corporation" },
- { 47754, "Core Services Corporation" },
- { 47755, "OpenRat CMS" },
- { 47756, "Global Oncology, Inc" },
- { 47757, "Bariq Electronics" },
- { 47758, "S\0305\0202u\0305\0274ba Wi\0304\0231zienna" },
- { 47759, "Sociedade Educacional Braz Cubas Ltda" },
- { 47760, "County of El Dorado" },
- { 47761, "Wishnmix Ltd" },
- { 47762, "Section9" },
- { 47763, "OfficeFlex LLC" },
- { 47764, "Elektrownia Rybnik" },
- { 47765, "DOC.INFOSAFE (ISRAEL) LTD" },
- { 47766, "MACNICA FUJI ELECTRONICS HOLDINGS, INC." },
- { 47767, "ASH Szoftverhaz Kft" },
- { 47768, "Aristech GmbH" },
- { 47769, "Armour Communications Limited" },
- { 47770, "ESG BIRO DE SERVICOS S/S LIMITADA - ME " },
- { 47771, "Colorado School of Mines" },
- { 47772, "Clear Axess SAGL" },
- { 47773, "Radeus Labs" },
- { 47774, "Microsoft Small Basic" },
- { 47775, "Ernst Basler + Partner AG" },
- { 47776, "TS Gateway Ltd" },
- { 47777, "Fachschaftsvertretung der Fakult\0303\0244t f\0303\0274r Informatik und Mathematik, Universit\0303\0244t Passau" },
- { 47778, "Cox Communications Inc. - Atlanta Technology" },
- { 47779, "TaiHao Medical" },
- { 47780, "Prosoft Krom\0304\0233\0305\0231\0303\0255\0305\0276 s.r.o." },
- { 47781, "National Western Life Insurance" },
- { 47782, "Nautile Software" },
- { 47783, "codia Software GmbH" },
- { 47784, "Suncoast Cancer Institute" },
- { 47785, "mBank S.A." },
- { 47786, "5BARz India Private Limited" },
- { 47787, "MuseumsIT" },
- { 47788, "Prismaflex International" },
- { 47789, "OAO MNIIPI OKOSZ \"MOSPROEKT-4\"" },
- { 47790, "ASYS Automatic Systems GmbH & Co. KG" },
- { 47791, "Rayed Alrashed" },
- { 47792, "Pew Research Center" },
- { 47793, "Scripps Networks Interactive" },
- { 47794, "Arizona Center for Hematology and Oncology, LLC" },
- { 47795, "Tegsoft" },
- { 47796, "Architecting.nl" },
- { 47797, "Yellowbrick Data, Inc" },
- { 47798, "CNI" },
- { 47799, "Verody, LLC" },
- { 47800, "Waiariki Bay of Plenty Polytechnic" },
- { 47801, "CloudSeeds GmbH" },
- { 47802, "CTSI Limited" },
- { 47803, "Urban Renaissance Agency" },
- { 47804, "Bravowhale Information Technology Ltd" },
- { 47805, "Shenzhen Grentech RF Communication Limited" },
- { 47806, "Trussan Co., Ltd" },
- { 47807, "DSRI \"Volna\", OJSC" },
- { 47808, "Delaware County Community College" },
- { 47809, "Centerline Biomedical, Inc." },
- { 47810, "LINAGORA TUNISIE" },
- { 47811, "Pavilion Data Systems Inc" },
- { 47812, "AZ Elektro AG" },
- { 47813, "Luetze Transportation GmbH" },
- { 47814, "ChinaUnicom" },
- { 47815, "Stora Enso Skog AB" },
- { 47816, "Joseph Workstation" },
- { 47817, "HAWE Hydraulik SE" },
- { 47818, "Salzburg AG" },
- { 47819, "NTT DATA Italia" },
- { 47820, "B\0303\0266co B\0303\0266ddecker & Co. GmbH & Co. KG" },
- { 47821, "Sjova-Almennar tryggingar hf" },
- { 47822, "NdT Web Services" },
- { 47823, "Couch Red" },
- { 47824, "Exprivia Telco & Media srl" },
- { 47825, "Ravel Electronics Pvt Ltd" },
- { 47826, "Bristows LLP" },
- { 47827, "Moogsoft" },
- { 47828, "Lincoln Oncology, LLC" },
- { 47829, "Fornetix" },
- { 47830, "MovingStar Corporation" },
- { 47831, "Robert Half Inc." },
- { 47832, "NBCUniversal" },
- { 47833, "Teleworks Co., Ltd." },
- { 47834, "OOO NPP \"POLUS\"" },
- { 47835, "ARCHIVECO" },
- { 47836, "Bernd Matusche" },
- { 47837, "Produban Global Services" },
- { 47838, "Angstroem Event Solutions" },
- { 47839, "Landesarchiv Nordrhein-Westfalen" },
- { 47840, "alzahra university" },
- { 47841, "Comita Group of companies" },
- { 47842, "Identity Tech Solutions, LLC" },
- { 47843, "\0345\0271\0277\0345\0267\0236\0346\0230\0223\0351\0200\0237\0350\0256\0241\0347\0256\0227\0346\0234\0272\0350\0256\0276\0345\0244\0207\0346\0234\0211\0351\0231\0220\0345\0205\0254\0345\0217\0270 (Guangzhou-speed computer equipment Ltd.)" },
- { 47844, "ELEET Networks" },
- { 47845, "Netz39 e.V." },
- { 47846, "BCausE Enterprise Private Limited" },
- { 47847, "Informatikdienste, Stadt Bern" },
- { 47848, "SYNERGY SYSTEMS AND SOLUTIONS" },
- { 47849, "RealSprint AB" },
- { 47850, "Cathexis Technologies (PTY) LTD" },
- { 47851, "Arest Inc." },
- { 47852, "throwstone" },
- { 47853, "Key Performance Consulting" },
- { 47854, "Abakusz Computer Services" },
- { 47855, "Rumo Log\0303\0255stica" },
- { 47856, "Geo++ GmbH" },
- { 47857, "Juice Goose" },
- { 47858, "ENDICOTT PRECISION" },
- { 47859, "KEO GmbH" },
- { 47860, "Thalia B\0303\0274cher GmbH" },
- { 47861, "The Berkeley Carroll School" },
- { 47862, "almanid group GmbH" },
- { 47863, "Ing.-B\0303\0274ro Sigmund Gassner" },
- { 47864, "Futureweb OG" },
- { 47865, "PT. Sinergi Teknologi Utama" },
- { 47866, "Deniz Sezer" },
- { 47867, "nadansys" },
- { 47868, "Luigi D'Ambrosio" },
- { 47869, "Nykvist Skogs AB" },
- { 47870, "thovel Thomas Velthoven" },
- { 47871, "RadioFrequencyExpert srl" },
- { 47872, "BANK-now AG" },
- { 47873, "SURIX SRL" },
- { 47874, "County of Sacramento" },
- { 47875, "Solebit Labs" },
- { 47876, "Shanghai Real Communication Technology Co., Ltd." },
- { 47877, "L\0303\0226WEN Entertainment GmbH" },
- { 47878, "pretty Easy privacy foundation" },
- { 47879, "Skogs\0303\0244garna Norrskog" },
- { 47880, "Wildom Ltd." },
- { 47881, "B.P. Konstantinov Petersburg Nuclear Physics Institute" },
- { 47882, "TechAssist" },
- { 47883, "sst-net.de" },
- { 47884, "ISIMA" },
- { 47885, "SWDC RTSoft, OOO" },
- { 47886, "Intelligent Automation, Inc." },
- { 47887, "Keramik Bruckner e.U." },
- { 47888, "Freifunk - Verein zur F\0303\0266rderung des freien Internets" },
- { 47889, "Traffic and Parking Control Co., Inc." },
- { 47890, "QSight Ltd" },
- { 47891, "Sea Tel" },
- { 47892, "Cosmic Engineering Inc." },
- { 47893, sminmpec_unknown }, /* (Added by Wireshark) */
- { 47894, "phoenixcompany" },
- { 47895, "\0346\0235\0255\0345\0267\0236\0344\0272\0221\0351\0234\0201\0347\0247\0221\0346\0212\0200\0346\0234\0211\0351\0231\0220\0345\0205\0254\0345\0217\0270 (Hangzhou Yun Ji Technology Co., Ltd.)" },
- { 47896, "System Infra Solutions Pvt. Ltd." },
- { 47897, "SmartGen" },
- { 47898, "Centrul de Calcul S.A." },
- { 47899, "\0303\0211cole Sup\0303\0251rieure des Arts Saint-Luc Li\0303\0250ge" },
- { 47900, "S\0303\0266dra Skogs\0303\0244garna Ekonomisk F\0303\0266rening" },
- { 47901, "Hypixel, Inc" },
- { 47902, "Ralphie T" },
- { 47903, "RAC Motoring Services" },
- { 47904, "Ricola AG" },
- { 47905, "OBS/OCB Cloudwatt" },
- { 47906, "ninjap" },
- { 47907, "HAMBURG WASSER" },
- { 47908, "Consulting Company Informatica SC Ltda" },
- { 47909, "Bossa Nova Robotics" },
- { 47910, "Orbitel" },
- { 47911, "TOC S.A." },
- { 47912, "Radio Rentals Ltd" },
- { 47913, "uczen" },
- { 47914, "geoint.org" },
- { 47915, "CAAGIS" },
- { 47916, "ioTRAN Corp." },
- { 47917, "Urban Search & Rescue Austria (U.S.A.R. Austria)" },
- { 47918, "Lucien Pullen" },
- { 47919, "dsi" },
- { 47920, "PropertyGuru Pte. Ltd." },
- { 47921, "One Nine One Computer" },
- { 47922, "NetPilot Internet Security Ltd." },
- { 47923, "Sentia B.V." },
- { 47924, "mergedK GmbH" },
- { 47925, "Cima S.p.A." },
- { 47926, "Mitchell Farrar Holdings LTD" },
- { 47927, "Tenet Healthcare" },
- { 47928, "Fortifydata" },
- { 47929, "Edwards Lifesciences LLC" },
- { 47930, "Mansoft" },
- { 47931, "ExteNet Systems, Inc." },
- { 47932, "Andrino" },
- { 47933, "Terma A/S" },
- { 47934, "World Privacy and Identity Association (WPIA) (formerly 'Freifunk Burgenland - Verein freie Netze im Burgenland')" },
- { 47935, "tiri GmbH" },
- { 47936, "HansBeerman B.V." },
- { 47937, "Ophir Energy PLC" },
- { 47938, "Alloy Software, Inc." },
- { 47939, "Audio Export GmbH" },
- { 47940, "clAIRvision Corporation" },
- { 47941, "Mendix B.V." },
- { 47942, "Tachyons .NET" },
- { 47943, "Oesterreichischer Mantrailing Verband - Mantrailing Austria" },
- { 47944, "Center for International Private Enterprise" },
- { 47945, "Fukoku Matual Life Insurance Company" },
- { 47946, "OOO \"Eko Paper\"" },
- { 47947, "Hoermann GmbH" },
- { 47948, "Systemtechnik LEBER GmbH & Co. KG" },
- { 47949, "SYMACORP" },
- { 47950, "Balkantel Ltd." },
- { 47951, "Foundation for Trusted Identity" },
- { 47952, "NETIO products a.s." },
- { 47953, "D11" },
- { 47954, "Punkt Creative LLC" },
- { 47955, "Max Planck Institute for the Physics of Complex Systems" },
- { 47956, "KAV Danubia" },
- { 47957, "Equiis Technologies Inc." },
- { 47958, "Cloud Cant\0303\0241brico Siglo XXI, S.L.U" },
- { 47959, "Snapchat, Inc." },
- { 47960, "Hartmann GmbH" },
- { 47961, "Gerhard D. Wempe KG - Division Chronometerwerke" },
- { 47962, "Ezam Automotive Parts" },
- { 47963, "Schwyzer Kantonalbank" },
- { 47964, "Landkreis Oberhavel" },
- { 47965, "Dedicated Computing LLC" },
- { 47966, "NooBaa" },
- { 47967, "IT-Consulting Mario Bergmann" },
- { 47968, "KOMSET-servis LLC" },
- { 47969, "Mills College" },
- { 47970, "Neulinger Consulting" },
- { 47971, "Martin Sprocket and Gear, Inc." },
- { 47972, "Sam Yaple" },
- { 47973, "Servosity Inc" },
- { 47974, "WANSecurity, Inc." },
- { 47975, "kezhi-controls" },
- { 47976, "gematik Gesellschaft f\0303\0274r Telematikanwendungen der Gesundheitskarte mbH" },
- { 47977, "Tivaci Corporation" },
- { 47978, "ALPEIN Software SWISS AG" },
- { 47979, "BG Klinikum Hamburg gGmbH" },
- { 47980, "Jernbaneverket" },
- { 47981, "Prowise B.V." },
- { 47982, "6PM PLC" },
- { 47983, "Hanseatic Bank" },
- { 47984, "Atos IT Solutions and Services AG" },
- { 47985, "IDnomic" },
- { 47986, "Green Communications" },
- { 47987, "Eraldo Gandini" },
- { 47988, "PDS s.r.o." },
- { 47989, "Software Workers srl" },
- { 47990, "Juergen M. Bruckner" },
- { 47991, "shadowhunt" },
- { 47992, "Gettysburg Cancer Center" },
- { 47993, "Brazen Technologies" },
- { 47994, "bba solutions" },
- { 47995, "American University" },
- { 47996, "DataBoost LLC" },
- { 47997, "Securilytics, LLC" },
- { 47998, "DASSAULT FALCON SERVICE" },
- { 47999, "Port of Portland" },
- { 48000, "Steelwedge Software" },
- { 48001, "OOOGLEEE, INC." },
- { 48002, "schoeller network control Datenverarbeitung GmbH" },
- { 48003, "Fast S.p.A." },
- { 48004, "Digifort - IP Surveillance System" },
- { 48005, "ZyCast Technology Inc. " },
- { 48006, "Nandex, Inc" },
- { 48007, "Netskope" },
- { 48008, "BfG Eigent\0303\0274mer/-innen- und Verwaltungsgenossenschaft eG" },
- { 48009, "A\0303\0207\0303\0203O EDUCACIONAL CLARETIANA" },
- { 48010, "Howard & Howard" },
- { 48011, "SparkStone Ltd" },
- { 48012, "COWE Co., Ltd." },
- { 48013, "Strauss and Strauss Consultants (Pty) Ltd." },
- { 48014, "SCAI Connect" },
- { 48015, "IT G\0303\0245rden i Landskrona AB" },
- { 48016, "MELASZ" },
- { 48017, "Syamsul Mobile" },
- { 48018, "Today Technology Co., Ltd." },
- { 48019, "InMobi Pte Ltd" },
- { 48020, "Shanghai Chenrui Communication Technology Company" },
- { 48021, "THE ROBERTO GIORI COMPANY LTD" },
- { 48022, "Norges Geotekniske Institutt" },
- { 48023, "Latvian Institute of Organic Synthesis" },
- { 48024, "Paradise Network Enterprises" },
- { 48025, "Lyonel Serradura" },
- { 48026, "Oostec BV" },
- { 48027, "PKB RIO Ltd" },
- { 48028, "VS Web Labs" },
- { 48029, "High-Galaxy,HGANS" },
- { 48030, "Pesticide Software" },
- { 48031, "GLOBAL 2000" },
- { 48032, "V\0303\0244stra V\0303\0244rmland och Dals skogs\0303\0244garef\0303\0266rening" },
- { 48033, "Aktiebolaget Hilmer Andersson" },
- { 48034, "Bukalapak" },
- { 48035, "Copperchase Limited" },
- { 48036, "ALHUE-TEC LTDA" },
- { 48037, "SHENZHEN UTEPO TECH CO., LTD" },
- { 48038, "ONF ENERGIE" },
- { 48039, "PIRIOS S.A." },
- { 48040, "Radium s.r.o" },
- { 48041, "Technica Del Arte BV" },
- { 48042, "Geomant" },
- { 48043, "DENSO International America" },
- { 48044, "Tri-Valley Oncology " },
- { 48045, "Inpro Telecom S.A. de C.V." },
- { 48046, "Arcadis NV" },
- { 48047, "DDESK LLC" },
- { 48048, "Levene S\0303\0245g AB" },
- { 48049, "NEW Service GmbH" },
- { 48050, "International Personal Finance" },
- { 48051, "Sato America" },
- { 48052, "Milpowerinc" },
- { 48053, "Mazatal Hotel and Casino" },
- { 48054, "SunGard Data Systems" },
- { 48055, "sendhybrid GmbH" },
- { 48056, "Jeremy Gibbons" },
- { 48057, "Kronos Technologies" },
- { 48058, "SouthEast Texas Regional Advisory Council" },
- { 48059, "Karlsruhe Institute of Technology (KIT)" },
- { 48060, "SecureMe2" },
- { 48061, "Byte Expert B.V." },
- { 48062, "Territorial Generation Company 14" },
- { 48063, "Anna Jaques Cancer Center" },
- { 48064, "Grupo MSA S.A." },
- { 48065, "Talentnet Corporation" },
- { 48066, "Linkforce Engineering" },
- { 48067, "UnifyID, Inc." },
- { 48068, "CSE Transtel" },
- { 48069, "Demmich IT Service" },
- { 48070, "Patrick Lesky" },
- { 48071, "Retarus GmbH" },
- { 48072, "Optanix" },
- { 48073, "Pentest Limited" },
- { 48074, "Cube-Tec International GmbH" },
- { 48075, "Tennessee Plateau Oncology" },
- { 48076, "NexGen Inc" },
- { 48077, "State University of Feira de Santana" },
- { 48078, "Ventura County Hematology Oncology Specialists" },
- { 48079, "NEC Enterprise Communication Technologies" },
- { 48080, "Mimetrix Design Group" },
- { 48081, "Max Planck Institute for Plant Breeding Research" },
- { 48082, "Stromnetz Hamburg GmbH" },
- { 48083, "AIRESERVICES" },
- { 48084, "Stewart Investors" },
- { 48085, "RCCA COMMUNITY HEMATOLOGY ONOCOLGY" },
- { 48086, "Helicon Opleidingen" },
- { 48087, "Troup County School System" },
- { 48088, "Instituto Superior de Economia e Gest\0303\0243o" },
- { 48089, "R\0303\0245dgivende Ingeni\0303\0270r Per Dypvik AS" },
- { 48090, "Nord/LB Luxembourg S.A. Covered Bond Bank" },
- { 48091, "Sicss Society" },
- { 48092, "qi2" },
- { 48093, "Aptomar AS" },
- { 48094, "White Star Petroleum" },
- { 48095, "Stadler Pankow GmbH" },
- { 48096, "jedernet GmbH" },
- { 48097, "RAYAPHONE" },
- { 48098, "EBPI BV" },
- { 48099, "Redgate Software" },
- { 48100, "Orca Technologies" },
- { 48101, "Systech International" },
- { 48102, "DARTY" },
- { 48103, "Executive Weather Corporation" },
- { 48104, "example.cz" },
- { 48105, "Sky Puzzle Ltd." },
- { 48106, "Skami Programming" },
- { 48107, "Equidome" },
- { 48108, "9DOT" },
- { 48109, "WishCert" },
- { 48110, "Universite de Rouen Normandie" },
- { 48111, "AMD Distribution sp.z o.o." },
- { 48112, "AZCOM Technology s.r.l." },
- { 48113, "Rabian Inc." },
- { 48114, "Solutionbase Ltd" },
- { 48115, "Gallagher Group Limited" },
- { 48116, "V\0305\0241\0304\0256 Kauno \0305\0240ilaini\0305\0263 poliklinika" },
- { 48117, "Scheidt & Bachmann GmbH " },
- { 48118, "Pyro Telecom Solutions Pvt Ltd" },
- { 48119, "Scangaule" },
- { 48120, "Digipolis CVBA" },
- { 48121, "njhd" },
- { 48122, "Internal Medicine Associates of Lee County MD PA" },
- { 48123, "Paradise Valley Community College" },
- { 48124, "MagicMonster Limited" },
- { 48125, "Exodus Intelligence" },
- { 48126, "Energostat Co., Ltd" },
- { 48127, "salesforce.com, inc." },
- { 48128, "Distributed Data Systems Ltd." },
- { 48129, "simplicityEngine Inc." },
- { 48130, "Batscan / PL Trading AB" },
- { 48131, "\"DEP Company\" Ltd." },
- { 48132, "Sparebanken Vest" },
- { 48133, "McCullough-Solutions.NET" },
- { 48134, "8438757 Canada Inc D.B.A. Multifactor.net" },
- { 48135, "MOPIENS Inc." },
- { 48136, "GitLab" },
- { 48137, "Billi Pty Ltd" },
- { 48138, "BillerudKorsn\0303\0244s Skog & Industri AB" },
- { 48139, "Krogle" },
- { 48140, "mBank Hipoteczny SA" },
- { 48141, "first frame networkers ag" },
- { 48142, "Digiton Systems LLC" },
- { 48143, "Aurum Europe B.V." },
- { 48144, "Synermed Soluciones Medicas" },
- { 48145, "SNS Bank NV" },
- { 48146, "FlyCAA" },
- { 48147, "The Warehouse Group Limited" },
- { 48148, "Taos" },
- { 48149, "CybLab Ltd" },
- { 48150, "simus systems GmbH" },
- { 48151, "Laryio" },
- { 48152, "WishCert Co." },
- { 48153, "xgp.ch" },
- { 48154, "XMW" },
- { 48155, "Wuhan FiberHome International Technologies Co., LTD" },
- { 48156, "Hypertech Solutions Pty Ltd" },
- { 48157, "CIBRED SUD s.r.l." },
- { 48158, "cedric ltd" },
- { 48159, "NHS Property Services Ltd" },
- { 48160, "Stichting Regionale Radio Noord" },
- { 48161, "TUI AG" },
- { 48162, "Torchmark Corporation" },
- { 48163, "abahlali" },
- { 48164, "my-PV GmbH" },
- { 48165, "1stPoint Communications, LLC" },
- { 48166, "Bayerische Staatsbibliothek" },
- { 48167, "Dr. Mohtaseb Cancer Center and Blood Disorders" },
- { 48168, "SCPTime" },
- { 48169, "Bumps to Babes" },
- { 48170, "Avaya Atlanta Lab" },
- { 48171, "Health Catalyst" },
- { 48172, "Speed Roam PTE LTD" },
- { 48173, "Careum AG Bildungszentrum f\0303\0274r Gesundheitsberufe" },
- { 48174, "Italian Pastafarian Church" },
- { 48175, "Astronix Data Security Solutions" },
- { 48176, "InnoEye LLC" },
- { 48177, "ZIGGO" },
- { 48178, "Contargo GmbH & Co. KG" },
- { 48179, "Andreas Heigl" },
- { 48180, "Nial" },
- { 48181, "pSenso sp. z o.o." },
- { 48182, "Terberg Group B.V." },
- { 48183, "Phegda Technology Co.,Ltd." },
- { 48184, "Nanning OMARA Tech .inc" },
- { 48185, "NeuLion, Inc." },
- { 48186, "Innere Mission M\0303\0274nchen e.V" },
- { 48187, "Nanjing Balance Network technology Co., Ltd" },
- { 48188, "Delta Solutions LLC" },
- { 48189, "SPRUT Technology Ltd" },
- { 48190, "mcccxxxvii.net" },
- { 48191, "Praten " },
- { 48192, "SEPPmail AG" },
- { 48193, "University of Pittsburgh Medical Center" },
- { 48194, "Alltec GmbH" },
- { 48195, "SISDEF Ltda." },
- { 48196, "Horvoje.net" },
- { 48197, "TECNIARK S.A." },
- { 48198, "cryptofreek.org" },
- { 48199, "mVISE AG" },
- { 48200, "LumenVox" },
- { 48201, "CyberHound" },
- { 48202, "Vekomy Technologies" },
- { 48203, "Obstreperus" },
- { 48204, "Eisenmann SE" },
- { 48205, "COLO21 AG" },
- { 48206, "SRC Incorporated" },
- { 48207, "University of Hull" },
- { 48208, "Axilspot Communication CO.,Ltd" },
- { 48209, "AB Karl Hedin S\0303\0245gverk R\0303\0245vara" },
- { 48210, "AB Karl Hedin S\0303\0245gverk Biobr\0303\0244nsle" },
- { 48211, "Derome Skog AB" },
- { 48212, "Fr\0303\0266dinge Skog AB" },
- { 48213, "COC AG" },
- { 48214, "Master Class Corp" },
- { 48215, "American Heart Association" },
- { 48216, "RADIANTECH, INC." },
- { 48217, "codemanufaktur GmbH" },
- { 48218, "Government of Manitoba" },
- { 48219, "Jackson Hewitt Tax Service Inc." },
- { 48220, "TPAX EU" },
- { 48221, "Flopsar Technology" },
- { 48222, "Micro 100 Tool Corp" },
- { 48223, "Rauland-Borg Corporation" },
- { 48224, "QIT Systeme GmbH & Co. KG" },
- { 48225, "Summonte" },
- { 48226, "Sand\0303\0245sa Timber AB" },
- { 48227, "AB Tutor" },
- { 48228, "LLC \"Tecon MT\"" },
- { 48229, "Platina Systems, Inc." },
- { 48230, "Montefiore Medicine" },
- { 48231, "Alvernia University" },
- { 48232, "Platinum Home Mortgage Corporation" },
- { 48233, "IceMobile Agency BV" },
- { 48234, "Netronics Technologies Inc." },
- { 48235, "LinkXess GmbH" },
- { 48236, "Zschimmer & Schwarz GmbH & Co KG" },
- { 48237, "SOFTEL Corp." },
- { 48238, "Optima Tours GmbH" },
- { 48239, "Non-public JSC \"Krasnaya polyana\"" },
- { 48240, "senselan gmbh" },
- { 48241, "Neptune and Company, Inc." },
- { 48242, "Serban Nistor" },
- { 48243, "Mindit Services" },
- { 48244, "Quantic Vision, S.A." },
- { 48245, "Atlas Air" },
- { 48246, "Mission Microwave Technologies, Inc" },
- { 48247, "CENTRAL PARK HEMATOLOGY & ONCOLOGY, P.C." },
- { 48248, "innoTel Pty Ltd" },
- { 48249, "Rohe Automation" },
- { 48250, "\0344\0270\0255\0345\0233\0275\0345\0271\0277\0344\0270\0234\0347\0234\0201\0346\0267\0261\0345\0234\0263\0345\0270\0202\0346\0240\0270\0350\0276\0276\0344\0270\0255\0350\0277\0234\0351\0200\0232\0347\0224\0265\0346\0272\0220\0346\0212\0200\0346\0234\0257\0346\0234\0211\0351\0231\0220\0345\0205\0254\0345\0217\0270 (Shenzhen City, Guangdong Province, China COSCO through Nuclear Power Technology Co., Ltd.)" },
- { 48251, "Liskl Networks, Inc" },
- { 48252, "Ecole CentraleSupelec" },
- { 48253, "OpusV" },
- { 48254, "Shaanxi XinTong Intelligent Technology Co., Ltd." },
- { 48255, "DiaSys Diagnostic Systems GmbH" },
- { 48256, "NISHANT.BIZ" },
- { 48257, "Comoretel" },
- { 48258, "SourceClear" },
- { 48259, "R+V Allgemeine Versicherung AG" },
- { 48260, "Guangzhou iplook network technologies Co.,Ltd." },
- { 48261, "Callison Networking Company" },
- { 48262, "Tricentis GmbH" },
- { 48263, "Noble Markets, LLC" },
- { 48264, "Mairie de Saint-Maur-des-Foss\0303\0251s" },
- { 48265, "Assembly Data System S.p.a." },
- { 48266, "Mainmetall GmbH & Co. KG" },
- { 48267, "Phexonite" },
- { 48268, "c13 LLC" },
- { 48269, "Info-Tech Research Group" },
- { 48270, "MiroNet AG" },
- { 48271, "AITelecom S.A. de C.V." },
- { 48272, "Examination Management Services, Inc." },
- { 48273, "Computer Health" },
- { 48274, "Saxion University of Applied Sciences" },
- { 48275, "SingularIT Solutions" },
- { 48276, "BNP Paribas Fortis SA (Belgian UEN: 0403.199.702)" },
- { 48277, "Topway Network Engineering Co., Ltd." },
- { 48278, "Twowing Technologies" },
- { 48279, "Institut f\0303\0274r Steuerungstechnik der Werkzeugmaschinen und Fertigungseinrichtungen, Universit\0303\0244t Stuttgart" },
- { 48280, "R-Platforma LLC" },
- { 48281, "Khipu" },
- { 48282, "The Situs Companies" },
- { 48283, "ZI-Argus" },
- { 48284, "in2ip BV" },
- { 48285, "Mary Street Wellness" },
- { 48286, "NewsUK" },
- { 48287, "\0344\0270\0255\0347\0224\0265\0345\0222\0214\0347\0221\0236\0347\0247\0221\0346\0212\0200\0346\0234\0211\0351\0231\0220\0345\0205\0254\0345\0217\0270 (China Electronics Harvest Technology Co., Ltd.)" },
- { 48288, "Health-net 2020 GmbH" },
- { 48289, "Connect2 Systems Limited" },
- { 48290, "\0303\0223buda University" },
- { 48291, "CTOUCH Europe B.V." },
- { 48292, "Michigan Education Association" },
- { 48293, "Utica College" },
- { 48294, "Personal Genome Diagnostics, Inc." },
- { 48295, "UNess Smart Home and Living" },
- { 48296, "Montgomery Blair High School" },
- { 48297, "Chillout" },
- { 48298, "Health Choice Management Company" },
- { 48299, "Koninklijke Nederlandse Dambond" },
- { 48300, "ComSource s.r.o." },
- { 48301, "NathanNet" },
- { 48302, "Big Neptune" },
- { 48303, "0x0f" },
- { 48304, "American Financial Group Inc" },
- { 48305, "APRA-OPTINET Sp. z o. o." },
- { 48306, "Gentofte Kommune" },
- { 48307, "Continental Electronics" },
- { 48308, "Argeo GmbH" },
- { 48309, "Fuji IT Co.,Ltd." },
- { 48310, "BLOBFISH E.I.R.L." },
- { 48311, "Northcloak Corporation" },
- { 48312, "Avid Integration Technologies" },
- { 48313, "Not for Radio, LLC" },
- { 48314, "ESA Elektroschaltanlagen Grimma GmbH" },
- { 48315, "Documenta S.A." },
- { 48316, "Berliner Verkehrsbetriebe" },
- { 48317, "PedFast Technologies" },
- { 48318, "Beijing NationSky Network Technology Co., Ltd" },
- { 48319, "911 Datamaster, Inc." },
- { 48320, "Xhesi" },
- { 48321, "Metroswitch Technologies, Inc." },
- { 48322, "Surfilter Network Technology Co.,Ltd" },
- { 48323, "Altaire Ltd" },
- { 48324, "2test" },
- { 48325, "Tesco Europe" },
- { 48326, "V\0303\0244nerbr\0303\0244nsle AB" },
- { 48327, "Johnson Controls Inc." },
- { 48328, "Veritas Technologies LLC" },
- { 48329, "OJSC \"MINSK TRACTOR WORKS\"" },
- { 48330, "Nationalmuseet" },
- { 48331, "SKTB \"SKiT\"" },
- { 48332, "Callans Tr\0303\0244 AB" },
- { 48333, "Koolsign Co., LTD" },
- { 48334, "Bank of the South" },
- { 48335, "RealPage, Inc." },
- { 48336, "Abrumet" },
- { 48337, "TD Avidis LLC" },
- { 48338, "Orion Power Systems" },
- { 48339, "Seldiame Software" },
- { 48340, "Public Sector Pension Investment Board" },
- { 48341, "DevLounge" },
- { 48342, "Ransnet Singapore Pte Ltd" },
- { 48343, "Industrial Bank of Kuwait" },
- { 48344, "SHW Automotive GmbH" },
- { 48345, "IP-Lease BV" },
- { 48346, "Elan Audio" },
- { 48347, "OHB System AG" },
- { 48348, "Medcomsoft Ltd." },
- { 48349, "The Scale Factory Ltd" },
- { 48350, sminmpec_unknown }, /* (Added by Wireshark) */
- { 48351, "Beijing Coconet Corporation" },
- { 48352, "Levantis AG" },
- { 48353, "Neosecure S.A" },
- { 48354, "Qiy Foundation" },
- { 48355, "General Motors" },
- { 48356, "Salerno Data LLC" },
- { 48357, "Skogs\0303\0244garna Mellanskog Ek F\0303\0266r" },
- { 48358, "Hobbylook" },
- { 48359, "Infosec (T) LTD" },
- { 48360, "Sakura City" },
- { 48361, "Kpnetworks Ltd." },
- { 48362, "IndraStra Global" },
- { 48363, "ResoNetz Airfolc Inc." },
- { 48364, "SNAL" },
- { 48365, "QWERTY Concepts Inc" },
- { 48366, "DriveScale, Inc." },
- { 48367, "GOTrust Technology Inc." },
- { 48368, "Beijing Zrinc Technologies Co., Ltd." },
- { 48369, "Falcon Technologies LTD" },
- { 48370, "NMB PLC" },
- { 48371, "Long-Distance Communication Branch" },
- { 48372, "MicroStep - HDO s.r.o." },
- { 48373, "Kamago" },
- { 48374, "Polarteknik Oy" },
- { 48375, "Igepa Paper Hungary Kft." },
- { 48376, "MimerCon" },
- { 48377, "Linefactory" },
- { 48378, "Zwise s.a." },
- { 48379, "Camelot Global" },
- { 48380, "Newbridge Technologies Int. Ltd." },
- { 48381, "BLS AG" },
- { 48382, "Case Tecnologia Ltda" },
- { 48383, "McKinsey & Company" },
- { 48384, "STAPRO SLOVENSKO s.r.o." },
- { 48385, "Audax Electronics Corporation" },
- { 48386, "MJ Technical Solutions, LLC" },
- { 48387, "Japan Airlines Co.,Ltd." },
- { 48388, "EIDISTA" },
- { 48389, "TakumiVision Co.,LTD." },
- { 48390, "Bottomline Technologies" },
- { 48391, "photicsensing" },
- { 48392, "FilmLight Ltd" },
- { 48393, "SDxLab" },
- { 48394, "br.Svensson Skog AB" },
- { 48395, "Qimtronics" },
- { 48396, "Sood sales" },
- { 48397, "Joma-Polytec GmbH" },
- { 48398, "Paranoidlabs" },
- { 48399, "Kassenaerztliche Vereinigung Sachsen" },
- { 48400, "Bjernareds S\0303\0245gverk AB" },
- { 48401, "AJ Vaccines" },
- { 48402, "Konica Minolta Business Solutions Czech, spol. s r.o." },
- { 48403, "PEQ Services" },
- { 48404, "Korbank S.A." },
- { 48405, "Orbiss Ltd" },
- { 48406, "swisspro Solutions AG" },
- { 48407, "Open Applications Ltd" },
- { 48408, "Flint International Limited" },
- { 48409, "SHENZHEN PHOTON BROADBAND TECHNOLOGY CO., LTD" },
- { 48410, "COLEGIO ESTADUAL EURICO BATISTA ROSAS" },
- { 48411, "AB Maa S\0303\0245g" },
- { 48412, "CCEE" },
- { 48413, "NSF International" },
- { 48414, "Line34 Telefonia e Computa\0303\0247\0303\0243o" },
- { 48415, "IBM (group CloudMatrix)" },
- { 48416, "Bell Canada" },
- { 48417, "GLCMI Internal Shared Services" },
- { 48418, "ANF AC United Kingdom, LTD." },
- { 48419, "Marcia Slosson, MS, LAC, MAC" },
- { 48420, "Meraskog i J\0303\0244mtland AB" },
- { 48421, "Hematology Oncology Associates of Central New York" },
- { 48422, "Tech Futures Interactive Inc." },
- { 48423, "Enli Health Intelligence" },
- { 48424, "Insatech A/S" },
- { 48425, "isboom.com" },
- { 48426, "Lambda Tech Ltd" },
- { 48427, "Budget Insight" },
- { 48428, "MFA Russia" },
- { 48429, "BELADACI CONSULTING, LLC" },
- { 48430, "Pro-Digital Projetos Eletronicos Ltda" },
- { 48431, "NetStable, LLC" },
- { 48432, "\0345\0271\0277\0345\0267\0236\0347\0250\0213\0346\0230\0237\0351\0200\0232\0344\0277\0241\0347\0247\0221\0346\0212\0200\0346\0234\0211\0351\0231\0220\0345\0205\0254\0345\0217\0270\0357\0274\0210Guangzhou Starway Communication Technology Co., LTD\0357\0274\0211" },
- { 48433, "Wuxi Broadlan Telecommunication Technology Co.,Ltd" },
- { 48434, "praclear" },
- { 48435, "Wuxi Neihua Network Technology Co.,(NHN) " },
- { 48436, "Siemens AG - Transmission Solutions" },
- { 48437, "Ikano Bank" },
- { 48438, "Tr\0303\0244transporter i Norrbotten AB" },
- { 48439, "Sch\0303\0266nfelder Papierfabrik GmbH" },
- { 48440, "2mt Software GmbH" },
- { 48441, "Gridco Systems" },
- { 48442, "Frankonia Handels GmbH & Co. KG" },
- { 48443, "Verticali LLC" },
- { 48444, "Stefano Canepa" },
- { 48445, "Digital Security" },
- { 48446, "Slottstornet AB" },
- { 48447, "Verizon Labs" },
- { 48448, "Bricata, LLC" },
- { 48449, "Harvard Computer Society" },
- { 48450, "Timmerk\0303\0266rarna i Norrland AB" },
- { 48451, "Fuzhou In&Pro Information Technology Co., Ltd" },
- { 48452, "ANF Certification Authority USA, Corp." },
- { 48453, "Riddarhusf\0303\0266rvaltningen Fr Emilie Pipers Donationsfond" },
- { 48454, "Riddarhuset O G Paulis Donationsfond" },
- { 48455, "Link\0303\0266pings Skogstj\0303\0244nst AB" },
- { 48456, "Wasatornet AB" },
- { 48457, "KaX Pvt. Ltd" },
- { 48458, "Otsuka America Pharmaceutical, Inc. " },
- { 48459, "Condast GmbH" },
- { 48460, "Rotronic AG" },
- { 48461, "StudentBridge LLC" },
- { 48462, "Insight media Devlopment." },
- { 48463, "Fitworks Co., Ltd." },
- { 48464, "ANF AC Panam\0303\0241, S.R.L." },
- { 48465, "Gesti\0303\0263n Tributaria Territorial, S. A." },
- { 48466, "Chambre des D\0303\0251put\0303\0251s Luxembourg" },
- { 48467, "Imperial College Healthcare" },
- { 48468, "Lianozovo Electromechanical Plant" },
- { 48469, "Cancer Care Specialists" },
- { 48470, "\0303\0226rnfrakt" },
- { 48471, "British Amateur Television Club" },
- { 48472, "swissEmbedded GmbH" },
- { 48473, "mh2net, z.s." },
- { 48474, "Klynt Industries" },
- { 48475, "SIA Rigas udens" },
- { 48476, "Zen Swipe, Inc." },
- { 48477, "Nuix North America Inc" },
- { 48478, "Hainan Goodstart Network Technology Co. Ltd. " },
- { 48479, "Sunshine Sugar" },
- { 48480, "finally safe GmbH" },
- { 48481, "Falu Energi & Vatten AB" },
- { 48482, "Linaro Ltd" },
- { 48483, "RecordSure Ltd." },
- { 48484, "topsystem Systemhaus GmbH" },
- { 48485, "ITEC Training Solutions Ltd" },
- { 48486, "Salzbrenner Media" },
- { 48487, "Veropharm" },
- { 48488, "ACS International Schools Ltd." },
- { 48489, "ANF AC Chile, Ltda." },
- { 48490, "Bundesministerium fuer Land- und Forstwirtschaft, Umwelt- und Wasserwirtschaft" },
- { 48491, "Strategic Information Technology Ltd." },
- { 48492, "Zequenze" },
- { 48493, "Naltagrett" },
- { 48494, "Lockstep Technologies" },
- { 48495, "Alm. Brand A/S" },
- { 48496, "LOTS Group AB" },
- { 48497, "VIDA Energi AB" },
- { 48498, "VIDA Skog AB" },
- { 48499, "inovex GmbH" },
- { 48500, "Ventilatorenfabrik Oelde GmbH" },
- { 48501, "Wilmers Messtechnik GmbH" },
- { 48502, "Startups, Inc." },
- { 48503, "Magrathea Laboratories e.V." },
- { 48504, "Pulselight Inc" },
- { 48505, "AI2Co" },
- { 48506, "Tunnel Radio of America" },
- { 48507, "o-byte.com GmbH & Co. KG" },
- { 48508, "Trapeze-Elgeba GmbH" },
- { 48509, "add solution GmbH" },
- { 48510, "Grand Rapids Adventist Academy" },
- { 48511, "ApeComm Sdn. Bhd." },
- { 48512, "Inspur Group Co.,Ltd." },
- { 48513, "Owari Precision Products (India) Pvt.Ltd." },
- { 48514, "Warkdag AS" },
- { 48515, "PACE POWER SYSTEMS PVT LTD" },
- { 48516, "Duerr IT Service GmbH" },
- { 48517, "Locatel Flotas, S.L." },
- { 48518, "BYOM Electronics LLC" },
- { 48519, "St. Bernards Medical Center" },
- { 48520, "ADISTA SAS" },
- { 48521, "nCentric Europe BVBA" },
- { 48522, "Elisa Eesti AS" },
- { 48523, "ALTEC S.p.A." },
- { 48524, "Ping Communication (Switzerland) AG" },
- { 48525, "SnapServ Ltd" },
- { 48526, "Twilio" },
- { 48527, "LEGO System A/S" },
- { 48528, "IT Niedersachsen" },
- { 48529, "MediaSift Ltd" },
- { 48530, "OOO \"TIUS\"" },
- { 48531, "FIS" },
- { 48532, "Inlandsfrakt AB" },
- { 48533, "Sony Mobile Communications AB" },
- { 48534, "FIT Networks" },
- { 48535, "Blue Ridge Concepts, Inc." },
- { 48536, "Hochschule Aschaffenburg" },
- { 48537, "Defense Information Systems Agency" },
- { 48538, "ServerCentral" },
- { 48539, "ED&F Man Capital Markets" },
- { 48540, "ED&F Man Capital Markets" },
- { 48541, "BWAY S.r.l." },
- { 48542, "Chromatic Inc." },
- { 48543, "Procesar, S.A de C.V" },
- { 48544, "TV-Teknik Jonas Hermansson" },
- { 48545, "Triona AB" },
- { 48546, "Hans Andersson Recycling AB" },
- { 48547, "Public Technical Identifiers" },
- { 48548, "Harbin Yantuo Science and Technology Development Co.,Ltd" },
- { 48549, "\0345\0271\0277\0345\0267\0236\0351\0230\0234\0346\0234\0210\0350\0275\0257\0344\0273\0266\0346\0234\0211\0351\0231\0220\0345\0205\0254\0345\0217\0270 (Guangzhou fuyue Software Co. Ltd.)" },
- { 48550, "Beijing Redlink Information Technology Co., Ltd." },
- { 48551, "Profound Solutions" },
- { 48552, "ShangHai 30wish information security Limited" },
- { 48553, "Duet Asset Management Ltd" },
- { 48554, "Church Pension Group Services Corporation" },
- { 48555, "STORMATRIX, Inc." },
- { 48556, "bellaflora Gartencenter GmbH" },
- { 48557, "OOO LOYALTY PROGRAM Koshelek" },
- { 48558, "Trinity Grammar School" },
- { 48559, "Rosenberger Technology (Kunshan) Co., Ltd" },
- { 48560, "Almn\0303\0244s Bruk AB" },
- { 48561, "Munksj\0303\0266 Paper AB" },
- { 48562, "KENDRIS AG" },
- { 48563, "ANEXIA Internetdienstleistungs GmbH" },
- { 48564, "Autoland Deutschland Inh. Wilfried Wilhelm Anclam, e. K." },
- { 48565, "NEUBERT-IT Inh. Mario Neubert" },
- { 48566, "Guangzhou Shirui Electronics Co., Ltd. " },
- { 48567, "LINET Group SE" },
- { 48568, "First Orion LLC" },
- { 48569, "Midland States Bancorp, Inc" },
- { 48570, "sn3rd llc" },
- { 48571, "Istanbul Teknik Universitesi (ITU)" },
- { 48572, "Vanti" },
- { 48573, "C-Hack" },
- { 48574, "Quanergy Systems, Inc" },
- { 48575, "Experts Enterprises." },
- { 48576, "GTBilt" },
- { 48577, "Fail-Safe IT Solutions Oy" },
- { 48578, "Shenzhen KSTAR Science and Technology Co., Ltd" },
- { 48579, "BOMAR, spol. s r.o." },
- { 48580, "Continuity Logic LLC" },
- { 48581, "Changhong Network Tech." },
- { 48582, "GSK #11 Gradskiy" },
- { 48583, "HTWNET Information Technology Services" },
- { 48584, "CineLab" },
- { 48585, "jiangsu broadcasting cable information network corporation limited suzhou branch" },
- { 48586, "KUNDOXT GmbH" },
- { 48587, "Ring2 Communications LLC" },
- { 48588, "Capgemini Next Generation Platform" },
- { 48589, "Tallink Grupp AS" },
- { 48590, "Pe\0303\0261asco Valley Telephone Cooperative, Inc." },
- { 48591, "Borda Technology" },
- { 48592, "Capetrust" },
- { 48593, "ECRA SRL " },
- { 48594, "University Cancer Institute" },
- { 48595, "ENKON Information Systems Inc." },
- { 48596, "SKOGsam ab" },
- { 48597, "Administrative Computer Consultants Co." },
- { 48598, "NetGuardians" },
- { 48599, "Zodiac Telecommunications South Africa " },
- { 48600, "Cyber Advanced Technology, Inc." },
- { 48601, "Syadem" },
- { 48602, "Pacific Hematology Oncology Associates" },
- { 48603, "Systemk" },
- { 48604, "ShenZhen SandStone Data Technology Co.,Ltd" },
- { 48605, "PSZ" },
- { 48606, "ADVENS" },
- { 48607, "Navkonzept GmbH" },
- { 48608, "PT. Waruna Nusa Sentana" },
- { 48609, "Averbis GmbH" },
- { 48610, "Net2Edge Limited" },
- { 48611, "Locher & Christ GmbH" },
- { 48612, "R.WEISS GROUP" },
- { 48613, "DTV Innovations, LLC" },
- { 48614, "Infraxis AG" },
- { 48615, "Cancer Care Associates of York" },
- { 48616, "AWGES" },
- { 48617, "binsec GmbH" },
- { 48618, "revservrd" },
- { 48619, "Stream Technologies Ltd" },
- { 48620, "ALMERYS" },
- { 48621, "Dueton Systems s.r.o." },
- { 48622, "Innovate DC S.A.C." },
- { 48623, "Ingarps Tr\0303\0244varor AB" },
- { 48624, "Johnson Earls" },
- { 48625, "Setra Group AB " },
- { 48626, "Duo Security" },
- { 48627, "CounterCraft" },
- { 48628, "Whanganui High School" },
- { 48629, "ID-ware Deutschland GmbH" },
- { 48630, "DOCAPOST" },
- { 48631, "AlkSys" },
- { 48632, "Carousel Industries of North America" },
- { 48633, "IT-Consulting Gschwendt" },
- { 48634, "BK TELECOMUNICA\0303\0207\0303\0225ES LTDA ME" },
- { 48635, "Riverside County Information Technology" },
- { 48636, "ewell" },
- { 48637, "COLEGIO DE NOTARIOS DE LIMA" },
- { 48638, "DOCTORS CANCER CENTER" },
- { 48639, "Platformatics" },
- { 48640, "Electronic Technology Inc." },
- { 48641, "Det Norske Studentersamfund" },
- { 48642, "Wangarden" },
- { 48643, "Graytech Computers" },
- { 48644, "UNION NATIONALE DES MAISONS FAMILIALES RURALES D'EDUCATION et D'ORIENTATION" },
- { 48645, "Haldor Topsoe" },
- { 48646, "Aralink Tecnologias de la Informacion SL" },
- { 48647, "Jan Vana" },
- { 48648, "New Mexico Oncology Hematology Center, Ltd" },
- { 48649, "Practical Design Group, LLC" },
- { 48650, "MAILEVA" },
- { 48651, "Vint" },
- { 48652, "Lokithor S\0303\0251curit\0303\0251" },
- { 48653, "HUGO BOSS AG" },
- { 48654, "P3KI GmbH" },
- { 48655, "Sky Brasil" },
- { 48656, "HighJump Software Inc." },
- { 48657, "Tobias Tilgner" },
- { 48658, "Martin Balint" },
- { 48659, "Tecnotel Servizi Tecnologici SRL" },
- { 48660, "Netz-Weise" },
- { 48661, "Dialamerica" },
- { 48662, "bDigital Indonesia" },
- { 48663, "T38Fax Incorporated" },
- { 48664, "eth2 networks" },
- { 48665, "Telcom d.o.o." },
- { 48666, "24-7 Entertainment ApS" },
- { 48667, "ibes AG" },
- { 48668, "Czech University of Life Sciences Prague (CULS)" },
- { 48669, "WIPO" },
- { 48670, "Nuco Technologies LTD (Host-IT Internet Solutions)" },
- { 48671, "Giax GmbH" },
- { 48672, "Symbotic LLC" },
- { 48673, "iCONX solutions" },
- { 48674, "Jano" },
- { 48675, "Heerscharen.Net" },
- { 48676, "Zaba Industries" },
- { 48677, "SEPSA" },
- { 48678, "RNAV CDG" },
- { 48679, "dataWeapons" },
- { 48680, "abas-usa" },
- { 48681, "Guangzhou Caipin Communication Technology Co., Ltd." },
- { 48682, "NETSTARS CO., LTD." },
- { 48683, "Elastifile" },
- { 48684, "32lou" },
- { 48685, "IXI Technology" },
- { 48686, "Pittel+Brausewetter Holding GmbH" },
- { 48687, "John Kenyon" },
- { 48688, "Ventacity Systems, Inc." },
- { 48689, "Novar GmbH" },
- { 48690, "Teltonika" },
- { 48691, "OPNT B.V." },
- { 48692, "ASP AG" },
- { 48693, "Sistemas Electr\0303\0263nicos de Potencia, S.A." },
- { 48694, "Vision4ce Limited" },
- { 48695, "Occitaline" },
- { 48696, "infofab GmbH" },
- { 48697, "Threat Stack, Inc." },
- { 48698, "McHenry Savings Bank" },
- { 48699, "Reversing Labs" },
- { 48700, "SwipeSense" },
- { 48701, "Steward Health Care System" },
- { 48702, "ReversingLabs US Inc." },
- { 48703, "A.T.I.B. Srl" },
- { 48704, "Center of Radiological Medical Physics, USTC" },
- { 48705, "Griffith City Council" },
- { 48706, "Beijing Feifanshi Technology Co., Ltd." },
- { 48707, "h\0303\0244wa GmbH" },
- { 48708, "Rolls-Royce Control Systems" },
- { 48709, "DevTeam SRL" },
- { 48710, "Gluu, Inc." },
- { 48711, "UBIVELOX Inc." },
- { 48712, "van-Eerd.net" },
- { 48713, "DWA Internet Solutions" },
- { 48714, "LEMZ R&P Corp." },
- { 48715, "LEMZ R&P Corp." },
- { 48716, "Ceredigion County Council" },
- { 48717, "Q2 Solutions" },
- { 48718, "United Power Inc" },
- { 48719, "Digitalor Tech Inc" },
- { 48720, "New Mexico Oncology Hematology Consultants, Ltd" },
- { 48721, "Chastain-Skillman, Inc." },
- { 48722, "PG Services Sarl" },
- { 48723, "Institute for Family Health" },
- { 48724, "cCARE:California Cancer Associates for Research and Excellence" },
- { 48725, "PayNet, Inc." },
- { 48726, "TAP Portugal" },
- { 48727, "COTA Inc." },
- { 48728, "CircleX" },
- { 48729, "CSRA" },
- { 48730, "HostDir" },
- { 48731, "Home Branch" },
- { 48732, "Funda\0303\0247\0303\0243o Educacional Encosta Inferior do Nordeste" },
- { 48733, "Excellium Services S.A." },
- { 48734, "IOxOS Technologies SA" },
- { 48735, "CAE Engineering Kft." },
- { 48736, "INX International Ink Co." },
- { 48737, "EasyNMS" },
- { 48738, "Littlepay Pty Ltd" },
- { 48739, "\0346\0235\0255\0345\0267\0236\0347\0224\0265\0345\0255\0220\0347\0247\0221\0346\0212\0200\0345\0244\0247\0345\0255\0246 (Hangzhou University of Electronic Science and Technology)" },
- { 48740, "Clanjor Prods." },
- { 48741, "Zitius Service Delivery AB" },
- { 48742, "RetailPact Group" },
- { 48743, "Cepheid" },
- { 48744, "MiraCosta Community College District" },
- { 48745, "JSC Team-R" },
- { 48746, "Fondation Officielle de la Jeunesse" },
- { 48747, "Meep Consulting SPRL" },
- { 48748, "Ali" },
- { 48749, "Cavisson Systems Inc." },
- { 48750, "Traiana Inc." },
- { 48751, "Pace IT Systems" },
- { 48752, "Bergs Timber Production AB" },
- { 48753, "ES-prom" },
- { 48754, "EnShape GmbH" },
- { 48755, "Armagard Ltd" },
- { 48756, "Skogss\0303\0244llskapets F\0303\0266rvaltning AB" },
- { 48757, "kubos.org" },
- { 48758, "3City Electronics Sp. z o.o." },
- { 48759, "Le EcoSystems Technology Private Limited" },
- { 48760, "Envall Tech" },
- { 48761, "SEYR" },
- { 48762, "AiEmTi LLC" },
- { 48763, "VoltDB" },
- { 48764, "HeartVista, Inc." },
- { 48765, "1705 Purdue" },
- { 48766, "Sawtelle & Palms" },
- { 48767, "SDIS DE SAONE ET LOIRE" },
- { 48768, "DeviceRadio AB" },
- { 48769, "Process Automation Solutions GmbH" },
- { 48770, "Tosibox Oy" },
- { 48771, "Diebold Nixdorf" },
- { 48772, "SSP ZhilComResurs " },
- { 48773, "NETRONIK spolka z o.o." },
- { 48774, "FlexiLogix" },
- { 48775, "TELSY SpA" },
- { 48776, "Skellefte\0303\0245 Kraft AB" },
- { 48777, "Globalways AG" },
- { 48778, "Dana-Farber Community Cancer Care" },
- { 48779, "Michel Reynaud Joyeux" },
- { 48780, "Trustonic" },
- { 48781, "blobule.com" },
- { 48782, "Moelven Skog AB" },
- { 48783, "STG, Inc." },
- { 48784, "European Securities and Markets Authority" },
- { 48785, "ARGETURK" },
- { 48786, "heiland.io" },
- { 48787, "linudata GmbH" },
- { 48788, "Bohlins Tr\0303\0244export AB" },
- { 48789, "Fielmann AG" },
- { 48790, "OOO KIT" },
- { 48791, "H. Elderson" },
- { 48792, "SCC Technology GmbH" },
- { 48793, "morgiij, inc." },
- { 48794, "binnj, inc." },
- { 48795, "Comm5 Tecnologia Ltda" },
- { 48796, "Tennessee Oncology, PLLC" },
- { 48797, "Inspur-Cisco Networking Technology Co., Ltd." },
- { 48798, "AKIPS Pty Ltd" },
- { 48799, "BiZone LLC" },
- { 48800, "CSNS" },
- { 48801, "CAF Signalling" },
- { 48802, "Panavision International, L.P." },
- { 48803, "VTID" },
- { 48804, "Univef LLC" },
- { 48805, "Shadrinsk State Pedagogical University" },
- { 48806, "uznm" },
- { 48807, "Post Holdings" },
- { 48808, "Thales Services France ATHENA (formerly 'THALES SERVICES LAB CSK')" },
- { 48809, "medi-x-Thomas Kadlubowski" },
- { 48810, "21st Century Onco EKWR" },
- { 48811, "BADU Networks Inc." },
- { 48812, "Nerotech Solutions" },
- { 48813, "TechnoBox Tecnologia LTDA" },
- { 48814, "Max Planck Institute for Polymer Research" },
- { 48815, "ProsiebenSat.1 Digital GmbH" },
- { 48816, "Boxholms Skogar AB" },
- { 48817, "R\0303\0266dins Tr\0303\0244 AB" },
- { 48818, "WELLTRON ELECTRONICS CO., LTD." },
- { 48819, "Techno Mathematical" },
- { 48820, "VoiSmart S.r.l." },
- { 48821, "Haroutioun Shahinian, MD, PA" },
- { 48822, "Interfax - Corporate Information Disclosure Center LLC" },
- { 48823, "MAIF" },
- { 48824, "Ponce Hematology Oncology" },
- { 48825, "Smurfit Kappa Kraftliner Pite\0303\0245 Aktiebolag" },
- { 48826, "Gabriel Domenech 21st Century Oncology" },
- { 48827, "KGSS" },
- { 48828, "Bollore" },
- { 48829, "INSYS Therapeutics, Inc." },
- { 48830, "Green Charge Networks, LLC" },
- { 48831, "Clarive Software" },
- { 48832, "Assense Software Solutions" },
- { 48833, "Veas Inc." },
- { 48834, "WS Technology GmbH" },
- { 48835, "Pico Systems Co., Ltd." },
- { 48836, "Evada Technology (Shenzhen) Co.,Ltd" },
- { 48837, "FUJIAN NEBULA BIG DATA APPLICATION SERVICE CO.,LTD" },
- { 48838, "Nesodden Kommune" },
- { 48839, "S\0303\0266ml\0303\0266s AB" },
- { 48840, "stij.net" },
- { 48841, "LevelUP Solutions Pty Ltd" },
- { 48842, "Spiral Software Ltd" },
- { 48843, "LBS Bayerische Landesbausparkasse" },
- { 48844, "Unmanned Innovation D.B.A Airware" },
- { 48845, "August Schell" },
- { 48846, "WE" },
- { 48847, "Reputronix" },
- { 48848, "FORTUNA GAME a.s." },
- { 48849, "Marcus Seidel Beteiligungs GmbH Businessangels.de" },
- { 48850, "Logi-Concept Computers" },
- { 48851, "Flaxen Consulting " },
- { 48852, "SL Global Service" },
- { 48853, "Jura Elektroapparate AG" },
- { 48854, "SherWeb Inc." },
- { 48855, "Domsj\0303\0266 Fiber AB" },
- { 48856, "Lewis-Sigler Institute" },
- { 48857, "Hawaii Cancer Care " },
- { 48858, "Hope Health Center" },
- { 48859, "Nevada National Security Site" },
- { 48860, "\0342\0200\0234Metinvest Eurasia\0342\0200\0235 LLC" },
- { 48861, "Aysima Bili\0305\0237im Teknolojileri" },
- { 48862, "Alexson Solutions" },
- { 48863, "HM Wallace, Inc." },
- { 48864, "Serit Skagerak AS" },
- { 48865, "Sava Turizem" },
- { 48866, "Enav spa" },
- { 48867, "Questa Computing Ltd." },
- { 48868, "Bureau de coop\0303\0251ration interuniversitaire" },
- { 48869, "Synergy Embedded" },
- { 48870, "ECHONET Consortium" },
- { 48871, "XSky(beijing) Data Technology Co.,Ltd." },
- { 48872, "PT. Cipta Piranti Sejahtera" },
- { 48873, "Guangzhou Rojao Technology Co., Ltd" },
- { 48874, "DongHui Group" },
- { 48875, "Fast National University" },
- { 48876, "Fatbat" },
- { 48877, "thomas beteiligungen GmbH" },
- { 48878, "TOP TECHNOLOGIES CONSULTING GmbH" },
- { 48879, "Centre Patronal" },
- { 48880, "The Sigma Financial Group Limited" },
- { 48881, "MTRLC LLC" },
- { 48882, "L-TECH Corp. Networks" },
- { 48883, "Universidad de Murcia" },
- { 48884, "Skyriver" },
- { 48885, "Tsuzuki Denki Co. Ltd." },
- { 48886, "NPF Sibpeleng Ltd." },
- { 48887, "\0344\0270\0234\0346\0226\0271\0347\0275\0221\0345\0212\0233\0347\0247\0221\0346\0212\0200\0350\0202\0241\0344\0273\0275\0346\0234\0211\0351\0231\0220\0345\0205\0254\0345\0217\0270\0345\0215\0227\0344\0272\0254\0347\0240\0224\0345\0217\0221\0344\0270\0255\0345\0277\0203 (Oriental Network Technology Co., Ltd. Nanjing R & D Center)" },
- { 48888, "SSLINK TECHNOLOGY (BEIJING) CO., LTD." },
- { 48889, "SilicoWolf (Pty) Ltd." },
- { 48890, "Huels Unternehmensgruppe" },
- { 48891, "EVN AG" },
- { 48892, "Administration des services de secours" },
- { 48893, "Bornemann AG" },
- { 48894, "Banco BPI, SA" },
- { 48895, "Netcompany A/S" },
- { 48896, "Ironwood Physicians, PC" },
- { 48897, "/ETC - Martin Misuth" },
- { 48898, "Software Freedom Law Center" },
- { 48899, "VoiceOverNet" },
- { 48900, "Guaranty Bank and Trust Company" },
- { 48901, "DOTSENSEI LTD" },
- { 48902, "Shenzhen Puduan Technology Co., Ltd." },
- { 48903, "Qualvision" },
- { 48904, "AB Gustaf K\0303\0244hr" },
- { 48905, "Falan Energiflis AB" },
- { 48906, "EVRY Sweden AB" },
- { 48907, "Ter Hell & Co. GmbH" },
- { 48908, "girtech srl" },
- { 48909, "SDEL Contr\0303\0264le Commande" },
- { 48910, "Rheinische Fachhochschule K\0303\0266ln gGmbH" },
- { 48911, "DS Norden A/S" },
- { 48912, "Thismonkey IT Pty. Ltd." },
- { 48913, "Haussli" },
- { 48914, "Conductor Inc." },
- { 48915, "SPG International, LLC" },
- { 48916, "ITS-Network" },
- { 48917, "CPI Security" },
- { 48918, "Dothan Hematology & Oncology" },
- { 48919, "Bancroft" },
- { 48920, "Identos Inc." },
- { 48921, "Mercer Bucks Hematology Oncology" },
- { 48922, "Thales Australia" },
- { 48923, "icomer" },
- { 48924, "HIST" },
- { 48925, "Invite Services" },
- { 48926, "OOO Tsentr Sistem Svyazi" },
- { 48927, "Circle B" },
- { 48928, "\0346\0267\0261\0345\0234\0263\0345\0270\0202\0350\0247\0206\0346\0270\0270\0344\0272\0222\0345\0212\0250\0347\0247\0221\0346\0212\0200\0346\0234\0211\0351\0231\0220\0345\0205\0254\0345\0217\0270 (Shenzhen City videoseeing Interactive Technology Co., Ltd)" },
- { 48929, "DBLabs" },
- { 48930, "IFRASS" },
- { 48931, "Assecor GmbH" },
- { 48932, "Secure Systems & Technologies" },
- { 48933, "BIT" },
- { 48934, "Vevida" },
- { 48935, "PumpCo Ltd" },
- { 48936, "OMEGA Ltd" },
- { 48937, "Polyconseil SAS" },
- { 48938, "Denys Berkovskyy" },
- { 48939, "Vevida" },
- { 48940, "Controllis" },
- { 48941, "Schleupen AG" },
- { 48942, "Synaptics Inc" },
- { 48943, "Ampetronic Ltd" },
- { 48944, "Lietuvos vyriausiojo archyvaro tarnyba " },
- { 48945, "Rundvirke Skog AB" },
- { 48946, "556081-8782" },
- { 48947, "ATMC Automa\0303\0247\0303\0243o e Comunica\0303\0247\0303\0243o Ltda" },
- { 48948, "TCPixel, LLC" },
- { 48949, "At4wireless" },
- { 48950, "LogDNA" },
- { 48951, "UNION TANK Eckstein GmbH & Co. KG " },
- { 48952, "ATA Timber AB" },
- { 48953, "UbuntuNet Alliance" },
- { 48954, "ieBep.cn" },
- { 48955, "Schoeller Technocell GmbH & Co KG" },
- { 48956, "T4MGroup.com" },
- { 48957, "awaii.net" },
- { 48958, "Trinity Industries, Inc." },
- { 48959, "Cruise Engineering Management Consulting" },
- { 48960, "SoftwareONE AG" },
- { 48961, "struktur AG" },
- { 48962, "Unilogic Networks B.V." },
- { 48963, "G\0303\0244ll\0303\0266 Skog AB" },
- { 48964, "V\0305\0240\0304\0256 \"\0305\0240viesos k\0305\0253giai\"" },
- { 48965, "eMudhra Limited" },
- { 48966, "Nils Kaczenski" },
- { 48967, "ZincFive, Inc." },
- { 48968, "akquinet AG" },
- { 48969, "TK-Schulsoftware GmbH & Co. KG" },
- { 48970, "Navipoint Genomics LLC" },
- { 48971, "PSYSTEME GmbH" },
- { 48972, "Soulssoft" },
- { 48973, "Menzel IT Services" },
- { 48974, "Arte y Calidad en Papel,Artepapel,S.A." },
- { 48975, "Ulmart RSK Ltd." },
- { 48976, "MURATA SYSTEMS,LTD." },
- { 48977, "Corsham Technologies, LLC" },
- { 48978, "Sawwave" },
- { 48979, "\0345\0270\0235\0344\0277\0241\0347\0247\0221\0346\0212\0200\0350\0202\0241\0344\0273\0275\0346\0234\0211\0351\0231\0220\0345\0205\0254\0345\0217\0270 (DIXIN Technology Co., Ltd)" },
- { 48980, "TCL-IMAX" },
- { 48981, "Eigenexus Incorporated" },
- { 48982, "Navitel s.r.o." },
- { 48983, "Open Consent Group" },
- { 48984, "Athene Lebensversicherung AG" },
- { 48985, "Netresec AB" },
- { 48986, "LLC \"INVEST-M\"" },
- { 48987, "SkyDNS LLC" },
- { 48988, "Streamonix Ltd" },
- { 48989, "Ture Johanssons Tr\0303\0244varu AB" },
- { 48990, "Intesi Group S.p.A." },
- { 48991, "Aequitas Software GmbH & Co. KG" },
- { 48992, "AEF e.V. " },
- { 48993, "MKB Webhoster Limited" },
- { 48994, "AGELEC" },
- { 48995, "Lumeta Corporation" },
- { 48996, "HOPE Cancer Center of East Texas" },
- { 48997, "Colorado Blood Cancer Institute" },
- { 48998, "Colorado Blood Cancer Institute" },
- { 48999, "MoraMedSoft" },
- { 49000, sminmpec_unknown }, /* (Added by Wireshark) */
- { 49001, "KHADAMAT NOVIN DADEAVARZI SADAD" },
- { 49002, "ULTRA SA" },
- { 49003, "Gen Re" },
- { 49004, "EGate Networks Inc." },
- { 49005, "A&H Software House, Inc." },
- { 49006, "DHARA CONSULTING GROUP, INC" },
- { 49007, "YAMABUN ELECTRONICS CO., LTD." },
- { 49008, "Derome Timber AB" },
- { 49009, "THE PUBLIC AUTHORITY FOR CIVIL INFORMATION" },
- { 49010, "Rayzon Technologies AG" },
- { 49011, "Tanium Inc." },
- { 49012, "Indasys" },
- { 49013, "Choice Cancer Care" },
- { 49014, "S\0303\0266rmlands Printing Solutions AB" },
- { 49015, "HEXBITS TECNOLOGIA LTDA" },
- { 49016, "Build Informed GmbH" },
- { 49017, "Yukoo Limited" },
- { 49018, "Assmann T\0303\0251l\0303\0251com" },
- { 49019, "ExaScaler Inc." },
- { 49020, "Exaphotons Co., ltd." },
- { 49021, "Saturn Imaging Inc." },
- { 49022, "China Moblie(Suzhou) Software Technology Co,Ltd" },
- { 49023, "Universit\0303\0244tsbibliothek Johann Christian Senckenberg" },
- { 49024, "Deutsche Gesellschaft zum Bau und Betrieb von Endlagern fuer Abfallstoffe mbH" },
- { 49025, "ISPAS AS" },
- { 49026, "DEG - Deutsche Investitions- und Entwicklungsgesellschaft mbH" },
- { 49027, "Berner Trading Holding GmbH" },
- { 49028, "V\0303\0244rmev\0303\0244rden AB" },
- { 49029, "Seven Solutions S.L" },
- { 49030, "GST" },
- { 49031, "Walhalla u. Praetoria Verlag GmbH & Co. KG" },
- { 49032, "Telecom North America Inc." },
- { 49033, "Uptake Technologies, Inc." },
- { 49034, "PROFEN ILETISIM" },
- { 49035, "Seattle Radiologists APC" },
- { 49036, "EM Group" },
- { 49037, "BrByte" },
- { 49038, "Klinikum Dortmund" },
- { 49039, "Teslonix Inc" },
- { 49040, "Pharm-IT GmbH" },
- { 49041, "Betc digital" },
- { 49042, "Blue Pillar" },
- { 49043, "TeamViewer GmbH" },
- { 49044, "NewPace Communications Inc" },
- { 49045, "JoyMoe Interactive Entertainment Limited" },
- { 49046, "Faria Education Group Limited" },
- { 49047, "Ville de Qu\0303\0251bec" },
- { 49048, "AFONWeb" },
- { 49049, "Oster Consulting" },
- { 49050, sminmpec_unknown }, /* (Added by Wireshark) */
- { 49051, "IKEM AD" },
- { 49052, "Tr\0303\0244t\0303\0245g AB" },
- { 49053, "Cesare Ceneri" },
- { 49054, "Koenigin-Luise-Stiftung" },
- { 49055, "AOIFES" },
- { 49056, "4SH FRANCE" },
- { 49057, "invenio GmbH Engineering Services" },
- { 49058, "Glookast LLC" },
- { 49059, "Cronoburn" },
- { 49060, "Martinsons S\0303\0245g Aktiebolag" },
- { 49061, "Agree Technoloy" },
- { 49062, "William Robinson" },
- { 49063, "ALTYS TECHNOLOGIES" },
- { 49064, "Astyx GmbH Communication & Sensors" },
- { 49065, "Gruppo Servizi Informatici s.r.l." },
- { 49066, "Capesesp - Caixa de Assistencia e Previdencia" },
- { 49067, "Beaufort - Jasper Water & Sewer Authority" },
- { 49068, "SGCA-THD" },
- { 49069, "ICT Berufsbildungscenter AG" },
- { 49070, sminmpec_unknown }, /* (Added by Wireshark) */
- { 49071, "D2slink Systems" },
- { 49072, "AIG Wilton" },
- { 49073, "Cutler Group, LP" },
- { 49074, "Blue Cross Blue Shield of North Dakota" },
- { 49075, "Samlex America Inc" },
- { 49076, "Itawamba Community College" },
- { 49077, "JGA Skog AB" },
- { 49078, "Sk\0303\0245netimmer Bioenergi AB" },
- { 49079, "Sk\0303\0245netimmer AB" },
- { 49080, "Allianz pojistovna, a.s." },
- { 49081, "L\0303\0263gica Sistemas de Informa\0303\0247\0303\0243o LTDA-ME" },
- { 49082, "Modulation Index, LLC" },
- { 49083, "Avon Maitland District School Board" },
- { 49084, "BrByte" },
- { 49085, "DETEC" },
- { 49086, "CORUSCANT INVESTMENT GROUP AS" },
- { 49087, "Waterside Consulting, Inc" },
- { 49088, "D.S. Group Ltd." },
- { 49089, "ESKtrade UG (haftungsbeschraenkt)" },
- { 49090, "My-MTC.NET" },
- { 49091, "Eastern Connecticut Hematology and Oncology" },
- { 49092, "One Call Away, Inc." },
- { 49093, "Xi'an HISU Multimedia Technology Co., Ltd.q" },
- { 49094, "FASTWEL Group Co. Ltd." },
- { 49095, "Swedish National Agency for Education" },
- { 49096, "KPCS CZ" },
- { 49097, "EVTEC AG" },
- { 49098, "NP ZAO \"REKO-VEK\"" },
- { 49099, "GBLabs Ltd." },
- { 49100, "ce - corporate education GmbH" },
- { 49101, "EBS BrokerTec" },
- { 49102, "INEL TEHNIK" },
- { 49103, "AMD" },
- { 49104, "Invenia AS" },
- { 49105, "tetrardus.net" },
- { 49106, "Hindog.com" },
- { 49107, "Elecronic Applications, Inc." },
- { 49108, "Gustafsborgs S\0303\0244teri AB" },
- { 49109, "R\0303\0266rvik Skog " },
- { 49110, "Millenium Internet Exchange" },
- { 49111, "Tigera, Inc." },
- { 49112, "Hecho-a-Mano" },
- { 49113, "ITooLabs" },
- { 49114, "simplicity wins" },
- { 49115, "GreenAnt" },
- { 49116, "\0345\0244\0251\0346\0264\0245\0350\0223\0235\0345\0244\0251\0347\0247\0221\0346\0212\0200\0350\0202\0241\0344\0273\0275\0346\0234\0211\0351\0231\0220\0345\0205\0254\0345\0217\0270 (Tianjin Blue Sky Technology Co., Ltd)" },
- { 49117, "Micronet Communications Inc." },
- { 49118, "Utilex" },
- { 49119, "Setra Tr\0303\0244varor" },
- { 49120, "pureLiFi Limited" },
- { 49121, "Legislative Assembly of British Columbia" },
- { 49122, "Antheus Telecom Ltd" },
- { 49123, "Turbonomic, Inc." },
- { 49124, "Hematology Oncology Associates Of Brooklyn " },
- { 49125, "Xoriah Solutions Inc." },
- { 49126, "Sudo Security Group, Inc" },
- { 49127, "Mus\0303\0251e Gu\0303\0251rin" },
- { 49128, "PromKomplektServis" },
- { 49129, "finke Das Erlebnis-Einrichten GmbH & Co. KG" },
- { 49130, "access fintech" },
- { 49131, "OWLCO" },
- { 49132, "Globility Limited" },
- { 49133, "Stiegele Datensysteme GmbH" },
- { 49134, "BKS Systems, Inc." },
- { 49135, "Carbon Soft Ltd" },
- { 49136, "ALGcom " },
- { 49137, "Ljusnans Virkesfrakt AB" },
- { 49138, "bjut, Inc." },
- { 49139, "First State Investments (UK) Limited" },
- { 49140, "exands" },
- { 49141, "VAG-Armaturen GmbH" },
- { 49142, "Gemalto AG Switzerland" },
- { 49143, "cryptosource GmbH" },
- { 49144, "AB H\0303\0266gland S\0303\0245g & Hyvleri" },
- { 49145, "IHK N\0303\0274rnberg f\0303\0274r Mittelfranken" },
- { 49146, "bpost banque SA - bpost bank NV" },
- { 49147, "Bexen Cardio" },
- { 49148, "Civis Grand Casino Kft." },
- { 49149, "Deutsche Gesellschaft zum Bau und Betrieb von Endlagern fuer Abfallstoffe mbH (DBE)" },
- { 49150, "Vertiv Co" },
- { 49151, "California Credit Union" },
- { 49152, "BlueArchive" },
- { 49153, "Stratos" },
- { 49154, "Nordic Automation Systems" },
- { 49155, "jusst technologies GmbH" },
- { 49156, "Canham" },
- { 49157, "Sylpheo" },
- { 49158, "Cancer Center of Southern Califonria/Sarcoma Oncology Research Center" },
- { 49159, "Milai Digital" },
- { 49160, "Forssj\0303\0266 Pellets AB" },
- { 49161, "CEIA S.p.A." },
- { 49162, "Team GeoLook" },
- { 49163, "Nippon Electronics Service Co." },
- { 49164, "Japan Novel Corporation" },
- { 49165, "JUNI Software SAS" },
- { 49166, "Kirale Technologies S.L." },
- { 49167, "Terpotiz - Privat" },
- { 49168, "Clear Guide Medical Inc." },
- { 49169, "Zhejiang Chuangyi Optoelectronics CO.,LTD." },
- { 49170, "Dhaawat Web Services" },
- { 49171, "UCS Technology Services" },
- { 49172, "Eurowings Aviation GmbH" },
- { 49173, "PTV Group" },
- { 49174, "Bogadi" },
- { 49175, "Galapagos Linux Foundation" },
- { 49176, "CCMI" },
- { 49177, "Capital Vision Services, LLC" },
- { 49178, "End 2 End Technologies, LLC" },
- { 49179, "xmachina GmbH" },
- { 49180, "hoge.se" },
- { 49181, "MAGFest" },
- { 49182, "Flughafen K\0303\0266ln/Bonn GmbH" },
- { 49183, "Codeacious Pty Ltd" },
- { 49184, "IT PRO Szkolenia" },
- { 49185, "Quasar EDV-Informationsges. mbH" },
- { 49186, "Cinedom Kinobetriebe GmbH" },
- { 49187, "Wausau Supply Co" },
- { 49188, "O3cv" },
- { 49189, "LDA Technologies" },
- { 49190, "Mothic Technologies LLC" },
- { 49191, "LCA Systems" },
- { 49192, "CM IT Certification Authority" },
- { 49193, "Archivio Digitale - Casa Mulas" },
- { 49194, "multipurpose center of Irkutsk region" },
- { 49195, "Deutsche Messe" },
- { 49196, "First Solutions Sistemas de Informa\0303\0247\0303\0243o S.A." },
- { 49197, "Orange System Group, CJSC" },
- { 49198, "Domination" },
- { 49199, "WONDERS INFORMATION CO., LTD" },
- { 49200, "Vasamed, Inc" },
- { 49201, "ANF Autoridad de Certificaci\0303\0263n, S.L." },
- { 49202, "S.C. Mindsentry S.R.L." },
- { 49203, "Dirk Gerbig, EDV & IT-Dienstleistungen" },
- { 49204, "Foehammer Games LLC" },
- { 49205, "CERMOB TECNOLOGIA LTDA" },
- { 49206, "City of Tempe" },
- { 49207, "arizvi" },
- { 49208, "Jackie's Wholesale Nurseries Pty Ltd" },
- { 49209, "easynetworks" },
- { 49210, "CR0BAR Limited" },
- { 49211, "DATAGROUP Operate IT GmbH (formerly 'HanseCom Gesellschaft f\0303\0274r Informations- und Kommunikationsdienstleistungen mbH')" },
- { 49212, "Oleg Dubovskoy" },
- { 49213, "Nextcloud" },
- { 49214, "Monzo Bank Limited" },
- { 49215, "Emma, Inc." },
- { 49216, "Corigine, Inc." },
- { 49217, "Hypherion" },
- { 49218, "Nelkinda Software Craft Private Limited" },
- { 49219, "LANI GmbH & Co. KG" },
- { 49220, "Tiger Management L.L.C." },
- { 49221, "IACPublishing" },
- { 49222, "KOMDAT" },
- { 49223, "ZOOM SERVER" },
- { 49224, "PikTime Systems Sp. z o.o." },
- { 49225, "5micron GmbH" },
- { 49226, "Patriot's, LLC" },
- { 49227, "GGR Bryansk" },
- { 49228, "The unbelievable Machine Company GmbH" },
- { 49229, "Siljan Skog AB" },
- { 49230, "Enginuity Communications, Inc." },
- { 49231, "Guest-tek Interactive Entertainment Ltd" },
- { 49232, "ChemAxon Kft" },
- { 49233, "Liberty Bank" },
- { 49234, "Wyatt Miler" },
- { 49235, "ninIRC Network" },
- { 49236, "appway" },
- { 49237, "GAU MFC IO" },
- { 49238, "VAV UNION Kft." },
- { 49239, "MIBESIS D.O.O." },
- { 49240, "AK-Funktechnik GmbH" },
- { 49241, "uTech Tecnologia" },
- { 49242, "Steuerb\0303\0274ro Pfeiffer" },
- { 49243, "Dailymotion" },
- { 49244, "S\0303\0266derenergi AB " },
- { 49245, "The University of Kansas Health System" },
- { 49246, "Initium Novum LLC" },
- { 49247, "Genesis Cancer Center" },
- { 49248, "Leipziger Versorgungs- und Verkehrsgesellschaft mbH" },
- { 49249, "GBSD Technologies, Inc. (GBSDTech)" },
- { 49250, "Robiquity Limited" },
- { 49251, "Blue Grass Airport" },
- { 49252, "Cincinnati Bell" },
- { 49253, "Timr\0303\0245 Kommun" },
- { 49254, "Factory Systemes" },
- { 49255, "econ solutions GmbH" },
- { 49256, "Weatherford International " },
- { 49257, "ECSC Group plc" },
- { 49258, "DR-ARP" },
- { 49259, "NINTEGRATE, INC." },
- { 49260, "Bims Laboratories" },
- { 49261, "Contact Wave Limited" },
- { 49262, "Scientific RT GmbH" },
- { 49263, "Connect and Exchange" },
- { 49264, "Benelec Pty Ltd" },
- { 49265, "Kivu GmbH" },
- { 49266, "Ashenden Capital" },
- { 49267, "Government of Western Australia, Department of Finance" },
- { 49268, "Profamilia Bundesverband" },
- { 49269, "Franck d.d." },
- { 49270, "Locata Corporation Pty. Ltd." },
- { 49271, "Wireless Technology, Inc." },
- { 49272, "AREA S.p.A." },
- { 49273, "BIZMEDTECH" },
- { 49274, "Belgian Mobile ID" },
- { 49275, "Royal Society of Chemistry" },
- { 49276, "Integramed Fertility" },
- { 49277, "Stafford County Public Schools" },
- { 49278, "Ayasdi, Inc." },
- { 49279, "Tesla" },
- { 49280, "Trapper" },
- { 49281, "Plexonics Technologies Pvt. Ltd." },
- { 49282, "medimaps" },
- { 49283, "Credit Union of Colorado" },
- { 49284, "LankaClear (Pvt) Ltd. " },
- { 49285, "Lightbend Inc" },
- { 49286, "IMOTIONS" },
- { 49287, "Millson Custom Solutions" },
- { 49288, "Bitoptimum" },
- { 49289, "Praniskom Solutions Private Limited" },
- { 49290, "consultec sas di Sartor P. & c." },
- { 49291, "Access Denied bvba" },
- { 49292, "Biblioteca - Casa Mulas" },
- { 49293, "Nanjing Juming Network technology Co.,Ltd" },
- { 49294, "Hargs Bruk AB" },
- { 49295, "Direction du numerique UPPA" },
- { 49296, "Fraunhofer MEVIS" },
- { 49297, "Avicenna Health Group Inc" },
- { 49298, "The Port Authority of NY & NJ" },
- { 49299, "Truecom Telesoft Private Limited" },
- { 49300, "The New Tricks" },
- { 49301, "BCS Information Systems Pte Ltd" },
- { 49302, "Dart Container" },
- { 49303, "Flexmedia Ind. e Com. de Tecnologia Ltda." },
- { 49304, "Tapoustry" },
- { 49305, "Neural Technologies" },
- { 49306, "AUM Cardiovascular Inc" },
- { 49307, "Secturion Systems Inc." },
- { 49308, "Airwave Brasil Tecnologia" },
- { 49309, "VIDA AB" },
- { 49310, "CELLULAR GmbH" },
- { 49311, "Asteas Technologies GmbH & Co KG" },
- { 49312, "MichaelSchneiderKoeln" },
- { 49313, "Isaac Johnson Organization" },
- { 49314, "ADFweb.com" },
- { 49315, "Sealite PTY LTD" },
- { 49316, "SixGor" },
- { 49317, "ICT Star Group Myanmar Co., Ltd." },
- { 49318, "Desert Water Agency" },
- { 49319, "Credit Bank of Moscow PJSC" },
- { 49320, "Walln\0303\0244s AB" },
- { 49321, "Vevy Europe S.p.A." },
- { 49322, "Haaglanden Medisch Centrum" },
- { 49323, "Dynamic Consulting International Telecommunications Spain, S. L." },
- { 49324, "mobex communication GmbH" },
- { 49325, "EVER SMART TECHNOLOGIES SL" },
- { 49326, "Clyde Bergemann Power Group International Ltd" },
- { 49327, "Frivillighetshuset" },
- { 49328, "Praim srl" },
- { 49329, "SysEleven GmbH" },
- { 49330, "A.B.G Systems Ltd Israel" },
- { 49331, "Johannishus godsflrvaltning AB" },
- { 49332, "AppWorks" },
- { 49333, "Brighthouse Financial Inc." },
- { 49334, "Axon-Ar" },
- { 49335, "ROTOK" },
- { 49336, "Schreiber Systems" },
- { 49337, "KommunalBIT A\0303\0266R" },
- { 49338, "ASTEN" },
- { 49339, "GAYA" },
- { 49340, "Beijing Fusion Co., Ltd" },
- { 49341, "Ayuntamiento de Cartagena" },
- { 49342, "Unser Heimatb\0303\0244cker GmbH" },
- { 49343, "HaloDoc.com" },
- { 49344, "IX Layers, Inc." },
- { 49345, "KVaibhav Personal CA" },
- { 49346, "Samvardhana Motherson Innovative Autosystems B.V. & Co. KG" },
- { 49347, "Healthjump" },
- { 49348, "Yapku Limited" },
- { 49349, "BCDVideo" },
- { 49350, "VGCIT, Inc." },
- { 49351, "STIVCX" },
- { 49352, "Hines Network" },
- { 49353, "Certificate Authority for Presidential Office of Information and Communication Technologies of the Dominican Republic" },
- { 49354, "ARGYROU MINAS" },
- { 49355, "Fiskarhedens Tr\0303\0244varu AB" },
- { 49356, "DQE Communications" },
- { 49357, "Hoptroff London Limited " },
- { 49358, "Tri-State Digital Services" },
- { 49359, "Enterstrata" },
- { 49360, "Cord3 Innovations" },
- { 49361, "Pridok AS" },
- { 49362, "tabaracci.org" },
- { 49363, "Unior Hungary Ltd." },
- { 49364, "ALFA SATCOM SYSTEMS LLC" },
- { 49365, "Phoenix Online Studios" },
- { 49366, "visol digitale Dienstleistungen GmbH" },
- { 49367, "inducta++" },
- { 49368, "Airbus Safran Launchers" },
- { 49369, "Neopath Integrated Systems ltda" },
- { 49370, "VTU Energy" },
- { 49371, "VIA Rail Canada Inc." },
- { 49372, "Apmetrix, Inc." },
- { 49373, "Meissner AG (formerly 'Daniel Schmitz')" },
- { 49374, "BAITIC SOLUCIONES" },
- { 49375, "New York City Housing Authority" },
- { 49376, "IPKids" },
- { 49377, "556075-2825" },
- { 49378, "People Come First Informatikai Szakertok Egyesulete" },
- { 49379, "RGB Spectrum" },
- { 49380, "The Fastest Dog, Inc." },
- { 49381, "University of Wollongong" },
- { 49382, "Engility Corporation" },
- { 49383, "Riverscape Software" },
- { 49384, "InfoTest@KinLong" },
- { 49385, "effiPilot" },
- { 49386, "Agentil Software" },
- { 49387, "Empresas Publicas de Medellin E.S.P" },
- { 49388, "Nanjing Jiuyao Networks Technology Co.,Ltd" },
- { 49389, "Weeden & Co. LP" },
- { 49390, "Nebbiolo Technologies" },
- { 49391, "PCs Plus" },
- { 49392, "Think Clever" },
- { 49393, "Neetra Srl" },
- { 49394, "VidaIdentity" },
- { 49395, "WestTel International" },
- { 49396, "McKean Defense" },
- { 49397, "Wizards of Industry B.V." },
- { 49398, "NPCore lnc." },
- { 49399, "Process-Informatik Entwicklungsgesellschaft mbH" },
- { 49400, "Bor\0303\0245s Energi och MIlj\0303\0266 AB" },
- { 49401, "JSC Navigation-Information Systems" },
- { 49402, "Skogsbrukarna Ek F\0303\0266rening" },
- { 49403, "ZaPF e.V." },
- { 49404, "shenzhen qibo network co.,ltd" },
- { 49405, "HIGH CONNEXION" },
- { 49406, "Concordia University" },
- { 49407, "Skylark Wireless LLC" },
- { 49408, "ZestFinance" },
- { 49409, "miniOrange Inc" },
- { 49410, "Objective:pi LLC" },
- { 49411, "Mindleap" },
- { 49412, "Guenzel IT" },
- { 49413, "Telmec Soc. Coop. a r.l." },
- { 49414, "Windstack IVS" },
- { 49415, "Business Services Organisation" },
- { 49416, "upSource GmbH" },
- { 49417, "Emsyscon Solutions" },
- { 49418, "Innovation Place" },
- { 49419, "Barefoot Networks, Inc." },
- { 49420, "Baylor Scott & White Health" },
- { 49421, "DMIB Inc." },
- { 49422, "SeQnet" },
- { 49423, "The Pingry School" },
- { 49424, "GDT Advanced Solutions" },
- { 49425, "Foolean.org" },
- { 49426, "Cnergee Technologies Pvt. Ltd." },
- { 49427, "Shopping24 Internet Group" },
- { 49428, "Mobeewave" },
- { 49429, "MRSG Advisors" },
- { 49430, "Treatment.com" },
- { 49431, "UNION PAPELERA MERCHANTING, S.L." },
- { 49432, "RAMSAY G\0303\0251n\0303\0251rale de Sant\0303\0251" },
- { 49433, "Path" },
- { 49434, "cusy GmbH" },
- { 49435, "Fundamentia Business Consulting SL" },
- { 49436, "Joe Gedeon" },
- { 49437, "Prodemge" },
- { 49438, "TalkTalk Technology" },
- { 49439, "Altitude - Phenix/Projet3" },
- { 49440, "Vasgard GmbH" },
- { 49441, "OTLIS - Operadores de Transportes da Regi\0303\0243o de Lisboa, A.C.E." },
- { 49442, "IOOOTA Srl" },
- { 49443, "European Court of Auditors" },
- { 49444, "Delypse" },
- { 49445, "Emeritus Solutions Ltd" },
- { 49446, "Gordion AB" },
- { 49447, "ITAhM" },
- { 49448, "Sprylogic Technologies Ltd. " },
- { 49449, "International Telecom Assistance, sa" },
- { 49450, "DGAC SNA-RP" },
- { 49451, "Molina Healthcare Inc" },
- { 49452, "Dmitriy Merkushov" },
- { 49453, "Crab Cove Limited" },
- { 49454, "Lobster Bay Limited" },
- { 49455, "Oncology and Hematology Associates of South Texas, P.A. " },
- { 49456, "Rottneros AB" },
- { 49457, "CM IT Services" },
- { 49458, "Selective Insurance Company of America" },
- { 49459, "Baker, Donelson, Bearman, Caldwell & Berkowitz, PC" },
- { 49460, "Priora AG" },
- { 49461, "Xeen.UK LTD." },
- { 49462, "Crinkleit" },
- { 49463, "Severn Trent Services" },
- { 49464, "Darktide" },
- { 49465, "Yuki Enterprises" },
- { 49466, "Helse Midt-Norge IT" },
- { 49467, "LOGISMAN ARAG\0303\0223N, S.L." },
- { 49468, "PrJSC \"MTS UKRAINE\"" },
- { 49469, "WIT" },
- { 49470, "Community Life GmbH" },
- { 49471, "bayernets GmbH" },
- { 49472, "Photo-Sonics, Inc" },
- { 49473, "Weydstone LLC" },
- { 49474, "CKUA Radio Network" },
- { 49475, "suckleast.org Hosting Collective" },
- { 49476, "Session Control LLC" },
- { 49477, "Vault Investing" },
- { 49478, "funatic b.v." },
- { 49479, "Damian Murphy Private LDAP Development" },
- { 49480, "Williams-Sonoma, Inc. (WSI)" },
- { 49481, "Vonamic GmbH" },
- { 49482, "OEDIV Oetker Daten- und Informationsverarbeitung KG" },
- { 49483, "NYS Unified Court System" },
- { 49484, "Foundation National intellectual development" },
- { 49485, "Behr Paint" },
- { 49486, "Activx Biosciences" },
- { 49487, "NTT DATA, Inc." },
- { 49488, "Vinton Steel LLC" },
- { 49489, "Winmate INC." },
- { 49490, "Compello" },
- { 49491, "Epec Oy" },
- { 49492, "Danphone A/S" },
- { 49493, "T\0303\0274rkiye Cumhuriyeti \0304\0260\0303\0247i\0305\0237leri Bakanl\0304\0261\0304\0237\0304\0261 \0304\0260ller \0304\0260daresi Genel M\0303\0274d\0303\0274rl\0303\0274\0304\0237\0303\0274" },
- { 49494, "TSI Solutions" },
- { 49495, "Textron Systems - Electronic Systems" },
- { 49496, "BA-POWER ELECTRONICS INC." },
- { 49497, "Immucor Inc" },
- { 49498, "engelbert strauss GmbH & Co. KG" },
- { 49499, "VCAT Consulting GmbH" },
- { 49500, "CODIUM Company Limited" },
- { 49501, "UGO3D INC." },
- { 49502, "NRPL Aero Oy" },
- { 49503, "North Atlantic Industries, Inc." },
- { 49504, "De Dietrich SAS" },
- { 49505, "Payboost" },
- { 49506, "GE Transportation" },
- { 49507, "Air Canada" },
- { 49508, "FidusCrypt GmbH" },
- { 49509, "Frank Engler" },
- { 49510, "Pragmatik" },
- { 49511, "Arcom Digital, LLC." },
- { 49512, "ipHouse" },
- { 49513, "AgResearch Ltd" },
- { 49514, "EPK Solutions" },
- { 49515, "SQLTreeo" },
- { 49516, "Jesse Friedman" },
- { 49517, "Implaneo Dental Clinic Regensburg" },
- { 49518, "turbosoft" },
- { 49519, "PremiumSoft CyberTech Limited" },
- { 49520, "Kauer GmbH" },
- { 49521, "George Hogan Sound Ltd" },
- { 49522, "SPIDYA Yaz\0304\0261l\0304\0261m A.\0305\0236." },
- { 49523, "CANCOM GmbH" },
- { 49524, "MiE GmbH" },
- { 49525, "Avatier Corporation" },
- { 49526, "Massaraksh" },
- { 49527, "Sigterm AS" },
- { 49528, "Menzell & D\0303\0266hle GmbH & Co. KG" },
- { 49529, "ALTEN SA" },
- { 49530, "MSC Trustgate.com Sdn. Bhd." },
- { 49531, "True Partner Singapore Holding PTE. LTD." },
- { 49532, "Plustek Inc." },
- { 49533, "Banco de Credito Social Cooperativo S.A." },
- { 49534, "jagdish chand" },
- { 49535, "MaxLinear, Inc." },
- { 49536, "NetCom Satelital S.A." },
- { 49537, "Rewards LLC" },
- { 49538, "Mencom Corporation" },
- { 49539, "Communications & Power Industries, ASC Signal Division" },
- { 49540, "SSE" },
- { 49541, "Computerhaus EDV-Handels GmbH" },
- { 49542, "DCM TECNOLOGIA" },
- { 49543, "Unimatica S.p.A." },
- { 49544, "Nathan Balch" },
- { 49545, "Universidad de Mendoza" },
- { 49546, "Wilhelm Eimke oHG" },
- { 49547, "OpenIQ Pty Ltd" },
- { 49548, "FUJIAN GELU POWERTRONICS CO.,LTD." },
- { 49549, "GmSSL" },
- { 49550, "LG Uplus" },
- { 49551, "vorg.eu" },
- { 49552, "Snowflake Software Ltd." },
- { 49553, "Radis Ltd" },
- { 49554, "WIN-T" },
- { 49555, "Stadt Jessen (Elster)" },
- { 49556, "BRUNO BADER GmbH + Co. KG" },
- { 49557, "CONDAT S.A.S." },
- { 49558, "TechCERT" },
- { 49559, "Cancer Care Specialists " },
- { 49560, "Gemeente Purmerend" },
- { 49561, "EAD Systeme GmbH" },
- { 49562, "Frankfurter Verein f\0303\0274r soziale Heimst\0303\0244tten" },
- { 49563, "Shure Incorporated" },
- { 49564, "YumaWorks, Inc." },
- { 49565, "Universitate Alexandru Ioan Cuza din Iasi, Facultatea de Informatica" },
- { 49566, "Salish Cancer Center" },
- { 49567, "Norrskog Wood Products AB" },
- { 49568, "jRedes Ltda ME" },
- { 49569, "Surgical Information Sciences" },
- { 49570, "Jonathan Wilbur" },
- { 49571, "Elektrotechnik und Elektronik Oltmann GmbH" },
- { 49572, "Precision Castparts Corp" },
- { 49573, "eVolution Networks" },
- { 49574, "Modern Language Association" },
- { 49575, "El-Abbadi School" },
- { 49576, "K.T.E.C." },
- { 49577, "GlobalCom" },
- { 49578, "OON GlobalCom Private Limited" },
- { 49579, "TCOM L.P." },
- { 49580, "Samuel B\0303\0244chler Informatik" },
- { 49581, "Sensify Security" },
- { 49582, "Vapor Team" },
- { 49583, "Txture GmbH" },
- { 49584, "PacketX Technology Ltd." },
- { 49585, "InoftTech" },
- { 49586, "Ulf Andersson \0303\0205keri AB" },
- { 49587, "Pr\0303\0244stl\0303\0266netillg\0303\0245ngarna i Uppsala stift" },
- { 49588, "CONET Kft." },
- { 49589, "Auto-Maskin AS" },
- { 49590, "Bobst Mex SA" },
- { 49591, "TecAlliance GmbH" },
- { 49592, "Net Research" },
- { 49593, "ACES" },
- { 49594, "The Royal Marsden NHS Foundation Trust" },
- { 49595, "aineton" },
- { 49596, "Previder BV" },
- { 49597, "PremiumSoft CyberTech Limited" },
- { 49598, "LANKA NAP INC" },
- { 49599, "Bridgeworks Ltd" },
- { 49600, "Vision Valley FZ LLC" },
- { 49601, "Apollo Solar Inc." },
- { 49602, "CertificaEdu" },
- { 49603, "LINKTEK Co., LTD." },
- { 49604, "KysinTech" },
- { 49605, "MONISTOR" },
- { 49606, "First American Bank" },
- { 49607, "Learning Equality" },
- { 49608, "Kofola Ceskoslovensko a.s." },
- { 49609, "Picomass Limited" },
- { 49610, "d.velop AG" },
- { 49611, "molch" },
- { 49612, "Orange Espagne, S.A.U." },
- { 49613, "Fremont Bank" },
- { 49614, "Caritas der Dioezese St. Poelten" },
- { 49615, "Metro Vancouver Regional District" },
- { 49616, "Bienestar" },
- { 49617, "Controlid Industria e Comercio de Hardware e Servicos de Tecnologia Ltda" },
- { 49618, "Cubic Controls" },
- { 49619, "SOJO University" },
- { 49620, "ePatientFinder" },
- { 49621, "Synetica Limited" },
- { 49622, "ASRock Rack Incorporation" },
- { 49623, "Bragafvl" },
- { 49624, "Loews Corporation" },
- { 49625, "China Telecom" },
- { 49626, "CITIC GUOAN BROADCOM NETWORK CO.,LTD" },
- { 49627, "Guangzhou Ziyuan Information Technology Co.,Ltd." },
- { 49628, "Penumbra" },
- { 49629, "AlphaTesters" },
- { 49630, "Instituto Superior de Derecho y Economia, S.A." },
- { 49631, "Arcad Software" },
- { 49632, "BeeZeeLinx" },
- { 49633, "CESBIO" },
- { 49634, "TIMWE Group HQ \0342\0200\0223 TOTAL TIM Servicos de Telecomunicacoes e Afins, Unipessoal Lda" },
- { 49635, "Schwan-STABILO Cosmetics GmbH & Co. KG" },
- { 49636, "SUNY-ESF" },
- { 49637, "Kostiantyn Osypenko" },
- { 49638, "Kekesed Asmasta" },
- { 49639, "Stampa Sistem" },
- { 49640, "AIRTAG" },
- { 49641, "VPS Holdings Ltd" },
- { 49642, "Innotech Controls" },
- { 49643, "Grand Rapids Public Schools" },
- { 49644, "cenetec" },
- { 49645, "Flanga" },
- { 49646, "SCH\0303\0204FER Ausstattungs-Systeme GmbH" },
- { 49647, "Substrata Systems LLC" },
- { 49648, "zcsevcik" },
- { 49649, "Skyport Systems, Inc" },
- { 49650, "Vanasse Hangen Brustlin Inc" },
- { 49651, "Erste Group Card Processor d.o.o." },
- { 49652, "Infrontec GmbH" },
- { 49653, "WIKON Kommunikationstechnik GmbH" },
- { 49654, "JSC Varutis" },
- { 49655, "RFmondial GmbH" },
- { 49656, "Cohen & Grigsby, P.C." },
- { 49657, "NEC Solution Innovators, Ltd." },
- { 49658, "BIIK SibSUTIS" },
- { 49659, "Shanghai Shentong Metro Group Co.Ltd." },
- { 49660, "MOTEX Inc." },
- { 49661, "Hive13" },
- { 49662, "Net4You Internet GmbH" },
- { 49663, "Belbohemia, IOOO" },
- { 49664, "Fundaci\0303\0263 Centre de Seguretat de la Informaci\0303\0263 de Catalunya" },
- { 49665, "Tessares SA" },
- { 49666, "Gribskov Kommune" },
- { 49667, "Weda Skog AB" },
- { 49668, "maxdoom.com" },
- { 49669, "DB Station&Service AG" },
- { 49670, "\0346\0234\0211\0346\0227\0266\0351\0227\0264 (Have time)" },
- { 49671, "Vnomic, Inc." },
- { 49672, "POWER Engineers, Inc." },
- { 49673, "Capernwray Torchbearers Australia" },
- { 49674, "Marland.IT" },
- { 49675, "LLC Qualitteq" },
- { 49676, "Agence Nationale de S\0303\0251curit\0303\0251 des Syst\0303\0250mes d'Information (ANSSI/BF)" },
- { 49677, "BlackBelt Technology Kft." },
- { 49678, "Cogit Studio" },
- { 49679, "VLSS" },
- { 49680, "Binovia Corp." },
- { 49681, "Praetorian Group, Inc" },
- { 49682, "Dittman" },
- { 49683, "iPhotonix" },
- { 49684, "Infinit Group " },
- { 49685, "Polovnikov LLC" },
- { 49686, "Funda\0303\0247\0303\0243o Universidade Regional de Blumenau" },
- { 49687, "Cormant Inc." },
- { 49688, "Blue Danube Systems" },
- { 49689, "Zener Redes" },
- { 49690, "Fortanix" },
- { 49691, "kd5ahl.org" },
- { 49692, "SHENZHEN Maisijie NETWORK CO.,LTD" },
- { 49693, "Warner Music Group" },
- { 49694, "IoTium Inc" },
- { 49695, "D & K Co." },
- { 49696, "WanLiYun Medical Information Technology Co. Ltd." },
- { 49697, "Twitch Interactive" },
- { 49698, "Sector 7" },
- { 49699, "Wack.de" },
- { 49700, "SCHERDEL GmbH" },
- { 49701, "DofiLoop" },
- { 49702, "Coc Coc Company Limited" },
- { 49703, "Nutimaja Ltd." },
- { 49704, "Tieto Sweden Healthcare & Welfare AB" },
- { 49705, "Cloudworks AS" },
- { 49706, "glomex GmbH" },
- { 49707, "Pragmaxus AG" },
- { 49708, "DentalRay" },
- { 49709, "Universign" },
- { 49710, "GOMA Elettronica SpA" },
- { 49711, "Polizei Sachsen" },
- { 49712, "Ivins, Phillips & Barker Chartered" },
- { 49713, "Instituto Nacional de Metrologia, Qualidade e Tecnologia - INMETRO" },
- { 49714, "Stannum-Man" },
- { 49715, "Epilog Verm\0303\0266gensverwaltungs AG" },
- { 49716, "Mayfair Verm\0303\0266gensverwaltungs SE" },
- { 49717, "Complyify LLC" },
- { 49718, "Catalia Health" },
- { 49719, "PERK Innovation" },
- { 49720, "Australian Access Federation" },
- { 49721, "LinCom" },
- { 49722, "Perspica Networks" },
- { 49723, "ELAS Ltd." },
- { 49724, "PJSC Rostelecom Volga branch" },
- { 49725, "SSIMWave" },
- { 49726, "Tata Communications.Limited (TCL)" },
- { 49727, "BA" },
- { 49728, "Broadquest 2nd system" },
- { 49729, "GN Hearing A/S" },
- { 49730, "GN Audio A/S" },
- { 49731, "Apollo Enterprise Imaging Corp" },
- { 49732, "Parahyangan Catholic University" },
- { 49733, "SMARTMOVE S.A." },
- { 49734, "Ekeryds tr\0303\0244varuaff\0303\0244r AB " },
- { 49735, "Hwang Group" },
- { 49736, "Crytus corporation" },
- { 49737, "Verizon Telematics" },
- { 49738, "SynTrust Tech International Ltd.," },
- { 49739, "Drivenets" },
- { 49740, "Velostrata" },
- { 49741, "xanzex" },
- { 49742, "Hot Chilli Box Ltd." },
- { 49743, "Intouch Games Ltd" },
- { 49744, "Hughes do Brasil" },
- { 49745, "Ludia inc." },
- { 49746, "ImageWare Systems, Inc." },
- { 49747, "Ricegrowers Limited" },
- { 49748, "NearbySensor" },
- { 49749, "K&T Host" },
- { 49750, "Mutualink, Inc" },
- { 49751, "Gridscape Solutions" },
- { 49752, "CLOUDWAN" },
- { 49753, "Interactive Northwest Inc" },
- { 49754, "Hydro-Quebec - DPT (Direction Principale Telecom)" },
- { 49755, "Universit\0303\0251 Paris Sciences et Lettres" },
- { 49756, "Futurecom Systems Group, ULC." },
- { 49757, "USMD" },
- { 49758, "NextgenID" },
- { 49759, "Jacques Technologies" },
- { 49760, "Semperficio Software LLC" },
- { 49761, "Toki Winter" },
- { 49762, "PCCW-HKT TSL" },
- { 49763, "Communication Company, NARI Group Corporation Information Technology" },
- { 49764, "Spokeo, Inc." },
- { 49765, "Guangzhou ChengJia Technology Co., Ltd." },
- { 49766, "Radium Networks" },
- { 49767, "J. RETTENMAIER & S\0303\0226HNE GMBH + CO KG" },
- { 49768, "Infomac Sp. z o. o. Sp. k." },
- { 49769, "YADRO" },
- { 49770, "NAVIUS" },
- { 49771, "Stiftung Krankenhaus Bethanien f\0303\0274r die Grafschaft Moers" },
- { 49772, "Zolkover" },
- { 49773, "SCHOELLERSHAMMER GmbH & Co.KG" },
- { 49774, "XLIM" },
- { 49775, "Unassigned" },
- { 49776, "INSTITUTO DEL CANCER Y ENFERMEDADES DE LA SANGRE, CSP" },
- { 49777, "Herbrich Corporation" },
- { 49778, "Lin and Associates, Inc." },
- { 49779, "Shenzhen Yetelcom Communication Tech. Co.,Ltd." },
- { 49780, "Oklahoma State University Foundation" },
- { 49781, "MicroGrid Solutions, LLC" },
- { 49782, "Author Solutions, LLC" },
- { 49783, "SnapRoute Inc." },
- { 49784, "FINAO Ltd" },
- { 49785, "Tubular Labs, Inc." },
- { 49786, "Cancer Specialists of North Florida" },
- { 49787, "AparnaSystems Inc." },
- { 49788, "Nova Computer Services LLC" },
- { 49789, "DHW" },
- { 49790, "Marmocet LLC" },
- { 49791, "Borel & Barbey" },
- { 49792, "HDS a.s." },
- { 49793, "Persson Invest skog AB" },
- { 49794, "M2MSOFT" },
- { 49795, "Navitel" },
- { 49796, "ARH Inc." },
- { 49797, "RideOnTrack" },
- { 49798, "BVZ Holding AG" },
- { 49799, "Visteon Electronics Germany GmbH" },
- { 49800, "GE Digital" },
- { 49801, "PST Public Safety Technologies GmbH" },
- { 49802, "beyerdynamic GmbH & Co. KG" },
- { 49803, "Kopen Secondary School" },
- { 49804, "Concept Solu\0303\0247\0303\0265es" },
- { 49805, "Skaro 73k" },
- { 49806, "St. Luke's Hospital" },
- { 49807, "BERNMOBIL" },
- { 49808, "Rubica" },
- { 49809, "Fitivision Technology Inc." },
- { 49810, "Panalpina World Transport (Holding) Ltd." },
- { 49811, "Ecole Sup\0303\0251rieure de la Francophonie pour l'Administration et le Management" },
- { 49812, "S&T AG" },
- { 49813, "Sytecs" },
- { 49814, "GWAdriga GmbH & Co. KG" },
- { 49815, "FBR Group B.V." },
- { 49816, "SEIKO TIME SYSTEMS INC." },
- { 49817, "Solid Park AB" },
- { 49818, "shikuo technology corpartion" },
- { 49819, "KST technology co.,ltd" },
- { 49820, "TELEOFIS JSC" },
- { 49821, "New Jersey Hematology Oncology Associates, LLC" },
- { 49822, "Matthias Robert Wiora" },
- { 49823, "Multapplied Networks Inc." },
- { 49824, "Springs Charter Schools" },
- { 49825, "Canovate Group" },
- { 49826, "Drees & Sommer" },
- { 49827, "Digital imaging" },
- { 49828, "City of York Council" },
- { 49829, "VTTEK - Viettel Group" },
- { 49830, "eDoc Group" },
- { 49831, "Expression Networks LLC" },
- { 49832, "Nero Blanco IT Ltd" },
- { 49833, "Sierra View Medical Center" },
- { 49834, "Sioui Microsolutions" },
- { 49835, "Barava, LLC" },
- { 49836, "MirageOS" },
- { 49837, "JIANGSU HENGSION ELECTRONIC S&T CO.,LTD" },
- { 49838, "ZHEJIANG QUANTUM TECHNOLOGIES CO., LTD" },
- { 49839, "Adjara Group Hospitality" },
- { 49840, "Ponomarevs" },
- { 49841, "Tecnohold Development Tecnology Ind. e Com. Ltda." },
- { 49842, "Mark Broecker IT-Consulting" },
- { 49843, "Universidad Nacional de Colombia" },
- { 49844, "KAHUNA Ventures LLC" },
- { 49845, "\0303\0204lvdalens Besparingsskog" },
- { 49846, "Vadsbo Skog AB" },
- { 49847, "Logitech, Inc." },
- { 49848, "Heilongjiang ETSkill Technology Co., Ltd." },
- { 49849, "UNIS-WDC Storage Co., LTD." },
- { 49850, "Idiosys" },
- { 49851, "Aria Networks" },
- { 49852, "JSC ITC Sistema-Sarov" },
- { 49853, "Atea Norge AS" },
- { 49854, "BITMARCK TECHNIK GMBH " },
- { 49855, "IDGENERIS" },
- { 49856, "Community Living British Columbia" },
- { 49857, "Department of Intellectual Property" },
- { 49858, "Centracare Health" },
- { 49859, "Lyggeskog AB" },
- { 49860, "R\0303\0266n\0303\0245s Skog AB" },
- { 49861, "Logate" },
- { 49862, "NodNetwork" },
- { 49863, "RESEARCH ON DEMAND LAB" },
- { 49864, "BlueGoat" },
- { 49865, "BARTZIS.NET" },
- { 49866, "Thurnau Industries" },
- { 49867, "Kforce, Inc." },
- { 49868, "Pizza Max" },
- { 49869, "TrowLink" },
- { 49870, "APIIDA AG" },
- { 49871, "OpenBMC Project" },
- { 49872, "McKay Brothers, LLC" },
- { 49873, "Thales Services France Agora-t" },
- { 49874, "friedlmaier.net" },
- { 49875, "Advocate Health and Hospitals Corporation" },
- { 49876, "Vexata Inc." },
- { 49877, "Skylads Ltd" },
- { 49878, "Wanless Systems Limited" },
- { 49879, "Gorilla Technology" },
- { 49880, "wevcode" },
- { 49881, "Prismview" },
- { 49882, "Synanetics Ltd" },
- { 49883, "MES Solutions by ASTOR" },
- { 49884, "Praetors AG" },
- { 49885, "Wisscot" },
- { 49886, "LensRentals.com" },
- { 49887, "MySCS" },
- { 49888, "SEEK LIMITED" },
- { 49889, "BobsterCorp" },
- { 49890, "Choptank Electric Cooperative" },
- { 49891, "Hubei Keenward Engineering Co.,Ltd." },
- { 49892, "ProcessUnity" },
- { 49893, "Trimoz Technologies" },
- { 49894, "Tom W Wolf" },
- { 49895, "ZXW Networks Co., Ltd." },
- { 49896, "Fireglass" },
- { 49897, "TrueVolve Technologies" },
- { 49898, "PROMSVYAZKOMPLEKT LLC" },
- { 49899, "stone IT SOLUTIONS" },
- { 49900, "Rahandusministeeriumi Infotehnoloogiakeskus" },
- { 49901, "LDA Audio Tech" },
- { 49902, "PANSOMA GmbH" },
- { 49903, "Petrolink International Ltd" },
- { 49904, "telisca" },
- { 49905, "OOO KONTINENT" },
- { 49906, "Hanning" },
- { 49907, "Phasor Solutions Ltd" },
- { 49908, "Nuance Communications, Inc." },
- { 49909, "BNP Paribas Real Estate Hungary" },
- { 49910, "Gon\0305\0241\0304\0215\0303\0241kovci" },
- { 49911, "Alliance Entertainment" },
- { 49912, "Moose and Wombat" },
- { 49913, "kioriy network" },
- { 49914, "SAKO TECHNOLOGIES LIMITED" },
- { 49915, "Los Angeles Department of Water & Power" },
- { 49916, "ESTECH International" },
- { 49917, "MNP LLP" },
- { 49918, "UNATEC ICT, S.L." },
- { 49919, "SQUELCH INC." },
- { 49920, "VITOGAZ Switzerland AG" },
- { 49921, "OLZETEK, Inc." },
- { 49922, "Aron AG" },
- { 49923, "VELANKANI ELECTRONICS PVT. LTD." },
- { 49924, "whiteneng" },
- { 49925, "Figeas SA" },
- { 49926, "H&D International Sp. z o.o. Oddzia\0305\0202 w Polsce" },
- { 49927, "Oregon Department of Transportation" },
- { 49928, "Nomad Global Communication Solutions" },
- { 49929, "Rubrik, Inc" },
- { 49930, "Zollner Elektronik AG" },
- { 49931, "Metacode" },
- { 49932, "Deerfield Academy" },
- { 49933, "Alpha Med Physician Group LLC" },
- { 49934, "Cellnetrix GmbH" },
- { 49935, "Thought Through Software, Inc." },
- { 49936, "The AME Group" },
- { 49937, "bg nerilex" },
- { 49938, "Azapp Software" },
- { 49939, "nyx-network" },
- { 49940, "Sagio A/S" },
- { 49941, "ReadyNet Solutions" },
- { 49942, "myspot.at" },
- { 49943, "Tamseng" },
- { 49944, "City of Toronto" },
- { 49945, "Fastly, Inc." },
- { 49946, "Nymi" },
- { 49947, "ACH Colombia SA" },
- { 49948, "eWitness Italia Srl" },
- { 49949, "Calvert County Government" },
- { 49950, "MeetNow! GmbH" },
- { 49951, "Jaramillo" },
- { 49952, "DATA TECH INTERNATIONAL DOO" },
- { 49953, "Spg Controls Pty Ltd" },
- { 49954, "Forimp AB" },
- { 49955, "Martin Handl" },
- { 49956, "ReiseBank AG" },
- { 49957, "Diginext" },
- { 49958, "Burgergemeinde Bern" },
- { 49959, "inDenova SL" },
- { 49960, "Ericsson DE - MS/IT" },
- { 49961, "MindCompute Inc." },
- { 49962, "Magic Code Co., Ltd." },
- { 49963, "Belarusian State University" },
- { 49964, "Bobby's Foods Ltd" },
- { 49965, "Neova AB" },
- { 49966, "Herbrich Corporation" },
- { 49967, "V\0303\0244rendskog AB" },
- { 49968, "Tyfone Inc" },
- { 49969, "Miramar Networks" },
- { 49970, "s IT Solutions" },
- { 49971, "Hedmark IKT" },
- { 49972, "RunSDN" },
- { 49973, "FancyGuy Technologies" },
- { 49974, "Vlinder Software " },
- { 49975, "Bon Secours Health System" },
- { 49976, "E8 storage" },
- { 49977, "West Virginia State Tax Department" },
- { 49978, "Universidade do Estado de Santa Catarina - UDESC" },
- { 49979, "BigRentz" },
- { 49980, "ExampleCompany" },
- { 49981, "IFBLE SOLUCIONES" },
- { 49982, "Medtronic RTG" },
- { 49983, "Luminate Wireless" },
- { 49984, "Arecont Vision" },
- { 49985, "Franklin Community Schools" },
- { 49986, "BAE Systems Inc." },
- { 49987, "GHIGHO" },
- { 49988, "Bundeseisenbahnvermoegen" },
- { 49989, "Peloton Technology" },
- { 49990, "UTISCP" },
- { 49991, "Smart Integrated Solutions SRL" },
- { 49992, "Littwin Systemtechnik GmbH & Co. KG" },
- { 49993, "Koinonia Christian Fellowship" },
- { 49994, "Banco Azteca S.A. Instituci\0303\0263n de Banca M\0303\0272ltiple" },
- { 49995, "DS Broadcast, Inc." },
- { 49996, "CoreEdge Networks Co., Ltd" },
- { 49997, "Socionext Inc." },
- { 49998, "OOO INFOCOM-LTD" },
- { 49999, "GFD GmbH" },
- { 50000, "King Tsushin Kogyo Co., Ltd." },
- { 50001, "Scildon" },
- { 50002, "Marcepan Org." },
- { 50003, "NCSCCS Limited" },
- { 50004, "Einsatz Development Inc" },
- { 50005, "Universit\0303\0251 de Haute Alsace" },
- { 50006, "Chongqing Ambition Science&Technologies Co.,Ltd." },
- { 50007, "Lahti University of Applied Sciences" },
- { 50008, "RPC LLP" },
- { 50009, "Workinout.com" },
- { 50010, "Collinear Networks Inc." },
- { 50011, "Hose-McCann Communications" },
- { 50012, "Enrique Avalle" },
- { 50013, "Aldridge Traffic Controllers Pty Ltd" },
- { 50014, "nmhq.net" },
- { 50015, "Scarsdale Schools" },
- { 50016, "Biocatch" },
- { 50017, "CG Defense Technologies" },
- { 50018, "Pacific Media Technologies Pty Ltd" },
- { 50019, "Bucet AG" },
- { 50020, "Nightwire" },
- { 50021, "MAJALOG" },
- { 50022, "air at\0303\0251liers GmbH" },
- { 50023, "HIMA Paul Hildebrandt GmbH" },
- { 50024, "AlmavivA S.p.A" },
- { 50025, "dSPACE GmbH" },
- { 50026, "PHYSEC GmbH" },
- { 50027, "The Document Foundation" },
- { 50028, "Siemens AG Mobility Division" },
- { 50029, "AGILE WEB" },
- { 50030, "BENTELER Business Services GmbH" },
- { 50031, "Ring Central, Inc" },
- { 50032, "City of Edmond" },
- { 50033, "IT-Solutions Nuernberg" },
- { 50034, "AR24 SAS" },
- { 50035, "Identinetics IT-Services GmbH" },
- { 50036, "Cancer South Institute" },
- { 50037, "Ultimate Software" },
- { 50038, "Southeast Nebraska Hematology and Oncology Consultants" },
- { 50039, "ELUON" },
- { 50040, "MTI Systems" },
- { 50041, "dust production" },
- { 50042, "ZERO WAR (\0351\0233\0266\0345\0272\0246\0346\0210\0230\0344\0272\0211 \0345\0267\0245\0344\0275\0234\0345\0256\0244)" },
- { 50043, "Svan\0303\0244ngskog AB" },
- { 50044, "STR-SpeechTech Ltd." },
- { 50045, "IT-LINE SIA" },
- { 50046, "The ICT Hub INC." },
- { 50047, "S-Sharp Corporation" },
- { 50048, "H\0303\0244rn\0303\0266sands stift" },
- { 50049, "Openfiler" },
- { 50050, "JNC FZE" },
- { 50051, "tRetail" },
- { 50052, "Datang Gohighsec(zhejiang)Information Technology Co.,Ltd." },
- { 50053, "AVer Information Inc." },
- { 50054, "Cherry Grass" },
- { 50055, "Telegra" },
- { 50056, "Public Joint-Stock Company \"Detsky Mir\"" },
- { 50057, "PrimeCalc GmbH" },
- { 50058, "RtBrick Inc." },
- { 50059, "JSC Penza Research Electrotechnical Institute" },
- { 50060, "HPC" },
- { 50061, "IP Directions" },
- { 50062, "Ultra Electronics \0342\0200\0223 Communication and Integrated Systems" },
- { 50063, "QCR Holdings, Inc." },
- { 50064, "By Techdesign" },
- { 50065, "PREFECTURE DE POLICE DE PARIS" },
- { 50066, "YADOS GmbH" },
- { 50067, "University Cancer & Blood Center, LLC" },
- { 50068, "JNETLABS" },
- { 50069, "ELIT electronics & IT" },
- { 50070, "Network Kinetix, LLC" },
- { 50071, "Immae" },
- { 50072, "CAF Power & Automation" },
- { 50073, "Integrisight, LLC" },
- { 50074, "Changchun Sunny Information Technology Co., Ltd" },
- { 50075, "Shanghai YuanRui Industrial Co., Ltd." },
- { 50076, "Real World Education Ltd" },
- { 50077, "AZZURRA Engenharia de Sistemas Ltda" },
- { 50078, "Equate Technologies Pty Ltd" },
- { 50079, "ABT ASSOCIATES PTY LTD" },
- { 50080, "Do It Yourself Werkstatt Wilhelmshaven e.V." },
- { 50081, "SMC Corporation (Product Development Division-6)" },
- { 50082, "Beijing JoinusRIP Co." },
- { 50083, "Norwegian Creations" },
- { 50084, "Douanes S\0303\0251n\0303\0251galaises" },
- { 50085, "Condeco" },
- { 50086, "Fircroft Engineering Services Limited" },
- { 50087, "Comprimato Systems, s.r.o." },
- { 50088, "Japanese Communist Party, Central Comittee" },
- { 50089, "Continent 8 Technologies PLC" },
- { 50090, "Floyd Arguello" },
- { 50091, "BrightSoftware Technologies LLC." },
- { 50092, "Ostec-SMT" },
- { 50093, "SCA Munksund AB" },
- { 50094, "SEC 1.01 AG" },
- { 50095, "Private-Network.com, Inc." },
- { 50096, "Scoop Publishing Limited" },
- { 50097, "SCA \0303\0226strand" },
- { 50098, "SCA Graphic Sundsvall Aktiebolag" },
- { 50099, "PRZEDSI\0304\0230BIORSTWO WIELOBRAN\0305\0273OWE DMS BOGDAN DARZECKI MAREK MA\0305\0232LANKA S.C." },
- { 50100, "energy & meteo systems GmbH" },
- { 50101, "NEOCHROM, ltd" },
- { 50102, "FATH Mechatronics GmbH" },
- { 50103, "TSYS" },
- { 50104, "ActivIntel Inc." },
- { 50105, "Candela Innovations, LC" },
- { 50106, "delgiacco medical, llc" },
- { 50107, "Karlour LLC" },
- { 50108, "Gebhardt Bauzentrum GmbH & Co. KG" },
- { 50109, "Open Banking Limited" },
- { 50110, "Cybraics, Inc." },
- { 50111, "Samsung SDI America" },
- { 50112, "Otomatica" },
- { 50113, "AI Prime" },
- { 50114, "CloudGenix" },
- { 50115, "Genesis Medical Group" },
- { 50116, "Rivian Automotive, Inc." },
- { 50117, "Eversource Energy" },
- { 50118, "NZ FIBRE COMMUNICATIONS LIMITED trading as Stuff Fibre" },
- { 50119, "Seoul National University Hospital" },
- { 50120, "Sofco Pty Ltd" },
- { 50121, "Root" },
- { 50122, "ISiT OOO" },
- { 50123, "Rutronik Elektronische Bauelemente GmbH" },
- { 50124, "Howco" },
- { 50125, "SERVICIOS DE RADIO WAVENET" },
- { 50126, "Elecard" },
- { 50127, "Changchun Vocational Institute Of Technology" },
- { 50128, "Digiroam LLC" },
- { 50129, "DEM Manufacturing" },
- { 50130, "Perfoware Corp." },
- { 50131, "Blacktree Technology Pty Ltd." },
- { 50132, "Sonic Automotive" },
- { 50133, "GPI RAS" },
- { 50134, "Enika LLC" },
- { 50135, "Markon Cooperative Inc" },
- { 50136, "High Sec Hosting HSDC AB" },
- { 50137, "Greene County Circuit Court" },
- { 50138, "Legrand North and Central America" },
- { 50139, "Trice Medical, Inc." },
- { 50140, "Thinking Objects GmbH" },
- { 50141, "Sundkontor" },
- { 50142, "Sunshine Coast Council" },
- { 50143, "Universit\0303\0244tsmedizin Greifswald" },
- { 50144, "Viz.AI" },
- { 50145, "FRRouting" },
- { 50146, "Wi-Net Telecom" },
- { 50147, "Mateer Harbert" },
- { 50148, "PIXELLAB LLC" },
- { 50149, "Beijing ZhongChuang Teraspek Co.,LTD" },
- { 50150, "Royole Corporation" },
- { 50151, "Flugatlas" },
- { 50152, "NEOCHROM-TRADE, ltd " },
- { 50153, "Span d.o.o." },
- { 50154, "NU2 Systems LLC" },
- { 50155, "Babioch" },
- { 50156, "Navigators Studentenverenging Enschede" },
- { 50157, "fouss" },
- { 50158, "City of Burnsville" },
- { 50159, "Monro Muffler Brake Inc." },
- { 50160, "YUASA-NET" },
- { 50161, "it-pro-berlin.de" },
- { 50162, "Sweet Hub" },
- { 50163, "Hartmut Eilers" },
- { 50164, "STATUS INTERNET CO., LTD" },
- { 50165, "IPN Solutions GmbH & Co. KG" },
- { 50166, "Aviall Services, Inc." },
- { 50167, "NGP VAN, Inc" },
- { 50168, "Aaltronav" },
- { 50169, "Industrielle Alliance" },
- { 50170, "Price International Ltd" },
- { 50171, "ICON Multimedia, S.L." },
- { 50172, "ifm syntron gmbh" },
- { 50173, "DOMINAE Srl Unipersonale" },
- { 50174, "Beekeeper Technology" },
- { 50175, "The Department for Work and Pensions" },
- { 50176, "Mark H. Zangmeister Center" },
- { 50177, "Nextiva" },
- { 50178, "FLR Services Ltd" },
- { 50179, "Ocean Technical Systems" },
- { 50180, "MiaRec, Inc." },
- { 50181, "pioto.org" },
- { 50182, "Weibel Scientific A/S" },
- { 50183, "EIUS d.o.o." },
- { 50184, "Tech4Lyfe Co. Ltd" },
- { 50185, "WH Gelsenkirchen FB Informatik" },
- { 50186, "Vodafone UK" },
- { 50187, "Pattern Recognition and Inteligent Systems Laboratory" },
- { 50188, "zkpig123.org" },
- { 50189, "anrobot" },
- { 50190, "CS Corporation" },
- { 50191, "Matra Mandiri Prima" },
- { 50192, "SOGETEL srl" },
- { 50193, "ANA-U GmbH" },
- { 50194, "Deutscher Genossenschafts-Verlag eG" },
- { 50195, "Domo Tactical Communications (DTC) Ltd" },
- { 50196, "Instituto de F\0303\0255sica Gleb Wataghin - Unicamp" },
- { 50197, "jedi solutions" },
- { 50198, "Aplura, LLC" },
- { 50199, "Skogsbolaget Mats Broberg AB" },
- { 50200, "yellowshelf" },
- { 50201, "Cubic Telecom" },
- { 50202, "Southern Union Conference of Seventh day Adventists" },
- { 50203, "Sankosha Corporation" },
- { 50204, "congliu0913 Limited" },
- { 50205, "Telescent Inc." },
- { 50206, "QuaeroSys UG" },
- { 50207, "Kerridge Commercial Systems" },
- { 50208, "TRANSPORTS GPH" },
- { 50209, "kbo-Isar-Amper-Klinikum" },
- { 50210, "The Center for Cancer and Blood Disorders" },
- { 50211, "Universit\0303\0244tsstadt T\0303\0274bingen" },
- { 50212, "HostId" },
- { 50213, "Positive Technologies" },
- { 50214, "Alfred K\0303\0244rcher GmbH & Co. KG" },
- { 50215, "FIBOIS Alsace" },
- { 50216, "Two Degrees Ltd" },
- { 50217, "EVICERTIA (formerly 'Evidencias Certificadas SL')" },
- { 50218, "Union Scribe" },
- { 50219, "Alaska Railroad" },
- { 50220, "Lukas M\0303\0274ller" },
- { 0, NULL}
-};
-
-#define array_length(x) (sizeof x / sizeof x[0])
-
-value_string_ext sminmpec_values_ext = VALUE_STRING_EXT_INIT(sminmpec_values);
-
diff --git a/epan/sminmpec.h b/epan/sminmpec.h
index 7de80e794f..ba63a2b977 100644
--- a/epan/sminmpec.h
+++ b/epan/sminmpec.h
@@ -23,8 +23,6 @@
#ifndef __SMINMPEC_H__
#define __SMINMPEC_H__
-#include "ws_symbol_export.h"
-
/*
* These are SMI Network Management Private Enterprise Codes for
* organizations; see
@@ -98,6 +96,4 @@
#define VENDOR_ERICSSON_CANADA_INC 46098u
#define VENDOR_CISCO_WIFI 4232704
-WS_DLL_PUBLIC value_string_ext sminmpec_values_ext;
-
#endif /* __SMINMPEC_H__ */